Merge "Add Special:Login and Special:Logout as aliases."
[lhc/web/wiklou.git] / includes / filebackend / lockmanager / LockManagerGroup.php
1 <?php
2 /**
3 * Lock manager registration handling.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup LockManager
22 */
23
24 /**
25 * Class to handle file lock manager registration
26 *
27 * @ingroup LockManager
28 * @author Aaron Schulz
29 * @since 1.19
30 */
31 class LockManagerGroup {
32 /** @var Array (domain => LockManager) */
33 protected static $instances = array();
34
35 protected $domain; // string; domain (usually wiki ID)
36
37 /** @var Array of (name => ('class' => ..., 'config' => ..., 'instance' => ...)) */
38 protected $managers = array();
39
40 /**
41 * @param string $domain Domain (usually wiki ID)
42 */
43 protected function __construct( $domain ) {
44 $this->domain = $domain;
45 }
46
47 /**
48 * @param string $domain Domain (usually wiki ID)
49 * @return LockManagerGroup
50 */
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();
56 }
57 return self::$instances[$domain];
58 }
59
60 /**
61 * Destroy the singleton instances
62 *
63 * @return void
64 */
65 public static function destroySingletons() {
66 self::$instances = array();
67 }
68
69 /**
70 * Register lock managers from the global variables
71 *
72 * @return void
73 */
74 protected function initFromGlobals() {
75 global $wgLockManagers;
76
77 $this->register( $wgLockManagers );
78 }
79
80 /**
81 * Register an array of file lock manager configurations
82 *
83 * @param $configs Array
84 * @return void
85 * @throws MWException
86 */
87 protected function register( array $configs ) {
88 foreach ( $configs as $config ) {
89 $config['domain'] = $this->domain;
90 if ( !isset( $config['name'] ) ) {
91 throw new MWException( "Cannot register a lock manager with no name." );
92 }
93 $name = $config['name'];
94 if ( !isset( $config['class'] ) ) {
95 throw new MWException( "Cannot register lock manager `{$name}` with no class." );
96 }
97 $class = $config['class'];
98 unset( $config['class'] ); // lock manager won't need this
99 $this->managers[$name] = array(
100 'class' => $class,
101 'config' => $config,
102 'instance' => null
103 );
104 }
105 }
106
107 /**
108 * Get the lock manager object with a given name
109 *
110 * @param $name string
111 * @return LockManager
112 * @throws MWException
113 */
114 public function get( $name ) {
115 if ( !isset( $this->managers[$name] ) ) {
116 throw new MWException( "No lock manager defined with the name `$name`." );
117 }
118 // Lazy-load the actual lock manager instance
119 if ( !isset( $this->managers[$name]['instance'] ) ) {
120 $class = $this->managers[$name]['class'];
121 $config = $this->managers[$name]['config'];
122 $this->managers[$name]['instance'] = new $class( $config );
123 }
124 return $this->managers[$name]['instance'];
125 }
126
127 /**
128 * Get the config array for a lock manager object with a given name
129 *
130 * @param $name string
131 * @return Array
132 * @throws MWException
133 */
134 public function config( $name ) {
135 if ( !isset( $this->managers[$name] ) ) {
136 throw new MWException( "No lock manager defined with the name `$name`." );
137 }
138 $class = $this->managers[$name]['class'];
139 return array( 'class' => $class ) + $this->managers[$name]['config'];
140 }
141
142 /**
143 * Get the default lock manager configured for the site.
144 * Returns NullLockManager if no lock manager could be found.
145 *
146 * @return LockManager
147 */
148 public function getDefault() {
149 return isset( $this->managers['default'] )
150 ? $this->get( 'default' )
151 : new NullLockManager( array() );
152 }
153
154 /**
155 * Get the default lock manager configured for the site
156 * or at least some other effective configured lock manager.
157 * Throws an exception if no lock manager could be found.
158 *
159 * @return LockManager
160 * @throws MWException
161 */
162 public function getAny() {
163 return isset( $this->managers['default'] )
164 ? $this->get( 'default' )
165 : $this->get( 'fsLockManager' );
166 }
167 }