vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php line 245

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\Config\AutowireServiceResource;
  13. use Symfony\Component\DependencyInjection\ContainerBuilder;
  14. use Symfony\Component\DependencyInjection\Definition;
  15. use Symfony\Component\DependencyInjection\Exception\AutowiringFailedException;
  16. use Symfony\Component\DependencyInjection\Exception\RuntimeException;
  17. use Symfony\Component\DependencyInjection\LazyProxy\ProxyHelper;
  18. use Symfony\Component\DependencyInjection\TypedReference;
  19. /**
  20.  * Inspects existing service definitions and wires the autowired ones using the type hints of their classes.
  21.  *
  22.  * @author Kévin Dunglas <dunglas@gmail.com>
  23.  * @author Nicolas Grekas <p@tchwork.com>
  24.  */
  25. class AutowirePass extends AbstractRecursivePass
  26. {
  27.     private $definedTypes = array();
  28.     private $types;
  29.     private $ambiguousServiceTypes = array();
  30.     private $autowired = array();
  31.     private $lastFailure;
  32.     private $throwOnAutowiringException;
  33.     private $autowiringExceptions = array();
  34.     private $strictMode;
  35.     /**
  36.      * @param bool $throwOnAutowireException Errors can be retrieved via Definition::getErrors()
  37.      */
  38.     public function __construct($throwOnAutowireException true)
  39.     {
  40.         $this->throwOnAutowiringException $throwOnAutowireException;
  41.     }
  42.     /**
  43.      * @deprecated since version 3.4, to be removed in 4.0.
  44.      *
  45.      * @return AutowiringFailedException[]
  46.      */
  47.     public function getAutowiringExceptions()
  48.     {
  49.         @trigger_error('Calling AutowirePass::getAutowiringExceptions() is deprecated since Symfony 3.4 and will be removed in 4.0. Use Definition::getErrors() instead.'E_USER_DEPRECATED);
  50.         return $this->autowiringExceptions;
  51.     }
  52.     /**
  53.      * {@inheritdoc}
  54.      */
  55.     public function process(ContainerBuilder $container)
  56.     {
  57.         // clear out any possibly stored exceptions from before
  58.         $this->autowiringExceptions = array();
  59.         $this->strictMode $container->hasParameter('container.autowiring.strict_mode') && $container->getParameter('container.autowiring.strict_mode');
  60.         try {
  61.             parent::process($container);
  62.         } finally {
  63.             $this->definedTypes = array();
  64.             $this->types null;
  65.             $this->ambiguousServiceTypes = array();
  66.             $this->autowired = array();
  67.         }
  68.     }
  69.     /**
  70.      * Creates a resource to help know if this service has changed.
  71.      *
  72.      * @param \ReflectionClass $reflectionClass
  73.      *
  74.      * @return AutowireServiceResource
  75.      *
  76.      * @deprecated since version 3.3, to be removed in 4.0. Use ContainerBuilder::getReflectionClass() instead.
  77.      */
  78.     public static function createResourceForClass(\ReflectionClass $reflectionClass)
  79.     {
  80.         @trigger_error('The '.__METHOD__.'() method is deprecated since Symfony 3.3 and will be removed in 4.0. Use ContainerBuilder::getReflectionClass() instead.'E_USER_DEPRECATED);
  81.         $metadata = array();
  82.         foreach ($reflectionClass->getMethods(\ReflectionMethod::IS_PUBLIC) as $reflectionMethod) {
  83.             if (!$reflectionMethod->isStatic()) {
  84.                 $metadata[$reflectionMethod->name] = self::getResourceMetadataForMethod($reflectionMethod);
  85.             }
  86.         }
  87.         return new AutowireServiceResource($reflectionClass->name$reflectionClass->getFileName(), $metadata);
  88.     }
  89.     /**
  90.      * {@inheritdoc}
  91.      */
  92.     protected function processValue($value$isRoot false)
  93.     {
  94.         try {
  95.             return $this->doProcessValue($value$isRoot);
  96.         } catch (AutowiringFailedException $e) {
  97.             if ($this->throwOnAutowiringException) {
  98.                 throw $e;
  99.             }
  100.             $this->autowiringExceptions[] = $e;
  101.             $this->container->getDefinition($this->currentId)->addError($e->getMessage());
  102.             return parent::processValue($value$isRoot);
  103.         }
  104.     }
  105.     private function doProcessValue($value$isRoot false)
  106.     {
  107.         if ($value instanceof TypedReference) {
  108.             if ($ref $this->getAutowiredReference($value$value->getRequiringClass() ? sprintf('for "%s" in "%s"'$value->getType(), $value->getRequiringClass()) : '')) {
  109.                 return $ref;
  110.             }
  111.             $this->container->log($this$this->createTypeNotFoundMessage($value'it'));
  112.         }
  113.         $value parent::processValue($value$isRoot);
  114.         if (!$value instanceof Definition || !$value->isAutowired() || $value->isAbstract() || !$value->getClass()) {
  115.             return $value;
  116.         }
  117.         if (!$reflectionClass $this->container->getReflectionClass($value->getClass(), false)) {
  118.             $this->container->log($thissprintf('Skipping service "%s": Class or interface "%s" cannot be loaded.'$this->currentId$value->getClass()));
  119.             return $value;
  120.         }
  121.         $methodCalls $value->getMethodCalls();
  122.         try {
  123.             $constructor $this->getConstructor($valuefalse);
  124.         } catch (RuntimeException $e) {
  125.             throw new AutowiringFailedException($this->currentId$e->getMessage(), 0$e);
  126.         }
  127.         if ($constructor) {
  128.             array_unshift($methodCalls, array($constructor$value->getArguments()));
  129.         }
  130.         $methodCalls $this->autowireCalls($reflectionClass$methodCalls);
  131.         if ($constructor) {
  132.             list(, $arguments) = array_shift($methodCalls);
  133.             if ($arguments !== $value->getArguments()) {
  134.                 $value->setArguments($arguments);
  135.             }
  136.         }
  137.         if ($methodCalls !== $value->getMethodCalls()) {
  138.             $value->setMethodCalls($methodCalls);
  139.         }
  140.         return $value;
  141.     }
  142.     /**
  143.      * @param \ReflectionClass $reflectionClass
  144.      * @param array            $methodCalls
  145.      *
  146.      * @return array
  147.      */
  148.     private function autowireCalls(\ReflectionClass $reflectionClass, array $methodCalls)
  149.     {
  150.         foreach ($methodCalls as $i => $call) {
  151.             list($method$arguments) = $call;
  152.             if ($method instanceof \ReflectionFunctionAbstract) {
  153.                 $reflectionMethod $method;
  154.             } else {
  155.                 $reflectionMethod $this->getReflectionMethod(new Definition($reflectionClass->name), $method);
  156.             }
  157.             $arguments $this->autowireMethod($reflectionMethod$arguments);
  158.             if ($arguments !== $call[1]) {
  159.                 $methodCalls[$i][1] = $arguments;
  160.             }
  161.         }
  162.         return $methodCalls;
  163.     }
  164.     /**
  165.      * Autowires the constructor or a method.
  166.      *
  167.      * @param \ReflectionFunctionAbstract $reflectionMethod
  168.      * @param array                       $arguments
  169.      *
  170.      * @return array The autowired arguments
  171.      *
  172.      * @throws AutowiringFailedException
  173.      */
  174.     private function autowireMethod(\ReflectionFunctionAbstract $reflectionMethod, array $arguments)
  175.     {
  176.         $class $reflectionMethod instanceof \ReflectionMethod $reflectionMethod->class $this->currentId;
  177.         $method $reflectionMethod->name;
  178.         $parameters $reflectionMethod->getParameters();
  179.         if (method_exists('ReflectionMethod''isVariadic') && $reflectionMethod->isVariadic()) {
  180.             array_pop($parameters);
  181.         }
  182.         foreach ($parameters as $index => $parameter) {
  183.             if (array_key_exists($index$arguments) && '' !== $arguments[$index]) {
  184.                 continue;
  185.             }
  186.             $type ProxyHelper::getTypeHint($reflectionMethod$parametertrue);
  187.             if (!$type) {
  188.                 if (isset($arguments[$index])) {
  189.                     continue;
  190.                 }
  191.                 // no default value? Then fail
  192.                 if (!$parameter->isDefaultValueAvailable()) {
  193.                     // For core classes, isDefaultValueAvailable() can
  194.                     // be false when isOptional() returns true. If the
  195.                     // argument *is* optional, allow it to be missing
  196.                     if ($parameter->isOptional()) {
  197.                         continue;
  198.                     }
  199.                     throw new AutowiringFailedException($this->currentIdsprintf('Cannot autowire service "%s": argument "$%s" of method "%s()" must have a type-hint or be given a value explicitly.'$this->currentId$parameter->name$class !== $this->currentId $class.'::'.$method $method));
  200.                 }
  201.                 // specifically pass the default value
  202.                 $arguments[$index] = $parameter->getDefaultValue();
  203.                 continue;
  204.             }
  205.             if (!$value $this->getAutowiredReference($ref = new TypedReference($type$type, !$parameter->isOptional() ? $class ''), 'for '.sprintf('argument "$%s" of method "%s()"'$parameter->name$class.'::'.$method))) {
  206.                 $failureMessage $this->createTypeNotFoundMessage($refsprintf('argument "$%s" of method "%s()"'$parameter->name$class !== $this->currentId $class.'::'.$method $method));
  207.                 if ($parameter->isDefaultValueAvailable()) {
  208.                     $value $parameter->getDefaultValue();
  209.                 } elseif (!$parameter->allowsNull()) {
  210.                     throw new AutowiringFailedException($this->currentId$failureMessage);
  211.                 }
  212.                 $this->container->log($this$failureMessage);
  213.             }
  214.             $arguments[$index] = $value;
  215.         }
  216.         if ($parameters && !isset($arguments[++$index])) {
  217.             while (<= --$index) {
  218.                 $parameter $parameters[$index];
  219.                 if (!$parameter->isDefaultValueAvailable() || $parameter->getDefaultValue() !== $arguments[$index]) {
  220.                     break;
  221.                 }
  222.                 unset($arguments[$index]);
  223.             }
  224.         }
  225.         // it's possible index 1 was set, then index 0, then 2, etc
  226.         // make sure that we re-order so they're injected as expected
  227.         ksort($arguments);
  228.         return $arguments;
  229.     }
  230.     /**
  231.      * @return TypedReference|null A reference to the service matching the given type, if any
  232.      */
  233.     private function getAutowiredReference(TypedReference $reference$deprecationMessage)
  234.     {
  235.         $this->lastFailure null;
  236.         $type $reference->getType();
  237.         if ($type !== $this->container->normalizeId($reference) || ($this->container->has($type) && !$this->container->findDefinition($type)->isAbstract())) {
  238.             return $reference;
  239.         }
  240.         if (null === $this->types) {
  241.             $this->populateAvailableTypes();
  242.         }
  243.         if (isset($this->definedTypes[$type])) {
  244.             return new TypedReference($this->types[$type], $type);
  245.         }
  246.         if (!$this->strictMode && isset($this->types[$type])) {
  247.             $message 'Autowiring services based on the types they implement is deprecated since Symfony 3.3 and won\'t be supported in version 4.0.';
  248.             if ($aliasSuggestion $this->getAliasesSuggestionForType($type $reference->getType(), $deprecationMessage)) {
  249.                 $message .= ' '.$aliasSuggestion;
  250.             } else {
  251.                 $message .= sprintf(' You should %s the "%s" service to "%s" instead.', isset($this->types[$this->types[$type]]) ? 'alias' 'rename (or alias)'$this->types[$type], $type);
  252.             }
  253.             @trigger_error($messageE_USER_DEPRECATED);
  254.             return new TypedReference($this->types[$type], $type);
  255.         }
  256.         if (!$reference->canBeAutoregistered() || isset($this->types[$type]) || isset($this->ambiguousServiceTypes[$type])) {
  257.             return;
  258.         }
  259.         if (isset($this->autowired[$type])) {
  260.             return $this->autowired[$type] ? new TypedReference($this->autowired[$type], $type) : null;
  261.         }
  262.         if (!$this->strictMode) {
  263.             return $this->createAutowiredDefinition($type);
  264.         }
  265.     }
  266.     /**
  267.      * Populates the list of available types.
  268.      */
  269.     private function populateAvailableTypes()
  270.     {
  271.         $this->types = array();
  272.         foreach ($this->container->getDefinitions() as $id => $definition) {
  273.             $this->populateAvailableType($id$definition);
  274.         }
  275.     }
  276.     /**
  277.      * Populates the list of available types for a given definition.
  278.      *
  279.      * @param string     $id
  280.      * @param Definition $definition
  281.      */
  282.     private function populateAvailableType($idDefinition $definition)
  283.     {
  284.         // Never use abstract services
  285.         if ($definition->isAbstract()) {
  286.             return;
  287.         }
  288.         foreach ($definition->getAutowiringTypes(false) as $type) {
  289.             $this->definedTypes[$type] = true;
  290.             $this->types[$type] = $id;
  291.             unset($this->ambiguousServiceTypes[$type]);
  292.         }
  293.         if (preg_match('/^\d+_[^~]++~[._a-zA-Z\d]{7}$/'$id) || $definition->isDeprecated() || !$reflectionClass $this->container->getReflectionClass($definition->getClass(), false)) {
  294.             return;
  295.         }
  296.         foreach ($reflectionClass->getInterfaces() as $reflectionInterface) {
  297.             $this->set($reflectionInterface->name$id);
  298.         }
  299.         do {
  300.             $this->set($reflectionClass->name$id);
  301.         } while ($reflectionClass $reflectionClass->getParentClass());
  302.     }
  303.     /**
  304.      * Associates a type and a service id if applicable.
  305.      *
  306.      * @param string $type
  307.      * @param string $id
  308.      */
  309.     private function set($type$id)
  310.     {
  311.         if (isset($this->definedTypes[$type])) {
  312.             return;
  313.         }
  314.         // is this already a type/class that is known to match multiple services?
  315.         if (isset($this->ambiguousServiceTypes[$type])) {
  316.             $this->ambiguousServiceTypes[$type][] = $id;
  317.             return;
  318.         }
  319.         // check to make sure the type doesn't match multiple services
  320.         if (!isset($this->types[$type]) || $this->types[$type] === $id) {
  321.             $this->types[$type] = $id;
  322.             return;
  323.         }
  324.         // keep an array of all services matching this type
  325.         if (!isset($this->ambiguousServiceTypes[$type])) {
  326.             $this->ambiguousServiceTypes[$type] = array($this->types[$type]);
  327.             unset($this->types[$type]);
  328.         }
  329.         $this->ambiguousServiceTypes[$type][] = $id;
  330.     }
  331.     /**
  332.      * Registers a definition for the type if possible or throws an exception.
  333.      *
  334.      * @param string $type
  335.      *
  336.      * @return TypedReference|null A reference to the registered definition
  337.      */
  338.     private function createAutowiredDefinition($type)
  339.     {
  340.         if (!($typeHint $this->container->getReflectionClass($typefalse)) || !$typeHint->isInstantiable()) {
  341.             return;
  342.         }
  343.         $currentId $this->currentId;
  344.         $this->currentId $type;
  345.         $this->autowired[$type] = $argumentId sprintf('autowired.%s'$type);
  346.         $argumentDefinition = new Definition($type);
  347.         $argumentDefinition->setPublic(false);
  348.         $argumentDefinition->setAutowired(true);
  349.         try {
  350.             $originalThrowSetting $this->throwOnAutowiringException;
  351.             $this->throwOnAutowiringException true;
  352.             $this->processValue($argumentDefinitiontrue);
  353.             $this->container->setDefinition($argumentId$argumentDefinition);
  354.         } catch (AutowiringFailedException $e) {
  355.             $this->autowired[$type] = false;
  356.             $this->lastFailure $e->getMessage();
  357.             $this->container->log($this$this->lastFailure);
  358.             return;
  359.         } finally {
  360.             $this->throwOnAutowiringException $originalThrowSetting;
  361.             $this->currentId $currentId;
  362.         }
  363.         @trigger_error(sprintf('Relying on service auto-registration for type "%s" is deprecated since Symfony 3.4 and won\'t be supported in 4.0. Create a service named "%s" instead.'$type$type), E_USER_DEPRECATED);
  364.         $this->container->log($thissprintf('Type "%s" has been auto-registered for service "%s".'$type$this->currentId));
  365.         return new TypedReference($argumentId$type);
  366.     }
  367.     private function createTypeNotFoundMessage(TypedReference $reference$label)
  368.     {
  369.         if (!$r $this->container->getReflectionClass($type $reference->getType(), false)) {
  370.             // either $type does not exist or a parent class does not exist
  371.             try {
  372.                 $resource = new ClassExistenceResource($typefalse);
  373.                 // isFresh() will explode ONLY if a parent class/trait does not exist
  374.                 $resource->isFresh(0);
  375.                 $parentMsg false;
  376.             } catch (\ReflectionException $e) {
  377.                 $parentMsg $e->getMessage();
  378.             }
  379.             $message sprintf('has type "%s" but this class %s.'$type$parentMsg sprintf('is missing a parent class (%s)'$parentMsg) : 'was not found');
  380.         } else {
  381.             $message $this->container->has($type) ? 'this service is abstract' 'no such service exists';
  382.             $message sprintf('references %s "%s" but %s.%s'$r->isInterface() ? 'interface' 'class'$type$message$this->createTypeAlternatives($reference));
  383.             if ($r->isInterface()) {
  384.                 $message .= ' Did you create a class that implements this interface?';
  385.             }
  386.         }
  387.         $message sprintf('Cannot autowire service "%s": %s %s'$this->currentId$label$message);
  388.         if (null !== $this->lastFailure) {
  389.             $message $this->lastFailure."\n".$message;
  390.             $this->lastFailure null;
  391.         }
  392.         return $message;
  393.     }
  394.     private function createTypeAlternatives(TypedReference $reference)
  395.     {
  396.         // try suggesting available aliases first
  397.         if ($message $this->getAliasesSuggestionForType($type $reference->getType())) {
  398.             return ' '.$message;
  399.         }
  400.         if (isset($this->ambiguousServiceTypes[$type])) {
  401.             $message sprintf('one of these existing services: "%s"'implode('", "'$this->ambiguousServiceTypes[$type]));
  402.         } elseif (isset($this->types[$type])) {
  403.             $message sprintf('the existing "%s" service'$this->types[$type]);
  404.         } elseif ($reference->getRequiringClass() && !$reference->canBeAutoregistered()) {
  405.             return ' It cannot be auto-registered because it is from a different root namespace.';
  406.         } else {
  407.             return;
  408.         }
  409.         return sprintf(' You should maybe alias this %s to %s.'class_exists($typefalse) ? 'class' 'interface'$message);
  410.     }
  411.     /**
  412.      * @deprecated since version 3.3, to be removed in 4.0.
  413.      */
  414.     private static function getResourceMetadataForMethod(\ReflectionMethod $method)
  415.     {
  416.         $methodArgumentsMetadata = array();
  417.         foreach ($method->getParameters() as $parameter) {
  418.             try {
  419.                 $class $parameter->getClass();
  420.             } catch (\ReflectionException $e) {
  421.                 // type-hint is against a non-existent class
  422.                 $class false;
  423.             }
  424.             $isVariadic method_exists($parameter'isVariadic') && $parameter->isVariadic();
  425.             $methodArgumentsMetadata[] = array(
  426.                 'class' => $class,
  427.                 'isOptional' => $parameter->isOptional(),
  428.                 'defaultValue' => ($parameter->isOptional() && !$isVariadic) ? $parameter->getDefaultValue() : null,
  429.             );
  430.         }
  431.         return $methodArgumentsMetadata;
  432.     }
  433.     private function getAliasesSuggestionForType($type$extraContext null)
  434.     {
  435.         $aliases = array();
  436.         foreach (class_parents($type) + class_implements($type) as $parent) {
  437.             if ($this->container->has($parent) && !$this->container->findDefinition($parent)->isAbstract()) {
  438.                 $aliases[] = $parent;
  439.             }
  440.         }
  441.         $extraContext $extraContext ' '.$extraContext '';
  442.         if ($len count($aliases)) {
  443.             $message sprintf('Try changing the type-hint%s to one of its parents: '$extraContext);
  444.             for ($i 0, --$len$i $len; ++$i) {
  445.                 $message .= sprintf('%s "%s", 'class_exists($aliases[$i], false) ? 'class' 'interface'$aliases[$i]);
  446.             }
  447.             $message .= sprintf('or %s "%s".'class_exists($aliases[$i], false) ? 'class' 'interface'$aliases[$i]);
  448.             return $message;
  449.         }
  450.         if ($aliases) {
  451.             return sprintf('Try changing the type-hint%s to "%s" instead.'$extraContext$aliases[0]);
  452.         }
  453.     }
  454. }