MediaWiki  1.29.2
LockManagerGroup.php
Go to the documentation of this file.
1 <?php
25 
35  protected static $instances = [];
36 
37  protected $domain; // string; domain (usually wiki ID)
38 
40  protected $managers = [];
41 
45  protected function __construct( $domain ) {
46  $this->domain = $domain;
47  }
48 
53  public static function singleton( $domain = false ) {
54  $domain = ( $domain === false ) ? wfWikiID() : $domain;
55  if ( !isset( self::$instances[$domain] ) ) {
56  self::$instances[$domain] = new self( $domain );
57  self::$instances[$domain]->initFromGlobals();
58  }
59 
60  return self::$instances[$domain];
61  }
62 
66  public static function destroySingletons() {
67  self::$instances = [];
68  }
69 
73  protected function initFromGlobals() {
75 
76  $this->register( $wgLockManagers );
77  }
78 
85  protected function register( array $configs ) {
86  foreach ( $configs as $config ) {
87  $config['domain'] = $this->domain;
88  if ( !isset( $config['name'] ) ) {
89  throw new Exception( "Cannot register a lock manager with no name." );
90  }
91  $name = $config['name'];
92  if ( !isset( $config['class'] ) ) {
93  throw new Exception( "Cannot register lock manager `{$name}` with no class." );
94  }
95  $class = $config['class'];
96  unset( $config['class'] ); // lock manager won't need this
97  $this->managers[$name] = [
98  'class' => $class,
99  'config' => $config,
100  'instance' => null
101  ];
102  }
103  }
104 
112  public function get( $name ) {
113  if ( !isset( $this->managers[$name] ) ) {
114  throw new Exception( "No lock manager defined with the name `$name`." );
115  }
116  // Lazy-load the actual lock manager instance
117  if ( !isset( $this->managers[$name]['instance'] ) ) {
118  $class = $this->managers[$name]['class'];
119  $config = $this->managers[$name]['config'];
120  if ( $class === 'DBLockManager' ) {
121  $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
122  $lb = $lbFactory->newMainLB( $config['domain'] );
123  $dbw = $lb->getLazyConnectionRef( DB_MASTER, [], $config['domain'] );
124 
125  $config['dbServers']['localDBMaster'] = $dbw;
126  $config['srvCache'] = ObjectCache::getLocalServerInstance( 'hash' );
127  }
128  $config['logger'] = LoggerFactory::getInstance( 'LockManager' );
129 
130  $this->managers[$name]['instance'] = new $class( $config );
131  }
132 
133  return $this->managers[$name]['instance'];
134  }
135 
143  public function config( $name ) {
144  if ( !isset( $this->managers[$name] ) ) {
145  throw new Exception( "No lock manager defined with the name `$name`." );
146  }
147  $class = $this->managers[$name]['class'];
148 
149  return [ 'class' => $class ] + $this->managers[$name]['config'];
150  }
151 
158  public function getDefault() {
159  return isset( $this->managers['default'] )
160  ? $this->get( 'default' )
161  : new NullLockManager( [] );
162  }
163 
172  public function getAny() {
173  return isset( $this->managers['default'] )
174  ? $this->get( 'default' )
175  : $this->get( 'fsLockManager' );
176  }
177 }
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
LockManagerGroup\destroySingletons
static destroySingletons()
Destroy the singleton instances.
Definition: LockManagerGroup.php:66
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
LockManagerGroup\singleton
static singleton( $domain=false)
Definition: LockManagerGroup.php:53
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
$lbFactory
$lbFactory
Definition: doMaintenance.php:117
php
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
LockManagerGroup\$instances
static LockManagerGroup[] $instances
(domain => LockManagerGroup)
Definition: LockManagerGroup.php:35
LockManagerGroup\getAny
getAny()
Get the default lock manager configured for the site or at least some other effective configured lock...
Definition: LockManagerGroup.php:172
NullLockManager
Simple version of LockManager that does nothing.
Definition: NullLockManager.php:29
$wgLockManagers
$wgLockManagers
Array of configuration arrays for each lock manager.
Definition: DefaultSettings.php:656
LockManagerGroup
Class to handle file lock manager registration.
Definition: LockManagerGroup.php:33
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
LockManagerGroup\$domain
$domain
Definition: LockManagerGroup.php:37
DB_MASTER
const DB_MASTER
Definition: defines.php:26
wfWikiID
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
Definition: GlobalFunctions.php:3011
LockManagerGroup\initFromGlobals
initFromGlobals()
Register lock managers from the global variables.
Definition: LockManagerGroup.php:73
LockManagerGroup\config
config( $name)
Get the config array for a lock manager object with a given name.
Definition: LockManagerGroup.php:143
as
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
LoggerFactory
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
LockManagerGroup\getDefault
getDefault()
Get the default lock manager configured for the site.
Definition: LockManagerGroup.php:158
MediaWikiServices
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
LockManagerGroup\__construct
__construct( $domain)
Definition: LockManagerGroup.php:45
array
the array() calling protocol came about after MediaWiki 1.4rc1.
ObjectCache\getLocalServerInstance
static getLocalServerInstance( $fallback=CACHE_NONE)
Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)
Definition: ObjectCache.php:288
LockManagerGroup\$managers
array $managers
Array of (name => ('class' => ..., 'config' => ..., 'instance' => ...))
Definition: LockManagerGroup.php:40