29require_once __DIR__ .
'/../autoload.php';
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\\Config\\' => __DIR__ .
'/config/',
50 'MediaWiki\\Content\\' => __DIR__ .
'/content/',
51 'MediaWiki\\DB\\' => __DIR__ .
'/db/',
52 'MediaWiki\\Deferred\\LinksUpdate\\' => __DIR__ .
'/deferred/LinksUpdate/',
53 'MediaWiki\\Diff\\' => __DIR__ .
'/diff/',
54 'MediaWiki\\EditPage\\' => __DIR__ .
'/editpage/',
55 'MediaWiki\\Edit\\' => __DIR__ .
'/edit/',
56 'MediaWiki\\FileBackend\\LockManager\\' => __DIR__ .
'/filebackend/lockmanager/',
57 'MediaWiki\\Http\\' => __DIR__ .
'/http/',
58 'MediaWiki\\Installer\\' => __DIR__ .
'/installer/',
59 'MediaWiki\\Interwiki\\' => __DIR__ .
'/interwiki/',
60 'MediaWiki\\JobQueue\\' => __DIR__ .
'/jobqueue/',
61 'MediaWiki\\Json\\' => __DIR__ .
'/json/',
62 'MediaWiki\\Languages\\Data\\' => __DIR__ .
'/languages/data/',
63 'MediaWiki\\Linker\\' => __DIR__ .
'/linker/',
64 'MediaWiki\\Logger\\' => __DIR__ .
'/debug/logger/',
65 'MediaWiki\\Logger\\Monolog\\' => __DIR__ .
'/debug/logger/monolog/',
66 'MediaWiki\\Mail\\' => __DIR__ .
'/mail/',
67 'MediaWiki\\Page\\' => __DIR__ .
'/page/',
68 'MediaWiki\\Parser\\' => __DIR__ .
'/parser/',
69 'MediaWiki\\Preferences\\' => __DIR__ .
'/preferences/',
70 'MediaWiki\\Search\\' => __DIR__ .
'/search/',
71 'MediaWiki\\Search\\SearchWidgets\\' => __DIR__ .
'/search/searchwidgets/',
72 'MediaWiki\\Session\\' => __DIR__ .
'/session/',
73 'MediaWiki\\Shell\\' => __DIR__ .
'/shell/',
74 'MediaWiki\\Site\\' => __DIR__ .
'/site/',
75 'MediaWiki\\Sparql\\' => __DIR__ .
'/sparql/',
76 'MediaWiki\\SpecialPage\\' => __DIR__ .
'/specialpage/',
77 'MediaWiki\\Tidy\\' => __DIR__ .
'/tidy/',
78 'MediaWiki\\User\\' => __DIR__ .
'/user/',
79 'MediaWiki\\Utils\\' => __DIR__ .
'/utils/',
80 'MediaWiki\\Widget\\' => __DIR__ .
'/widget/',
81 'Wikimedia\\' => __DIR__ .
'/libs/',
82 'Wikimedia\\Http\\' => __DIR__ .
'/libs/http/',
83 'Wikimedia\\Rdbms\\Platform\\' => __DIR__ .
'/libs/rdbms/platform/',
84 'Wikimedia\\UUID\\' => __DIR__ .
'/libs/uuid/',
91 private static $autoloadLocalClassesLower =
null;
102 private static $classFiles = [];
123 self::$classFiles += $files;
155 public static function loadFiles( array $files ): void {
156 foreach ( $files as $f ) {
157 self::loadFile( $f );
167 public static function find( $className ): ?string {
174 self::$classFiles[$className] ??
184 if ( self::$autoloadLocalClassesLower ===
null ) {
187 $lowerClass = strtolower( $className );
188 if ( isset( self::$autoloadLocalClassesLower[$lowerClass] ) ) {
189 if ( function_exists(
'wfDebugLog' ) ) {
190 wfDebugLog(
'autoloader',
"Class {$className} was loaded using incorrect case" );
193 $filename = self::$autoloadLocalClassesLower[$lowerClass];
197 if ( !$filename && strpos( $className,
'\\' ) !==
false ) {
199 $prefix = $className;
200 while ( ( $pos = strrpos( $prefix,
'\\' ) ) !==
false ) {
202 $prefix = substr( $className, 0, $pos + 1 );
203 if ( isset( self::$psr4Namespaces[$prefix] ) ) {
204 $relativeClass = substr( $className, $pos + 1 );
206 $file = self::$psr4Namespaces[$prefix] .
208 strtr( $relativeClass,
'\\',
'/' ) .
210 if ( is_file(
$file ) ) {
217 $prefix = rtrim( $prefix,
'\\' );
228 if ( $filename[0] !==
'/' && $filename[1] !==
':' ) {
229 $filename = __DIR__ .
'/../' . $filename;
241 $filename = self::find( $className );
243 if ( $filename !==
null ) {
244 require_once $filename;
253 self::$autoloadLocalClassesLower =
null;
257 private static function assertTesting( $method ) {
258 if ( !defined(
'MW_PHPUNIT_TEST' ) ) {
259 throw new LogicException(
"$method is not supported outside phpunit tests!" );
271 self::assertTesting( __METHOD__ );
287 self::assertTesting( __METHOD__ );
288 return self::$psr4Namespaces;
299 self::assertTesting( __METHOD__ );
301 'classFiles' => self::$classFiles,
302 'psr4Namespaces' => self::$psr4Namespaces,
315 self::assertTesting( __METHOD__ );
317 self::$classFiles = $state[
'classFiles'];
318 self::$psr4Namespaces = $state[
'psr4Namespaces'];
323spl_autoload_register( [
'AutoLoader',
'autoload' ] );
326if ( is_readable( __DIR__ .
'/../vendor/autoload.php' ) ) {
327 require_once __DIR__ .
'/../vendor/autoload.php';
328} elseif ( file_exists( __DIR__ .
'/../vendor/autoload.php' ) ) {
329 die( __DIR__ .
'/../vendor/autoload.php exists but is not readable' );
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
global $wgAutoloadLocalClasses
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 string[] $psr4Namespaces
Namespace (ends with \) => Path (ends with /)
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
static resetAutoloadLocalClassesLower()
Method to clear the protected class property $autoloadLocalClassesLower.
$wgAutoloadAttemptLowercase
Config variable stub for the AutoloadAttemptLowercase setting, for use by phpdoc and IDEs.
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.