MediaWiki master
AutoLoader.php
Go to the documentation of this file.
1<?php
23// NO_AUTOLOAD -- file scope code, can't load self
24
29require_once __DIR__ . '/../autoload.php';
30
32
41 public const CORE_NAMESPACES = [
42 'MediaWiki\\' => __DIR__ . '/',
43 'MediaWiki\\Actions\\' => __DIR__ . '/actions/',
44 'MediaWiki\\Api\\' => __DIR__ . '/api/',
45 'MediaWiki\\Auth\\' => __DIR__ . '/auth/',
46 'MediaWiki\\Block\\' => __DIR__ . '/block/',
47 'MediaWiki\\Cache\\' => __DIR__ . '/cache/',
48 'MediaWiki\\ChangeTags\\' => __DIR__ . '/changetags/',
49 'MediaWiki\\Composer\\' => __DIR__ . '/composer/',
50 'MediaWiki\\Config\\' => __DIR__ . '/config/',
51 'MediaWiki\\Content\\' => __DIR__ . '/content/',
52 'MediaWiki\\DB\\' => __DIR__ . '/db/',
53 'MediaWiki\\Deferred\\' => __DIR__ . '/deferred/',
54 'MediaWiki\\Deferred\\LinksUpdate\\' => __DIR__ . '/deferred/LinksUpdate/',
55 'MediaWiki\\Diff\\' => __DIR__ . '/diff/',
56 'MediaWiki\\EditPage\\' => __DIR__ . '/editpage/',
57 'MediaWiki\\Edit\\' => __DIR__ . '/edit/',
58 'MediaWiki\\FileBackend\\LockManager\\' => __DIR__ . '/filebackend/lockmanager/',
59 'MediaWiki\\Http\\' => __DIR__ . '/http/',
60 'MediaWiki\\Installer\\' => __DIR__ . '/installer/',
61 'MediaWiki\\Interwiki\\' => __DIR__ . '/interwiki/',
62 'MediaWiki\\JobQueue\\' => __DIR__ . '/jobqueue/',
63 'MediaWiki\\Json\\' => __DIR__ . '/json/',
64 'MediaWiki\\Languages\\Data\\' => __DIR__ . '/languages/data/',
65 'MediaWiki\\Linker\\' => __DIR__ . '/linker/',
66 'MediaWiki\\Logger\\' => __DIR__ . '/debug/logger/',
67 'MediaWiki\\Logger\\Monolog\\' => __DIR__ . '/debug/logger/monolog/',
68 'MediaWiki\\Mail\\' => __DIR__ . '/mail/',
69 'MediaWiki\\Page\\' => __DIR__ . '/page/',
70 'MediaWiki\\Parser\\' => __DIR__ . '/parser/',
71 'MediaWiki\\PoolCounter\\' => __DIR__ . '/poolcounter/',
72 'MediaWiki\\Preferences\\' => __DIR__ . '/preferences/',
73 'MediaWiki\\Search\\' => __DIR__ . '/search/',
74 'MediaWiki\\Search\\SearchWidgets\\' => __DIR__ . '/search/searchwidgets/',
75 'MediaWiki\\Session\\' => __DIR__ . '/session/',
76 'MediaWiki\\Shell\\' => __DIR__ . '/shell/',
77 'MediaWiki\\Site\\' => __DIR__ . '/site/',
78 'MediaWiki\\Sparql\\' => __DIR__ . '/sparql/',
79 'MediaWiki\\SpecialPage\\' => __DIR__ . '/specialpage/',
80 'MediaWiki\\Specials\\Contribute\\' => __DIR__ . '/specials/Contribute',
81 'MediaWiki\\Tidy\\' => __DIR__ . '/tidy/',
82 'MediaWiki\\User\\' => __DIR__ . '/user/',
83 'MediaWiki\\Utils\\' => __DIR__ . '/utils/',
84 'MediaWiki\\Widget\\' => __DIR__ . '/widget/',
85 'Wikimedia\\' => __DIR__ . '/libs/',
86 'Wikimedia\\Composer\\' => __DIR__ . '/libs/composer/',
87 'Wikimedia\\Http\\' => __DIR__ . '/libs/http/',
88 'Wikimedia\\Rdbms\\Platform\\' => __DIR__ . '/libs/rdbms/platform/',
89 'Wikimedia\\UUID\\' => __DIR__ . '/libs/uuid/',
90 ];
91
95 private static $psr4Namespaces = self::CORE_NAMESPACES;
96
100 private static $classFiles = [];
101
110 public static function registerNamespaces( array $dirs ): void {
111 self::$psr4Namespaces += $dirs;
112 }
113
120 public static function registerClasses( array $files ): void {
121 self::$classFiles += $files;
122 }
123
140 public static function loadFile( string $file ): void {
141 require_once $file;
142 }
143
153 public static function loadFiles( array $files ): void {
154 foreach ( $files as $f ) {
155 self::loadFile( $f );
156 }
157 }
158
165 public static function find( $className ): ?string {
167
168 // NOTE: $wgAutoloadClasses is supported for compatibility with old-style extension
169 // registration files.
170
171 $filename = $wgAutoloadLocalClasses[$className] ??
172 self::$classFiles[$className] ??
173 $wgAutoloadClasses[$className] ??
174 false;
175
176 if ( !$filename && strpos( $className, '\\' ) !== false ) {
177 // This class is namespaced, so look in the namespace map
178 $prefix = $className;
179 while ( ( $pos = strrpos( $prefix, '\\' ) ) !== false ) {
180 // Check to see if this namespace prefix is in the map
181 $prefix = substr( $className, 0, $pos + 1 );
182 if ( isset( self::$psr4Namespaces[$prefix] ) ) {
183 $relativeClass = substr( $className, $pos + 1 );
184 // Build the expected filename, and see if it exists
185 $file = self::$psr4Namespaces[$prefix] .
186 '/' .
187 strtr( $relativeClass, '\\', '/' ) .
188 '.php';
189 if ( is_file( $file ) ) {
190 $filename = $file;
191 break;
192 }
193 }
194
195 // Remove trailing separator for next iteration
196 $prefix = rtrim( $prefix, '\\' );
197 }
198 }
199
200 if ( !$filename ) {
201 // Class not found; let the next autoloader try to find it
202 return null;
203 }
204
205 // Make an absolute path, this improves performance by avoiding some stat calls
206 // Optimisation: use string offset access instead of substr
207 if ( $filename[0] !== '/' && $filename[1] !== ':' ) {
208 $filename = __DIR__ . '/../' . $filename;
209 }
210
211 return $filename;
212 }
213
219 public static function autoload( $className ) {
220 $filename = self::find( $className );
221
222 if ( $filename !== null ) {
223 require $filename;
224 }
225 }
226
228 private static function assertTesting( $method ) {
229 if ( !defined( 'MW_PHPUNIT_TEST' ) ) {
230 throw new LogicException( "$method is not supported outside phpunit tests!" );
231 }
232 }
233
239 public static function getClassFiles(): array {
241
242 self::assertTesting( __METHOD__ );
243
244 // NOTE: ensure the order of preference is the same as used by find().
245 return array_merge(
247 self::$classFiles,
249 );
250 }
251
257 public static function getNamespaceDirectories(): array {
258 self::assertTesting( __METHOD__ );
259 return self::$psr4Namespaces;
260 }
261
269 public static function getState(): array {
270 self::assertTesting( __METHOD__ );
271 return [
272 'classFiles' => self::$classFiles,
273 'psr4Namespaces' => self::$psr4Namespaces,
274 ];
275 }
276
285 public static function restoreState( $state ): void {
286 self::assertTesting( __METHOD__ );
287
288 self::$classFiles = $state['classFiles'];
289 self::$psr4Namespaces = $state['psr4Namespaces'];
290 }
291
292}
293
294spl_autoload_register( [ 'AutoLoader', 'autoload' ] );
295
296// Load composer's autoloader if present
297if ( is_readable( __DIR__ . '/../vendor/autoload.php' ) ) {
298 require_once __DIR__ . '/../vendor/autoload.php';
299} elseif ( file_exists( __DIR__ . '/../vendor/autoload.php' ) ) {
300 die( __DIR__ . '/../vendor/autoload.php exists but is not readable' );
301}
$wgAutoloadClasses
Definition Setup.php:149
global $wgAutoloadLocalClasses
Definition autoload.php:4
Locations of core classes Extension classes are specified with $wgAutoloadClasses.
static registerClasses(array $files)
Register a file to load the given class from.
static loadFiles(array $files)
Batch version of loadFile()
static restoreState( $state)
Returns an array representing the internal state of Autoloader, so it can be remembered and later res...
static getNamespaceDirectories()
Returns a map of namespace names to directories, per PSR4.
static registerNamespaces(array $dirs)
Register a directory to load the classes of a given namespace from, per PSR4.
static find( $className)
Find the file containing the given class.
static getState()
Returns an array representing the internal state of Autoloader, so it can be remembered and later res...
static getClassFiles()
Returns a map of class names to file paths for testing.
const CORE_NAMESPACES
A mapping of namespace => file path for MediaWiki core.
static loadFile(string $file)
Load a file that declares classes, functions, or constants.
static autoload( $className)
autoload - take a class name and attempt to load it