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\\Password\\' => __DIR__ . '/password/',
72 'MediaWiki\\PoolCounter\\' => __DIR__ . '/poolcounter/',
73 'MediaWiki\\Preferences\\' => __DIR__ . '/preferences/',
74 'MediaWiki\\RCFeed\\' => __DIR__ . '/rcfeed/',
75 'MediaWiki\\Search\\' => __DIR__ . '/search/',
76 'MediaWiki\\Search\\SearchWidgets\\' => __DIR__ . '/search/searchwidgets/',
77 'MediaWiki\\Session\\' => __DIR__ . '/session/',
78 'MediaWiki\\Shell\\' => __DIR__ . '/shell/',
79 'MediaWiki\\Site\\' => __DIR__ . '/site/',
80 'MediaWiki\\Sparql\\' => __DIR__ . '/sparql/',
81 'MediaWiki\\SpecialPage\\' => __DIR__ . '/specialpage/',
82 'MediaWiki\\Specials\\Contribute\\' => __DIR__ . '/specials/Contribute',
83 'MediaWiki\\Tidy\\' => __DIR__ . '/tidy/',
84 'MediaWiki\\User\\' => __DIR__ . '/user/',
85 'MediaWiki\\Utils\\' => __DIR__ . '/utils/',
86 'MediaWiki\\Widget\\' => __DIR__ . '/widget/',
87 'Wikimedia\\' => __DIR__ . '/libs/',
88 'Wikimedia\\Composer\\' => __DIR__ . '/libs/composer/',
89 'Wikimedia\\Http\\' => __DIR__ . '/libs/http/',
90 'Wikimedia\\Rdbms\\Platform\\' => __DIR__ . '/libs/rdbms/platform/',
91 'Wikimedia\\UUID\\' => __DIR__ . '/libs/uuid/',
92 ];
93
97 private static $psr4Namespaces = self::CORE_NAMESPACES;
98
102 private static $classFiles = [];
103
112 public static function registerNamespaces( array $dirs ): void {
113 self::$psr4Namespaces += $dirs;
114 }
115
122 public static function registerClasses( array $files ): void {
123 self::$classFiles += $files;
124 }
125
142 public static function loadFile( string $file ): void {
143 require_once $file;
144 }
145
155 public static function loadFiles( array $files ): void {
156 foreach ( $files as $f ) {
157 self::loadFile( $f );
158 }
159 }
160
167 public static function find( $className ): ?string {
169
170 // NOTE: $wgAutoloadClasses is supported for compatibility with old-style extension
171 // registration files.
172
173 $filename = $wgAutoloadLocalClasses[$className] ??
174 self::$classFiles[$className] ??
175 $wgAutoloadClasses[$className] ??
176 false;
177
178 if ( !$filename && strpos( $className, '\\' ) !== false ) {
179 // This class is namespaced, so look in the namespace map
180 $prefix = $className;
181 while ( ( $pos = strrpos( $prefix, '\\' ) ) !== false ) {
182 // Check to see if this namespace prefix is in the map
183 $prefix = substr( $className, 0, $pos + 1 );
184 if ( isset( self::$psr4Namespaces[$prefix] ) ) {
185 $relativeClass = substr( $className, $pos + 1 );
186 // Build the expected filename, and see if it exists
187 $file = self::$psr4Namespaces[$prefix] .
188 '/' .
189 strtr( $relativeClass, '\\', '/' ) .
190 '.php';
191 if ( is_file( $file ) ) {
192 $filename = $file;
193 break;
194 }
195 }
196
197 // Remove trailing separator for next iteration
198 $prefix = rtrim( $prefix, '\\' );
199 }
200 }
201
202 if ( !$filename ) {
203 // Class not found; let the next autoloader try to find it
204 return null;
205 }
206
207 // Make an absolute path, this improves performance by avoiding some stat calls
208 // Optimisation: use string offset access instead of substr
209 if ( $filename[0] !== '/' && $filename[1] !== ':' ) {
210 $filename = __DIR__ . '/../' . $filename;
211 }
212
213 return $filename;
214 }
215
221 public static function autoload( $className ) {
222 $filename = self::find( $className );
223
224 if ( $filename !== null ) {
225 require $filename;
226 }
227 }
228
230 private static function assertTesting( $method ) {
231 if ( !defined( 'MW_PHPUNIT_TEST' ) ) {
232 throw new LogicException( "$method is not supported outside phpunit tests!" );
233 }
234 }
235
241 public static function getClassFiles(): array {
243
244 self::assertTesting( __METHOD__ );
245
246 // NOTE: ensure the order of preference is the same as used by find().
247 return array_merge(
249 self::$classFiles,
251 );
252 }
253
259 public static function getNamespaceDirectories(): array {
260 self::assertTesting( __METHOD__ );
261 return self::$psr4Namespaces;
262 }
263
271 public static function getState(): array {
272 self::assertTesting( __METHOD__ );
273 return [
274 'classFiles' => self::$classFiles,
275 'psr4Namespaces' => self::$psr4Namespaces,
276 ];
277 }
278
287 public static function restoreState( $state ): void {
288 self::assertTesting( __METHOD__ );
289
290 self::$classFiles = $state['classFiles'];
291 self::$psr4Namespaces = $state['psr4Namespaces'];
292 }
293
294}
295
296spl_autoload_register( [ 'AutoLoader', 'autoload' ] );
297
298// Load composer's autoloader if present
299if ( is_readable( __DIR__ . '/../vendor/autoload.php' ) ) {
300 require_once __DIR__ . '/../vendor/autoload.php';
301} elseif ( file_exists( __DIR__ . '/../vendor/autoload.php' ) ) {
302 die( __DIR__ . '/../vendor/autoload.php exists but is not readable' );
303}
$wgAutoloadClasses
Definition Setup.php:151
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