| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\DependencyInjection\Loader;
- use Symfony\Component\DependencyInjection\Alias;
- use Symfony\Component\DependencyInjection\Argument\ArgumentInterface;
- use Symfony\Component\DependencyInjection\Argument\IteratorArgument;
- use Symfony\Component\DependencyInjection\ChildDefinition;
- use Symfony\Component\DependencyInjection\ContainerInterface;
- use Symfony\Component\DependencyInjection\Definition;
- use Symfony\Component\DependencyInjection\Reference;
- use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
- use Symfony\Component\DependencyInjection\Exception\RuntimeException;
- use Symfony\Component\Yaml\Exception\ParseException;
- use Symfony\Component\Yaml\Parser as YamlParser;
- use Symfony\Component\Yaml\Tag\TaggedValue;
- use Symfony\Component\Yaml\Yaml;
- use Symfony\Component\ExpressionLanguage\Expression;
- /**
- * YamlFileLoader loads YAML files service definitions.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- */
- class YamlFileLoader extends FileLoader
- {
- private static $serviceKeywords = array(
- 'alias' => 'alias',
- 'parent' => 'parent',
- 'class' => 'class',
- 'shared' => 'shared',
- 'synthetic' => 'synthetic',
- 'lazy' => 'lazy',
- 'public' => 'public',
- 'abstract' => 'abstract',
- 'deprecated' => 'deprecated',
- 'factory' => 'factory',
- 'file' => 'file',
- 'arguments' => 'arguments',
- 'properties' => 'properties',
- 'configurator' => 'configurator',
- 'calls' => 'calls',
- 'tags' => 'tags',
- 'decorates' => 'decorates',
- 'decoration_inner_name' => 'decoration_inner_name',
- 'decoration_priority' => 'decoration_priority',
- 'autowire' => 'autowire',
- 'autowiring_types' => 'autowiring_types',
- 'autoconfigure' => 'autoconfigure',
- );
- private static $prototypeKeywords = array(
- 'resource' => 'resource',
- 'exclude' => 'exclude',
- 'parent' => 'parent',
- 'shared' => 'shared',
- 'lazy' => 'lazy',
- 'public' => 'public',
- 'abstract' => 'abstract',
- 'deprecated' => 'deprecated',
- 'factory' => 'factory',
- 'arguments' => 'arguments',
- 'properties' => 'properties',
- 'configurator' => 'configurator',
- 'calls' => 'calls',
- 'tags' => 'tags',
- 'autowire' => 'autowire',
- 'autoconfigure' => 'autoconfigure',
- );
- private static $instanceofKeywords = array(
- 'shared' => 'shared',
- 'lazy' => 'lazy',
- 'public' => 'public',
- 'properties' => 'properties',
- 'configurator' => 'configurator',
- 'calls' => 'calls',
- 'tags' => 'tags',
- 'autowire' => 'autowire',
- );
- private static $defaultsKeywords = array(
- 'public' => 'public',
- 'tags' => 'tags',
- 'autowire' => 'autowire',
- 'autoconfigure' => 'autoconfigure',
- );
- private $yamlParser;
- private $anonymousServicesCount;
- /**
- * {@inheritdoc}
- */
- public function load($resource, $type = null)
- {
- $path = $this->locator->locate($resource);
- $content = $this->loadFile($path);
- $this->container->fileExists($path);
- // empty file
- if (null === $content) {
- return;
- }
- // imports
- $this->parseImports($content, $path);
- // parameters
- if (isset($content['parameters'])) {
- if (!is_array($content['parameters'])) {
- throw new InvalidArgumentException(sprintf('The "parameters" key should contain an array in %s. Check your YAML syntax.', $path));
- }
- foreach ($content['parameters'] as $key => $value) {
- $this->container->setParameter($key, $this->resolveServices($value, $path, true));
- }
- }
- // extensions
- $this->loadFromExtensions($content);
- // services
- $this->anonymousServicesCount = 0;
- $this->setCurrentDir(dirname($path));
- try {
- $this->parseDefinitions($content, $path);
- } finally {
- $this->instanceof = array();
- }
- }
- /**
- * {@inheritdoc}
- */
- public function supports($resource, $type = null)
- {
- if (!is_string($resource)) {
- return false;
- }
- if (null === $type && in_array(pathinfo($resource, PATHINFO_EXTENSION), array('yaml', 'yml'), true)) {
- return true;
- }
- return in_array($type, array('yaml', 'yml'), true);
- }
- /**
- * Parses all imports.
- *
- * @param array $content
- * @param string $file
- */
- private function parseImports(array $content, $file)
- {
- if (!isset($content['imports'])) {
- return;
- }
- if (!is_array($content['imports'])) {
- throw new InvalidArgumentException(sprintf('The "imports" key should contain an array in %s. Check your YAML syntax.', $file));
- }
- $defaultDirectory = dirname($file);
- foreach ($content['imports'] as $import) {
- if (!is_array($import)) {
- throw new InvalidArgumentException(sprintf('The values in the "imports" key should be arrays in %s. Check your YAML syntax.', $file));
- }
- $this->setCurrentDir($defaultDirectory);
- $this->import($import['resource'], isset($import['type']) ? $import['type'] : null, isset($import['ignore_errors']) ? (bool) $import['ignore_errors'] : false, $file);
- }
- }
- /**
- * Parses definitions.
- *
- * @param array $content
- * @param string $file
- */
- private function parseDefinitions(array $content, $file)
- {
- if (!isset($content['services'])) {
- return;
- }
- if (!is_array($content['services'])) {
- throw new InvalidArgumentException(sprintf('The "services" key should contain an array in %s. Check your YAML syntax.', $file));
- }
- if (array_key_exists('_instanceof', $content['services'])) {
- $instanceof = $content['services']['_instanceof'];
- unset($content['services']['_instanceof']);
- if (!is_array($instanceof)) {
- throw new InvalidArgumentException(sprintf('Service "_instanceof" key must be an array, "%s" given in "%s".', gettype($instanceof), $file));
- }
- $this->instanceof = array();
- $this->isLoadingInstanceof = true;
- foreach ($instanceof as $id => $service) {
- if (!$service || !is_array($service)) {
- throw new InvalidArgumentException(sprintf('Type definition "%s" must be a non-empty array within "_instanceof" in %s. Check your YAML syntax.', $id, $file));
- }
- if (is_string($service) && 0 === strpos($service, '@')) {
- throw new InvalidArgumentException(sprintf('Type definition "%s" cannot be an alias within "_instanceof" in %s. Check your YAML syntax.', $id, $file));
- }
- $this->parseDefinition($id, $service, $file, array());
- }
- }
- $this->isLoadingInstanceof = false;
- $defaults = $this->parseDefaults($content, $file);
- foreach ($content['services'] as $id => $service) {
- $this->parseDefinition($id, $service, $file, $defaults);
- }
- }
- /**
- * @param array $content
- * @param string $file
- *
- * @return array
- *
- * @throws InvalidArgumentException
- */
- private function parseDefaults(array &$content, $file)
- {
- if (!array_key_exists('_defaults', $content['services'])) {
- return array();
- }
- $defaults = $content['services']['_defaults'];
- unset($content['services']['_defaults']);
- if (!is_array($defaults)) {
- throw new InvalidArgumentException(sprintf('Service "_defaults" key must be an array, "%s" given in "%s".', gettype($defaults), $file));
- }
- foreach ($defaults as $key => $default) {
- if (!isset(self::$defaultsKeywords[$key])) {
- throw new InvalidArgumentException(sprintf('The configuration key "%s" cannot be used to define a default value in "%s". Allowed keys are "%s".', $key, $file, implode('", "', self::$defaultsKeywords)));
- }
- }
- if (!isset($defaults['tags'])) {
- return $defaults;
- }
- if (!is_array($tags = $defaults['tags'])) {
- throw new InvalidArgumentException(sprintf('Parameter "tags" in "_defaults" must be an array in %s. Check your YAML syntax.', $file));
- }
- foreach ($tags as $tag) {
- if (!is_array($tag)) {
- $tag = array('name' => $tag);
- }
- if (!isset($tag['name'])) {
- throw new InvalidArgumentException(sprintf('A "tags" entry in "_defaults" is missing a "name" key in %s.', $file));
- }
- $name = $tag['name'];
- unset($tag['name']);
- if (!is_string($name) || '' === $name) {
- throw new InvalidArgumentException(sprintf('The tag name in "_defaults" must be a non-empty string in %s.', $file));
- }
- foreach ($tag as $attribute => $value) {
- if (!is_scalar($value) && null !== $value) {
- throw new InvalidArgumentException(sprintf('Tag "%s", attribute "%s" in "_defaults" must be of a scalar-type in %s. Check your YAML syntax.', $name, $attribute, $file));
- }
- }
- }
- return $defaults;
- }
- /**
- * @param array $service
- *
- * @return bool
- */
- private function isUsingShortSyntax(array $service)
- {
- foreach ($service as $key => $value) {
- if (is_string($key) && ('' === $key || '$' !== $key[0])) {
- return false;
- }
- }
- return true;
- }
- /**
- * Parses a definition.
- *
- * @param string $id
- * @param array|string $service
- * @param string $file
- * @param array $defaults
- *
- * @throws InvalidArgumentException When tags are invalid
- */
- private function parseDefinition($id, $service, $file, array $defaults)
- {
- if (preg_match('/^_[a-zA-Z0-9_]*$/', $id)) {
- @trigger_error(sprintf('Service names that start with an underscore are deprecated since Symfony 3.3 and will be reserved in 4.0. Rename the "%s" service or define it in XML instead.', $id), E_USER_DEPRECATED);
- }
- if (is_string($service) && 0 === strpos($service, '@')) {
- $public = isset($defaults['public']) ? $defaults['public'] : true;
- $this->container->setAlias($id, new Alias(substr($service, 1), $public));
- return;
- }
- if (is_array($service) && $this->isUsingShortSyntax($service)) {
- $service = array('arguments' => $service);
- }
- if (null === $service) {
- $service = array();
- }
- if (!is_array($service)) {
- throw new InvalidArgumentException(sprintf('A service definition must be an array or a string starting with "@" but %s found for service "%s" in %s. Check your YAML syntax.', gettype($service), $id, $file));
- }
- $this->checkDefinition($id, $service, $file);
- if (isset($service['alias'])) {
- $public = array_key_exists('public', $service) ? (bool) $service['public'] : (isset($defaults['public']) ? $defaults['public'] : true);
- $this->container->setAlias($id, new Alias($service['alias'], $public));
- foreach ($service as $key => $value) {
- if (!in_array($key, array('alias', 'public'))) {
- @trigger_error(sprintf('The configuration key "%s" is unsupported for the service "%s" which is defined as an alias in "%s". Allowed configuration keys for service aliases are "alias" and "public". The YamlFileLoader will raise an exception in Symfony 4.0, instead of silently ignoring unsupported attributes.', $key, $id, $file), E_USER_DEPRECATED);
- }
- }
- return;
- }
- if ($this->isLoadingInstanceof) {
- $definition = new ChildDefinition('');
- } elseif (isset($service['parent'])) {
- if (!empty($this->instanceof)) {
- throw new InvalidArgumentException(sprintf('The service "%s" cannot use the "parent" option in the same file where "_instanceof" configuration is defined as using both is not supported. Move your child definitions to a separate file.', $id));
- }
- foreach ($defaults as $k => $v) {
- if ('tags' === $k) {
- // since tags are never inherited from parents, there is no confusion
- // thus we can safely add them as defaults to ChildDefinition
- continue;
- }
- if (!isset($service[$k])) {
- throw new InvalidArgumentException(sprintf('Attribute "%s" on service "%s" cannot be inherited from "_defaults" when a "parent" is set. Move your child definitions to a separate file or define this attribute explicitly.', $k, $id));
- }
- }
- $definition = new ChildDefinition($service['parent']);
- } else {
- $definition = new Definition();
- if (isset($defaults['public'])) {
- $definition->setPublic($defaults['public']);
- }
- if (isset($defaults['autowire'])) {
- $definition->setAutowired($defaults['autowire']);
- }
- if (isset($defaults['autoconfigure'])) {
- $definition->setAutoconfigured($defaults['autoconfigure']);
- }
- $definition->setChanges(array());
- }
- if (isset($service['class'])) {
- $definition->setClass($service['class']);
- }
- if (isset($service['shared'])) {
- $definition->setShared($service['shared']);
- }
- if (isset($service['synthetic'])) {
- $definition->setSynthetic($service['synthetic']);
- }
- if (isset($service['lazy'])) {
- $definition->setLazy($service['lazy']);
- }
- if (isset($service['public'])) {
- $definition->setPublic($service['public']);
- }
- if (isset($service['abstract'])) {
- $definition->setAbstract($service['abstract']);
- }
- if (array_key_exists('deprecated', $service)) {
- $definition->setDeprecated(true, $service['deprecated']);
- }
- if (isset($service['factory'])) {
- $definition->setFactory($this->parseCallable($service['factory'], 'factory', $id, $file));
- }
- if (isset($service['file'])) {
- $definition->setFile($service['file']);
- }
- if (isset($service['arguments'])) {
- $definition->setArguments($this->resolveServices($service['arguments'], $file));
- }
- if (isset($service['properties'])) {
- $definition->setProperties($this->resolveServices($service['properties'], $file));
- }
- if (isset($service['configurator'])) {
- $definition->setConfigurator($this->parseCallable($service['configurator'], 'configurator', $id, $file));
- }
- if (isset($service['calls'])) {
- if (!is_array($service['calls'])) {
- throw new InvalidArgumentException(sprintf('Parameter "calls" must be an array for service "%s" in %s. Check your YAML syntax.', $id, $file));
- }
- foreach ($service['calls'] as $call) {
- if (isset($call['method'])) {
- $method = $call['method'];
- $args = isset($call['arguments']) ? $this->resolveServices($call['arguments'], $file) : array();
- } else {
- $method = $call[0];
- $args = isset($call[1]) ? $this->resolveServices($call[1], $file) : array();
- }
- $definition->addMethodCall($method, $args);
- }
- }
- $tags = isset($service['tags']) ? $service['tags'] : array();
- if (!is_array($tags)) {
- throw new InvalidArgumentException(sprintf('Parameter "tags" must be an array for service "%s" in %s. Check your YAML syntax.', $id, $file));
- }
- if (isset($defaults['tags'])) {
- $tags = array_merge($tags, $defaults['tags']);
- }
- foreach ($tags as $tag) {
- if (!is_array($tag)) {
- $tag = array('name' => $tag);
- }
- if (!isset($tag['name'])) {
- throw new InvalidArgumentException(sprintf('A "tags" entry is missing a "name" key for service "%s" in %s.', $id, $file));
- }
- $name = $tag['name'];
- unset($tag['name']);
- if (!is_string($name) || '' === $name) {
- throw new InvalidArgumentException(sprintf('The tag name for service "%s" in %s must be a non-empty string.', $id, $file));
- }
- foreach ($tag as $attribute => $value) {
- if (!is_scalar($value) && null !== $value) {
- throw new InvalidArgumentException(sprintf('A "tags" attribute must be of a scalar-type for service "%s", tag "%s", attribute "%s" in %s. Check your YAML syntax.', $id, $name, $attribute, $file));
- }
- }
- $definition->addTag($name, $tag);
- }
- if (isset($service['decorates'])) {
- if ('' !== $service['decorates'] && '@' === $service['decorates'][0]) {
- throw new InvalidArgumentException(sprintf('The value of the "decorates" option for the "%s" service must be the id of the service without the "@" prefix (replace "%s" with "%s").', $id, $service['decorates'], substr($service['decorates'], 1)));
- }
- $renameId = isset($service['decoration_inner_name']) ? $service['decoration_inner_name'] : null;
- $priority = isset($service['decoration_priority']) ? $service['decoration_priority'] : 0;
- $definition->setDecoratedService($service['decorates'], $renameId, $priority);
- }
- if (isset($service['autowire'])) {
- $definition->setAutowired($service['autowire']);
- }
- if (isset($service['autowiring_types'])) {
- if (is_string($service['autowiring_types'])) {
- $definition->addAutowiringType($service['autowiring_types']);
- } else {
- if (!is_array($service['autowiring_types'])) {
- throw new InvalidArgumentException(sprintf('Parameter "autowiring_types" must be a string or an array for service "%s" in %s. Check your YAML syntax.', $id, $file));
- }
- foreach ($service['autowiring_types'] as $autowiringType) {
- if (!is_string($autowiringType)) {
- throw new InvalidArgumentException(sprintf('A "autowiring_types" attribute must be of type string for service "%s" in %s. Check your YAML syntax.', $id, $file));
- }
- $definition->addAutowiringType($autowiringType);
- }
- }
- }
- if (isset($service['autoconfigure'])) {
- if (!$definition instanceof ChildDefinition) {
- $definition->setAutoconfigured($service['autoconfigure']);
- } elseif ($service['autoconfigure']) {
- throw new InvalidArgumentException(sprintf('The service "%s" cannot have a "parent" and also have "autoconfigure". Try setting "autoconfigure: false" for the service.', $id));
- }
- }
- if (array_key_exists('resource', $service)) {
- if (!is_string($service['resource'])) {
- throw new InvalidArgumentException(sprintf('A "resource" attribute must be of type string for service "%s" in %s. Check your YAML syntax.', $id, $file));
- }
- $exclude = isset($service['exclude']) ? $service['exclude'] : null;
- $this->registerClasses($definition, $id, $service['resource'], $exclude);
- } else {
- $this->setDefinition($id, $definition);
- }
- }
- /**
- * Parses a callable.
- *
- * @param string|array $callable A callable
- * @param string $parameter A parameter (e.g. 'factory' or 'configurator')
- * @param string $id A service identifier
- * @param string $file A parsed file
- *
- * @throws InvalidArgumentException When errors are occuried
- *
- * @return string|array A parsed callable
- */
- private function parseCallable($callable, $parameter, $id, $file)
- {
- if (is_string($callable)) {
- if ('' !== $callable && '@' === $callable[0]) {
- throw new InvalidArgumentException(sprintf('The value of the "%s" option for the "%s" service must be the id of the service without the "@" prefix (replace "%s" with "%s").', $parameter, $id, $callable, substr($callable, 1)));
- }
- if (false !== strpos($callable, ':') && false === strpos($callable, '::')) {
- $parts = explode(':', $callable);
- return array($this->resolveServices('@'.$parts[0], $file), $parts[1]);
- }
- return $callable;
- }
- if (is_array($callable)) {
- if (isset($callable[0]) && isset($callable[1])) {
- return array($this->resolveServices($callable[0], $file), $callable[1]);
- }
- if ('factory' === $parameter && isset($callable[1]) && null === $callable[0]) {
- return $callable;
- }
- throw new InvalidArgumentException(sprintf('Parameter "%s" must contain an array with two elements for service "%s" in %s. Check your YAML syntax.', $parameter, $id, $file));
- }
- throw new InvalidArgumentException(sprintf('Parameter "%s" must be a string or an array for service "%s" in %s. Check your YAML syntax.', $parameter, $id, $file));
- }
- /**
- * Loads a YAML file.
- *
- * @param string $file
- *
- * @return array The file content
- *
- * @throws InvalidArgumentException when the given file is not a local file or when it does not exist
- */
- protected function loadFile($file)
- {
- if (!class_exists('Symfony\Component\Yaml\Parser')) {
- throw new RuntimeException('Unable to load YAML config files as the Symfony Yaml Component is not installed.');
- }
- if (!stream_is_local($file)) {
- throw new InvalidArgumentException(sprintf('This is not a local file "%s".', $file));
- }
- if (!file_exists($file)) {
- throw new InvalidArgumentException(sprintf('The file "%s" does not exist.', $file));
- }
- if (null === $this->yamlParser) {
- $this->yamlParser = new YamlParser();
- }
- $prevErrorHandler = set_error_handler(function ($level, $message, $script, $line) use ($file, &$prevErrorHandler) {
- $message = E_USER_DEPRECATED === $level ? preg_replace('/ on line \d+/', ' in "'.$file.'"$0', $message) : $message;
- return $prevErrorHandler ? $prevErrorHandler($level, $message, $script, $line) : false;
- });
- try {
- $configuration = $this->yamlParser->parse(file_get_contents($file), Yaml::PARSE_CONSTANT | Yaml::PARSE_CUSTOM_TAGS | Yaml::PARSE_KEYS_AS_STRINGS);
- } catch (ParseException $e) {
- throw new InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML.', $file), 0, $e);
- } finally {
- restore_error_handler();
- }
- return $this->validate($configuration, $file);
- }
- /**
- * Validates a YAML file.
- *
- * @param mixed $content
- * @param string $file
- *
- * @return array
- *
- * @throws InvalidArgumentException When service file is not valid
- */
- private function validate($content, $file)
- {
- if (null === $content) {
- return $content;
- }
- if (!is_array($content)) {
- throw new InvalidArgumentException(sprintf('The service file "%s" is not valid. It should contain an array. Check your YAML syntax.', $file));
- }
- foreach ($content as $namespace => $data) {
- if (in_array($namespace, array('imports', 'parameters', 'services'))) {
- continue;
- }
- if (!$this->container->hasExtension($namespace)) {
- $extensionNamespaces = array_filter(array_map(function ($ext) { return $ext->getAlias(); }, $this->container->getExtensions()));
- throw new InvalidArgumentException(sprintf(
- 'There is no extension able to load the configuration for "%s" (in %s). Looked for namespace "%s", found %s',
- $namespace,
- $file,
- $namespace,
- $extensionNamespaces ? sprintf('"%s"', implode('", "', $extensionNamespaces)) : 'none'
- ));
- }
- }
- return $content;
- }
- /**
- * Resolves services.
- *
- * @param mixed $value
- * @param string $file
- * @param bool $isParameter
- *
- * @return array|string|Reference|ArgumentInterface
- */
- private function resolveServices($value, $file, $isParameter = false)
- {
- if ($value instanceof TaggedValue) {
- $argument = $value->getValue();
- if ('iterator' === $value->getTag()) {
- if (!is_array($argument)) {
- throw new InvalidArgumentException(sprintf('"!iterator" tag only accepts sequences in "%s".', $file));
- }
- $argument = $this->resolveServices($argument, $file, $isParameter);
- try {
- return new IteratorArgument($argument);
- } catch (InvalidArgumentException $e) {
- throw new InvalidArgumentException(sprintf('"!iterator" tag only accepts arrays of "@service" references in "%s".', $file));
- }
- }
- if ('service' === $value->getTag()) {
- if ($isParameter) {
- throw new InvalidArgumentException(sprintf('Using an anonymous service in a parameter is not allowed in "%s".', $file));
- }
- $isLoadingInstanceof = $this->isLoadingInstanceof;
- $this->isLoadingInstanceof = false;
- $instanceof = $this->instanceof;
- $this->instanceof = array();
- $id = sprintf('%d_%s', ++$this->anonymousServicesCount, hash('sha256', $file));
- $this->parseDefinition($id, $argument, $file, array());
- if (!$this->container->hasDefinition($id)) {
- throw new InvalidArgumentException(sprintf('Creating an alias using the tag "!service" is not allowed in "%s".', $file));
- }
- $this->container->getDefinition($id)->setPublic(false);
- $this->isLoadingInstanceof = $isLoadingInstanceof;
- $this->instanceof = $instanceof;
- return new Reference($id);
- }
- throw new InvalidArgumentException(sprintf('Unsupported tag "!%s".', $value->getTag()));
- }
- if (is_array($value)) {
- foreach ($value as $k => $v) {
- $value[$k] = $this->resolveServices($v, $file, $isParameter);
- }
- } elseif (is_string($value) && 0 === strpos($value, '@=')) {
- return new Expression(substr($value, 2));
- } elseif (is_string($value) && 0 === strpos($value, '@')) {
- if (0 === strpos($value, '@@')) {
- $value = substr($value, 1);
- $invalidBehavior = null;
- } elseif (0 === strpos($value, '@?')) {
- $value = substr($value, 2);
- $invalidBehavior = ContainerInterface::IGNORE_ON_INVALID_REFERENCE;
- } else {
- $value = substr($value, 1);
- $invalidBehavior = ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE;
- }
- if ('=' === substr($value, -1)) {
- @trigger_error(sprintf('The "=" suffix that used to disable strict references in Symfony 2.x is deprecated since Symfony 3.3 and will be unsupported in 4.0. Remove it in "%s".', $value), E_USER_DEPRECATED);
- $value = substr($value, 0, -1);
- }
- if (null !== $invalidBehavior) {
- $value = new Reference($value, $invalidBehavior);
- }
- }
- return $value;
- }
- /**
- * Loads from Extensions.
- */
- private function loadFromExtensions(array $content)
- {
- foreach ($content as $namespace => $values) {
- if (in_array($namespace, array('imports', 'parameters', 'services'))) {
- continue;
- }
- if (!is_array($values) && null !== $values) {
- $values = array();
- }
- $this->container->loadFromExtension($namespace, $values);
- }
- }
- /**
- * Checks the keywords used to define a service.
- *
- * @param string $id The service name
- * @param array $definition The service definition to check
- * @param string $file The loaded YAML file
- */
- private function checkDefinition($id, array $definition, $file)
- {
- if ($throw = $this->isLoadingInstanceof) {
- $keywords = self::$instanceofKeywords;
- } elseif ($throw = isset($definition['resource'])) {
- $keywords = self::$prototypeKeywords;
- } else {
- $keywords = self::$serviceKeywords;
- }
- foreach ($definition as $key => $value) {
- if (!isset($keywords[$key])) {
- if ($throw) {
- throw new InvalidArgumentException(sprintf('The configuration key "%s" is unsupported for definition "%s" in "%s". Allowed configuration keys are "%s".', $key, $id, $file, implode('", "', $keywords)));
- }
- @trigger_error(sprintf('The configuration key "%s" is unsupported for service definition "%s" in "%s". Allowed configuration keys are "%s". The YamlFileLoader object will raise an exception instead in Symfony 4.0 when detecting an unsupported service configuration key.', $key, $id, $file, implode('", "', $keywords)), E_USER_DEPRECATED);
- }
- }
- }
- }
|