Make LBFactorySingle call initLoadBalancer() as the others do
[mediawiki.git] / includes / registration / ExtensionRegistry.php
blob78ec1481380cc5ae6a170c3800242ba0b9440366
1 <?php
3 use MediaWiki\MediaWikiServices;
5 /**
6 * ExtensionRegistry class
8 * The Registry loads JSON files, and uses a Processor
9 * to extract information from them. It also registers
10 * classes with the autoloader.
12 * @since 1.25
14 class ExtensionRegistry {
16 /**
17 * "requires" key that applies to MediaWiki core/$wgVersion
19 const MEDIAWIKI_CORE = 'MediaWiki';
21 /**
22 * Version of the highest supported manifest version
24 const MANIFEST_VERSION = 2;
26 /**
27 * Version of the oldest supported manifest version
29 const OLDEST_MANIFEST_VERSION = 1;
31 /**
32 * Bump whenever the registration cache needs resetting
34 const CACHE_VERSION = 3;
36 /**
37 * Special key that defines the merge strategy
39 * @since 1.26
41 const MERGE_STRATEGY = '_merge_strategy';
43 /**
44 * @var BagOStuff
46 protected $cache;
48 /**
49 * Array of loaded things, keyed by name, values are credits information
51 * @var array
53 private $loaded = [];
55 /**
56 * List of paths that should be loaded
58 * @var array
60 protected $queued = [];
62 /**
63 * Items in the JSON file that aren't being
64 * set as globals
66 * @var array
68 protected $attributes = [];
70 /**
71 * @var ExtensionRegistry
73 private static $instance;
75 /**
76 * @return ExtensionRegistry
78 public static function getInstance() {
79 if ( self::$instance === null ) {
80 self::$instance = new self();
83 return self::$instance;
86 public function __construct() {
87 // We use a try/catch because we don't want to fail here
88 // if $wgObjectCaches is not configured properly for APC setup
89 try {
90 $this->cache = MediaWikiServices::getInstance()->getLocalServerObjectCache();
91 } catch ( MWException $e ) {
92 $this->cache = new EmptyBagOStuff();
96 /**
97 * @param string $path Absolute path to the JSON file
99 public function queue( $path ) {
100 global $wgExtensionInfoMTime;
102 $mtime = $wgExtensionInfoMTime;
103 if ( $mtime === false ) {
104 if ( file_exists( $path ) ) {
105 $mtime = filemtime( $path );
106 } else {
107 throw new Exception( "$path does not exist!" );
109 if ( !$mtime ) {
110 $err = error_get_last();
111 throw new Exception( "Couldn't stat $path: {$err['message']}" );
114 $this->queued[$path] = $mtime;
117 public function loadFromQueue() {
118 global $wgVersion;
119 if ( !$this->queued ) {
120 return;
123 // A few more things to vary the cache on
124 $versions = [
125 'registration' => self::CACHE_VERSION,
126 'mediawiki' => $wgVersion
129 // See if this queue is in APC
130 $key = wfMemcKey(
131 'registration',
132 md5( json_encode( $this->queued + $versions ) )
134 $data = $this->cache->get( $key );
135 if ( $data ) {
136 $this->exportExtractedData( $data );
137 } else {
138 $data = $this->readFromQueue( $this->queued );
139 $this->exportExtractedData( $data );
140 // Do this late since we don't want to extract it since we already
141 // did that, but it should be cached
142 $data['globals']['wgAutoloadClasses'] += $data['autoload'];
143 unset( $data['autoload'] );
144 $this->cache->set( $key, $data, 60 * 60 * 24 );
146 $this->queued = [];
150 * Get the current load queue. Not intended to be used
151 * outside of the installer.
153 * @return array
155 public function getQueue() {
156 return $this->queued;
160 * Clear the current load queue. Not intended to be used
161 * outside of the installer.
163 public function clearQueue() {
164 $this->queued = [];
168 * Process a queue of extensions and return their extracted data
170 * @param array $queue keys are filenames, values are ignored
171 * @return array extracted info
172 * @throws Exception
174 public function readFromQueue( array $queue ) {
175 global $wgVersion;
176 $autoloadClasses = [];
177 $autoloaderPaths = [];
178 $processor = new ExtensionProcessor();
179 $incompatible = [];
180 $coreVersionParser = new CoreVersionChecker( $wgVersion );
181 foreach ( $queue as $path => $mtime ) {
182 $json = file_get_contents( $path );
183 if ( $json === false ) {
184 throw new Exception( "Unable to read $path, does it exist?" );
186 $info = json_decode( $json, /* $assoc = */ true );
187 if ( !is_array( $info ) ) {
188 throw new Exception( "$path is not a valid JSON file." );
190 if ( !isset( $info['manifest_version'] ) ) {
191 // For backwards-compatability, assume a version of 1
192 $info['manifest_version'] = 1;
194 $version = $info['manifest_version'];
195 if ( $version < self::OLDEST_MANIFEST_VERSION || $version > self::MANIFEST_VERSION ) {
196 throw new Exception( "$path: unsupported manifest_version: {$version}" );
198 $autoload = $this->processAutoLoader( dirname( $path ), $info );
199 // Set up the autoloader now so custom processors will work
200 $GLOBALS['wgAutoloadClasses'] += $autoload;
201 $autoloadClasses += $autoload;
202 // Check any constraints against MediaWiki core
203 $requires = $processor->getRequirements( $info );
204 if ( isset( $requires[self::MEDIAWIKI_CORE] )
205 && !$coreVersionParser->check( $requires[self::MEDIAWIKI_CORE] )
207 // Doesn't match, mark it as incompatible.
208 $incompatible[] = "{$info['name']} is not compatible with the current "
209 . "MediaWiki core (version {$wgVersion}), it requires: " . $requires[self::MEDIAWIKI_CORE]
210 . '.';
211 continue;
213 // Get extra paths for later inclusion
214 $autoloaderPaths = array_merge( $autoloaderPaths,
215 $processor->getExtraAutoloaderPaths( dirname( $path ), $info ) );
216 // Compatible, read and extract info
217 $processor->extractInfo( $path, $info, $version );
219 if ( $incompatible ) {
220 if ( count( $incompatible ) === 1 ) {
221 throw new Exception( $incompatible[0] );
222 } else {
223 throw new Exception( implode( "\n", $incompatible ) );
226 $data = $processor->getExtractedInfo();
227 // Need to set this so we can += to it later
228 $data['globals']['wgAutoloadClasses'] = [];
229 $data['autoload'] = $autoloadClasses;
230 $data['autoloaderPaths'] = $autoloaderPaths;
231 return $data;
234 protected function exportExtractedData( array $info ) {
235 foreach ( $info['globals'] as $key => $val ) {
236 // If a merge strategy is set, read it and remove it from the value
237 // so it doesn't accidentally end up getting set.
238 if ( is_array( $val ) && isset( $val[self::MERGE_STRATEGY] ) ) {
239 $mergeStrategy = $val[self::MERGE_STRATEGY];
240 unset( $val[self::MERGE_STRATEGY] );
241 } else {
242 $mergeStrategy = 'array_merge';
245 // Optimistic: If the global is not set, or is an empty array, replace it entirely.
246 // Will be O(1) performance.
247 if ( !isset( $GLOBALS[$key] ) || ( is_array( $GLOBALS[$key] ) && !$GLOBALS[$key] ) ) {
248 $GLOBALS[$key] = $val;
249 continue;
252 if ( !is_array( $GLOBALS[$key] ) || !is_array( $val ) ) {
253 // config setting that has already been overridden, don't set it
254 continue;
257 switch ( $mergeStrategy ) {
258 case 'array_merge_recursive':
259 $GLOBALS[$key] = array_merge_recursive( $GLOBALS[$key], $val );
260 break;
261 case 'array_plus_2d':
262 $GLOBALS[$key] = wfArrayPlus2d( $GLOBALS[$key], $val );
263 break;
264 case 'array_plus':
265 $GLOBALS[$key] += $val;
266 break;
267 case 'array_merge':
268 $GLOBALS[$key] = array_merge( $val, $GLOBALS[$key] );
269 break;
270 default:
271 throw new UnexpectedValueException( "Unknown merge strategy '$mergeStrategy'" );
275 foreach ( $info['defines'] as $name => $val ) {
276 define( $name, $val );
278 foreach ( $info['autoloaderPaths'] as $path ) {
279 require_once $path;
281 foreach ( $info['callbacks'] as $cb ) {
282 call_user_func( $cb );
285 $this->loaded += $info['credits'];
286 if ( $info['attributes'] ) {
287 if ( !$this->attributes ) {
288 $this->attributes = $info['attributes'];
289 } else {
290 $this->attributes = array_merge_recursive( $this->attributes, $info['attributes'] );
296 * Loads and processes the given JSON file without delay
298 * If some extensions are already queued, this will load
299 * those as well.
301 * @param string $path Absolute path to the JSON file
303 public function load( $path ) {
304 $this->loadFromQueue(); // First clear the queue
305 $this->queue( $path );
306 $this->loadFromQueue();
310 * Whether a thing has been loaded
311 * @param string $name
312 * @return bool
314 public function isLoaded( $name ) {
315 return isset( $this->loaded[$name] );
319 * @param string $name
320 * @return array
322 public function getAttribute( $name ) {
323 if ( isset( $this->attributes[$name] ) ) {
324 return $this->attributes[$name];
325 } else {
326 return [];
331 * Get information about all things
333 * @return array
335 public function getAllThings() {
336 return $this->loaded;
340 * Mark a thing as loaded
342 * @param string $name
343 * @param array $credits
345 protected function markLoaded( $name, array $credits ) {
346 $this->loaded[$name] = $credits;
350 * Register classes with the autoloader
352 * @param string $dir
353 * @param array $info
354 * @return array
356 protected function processAutoLoader( $dir, array $info ) {
357 if ( isset( $info['AutoloadClasses'] ) ) {
358 // Make paths absolute, relative to the JSON file
359 return array_map( function( $file ) use ( $dir ) {
360 return "$dir/$file";
361 }, $info['AutoloadClasses'] );
362 } else {
363 return [];