MediaWiki  1.28.0
ObjectCache.php
Go to the documentation of this file.
1 <?php
26 
80 class ObjectCache {
82  public static $instances = [];
84  public static $wanInstances = [];
85 
92  public static function getInstance( $id ) {
93  if ( !isset( self::$instances[$id] ) ) {
94  self::$instances[$id] = self::newFromId( $id );
95  }
96 
97  return self::$instances[$id];
98  }
99 
107  public static function getWANInstance( $id ) {
108  if ( !isset( self::$wanInstances[$id] ) ) {
109  self::$wanInstances[$id] = self::newWANCacheFromId( $id );
110  }
111 
112  return self::$wanInstances[$id];
113  }
114 
122  public static function newFromId( $id ) {
124 
125  if ( !isset( $wgObjectCaches[$id] ) ) {
126  // Always recognize these ones
127  if ( $id === CACHE_NONE ) {
128  return new EmptyBagOStuff();
129  } elseif ( $id === 'hash' ) {
130  return new HashBagOStuff();
131  }
132 
133  throw new InvalidArgumentException( "Invalid object cache type \"$id\" requested. " .
134  "It is not present in \$wgObjectCaches." );
135  }
136 
137  return self::newFromParams( $wgObjectCaches[$id] );
138  }
139 
149  public static function getDefaultKeyspace() {
150  global $wgCachePrefix;
151 
152  $keyspace = $wgCachePrefix;
153  if ( is_string( $keyspace ) && $keyspace !== '' ) {
154  return $keyspace;
155  }
156 
157  return wfWikiID();
158  }
159 
171  public static function newFromParams( $params ) {
172  if ( isset( $params['loggroup'] ) ) {
173  $params['logger'] = LoggerFactory::getInstance( $params['loggroup'] );
174  } else {
175  $params['logger'] = LoggerFactory::getInstance( 'objectcache' );
176  }
177  if ( !isset( $params['keyspace'] ) ) {
178  $params['keyspace'] = self::getDefaultKeyspace();
179  }
180  if ( isset( $params['factory'] ) ) {
181  return call_user_func( $params['factory'], $params );
182  } elseif ( isset( $params['class'] ) ) {
183  $class = $params['class'];
184  // Automatically set the 'async' update handler
185  $params['asyncHandler'] = isset( $params['asyncHandler'] )
186  ? $params['asyncHandler']
187  : 'DeferredUpdates::addCallableUpdate';
188  // Enable reportDupes by default
189  $params['reportDupes'] = isset( $params['reportDupes'] )
190  ? $params['reportDupes']
191  : true;
192  // Do b/c logic for SqlBagOStuff
193  if ( is_a( $class, SqlBagOStuff::class, true ) ) {
194  if ( isset( $params['server'] ) && !isset( $params['servers'] ) ) {
195  $params['servers'] = [ $params['server'] ];
196  unset( $params['server'] );
197  }
198  // In the past it was not required to set 'dbDirectory' in $wgObjectCaches
199  if ( isset( $params['servers'] ) ) {
200  foreach ( $params['servers'] as &$server ) {
201  if ( $server['type'] === 'sqlite' && !isset( $server['dbDirectory'] ) ) {
202  $server['dbDirectory'] = MediaWikiServices::getInstance()
203  ->getMainConfig()->get( 'SQLiteDataDir' );
204  }
205  }
206  }
207  }
208 
209  // Do b/c logic for MemcachedBagOStuff
210  if ( is_subclass_of( $class, MemcachedBagOStuff::class ) ) {
211  if ( !isset( $params['servers'] ) ) {
212  $params['servers'] = $GLOBALS['wgMemCachedServers'];
213  }
214  if ( !isset( $params['debug'] ) ) {
215  $params['debug'] = $GLOBALS['wgMemCachedDebug'];
216  }
217  if ( !isset( $params['persistent'] ) ) {
218  $params['persistent'] = $GLOBALS['wgMemCachedPersistent'];
219  }
220  if ( !isset( $params['timeout'] ) ) {
221  $params['timeout'] = $GLOBALS['wgMemCachedTimeout'];
222  }
223  }
224  return new $class( $params );
225  } else {
226  throw new InvalidArgumentException( "The definition of cache type \""
227  . print_r( $params, true ) . "\" lacks both "
228  . "factory and class parameters." );
229  }
230  }
231 
245  public static function newAnything( $params ) {
248  foreach ( $candidates as $candidate ) {
249  if ( $candidate !== CACHE_NONE && $candidate !== CACHE_ANYTHING ) {
250  return self::getInstance( $candidate );
251  }
252  }
253 
254  if ( MediaWikiServices::getInstance()->isServiceDisabled( 'DBLoadBalancer' ) ) {
255  // The LoadBalancer is disabled, probably because
256  // MediaWikiServices::disableStorageBackend was called.
257  $candidate = CACHE_NONE;
258  } else {
259  $candidate = CACHE_DB;
260  }
261 
262  return self::getInstance( $candidate );
263  }
264 
282  public static function getLocalServerInstance( $fallback = CACHE_NONE ) {
283  $cache = MediaWikiServices::getInstance()->getLocalServerObjectCache();
284  if ( $cache instanceof EmptyBagOStuff ) {
285  if ( is_array( $fallback ) ) {
286  $fallback = isset( $fallback['fallback'] ) ? $fallback['fallback'] : CACHE_NONE;
287  }
288  $cache = self::getInstance( $fallback );
289  }
290 
291  return $cache;
292  }
293 
302  public static function newWANCacheFromId( $id ) {
304 
305  if ( !isset( $wgWANObjectCaches[$id] ) ) {
306  throw new UnexpectedValueException(
307  "Cache type \"$id\" requested is not present in \$wgWANObjectCaches." );
308  }
309 
310  $params = $wgWANObjectCaches[$id];
311  if ( !isset( $wgObjectCaches[$params['cacheId']] ) ) {
312  throw new UnexpectedValueException(
313  "Cache type \"{$params['cacheId']}\" is not present in \$wgObjectCaches." );
314  }
315  $params['store'] = $wgObjectCaches[$params['cacheId']];
316 
317  return self::newWANCacheFromParams( $params );
318  }
319 
328  public static function newWANCacheFromParams( array $params ) {
329  $erGroup = MediaWikiServices::getInstance()->getEventRelayerGroup();
330  foreach ( $params['channels'] as $action => $channel ) {
331  $params['relayers'][$action] = $erGroup->getRelayer( $channel );
332  $params['channels'][$action] = $channel;
333  }
334  $params['cache'] = self::newFromParams( $params['store'] );
335  if ( isset( $params['loggroup'] ) ) {
336  $params['logger'] = LoggerFactory::getInstance( $params['loggroup'] );
337  } else {
338  $params['logger'] = LoggerFactory::getInstance( 'objectcache' );
339  }
340  $class = $params['class'];
341 
342  return new $class( $params );
343  }
344 
351  public static function getLocalClusterInstance() {
353 
354  return self::getInstance( $wgMainCacheType );
355  }
356 
364  public static function getMainWANInstance() {
365  return MediaWikiServices::getInstance()->getMainWANObjectCache();
366  }
367 
387  public static function getMainStashInstance() {
388  return MediaWikiServices::getInstance()->getMainObjectStash();
389  }
390 
394  public static function clear() {
395  self::$instances = [];
396  self::$wanInstances = [];
397  }
398 }
static getMainWANInstance()
Get the main WAN cache object.
the array() calling protocol came about after MediaWiki 1.4rc1.
static newWANCacheFromId($id)
Create a new cache object of the specified type.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static getInstance($id)
Get a cached instance of the specified type of cache object.
Definition: ObjectCache.php:92
static newWANCacheFromParams(array $params)
Create a new cache object of the specified type.
static getLocalClusterInstance()
Get the main cluster-local cache object.
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 MediaWikiServices
Definition: injection.txt:23
static getMainStashInstance()
Get the cache object for the main stash.
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
$wgWANObjectCaches
Advanced WAN object cache configuration.
static BagOStuff[] $instances
Map of (id => BagOStuff)
Definition: ObjectCache.php:82
$wgParserCacheType
The cache type for storing article HTML.
static newFromParams($params)
Create a new cache object from parameters.
$GLOBALS['IP']
$wgMessageCacheType
The cache type for storing the contents of the MediaWiki namespace.
$cache
Definition: mcc.php:33
$params
CACHE_MEMCACHED $wgMainCacheType
Definition: memcached.txt:63
static getDefaultKeyspace()
Get the default keyspace for this wiki.
A BagOStuff object with no objects in it.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
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
Definition: distributors.txt:9
static WANObjectCache[] $wanInstances
Map of (id => WANObjectCache)
Definition: ObjectCache.php:84
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
Definition: injection.txt:35
$fallback
Definition: MessagesAb.php:11
static newAnything($params)
Factory function for CACHE_ANYTHING (referenced from DefaultSettings.php)
static getWANInstance($id)
Get a cached instance of the specified type of WAN cache object.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
static getLocalServerInstance($fallback=CACHE_NONE)
Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)
const CACHE_ANYTHING
Definition: Defines.php:93
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method.MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances.The"Spi"in MediaWiki\Logger\Spi stands for"service provider interface".An SPI is an API intended to be implemented or extended by a third party.This software design pattern is intended to enable framework extension and replaceable components.It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki.The service provider interface allows the backend logging library to be implemented in multiple ways.The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime.This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance.Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
Definition: logger.txt:5
$wgObjectCaches
Advanced object cache configuration.
static clear()
Clear all the cached instances.
static newFromId($id)
Create a new cache object of the specified type.
const CACHE_NONE
Definition: Defines.php:94
const CACHE_DB
Definition: Defines.php:95