vendor/symfony/dependency-injection/Compiler/Compiler.php line 82

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\DependencyInjection\Compiler;
  11. use Symfony\Component\DependencyInjection\ContainerBuilder;
  12. use Symfony\Component\DependencyInjection\Exception\EnvParameterException;
  13. /**
  14.  * This class is used to remove circular dependencies between individual passes.
  15.  *
  16.  * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  17.  */
  18. class Compiler
  19. {
  20.     private $passConfig;
  21.     private $log = [];
  22.     private $serviceReferenceGraph;
  23.     public function __construct()
  24.     {
  25.         $this->passConfig = new PassConfig();
  26.         $this->serviceReferenceGraph = new ServiceReferenceGraph();
  27.     }
  28.     /**
  29.      * @return PassConfig
  30.      */
  31.     public function getPassConfig()
  32.     {
  33.         return $this->passConfig;
  34.     }
  35.     /**
  36.      * @return ServiceReferenceGraph
  37.      */
  38.     public function getServiceReferenceGraph()
  39.     {
  40.         return $this->serviceReferenceGraph;
  41.     }
  42.     public function addPass(CompilerPassInterface $passstring $type PassConfig::TYPE_BEFORE_OPTIMIZATIONint $priority 0)
  43.     {
  44.         $this->passConfig->addPass($pass$type$priority);
  45.     }
  46.     /**
  47.      * @final
  48.      */
  49.     public function log(CompilerPassInterface $passstring $message)
  50.     {
  51.         if (str_contains($message"\n")) {
  52.             $message str_replace("\n""\n".\get_class($pass).': 'trim($message));
  53.         }
  54.         $this->log[] = \get_class($pass).': '.$message;
  55.     }
  56.     /**
  57.      * @return array
  58.      */
  59.     public function getLog()
  60.     {
  61.         return $this->log;
  62.     }
  63.     /**
  64.      * Run the Compiler and process all Passes.
  65.      */
  66.     public function compile(ContainerBuilder $container)
  67.     {
  68.         try {
  69.             foreach ($this->passConfig->getPasses() as $pass) {
  70.                 $pass->process($container);
  71.             }
  72.         } catch (\Exception $e) {
  73.             $usedEnvs = [];
  74.             $prev $e;
  75.             do {
  76.                 $msg $prev->getMessage();
  77.                 if ($msg !== $resolvedMsg $container->resolveEnvPlaceholders($msgnull$usedEnvs)) {
  78.                     $r = new \ReflectionProperty($prev'message');
  79.                     $r->setAccessible(true);
  80.                     $r->setValue($prev$resolvedMsg);
  81.                 }
  82.             } while ($prev $prev->getPrevious());
  83.             if ($usedEnvs) {
  84.                 $e = new EnvParameterException($usedEnvs$e);
  85.             }
  86.             throw $e;
  87.         } finally {
  88.             $this->getServiceReferenceGraph()->clear();
  89.         }
  90.     }
  91. }