263 $this->_debug = isset(
$args[
'debug'] ) ?
$args[
'debug'] :
false;
264 $this->stats =
array();
265 $this->_compress_threshold = isset(
$args[
'compress_threshold'] ) ?
$args[
'compress_threshold'] : 0;
266 $this->_persistent = isset(
$args[
'persistent'] ) ?
$args[
'persistent'] :
false;
267 $this->_compress_enable =
true;
268 $this->_have_zlib = function_exists(
'gzcompress' );
270 $this->_cache_sock =
array();
271 $this->_host_dead =
array();
273 $this->_timeout_seconds = 0;
274 $this->_timeout_microseconds = isset(
$args[
'timeout'] ) ?
$args[
'timeout'] : 500000;
276 $this->_connect_timeout = isset(
$args[
'connect_timeout'] ) ?
$args[
'connect_timeout'] : 0.1;
277 $this->_connect_attempts = 2;
279 $this->_logger = isset(
$args[
'logger'] ) ?
$args[
'logger'] :
new NullLogger();
299 public function add( $key, $val, $exp = 0 ) {
300 return $this->
_set(
'add', $key, $val, $exp );
314 public function decr( $key, $amt = 1 ) {
315 return $this->
_incrdecr(
'decr', $key, $amt );
329 public function delete( $key,
$time = 0 ) {
330 if ( !$this->_active ) {
335 if ( !is_resource( $sock ) ) {
339 $key = is_array( $key ) ? $key[1] : $key;
341 if ( isset( $this->stats[
'delete'] ) ) {
342 $this->stats[
'delete']++;
344 $this->stats[
'delete'] = 1;
346 $cmd =
"delete $key $time\r\n";
347 if ( !$this->
_fwrite( $sock, $cmd ) ) {
352 if ( $this->_debug ) {
353 $this->
_debugprint( sprintf(
"MemCache: delete %s (%s)", $key,
$res ) );
356 if (
$res ==
"DELETED" ||
$res ==
"NOT_FOUND" ) {
371 public function touch( $key, $time = 0 ) {
372 if ( !$this->_active ) {
377 if ( !is_resource( $sock ) ) {
381 $key = is_array( $key ) ? $key[1] : $key;
383 if ( isset( $this->stats[
'touch'] ) ) {
384 $this->stats[
'touch']++;
386 $this->stats[
'touch'] = 1;
388 $cmd =
"touch $key $time\r\n";
389 if ( !$this->
_fwrite( $sock, $cmd ) ) {
394 if ( $this->_debug ) {
395 $this->
_debugprint( sprintf(
"MemCache: touch %s (%s)", $key,
$res ) );
398 if (
$res ==
"TOUCHED" ) {
410 public function lock( $key, $timeout = 0 ) {
431 foreach ( $this->_cache_sock
as $sock ) {
435 $this->_cache_sock =
array();
447 $this->_compress_enable = $enable;
457 $this->_host_dead =
array();
471 public function get( $key, &$casToken = null ) {
473 if ( $this->_debug ) {
477 if ( !is_array( $key ) && strval( $key ) ===
'' ) {
478 $this->
_debugprint(
"Skipping key which equals to an empty string" );
482 if ( !$this->_active ) {
488 if ( !is_resource( $sock ) ) {
492 $key = is_array( $key ) ? $key[1] : $key;
493 if ( isset( $this->stats[
'get'] ) ) {
494 $this->stats[
'get']++;
496 $this->stats[
'get'] = 1;
499 $cmd =
"gets $key\r\n";
500 if ( !$this->
_fwrite( $sock, $cmd ) ) {
507 if ( $this->_debug ) {
508 foreach ( $val
as $k => $v ) {
514 if ( isset( $val[$key] ) ) {
531 if ( !$this->_active ) {
535 if ( isset( $this->stats[
'get_multi'] ) ) {
536 $this->stats[
'get_multi']++;
538 $this->stats[
'get_multi'] = 1;
540 $sock_keys =
array();
544 if ( !is_resource( $sock ) ) {
547 $key = is_array( $key ) ? $key[1] : $key;
548 if ( !isset( $sock_keys[$sock] ) ) {
549 $sock_keys[intval( $sock )] =
array();
552 $sock_keys[intval( $sock )][] = $key;
557 foreach ( $socks
as $sock ) {
559 foreach ( $sock_keys[intval( $sock )]
as $key ) {
564 if ( $this->
_fwrite( $sock, $cmd ) ) {
571 foreach ( $gather
as $sock ) {
575 if ( $this->_debug ) {
576 foreach ( $val
as $k => $v ) {
577 $this->
_debugprint( sprintf(
"MemCache: got %s", $k ) );
597 public function incr( $key, $amt = 1 ) {
598 return $this->
_incrdecr(
'incr', $key, $amt );
618 return $this->
_set(
'replace', $key,
$value, $exp );
634 if ( !is_resource( $sock ) ) {
638 if ( !$this->
_fwrite( $sock, $cmd ) ) {
646 if ( preg_match(
'/^END/',
$res ) ) {
649 if ( strlen(
$res ) == 0 ) {
674 return $this->
_set(
'set', $key,
$value, $exp );
695 public function cas( $casToken, $key,
$value, $exp = 0 ) {
696 return $this->
_set(
'cas', $key,
$value, $exp, $casToken );
708 $this->_compress_threshold = $thresh;
721 $this->_debug = $dbg;
734 $this->_servers = $list;
735 $this->_active = count( $list );
736 $this->_buckets = null;
737 $this->_bucketcount = 0;
739 $this->_single_sock = null;
740 if ( $this->_active == 1 ) {
741 $this->_single_sock = $this->_servers[0];
752 $this->_timeout_seconds = $seconds;
753 $this->_timeout_microseconds = $microseconds;
769 $host = array_search( $sock, $this->_cache_sock );
770 fclose( $this->_cache_sock[$host] );
771 unset( $this->_cache_sock[$host] );
787 list( $ip, $port ) = preg_split(
'/:(?=\d)/', $host );
790 $errno = $errstr = null;
792 MediaWiki\suppressWarnings();
793 if ( $this->_persistent == 1 ) {
794 $sock = pfsockopen( $ip, $port, $errno, $errstr, $timeout );
796 $sock = fsockopen( $ip, $port, $errno, $errstr, $timeout );
798 MediaWiki\restoreWarnings();
801 $this->
_error_log(
"Error connecting to $host: $errstr" );
807 stream_set_timeout( $sock, $this->_timeout_seconds, $this->_timeout_microseconds );
811 if ( $this->_persistent ) {
828 $host = array_search( $sock, $this->_cache_sock );
836 $ip = explode(
':', $host )[0];
837 $this->_host_dead[$ip] = time() + 30 + intval( rand( 0, 10 ) );
838 $this->_host_dead[$host] = $this->_host_dead[$ip];
839 unset( $this->_cache_sock[$host] );
854 if ( !$this->_active ) {
858 if ( $this->_single_sock !== null ) {
862 $hv = is_array( $key ) ? intval( $key[0] ) : $this->
_hashfunc( $key );
863 if ( $this->_buckets === null ) {
865 foreach ( $this->_servers
as $v ) {
866 if ( is_array( $v ) ) {
867 for ( $i = 0; $i < $v[1]; $i++ ) {
874 $this->_buckets = $bu;
875 $this->_bucketcount = count( $bu );
878 $realkey = is_array( $key ) ? $key[1] : $key;
879 for ( $tries = 0; $tries < 20; $tries++ ) {
882 if ( is_resource( $sock ) ) {
885 $hv = $this->
_hashfunc( $hv . $realkey );
903 # Hash function must be in [0,0x7ffffff]
904 # We take the first 31 bits of the MD5 hash, which unlike the hash
905 # function used in a previous version of this client, works
906 return hexdec( substr( md5( $key ), 0, 8 ) ) & 0x7fffffff;
923 if ( !$this->_active ) {
928 if ( !is_resource( $sock ) ) {
932 $key = is_array( $key ) ? $key[1] : $key;
933 if ( isset( $this->stats[$cmd] ) ) {
934 $this->stats[$cmd]++;
936 $this->stats[$cmd] = 1;
938 if ( !$this->
_fwrite( $sock,
"$cmd $key $amt\r\n" ) ) {
944 if ( !preg_match(
'/^(\d+)/',
$line, $match ) ) {
967 $decl = $this->
_fgets( $sock );
969 if ( $decl ===
false ) {
975 } elseif ( preg_match(
'/^VALUE (\S+) (\d+) (\d+) (\d+)$/', $decl, $match ) ) {
988 $this->
_fread( $sock, $match[3] + 2 ),
990 } elseif ( $decl ==
"END" ) {
991 if ( count( $results ) == 0 ) {
999 foreach ( $results
as $vars ) {
1002 if ( $data ===
false || substr( $data, -2 ) !==
"\r\n" ) {
1004 'line ending missing from data block from $1' );
1007 $data = substr( $data, 0, -2 );
1008 $ret[$rkey] = $data;
1010 if ( $this->_have_zlib &&
$flags & self::COMPRESSED ) {
1011 $ret[$rkey] = gzuncompress(
$ret[$rkey] );
1023 if (
$flags & self::SERIALIZED ) {
1025 } elseif (
$flags & self::INTVAL ) {
1026 $ret[$rkey] = intval(
$ret[$rkey] );
1032 $this->
_handle_error( $sock,
'Error parsing response from $1' );
1057 function _set( $cmd, $key, $val, $exp, $casToken = null ) {
1058 if ( !$this->_active ) {
1063 if ( !is_resource( $sock ) ) {
1067 if ( isset( $this->stats[$cmd] ) ) {
1068 $this->stats[$cmd]++;
1070 $this->stats[$cmd] = 1;
1075 if ( is_int( $val ) ) {
1077 } elseif ( !is_scalar( $val ) ) {
1079 $flags |= self::SERIALIZED;
1080 if ( $this->_debug ) {
1081 $this->
_debugprint( sprintf(
"client: serializing data as it is not scalar" ) );
1085 $len = strlen( $val );
1087 if ( $this->_have_zlib && $this->_compress_enable
1088 && $this->_compress_threshold && $len >= $this->_compress_threshold
1090 $c_val = gzcompress( $val, 9 );
1091 $c_len = strlen( $c_val );
1093 if ( $c_len < $len * ( 1 - self::COMPRESSION_SAVINGS ) ) {
1094 if ( $this->_debug ) {
1095 $this->
_debugprint( sprintf(
"client: compressing data; was %d bytes is now %d bytes", $len, $c_len ) );
1099 $flags |= self::COMPRESSED;
1103 $command =
"$cmd $key $flags $exp $len";
1108 if ( !$this->
_fwrite( $sock,
"$command\r\n$val\r\n" ) ) {
1114 if ( $this->_debug ) {
1117 if (
$line ==
"STORED" ) {
1135 if ( isset( $this->_cache_sock[$host] ) ) {
1136 return $this->_cache_sock[$host];
1141 list( $ip, ) = explode(
':', $host );
1142 if ( isset( $this->_host_dead[$host] ) && $this->_host_dead[$host] > $now ||
1143 isset( $this->_host_dead[$ip] ) && $this->_host_dead[$ip] > $now
1153 stream_set_write_buffer( $sock, 0 );
1155 $this->_cache_sock[$host] = $sock;
1157 return $this->_cache_sock[$host];
1164 $this->_logger->debug( $text );
1171 $this->_logger->error(
"Memcached error: $text" );
1183 $bufSize = strlen( $buf );
1184 while ( $bytesWritten < $bufSize ) {
1185 $result = fwrite( $sock, $buf );
1186 $data = stream_get_meta_data( $sock );
1187 if ( $data[
'timed_out'] ) {
1209 $peer = stream_socket_get_name( $sock,
true );
1210 if ( strval( $peer ) ===
'' ) {
1211 $peer = array_search( $sock, $this->_cache_sock );
1212 if ( $peer ===
false ) {
1213 $peer =
'[unknown host]';
1216 $msg = str_replace(
'$1', $peer, $msg );
1231 while ( $len > 0 ) {
1232 $result = fread( $sock, $len );
1233 $data = stream_get_meta_data( $sock );
1234 if ( $data[
'timed_out'] ) {
1239 $this->
_handle_error( $sock,
'error reading buffer from $1' );
1244 $this->
_handle_error( $sock,
'unexpected end of file reading from $1' );
1265 $data = stream_get_meta_data( $sock );
1266 if ( $data[
'timed_out'] ) {
1267 $this->
_handle_error( $sock,
'timeout reading line from $1' );
1271 $this->
_handle_error( $sock,
'error reading line from $1' );
1274 if ( substr(
$result, -2 ) ===
"\r\n" ) {
1276 } elseif ( substr(
$result, -1 ) ===
"\n" ) {
1279 $this->
_handle_error( $sock,
'line ending missing in response from $1' );
1290 if ( !is_resource( $f ) ) {
1296 $n = stream_select( $r, $w,
$e, 0, 0 );
1297 while ( $n == 1 && !feof( $f ) ) {
1302 $n = stream_select( $r, $w,
$e, 0, 0 );
set_servers($list)
Set the server list to distribute key gets and puts between.
set_timeout($seconds, $microseconds)
Sets the timeout for new connections.
_fwrite($sock, $buf)
Write to a stream.
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
the array() calling protocol came about after MediaWiki 1.4rc1.
_handle_error($sock, $msg)
Handle an I/O error.
array $stats
Command statistics.
memcached client class implemented using (p)fsockopen()
get_multi($keys)
Get multiple keys from the server(s)
array $_host_dead
Dead hosts, assoc array, 'host'=>'unixtime when ok to check again'.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
const INTVAL
Flag: indicates data is an integer.
incr($key, $amt=1)
Increments $key (optionally) by $amt.
_load_items($sock, &$ret, &$casToken=null)
Load items into $ret from $sock.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
forget_dead_hosts()
Forget about all of the dead hosts.
$_connect_timeout
Connect timeout in seconds.
_dead_sock($sock)
Marks a host as dead until 30-40 seconds in the future.
disconnect_all()
Disconnects all connected sockets.
int $_timeout_microseconds
Stream timeout in microseconds.
_fread($sock, $len)
Read the specified number of bytes from a stream.
bool $_have_zlib
Is compression available?
_connect_sock(&$sock, $host)
Connects $sock to $host, timing out after $timeout.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED!Use HtmlPageLinkRendererBegin instead.Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
int $_timeout_seconds
Stream timeout in seconds.
_fgets($sock)
Read a line from a stream.
set($key, $value, $exp=0)
Unconditionally sets a key to a given value in the memcache.
int $_compress_threshold
At how many bytes should we compress?
bool $_persistent
Are we using persistent links?
const SERIALIZED
Flag: indicates data is serialized.
enable_compress($enable)
Enable / Disable compression.
set_compress_threshold($thresh)
Set the compression threshold.
add($key, $val, $exp=0)
Adds a key/value to the memcache server if one isn't already set with that key.
cas($casToken, $key, $value, $exp=0)
Sets a key to a given value in the memcache if the current value still corresponds to a known...
array $_servers
Array containing ip:port or array(ip:port, weight)
set_debug($dbg)
Set the debug flag.
bool $_debug
Current debug status; 0 - none to 9 - profiling.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
__construct($args)
Memcache initializer.
array $_buckets
Our bit buckets.
touch($key, $time=0)
Changes the TTL on a key from the server to $time.
string $_single_sock
If only using one server; contains ip:port to connect to.
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
_flush_read_buffer($f)
Flush the read buffer of a stream.
int $_active
of total servers we have
_set($cmd, $key, $val, $exp, $casToken=null)
Performs the requested storage operation to the memcache server.
bool $_compress_enable
Do we want to use compression?
_close_sock($sock)
Close the specified socket.
replace($key, $value, $exp=0)
Overwrites an existing value for key; only works if key is already set.
array $_cache_sock
Cached Sockets that are connected.
const COMPRESSED
Flag: indicates data is compressed.
run_command($sock, $cmd)
Passes through $cmd to the memcache server connected by $sock; returns output as an array (null array...
_hashfunc($key)
Creates a hash integer based on the $key.
const COMPRESSION_SAVINGS
Minimum savings to store data compressed.
sock_to_host($host)
Returns the socket for the host.
int $_bucketcount
Total # of bit buckets we have.
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
see documentation in includes Linker php for Linker::makeImageLink & $time
$_connect_attempts
Number of connection attempts for each server.
decr($key, $amt=1)
Decrease a value stored on the memcache server.
_incrdecr($cmd, $key, $amt=1)
Perform increment/decriment on $key.