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

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