43 if ( empty(
$params[
'url'] ) ) {
47 if ( empty(
$params[
'client'] ) ) {
50 $this->client =
$params[
'client'];
53 $this->url = rtrim(
$params[
'url'],
'/' ) .
'/';
55 $this->attrMap[self::ATTR_SYNCWRITES] = self::QOS_SYNCWRITES_QC;
66 'url' => $this->url . rawurlencode( $key ),
69 list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $this->client->run(
$req );
70 if ( $rcode === 200 ) {
71 if ( is_string( $rbody ) ) {
76 if ( $rcode === 0 || ( $rcode >= 400 && $rcode != 404 ) ) {
77 return $this->
handleError(
"Failed to fetch $key", $rcode, $rerr );
90 $this->logger->error(
"$msg : ({code}) {error}", [
94 $this->
setLastError( $rcode === 0 ? self::ERR_UNREACHABLE : self::ERR_UNEXPECTED );
110 'url' => $this->url . rawurlencode( $key ),
113 list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $this->client->run(
$req );
114 if ( $rcode === 200 || $rcode === 201 ) {
117 return $this->
handleError(
"Failed to store $key", $rcode, $rerr );
126 public function delete( $key ) {
128 'method' =>
'DELETE',
129 'url' => $this->url . rawurlencode( $key ),
131 list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $this->client->run(
$req );
132 if ( $rcode === 200 || $rcode === 204 || $rcode === 205 ) {
135 return $this->
handleError(
"Failed to delete $key", $rcode, $rerr );
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
it s the revision text itself In either if gzip is the revision text is gzipped $flags
handleError($msg, $rcode, $rerr)
Handle storage error.
Interface to key-value storage behind an HTTP server.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
this hook is for auditing only $req
Class to handle concurrent HTTP requests.
string $url
REST URL to use for storage.
setLastError($err)
Set the "last error" registry.
set($key, $value, $exptime=0, $flags=0)
Set an item.