vendor/symfony/debug/DebugClassLoader.php line 192

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Debug;
  11. use PHPUnit\Framework\MockObject\Matcher\StatelessInvocation;
  12. /**
  13.  * Autoloader checking if the class is really defined in the file found.
  14.  *
  15.  * The ClassLoader will wrap all registered autoloaders
  16.  * and will throw an exception if a file is found but does
  17.  * not declare the class.
  18.  *
  19.  * @author Fabien Potencier <fabien@symfony.com>
  20.  * @author Christophe Coevoet <stof@notk.org>
  21.  * @author Nicolas Grekas <p@tchwork.com>
  22.  * @author Guilhem Niot <guilhem.niot@gmail.com>
  23.  */
  24. class DebugClassLoader {
  25.     private $classLoader;
  26.     private $isFinder;
  27.     private $loaded = [];
  28.     private static $caseCheck;
  29.     private static $checkedClasses = [];
  30.     private static $final = [];
  31.     private static $finalMethods = [];
  32.     private static $deprecated = [];
  33.     private static $internal = [];
  34.     private static $internalMethods = [];
  35.     private static $annotatedParameters = [];
  36.     private static $darwinCache = ['/' => ['/', []]];
  37.     public function __construct(callable $classLoader) {
  38.         $this->classLoader $classLoader;
  39.         $this->isFinder = \is_array($classLoader) && method_exists($classLoader[0], 'findFile');
  40.         if (!isset(self::$caseCheck)) {
  41.             $file file_exists(__FILE__) ? __FILE__ rtrim(realpath('.'), \DIRECTORY_SEPARATOR);
  42.             $i strrpos($file, \DIRECTORY_SEPARATOR);
  43.             $dir substr($file0$i);
  44.             $file substr($file$i);
  45.             $test strtoupper($file) === $file strtolower($file) : strtoupper($file);
  46.             $test realpath($dir $test);
  47.             if (false === $test || false === $i) {
  48.                 // filesystem is case sensitive
  49.                 self::$caseCheck 0;
  50.             } elseif (substr($test, -\strlen($file)) === $file) {
  51.                 // filesystem is case insensitive and realpath() normalizes the case of characters
  52.                 self::$caseCheck 1;
  53.             } elseif (false !== stripos(PHP_OS'darwin')) {
  54.                 // on MacOSX, HFS+ is case insensitive but realpath() doesn't normalize the case of characters
  55.                 self::$caseCheck 2;
  56.             } else {
  57.                 // filesystem case checks failed, fallback to disabling them
  58.                 self::$caseCheck 0;
  59.             }
  60.         }
  61.     }
  62.     /**
  63.      * Gets the wrapped class loader.
  64.      *
  65.      * @return callable The wrapped class loader
  66.      */
  67.     public function getClassLoader() {
  68.         return $this->classLoader;
  69.     }
  70.     /**
  71.      * Wraps all autoloaders.
  72.      */
  73.     public static function enable() {
  74.         // Ensures we don't hit https://bugs.php.net/42098
  75.         class_exists('Symfony\Component\Debug\ErrorHandler');
  76.         class_exists('Psr\Log\LogLevel');
  77.         if (!\is_array($functions spl_autoload_functions())) {
  78.             return;
  79.         }
  80.         foreach ($functions as $function) {
  81.             spl_autoload_unregister($function);
  82.         }
  83.         foreach ($functions as $function) {
  84.             if (!\is_array($function) || !$function[0] instanceof self) {
  85.                 $function = [new static($function), 'loadClass'];
  86.             }
  87.             spl_autoload_register($function);
  88.         }
  89.     }
  90.     /**
  91.      * Disables the wrapping.
  92.      */
  93.     public static function disable() {
  94.         if (!\is_array($functions spl_autoload_functions())) {
  95.             return;
  96.         }
  97.         foreach ($functions as $function) {
  98.             spl_autoload_unregister($function);
  99.         }
  100.         foreach ($functions as $function) {
  101.             if (\is_array($function) && $function[0] instanceof self) {
  102.                 $function $function[0]->getClassLoader();
  103.             }
  104.             spl_autoload_register($function);
  105.         }
  106.     }
  107.     /**
  108.      * @return string|null
  109.      */
  110.     public function findFile($class) {
  111.         return $this->isFinder $this->classLoader[0]->findFile($class) ?: null null;
  112.     }
  113.     /**
  114.      * Loads the given class or interface.
  115.      *
  116.      * @param string $class The name of the class
  117.      *
  118.      * @throws \RuntimeException
  119.      */
  120.     public function loadClass($class) {
  121.         $e error_reporting(error_reporting() | E_PARSE E_ERROR E_CORE_ERROR E_COMPILE_ERROR);
  122.         try {
  123.             if ($this->isFinder && !isset($this->loaded[$class])) {
  124.                 $this->loaded[$class] = true;
  125.                 if (!$file $this->classLoader[0]->findFile($class) ?: false) {
  126.                     // no-op
  127.                 } elseif (\function_exists('opcache_is_script_cached') && @opcache_is_script_cached($file)) {
  128.                     include $file;
  129.                     return;
  130.                 } elseif (false === include $file) {
  131.                     return;
  132.                 }
  133.             } else {
  134.                 ($this->classLoader)($class);
  135.                 $file false;
  136.             }
  137.         } finally {
  138.             error_reporting($e);
  139.         }
  140.         $this->checkClass($class$file);
  141.     }
  142.     private function checkClass($class$file null) {
  143.         $exists null === $file || class_exists($classfalse) || interface_exists($classfalse) || trait_exists($classfalse);
  144.         if (null !== $file && $class && '\\' === $class[0]) {
  145.             $class substr($class1);
  146.         }
  147.         if ($exists) {
  148.             if (isset(self::$checkedClasses[$class])) {
  149.                 return;
  150.             }
  151.             self::$checkedClasses[$class] = true;
  152.             $refl = new \ReflectionClass($class);
  153.             if (null === $file && $refl->isInternal()) {
  154.                 return;
  155.             }
  156.             $name $refl->getName();
  157.             if ($name !== $class && === strcasecmp($name$class)) {
  158.                 throw new \RuntimeException(sprintf('Case mismatch between loaded and declared class names: "%s" vs "%s".'$class$name));
  159.             }
  160.             $deprecations $this->checkAnnotations($refl$name);
  161.             foreach ($deprecations as $message) {
  162.                 @trigger_error($messageE_USER_DEPRECATED);
  163.             }
  164.         }
  165.         if (!$file) {
  166.             return;
  167.         }
  168.         if (!$exists) {
  169.             if (false !== strpos($class'/')) {
  170.                 throw new \RuntimeException(sprintf('Trying to autoload a class with an invalid name "%s". Be careful that the namespace separator is "\" in PHP, not "/".'$class));
  171.             }
  172.             throw new \RuntimeException(sprintf('The autoloader expected class "%s" to be defined in file "%s". The file was found but the class was not in it, the class name or namespace probably has a typo.'$class$file));
  173.         }
  174.         if (self::$caseCheck && $message $this->checkCase($refl$file$class)) {
  175.             throw new \RuntimeException(sprintf('Case mismatch between class and real file names: "%s" vs "%s" in "%s".'$message[0], $message[1], $message[2]));
  176.         }
  177.     }
  178.     public function checkAnnotations(\ReflectionClass $refl$class) {
  179.         $deprecations = [];
  180.         // Don't trigger deprecations for classes in the same vendor
  181.         if ($len + (strpos($class'\\') ?: strpos($class'_'))) {
  182.             $len 0;
  183.             $ns '';
  184.         } else {
  185.             $ns str_replace('_''\\'substr($class0$len));
  186.         }
  187.         // Detect annotations on the class
  188.         if (false !== $doc $refl->getDocComment()) {
  189.             foreach (['final''deprecated''internal'] as $annotation) {
  190.                 if (false !== strpos($doc$annotation) && preg_match('#\n\s+\* @' $annotation '(?:( .+?)\.?)?\r?\n\s+\*(?: @|/$|\r?\n)#s'$doc$notice)) {
  191.                     self::${$annotation}[$class] = isset($notice[1]) ? preg_replace('#\.?\r?\n( \*)? *(?= |\r?\n|$)#'''$notice[1]) : '';
  192.                 }
  193.             }
  194.         }
  195.         $parent get_parent_class($class);
  196.         $parentAndOwnInterfaces $this->getOwnInterfaces($class$parent);
  197.         if ($parent) {
  198.             $parentAndOwnInterfaces[$parent] = $parent;
  199.             if (!isset(self::$checkedClasses[$parent])) {
  200.                 $this->checkClass($parent);
  201.             }
  202.             if (isset(self::$final[$parent])) {
  203.                 $deprecations[] = sprintf('The "%s" class is considered final%s. It may change without further notice as of its next major version. You should not extend it from "%s".'$parentself::$final[$parent], $class);
  204.             }
  205.         }
  206.         // Detect if the parent is annotated
  207.         foreach ($parentAndOwnInterfaces class_uses($classfalse) as $use) {
  208.             if (!isset(self::$checkedClasses[$use])) {
  209.                 $this->checkClass($use);
  210.             }
  211.             if (isset(self::$deprecated[$use]) && strncmp($nsstr_replace('_''\\'$use), $len) && !isset(self::$deprecated[$class])) {
  212.                 $type class_exists($classfalse) ? 'class' : (interface_exists($classfalse) ? 'interface' 'trait');
  213.                 $verb class_exists($usefalse) || interface_exists($classfalse) ? 'extends' : (interface_exists($usefalse) ? 'implements' 'uses');
  214.                 $deprecations[] = sprintf('The "%s" %s %s "%s" that is deprecated%s.'$class$type$verb$useself::$deprecated[$use]);
  215.             }
  216.             if (isset(self::$internal[$use]) && strncmp($nsstr_replace('_''\\'$use), $len)) {
  217.                 $deprecations[] = sprintf('The "%s" %s is considered internal%s. It may change without further notice. You should not use it from "%s".'$useclass_exists($usefalse) ? 'class' : (interface_exists($usefalse) ? 'interface' 'trait'), self::$internal[$use], $class);
  218.             }
  219.         }
  220.         if (trait_exists($class)) {
  221.             return $deprecations;
  222.         }
  223.         // Inherit @final, @internal and @param annotations for methods
  224.         self::$finalMethods[$class] = [];
  225.         self::$internalMethods[$class] = [];
  226.         self::$annotatedParameters[$class] = [];
  227.         foreach ($parentAndOwnInterfaces as $use) {
  228.             foreach (['finalMethods''internalMethods''annotatedParameters'] as $property) {
  229.                 if (isset(self::${$property}[$use])) {
  230.                     self::${$property}[$class] = self::${$property}[$class] ? self::${$property}[$use] + self::${$property}[$class] : self::${$property}[$use];
  231.                 }
  232.             }
  233.         }
  234.         foreach ($refl->getMethods(\ReflectionMethod::IS_PUBLIC | \ReflectionMethod::IS_PROTECTED) as $method) {
  235.             if ($method->class !== $class) {
  236.                 continue;
  237.             }
  238.             if ($parent && isset(self::$finalMethods[$parent][$method->name])) {
  239.                 list($declaringClass$message) = self::$finalMethods[$parent][$method->name];
  240.                 $deprecations[] = sprintf('The "%s::%s()" method is considered final%s. It may change without further notice as of its next major version. You should not extend it from "%s".'$declaringClass$method->name$message$class);
  241.             }
  242.             if (isset(self::$internalMethods[$class][$method->name])) {
  243.                 list($declaringClass$message) = self::$internalMethods[$class][$method->name];
  244.                 if (strncmp($ns$declaringClass$len)) {
  245.                     $deprecations[] = sprintf('The "%s::%s()" method is considered internal%s. It may change without further notice. You should not extend it from "%s".'$declaringClass$method->name$message$class);
  246.                 }
  247.             }
  248.             // To read method annotations
  249.             $doc $method->getDocComment();
  250.             if (isset(self::$annotatedParameters[$class][$method->name])) {
  251.                 $definedParameters = [];
  252.                 foreach ($method->getParameters() as $parameter) {
  253.                     $definedParameters[$parameter->name] = true;
  254.                 }
  255.                 foreach (self::$annotatedParameters[$class][$method->name] as $parameterName => $deprecation) {
  256.                     if (!isset($definedParameters[$parameterName]) && !($doc && preg_match("/\\n\\s+\\* @param (.*?)(?<= )\\\${$parameterName}\\b/"$doc))) {
  257.                         $deprecations[] = sprintf($deprecation$class);
  258.                     }
  259.                 }
  260.             }
  261.             if (!$doc) {
  262.                 continue;
  263.             }
  264.             $finalOrInternal false;
  265.             foreach (['final''internal'] as $annotation) {
  266.                 if (false !== strpos($doc$annotation) && preg_match('#\n\s+\* @' $annotation '(?:( .+?)\.?)?\r?\n\s+\*(?: @|/$|\r?\n)#s'$doc$notice)) {
  267.                     $message = isset($notice[1]) ? preg_replace('#\.?\r?\n( \*)? *(?= |\r?\n|$)#'''$notice[1]) : '';
  268.                     self::${$annotation 'Methods'}[$class][$method->name] = [$class$message];
  269.                     $finalOrInternal true;
  270.                 }
  271.             }
  272.             if ($finalOrInternal || $method->isConstructor() || false === strpos($doc'@param') || StatelessInvocation::class === $class) {
  273.                 continue;
  274.             }
  275.             if (!preg_match_all('#\n\s+\* @param (.*?)(?<= )\$([a-zA-Z0-9_\x7f-\xff]++)#'$doc$matchesPREG_SET_ORDER)) {
  276.                 continue;
  277.             }
  278.             if (!isset(self::$annotatedParameters[$class][$method->name])) {
  279.                 $definedParameters = [];
  280.                 foreach ($method->getParameters() as $parameter) {
  281.                     $definedParameters[$parameter->name] = true;
  282.                 }
  283.             }
  284.             foreach ($matches as list(, $parameterType$parameterName)) {
  285.                 if (!isset($definedParameters[$parameterName])) {
  286.                     $parameterType trim($parameterType);
  287.                     self::$annotatedParameters[$class][$method->name][$parameterName] = sprintf('The "%%s::%s()" method will require a new "%s$%s" argument in the next major version of its parent class "%s", not defining it is deprecated.'$method->name$parameterType $parameterType ' ' ''$parameterName$method->class);
  288.                 }
  289.             }
  290.         }
  291.         return $deprecations;
  292.     }
  293.     public function checkCase(\ReflectionClass $refl$file$class) {
  294.         $real explode('\\'$class strrchr($file'.'));
  295.         $tail explode(\DIRECTORY_SEPARATORstr_replace('/', \DIRECTORY_SEPARATOR$file));
  296.         $i = \count($tail) - 1;
  297.         $j = \count($real) - 1;
  298.         while (isset($tail[$i], $real[$j]) && $tail[$i] === $real[$j]) {
  299.             --$i;
  300.             --$j;
  301.         }
  302.         array_splice($tail0$i 1);
  303.         if (!$tail) {
  304.             return;
  305.         }
  306.         $tail = \DIRECTORY_SEPARATOR implode(\DIRECTORY_SEPARATOR$tail);
  307.         $tailLen = \strlen($tail);
  308.         $real $refl->getFileName();
  309.         if (=== self::$caseCheck) {
  310.             $real $this->darwinRealpath($real);
  311.         }
  312.         if (=== substr_compare($real$tail, -$tailLen$tailLentrue) && !== substr_compare($real$tail, -$tailLen$tailLenfalse)
  313.         ) {
  314.             return [substr($tail, -$tailLen 1), substr($real, -$tailLen 1), substr($real0, -$tailLen 1)];
  315.         }
  316.     }
  317.     /**
  318.      * `realpath` on MacOSX doesn't normalize the case of characters.
  319.      */
  320.     private function darwinRealpath($real) {
  321.         $i strrpos($real'/');
  322.         $file substr($real$i);
  323.         $real substr($real0$i);
  324.         if (isset(self::$darwinCache[$real])) {
  325.             $kDir $real;
  326.         } else {
  327.             $kDir strtolower($real);
  328.             if (isset(self::$darwinCache[$kDir])) {
  329.                 $real self::$darwinCache[$kDir][0];
  330.             } else {
  331.                 $dir getcwd();
  332.                 chdir($real);
  333.                 $real getcwd() . '/';
  334.                 chdir($dir);
  335.                 $dir $real;
  336.                 $k $kDir;
  337.                 $i = \strlen($dir) - 1;
  338.                 while (!isset(self::$darwinCache[$k])) {
  339.                     self::$darwinCache[$k] = [$dir, []];
  340.                     self::$darwinCache[$dir] = &self::$darwinCache[$k];
  341.                     while ('/' !== $dir[--$i]) {
  342.                         
  343.                     }
  344.                     $k substr($k0, ++$i);
  345.                     $dir substr($dir0$i--);
  346.                 }
  347.             }
  348.         }
  349.         $dirFiles self::$darwinCache[$kDir][1];
  350.         if (!isset($dirFiles[$file]) && ') : eval()\'d code' === substr($file, -17)) {
  351.             // Get the file name from "file_name.php(123) : eval()'d code"
  352.             $file substr($file0strrpos($file'(', -17));
  353.         }
  354.         if (isset($dirFiles[$file])) {
  355.             return $real .= $dirFiles[$file];
  356.         }
  357.         $kFile strtolower($file);
  358.         if (!isset($dirFiles[$kFile])) {
  359.             foreach (scandir($real2) as $f) {
  360.                 if ('.' !== $f[0]) {
  361.                     $dirFiles[$f] = $f;
  362.                     if ($f === $file) {
  363.                         $kFile $k $file;
  364.                     } elseif ($f !== $k strtolower($f)) {
  365.                         $dirFiles[$k] = $f;
  366.                     }
  367.                 }
  368.             }
  369.             self::$darwinCache[$kDir][1] = $dirFiles;
  370.         }
  371.         return $real .= $dirFiles[$kFile];
  372.     }
  373.     /**
  374.      * `class_implements` includes interfaces from the parents so we have to manually exclude them.
  375.      *
  376.      * @param string       $class
  377.      * @param string|false $parent
  378.      *
  379.      * @return string[]
  380.      */
  381.     private function getOwnInterfaces($class$parent) {
  382.         $ownInterfaces class_implements($classfalse);
  383.         if ($parent) {
  384.             foreach (class_implements($parentfalse) as $interface) {
  385.                 unset($ownInterfaces[$interface]);
  386.             }
  387.         }
  388.         foreach ($ownInterfaces as $interface) {
  389.             foreach (class_implements($interface) as $interface) {
  390.                 unset($ownInterfaces[$interface]);
  391.             }
  392.         }
  393.         return $ownInterfaces;
  394.     }
  395. }