* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\DependencyInjection; use Composer\Autoload\ClassLoader; use Symfony\Component\Debug\DebugClassLoader; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\HttpKernel\Kernel; /** * Sets the classes to compile in the cache for the container. * * @author Fabien Potencier */ class AddAnnotatedClassesToCachePass implements CompilerPassInterface { private $kernel; public function __construct(Kernel $kernel) { $this->kernel = $kernel; } /** * {@inheritdoc} */ public function process(ContainerBuilder $container) { $classes = array(); $annotatedClasses = array(); foreach ($container->getExtensions() as $extension) { if ($extension instanceof Extension) { if (\PHP_VERSION_ID < 70000) { $classes = array_merge($classes, $extension->getClassesToCompile()); } $annotatedClasses = array_merge($annotatedClasses, $extension->getAnnotatedClassesToCompile()); } } $existingClasses = $this->getClassesInComposerClassMaps(); if (\PHP_VERSION_ID < 70000) { $classes = $container->getParameterBag()->resolveValue($classes); $this->kernel->setClassCache($this->expandClasses($classes, $existingClasses)); } $annotatedClasses = $container->getParameterBag()->resolveValue($annotatedClasses); $this->kernel->setAnnotatedClassCache($this->expandClasses($annotatedClasses, $existingClasses)); } /** * Expands the given class patterns using a list of existing classes. * * @param array $patterns The class patterns to expand * @param array $classes The existing classes to match against the patterns * * @return array A list of classes derivated from the patterns */ private function expandClasses(array $patterns, array $classes) { $expanded = array(); // Explicit classes declared in the patterns are returned directly foreach ($patterns as $key => $pattern) { if ('\\' !== substr($pattern, -1) && false === strpos($pattern, '*')) { unset($patterns[$key]); $expanded[] = ltrim($pattern, '\\'); } } // Match patterns with the classes list $regexps = $this->patternsToRegexps($patterns); foreach ($classes as $class) { $class = ltrim($class, '\\'); if ($this->matchAnyRegexps($class, $regexps)) { $expanded[] = $class; } } return array_unique($expanded); } private function getClassesInComposerClassMaps() { $classes = array(); foreach (spl_autoload_functions() as $function) { if (!is_array($function)) { continue; } if ($function[0] instanceof DebugClassLoader) { $function = $function[0]->getClassLoader(); } if (is_array($function) && $function[0] instanceof ClassLoader) { $classes += array_filter($function[0]->getClassMap()); } } return array_keys($classes); } private function patternsToRegexps($patterns) { $regexps = array(); foreach ($patterns as $pattern) { // Escape user input $regex = preg_quote(ltrim($pattern, '\\')); // Wildcards * and ** $regex = strtr($regex, array('\\*\\*' => '.*?', '\\*' => '[^\\\\]*?')); // If this class does not end by a slash, anchor the end if ('\\' !== substr($regex, -1)) { $regex .= '$'; } $regexps[] = '{^\\\\'.$regex.'}'; } return $regexps; } private function matchAnyRegexps($class, $regexps) { $blacklisted = false !== strpos($class, 'Test'); foreach ($regexps as $regex) { if ($blacklisted && false === strpos($regex, 'Test')) { continue; } if (preg_match($regex, '\\'.$class)) { return true; } } return false; } } __halt_compiler();----SIGNATURE:----hfC008ekp1/T5ljSHqehmKu+cTWkoiW4/VAhHakaYZoBChMp+XYA5zbI7Okxh/f+dseE5QslHMAAunmAYkMXLxgiU9V+J+TtVUQPvKOt+/yeujWOKzT5oyUYem1OHlUQITOypAFDKuXS9voyNvm+DAdhiAU77eyu0NBtgS/8Fmx73IZ1olCNkEEvu/PA0CgUhX72xX/ULqY95dwWNWf33QrcTMlSphBxiWoW12WrkpDKB87pdv8PH58Txzjp+sFfkzDEctL/05h8kpli3bxfA9IFTpGYey94IMhuVjYUehKe8gn0xo2nscxN3VY/wLlcoIjXuNvd9pQCFs2OlUY4Fldu10gANYmZ6lpJhUXRBqAFSHgqAfIbQ7x7qr2P+3sn2Cgjwjpx7ubLDVtGHhHFbu6vL0M5W+HYRfcyR+nVyE5RAincaPOwgipK+pTmA0Qq6ACIR4wIXBCro5kNLrlF0PyQctb/EPGUJ3DoATHj7V/4r8sszgOnvatbEyICgu5tAN/zyi/lxI9q8RmbeBu1WXSXsi6rHsU2YlkKEMkk2ChrIVzrN8qnW4PWkXabZizGdEsrGJ210nSkobGNNLCSKjAnNbD1TN+ZxRiXM9N0hFFrxnk2FQiQBfrLpnFs3CehrVxHqYqaqo32Z8l6Gs0bHX6UV12FaZYDer7FB+sTvEk=----ATTACHMENT:----MTI0MTIwMjcxNDI4OTI1NCA4Njc3OTk3MTU4MTk2MDQ3IDExNzU0NjIzNzA4MjE2OTg=