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/Components/DependencyInjection/Dumper/YamlDumper.php

205 lines
6.3 KiB
PHP
Raw Normal View History

2010-01-04 14:26:20 +00:00
<?php
namespace Symfony\Components\DependencyInjection\Dumper;
2010-02-11 13:40:29 +00:00
use Symfony\Components\Yaml\Yaml;
2010-06-27 17:28:29 +01:00
use Symfony\Components\DependencyInjection\ContainerInterface;
2010-01-04 14:26:20 +00:00
use Symfony\Components\DependencyInjection\Parameter;
use Symfony\Components\DependencyInjection\Reference;
/*
* This file is part of the Symfony framework.
2010-01-04 14:26:20 +00:00
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
/**
* YamlDumper dumps a service container as a YAML string.
*
* @package Symfony
* @subpackage Components_DependencyInjection
2010-01-04 14:26:20 +00:00
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class YamlDumper extends Dumper
{
/**
* Dumps the service container as an YAML string.
*
* @param array $options An array of options
*
* @return string A YAML string representing of the service container
*/
public function dump(array $options = array())
{
return $this->addParameters()."\n".$this->addServices();
2010-01-04 14:26:20 +00:00
}
protected function addService($id, $definition)
2010-01-04 14:26:20 +00:00
{
$code = " $id:\n";
$code .= sprintf(" class: %s\n", $definition->getClass());
2010-01-04 14:26:20 +00:00
$annotationsCode = '';
foreach ($definition->getAnnotations() as $name => $annotations) {
foreach ($annotations as $attributes) {
$att = array();
foreach ($attributes as $key => $value) {
$att[] = sprintf('%s: %s', Yaml::dump($key), Yaml::dump($value));
}
$att = $att ? ', '.implode(' ', $att) : '';
$annotationsCode .= sprintf(" - { name: %s%s }\n", Yaml::dump($name), $att);
}
}
if ($annotationsCode) {
$code .= " annotations:\n".$annotationsCode;
}
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->getFactoryMethod()) {
$code .= sprintf(" factory_method: %s\n", $definition->getFactoryMethod());
2010-01-04 14:26:20 +00:00
}
if ($definition->getFactoryClass()) {
$code .= sprintf(" factoryClass: %s\n", $definition->getFactoryClass());
}
if ($definition->getFactoryService()) {
$code .= sprintf(" factoryService: %s\n", $definition->getFactoryService());
}
if ($definition->getArguments()) {
$code .= sprintf(" arguments: %s\n", Yaml::dump($this->dumpValue($definition->getArguments()), 0));
2010-01-04 14:26:20 +00:00
}
if ($definition->getMethodCalls()) {
$code .= sprintf(" calls:\n %s\n", str_replace("\n", "\n ", Yaml::dump($this->dumpValue($definition->getMethodCalls()), 1)));
}
2010-01-04 14:26:20 +00:00
if (!$definition->isShared()) {
$code .= " shared: false\n";
}
2010-01-04 14:26:20 +00:00
if ($callable = $definition->getConfigurator()) {
if (is_array($callable)) {
if (is_object($callable[0]) && $callable[0] instanceof Reference) {
$callable = array($this->getServiceCall((string) $callable[0], $callable[0]), $callable[1]);
} else {
$callable = array($callable[0], $callable[1]);
}
}
$code .= sprintf(" configurator: %s\n", Yaml::dump($callable, 0));
}
2010-01-04 14:26:20 +00:00
return $code;
2010-01-04 14:26:20 +00:00
}
protected function addServiceAlias($alias, $id)
2010-01-04 14:26:20 +00:00
{
return sprintf(" %s: @%s\n", $alias, $id);
2010-01-04 14:26:20 +00:00
}
protected 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
foreach ($this->container->getAliases() as $alias => $id) {
$code .= $this->addServiceAlias($alias, $id);
}
2010-01-04 14:26:20 +00:00
return $code;
}
2010-01-04 14:26:20 +00:00
protected 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
2010-06-27 17:28:29 +01:00
return Yaml::dump(array('parameters' => $this->prepareParameters($this->container->getParameterBag()->all())), 2);
2010-01-04 14:26:20 +00:00
}
/**
* @throws \RuntimeException When trying to dump object or resource
*/
protected 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 (is_object($value) && $value instanceof Reference) {
return $this->getServiceCall((string) $value, $value);
} elseif (is_object($value) && $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.');
} else {
return $value;
}
2010-01-04 14:26:20 +00:00
}
protected 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);
} else {
return sprintf('@%s', $id);
}
2010-01-04 14:26:20 +00:00
}
protected function getParameterCall($id)
2010-01-04 14:26:20 +00:00
{
return sprintf('%%%s%%', $id);
2010-01-04 14:26:20 +00:00
}
protected function prepareParameters($parameters)
2010-01-04 14:26:20 +00:00
{
$filtered = array();
foreach ($parameters as $key => $value) {
if (is_array($value)) {
$value = $this->prepareParameters($value);
} elseif ($value instanceof Reference) {
$value = '@'.$value;
}
$filtered[$key] = $value;
}
2010-01-04 14:26:20 +00:00
return $this->escape($filtered);
}
2010-01-04 14:26:20 +00:00
protected 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
}