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/PhpDumper.php

437 lines
14 KiB
PHP
Raw Normal View History

2010-01-04 14:26:20 +00:00
<?php
namespace Symfony\Component\DependencyInjection\Dumper;
2010-01-04 14:26:20 +00:00
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\DependencyInjection\Parameter;
2010-01-04 14:26:20 +00:00
/*
* 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.
*/
/**
* PhpDumper dumps a service container as a PHP class.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2010-01-04 14:26:20 +00:00
*/
class PhpDumper extends Dumper
{
/**
* Dumps the service container as a PHP class.
*
* Available options:
*
* * class: The class name
* * base_class: The base class name
*
* @param array $options An array of options
*
* @return string A PHP class representing of the service container
*/
public function dump(array $options = array())
{
$options = array_merge(array(
'class' => 'ProjectServiceContainer',
'base_class' => 'Container',
), $options);
return
$this->startClass($options['class'], $options['base_class']).
$this->addConstructor().
$this->addServices().
2010-08-05 06:34:53 +01:00
$this->addTags().
$this->addDefaultParametersMethod().
$this->endClass()
;
}
protected function addServiceInclude($id, $definition)
{
if (null !== $definition->getFile()) {
return sprintf(" require_once %s;\n\n", $this->dumpValue($definition->getFile()));
}
2010-01-04 14:26:20 +00:00
}
protected function addServiceReturn($id, $definition)
{
if (!$definition->getMethodCalls() && !$definition->getConfigurator()) {
return " }\n";
}
2010-01-04 14:26:20 +00:00
return "\n return \$instance;\n }\n";
2010-01-04 14:26:20 +00:00
}
protected function addServiceInstance($id, $definition)
2010-01-04 14:26:20 +00:00
{
$class = $this->dumpValue($definition->getClass());
if (0 === strpos($class, "'") && !preg_match('/^\'[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*(\\\{2}[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)*\'$/', $class)) {
throw new \InvalidArgumentException(sprintf('"%s" is not a valid class name for the "%s" service.', $class, $id));
}
$arguments = array();
foreach ($definition->getArguments() as $value) {
$arguments[] = $this->dumpValue($value);
}
$simple = !$definition->getMethodCalls() && !$definition->getConfigurator();
$instantiation = '';
if ($definition->isShared()) {
$instantiation = "\$this->services['$id'] = ".($simple ? '' : '$instance');
} elseif (!$simple) {
$instantiation = '$instance';
}
$return = '';
if ($simple) {
$return = 'return ';
} else {
$instantiation .= ' = ';
}
if (null !== $definition->getFactoryMethod()) {
if (null !== $definition->getFactoryService()) {
$code = sprintf(" $return{$instantiation}%s->%s(%s);\n", $this->getServiceCall($definition->getFactoryService()), $definition->getFactoryMethod(), implode(', ', $arguments));
} else {
$code = sprintf(" $return{$instantiation}call_user_func(array(%s, '%s')%s);\n", $class, $definition->getFactoryMethod(), $arguments ? ', '.implode(', ', $arguments) : '');
}
} elseif (false !== strpos($class, '$')) {
$code = sprintf(" \$class = %s;\n $return{$instantiation}new \$class(%s);\n", $class, implode(', ', $arguments));
} else {
$code = sprintf(" $return{$instantiation}new \\%s(%s);\n", substr(str_replace('\\\\', '\\', $class), 1, -1), implode(', ', $arguments));
}
2010-01-04 14:26:20 +00:00
return $code;
2010-01-04 14:26:20 +00:00
}
protected function addServiceMethodCalls($id, $definition)
2010-01-04 14:26:20 +00:00
{
$calls = '';
foreach ($definition->getMethodCalls() as $call) {
$arguments = array();
foreach ($call[1] as $value) {
$arguments[] = $this->dumpValue($value);
}
2010-01-04 14:26:20 +00:00
$calls .= $this->wrapServiceConditionals($call[1], sprintf(" \$instance->%s(%s);\n", $call[0], implode(', ', $arguments)));
}
2010-01-04 14:26:20 +00:00
return $calls;
}
2010-01-04 14:26:20 +00:00
protected function addServiceConfigurator($id, $definition)
2010-01-04 14:26:20 +00:00
{
if (!$callable = $definition->getConfigurator()) {
return '';
}
2010-01-04 14:26:20 +00:00
if (is_array($callable)) {
if (is_object($callable[0]) && $callable[0] instanceof Reference) {
return sprintf(" %s->%s(\$instance);\n", $this->getServiceCall((string) $callable[0]), $callable[1]);
} else {
return sprintf(" call_user_func(array(%s, '%s'), \$instance);\n", $this->dumpValue($callable[0]), $callable[1]);
}
} else {
return sprintf(" %s(\$instance);\n", $callable);
}
2010-01-04 14:26:20 +00:00
}
protected function addService($id, $definition)
{
$name = Container::camelize($id);
$return = '';
if ($class = $definition->getClass()) {
$return = sprintf("@return %s A %s instance.", 0 === strpos($class, '%') ? 'Object' : $class, $class);
} elseif ($definition->getFactoryService()) {
$return = sprintf('@return Object An instance returned by %s::%s().', $definition->getFactoryService(), $definition->getFactoryMethod());
}
2010-01-04 14:26:20 +00:00
$doc = '';
if ($definition->isShared()) {
$doc = <<<EOF
2010-01-04 14:26:20 +00:00
*
* This service is shared.
* This method always returns the same instance of the service.
2010-01-04 14:26:20 +00:00
EOF;
}
2010-01-04 14:26:20 +00:00
$code = <<<EOF
2010-01-04 14:26:20 +00:00
/**
* Gets the '$id' service.$doc
*
* $return
*/
protected function get{$name}Service()
{
2010-01-04 14:26:20 +00:00
EOF;
2010-01-04 14:26:20 +00:00
$code .=
$this->addServiceInclude($id, $definition).
$this->addServiceInstance($id, $definition).
$this->addServiceMethodCalls($id, $definition).
$this->addServiceConfigurator($id, $definition).
$this->addServiceReturn($id, $definition)
;
return $code;
2010-01-04 14:26:20 +00:00
}
protected function addServiceAlias($alias, $id)
{
$name = Container::camelize($alias);
$type = 'Object';
2010-01-04 14:26:20 +00:00
if ($this->container->hasDefinition($id)) {
$class = $this->container->getDefinition($id)->getClass();
$type = 0 === strpos($class, '%') ? 'Object' : $class;
}
2010-01-04 14:26:20 +00:00
return <<<EOF
2010-01-04 14:26:20 +00:00
/**
* Gets the $alias service alias.
*
* @return $type An instance of the $id service
*/
protected function get{$name}Service()
2010-01-04 14:26:20 +00:00
{
return {$this->getServiceCall($id)};
2010-01-04 14:26:20 +00:00
}
EOF;
2010-01-04 14:26:20 +00:00
}
protected function addServices()
{
$code = '';
foreach ($this->container->getDefinitions() as $id => $definition) {
$code .= $this->addService($id, $definition);
}
foreach ($this->container->getAliases() as $alias => $id) {
$code .= $this->addServiceAlias($alias, $id);
}
return $code;
}
2010-08-05 06:34:53 +01:00
protected function addTags()
{
2010-08-05 06:34:53 +01:00
$tags = array();
foreach ($this->container->getDefinitions() as $id => $definition) {
2010-08-05 06:34:53 +01:00
foreach ($definition->getTags() as $name => $ann) {
if (!isset($tags[$name])) {
$tags[$name] = array();
}
2010-08-05 06:34:53 +01:00
$tags[$name][$id] = $ann;
}
}
$tags = $this->exportParameters($tags);
return <<<EOF
/**
2010-08-05 06:34:53 +01:00
* Returns service ids for a given tag.
*
2010-08-05 06:34:53 +01:00
* @param string \$name The tag name
*
2010-08-05 06:34:53 +01:00
* @return array An array of tags
*/
2010-08-05 06:34:53 +01:00
public function findTaggedServiceIds(\$name)
2010-01-04 14:26:20 +00:00
{
2010-08-05 06:34:53 +01:00
static \$tags = $tags;
2010-08-05 06:34:53 +01:00
return isset(\$tags[\$name]) ? \$tags[\$name] : array();
2010-01-04 14:26:20 +00:00
}
EOF;
2010-01-04 14:26:20 +00:00
}
protected function startClass($class, $baseClass)
2010-01-04 14:26:20 +00:00
{
2010-06-27 17:28:29 +01:00
$bagClass = $this->container->isFrozen() ? 'FrozenParameterBag' : 'ParameterBag';
return <<<EOF
2010-01-04 14:26:20 +00:00
<?php
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\TaggedContainerInterface;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\DependencyInjection\Parameter;
use Symfony\Component\DependencyInjection\ParameterBag\\$bagClass;
2010-01-04 14:26:20 +00:00
/**
* $class
*
* This class has been auto-generated
* by the Symfony Dependency Injection Component.
2010-01-04 14:26:20 +00:00
*/
class $class extends $baseClass implements TaggedContainerInterface
2010-01-04 14:26:20 +00:00
{
EOF;
}
2010-01-04 14:26:20 +00:00
protected function addConstructor()
2010-01-04 14:26:20 +00:00
{
2010-06-27 17:28:29 +01:00
$bagClass = $this->container->isFrozen() ? 'FrozenParameterBag' : 'ParameterBag';
2010-01-04 14:26:20 +00:00
return <<<EOF
2010-01-04 14:26:20 +00:00
/**
* Constructor.
*/
public function __construct()
{
2010-06-27 17:28:29 +01:00
parent::__construct(new $bagClass(\$this->getDefaultParameters()));
}
2010-01-04 14:26:20 +00:00
EOF;
}
protected function addDefaultParametersMethod()
{
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
$parameters = $this->exportParameters($this->container->getParameterBag()->all());
2010-01-04 14:26:20 +00:00
return <<<EOF
2010-01-04 14:26:20 +00:00
/**
* Gets the default parameters.
*
* @return array An array of the default parameters
*/
protected function getDefaultParameters()
2010-01-04 14:26:20 +00:00
{
return $parameters;
2010-01-04 14:26:20 +00:00
}
EOF;
}
protected function exportParameters($parameters, $indent = 12)
2010-01-04 14:26:20 +00:00
{
$php = array();
foreach ($parameters as $key => $value) {
if (is_array($value)) {
$value = $this->exportParameters($value, $indent + 4);
} elseif ($value instanceof Reference) {
throw new \InvalidArgumentException(sprintf('You cannot dump a container with parameters that contain references to other services (reference to service %s found).', $value));
} else {
$value = var_export($value, true);
}
$php[] = sprintf('%s%s => %s,', str_repeat(' ', $indent), var_export($key, true), $value);
}
2010-01-04 14:26:20 +00:00
return sprintf("array(\n%s\n%s)", implode("\n", $php), str_repeat(' ', $indent - 4));
}
2010-01-04 14:26:20 +00:00
protected function endClass()
2010-01-04 14:26:20 +00:00
{
return <<<EOF
}
2010-01-04 14:26:20 +00:00
EOF;
2010-01-04 14:26:20 +00:00
}
protected function wrapServiceConditionals($value, $code)
2010-01-04 14:26:20 +00:00
{
if (!$services = ContainerBuilder::getServiceConditionals($value)) {
return $code;
}
2010-01-04 14:26:20 +00:00
$conditions = array();
foreach ($services as $service) {
2010-06-27 17:28:29 +01:00
$conditions[] = sprintf("\$this->has('%s')", $service);
}
2010-01-04 14:26:20 +00:00
// re-indent the wrapped code
$code = implode("\n", array_map(function ($line) { return $line ? ' '.$line : $line; }, explode("\n", $code)));
2010-01-04 14:26:20 +00:00
return sprintf(" if (%s) {\n%s }\n", implode(' && ', $conditions), $code);
2010-01-04 14:26:20 +00:00
}
2010-06-27 17:28:29 +01:00
protected function dumpValue($value, $interpolate = true)
2010-01-04 14:26:20 +00:00
{
if (is_array($value)) {
$code = array();
foreach ($value as $k => $v) {
2010-06-27 17:28:29 +01:00
$code[] = sprintf('%s => %s', $this->dumpValue($k, $interpolate), $this->dumpValue($v, $interpolate));
}
2010-01-04 14:26:20 +00:00
return sprintf('array(%s)', implode(', ', $code));
} elseif (is_object($value) && $value instanceof Reference) {
return $this->getServiceCall((string) $value, $value);
} elseif (is_object($value) && $value instanceof Parameter) {
2010-06-27 17:28:29 +01:00
return $this->dumpParameter($value);
} elseif (true === $interpolate && is_string($value)) {
if (preg_match('/^%([^%]+)%$/', $value, $match)) {
// we do this to deal with non string values (boolean, integer, ...)
// the preg_replace_callback converts them to strings
2010-06-27 17:28:29 +01:00
return $this->dumpParameter(strtolower($match[1]));
} else {
2010-06-27 17:28:29 +01:00
$that = $this;
$replaceParameters = function ($match) use ($that)
{
2010-06-27 17:28:29 +01:00
return sprintf("'.".$that->dumpParameter(strtolower($match[2])).".'");
};
$code = str_replace('%%', '%', preg_replace_callback('/(?<!%)(%)([^%]+)\1/', $replaceParameters, var_export($value, true)));
// optimize string
$code = preg_replace(array("/^''\./", "/\.''$/", "/\.''\./"), array('', '', '.'), $code);
return $code;
}
} 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 var_export($value, true);
}
2010-01-04 14:26:20 +00:00
}
2010-06-27 17:28:29 +01:00
public function dumpParameter($name)
{
2010-09-03 15:18:04 +01:00
if ($this->container->isFrozen() && $this->container->hasParameter($name)) {
2010-06-27 17:28:29 +01:00
return $this->dumpValue($this->container->getParameter($name), false);
}
return sprintf("\$this->getParameter('%s')", strtolower($name));
}
protected function getServiceCall($id, Reference $reference = null)
2010-01-04 14:26:20 +00:00
{
if ('service_container' === $id) {
return '$this';
}
2010-06-27 17:28:29 +01:00
if (null !== $reference && ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE !== $reference->getInvalidBehavior()) {
return sprintf('$this->get(\'%s\', ContainerInterface::NULL_ON_INVALID_REFERENCE)', $id);
} else {
if ($this->container->hasAlias($id)) {
$id = $this->container->getAlias($id);
}
2010-06-27 17:28:29 +01:00
return sprintf('$this->get(\'%s\')', $id);
}
2010-01-04 14:26:20 +00:00
}
}