Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ResolveHotPathPass.php

class ResolveHotPathPass

Propagate "container.hot_path" tags to referenced services.

@author Nicolas Grekas <p@tchwork.com>

Hierarchy

  • class \Symfony\Component\DependencyInjection\Compiler\AbstractRecursivePass implements \Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface
    • class \Symfony\Component\DependencyInjection\Compiler\ResolveHotPathPass extends \Symfony\Component\DependencyInjection\Compiler\AbstractRecursivePass

Expanded class hierarchy of ResolveHotPathPass

1 file declares its use of ResolveHotPathPass
NormalInstallerServiceProvider.php in core/lib/Drupal/Core/Installer/NormalInstallerServiceProvider.php

File

vendor/symfony/dependency-injection/Compiler/ResolveHotPathPass.php, line 24

Namespace

Symfony\Component\DependencyInjection\Compiler
View source
class ResolveHotPathPass extends AbstractRecursivePass {
    protected bool $skipScalars = true;
    private array $resolvedIds = [];
    public function process(ContainerBuilder $container) : void {
        try {
            parent::process($container);
            $container->getDefinition('service_container')
                ->clearTag('container.hot_path');
        } finally {
            $this->resolvedIds = [];
        }
    }
    protected function processValue(mixed $value, bool $isRoot = false) : mixed {
        if ($value instanceof ArgumentInterface) {
            return $value;
        }
        if ($value instanceof Definition && $isRoot) {
            if ($value->isDeprecated()) {
                return $value->clearTag('container.hot_path');
            }
            $this->resolvedIds[$this->currentId] = true;
            if (!$value->hasTag('container.hot_path')) {
                return $value;
            }
        }
        if ($value instanceof Reference && ContainerBuilder::IGNORE_ON_UNINITIALIZED_REFERENCE !== $value->getInvalidBehavior() && $this->container
            ->hasDefinition($id = (string) $value)) {
            $definition = $this->container
                ->getDefinition($id);
            if ($definition->isDeprecated() || $definition->hasTag('container.hot_path')) {
                return $value;
            }
            $definition->addTag('container.hot_path');
            if (isset($this->resolvedIds[$id])) {
                parent::processValue($definition, false);
            }
            return $value;
        }
        return parent::processValue($value, $isRoot);
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
AbstractRecursivePass::$container protected property
AbstractRecursivePass::$currentId protected property
AbstractRecursivePass::$expressionLanguage private property 1
AbstractRecursivePass::$inExpression private property
AbstractRecursivePass::$processExpressions private property
AbstractRecursivePass::enableExpressionProcessing protected function
AbstractRecursivePass::getConstructor protected function
AbstractRecursivePass::getExpressionLanguage private function 1
AbstractRecursivePass::getReflectionMethod protected function
AbstractRecursivePass::inExpression protected function
ResolveHotPathPass::$resolvedIds private property
ResolveHotPathPass::$skipScalars protected property Overrides AbstractRecursivePass::$skipScalars
ResolveHotPathPass::process public function You can modify the container here before it is dumped to PHP code. Overrides AbstractRecursivePass::process
ResolveHotPathPass::processValue protected function Processes a value found in a definition tree. Overrides AbstractRecursivePass::processValue
RSS feed
Powered by Drupal