vendor/symfony/http-kernel/Kernel.php line 191

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\HttpKernel;
  11. use Symfony\Bridge\ProxyManager\LazyProxy\Instantiator\RuntimeInstantiator;
  12. use Symfony\Bridge\ProxyManager\LazyProxy\PhpDumper\ProxyDumper;
  13. use Symfony\Component\Config\ConfigCache;
  14. use Symfony\Component\Config\Loader\DelegatingLoader;
  15. use Symfony\Component\Config\Loader\LoaderResolver;
  16. use Symfony\Component\Debug\DebugClassLoader as LegacyDebugClassLoader;
  17. use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
  18. use Symfony\Component\DependencyInjection\Compiler\PassConfig;
  19. use Symfony\Component\DependencyInjection\ContainerBuilder;
  20. use Symfony\Component\DependencyInjection\ContainerInterface;
  21. use Symfony\Component\DependencyInjection\Dumper\PhpDumper;
  22. use Symfony\Component\DependencyInjection\Loader\ClosureLoader;
  23. use Symfony\Component\DependencyInjection\Loader\DirectoryLoader;
  24. use Symfony\Component\DependencyInjection\Loader\GlobFileLoader;
  25. use Symfony\Component\DependencyInjection\Loader\IniFileLoader;
  26. use Symfony\Component\DependencyInjection\Loader\PhpFileLoader;
  27. use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
  28. use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
  29. use Symfony\Component\ErrorHandler\DebugClassLoader;
  30. use Symfony\Component\Filesystem\Filesystem;
  31. use Symfony\Component\HttpFoundation\Request;
  32. use Symfony\Component\HttpFoundation\Response;
  33. use Symfony\Component\HttpKernel\Bundle\BundleInterface;
  34. use Symfony\Component\HttpKernel\Config\FileLocator;
  35. use Symfony\Component\HttpKernel\DependencyInjection\AddAnnotatedClassesToCachePass;
  36. use Symfony\Component\HttpKernel\DependencyInjection\MergeExtensionConfigurationPass;
  37. /**
  38.  * The Kernel is the heart of the Symfony system.
  39.  *
  40.  * It manages an environment made of bundles.
  41.  *
  42.  * Environment names must always start with a letter and
  43.  * they must only contain letters and numbers.
  44.  *
  45.  * @author Fabien Potencier <fabien@symfony.com>
  46.  */
  47. abstract class Kernel implements KernelInterfaceRebootableInterfaceTerminableInterface
  48. {
  49.     /**
  50.      * @var BundleInterface[]
  51.      */
  52.     protected $bundles = [];
  53.     protected $container;
  54.     protected $environment;
  55.     protected $debug;
  56.     protected $booted false;
  57.     protected $startTime;
  58.     private $projectDir;
  59.     private $warmupDir;
  60.     private $requestStackSize 0;
  61.     private $resetServices false;
  62.     private static $freshCache = [];
  63.     const VERSION '5.0.8';
  64.     const VERSION_ID 50008;
  65.     const MAJOR_VERSION 5;
  66.     const MINOR_VERSION 0;
  67.     const RELEASE_VERSION 8;
  68.     const EXTRA_VERSION '';
  69.     const END_OF_MAINTENANCE '07/2020';
  70.     const END_OF_LIFE '07/2020';
  71.     public function __construct(string $environmentbool $debug)
  72.     {
  73.         $this->environment $environment;
  74.         $this->debug $debug;
  75.     }
  76.     public function __clone()
  77.     {
  78.         $this->booted false;
  79.         $this->container null;
  80.         $this->requestStackSize 0;
  81.         $this->resetServices false;
  82.     }
  83.     /**
  84.      * {@inheritdoc}
  85.      */
  86.     public function boot()
  87.     {
  88.         if (true === $this->booted) {
  89.             if (!$this->requestStackSize && $this->resetServices) {
  90.                 if ($this->container->has('services_resetter')) {
  91.                     $this->container->get('services_resetter')->reset();
  92.                 }
  93.                 $this->resetServices false;
  94.                 if ($this->debug) {
  95.                     $this->startTime microtime(true);
  96.                 }
  97.             }
  98.             return;
  99.         }
  100.         if ($this->debug) {
  101.             $this->startTime microtime(true);
  102.         }
  103.         if ($this->debug && !isset($_ENV['SHELL_VERBOSITY']) && !isset($_SERVER['SHELL_VERBOSITY'])) {
  104.             putenv('SHELL_VERBOSITY=3');
  105.             $_ENV['SHELL_VERBOSITY'] = 3;
  106.             $_SERVER['SHELL_VERBOSITY'] = 3;
  107.         }
  108.         // init bundles
  109.         $this->initializeBundles();
  110.         // init container
  111.         $this->initializeContainer();
  112.         foreach ($this->getBundles() as $bundle) {
  113.             $bundle->setContainer($this->container);
  114.             $bundle->boot();
  115.         }
  116.         $this->booted true;
  117.     }
  118.     /**
  119.      * {@inheritdoc}
  120.      */
  121.     public function reboot(?string $warmupDir)
  122.     {
  123.         $this->shutdown();
  124.         $this->warmupDir $warmupDir;
  125.         $this->boot();
  126.     }
  127.     /**
  128.      * {@inheritdoc}
  129.      */
  130.     public function terminate(Request $requestResponse $response)
  131.     {
  132.         if (false === $this->booted) {
  133.             return;
  134.         }
  135.         if ($this->getHttpKernel() instanceof TerminableInterface) {
  136.             $this->getHttpKernel()->terminate($request$response);
  137.         }
  138.     }
  139.     /**
  140.      * {@inheritdoc}
  141.      */
  142.     public function shutdown()
  143.     {
  144.         if (false === $this->booted) {
  145.             return;
  146.         }
  147.         $this->booted false;
  148.         foreach ($this->getBundles() as $bundle) {
  149.             $bundle->shutdown();
  150.             $bundle->setContainer(null);
  151.         }
  152.         $this->container null;
  153.         $this->requestStackSize 0;
  154.         $this->resetServices false;
  155.     }
  156.     /**
  157.      * {@inheritdoc}
  158.      */
  159.     public function handle(Request $requestint $type HttpKernelInterface::MASTER_REQUESTbool $catch true)
  160.     {
  161.         $this->boot();
  162.         ++$this->requestStackSize;
  163.         $this->resetServices true;
  164.         try {
  165.             return $this->getHttpKernel()->handle($request$type$catch);
  166.         } finally {
  167.             --$this->requestStackSize;
  168.         }
  169.     }
  170.     /**
  171.      * Gets a HTTP kernel from the container.
  172.      *
  173.      * @return HttpKernelInterface
  174.      */
  175.     protected function getHttpKernel()
  176.     {
  177.         return $this->container->get('http_kernel');
  178.     }
  179.     /**
  180.      * {@inheritdoc}
  181.      */
  182.     public function getBundles()
  183.     {
  184.         return $this->bundles;
  185.     }
  186.     /**
  187.      * {@inheritdoc}
  188.      */
  189.     public function getBundle(string $name)
  190.     {
  191.         if (!isset($this->bundles[$name])) {
  192.             $class = static::class;
  193.             $class 'c' === $class[0] && === strpos($class"class@anonymous\0") ? get_parent_class($class).'@anonymous' $class;
  194.             throw new \InvalidArgumentException(sprintf('Bundle "%s" does not exist or it is not enabled. Maybe you forgot to add it in the "registerBundles()" method of your "%s.php" file?'$name$class));
  195.         }
  196.         return $this->bundles[$name];
  197.     }
  198.     /**
  199.      * {@inheritdoc}
  200.      */
  201.     public function locateResource(string $name)
  202.     {
  203.         if ('@' !== $name[0]) {
  204.             throw new \InvalidArgumentException(sprintf('A resource name must start with @ ("%s" given).'$name));
  205.         }
  206.         if (false !== strpos($name'..')) {
  207.             throw new \RuntimeException(sprintf('File name "%s" contains invalid characters (..).'$name));
  208.         }
  209.         $bundleName substr($name1);
  210.         $path '';
  211.         if (false !== strpos($bundleName'/')) {
  212.             list($bundleName$path) = explode('/'$bundleName2);
  213.         }
  214.         $bundle $this->getBundle($bundleName);
  215.         if (file_exists($file $bundle->getPath().'/'.$path)) {
  216.             return $file;
  217.         }
  218.         throw new \InvalidArgumentException(sprintf('Unable to find file "%s".'$name));
  219.     }
  220.     /**
  221.      * {@inheritdoc}
  222.      */
  223.     public function getEnvironment()
  224.     {
  225.         return $this->environment;
  226.     }
  227.     /**
  228.      * {@inheritdoc}
  229.      */
  230.     public function isDebug()
  231.     {
  232.         return $this->debug;
  233.     }
  234.     /**
  235.      * Gets the application root dir (path of the project's composer file).
  236.      *
  237.      * @return string The project root dir
  238.      */
  239.     public function getProjectDir()
  240.     {
  241.         if (null === $this->projectDir) {
  242.             $r = new \ReflectionObject($this);
  243.             if (!file_exists($dir $r->getFileName())) {
  244.                 throw new \LogicException(sprintf('Cannot auto-detect project dir for kernel of class "%s".'$r->name));
  245.             }
  246.             $dir $rootDir = \dirname($dir);
  247.             while (!file_exists($dir.'/composer.json')) {
  248.                 if ($dir === \dirname($dir)) {
  249.                     return $this->projectDir $rootDir;
  250.                 }
  251.                 $dir = \dirname($dir);
  252.             }
  253.             $this->projectDir $dir;
  254.         }
  255.         return $this->projectDir;
  256.     }
  257.     /**
  258.      * {@inheritdoc}
  259.      */
  260.     public function getContainer()
  261.     {
  262.         if (!$this->container) {
  263.             throw new \LogicException('Cannot retrieve the container from a non-booted kernel.');
  264.         }
  265.         return $this->container;
  266.     }
  267.     /**
  268.      * @internal
  269.      */
  270.     public function setAnnotatedClassCache(array $annotatedClasses)
  271.     {
  272.         file_put_contents(($this->warmupDir ?: $this->getCacheDir()).'/annotations.map'sprintf('<?php return %s;'var_export($annotatedClassestrue)));
  273.     }
  274.     /**
  275.      * {@inheritdoc}
  276.      */
  277.     public function getStartTime()
  278.     {
  279.         return $this->debug && null !== $this->startTime $this->startTime : -INF;
  280.     }
  281.     /**
  282.      * {@inheritdoc}
  283.      */
  284.     public function getCacheDir()
  285.     {
  286.         return $this->getProjectDir().'/var/cache/'.$this->environment;
  287.     }
  288.     /**
  289.      * {@inheritdoc}
  290.      */
  291.     public function getLogDir()
  292.     {
  293.         return $this->getProjectDir().'/var/log';
  294.     }
  295.     /**
  296.      * {@inheritdoc}
  297.      */
  298.     public function getCharset()
  299.     {
  300.         return 'UTF-8';
  301.     }
  302.     /**
  303.      * Gets the patterns defining the classes to parse and cache for annotations.
  304.      */
  305.     public function getAnnotatedClassesToCompile(): array
  306.     {
  307.         return [];
  308.     }
  309.     /**
  310.      * Initializes bundles.
  311.      *
  312.      * @throws \LogicException if two bundles share a common name
  313.      */
  314.     protected function initializeBundles()
  315.     {
  316.         // init bundles
  317.         $this->bundles = [];
  318.         foreach ($this->registerBundles() as $bundle) {
  319.             $name $bundle->getName();
  320.             if (isset($this->bundles[$name])) {
  321.                 throw new \LogicException(sprintf('Trying to register two bundles with the same name "%s".'$name));
  322.             }
  323.             $this->bundles[$name] = $bundle;
  324.         }
  325.     }
  326.     /**
  327.      * The extension point similar to the Bundle::build() method.
  328.      *
  329.      * Use this method to register compiler passes and manipulate the container during the building process.
  330.      */
  331.     protected function build(ContainerBuilder $container)
  332.     {
  333.     }
  334.     /**
  335.      * Gets the container class.
  336.      *
  337.      * @throws \InvalidArgumentException If the generated classname is invalid
  338.      *
  339.      * @return string The container class
  340.      */
  341.     protected function getContainerClass()
  342.     {
  343.         $class = static::class;
  344.         $class 'c' === $class[0] && === strpos($class"class@anonymous\0") ? get_parent_class($class).str_replace('.''_'ContainerBuilder::hash($class)) : $class;
  345.         $class str_replace('\\''_'$class).ucfirst($this->environment).($this->debug 'Debug' '').'Container';
  346.         if (!preg_match('/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$/'$class)) {
  347.             throw new \InvalidArgumentException(sprintf('The environment "%s" contains invalid characters, it can only contain characters allowed in PHP class names.'$this->environment));
  348.         }
  349.         return $class;
  350.     }
  351.     /**
  352.      * Gets the container's base class.
  353.      *
  354.      * All names except Container must be fully qualified.
  355.      *
  356.      * @return string
  357.      */
  358.     protected function getContainerBaseClass()
  359.     {
  360.         return 'Container';
  361.     }
  362.     /**
  363.      * Initializes the service container.
  364.      *
  365.      * The cached version of the service container is used when fresh, otherwise the
  366.      * container is built.
  367.      */
  368.     protected function initializeContainer()
  369.     {
  370.         $class $this->getContainerClass();
  371.         $cacheDir $this->warmupDir ?: $this->getCacheDir();
  372.         $cache = new ConfigCache($cacheDir.'/'.$class.'.php'$this->debug);
  373.         $cachePath $cache->getPath();
  374.         // Silence E_WARNING to ignore "include" failures - don't use "@" to prevent silencing fatal errors
  375.         $errorLevel error_reporting(E_ALL E_WARNING);
  376.         try {
  377.             if (file_exists($cachePath) && \is_object($this->container = include $cachePath)
  378.                 && (!$this->debug || (self::$freshCache[$cachePath] ?? $cache->isFresh()))
  379.             ) {
  380.                 self::$freshCache[$cachePath] = true;
  381.                 $this->container->set('kernel'$this);
  382.                 error_reporting($errorLevel);
  383.                 return;
  384.             }
  385.         } catch (\Throwable $e) {
  386.         }
  387.         $oldContainer = \is_object($this->container) ? new \ReflectionClass($this->container) : $this->container null;
  388.         try {
  389.             is_dir($cacheDir) ?: mkdir($cacheDir0777true);
  390.             if ($lock fopen($cachePath.'.lock''w')) {
  391.                 flock($lockLOCK_EX LOCK_NB$wouldBlock);
  392.                 if (!flock($lock$wouldBlock LOCK_SH LOCK_EX)) {
  393.                     fclose($lock);
  394.                     $lock null;
  395.                 } elseif (!\is_object($this->container = include $cachePath)) {
  396.                     $this->container null;
  397.                 } elseif (!$oldContainer || \get_class($this->container) !== $oldContainer->name) {
  398.                     flock($lockLOCK_UN);
  399.                     fclose($lock);
  400.                     $this->container->set('kernel'$this);
  401.                     return;
  402.                 }
  403.             }
  404.         } catch (\Throwable $e) {
  405.         } finally {
  406.             error_reporting($errorLevel);
  407.         }
  408.         if ($collectDeprecations $this->debug && !\defined('PHPUNIT_COMPOSER_INSTALL')) {
  409.             $collectedLogs = [];
  410.             $previousHandler set_error_handler(function ($type$message$file$line) use (&$collectedLogs, &$previousHandler) {
  411.                 if (E_USER_DEPRECATED !== $type && E_DEPRECATED !== $type) {
  412.                     return $previousHandler $previousHandler($type$message$file$line) : false;
  413.                 }
  414.                 if (isset($collectedLogs[$message])) {
  415.                     ++$collectedLogs[$message]['count'];
  416.                     return null;
  417.                 }
  418.                 $backtrace debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS5);
  419.                 // Clean the trace by removing first frames added by the error handler itself.
  420.                 for ($i 0; isset($backtrace[$i]); ++$i) {
  421.                     if (isset($backtrace[$i]['file'], $backtrace[$i]['line']) && $backtrace[$i]['line'] === $line && $backtrace[$i]['file'] === $file) {
  422.                         $backtrace = \array_slice($backtrace$i);
  423.                         break;
  424.                     }
  425.                 }
  426.                 // Remove frames added by DebugClassLoader.
  427.                 for ($i = \count($backtrace) - 2$i; --$i) {
  428.                     if (\in_array($backtrace[$i]['class'] ?? null, [DebugClassLoader::class, LegacyDebugClassLoader::class], true)) {
  429.                         $backtrace = [$backtrace[$i 1]];
  430.                         break;
  431.                     }
  432.                 }
  433.                 $collectedLogs[$message] = [
  434.                     'type' => $type,
  435.                     'message' => $message,
  436.                     'file' => $file,
  437.                     'line' => $line,
  438.                     'trace' => [$backtrace[0]],
  439.                     'count' => 1,
  440.                 ];
  441.                 return null;
  442.             });
  443.         }
  444.         try {
  445.             $container null;
  446.             $container $this->buildContainer();
  447.             $container->compile();
  448.         } finally {
  449.             if ($collectDeprecations) {
  450.                 restore_error_handler();
  451.                 file_put_contents($cacheDir.'/'.$class.'Deprecations.log'serialize(array_values($collectedLogs)));
  452.                 file_put_contents($cacheDir.'/'.$class.'Compiler.log'null !== $container implode("\n"$container->getCompiler()->getLog()) : '');
  453.             }
  454.         }
  455.         $this->dumpContainer($cache$container$class$this->getContainerBaseClass());
  456.         if ($lock) {
  457.             flock($lockLOCK_UN);
  458.             fclose($lock);
  459.         }
  460.         $this->container = require $cachePath;
  461.         $this->container->set('kernel'$this);
  462.         if ($oldContainer && \get_class($this->container) !== $oldContainer->name) {
  463.             // Because concurrent requests might still be using them,
  464.             // old container files are not removed immediately,
  465.             // but on a next dump of the container.
  466.             static $legacyContainers = [];
  467.             $oldContainerDir = \dirname($oldContainer->getFileName());
  468.             $legacyContainers[$oldContainerDir.'.legacy'] = true;
  469.             foreach (glob(\dirname($oldContainerDir).\DIRECTORY_SEPARATOR.'*.legacy'GLOB_NOSORT) as $legacyContainer) {
  470.                 if (!isset($legacyContainers[$legacyContainer]) && @unlink($legacyContainer)) {
  471.                     (new Filesystem())->remove(substr($legacyContainer0, -7));
  472.                 }
  473.             }
  474.             touch($oldContainerDir.'.legacy');
  475.         }
  476.         if ($this->container->has('cache_warmer')) {
  477.             $this->container->get('cache_warmer')->warmUp($this->container->getParameter('kernel.cache_dir'));
  478.         }
  479.     }
  480.     /**
  481.      * Returns the kernel parameters.
  482.      *
  483.      * @return array An array of kernel parameters
  484.      */
  485.     protected function getKernelParameters()
  486.     {
  487.         $bundles = [];
  488.         $bundlesMetadata = [];
  489.         foreach ($this->bundles as $name => $bundle) {
  490.             $bundles[$name] = \get_class($bundle);
  491.             $bundlesMetadata[$name] = [
  492.                 'path' => $bundle->getPath(),
  493.                 'namespace' => $bundle->getNamespace(),
  494.             ];
  495.         }
  496.         return [
  497.             'kernel.project_dir' => realpath($this->getProjectDir()) ?: $this->getProjectDir(),
  498.             'kernel.environment' => $this->environment,
  499.             'kernel.debug' => $this->debug,
  500.             'kernel.cache_dir' => realpath($cacheDir $this->warmupDir ?: $this->getCacheDir()) ?: $cacheDir,
  501.             'kernel.logs_dir' => realpath($this->getLogDir()) ?: $this->getLogDir(),
  502.             'kernel.bundles' => $bundles,
  503.             'kernel.bundles_metadata' => $bundlesMetadata,
  504.             'kernel.charset' => $this->getCharset(),
  505.             'kernel.container_class' => $this->getContainerClass(),
  506.         ];
  507.     }
  508.     /**
  509.      * Builds the service container.
  510.      *
  511.      * @return ContainerBuilder The compiled service container
  512.      *
  513.      * @throws \RuntimeException
  514.      */
  515.     protected function buildContainer()
  516.     {
  517.         foreach (['cache' => $this->warmupDir ?: $this->getCacheDir(), 'logs' => $this->getLogDir()] as $name => $dir) {
  518.             if (!is_dir($dir)) {
  519.                 if (false === @mkdir($dir0777true) && !is_dir($dir)) {
  520.                     throw new \RuntimeException(sprintf('Unable to create the "%s" directory (%s).'$name$dir));
  521.                 }
  522.             } elseif (!is_writable($dir)) {
  523.                 throw new \RuntimeException(sprintf('Unable to write in the "%s" directory (%s).'$name$dir));
  524.             }
  525.         }
  526.         $container $this->getContainerBuilder();
  527.         $container->addObjectResource($this);
  528.         $this->prepareContainer($container);
  529.         if (null !== $cont $this->registerContainerConfiguration($this->getContainerLoader($container))) {
  530.             $container->merge($cont);
  531.         }
  532.         $container->addCompilerPass(new AddAnnotatedClassesToCachePass($this));
  533.         return $container;
  534.     }
  535.     /**
  536.      * Prepares the ContainerBuilder before it is compiled.
  537.      */
  538.     protected function prepareContainer(ContainerBuilder $container)
  539.     {
  540.         $extensions = [];
  541.         foreach ($this->bundles as $bundle) {
  542.             if ($extension $bundle->getContainerExtension()) {
  543.                 $container->registerExtension($extension);
  544.             }
  545.             if ($this->debug) {
  546.                 $container->addObjectResource($bundle);
  547.             }
  548.         }
  549.         foreach ($this->bundles as $bundle) {
  550.             $bundle->build($container);
  551.         }
  552.         $this->build($container);
  553.         foreach ($container->getExtensions() as $extension) {
  554.             $extensions[] = $extension->getAlias();
  555.         }
  556.         // ensure these extensions are implicitly loaded
  557.         $container->getCompilerPassConfig()->setMergePass(new MergeExtensionConfigurationPass($extensions));
  558.     }
  559.     /**
  560.      * Gets a new ContainerBuilder instance used to build the service container.
  561.      *
  562.      * @return ContainerBuilder
  563.      */
  564.     protected function getContainerBuilder()
  565.     {
  566.         $container = new ContainerBuilder();
  567.         $container->getParameterBag()->add($this->getKernelParameters());
  568.         if ($this instanceof CompilerPassInterface) {
  569.             $container->addCompilerPass($thisPassConfig::TYPE_BEFORE_OPTIMIZATION, -10000);
  570.         }
  571.         if (class_exists('ProxyManager\Configuration') && class_exists('Symfony\Bridge\ProxyManager\LazyProxy\Instantiator\RuntimeInstantiator')) {
  572.             $container->setProxyInstantiator(new RuntimeInstantiator());
  573.         }
  574.         return $container;
  575.     }
  576.     /**
  577.      * Dumps the service container to PHP code in the cache.
  578.      *
  579.      * @param string $class     The name of the class to generate
  580.      * @param string $baseClass The name of the container's base class
  581.      */
  582.     protected function dumpContainer(ConfigCache $cacheContainerBuilder $containerstring $classstring $baseClass)
  583.     {
  584.         // cache the container
  585.         $dumper = new PhpDumper($container);
  586.         if (class_exists('ProxyManager\Configuration') && class_exists('Symfony\Bridge\ProxyManager\LazyProxy\PhpDumper\ProxyDumper')) {
  587.             $dumper->setProxyDumper(new ProxyDumper());
  588.         }
  589.         $content $dumper->dump([
  590.             'class' => $class,
  591.             'base_class' => $baseClass,
  592.             'file' => $cache->getPath(),
  593.             'as_files' => true,
  594.             'debug' => $this->debug,
  595.             'build_time' => $container->hasParameter('kernel.container_build_time') ? $container->getParameter('kernel.container_build_time') : time(),
  596.             'preload_classes' => array_map('get_class'$this->bundles),
  597.         ]);
  598.         $rootCode array_pop($content);
  599.         $dir = \dirname($cache->getPath()).'/';
  600.         $fs = new Filesystem();
  601.         foreach ($content as $file => $code) {
  602.             $fs->dumpFile($dir.$file$code);
  603.             @chmod($dir.$file0666 & ~umask());
  604.         }
  605.         $legacyFile = \dirname($dir.key($content)).'.legacy';
  606.         if (file_exists($legacyFile)) {
  607.             @unlink($legacyFile);
  608.         }
  609.         $cache->write($rootCode$container->getResources());
  610.     }
  611.     /**
  612.      * Returns a loader for the container.
  613.      *
  614.      * @return DelegatingLoader The loader
  615.      */
  616.     protected function getContainerLoader(ContainerInterface $container)
  617.     {
  618.         $locator = new FileLocator($this);
  619.         $resolver = new LoaderResolver([
  620.             new XmlFileLoader($container$locator),
  621.             new YamlFileLoader($container$locator),
  622.             new IniFileLoader($container$locator),
  623.             new PhpFileLoader($container$locator),
  624.             new GlobFileLoader($container$locator),
  625.             new DirectoryLoader($container$locator),
  626.             new ClosureLoader($container),
  627.         ]);
  628.         return new DelegatingLoader($resolver);
  629.     }
  630.     /**
  631.      * Removes comments from a PHP source string.
  632.      *
  633.      * We don't use the PHP php_strip_whitespace() function
  634.      * as we want the content to be readable and well-formatted.
  635.      *
  636.      * @return string The PHP string with the comments removed
  637.      */
  638.     public static function stripComments(string $source)
  639.     {
  640.         if (!\function_exists('token_get_all')) {
  641.             return $source;
  642.         }
  643.         $rawChunk '';
  644.         $output '';
  645.         $tokens token_get_all($source);
  646.         $ignoreSpace false;
  647.         for ($i 0; isset($tokens[$i]); ++$i) {
  648.             $token $tokens[$i];
  649.             if (!isset($token[1]) || 'b"' === $token) {
  650.                 $rawChunk .= $token;
  651.             } elseif (T_START_HEREDOC === $token[0]) {
  652.                 $output .= $rawChunk.$token[1];
  653.                 do {
  654.                     $token $tokens[++$i];
  655.                     $output .= isset($token[1]) && 'b"' !== $token $token[1] : $token;
  656.                 } while (T_END_HEREDOC !== $token[0]);
  657.                 $rawChunk '';
  658.             } elseif (T_WHITESPACE === $token[0]) {
  659.                 if ($ignoreSpace) {
  660.                     $ignoreSpace false;
  661.                     continue;
  662.                 }
  663.                 // replace multiple new lines with a single newline
  664.                 $rawChunk .= preg_replace(['/\n{2,}/S'], "\n"$token[1]);
  665.             } elseif (\in_array($token[0], [T_COMMENTT_DOC_COMMENT])) {
  666.                 $ignoreSpace true;
  667.             } else {
  668.                 $rawChunk .= $token[1];
  669.                 // The PHP-open tag already has a new-line
  670.                 if (T_OPEN_TAG === $token[0]) {
  671.                     $ignoreSpace true;
  672.                 }
  673.             }
  674.         }
  675.         $output .= $rawChunk;
  676.         unset($tokens$rawChunk);
  677.         gc_mem_caches();
  678.         return $output;
  679.     }
  680.     /**
  681.      * @return array
  682.      */
  683.     public function __sleep()
  684.     {
  685.         return ['environment''debug'];
  686.     }
  687.     public function __wakeup()
  688.     {
  689.         $this->__construct($this->environment$this->debug);
  690.     }
  691. }