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

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