MediaWiki REL1_30
ExtensionRegistry.php
Go to the documentation of this file.
1<?php
2
4
15
19 const MEDIAWIKI_CORE = 'MediaWiki';
20
25
30
34 const CACHE_VERSION = 6;
35
41 const MERGE_STRATEGY = '_merge_strategy';
42
48 private $loaded = [];
49
55 protected $queued = [];
56
62 private $finished = false;
63
70 protected $attributes = [];
71
75 private static $instance;
76
80 public static function getInstance() {
81 if ( self::$instance === null ) {
82 self::$instance = new self();
83 }
84
85 return self::$instance;
86 }
87
91 public function queue( $path ) {
93
94 $mtime = $wgExtensionInfoMTime;
95 if ( $mtime === false ) {
96 if ( file_exists( $path ) ) {
97 $mtime = filemtime( $path );
98 } else {
99 throw new Exception( "$path does not exist!" );
100 }
101
102 if ( $mtime === false ) {
103 $err = error_get_last();
104 throw new Exception( "Couldn't stat $path: {$err['message']}" );
105 }
106 }
107 $this->queued[$path] = $mtime;
108 }
109
114 public function loadFromQueue() {
116 if ( !$this->queued ) {
117 return;
118 }
119
120 if ( $this->finished ) {
121 throw new MWException(
122 "The following paths tried to load late: "
123 . implode( ', ', array_keys( $this->queued ) )
124 );
125 }
126
127 // A few more things to vary the cache on
128 $versions = [
129 'registration' => self::CACHE_VERSION,
130 'mediawiki' => $wgVersion
131 ];
132
133 // We use a try/catch because we don't want to fail here
134 // if $wgObjectCaches is not configured properly for APC setup
135 try {
136 $cache = MediaWikiServices::getInstance()->getLocalServerObjectCache();
137 } catch ( MWException $e ) {
138 $cache = new EmptyBagOStuff();
139 }
140 // See if this queue is in APC
141 $key = $cache->makeKey(
142 'registration',
143 md5( json_encode( $this->queued + $versions ) )
144 );
145 $data = $cache->get( $key );
146 if ( $data ) {
147 $this->exportExtractedData( $data );
148 } else {
149 $data = $this->readFromQueue( $this->queued );
150 $this->exportExtractedData( $data );
151 // Do this late since we don't want to extract it since we already
152 // did that, but it should be cached
153 $data['globals']['wgAutoloadClasses'] += $data['autoload'];
154 unset( $data['autoload'] );
155 if ( !( $data['warnings'] && $wgDevelopmentWarnings ) ) {
156 // If there were no warnings that were shown, cache it
157 $cache->set( $key, $data, 60 * 60 * 24 );
158 }
159 }
160 $this->queued = [];
161 }
162
169 public function getQueue() {
170 return $this->queued;
171 }
172
177 public function clearQueue() {
178 $this->queued = [];
179 }
180
186 public function finish() {
187 $this->finished = true;
188 }
189
197 public function readFromQueue( array $queue ) {
199 $autoloadClasses = [];
200 $autoloaderPaths = [];
201 $processor = new ExtensionProcessor();
202 $versionChecker = new VersionChecker( $wgVersion );
203 $extDependencies = [];
204 $incompatible = [];
205 $warnings = false;
206 foreach ( $queue as $path => $mtime ) {
207 $json = file_get_contents( $path );
208 if ( $json === false ) {
209 throw new Exception( "Unable to read $path, does it exist?" );
210 }
211 $info = json_decode( $json, /* $assoc = */ true );
212 if ( !is_array( $info ) ) {
213 throw new Exception( "$path is not a valid JSON file." );
214 }
215
216 if ( !isset( $info['manifest_version'] ) ) {
218 "{$info['name']}'s extension.json or skin.json does not have manifest_version",
219 '1.29'
220 );
221 $warnings = true;
222 // For backwards-compatability, assume a version of 1
223 $info['manifest_version'] = 1;
224 }
225 $version = $info['manifest_version'];
226 if ( $version < self::OLDEST_MANIFEST_VERSION || $version > self::MANIFEST_VERSION ) {
227 $incompatible[] = "$path: unsupported manifest_version: {$version}";
228 }
229
230 $autoload = $this->processAutoLoader( dirname( $path ), $info );
231 // Set up the autoloader now so custom processors will work
232 $GLOBALS['wgAutoloadClasses'] += $autoload;
233 $autoloadClasses += $autoload;
234
235 // get all requirements/dependencies for this extension
236 $requires = $processor->getRequirements( $info );
237
238 // validate the information needed and add the requirements
239 if ( is_array( $requires ) && $requires && isset( $info['name'] ) ) {
240 $extDependencies[$info['name']] = $requires;
241 }
242
243 // Get extra paths for later inclusion
244 $autoloaderPaths = array_merge( $autoloaderPaths,
245 $processor->getExtraAutoloaderPaths( dirname( $path ), $info ) );
246 // Compatible, read and extract info
247 $processor->extractInfo( $path, $info, $version );
248 }
249 $data = $processor->getExtractedInfo();
250 $data['warnings'] = $warnings;
251
252 // check for incompatible extensions
253 $incompatible = array_merge(
254 $incompatible,
255 $versionChecker
256 ->setLoadedExtensionsAndSkins( $data['credits'] )
257 ->checkArray( $extDependencies )
258 );
259
260 if ( $incompatible ) {
261 if ( count( $incompatible ) === 1 ) {
262 throw new Exception( $incompatible[0] );
263 } else {
264 throw new Exception( implode( "\n", $incompatible ) );
265 }
266 }
267
268 // Need to set this so we can += to it later
269 $data['globals']['wgAutoloadClasses'] = [];
270 $data['autoload'] = $autoloadClasses;
271 $data['autoloaderPaths'] = $autoloaderPaths;
272 return $data;
273 }
274
275 protected function exportExtractedData( array $info ) {
276 foreach ( $info['globals'] as $key => $val ) {
277 // If a merge strategy is set, read it and remove it from the value
278 // so it doesn't accidentally end up getting set.
279 if ( is_array( $val ) && isset( $val[self::MERGE_STRATEGY] ) ) {
280 $mergeStrategy = $val[self::MERGE_STRATEGY];
281 unset( $val[self::MERGE_STRATEGY] );
282 } else {
283 $mergeStrategy = 'array_merge';
284 }
285
286 // Optimistic: If the global is not set, or is an empty array, replace it entirely.
287 // Will be O(1) performance.
288 if ( !isset( $GLOBALS[$key] ) || ( is_array( $GLOBALS[$key] ) && !$GLOBALS[$key] ) ) {
289 $GLOBALS[$key] = $val;
290 continue;
291 }
292
293 if ( !is_array( $GLOBALS[$key] ) || !is_array( $val ) ) {
294 // config setting that has already been overridden, don't set it
295 continue;
296 }
297
298 switch ( $mergeStrategy ) {
299 case 'array_merge_recursive':
300 $GLOBALS[$key] = array_merge_recursive( $GLOBALS[$key], $val );
301 break;
302 case 'array_replace_recursive':
303 $GLOBALS[$key] = array_replace_recursive( $GLOBALS[$key], $val );
304 break;
305 case 'array_plus_2d':
306 $GLOBALS[$key] = wfArrayPlus2d( $GLOBALS[$key], $val );
307 break;
308 case 'array_plus':
309 $GLOBALS[$key] += $val;
310 break;
311 case 'array_merge':
312 $GLOBALS[$key] = array_merge( $val, $GLOBALS[$key] );
313 break;
314 default:
315 throw new UnexpectedValueException( "Unknown merge strategy '$mergeStrategy'" );
316 }
317 }
318
319 foreach ( $info['defines'] as $name => $val ) {
320 define( $name, $val );
321 }
322 foreach ( $info['autoloaderPaths'] as $path ) {
323 require_once $path;
324 }
325
326 $this->loaded += $info['credits'];
327 if ( $info['attributes'] ) {
328 if ( !$this->attributes ) {
329 $this->attributes = $info['attributes'];
330 } else {
331 $this->attributes = array_merge_recursive( $this->attributes, $info['attributes'] );
332 }
333 }
334
335 foreach ( $info['callbacks'] as $name => $cb ) {
336 if ( !is_callable( $cb ) ) {
337 if ( is_array( $cb ) ) {
338 $cb = '[ ' . implode( ', ', $cb ) . ' ]';
339 }
340 throw new UnexpectedValueException( "callback '$cb' is not callable" );
341 }
342 call_user_func( $cb, $info['credits'][$name] );
343 }
344 }
345
354 public function load( $path ) {
355 $this->loadFromQueue(); // First clear the queue
356 $this->queue( $path );
357 $this->loadFromQueue();
358 }
359
365 public function isLoaded( $name ) {
366 return isset( $this->loaded[$name] );
367 }
368
373 public function getAttribute( $name ) {
374 if ( isset( $this->attributes[$name] ) ) {
375 return $this->attributes[$name];
376 } else {
377 return [];
378 }
379 }
380
386 public function getAllThings() {
387 return $this->loaded;
388 }
389
396 protected function markLoaded( $name, array $credits ) {
397 $this->loaded[$name] = $credits;
398 }
399
407 protected function processAutoLoader( $dir, array $info ) {
408 if ( isset( $info['AutoloadClasses'] ) ) {
409 // Make paths absolute, relative to the JSON file
410 return array_map( function ( $file ) use ( $dir ) {
411 return "$dir/$file";
412 }, $info['AutoloadClasses'] );
413 } else {
414 return [];
415 }
416 }
417}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$GLOBALS['IP']
int bool $wgExtensionInfoMTime
When loading extensions through the extension registration system, this can be used to invalidate the...
$wgVersion
MediaWiki version number.
$wgDevelopmentWarnings
If set to true MediaWiki will throw notices for some possible error conditions and for deprecated fun...
wfArrayPlus2d(array $baseArray, array $newValues)
Merges two (possibly) 2 dimensional arrays into the target array ($baseArray).
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
A BagOStuff object with no objects in it.
ExtensionRegistry class.
isLoaded( $name)
Whether a thing has been loaded.
array $queued
List of paths that should be loaded.
const MERGE_STRATEGY
Special key that defines the merge strategy.
getQueue()
Get the current load queue.
const MANIFEST_VERSION
Version of the highest supported manifest version.
processAutoLoader( $dir, array $info)
Register classes with the autoloader.
const OLDEST_MANIFEST_VERSION
Version of the oldest supported manifest version.
array $loaded
Array of loaded things, keyed by name, values are credits information.
const CACHE_VERSION
Bump whenever the registration cache needs resetting.
clearQueue()
Clear the current load queue.
static ExtensionRegistry $instance
load( $path)
Loads and processes the given JSON file without delay.
const MEDIAWIKI_CORE
"requires" key that applies to MediaWiki core/$wgVersion
readFromQueue(array $queue)
Process a queue of extensions and return their extracted data.
exportExtractedData(array $info)
bool $finished
Whether we are done loading things.
getAllThings()
Get information about all things.
finish()
After this is called, no more extensions can be loaded.
array $attributes
Items in the JSON file that aren't being set as globals.
markLoaded( $name, array $credits)
Mark a thing as loaded.
MediaWiki exception.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Provides functions to check a set of extensions with dependencies against a set of loaded extensions ...
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
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
the array() calling protocol came about after MediaWiki 1.4rc1.
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
returning false will NOT prevent logging $e
Definition hooks.txt:2146
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:37
$cache
Definition mcc.php:33