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\CompilerView 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);
}
}