Merge "Simplified getMaxLag() to use getLagTimes()"
[mediawiki.git] / includes / filebackend / lockmanager / LockManagerGroup.php
blob19fc4fef4360664a1ff3cee8b80a5e59b5e378c7
1 <?php
2 /**
3 * Lock manager registration handling.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup LockManager
24 /**
25 * Class to handle file lock manager registration
27 * @ingroup LockManager
28 * @author Aaron Schulz
29 * @since 1.19
31 class LockManagerGroup {
32 /** @var array (domain => LockManager) */
33 protected static $instances = array();
35 protected $domain; // string; domain (usually wiki ID)
37 /** @var array Array of (name => ('class' => ..., 'config' => ..., 'instance' => ...)) */
38 protected $managers = array();
40 /**
41 * @param string $domain Domain (usually wiki ID)
43 protected function __construct( $domain ) {
44 $this->domain = $domain;
47 /**
48 * @param bool|string $domain Domain (usually wiki ID). Default: false.
49 * @return LockManagerGroup
51 public static function singleton( $domain = false ) {
52 $domain = ( $domain === false ) ? wfWikiID() : $domain;
53 if ( !isset( self::$instances[$domain] ) ) {
54 self::$instances[$domain] = new self( $domain );
55 self::$instances[$domain]->initFromGlobals();
58 return self::$instances[$domain];
61 /**
62 * Destroy the singleton instances
64 public static function destroySingletons() {
65 self::$instances = array();
68 /**
69 * Register lock managers from the global variables
71 protected function initFromGlobals() {
72 global $wgLockManagers;
74 $this->register( $wgLockManagers );
77 /**
78 * Register an array of file lock manager configurations
80 * @param array $configs
81 * @throws MWException
83 protected function register( array $configs ) {
84 foreach ( $configs as $config ) {
85 $config['domain'] = $this->domain;
86 if ( !isset( $config['name'] ) ) {
87 throw new MWException( "Cannot register a lock manager with no name." );
89 $name = $config['name'];
90 if ( !isset( $config['class'] ) ) {
91 throw new MWException( "Cannot register lock manager `{$name}` with no class." );
93 $class = $config['class'];
94 unset( $config['class'] ); // lock manager won't need this
95 $this->managers[$name] = array(
96 'class' => $class,
97 'config' => $config,
98 'instance' => null
104 * Get the lock manager object with a given name
106 * @param string $name
107 * @return LockManager
108 * @throws MWException
110 public function get( $name ) {
111 if ( !isset( $this->managers[$name] ) ) {
112 throw new MWException( "No lock manager defined with the name `$name`." );
114 // Lazy-load the actual lock manager instance
115 if ( !isset( $this->managers[$name]['instance'] ) ) {
116 $class = $this->managers[$name]['class'];
117 $config = $this->managers[$name]['config'];
118 $this->managers[$name]['instance'] = new $class( $config );
121 return $this->managers[$name]['instance'];
125 * Get the config array for a lock manager object with a given name
127 * @param string $name
128 * @return array
129 * @throws MWException
131 public function config( $name ) {
132 if ( !isset( $this->managers[$name] ) ) {
133 throw new MWException( "No lock manager defined with the name `$name`." );
135 $class = $this->managers[$name]['class'];
137 return array( 'class' => $class ) + $this->managers[$name]['config'];
141 * Get the default lock manager configured for the site.
142 * Returns NullLockManager if no lock manager could be found.
144 * @return LockManager
146 public function getDefault() {
147 return isset( $this->managers['default'] )
148 ? $this->get( 'default' )
149 : new NullLockManager( array() );
153 * Get the default lock manager configured for the site
154 * or at least some other effective configured lock manager.
155 * Throws an exception if no lock manager could be found.
157 * @return LockManager
158 * @throws MWException
160 public function getAny() {
161 return isset( $this->managers['default'] )
162 ? $this->get( 'default' )
163 : $this->get( 'fsLockManager' );