vendor/symfony/dependency-injection/Compiler/AutowirePass.php line 517

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\Config\Resource\ClassExistenceResource;
  12. use Symfony\Component\DependencyInjection\Argument\ServiceLocatorArgument;
  13. use Symfony\Component\DependencyInjection\Argument\TaggedIteratorArgument;
  14. use Symfony\Component\DependencyInjection\Attribute\TaggedIterator;
  15. use Symfony\Component\DependencyInjection\Attribute\TaggedLocator;
  16. use Symfony\Component\DependencyInjection\Attribute\Target;
  17. use Symfony\Component\DependencyInjection\ContainerBuilder;
  18. use Symfony\Component\DependencyInjection\Definition;
  19. use Symfony\Component\DependencyInjection\Exception\AutowiringFailedException;
  20. use Symfony\Component\DependencyInjection\Exception\RuntimeException;
  21. use Symfony\Component\DependencyInjection\LazyProxy\ProxyHelper;
  22. use Symfony\Component\DependencyInjection\TypedReference;
  23. /**
  24.  * Inspects existing service definitions and wires the autowired ones using the type hints of their classes.
  25.  *
  26.  * @author Kévin Dunglas <dunglas@gmail.com>
  27.  * @author Nicolas Grekas <p@tchwork.com>
  28.  */
  29. class AutowirePass extends AbstractRecursivePass
  30. {
  31.     private $types;
  32.     private $ambiguousServiceTypes;
  33.     private $autowiringAliases;
  34.     private $lastFailure;
  35.     private $throwOnAutowiringException;
  36.     private $decoratedClass;
  37.     private $decoratedId;
  38.     private $methodCalls;
  39.     private $defaultArgument;
  40.     private $getPreviousValue;
  41.     private $decoratedMethodIndex;
  42.     private $decoratedMethodArgumentIndex;
  43.     private $typesClone;
  44.     public function __construct(bool $throwOnAutowireException true)
  45.     {
  46.         $this->throwOnAutowiringException $throwOnAutowireException;
  47.         $this->defaultArgument = new class() {
  48.             public $value;
  49.             public $names;
  50.         };
  51.     }
  52.     /**
  53.      * {@inheritdoc}
  54.      */
  55.     public function process(ContainerBuilder $container)
  56.     {
  57.         try {
  58.             $this->typesClone = clone $this;
  59.             parent::process($container);
  60.         } finally {
  61.             $this->decoratedClass null;
  62.             $this->decoratedId null;
  63.             $this->methodCalls null;
  64.             $this->defaultArgument->names null;
  65.             $this->getPreviousValue null;
  66.             $this->decoratedMethodIndex null;
  67.             $this->decoratedMethodArgumentIndex null;
  68.             $this->typesClone null;
  69.         }
  70.     }
  71.     /**
  72.      * {@inheritdoc}
  73.      */
  74.     protected function processValue($valuebool $isRoot false)
  75.     {
  76.         try {
  77.             return $this->doProcessValue($value$isRoot);
  78.         } catch (AutowiringFailedException $e) {
  79.             if ($this->throwOnAutowiringException) {
  80.                 throw $e;
  81.             }
  82.             $this->container->getDefinition($this->currentId)->addError($e->getMessageCallback() ?? $e->getMessage());
  83.             return parent::processValue($value$isRoot);
  84.         }
  85.     }
  86.     /**
  87.      * @return mixed
  88.      */
  89.     private function doProcessValue($valuebool $isRoot false)
  90.     {
  91.         if ($value instanceof TypedReference) {
  92.             if ($ref $this->getAutowiredReference($valuetrue)) {
  93.                 return $ref;
  94.             }
  95.             if (ContainerBuilder::RUNTIME_EXCEPTION_ON_INVALID_REFERENCE === $value->getInvalidBehavior()) {
  96.                 $message $this->createTypeNotFoundMessageCallback($value'it');
  97.                 // since the error message varies by referenced id and $this->currentId, so should the id of the dummy errored definition
  98.                 $this->container->register($id sprintf('.errored.%s.%s'$this->currentId, (string) $value), $value->getType())
  99.                     ->addError($message);
  100.                 return new TypedReference($id$value->getType(), $value->getInvalidBehavior(), $value->getName());
  101.             }
  102.         }
  103.         $value parent::processValue($value$isRoot);
  104.         if (!$value instanceof Definition || !$value->isAutowired() || $value->isAbstract() || !$value->getClass()) {
  105.             return $value;
  106.         }
  107.         if (!$reflectionClass $this->container->getReflectionClass($value->getClass(), false)) {
  108.             $this->container->log($thissprintf('Skipping service "%s": Class or interface "%s" cannot be loaded.'$this->currentId$value->getClass()));
  109.             return $value;
  110.         }
  111.         $this->methodCalls $value->getMethodCalls();
  112.         try {
  113.             $constructor $this->getConstructor($valuefalse);
  114.         } catch (RuntimeException $e) {
  115.             throw new AutowiringFailedException($this->currentId$e->getMessage(), 0$e);
  116.         }
  117.         if ($constructor) {
  118.             array_unshift($this->methodCalls, [$constructor$value->getArguments()]);
  119.         }
  120.         $checkAttributes 80000 <= \PHP_VERSION_ID && !$value->hasTag('container.ignore_attributes');
  121.         $this->methodCalls $this->autowireCalls($reflectionClass$isRoot$checkAttributes);
  122.         if ($constructor) {
  123.             [, $arguments] = array_shift($this->methodCalls);
  124.             if ($arguments !== $value->getArguments()) {
  125.                 $value->setArguments($arguments);
  126.             }
  127.         }
  128.         if ($this->methodCalls !== $value->getMethodCalls()) {
  129.             $value->setMethodCalls($this->methodCalls);
  130.         }
  131.         return $value;
  132.     }
  133.     private function autowireCalls(\ReflectionClass $reflectionClassbool $isRootbool $checkAttributes): array
  134.     {
  135.         $this->decoratedId null;
  136.         $this->decoratedClass null;
  137.         $this->getPreviousValue null;
  138.         if ($isRoot && ($definition $this->container->getDefinition($this->currentId)) && null !== ($this->decoratedId $definition->innerServiceId) && $this->container->has($this->decoratedId)) {
  139.             $this->decoratedClass $this->container->findDefinition($this->decoratedId)->getClass();
  140.         }
  141.         $patchedIndexes = [];
  142.         foreach ($this->methodCalls as $i => $call) {
  143.             [$method$arguments] = $call;
  144.             if ($method instanceof \ReflectionFunctionAbstract) {
  145.                 $reflectionMethod $method;
  146.             } else {
  147.                 $definition = new Definition($reflectionClass->name);
  148.                 try {
  149.                     $reflectionMethod $this->getReflectionMethod($definition$method);
  150.                 } catch (RuntimeException $e) {
  151.                     if ($definition->getFactory()) {
  152.                         continue;
  153.                     }
  154.                     throw $e;
  155.                 }
  156.             }
  157.             $arguments $this->autowireMethod($reflectionMethod$arguments$checkAttributes$i);
  158.             if ($arguments !== $call[1]) {
  159.                 $this->methodCalls[$i][1] = $arguments;
  160.                 $patchedIndexes[] = $i;
  161.             }
  162.         }
  163.         // use named arguments to skip complex default values
  164.         foreach ($patchedIndexes as $i) {
  165.             $namedArguments null;
  166.             $arguments $this->methodCalls[$i][1];
  167.             foreach ($arguments as $j => $value) {
  168.                 if ($namedArguments && !$value instanceof $this->defaultArgument) {
  169.                     unset($arguments[$j]);
  170.                     $arguments[$namedArguments[$j]] = $value;
  171.                 }
  172.                 if ($namedArguments || !$value instanceof $this->defaultArgument) {
  173.                     continue;
  174.                 }
  175.                 if (\PHP_VERSION_ID >= 80100 && (\is_array($value->value) ? $value->value \is_object($value->value))) {
  176.                     unset($arguments[$j]);
  177.                     $namedArguments $value->names;
  178.                 } else {
  179.                     $arguments[$j] = $value->value;
  180.                 }
  181.             }
  182.             $this->methodCalls[$i][1] = $arguments;
  183.         }
  184.         return $this->methodCalls;
  185.     }
  186.     /**
  187.      * Autowires the constructor or a method.
  188.      *
  189.      * @throws AutowiringFailedException
  190.      */
  191.     private function autowireMethod(\ReflectionFunctionAbstract $reflectionMethod, array $argumentsbool $checkAttributesint $methodIndex): array
  192.     {
  193.         $class $reflectionMethod instanceof \ReflectionMethod $reflectionMethod->class $this->currentId;
  194.         $method $reflectionMethod->name;
  195.         $parameters $reflectionMethod->getParameters();
  196.         if ($reflectionMethod->isVariadic()) {
  197.             array_pop($parameters);
  198.         }
  199.         $this->defaultArgument->names = new \ArrayObject();
  200.         foreach ($parameters as $index => $parameter) {
  201.             $this->defaultArgument->names[$index] = $parameter->name;
  202.             if (\array_key_exists($parameter->name$arguments)) {
  203.                 $arguments[$index] = $arguments[$parameter->name];
  204.                 unset($arguments[$parameter->name]);
  205.             }
  206.             if (\array_key_exists($index$arguments) && '' !== $arguments[$index]) {
  207.                 continue;
  208.             }
  209.             $type ProxyHelper::getTypeHint($reflectionMethod$parametertrue);
  210.             if ($checkAttributes) {
  211.                 foreach ($parameter->getAttributes() as $attribute) {
  212.                     if (TaggedIterator::class === $attribute->getName()) {
  213.                         $attribute $attribute->newInstance();
  214.                         $arguments[$index] = new TaggedIteratorArgument($attribute->tag$attribute->indexAttribute$attribute->defaultIndexMethodfalse$attribute->defaultPriorityMethod);
  215.                         break;
  216.                     }
  217.                     if (TaggedLocator::class === $attribute->getName()) {
  218.                         $attribute $attribute->newInstance();
  219.                         $arguments[$index] = new ServiceLocatorArgument(new TaggedIteratorArgument($attribute->tag$attribute->indexAttribute$attribute->defaultIndexMethodtrue$attribute->defaultPriorityMethod));
  220.                         break;
  221.                     }
  222.                 }
  223.                 if ('' !== ($arguments[$index] ?? '')) {
  224.                     continue;
  225.                 }
  226.             }
  227.             if (!$type) {
  228.                 if (isset($arguments[$index])) {
  229.                     continue;
  230.                 }
  231.                 // no default value? Then fail
  232.                 if (!$parameter->isDefaultValueAvailable()) {
  233.                     // For core classes, isDefaultValueAvailable() can
  234.                     // be false when isOptional() returns true. If the
  235.                     // argument *is* optional, allow it to be missing
  236.                     if ($parameter->isOptional()) {
  237.                         --$index;
  238.                         break;
  239.                     }
  240.                     $type ProxyHelper::getTypeHint($reflectionMethod$parameterfalse);
  241.                     $type $type sprintf('is type-hinted "%s"'ltrim($type'\\')) : 'has no type-hint';
  242.                     throw new AutowiringFailedException($this->currentIdsprintf('Cannot autowire service "%s": argument "$%s" of method "%s()" %s, you should configure its value explicitly.'$this->currentId$parameter->name$class !== $this->currentId $class.'::'.$method $method$type));
  243.                 }
  244.                 // specifically pass the default value
  245.                 $arguments[$index] = clone $this->defaultArgument;
  246.                 $arguments[$index]->value $parameter->getDefaultValue();
  247.                 continue;
  248.             }
  249.             $getValue = function () use ($type$parameter$class$method) {
  250.                 if (!$value $this->getAutowiredReference($ref = new TypedReference($type$typeContainerBuilder::EXCEPTION_ON_INVALID_REFERENCETarget::parseName($parameter)), true)) {
  251.                     $failureMessage $this->createTypeNotFoundMessageCallback($refsprintf('argument "$%s" of method "%s()"'$parameter->name$class !== $this->currentId $class.'::'.$method $method));
  252.                     if ($parameter->isDefaultValueAvailable()) {
  253.                         $value = clone $this->defaultArgument;
  254.                         $value->value $parameter->getDefaultValue();
  255.                     } elseif (!$parameter->allowsNull()) {
  256.                         throw new AutowiringFailedException($this->currentId$failureMessage);
  257.                     }
  258.                 }
  259.                 return $value;
  260.             };
  261.             if ($this->decoratedClass && $isDecorated is_a($this->decoratedClass$typetrue)) {
  262.                 if ($this->getPreviousValue) {
  263.                     // The inner service is injected only if there is only 1 argument matching the type of the decorated class
  264.                     // across all arguments of all autowired methods.
  265.                     // If a second matching argument is found, the default behavior is restored.
  266.                     $getPreviousValue $this->getPreviousValue;
  267.                     $this->methodCalls[$this->decoratedMethodIndex][1][$this->decoratedMethodArgumentIndex] = $getPreviousValue();
  268.                     $this->decoratedClass null// Prevent further checks
  269.                 } else {
  270.                     $arguments[$index] = new TypedReference($this->decoratedId$this->decoratedClass);
  271.                     $this->getPreviousValue $getValue;
  272.                     $this->decoratedMethodIndex $methodIndex;
  273.                     $this->decoratedMethodArgumentIndex $index;
  274.                     continue;
  275.                 }
  276.             }
  277.             $arguments[$index] = $getValue();
  278.         }
  279.         if ($parameters && !isset($arguments[++$index])) {
  280.             while (<= --$index) {
  281.                 if (!$arguments[$index] instanceof $this->defaultArgument) {
  282.                     break;
  283.                 }
  284.                 unset($arguments[$index]);
  285.             }
  286.         }
  287.         // it's possible index 1 was set, then index 0, then 2, etc
  288.         // make sure that we re-order so they're injected as expected
  289.         ksort($arguments\SORT_NATURAL);
  290.         return $arguments;
  291.     }
  292.     /**
  293.      * Returns a reference to the service matching the given type, if any.
  294.      */
  295.     private function getAutowiredReference(TypedReference $referencebool $filterType): ?TypedReference
  296.     {
  297.         $this->lastFailure null;
  298.         $type $reference->getType();
  299.         if ($type !== (string) $reference) {
  300.             return $reference;
  301.         }
  302.         if ($filterType && false !== $m strpbrk($type'&|')) {
  303.             $types array_diff(explode($m[0], $type), ['int''string''array''bool''float''iterable''object''callable''null']);
  304.             sort($types);
  305.             $type implode($m[0], $types);
  306.         }
  307.         if (null !== $name $reference->getName()) {
  308.             if ($this->container->has($alias $type.' $'.$name) && !$this->container->findDefinition($alias)->isAbstract()) {
  309.                 return new TypedReference($alias$type$reference->getInvalidBehavior());
  310.             }
  311.             if (null !== ($alias $this->getCombinedAlias($type$name) ?? null) && !$this->container->findDefinition($alias)->isAbstract()) {
  312.                 return new TypedReference($alias$type$reference->getInvalidBehavior());
  313.             }
  314.             if ($this->container->has($name) && !$this->container->findDefinition($name)->isAbstract()) {
  315.                 foreach ($this->container->getAliases() as $id => $alias) {
  316.                     if ($name === (string) $alias && str_starts_with($id$type.' $')) {
  317.                         return new TypedReference($name$type$reference->getInvalidBehavior());
  318.                     }
  319.                 }
  320.             }
  321.         }
  322.         if ($this->container->has($type) && !$this->container->findDefinition($type)->isAbstract()) {
  323.             return new TypedReference($type$type$reference->getInvalidBehavior());
  324.         }
  325.         if (null !== ($alias $this->getCombinedAlias($type) ?? null) && !$this->container->findDefinition($alias)->isAbstract()) {
  326.             return new TypedReference($alias$type$reference->getInvalidBehavior());
  327.         }
  328.         return null;
  329.     }
  330.     /**
  331.      * Populates the list of available types.
  332.      */
  333.     private function populateAvailableTypes(ContainerBuilder $container)
  334.     {
  335.         $this->types = [];
  336.         $this->ambiguousServiceTypes = [];
  337.         $this->autowiringAliases = [];
  338.         foreach ($container->getDefinitions() as $id => $definition) {
  339.             $this->populateAvailableType($container$id$definition);
  340.         }
  341.         foreach ($container->getAliases() as $id => $alias) {
  342.             $this->populateAutowiringAlias($id);
  343.         }
  344.     }
  345.     /**
  346.      * Populates the list of available types for a given definition.
  347.      */
  348.     private function populateAvailableType(ContainerBuilder $containerstring $idDefinition $definition)
  349.     {
  350.         // Never use abstract services
  351.         if ($definition->isAbstract()) {
  352.             return;
  353.         }
  354.         if ('' === $id || '.' === $id[0] || $definition->isDeprecated() || !$reflectionClass $container->getReflectionClass($definition->getClass(), false)) {
  355.             return;
  356.         }
  357.         foreach ($reflectionClass->getInterfaces() as $reflectionInterface) {
  358.             $this->set($reflectionInterface->name$id);
  359.         }
  360.         do {
  361.             $this->set($reflectionClass->name$id);
  362.         } while ($reflectionClass $reflectionClass->getParentClass());
  363.         $this->populateAutowiringAlias($id);
  364.     }
  365.     /**
  366.      * Associates a type and a service id if applicable.
  367.      */
  368.     private function set(string $typestring $id)
  369.     {
  370.         // is this already a type/class that is known to match multiple services?
  371.         if (isset($this->ambiguousServiceTypes[$type])) {
  372.             $this->ambiguousServiceTypes[$type][] = $id;
  373.             return;
  374.         }
  375.         // check to make sure the type doesn't match multiple services
  376.         if (!isset($this->types[$type]) || $this->types[$type] === $id) {
  377.             $this->types[$type] = $id;
  378.             return;
  379.         }
  380.         // keep an array of all services matching this type
  381.         if (!isset($this->ambiguousServiceTypes[$type])) {
  382.             $this->ambiguousServiceTypes[$type] = [$this->types[$type]];
  383.             unset($this->types[$type]);
  384.         }
  385.         $this->ambiguousServiceTypes[$type][] = $id;
  386.     }
  387.     private function createTypeNotFoundMessageCallback(TypedReference $referencestring $label): \Closure
  388.     {
  389.         if (null === $this->typesClone->container) {
  390.             $this->typesClone->container = new ContainerBuilder($this->container->getParameterBag());
  391.             $this->typesClone->container->setAliases($this->container->getAliases());
  392.             $this->typesClone->container->setDefinitions($this->container->getDefinitions());
  393.             $this->typesClone->container->setResourceTracking(false);
  394.         }
  395.         $currentId $this->currentId;
  396.         return (function () use ($reference$label$currentId) {
  397.             return $this->createTypeNotFoundMessage($reference$label$currentId);
  398.         })->bindTo($this->typesClone);
  399.     }
  400.     private function createTypeNotFoundMessage(TypedReference $referencestring $labelstring $currentId): string
  401.     {
  402.         if (!$r $this->container->getReflectionClass($type $reference->getType(), false)) {
  403.             // either $type does not exist or a parent class does not exist
  404.             try {
  405.                 $resource = new ClassExistenceResource($typefalse);
  406.                 // isFresh() will explode ONLY if a parent class/trait does not exist
  407.                 $resource->isFresh(0);
  408.                 $parentMsg false;
  409.             } catch (\ReflectionException $e) {
  410.                 $parentMsg $e->getMessage();
  411.             }
  412.             $message sprintf('has type "%s" but this class %s.'$type$parentMsg sprintf('is missing a parent class (%s)'$parentMsg) : 'was not found');
  413.         } else {
  414.             $alternatives $this->createTypeAlternatives($this->container$reference);
  415.             $message $this->container->has($type) ? 'this service is abstract' 'no such service exists';
  416.             $message sprintf('references %s "%s" but %s.%s'$r->isInterface() ? 'interface' 'class'$type$message$alternatives);
  417.             if ($r->isInterface() && !$alternatives) {
  418.                 $message .= ' Did you create a class that implements this interface?';
  419.             }
  420.         }
  421.         $message sprintf('Cannot autowire service "%s": %s %s'$currentId$label$message);
  422.         if (null !== $this->lastFailure) {
  423.             $message $this->lastFailure."\n".$message;
  424.             $this->lastFailure null;
  425.         }
  426.         return $message;
  427.     }
  428.     private function createTypeAlternatives(ContainerBuilder $containerTypedReference $reference): string
  429.     {
  430.         // try suggesting available aliases first
  431.         if ($message $this->getAliasesSuggestionForType($container$type $reference->getType())) {
  432.             return ' '.$message;
  433.         }
  434.         if (null === $this->ambiguousServiceTypes) {
  435.             $this->populateAvailableTypes($container);
  436.         }
  437.         $servicesAndAliases $container->getServiceIds();
  438.         if (null !== ($autowiringAliases $this->autowiringAliases[$type] ?? null) && !isset($autowiringAliases[''])) {
  439.             return sprintf(' Available autowiring aliases for this %s are: "$%s".'class_exists($typefalse) ? 'class' 'interface'implode('", "$'$autowiringAliases));
  440.         }
  441.         if (!$container->has($type) && false !== $key array_search(strtolower($type), array_map('strtolower'$servicesAndAliases))) {
  442.             return sprintf(' Did you mean "%s"?'$servicesAndAliases[$key]);
  443.         } elseif (isset($this->ambiguousServiceTypes[$type])) {
  444.             $message sprintf('one of these existing services: "%s"'implode('", "'$this->ambiguousServiceTypes[$type]));
  445.         } elseif (isset($this->types[$type])) {
  446.             $message sprintf('the existing "%s" service'$this->types[$type]);
  447.         } else {
  448.             return '';
  449.         }
  450.         return sprintf(' You should maybe alias this %s to %s.'class_exists($typefalse) ? 'class' 'interface'$message);
  451.     }
  452.     private function getAliasesSuggestionForType(ContainerBuilder $containerstring $type): ?string
  453.     {
  454.         $aliases = [];
  455.         foreach (class_parents($type) + class_implements($type) as $parent) {
  456.             if ($container->has($parent) && !$container->findDefinition($parent)->isAbstract()) {
  457.                 $aliases[] = $parent;
  458.             }
  459.         }
  460.         if ($len \count($aliases)) {
  461.             $message 'Try changing the type-hint to one of its parents: ';
  462.             for ($i 0, --$len$i $len; ++$i) {
  463.                 $message .= sprintf('%s "%s", 'class_exists($aliases[$i], false) ? 'class' 'interface'$aliases[$i]);
  464.             }
  465.             $message .= sprintf('or %s "%s".'class_exists($aliases[$i], false) ? 'class' 'interface'$aliases[$i]);
  466.             return $message;
  467.         }
  468.         if ($aliases) {
  469.             return sprintf('Try changing the type-hint to "%s" instead.'$aliases[0]);
  470.         }
  471.         return null;
  472.     }
  473.     private function populateAutowiringAlias(string $id): void
  474.     {
  475.         if (!preg_match('/(?(DEFINE)(?<V>[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*+))^((?&V)(?:\\\\(?&V))*+)(?: \$((?&V)))?$/'$id$m)) {
  476.             return;
  477.         }
  478.         $type $m[2];
  479.         $name $m[3] ?? '';
  480.         if (class_exists($typefalse) || interface_exists($typefalse)) {
  481.             $this->autowiringAliases[$type][$name] = $name;
  482.         }
  483.     }
  484.     private function getCombinedAlias(string $typestring $name null): ?string
  485.     {
  486.         if (str_contains($type'&')) {
  487.             $types explode('&'$type);
  488.         } elseif (str_contains($type'|')) {
  489.             $types explode('|'$type);
  490.         } else {
  491.             return null;
  492.         }
  493.         $alias null;
  494.         $suffix $name ' $'.$name '';
  495.         foreach ($types as $type) {
  496.             if (!$this->container->hasAlias($type.$suffix)) {
  497.                 return null;
  498.             }
  499.             if (null === $alias) {
  500.                 $alias = (string) $this->container->getAlias($type.$suffix);
  501.             } elseif ((string) $this->container->getAlias($type.$suffix) !== $alias) {
  502.                 return null;
  503.             }
  504.         }
  505.         return $alias;
  506.     }
  507. }