vendor/symfony/dependency-injection/Loader/XmlFileLoader.php line 228

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\Loader;
  11. use Symfony\Component\Config\Util\XmlUtils;
  12. use Symfony\Component\DependencyInjection\Alias;
  13. use Symfony\Component\DependencyInjection\Argument\AbstractArgument;
  14. use Symfony\Component\DependencyInjection\Argument\BoundArgument;
  15. use Symfony\Component\DependencyInjection\Argument\IteratorArgument;
  16. use Symfony\Component\DependencyInjection\Argument\ServiceClosureArgument;
  17. use Symfony\Component\DependencyInjection\Argument\ServiceLocatorArgument;
  18. use Symfony\Component\DependencyInjection\Argument\TaggedIteratorArgument;
  19. use Symfony\Component\DependencyInjection\ChildDefinition;
  20. use Symfony\Component\DependencyInjection\ContainerBuilder;
  21. use Symfony\Component\DependencyInjection\ContainerInterface;
  22. use Symfony\Component\DependencyInjection\Definition;
  23. use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
  24. use Symfony\Component\DependencyInjection\Exception\RuntimeException;
  25. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  26. use Symfony\Component\DependencyInjection\Reference;
  27. use Symfony\Component\ExpressionLanguage\Expression;
  28. /**
  29.  * XmlFileLoader loads XML files service definitions.
  30.  *
  31.  * @author Fabien Potencier <fabien@symfony.com>
  32.  */
  33. class XmlFileLoader extends FileLoader
  34. {
  35.     public const NS 'http://symfony.com/schema/dic/services';
  36.     protected $autoRegisterAliasesForSinglyImplementedInterfaces false;
  37.     /**
  38.      * {@inheritdoc}
  39.      */
  40.     public function load($resourcestring $type null)
  41.     {
  42.         $path $this->locator->locate($resource);
  43.         $xml $this->parseFileToDOM($path);
  44.         $this->container->fileExists($path);
  45.         $this->loadXml($xml$path);
  46.         if ($this->env) {
  47.             $xpath = new \DOMXPath($xml);
  48.             $xpath->registerNamespace('container'self::NS);
  49.             foreach ($xpath->query(sprintf('//container:when[@env="%s"]'$this->env)) ?: [] as $root) {
  50.                 $env $this->env;
  51.                 $this->env null;
  52.                 try {
  53.                     $this->loadXml($xml$path$root);
  54.                 } finally {
  55.                     $this->env $env;
  56.                 }
  57.             }
  58.         }
  59.     }
  60.     private function loadXml(\DOMDocument $xmlstring $path, \DOMNode $root null): void
  61.     {
  62.         $defaults $this->getServiceDefaults($xml$path$root);
  63.         // anonymous services
  64.         $this->processAnonymousServices($xml$path$root);
  65.         // imports
  66.         $this->parseImports($xml$path$root);
  67.         // parameters
  68.         $this->parseParameters($xml$path$root);
  69.         // extensions
  70.         $this->loadFromExtensions($xml$root);
  71.         // services
  72.         try {
  73.             $this->parseDefinitions($xml$path$defaults$root);
  74.         } finally {
  75.             $this->instanceof = [];
  76.             $this->registerAliasesForSinglyImplementedInterfaces();
  77.         }
  78.     }
  79.     /**
  80.      * {@inheritdoc}
  81.      */
  82.     public function supports($resourcestring $type null)
  83.     {
  84.         if (!\is_string($resource)) {
  85.             return false;
  86.         }
  87.         if (null === $type && 'xml' === pathinfo($resource, \PATHINFO_EXTENSION)) {
  88.             return true;
  89.         }
  90.         return 'xml' === $type;
  91.     }
  92.     private function parseParameters(\DOMDocument $xmlstring $file, \DOMNode $root null)
  93.     {
  94.         if ($parameters $this->getChildren($root ?? $xml->documentElement'parameters')) {
  95.             $this->container->getParameterBag()->add($this->getArgumentsAsPhp($parameters[0], 'parameter'$file));
  96.         }
  97.     }
  98.     private function parseImports(\DOMDocument $xmlstring $file, \DOMNode $root null)
  99.     {
  100.         $xpath = new \DOMXPath($xml);
  101.         $xpath->registerNamespace('container'self::NS);
  102.         if (false === $imports $xpath->query('.//container:imports/container:import'$root)) {
  103.             return;
  104.         }
  105.         $defaultDirectory = \dirname($file);
  106.         foreach ($imports as $import) {
  107.             $this->setCurrentDir($defaultDirectory);
  108.             $this->import($import->getAttribute('resource'), XmlUtils::phpize($import->getAttribute('type')) ?: nullXmlUtils::phpize($import->getAttribute('ignore-errors')) ?: false$file);
  109.         }
  110.     }
  111.     private function parseDefinitions(\DOMDocument $xmlstring $fileDefinition $defaults, \DOMNode $root null)
  112.     {
  113.         $xpath = new \DOMXPath($xml);
  114.         $xpath->registerNamespace('container'self::NS);
  115.         if (false === $services $xpath->query('.//container:services/container:service|.//container:services/container:prototype|.//container:services/container:stack'$root)) {
  116.             return;
  117.         }
  118.         $this->setCurrentDir(\dirname($file));
  119.         $this->instanceof = [];
  120.         $this->isLoadingInstanceof true;
  121.         $instanceof $xpath->query('.//container:services/container:instanceof'$root);
  122.         foreach ($instanceof as $service) {
  123.             $this->setDefinition((string) $service->getAttribute('id'), $this->parseDefinition($service$file, new Definition()));
  124.         }
  125.         $this->isLoadingInstanceof false;
  126.         foreach ($services as $service) {
  127.             if ('stack' === $service->tagName) {
  128.                 $service->setAttribute('parent''-');
  129.                 $definition $this->parseDefinition($service$file$defaults)
  130.                     ->setTags(array_merge_recursive(['container.stack' => [[]]], $defaults->getTags()))
  131.                 ;
  132.                 $this->setDefinition($id = (string) $service->getAttribute('id'), $definition);
  133.                 $stack = [];
  134.                 foreach ($this->getChildren($service'service') as $k => $frame) {
  135.                     $k $frame->getAttribute('id') ?: $k;
  136.                     $frame->setAttribute('id'$id.'" at index "'.$k);
  137.                     if ($alias $frame->getAttribute('alias')) {
  138.                         $this->validateAlias($frame$file);
  139.                         $stack[$k] = new Reference($alias);
  140.                     } else {
  141.                         $stack[$k] = $this->parseDefinition($frame$file$defaults)
  142.                             ->setInstanceofConditionals($this->instanceof);
  143.                     }
  144.                 }
  145.                 $definition->setArguments($stack);
  146.             } elseif (null !== $definition $this->parseDefinition($service$file$defaults)) {
  147.                 if ('prototype' === $service->tagName) {
  148.                     $excludes array_column($this->getChildren($service'exclude'), 'nodeValue');
  149.                     if ($service->hasAttribute('exclude')) {
  150.                         if (\count($excludes) > 0) {
  151.                             throw new InvalidArgumentException('You cannot use both the attribute "exclude" and <exclude> tags at the same time.');
  152.                         }
  153.                         $excludes = [$service->getAttribute('exclude')];
  154.                     }
  155.                     $this->registerClasses($definition, (string) $service->getAttribute('namespace'), (string) $service->getAttribute('resource'), $excludes);
  156.                 } else {
  157.                     $this->setDefinition((string) $service->getAttribute('id'), $definition);
  158.                 }
  159.             }
  160.         }
  161.     }
  162.     private function getServiceDefaults(\DOMDocument $xmlstring $file, \DOMNode $root null): Definition
  163.     {
  164.         $xpath = new \DOMXPath($xml);
  165.         $xpath->registerNamespace('container'self::NS);
  166.         if (null === $defaultsNode $xpath->query('.//container:services/container:defaults'$root)->item(0)) {
  167.             return new Definition();
  168.         }
  169.         $defaultsNode->setAttribute('id''<defaults>');
  170.         return $this->parseDefinition($defaultsNode$file, new Definition());
  171.     }
  172.     /**
  173.      * Parses an individual Definition.
  174.      */
  175.     private function parseDefinition(\DOMElement $servicestring $fileDefinition $defaults): ?Definition
  176.     {
  177.         if ($alias $service->getAttribute('alias')) {
  178.             $this->validateAlias($service$file);
  179.             $this->container->setAlias((string) $service->getAttribute('id'), $alias = new Alias($alias));
  180.             if ($publicAttr $service->getAttribute('public')) {
  181.                 $alias->setPublic(XmlUtils::phpize($publicAttr));
  182.             } elseif ($defaults->getChanges()['public'] ?? false) {
  183.                 $alias->setPublic($defaults->isPublic());
  184.             }
  185.             if ($deprecated $this->getChildren($service'deprecated')) {
  186.                 $message $deprecated[0]->nodeValue ?: '';
  187.                 $package $deprecated[0]->getAttribute('package') ?: '';
  188.                 $version $deprecated[0]->getAttribute('version') ?: '';
  189.                 if (!$deprecated[0]->hasAttribute('package')) {
  190.                     trigger_deprecation('symfony/dependency-injection''5.1''Not setting the attribute "package" of the node "deprecated" in "%s" is deprecated.'$file);
  191.                 }
  192.                 if (!$deprecated[0]->hasAttribute('version')) {
  193.                     trigger_deprecation('symfony/dependency-injection''5.1''Not setting the attribute "version" of the node "deprecated" in "%s" is deprecated.'$file);
  194.                 }
  195.                 $alias->setDeprecated($package$version$message);
  196.             }
  197.             return null;
  198.         }
  199.         if ($this->isLoadingInstanceof) {
  200.             $definition = new ChildDefinition('');
  201.         } elseif ($parent $service->getAttribute('parent')) {
  202.             $definition = new ChildDefinition($parent);
  203.         } else {
  204.             $definition = new Definition();
  205.         }
  206.         if ($defaults->getChanges()['public'] ?? false) {
  207.             $definition->setPublic($defaults->isPublic());
  208.         }
  209.         $definition->setAutowired($defaults->isAutowired());
  210.         $definition->setAutoconfigured($defaults->isAutoconfigured());
  211.         $definition->setChanges([]);
  212.         foreach (['class''public''shared''synthetic''abstract'] as $key) {
  213.             if ($value $service->getAttribute($key)) {
  214.                 $method 'set'.$key;
  215.                 $definition->$method($value XmlUtils::phpize($value));
  216.             }
  217.         }
  218.         if ($value $service->getAttribute('lazy')) {
  219.             $definition->setLazy((bool) $value XmlUtils::phpize($value));
  220.             if (\is_string($value)) {
  221.                 $definition->addTag('proxy', ['interface' => $value]);
  222.             }
  223.         }
  224.         if ($value $service->getAttribute('autowire')) {
  225.             $definition->setAutowired(XmlUtils::phpize($value));
  226.         }
  227.         if ($value $service->getAttribute('autoconfigure')) {
  228.             $definition->setAutoconfigured(XmlUtils::phpize($value));
  229.         }
  230.         if ($files $this->getChildren($service'file')) {
  231.             $definition->setFile($files[0]->nodeValue);
  232.         }
  233.         if ($deprecated $this->getChildren($service'deprecated')) {
  234.             $message $deprecated[0]->nodeValue ?: '';
  235.             $package $deprecated[0]->getAttribute('package') ?: '';
  236.             $version $deprecated[0]->getAttribute('version') ?: '';
  237.             if ('' === $package) {
  238.                 trigger_deprecation('symfony/dependency-injection''5.1''Not setting the attribute "package" of the node "deprecated" in "%s" is deprecated.'$file);
  239.             }
  240.             if ('' === $version) {
  241.                 trigger_deprecation('symfony/dependency-injection''5.1''Not setting the attribute "version" of the node "deprecated" in "%s" is deprecated.'$file);
  242.             }
  243.             $definition->setDeprecated($package$version$message);
  244.         }
  245.         $definition->setArguments($this->getArgumentsAsPhp($service'argument'$file$definition instanceof ChildDefinition));
  246.         $definition->setProperties($this->getArgumentsAsPhp($service'property'$file));
  247.         if ($factories $this->getChildren($service'factory')) {
  248.             $factory $factories[0];
  249.             if ($function $factory->getAttribute('function')) {
  250.                 $definition->setFactory($function);
  251.             } else {
  252.                 if ($childService $factory->getAttribute('service')) {
  253.                     $class = new Reference($childServiceContainerInterface::EXCEPTION_ON_INVALID_REFERENCE);
  254.                 } else {
  255.                     $class $factory->hasAttribute('class') ? $factory->getAttribute('class') : null;
  256.                 }
  257.                 $definition->setFactory([$class$factory->getAttribute('method') ?: '__invoke']);
  258.             }
  259.         }
  260.         if ($configurators $this->getChildren($service'configurator')) {
  261.             $configurator $configurators[0];
  262.             if ($function $configurator->getAttribute('function')) {
  263.                 $definition->setConfigurator($function);
  264.             } else {
  265.                 if ($childService $configurator->getAttribute('service')) {
  266.                     $class = new Reference($childServiceContainerInterface::EXCEPTION_ON_INVALID_REFERENCE);
  267.                 } else {
  268.                     $class $configurator->getAttribute('class');
  269.                 }
  270.                 $definition->setConfigurator([$class$configurator->getAttribute('method') ?: '__invoke']);
  271.             }
  272.         }
  273.         foreach ($this->getChildren($service'call') as $call) {
  274.             $definition->addMethodCall($call->getAttribute('method'), $this->getArgumentsAsPhp($call'argument'$file), XmlUtils::phpize($call->getAttribute('returns-clone')));
  275.         }
  276.         $tags $this->getChildren($service'tag');
  277.         foreach ($tags as $tag) {
  278.             $parameters = [];
  279.             $tagName $tag->nodeValue;
  280.             foreach ($tag->attributes as $name => $node) {
  281.                 if ('name' === $name && '' === $tagName) {
  282.                     continue;
  283.                 }
  284.                 if (str_contains($name'-') && !str_contains($name'_') && !\array_key_exists($normalizedName str_replace('-''_'$name), $parameters)) {
  285.                     $parameters[$normalizedName] = XmlUtils::phpize($node->nodeValue);
  286.                 }
  287.                 // keep not normalized key
  288.                 $parameters[$name] = XmlUtils::phpize($node->nodeValue);
  289.             }
  290.             if ('' === $tagName && '' === $tagName $tag->getAttribute('name')) {
  291.                 throw new InvalidArgumentException(sprintf('The tag name for service "%s" in "%s" must be a non-empty string.', (string) $service->getAttribute('id'), $file));
  292.             }
  293.             $definition->addTag($tagName$parameters);
  294.         }
  295.         $definition->setTags(array_merge_recursive($definition->getTags(), $defaults->getTags()));
  296.         $bindings $this->getArgumentsAsPhp($service'bind'$file);
  297.         $bindingType $this->isLoadingInstanceof BoundArgument::INSTANCEOF_BINDING BoundArgument::SERVICE_BINDING;
  298.         foreach ($bindings as $argument => $value) {
  299.             $bindings[$argument] = new BoundArgument($valuetrue$bindingType$file);
  300.         }
  301.         // deep clone, to avoid multiple process of the same instance in the passes
  302.         $bindings array_merge(unserialize(serialize($defaults->getBindings())), $bindings);
  303.         if ($bindings) {
  304.             $definition->setBindings($bindings);
  305.         }
  306.         if ($decorates $service->getAttribute('decorates')) {
  307.             $decorationOnInvalid $service->getAttribute('decoration-on-invalid') ?: 'exception';
  308.             if ('exception' === $decorationOnInvalid) {
  309.                 $invalidBehavior ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE;
  310.             } elseif ('ignore' === $decorationOnInvalid) {
  311.                 $invalidBehavior ContainerInterface::IGNORE_ON_INVALID_REFERENCE;
  312.             } elseif ('null' === $decorationOnInvalid) {
  313.                 $invalidBehavior ContainerInterface::NULL_ON_INVALID_REFERENCE;
  314.             } else {
  315.                 throw new InvalidArgumentException(sprintf('Invalid value "%s" for attribute "decoration-on-invalid" on service "%s". Did you mean "exception", "ignore" or "null" in "%s"?'$decorationOnInvalid, (string) $service->getAttribute('id'), $file));
  316.             }
  317.             $renameId $service->hasAttribute('decoration-inner-name') ? $service->getAttribute('decoration-inner-name') : null;
  318.             $priority $service->hasAttribute('decoration-priority') ? $service->getAttribute('decoration-priority') : 0;
  319.             $definition->setDecoratedService($decorates$renameId$priority$invalidBehavior);
  320.         }
  321.         return $definition;
  322.     }
  323.     /**
  324.      * Parses an XML file to a \DOMDocument.
  325.      *
  326.      * @throws InvalidArgumentException When loading of XML file returns error
  327.      */
  328.     private function parseFileToDOM(string $file): \DOMDocument
  329.     {
  330.         try {
  331.             $dom XmlUtils::loadFile($file, [$this'validateSchema']);
  332.         } catch (\InvalidArgumentException $e) {
  333.             throw new InvalidArgumentException(sprintf('Unable to parse file "%s": '$file).$e->getMessage(), $e->getCode(), $e);
  334.         }
  335.         $this->validateExtensions($dom$file);
  336.         return $dom;
  337.     }
  338.     /**
  339.      * Processes anonymous services.
  340.      */
  341.     private function processAnonymousServices(\DOMDocument $xmlstring $file, \DOMNode $root null)
  342.     {
  343.         $definitions = [];
  344.         $count 0;
  345.         $suffix '~'.ContainerBuilder::hash($file);
  346.         $xpath = new \DOMXPath($xml);
  347.         $xpath->registerNamespace('container'self::NS);
  348.         // anonymous services as arguments/properties
  349.         if (false !== $nodes $xpath->query('.//container:argument[@type="service"][not(@id)]|.//container:property[@type="service"][not(@id)]|.//container:bind[not(@id)]|.//container:factory[not(@service)]|.//container:configurator[not(@service)]'$root)) {
  350.             foreach ($nodes as $node) {
  351.                 if ($services $this->getChildren($node'service')) {
  352.                     // give it a unique name
  353.                     $id sprintf('.%d_%s', ++$countpreg_replace('/^.*\\\\/'''$services[0]->getAttribute('class')).$suffix);
  354.                     $node->setAttribute('id'$id);
  355.                     $node->setAttribute('service'$id);
  356.                     $definitions[$id] = [$services[0], $file];
  357.                     $services[0]->setAttribute('id'$id);
  358.                     // anonymous services are always private
  359.                     // we could not use the constant false here, because of XML parsing
  360.                     $services[0]->setAttribute('public''false');
  361.                 }
  362.             }
  363.         }
  364.         // anonymous services "in the wild"
  365.         if (false !== $nodes $xpath->query('.//container:services/container:service[not(@id)]'$root)) {
  366.             foreach ($nodes as $node) {
  367.                 throw new InvalidArgumentException(sprintf('Top-level services must have "id" attribute, none found in "%s" at line %d.'$file$node->getLineNo()));
  368.             }
  369.         }
  370.         // resolve definitions
  371.         uksort($definitions'strnatcmp');
  372.         foreach (array_reverse($definitions) as $id => [$domElement$file]) {
  373.             if (null !== $definition $this->parseDefinition($domElement$file, new Definition())) {
  374.                 $this->setDefinition($id$definition);
  375.             }
  376.         }
  377.     }
  378.     private function getArgumentsAsPhp(\DOMElement $nodestring $namestring $filebool $isChildDefinition false): array
  379.     {
  380.         $arguments = [];
  381.         foreach ($this->getChildren($node$name) as $arg) {
  382.             if ($arg->hasAttribute('name')) {
  383.                 $arg->setAttribute('key'$arg->getAttribute('name'));
  384.             }
  385.             // this is used by ChildDefinition to overwrite a specific
  386.             // argument of the parent definition
  387.             if ($arg->hasAttribute('index')) {
  388.                 $key = ($isChildDefinition 'index_' '').$arg->getAttribute('index');
  389.             } elseif (!$arg->hasAttribute('key')) {
  390.                 // Append an empty argument, then fetch its key to overwrite it later
  391.                 $arguments[] = null;
  392.                 $keys array_keys($arguments);
  393.                 $key array_pop($keys);
  394.             } else {
  395.                 $key $arg->getAttribute('key');
  396.             }
  397.             $onInvalid $arg->getAttribute('on-invalid');
  398.             $invalidBehavior ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE;
  399.             if ('ignore' == $onInvalid) {
  400.                 $invalidBehavior ContainerInterface::IGNORE_ON_INVALID_REFERENCE;
  401.             } elseif ('ignore_uninitialized' == $onInvalid) {
  402.                 $invalidBehavior ContainerInterface::IGNORE_ON_UNINITIALIZED_REFERENCE;
  403.             } elseif ('null' == $onInvalid) {
  404.                 $invalidBehavior ContainerInterface::NULL_ON_INVALID_REFERENCE;
  405.             }
  406.             switch ($arg->getAttribute('type')) {
  407.                 case 'service':
  408.                     if ('' === $arg->getAttribute('id')) {
  409.                         throw new InvalidArgumentException(sprintf('Tag "<%s>" with type="service" has no or empty "id" attribute in "%s".'$name$file));
  410.                     }
  411.                     $arguments[$key] = new Reference($arg->getAttribute('id'), $invalidBehavior);
  412.                     break;
  413.                 case 'expression':
  414.                     if (!class_exists(Expression::class)) {
  415.                         throw new \LogicException('The type="expression" attribute cannot be used without the ExpressionLanguage component. Try running "composer require symfony/expression-language".');
  416.                     }
  417.                     $arguments[$key] = new Expression($arg->nodeValue);
  418.                     break;
  419.                 case 'collection':
  420.                     $arguments[$key] = $this->getArgumentsAsPhp($arg$name$file);
  421.                     break;
  422.                 case 'iterator':
  423.                     $arg $this->getArgumentsAsPhp($arg$name$file);
  424.                     try {
  425.                         $arguments[$key] = new IteratorArgument($arg);
  426.                     } catch (InvalidArgumentException $e) {
  427.                         throw new InvalidArgumentException(sprintf('Tag "<%s>" with type="iterator" only accepts collections of type="service" references in "%s".'$name$file));
  428.                     }
  429.                     break;
  430.                 case 'service_closure':
  431.                     if ('' === $arg->getAttribute('id')) {
  432.                         throw new InvalidArgumentException(sprintf('Tag "<%s>" with type="service_closure" has no or empty "id" attribute in "%s".'$name$file));
  433.                     }
  434.                     $arguments[$key] = new ServiceClosureArgument(new Reference($arg->getAttribute('id'), $invalidBehavior));
  435.                     break;
  436.                 case 'service_locator':
  437.                     $arg $this->getArgumentsAsPhp($arg$name$file);
  438.                     try {
  439.                         $arguments[$key] = new ServiceLocatorArgument($arg);
  440.                     } catch (InvalidArgumentException $e) {
  441.                         throw new InvalidArgumentException(sprintf('Tag "<%s>" with type="service_locator" only accepts maps of type="service" references in "%s".'$name$file));
  442.                     }
  443.                     break;
  444.                 case 'tagged':
  445.                 case 'tagged_iterator':
  446.                 case 'tagged_locator':
  447.                     $type $arg->getAttribute('type');
  448.                     $forLocator 'tagged_locator' === $type;
  449.                     if (!$arg->getAttribute('tag')) {
  450.                         throw new InvalidArgumentException(sprintf('Tag "<%s>" with type="%s" has no or empty "tag" attribute in "%s".'$name$type$file));
  451.                     }
  452.                     $arguments[$key] = new TaggedIteratorArgument($arg->getAttribute('tag'), $arg->getAttribute('index-by') ?: null$arg->getAttribute('default-index-method') ?: null$forLocator$arg->getAttribute('default-priority-method') ?: null);
  453.                     if ($forLocator) {
  454.                         $arguments[$key] = new ServiceLocatorArgument($arguments[$key]);
  455.                     }
  456.                     break;
  457.                 case 'binary':
  458.                     if (false === $value base64_decode($arg->nodeValue)) {
  459.                         throw new InvalidArgumentException(sprintf('Tag "<%s>" with type="binary" is not a valid base64 encoded string.'$name));
  460.                     }
  461.                     $arguments[$key] = $value;
  462.                     break;
  463.                 case 'abstract':
  464.                     $arguments[$key] = new AbstractArgument($arg->nodeValue);
  465.                     break;
  466.                 case 'string':
  467.                     $arguments[$key] = $arg->nodeValue;
  468.                     break;
  469.                 case 'constant':
  470.                     $arguments[$key] = \constant(trim($arg->nodeValue));
  471.                     break;
  472.                 default:
  473.                     $arguments[$key] = XmlUtils::phpize($arg->nodeValue);
  474.             }
  475.         }
  476.         return $arguments;
  477.     }
  478.     /**
  479.      * Get child elements by name.
  480.      *
  481.      * @return \DOMElement[]
  482.      */
  483.     private function getChildren(\DOMNode $nodestring $name): array
  484.     {
  485.         $children = [];
  486.         foreach ($node->childNodes as $child) {
  487.             if ($child instanceof \DOMElement && $child->localName === $name && self::NS === $child->namespaceURI) {
  488.                 $children[] = $child;
  489.             }
  490.         }
  491.         return $children;
  492.     }
  493.     /**
  494.      * Validates a documents XML schema.
  495.      *
  496.      * @return bool
  497.      *
  498.      * @throws RuntimeException When extension references a non-existent XSD file
  499.      */
  500.     public function validateSchema(\DOMDocument $dom)
  501.     {
  502.         $schemaLocations = ['http://symfony.com/schema/dic/services' => str_replace('\\''/'__DIR__.'/schema/dic/services/services-1.0.xsd')];
  503.         if ($element $dom->documentElement->getAttributeNS('http://www.w3.org/2001/XMLSchema-instance''schemaLocation')) {
  504.             $items preg_split('/\s+/'$element);
  505.             for ($i 0$nb = \count($items); $i $nb$i += 2) {
  506.                 if (!$this->container->hasExtension($items[$i])) {
  507.                     continue;
  508.                 }
  509.                 if (($extension $this->container->getExtension($items[$i])) && false !== $extension->getXsdValidationBasePath()) {
  510.                     $ns $extension->getNamespace();
  511.                     $path str_replace([$nsstr_replace('http://''https://'$ns)], str_replace('\\''/'$extension->getXsdValidationBasePath()).'/'$items[$i 1]);
  512.                     if (!is_file($path)) {
  513.                         throw new RuntimeException(sprintf('Extension "%s" references a non-existent XSD file "%s".'get_debug_type($extension), $path));
  514.                     }
  515.                     $schemaLocations[$items[$i]] = $path;
  516.                 }
  517.             }
  518.         }
  519.         $tmpfiles = [];
  520.         $imports '';
  521.         foreach ($schemaLocations as $namespace => $location) {
  522.             $parts explode('/'$location);
  523.             $locationstart 'file:///';
  524.             if (=== stripos($location'phar://')) {
  525.                 $tmpfile tempnam(sys_get_temp_dir(), 'symfony');
  526.                 if ($tmpfile) {
  527.                     copy($location$tmpfile);
  528.                     $tmpfiles[] = $tmpfile;
  529.                     $parts explode('/'str_replace('\\''/'$tmpfile));
  530.                 } else {
  531.                     array_shift($parts);
  532.                     $locationstart 'phar:///';
  533.                 }
  534.             } elseif ('\\' === \DIRECTORY_SEPARATOR && str_starts_with($location'\\\\')) {
  535.                 $locationstart '';
  536.             }
  537.             $drive '\\' === \DIRECTORY_SEPARATOR array_shift($parts).'/' '';
  538.             $location $locationstart.$drive.implode('/'array_map('rawurlencode'$parts));
  539.             $imports .= sprintf('  <xsd:import namespace="%s" schemaLocation="%s" />'."\n"$namespace$location);
  540.         }
  541.         $source = <<<EOF
  542. <?xml version="1.0" encoding="utf-8" ?>
  543. <xsd:schema xmlns="http://symfony.com/schema"
  544.     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  545.     targetNamespace="http://symfony.com/schema"
  546.     elementFormDefault="qualified">
  547.     <xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
  548. $imports
  549. </xsd:schema>
  550. EOF
  551.         ;
  552.         if ($this->shouldEnableEntityLoader()) {
  553.             $disableEntities libxml_disable_entity_loader(false);
  554.             $valid = @$dom->schemaValidateSource($source);
  555.             libxml_disable_entity_loader($disableEntities);
  556.         } else {
  557.             $valid = @$dom->schemaValidateSource($source);
  558.         }
  559.         foreach ($tmpfiles as $tmpfile) {
  560.             @unlink($tmpfile);
  561.         }
  562.         return $valid;
  563.     }
  564.     private function shouldEnableEntityLoader(): bool
  565.     {
  566.         // Version prior to 8.0 can be enabled without deprecation
  567.         if (\PHP_VERSION_ID 80000) {
  568.             return true;
  569.         }
  570.         static $dom$schema;
  571.         if (null === $dom) {
  572.             $dom = new \DOMDocument();
  573.             $dom->loadXML('<?xml version="1.0"?><test/>');
  574.             $tmpfile tempnam(sys_get_temp_dir(), 'symfony');
  575.             register_shutdown_function(static function () use ($tmpfile) {
  576.                 @unlink($tmpfile);
  577.             });
  578.             $schema '<?xml version="1.0" encoding="utf-8"?>
  579. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  580.   <xsd:include schemaLocation="file:///'.str_replace('\\''/'$tmpfile).'" />
  581. </xsd:schema>';
  582.             file_put_contents($tmpfile'<?xml version="1.0" encoding="utf-8"?>
  583. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  584.   <xsd:element name="test" type="testType" />
  585.   <xsd:complexType name="testType"/>
  586. </xsd:schema>');
  587.         }
  588.         return !@$dom->schemaValidateSource($schema);
  589.     }
  590.     private function validateAlias(\DOMElement $aliasstring $file)
  591.     {
  592.         foreach ($alias->attributes as $name => $node) {
  593.             if (!\in_array($name, ['alias''id''public'])) {
  594.                 throw new InvalidArgumentException(sprintf('Invalid attribute "%s" defined for alias "%s" in "%s".'$name$alias->getAttribute('id'), $file));
  595.             }
  596.         }
  597.         foreach ($alias->childNodes as $child) {
  598.             if (!$child instanceof \DOMElement || self::NS !== $child->namespaceURI) {
  599.                 continue;
  600.             }
  601.             if (!\in_array($child->localName, ['deprecated'], true)) {
  602.                 throw new InvalidArgumentException(sprintf('Invalid child element "%s" defined for alias "%s" in "%s".'$child->localName$alias->getAttribute('id'), $file));
  603.             }
  604.         }
  605.     }
  606.     /**
  607.      * Validates an extension.
  608.      *
  609.      * @throws InvalidArgumentException When no extension is found corresponding to a tag
  610.      */
  611.     private function validateExtensions(\DOMDocument $domstring $file)
  612.     {
  613.         foreach ($dom->documentElement->childNodes as $node) {
  614.             if (!$node instanceof \DOMElement || 'http://symfony.com/schema/dic/services' === $node->namespaceURI) {
  615.                 continue;
  616.             }
  617.             // can it be handled by an extension?
  618.             if (!$this->container->hasExtension($node->namespaceURI)) {
  619.                 $extensionNamespaces array_filter(array_map(function (ExtensionInterface $ext) { return $ext->getNamespace(); }, $this->container->getExtensions()));
  620.                 throw new InvalidArgumentException(sprintf('There is no extension able to load the configuration for "%s" (in "%s"). Looked for namespace "%s", found "%s".'$node->tagName$file$node->namespaceURI$extensionNamespaces implode('", "'$extensionNamespaces) : 'none'));
  621.             }
  622.         }
  623.     }
  624.     /**
  625.      * Loads from an extension.
  626.      */
  627.     private function loadFromExtensions(\DOMDocument $xml)
  628.     {
  629.         foreach ($xml->documentElement->childNodes as $node) {
  630.             if (!$node instanceof \DOMElement || self::NS === $node->namespaceURI) {
  631.                 continue;
  632.             }
  633.             $values = static::convertDomElementToArray($node);
  634.             if (!\is_array($values)) {
  635.                 $values = [];
  636.             }
  637.             $this->container->loadFromExtension($node->namespaceURI$values);
  638.         }
  639.     }
  640.     /**
  641.      * Converts a \DOMElement object to a PHP array.
  642.      *
  643.      * The following rules applies during the conversion:
  644.      *
  645.      *  * Each tag is converted to a key value or an array
  646.      *    if there is more than one "value"
  647.      *
  648.      *  * The content of a tag is set under a "value" key (<foo>bar</foo>)
  649.      *    if the tag also has some nested tags
  650.      *
  651.      *  * The attributes are converted to keys (<foo foo="bar"/>)
  652.      *
  653.      *  * The nested-tags are converted to keys (<foo><foo>bar</foo></foo>)
  654.      *
  655.      * @param \DOMElement $element A \DOMElement instance
  656.      *
  657.      * @return mixed
  658.      */
  659.     public static function convertDomElementToArray(\DOMElement $element)
  660.     {
  661.         return XmlUtils::convertDomElementToArray($element);
  662.     }
  663. }