This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/DependencyInjection/Dumper/YamlDumper.php

314 lines
8.7 KiB
PHP
Raw Normal View History

2010-01-04 14:26:20 +00:00
<?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\Dumper;
2010-01-04 14:26:20 +00:00
2012-05-01 13:46:26 +01:00
use Symfony\Component\Yaml\Dumper as YmlDumper;
use Symfony\Component\DependencyInjection\Alias;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Parameter;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
2010-01-04 14:26:20 +00:00
/**
* YamlDumper dumps a service container as a YAML string.
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @api
2010-01-04 14:26:20 +00:00
*/
class YamlDumper extends Dumper
{
2012-05-01 13:46:26 +01:00
private $dumper;
/**
* Dumps the service container as an YAML string.
*
2012-05-15 21:19:31 +01:00
* @param array $options An array of options
*
* @return string A YAML string representing of the service container
*
* @api
*/
public function dump(array $options = array())
{
if (!class_exists('Symfony\Component\Yaml\Dumper')) {
throw new RuntimeException('Unable to dump the container as the Symfony Yaml Component is not installed.');
}
if (null === $this->dumper) {
$this->dumper = new YmlDumper();
}
return $this->addParameters()."\n".$this->addServices();
2010-01-04 14:26:20 +00:00
}
2011-02-13 18:06:41 +00:00
/**
2014-12-21 17:00:50 +00:00
* Adds a service.
2011-02-13 18:06:41 +00:00
*
2012-05-18 18:41:48 +01:00
* @param string $id
2011-03-10 14:31:00 +00:00
* @param Definition $definition
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*/
private function addService($id, $definition)
2010-01-04 14:26:20 +00:00
{
$code = " $id:\n";
if ($definition->getClass()) {
$code .= sprintf(" class: %s\n", $definition->getClass());
}
2010-01-04 14:26:20 +00:00
if (!$definition->isPublic()) {
$code .= " public: false\n";
}
2010-08-05 06:34:53 +01:00
$tagsCode = '';
foreach ($definition->getTags() as $name => $tags) {
foreach ($tags as $attributes) {
$att = array();
foreach ($attributes as $key => $value) {
2012-05-01 13:46:26 +01:00
$att[] = sprintf('%s: %s', $this->dumper->dump($key), $this->dumper->dump($value));
}
2015-01-11 17:40:41 +00:00
$att = $att ? ', '.implode(', ', $att) : '';
2012-05-01 13:46:26 +01:00
$tagsCode .= sprintf(" - { name: %s%s }\n", $this->dumper->dump($name), $att);
}
}
2010-08-05 06:34:53 +01:00
if ($tagsCode) {
$code .= " tags:\n".$tagsCode;
}
2010-01-04 14:26:20 +00:00
if ($definition->getFile()) {
$code .= sprintf(" file: %s\n", $definition->getFile());
}
2010-01-04 14:26:20 +00:00
if ($definition->isSynthetic()) {
$code .= sprintf(" synthetic: true\n");
}
if ($definition->isSynchronized()) {
$code .= sprintf(" synchronized: true\n");
}
if ($definition->getFactoryClass()) {
$code .= sprintf(" factory_class: %s\n", $definition->getFactoryClass());
}
2013-03-29 23:21:12 +00:00
if ($definition->isLazy()) {
$code .= sprintf(" lazy: true\n");
}
if ($definition->getFactoryMethod()) {
$code .= sprintf(" factory_method: %s\n", $definition->getFactoryMethod());
2010-01-04 14:26:20 +00:00
}
if ($definition->getFactoryService()) {
$code .= sprintf(" factory_service: %s\n", $definition->getFactoryService());
}
if ($definition->getArguments()) {
2012-05-01 13:46:26 +01:00
$code .= sprintf(" arguments: %s\n", $this->dumper->dump($this->dumpValue($definition->getArguments()), 0));
2010-01-04 14:26:20 +00:00
}
2011-03-10 14:31:00 +00:00
if ($definition->getProperties()) {
2012-05-01 13:46:26 +01:00
$code .= sprintf(" properties: %s\n", $this->dumper->dump($this->dumpValue($definition->getProperties()), 0));
2011-03-10 14:31:00 +00:00
}
if ($definition->getMethodCalls()) {
2012-05-01 13:46:26 +01:00
$code .= sprintf(" calls:\n%s\n", $this->dumper->dump($this->dumpValue($definition->getMethodCalls()), 1, 12));
}
2010-01-04 14:26:20 +00:00
2011-01-17 22:28:59 +00:00
if (ContainerInterface::SCOPE_CONTAINER !== $scope = $definition->getScope()) {
$code .= sprintf(" scope: %s\n", $scope);
}
2010-01-04 14:26:20 +00:00
if ($callable = $definition->getConfigurator()) {
if (is_array($callable)) {
if ($callable[0] instanceof Reference) {
$callable = array($this->getServiceCall((string) $callable[0], $callable[0]), $callable[1]);
} else {
$callable = array($callable[0], $callable[1]);
}
}
2012-05-01 13:46:26 +01:00
$code .= sprintf(" configurator: %s\n", $this->dumper->dump($callable, 0));
}
2010-01-04 14:26:20 +00:00
return $code;
2010-01-04 14:26:20 +00:00
}
2011-02-13 18:06:41 +00:00
/**
2014-12-21 17:00:50 +00:00
* Adds a service alias.
2011-02-13 18:06:41 +00:00
*
2011-03-10 14:31:00 +00:00
* @param string $alias
* @param Alias $id
2011-12-13 07:50:54 +00:00
*
2011-06-04 16:30:56 +01:00
* @return string
2011-02-13 18:06:41 +00:00
*/
private function addServiceAlias($alias, $id)
2010-01-04 14:26:20 +00:00
{
2011-01-07 14:44:29 +00:00
if ($id->isPublic()) {
return sprintf(" %s: @%s\n", $alias, $id);
2011-01-07 14:44:29 +00:00
} else {
return sprintf(" %s:\n alias: %s\n public: false", $alias, $id);
2011-01-07 14:44:29 +00:00
}
2010-01-04 14:26:20 +00:00
}
2011-02-13 18:06:41 +00:00
/**
2014-12-21 17:00:50 +00:00
* Adds services.
2011-02-13 18:06:41 +00:00
*
* @return string
*/
private function addServices()
2010-01-04 14:26:20 +00:00
{
if (!$this->container->getDefinitions()) {
return '';
}
2010-01-04 14:26:20 +00:00
$code = "services:\n";
foreach ($this->container->getDefinitions() as $id => $definition) {
$code .= $this->addService($id, $definition);
}
2010-01-04 14:26:20 +00:00
$aliases = $this->container->getAliases();
foreach ($aliases as $alias => $id) {
while (isset($aliases[(string) $id])) {
$id = $aliases[(string) $id];
}
$code .= $this->addServiceAlias($alias, $id);
}
2010-01-04 14:26:20 +00:00
return $code;
}
2010-01-04 14:26:20 +00:00
2011-02-13 18:06:41 +00:00
/**
2014-12-21 17:00:50 +00:00
* Adds parameters.
2011-02-13 18:06:41 +00:00
*
* @return string
*/
private function addParameters()
2010-01-04 14:26:20 +00:00
{
2010-06-27 17:28:29 +01:00
if (!$this->container->getParameterBag()->all()) {
return '';
}
2010-01-04 14:26:20 +00:00
$parameters = $this->prepareParameters($this->container->getParameterBag()->all(), $this->container->isFrozen());
2012-05-01 13:46:26 +01:00
return $this->dumper->dump(array('parameters' => $parameters), 2);
2010-01-04 14:26:20 +00:00
}
/**
2014-12-21 17:00:50 +00:00
* Dumps the value to YAML format.
2011-02-13 18:06:41 +00:00
*
* @param mixed $value
2011-12-13 07:50:54 +00:00
*
* @return mixed
*
* @throws RuntimeException When trying to dump object or resource
*/
private function dumpValue($value)
2010-01-04 14:26:20 +00:00
{
if (is_array($value)) {
$code = array();
foreach ($value as $k => $v) {
$code[$k] = $this->dumpValue($v);
}
return $code;
} elseif ($value instanceof Reference) {
return $this->getServiceCall((string) $value, $value);
} elseif ($value instanceof Parameter) {
return $this->getParameterCall((string) $value);
} elseif (is_object($value) || is_resource($value)) {
throw new RuntimeException('Unable to dump a service container if a parameter is an object or a resource.');
}
return $value;
2010-01-04 14:26:20 +00:00
}
2011-02-13 18:06:41 +00:00
/**
* Gets the service call.
*
2011-04-23 16:05:44 +01:00
* @param string $id
2011-03-10 14:31:00 +00:00
* @param Reference $reference
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*/
private function getServiceCall($id, Reference $reference = null)
2010-01-04 14:26:20 +00:00
{
2010-06-27 17:28:29 +01:00
if (null !== $reference && ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE !== $reference->getInvalidBehavior()) {
return sprintf('@?%s', $id);
}
return sprintf('@%s', $id);
2010-01-04 14:26:20 +00:00
}
2011-02-13 18:06:41 +00:00
/**
* Gets parameter call.
*
2011-03-10 14:31:00 +00:00
* @param string $id
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*/
private function getParameterCall($id)
2010-01-04 14:26:20 +00:00
{
return sprintf('%%%s%%', $id);
2010-01-04 14:26:20 +00:00
}
2011-02-13 18:06:41 +00:00
/**
2013-04-21 13:26:17 +01:00
* Prepares parameters.
2011-02-13 18:06:41 +00:00
*
2014-11-30 13:33:44 +00:00
* @param array $parameters
* @param bool $escape
2011-12-13 07:50:54 +00:00
*
2011-03-10 14:31:00 +00:00
* @return array
2011-02-13 18:06:41 +00:00
*/
private function prepareParameters($parameters, $escape = true)
2010-01-04 14:26:20 +00:00
{
$filtered = array();
foreach ($parameters as $key => $value) {
if (is_array($value)) {
$value = $this->prepareParameters($value, $escape);
} elseif ($value instanceof Reference || is_string($value) && 0 === strpos($value, '@')) {
$value = '@'.$value;
}
$filtered[$key] = $value;
}
2010-01-04 14:26:20 +00:00
return $escape ? $this->escape($filtered) : $filtered;
}
2010-01-04 14:26:20 +00:00
2011-02-13 18:06:41 +00:00
/**
2014-12-21 17:00:50 +00:00
* Escapes arguments.
2011-02-13 18:06:41 +00:00
*
2011-03-10 14:31:00 +00:00
* @param array $arguments
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return array
*/
private function escape($arguments)
2010-01-04 14:26:20 +00:00
{
$args = array();
foreach ($arguments as $k => $v) {
if (is_array($v)) {
$args[$k] = $this->escape($v);
} elseif (is_string($v)) {
$args[$k] = str_replace('%', '%%', $v);
} else {
$args[$k] = $v;
}
}
2010-01-04 14:26:20 +00:00
return $args;
}
2010-01-04 14:26:20 +00:00
}