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

1451 lines
47 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
2011-01-05 11:13:27 +00:00
use Symfony\Component\DependencyInjection\Variable;
use Symfony\Component\DependencyInjection\Definition;
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;
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
use Symfony\Component\DependencyInjection\Exception\ServiceCircularReferenceException;
2013-03-29 23:21:12 +00:00
use Symfony\Component\DependencyInjection\LazyProxy\PhpDumper\DumperInterface as ProxyDumper;
use Symfony\Component\DependencyInjection\LazyProxy\PhpDumper\NullDumper;
use Symfony\Component\DependencyInjection\ExpressionLanguage;
use Symfony\Component\ExpressionLanguage\Expression;
use Symfony\Component\HttpKernel\Kernel;
2010-01-04 14:26:20 +00:00
/**
* PhpDumper dumps a service container as a PHP class.
*
* @author Fabien Potencier <fabien@symfony.com>
2011-01-05 11:13:27 +00:00
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
2010-01-04 14:26:20 +00:00
*/
class PhpDumper extends Dumper
{
2011-01-05 11:13:27 +00:00
/**
2014-12-21 17:00:50 +00:00
* Characters that might appear in the generated variable name as first character.
*
2011-01-05 11:13:27 +00:00
* @var string
*/
const FIRST_CHARS = 'abcdefghijklmnopqrstuvwxyz';
/**
2014-12-21 17:00:50 +00:00
* Characters that might appear in the generated variable name as any but the first character.
*
2011-01-05 11:13:27 +00:00
* @var string
*/
const NON_FIRST_CHARS = 'abcdefghijklmnopqrstuvwxyz0123456789_';
private $inlinedDefinitions;
private $definitionVariables;
private $referenceVariables;
private $variableCount;
private $reservedVariables = array('instance', 'class');
private $expressionLanguage;
2014-12-02 21:48:32 +00:00
private $targetDirRegex;
private $targetDirMaxMatches;
private $docStar;
2011-01-05 11:13:27 +00:00
2013-03-29 23:21:12 +00:00
/**
* @var \Symfony\Component\DependencyInjection\LazyProxy\PhpDumper\DumperInterface
*/
private $proxyDumper;
2011-02-13 18:06:41 +00:00
/**
* {@inheritdoc}
2011-02-13 18:06:41 +00:00
*/
2011-01-05 11:13:27 +00:00
public function __construct(ContainerBuilder $container)
{
parent::__construct($container);
2014-02-11 07:51:18 +00:00
$this->inlinedDefinitions = new \SplObjectStorage();
2011-01-05 11:13:27 +00:00
}
2013-03-29 23:21:12 +00:00
/**
* Sets the dumper to be used when dumping proxies in the generated container.
*
* @param ProxyDumper $proxyDumper
*/
public function setProxyDumper(ProxyDumper $proxyDumper)
{
$this->proxyDumper = $proxyDumper;
}
/**
* Dumps the service container as a PHP class.
*
* Available options:
*
* * class: The class name
* * base_class: The base class name
* * namespace: The class namespace
*
2012-05-15 21:19:31 +01:00
* @param array $options An array of options
*
* @return string A PHP class representing of the service container
*/
public function dump(array $options = array())
{
$this->targetDirRegex = null;
$options = array_merge(array(
2014-10-22 19:27:13 +01:00
'class' => 'ProjectServiceContainer',
'base_class' => 'Container',
'namespace' => '',
'debug' => true,
), $options);
$this->docStar = $options['debug'] ? '*' : '';
2014-12-02 21:48:32 +00:00
if (!empty($options['file']) && is_dir($dir = dirname($options['file']))) {
// Build a regexp where the first root dirs are mandatory,
2014-12-02 21:48:32 +00:00
// but every other sub-dir is optional up to the full path in $dir
// Mandate at least 2 root dirs and not more that 5 optional dirs.
2014-12-02 21:48:32 +00:00
$dir = explode(DIRECTORY_SEPARATOR, realpath($dir));
$i = count($dir);
if (3 <= $i) {
$regex = '';
$lastOptionalDir = $i > 8 ? $i - 5 : 3;
$this->targetDirMaxMatches = $i - $lastOptionalDir;
2014-12-02 21:48:32 +00:00
while (--$i >= $lastOptionalDir) {
2014-12-02 21:48:32 +00:00
$regex = sprintf('(%s%s)?', preg_quote(DIRECTORY_SEPARATOR.$dir[$i], '#'), $regex);
}
do {
$regex = preg_quote(DIRECTORY_SEPARATOR.$dir[$i], '#').$regex;
} while (0 < --$i);
$this->targetDirRegex = '#'.preg_quote($dir[0], '#').$regex.'#';
}
}
$code = $this->startClass($options['class'], $options['base_class'], $options['namespace']);
if ($this->container->isFrozen()) {
$code .= $this->addFrozenConstructor();
$code .= $this->addFrozenCompile();
} else {
$code .= $this->addConstructor();
}
$code .=
$this->addServices().
$this->addDefaultParametersMethod().
2013-03-29 23:21:12 +00:00
$this->endClass().
$this->addProxyClasses()
;
$this->targetDirRegex = null;
return $code;
}
2013-03-29 23:21:12 +00:00
/**
* Retrieves the currently set proxy dumper or instantiates one.
*
* @return ProxyDumper
*/
private function getProxyDumper()
{
if (!$this->proxyDumper) {
$this->proxyDumper = new NullDumper();
}
return $this->proxyDumper;
}
2011-02-13 18:06:41 +00:00
/**
* Generates Service local temp variables.
*
* @param string $cId
* @param string $definition
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*/
private function addServiceLocalTempVariables($cId, $definition)
2011-01-05 11:13:27 +00:00
{
static $template = " \$%s = %s;\n";
$localDefinitions = array_merge(
array($definition),
$this->getInlinedDefinitions($definition)
);
$calls = $behavior = array();
foreach ($localDefinitions as $iDefinition) {
$this->getServiceCallsFromArguments($iDefinition->getArguments(), $calls, $behavior);
$this->getServiceCallsFromArguments($iDefinition->getMethodCalls(), $calls, $behavior);
$this->getServiceCallsFromArguments($iDefinition->getProperties(), $calls, $behavior);
$this->getServiceCallsFromArguments(array($iDefinition->getConfigurator()), $calls, $behavior);
$this->getServiceCallsFromArguments(array($iDefinition->getFactory()), $calls, $behavior);
2011-01-05 11:13:27 +00:00
}
$code = '';
foreach ($calls as $id => $callCount) {
if ('service_container' === $id || $id === $cId) {
continue;
}
if ($callCount > 1) {
$name = $this->getNextVariableName();
$this->referenceVariables[$id] = new Variable($name);
if (ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE === $behavior[$id]) {
$code .= sprintf($template, $name, $this->getServiceCall($id));
} else {
$code .= sprintf($template, $name, $this->getServiceCall($id, new Reference($id, ContainerInterface::NULL_ON_INVALID_REFERENCE)));
}
}
}
if ('' !== $code) {
$code .= "\n";
}
return $code;
}
2013-03-29 23:21:12 +00:00
/**
2014-12-21 17:00:50 +00:00
* Generates code for the proxies to be attached after the container class.
2013-03-29 23:21:12 +00:00
*
* @return string
*/
private function addProxyClasses()
{
2013-12-01 19:41:11 +00:00
/* @var $definitions Definition[] */
2013-03-29 23:21:12 +00:00
$definitions = array_filter(
$this->container->getDefinitions(),
array($this->getProxyDumper(), 'isProxyCandidate')
);
$code = '';
$strip = '' === $this->docStar && method_exists('Symfony\Component\HttpKernel\Kernel', 'stripComments');
2013-03-29 23:21:12 +00:00
foreach ($definitions as $definition) {
$proxyCode = "\n".$this->getProxyDumper()->getProxyCode($definition);
if ($strip) {
$proxyCode = "<?php\n".$proxyCode;
$proxyCode = substr(Kernel::stripComments($proxyCode), 5);
}
$code .= $proxyCode;
2013-03-29 23:21:12 +00:00
}
return $code;
}
2011-02-13 18:06:41 +00:00
/**
* Generates the require_once statement for service includes.
*
2012-05-18 18:41:48 +01:00
* @param string $id The service id
* @param Definition $definition
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*/
private function addServiceInclude($id, $definition)
{
2011-01-05 11:13:27 +00:00
$template = " require_once %s;\n";
$code = '';
if (null !== $file = $definition->getFile()) {
$code .= sprintf($template, $this->dumpValue($file));
}
foreach ($this->getInlinedDefinitions($definition) as $definition) {
if (null !== $file = $definition->getFile()) {
$code .= sprintf($template, $this->dumpValue($file));
}
}
if ('' !== $code) {
$code .= "\n";
}
return $code;
}
2011-02-13 18:06:41 +00:00
/**
* Generates the inline definition of a service.
*
2012-05-18 18:41:48 +01:00
* @param string $id
* @param Definition $definition
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*
2014-11-30 13:33:44 +00:00
* @throws RuntimeException When the factory definition is incomplete
* @throws ServiceCircularReferenceException When a circular reference is detected
2011-02-13 18:06:41 +00:00
*/
private function addServiceInlinedDefinitions($id, $definition)
2011-01-05 11:13:27 +00:00
{
$code = '';
$variableMap = $this->definitionVariables;
$nbOccurrences = new \SplObjectStorage();
$processed = new \SplObjectStorage();
$inlinedDefinitions = $this->getInlinedDefinitions($definition);
foreach ($inlinedDefinitions as $definition) {
if (false === $nbOccurrences->contains($definition)) {
$nbOccurrences->offsetSet($definition, 1);
} else {
$i = $nbOccurrences->offsetGet($definition);
2013-01-05 08:01:42 +00:00
$nbOccurrences->offsetSet($definition, $i + 1);
}
}
foreach ($inlinedDefinitions as $sDefinition) {
if ($processed->contains($sDefinition)) {
continue;
}
$processed->offsetSet($sDefinition);
2011-01-05 11:13:27 +00:00
$class = $this->dumpValue($sDefinition->getClass());
2013-01-05 08:01:42 +00:00
if ($nbOccurrences->offsetGet($sDefinition) > 1 || $sDefinition->getMethodCalls() || $sDefinition->getProperties() || null !== $sDefinition->getConfigurator() || false !== strpos($class, '$')) {
2011-01-05 11:13:27 +00:00
$name = $this->getNextVariableName();
$variableMap->offsetSet($sDefinition, new Variable($name));
// a construct like:
// $a = new ServiceA(ServiceB $b); $b = new ServiceB(ServiceA $a);
// this is an indication for a wrong implementation, you can circumvent this problem
// by setting up your service structure like this:
// $b = new ServiceB();
// $a = new ServiceA(ServiceB $b);
// $b->setServiceA(ServiceA $a);
if ($this->hasReference($id, $sDefinition->getArguments())) {
throw new ServiceCircularReferenceException($id, array($id));
2011-01-05 11:13:27 +00:00
}
$code .= $this->addNewInstance($sDefinition, '$'.$name, ' = ');
2011-01-05 11:13:27 +00:00
if (!$this->hasReference($id, $sDefinition->getMethodCalls(), true) && !$this->hasReference($id, $sDefinition->getProperties(), true)) {
2011-01-05 11:13:27 +00:00
$code .= $this->addServiceMethodCalls(null, $sDefinition, $name);
$code .= $this->addServiceProperties(null, $sDefinition, $name);
2011-01-05 11:13:27 +00:00
$code .= $this->addServiceConfigurator(null, $sDefinition, $name);
}
$code .= "\n";
}
}
2011-01-05 11:13:27 +00:00
return $code;
2010-01-04 14:26:20 +00:00
}
2011-02-13 18:06:41 +00:00
/**
* Adds the service return statement.
*
2012-05-18 18:41:48 +01:00
* @param string $id Service id
* @param Definition $definition
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*/
private function addServiceReturn($id, $definition)
{
2011-01-05 11:13:27 +00:00
if ($this->isSimpleInstance($id, $definition)) {
return " }\n";
}
2010-01-04 14:26:20 +00:00
return "\n return \$instance;\n }\n";
2010-01-04 14:26:20 +00:00
}
2011-02-13 18:06:41 +00:00
/**
* Generates the service instance.
*
2012-05-18 18:41:48 +01:00
* @param string $id
* @param Definition $definition
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*
* @throws InvalidArgumentException
* @throws RuntimeException
2011-02-13 18:06:41 +00:00
*/
private function addServiceInstance($id, $definition)
2010-01-04 14:26:20 +00:00
{
$class = $definition->getClass();
if ('\\' === substr($class, 0, 1)) {
$class = substr($class, 1);
}
$class = $this->dumpValue($class);
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));
}
2014-10-22 19:27:13 +01:00
$simple = $this->isSimpleInstance($id, $definition);
2013-03-29 23:21:12 +00:00
$isProxyCandidate = $this->getProxyDumper()->isProxyCandidate($definition);
2014-10-22 19:27:13 +01:00
$instantiation = '';
2015-09-04 20:54:37 +01:00
if (!$isProxyCandidate && $definition->isShared()) {
$instantiation = "\$this->services['$id'] = ".($simple ? '' : '$instance');
} elseif (!$simple) {
$instantiation = '$instance';
}
$return = '';
if ($simple) {
$return = 'return ';
} else {
$instantiation .= ' = ';
}
$code = $this->addNewInstance($definition, $return, $instantiation);
2010-01-04 14:26:20 +00:00
2011-01-05 11:13:27 +00:00
if (!$simple) {
$code .= "\n";
}
return $code;
2010-01-04 14:26:20 +00:00
}
2011-02-13 18:06:41 +00:00
/**
* Checks if the definition is a simple instance.
*
2012-05-18 18:41:48 +01:00
* @param string $id
* @param Definition $definition
2011-12-13 07:50:54 +00:00
*
2014-04-16 11:30:19 +01:00
* @return bool
2011-02-13 18:06:41 +00:00
*/
private function isSimpleInstance($id, $definition)
2011-01-05 11:13:27 +00:00
{
foreach (array_merge(array($definition), $this->getInlinedDefinitions($definition)) as $sDefinition) {
if ($definition !== $sDefinition && !$this->hasReference($id, $sDefinition->getMethodCalls())) {
continue;
}
if ($sDefinition->getMethodCalls() || $sDefinition->getProperties() || $sDefinition->getConfigurator()) {
2011-01-05 11:13:27 +00:00
return false;
}
}
return true;
}
2011-02-13 18:06:41 +00:00
/**
* Adds method calls to a service definition.
*
2012-05-18 18:41:48 +01:00
* @param string $id
* @param Definition $definition
2012-05-18 18:41:48 +01:00
* @param string $variableName
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*/
private function addServiceMethodCalls($id, $definition, $variableName = 'instance')
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
2011-01-05 11:13:27 +00:00
$calls .= $this->wrapServiceConditionals($call[1], sprintf(" \$%s->%s(%s);\n", $variableName, $call[0], implode(', ', $arguments)));
}
2010-01-04 14:26:20 +00:00
return $calls;
}
2010-01-04 14:26:20 +00:00
private function addServiceProperties($id, $definition, $variableName = 'instance')
{
$code = '';
foreach ($definition->getProperties() as $name => $value) {
$code .= sprintf(" \$%s->%s = %s;\n", $variableName, $name, $this->dumpValue($value));
}
return $code;
}
2011-02-13 18:06:41 +00:00
/**
* Generates the inline definition setup.
*
2012-05-18 18:41:48 +01:00
* @param string $id
* @param Definition $definition
2014-07-26 13:09:47 +01:00
*
2011-02-13 18:06:41 +00:00
* @return string
2014-07-26 13:09:47 +01:00
*
* @throws ServiceCircularReferenceException when the container contains a circular reference
2011-02-13 18:06:41 +00:00
*/
private function addServiceInlinedDefinitionsSetup($id, $definition)
2011-01-05 11:13:27 +00:00
{
$this->referenceVariables[$id] = new Variable('instance');
$code = '';
$processed = new \SplObjectStorage();
2011-01-05 11:13:27 +00:00
foreach ($this->getInlinedDefinitions($definition) as $iDefinition) {
if ($processed->contains($iDefinition)) {
continue;
}
$processed->offsetSet($iDefinition);
if (!$this->hasReference($id, $iDefinition->getMethodCalls(), true) && !$this->hasReference($id, $iDefinition->getProperties(), true)) {
2011-01-05 11:13:27 +00:00
continue;
}
// if the instance is simple, the return statement has already been generated
// so, the only possible way to get there is because of a circular reference
if ($this->isSimpleInstance($id, $definition)) {
throw new ServiceCircularReferenceException($id, array($id));
}
$name = (string) $this->definitionVariables->offsetGet($iDefinition);
$code .= $this->addServiceMethodCalls(null, $iDefinition, $name);
$code .= $this->addServiceProperties(null, $iDefinition, $name);
$code .= $this->addServiceConfigurator(null, $iDefinition, $name);
2011-01-05 11:13:27 +00:00
}
if ('' !== $code) {
$code .= "\n";
}
return $code;
}
2011-02-13 18:06:41 +00:00
/**
2014-12-21 17:00:50 +00:00
* Adds configurator definition.
2011-02-13 18:06:41 +00:00
*
2012-05-18 18:41:48 +01:00
* @param string $id
* @param Definition $definition
2012-05-18 18:41:48 +01:00
* @param string $variableName
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*/
private function addServiceConfigurator($id, $definition, $variableName = 'instance')
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 ($callable[0] instanceof Reference
|| ($callable[0] instanceof Definition && $this->definitionVariables->contains($callable[0]))) {
return sprintf(" %s->%s(\$%s);\n", $this->dumpValue($callable[0]), $callable[1], $variableName);
}
$class = $this->dumpValue($callable[0]);
// If the class is a string we can optimize call_user_func away
if (strpos($class, "'") === 0) {
return sprintf(" %s::%s(\$%s);\n", $this->dumpLiteralClass($class), $callable[1], $variableName);
}
return sprintf(" call_user_func(array(%s, '%s'), \$%s);\n", $this->dumpValue($callable[0]), $callable[1], $variableName);
}
return sprintf(" %s(\$%s);\n", $callable, $variableName);
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
* @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)
{
2011-01-05 11:13:27 +00:00
$this->definitionVariables = new \SplObjectStorage();
$this->referenceVariables = array();
$this->variableCount = 0;
$return = array();
if ($definition->isSynthetic()) {
$return[] = '@throws RuntimeException always since this service is expected to be injected dynamically';
} elseif ($class = $definition->getClass()) {
$return[] = sprintf('@return %s A %s instance.', 0 === strpos($class, '%') ? 'object' : '\\'.ltrim($class, '\\'), ltrim($class, '\\'));
} elseif ($definition->getFactory()) {
$factory = $definition->getFactory();
if (is_string($factory)) {
$return[] = sprintf('@return object An instance returned by %s().', $factory);
} elseif (is_array($factory) && (is_string($factory[0]) || $factory[0] instanceof Definition || $factory[0] instanceof Reference)) {
2014-09-24 07:35:53 +01:00
if (is_string($factory[0]) || $factory[0] instanceof Reference) {
$return[] = sprintf('@return object An instance returned by %s::%s().', (string) $factory[0], $factory[1]);
} elseif ($factory[0] instanceof Definition) {
$return[] = sprintf('@return object An instance returned by %s::%s().', $factory[0]->getClass(), $factory[1]);
}
}
}
2015-08-07 17:08:40 +01:00
if ($definition->isDeprecated()) {
if ($return && 0 === strpos($return[count($return) - 1], '@return')) {
$return[] = '';
}
$return[] = sprintf('@deprecated %s', $definition->getDeprecationMessage($id));
2015-08-07 17:08:40 +01:00
}
$return = str_replace("\n * \n", "\n *\n", implode("\n * ", $return));
$doc = '';
2015-09-04 20:54:37 +01:00
if ($definition->isShared()) {
2015-12-21 11:01:57 +00:00
$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
2011-01-05 11:13:27 +00:00
if (!$definition->isPublic()) {
2015-12-21 11:01:57 +00:00
$doc .= <<<'EOF'
2011-01-05 11:13:27 +00:00
*
* This service is private.
* If you want to be able to request this service from the container directly,
* make it public, otherwise you might end up with broken code.
EOF;
}
if ($definition->isAutowired()) {
$doc = <<<EOF
*
* This service is autowired.
EOF;
}
2013-03-29 23:21:12 +00:00
if ($definition->isLazy()) {
2014-10-22 19:27:13 +01:00
$lazyInitialization = '$lazyLoad = true';
$lazyInitializationDoc = "\n * @param bool \$lazyLoad whether to try lazy-loading the service with a proxy\n *";
2013-03-29 23:21:12 +00:00
} else {
2014-10-22 19:27:13 +01:00
$lazyInitialization = '';
2013-03-29 23:21:12 +00:00
$lazyInitializationDoc = '';
}
// with proxies, for 5.3.3 compatibility, the getter must be public to be accessible to the initializer
$isProxyCandidate = $this->getProxyDumper()->isProxyCandidate($definition);
2014-10-22 19:27:13 +01:00
$visibility = $isProxyCandidate ? 'public' : 'protected';
$code = <<<EOF
2010-01-04 14:26:20 +00:00
/*{$this->docStar}
* Gets the '$id' service.$doc
2013-03-29 23:21:12 +00:00
*$lazyInitializationDoc
* $return
*/
{$visibility} function get{$this->camelize($id)}Service($lazyInitialization)
{
2010-01-04 14:26:20 +00:00
EOF;
2010-01-04 14:26:20 +00:00
2013-03-29 23:21:12 +00:00
$code .= $isProxyCandidate ? $this->getProxyDumper()->getProxyFactoryCode($definition, $id) : '';
if ($definition->isSynthetic()) {
$code .= sprintf(" throw new RuntimeException('You have requested a synthetic service (\"%s\"). The DIC does not know how to construct this service.');\n }\n", $id);
} else {
2015-08-07 17:08:40 +01:00
if ($definition->isDeprecated()) {
$code .= sprintf(" @trigger_error(%s, E_USER_DEPRECATED);\n\n", var_export($definition->getDeprecationMessage($id), true));
2015-08-07 17:08:40 +01:00
}
$code .=
$this->addServiceInclude($id, $definition).
$this->addServiceLocalTempVariables($id, $definition).
$this->addServiceInlinedDefinitions($id, $definition).
$this->addServiceInstance($id, $definition).
$this->addServiceInlinedDefinitionsSetup($id, $definition).
$this->addServiceMethodCalls($id, $definition).
$this->addServiceProperties($id, $definition).
$this->addServiceConfigurator($id, $definition).
$this->addServiceReturn($id, $definition)
;
}
2011-01-05 11:13:27 +00:00
$this->definitionVariables = null;
$this->referenceVariables = null;
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 multiple services.
2011-02-13 18:06:41 +00:00
*
* @return string
*/
private function addServices()
{
$publicServices = $privateServices = '';
2011-01-26 23:14:31 +00:00
$definitions = $this->container->getDefinitions();
ksort($definitions);
foreach ($definitions as $id => $definition) {
2011-01-05 11:13:27 +00:00
if ($definition->isPublic()) {
$publicServices .= $this->addService($id, $definition);
} else {
$privateServices .= $this->addService($id, $definition);
}
}
return $publicServices.$privateServices;
}
private function addNewInstance(Definition $definition, $return, $instantiation)
{
$class = $this->dumpValue($definition->getClass());
$arguments = array();
foreach ($definition->getArguments() as $value) {
$arguments[] = $this->dumpValue($value);
}
if (null !== $definition->getFactory()) {
$callable = $definition->getFactory();
if (is_array($callable)) {
if (!preg_match('/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$/', $callable[1])) {
throw new RuntimeException(sprintf('Cannot dump definition because of invalid factory method (%s)', $callable[1] ?: 'n/a'));
}
if ($callable[0] instanceof Reference
|| ($callable[0] instanceof Definition && $this->definitionVariables->contains($callable[0]))) {
return sprintf(" $return{$instantiation}%s->%s(%s);\n", $this->dumpValue($callable[0]), $callable[1], $arguments ? implode(', ', $arguments) : '');
}
$class = $this->dumpValue($callable[0]);
// If the class is a string we can optimize call_user_func away
if (strpos($class, "'") === 0) {
return sprintf(" $return{$instantiation}%s::%s(%s);\n", $this->dumpLiteralClass($class), $callable[1], $arguments ? implode(', ', $arguments) : '');
}
return sprintf(" $return{$instantiation}call_user_func(array(%s, '%s')%s);\n", $this->dumpValue($callable[0]), $callable[1], $arguments ? ', '.implode(', ', $arguments) : '');
}
return sprintf(" $return{$instantiation}\\%s(%s);\n", $callable, $arguments ? implode(', ', $arguments) : '');
}
if (false !== strpos($class, '$')) {
return sprintf(" \$class = %s;\n\n $return{$instantiation}new \$class(%s);\n", $class, implode(', ', $arguments));
}
return sprintf(" $return{$instantiation}new %s(%s);\n", $this->dumpLiteralClass($class), implode(', ', $arguments));
}
2011-02-13 18:06:41 +00:00
/**
* Adds the class headers.
*
2012-05-15 21:19:31 +01:00
* @param string $class Class name
2011-02-13 18:06:41 +00:00
* @param string $baseClass The name of the base class
* @param string $namespace The class namespace
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*/
private function startClass($class, $baseClass, $namespace)
2010-01-04 14:26:20 +00:00
{
$bagClass = $this->container->isFrozen() ? 'use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;' : 'use Symfony\Component\DependencyInjection\ParameterBag\\ParameterBag;';
$namespaceLine = $namespace ? "namespace $namespace;\n" : '';
2010-06-27 17:28:29 +01:00
return <<<EOF
2010-01-04 14:26:20 +00:00
<?php
$namespaceLine
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
use Symfony\Component\DependencyInjection\Exception\LogicException;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
$bagClass
2010-01-04 14:26:20 +00:00
/*{$this->docStar}
2015-03-24 21:20:39 +00:00
* $class.
2010-01-04 14:26:20 +00:00
*
* This class has been auto-generated
* by the Symfony Dependency Injection Component.
2010-01-04 14:26:20 +00:00
*/
class $class extends $baseClass
2010-01-04 14:26:20 +00:00
{
private \$parameters;
private \$targetDirs = array();
2010-01-04 14:26:20 +00:00
EOF;
}
2010-01-04 14:26:20 +00:00
2011-02-13 18:06:41 +00:00
/**
* Adds the constructor.
*
* @return string
*/
private function addConstructor()
2010-01-04 14:26:20 +00:00
{
$targetDirs = $this->exportTargetDirs();
$arguments = $this->container->getParameterBag()->all() ? 'new ParameterBag($this->getDefaultParameters())' : null;
2011-01-17 22:28:59 +00:00
$code = <<<EOF
2010-01-04 14:26:20 +00:00
/*{$this->docStar}
* Constructor.
*/
public function __construct()
{{$targetDirs}
parent::__construct($arguments);
2011-01-17 22:28:59 +00:00
EOF;
$code .= $this->addMethodMap();
$code .= $this->addAliases();
2015-12-21 11:01:57 +00:00
$code .= <<<'EOF'
}
2010-01-04 14:26:20 +00:00
EOF;
return $code;
}
2011-02-13 18:06:41 +00:00
/**
* Adds the constructor for a frozen container.
*
* @return string
*/
private function addFrozenConstructor()
{
$targetDirs = $this->exportTargetDirs();
$code = <<<EOF
/*{$this->docStar}
* Constructor.
*/
public function __construct()
{{$targetDirs}
2012-08-10 12:48:23 +01:00
EOF;
if ($this->container->getParameterBag()->all()) {
$code .= "\n \$this->parameters = \$this->getDefaultParameters();\n";
}
2015-09-04 20:54:37 +01:00
$code .= "\n \$this->services = array();\n";
$code .= $this->addMethodMap();
$code .= $this->addAliases();
2015-12-21 11:01:57 +00:00
$code .= <<<'EOF'
}
EOF;
return $code;
}
/**
* Adds the constructor for a frozen container.
*
* @return string
*/
private function addFrozenCompile()
{
return <<<EOF
/*{$this->docStar}
* {@inheritdoc}
*/
public function compile()
{
2014-09-22 16:52:38 +01:00
throw new LogicException('You cannot compile a dumped frozen container.');
}
EOF;
}
/**
2014-12-21 17:00:50 +00:00
* Adds the methodMap property definition.
*
* @return string
*/
private function addMethodMap()
{
if (!$definitions = $this->container->getDefinitions()) {
return '';
}
$code = " \$this->methodMap = array(\n";
ksort($definitions);
foreach ($definitions as $id => $definition) {
$code .= ' '.var_export($id, true).' => '.var_export('get'.$this->camelize($id).'Service', true).",\n";
}
2014-09-21 19:53:12 +01:00
return $code." );\n";
}
/**
2014-12-21 17:00:50 +00:00
* Adds the aliases property definition.
*
* @return string
*/
private function addAliases()
{
if (!$aliases = $this->container->getAliases()) {
if ($this->container->isFrozen()) {
return "\n \$this->aliases = array();\n";
} else {
return '';
}
}
2011-01-17 22:28:59 +00:00
$code = " \$this->aliases = array(\n";
ksort($aliases);
foreach ($aliases as $alias => $id) {
$id = (string) $id;
while (isset($aliases[$id])) {
$id = (string) $aliases[$id];
}
$code .= ' '.var_export($alias, true).' => '.var_export($id, true).",\n";
}
2014-09-21 19:53:12 +01:00
return $code." );\n";
2010-01-04 14:26:20 +00:00
}
2011-02-13 18:06:41 +00:00
/**
* Adds default parameters method.
*
* @return string
*/
private 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
$code = '';
if ($this->container->isFrozen()) {
2015-12-21 11:01:57 +00:00
$code .= <<<'EOF'
/**
* {@inheritdoc}
*/
2015-12-21 11:01:57 +00:00
public function getParameter($name)
{
2015-12-21 11:01:57 +00:00
$name = strtolower($name);
2015-12-21 11:01:57 +00:00
if (!(isset($this->parameters[$name]) || array_key_exists($name, $this->parameters))) {
throw new InvalidArgumentException(sprintf('The parameter "%s" must be defined.', $name));
}
2015-12-21 11:01:57 +00:00
return $this->parameters[$name];
}
/**
* {@inheritdoc}
*/
2015-12-21 11:01:57 +00:00
public function hasParameter($name)
{
2015-12-21 11:01:57 +00:00
$name = strtolower($name);
2013-01-13 19:19:05 +00:00
2015-12-21 11:01:57 +00:00
return isset($this->parameters[$name]) || array_key_exists($name, $this->parameters);
}
/**
* {@inheritdoc}
*/
2015-12-21 11:01:57 +00:00
public function setParameter($name, $value)
{
throw new LogicException('Impossible to call set() on a frozen ParameterBag.');
}
/**
* {@inheritdoc}
*/
public function getParameterBag()
{
2015-12-21 11:01:57 +00:00
if (null === $this->parameterBag) {
$this->parameterBag = new FrozenParameterBag($this->parameters);
}
2015-12-21 11:01:57 +00:00
return $this->parameterBag;
}
EOF;
if ('' === $this->docStar) {
$code = str_replace('/**', '/*', $code);
}
}
$code .= <<<EOF
2010-01-04 14:26:20 +00:00
/*{$this->docStar}
* 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;
return $code;
2010-01-04 14:26:20 +00:00
}
2011-02-13 18:06:41 +00:00
/**
* Exports parameters.
*
2014-11-30 13:33:44 +00:00
* @param array $parameters
* @param string $path
* @param int $indent
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*
* @throws InvalidArgumentException
2011-02-13 18:06:41 +00:00
*/
private function exportParameters($parameters, $path = '', $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, $path.'/'.$key, $indent + 4);
2011-01-05 11:13:27 +00:00
} elseif ($value instanceof Variable) {
throw new InvalidArgumentException(sprintf('You cannot dump a container with parameters that contain variable references. Variable "%s" found in "%s".', $value, $path.'/'.$key));
2011-01-05 11:13:27 +00:00
} elseif ($value instanceof Definition) {
throw new InvalidArgumentException(sprintf('You cannot dump a container with parameters that contain service definitions. Definition for "%s" found in "%s".', $value->getClass(), $path.'/'.$key));
} 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 in "%s").', $value, $path.'/'.$key));
} elseif ($value instanceof Expression) {
throw new InvalidArgumentException(sprintf('You cannot dump a container with parameters that contain expressions. Expression "%s" found in "%s".', $value, $path.'/'.$key));
} else {
$value = $this->export($value);
}
$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
2011-02-13 18:06:41 +00:00
/**
* Ends the class definition.
*
2011-06-04 16:30:56 +01:00
* @return string
2011-02-13 18:06:41 +00:00
*/
private function endClass()
2010-01-04 14:26:20 +00:00
{
2015-12-21 11:01:57 +00:00
return <<<'EOF'
}
2010-01-04 14:26:20 +00:00
EOF;
2010-01-04 14:26:20 +00:00
}
2011-02-13 18:06:41 +00:00
/**
* Wraps the service conditionals.
*
* @param string $value
* @param string $code
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*/
private 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
}
2011-02-13 18:06:41 +00:00
/**
2013-04-21 13:26:17 +01:00
* Builds service calls from arguments.
2011-02-13 18:06:41 +00:00
*
2014-11-30 13:33:44 +00:00
* @param array $arguments
* @param array &$calls By reference
* @param array &$behavior By reference
2011-02-13 18:06:41 +00:00
*/
private function getServiceCallsFromArguments(array $arguments, array &$calls, array &$behavior)
2011-01-05 11:13:27 +00:00
{
foreach ($arguments as $argument) {
if (is_array($argument)) {
$this->getServiceCallsFromArguments($argument, $calls, $behavior);
2011-12-18 13:42:59 +00:00
} elseif ($argument instanceof Reference) {
2011-01-05 11:13:27 +00:00
$id = (string) $argument;
if (!isset($calls[$id])) {
$calls[$id] = 0;
}
if (!isset($behavior[$id])) {
$behavior[$id] = $argument->getInvalidBehavior();
2011-12-18 13:42:59 +00:00
} elseif (ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE !== $behavior[$id]) {
2011-01-05 11:13:27 +00:00
$behavior[$id] = $argument->getInvalidBehavior();
}
++$calls[$id];
2011-01-05 11:13:27 +00:00
}
}
}
2011-02-13 18:06:41 +00:00
/**
2013-04-21 13:26:17 +01:00
* Returns the inline definition.
2011-02-13 18:06:41 +00:00
*
* @param Definition $definition
2011-12-13 07:50:54 +00:00
*
* @return array
2011-02-13 18:06:41 +00:00
*/
private function getInlinedDefinitions(Definition $definition)
2011-01-05 11:13:27 +00:00
{
if (false === $this->inlinedDefinitions->contains($definition)) {
$definitions = array_merge(
$this->getDefinitionsFromArguments($definition->getArguments()),
$this->getDefinitionsFromArguments($definition->getMethodCalls()),
$this->getDefinitionsFromArguments($definition->getProperties()),
$this->getDefinitionsFromArguments(array($definition->getConfigurator())),
$this->getDefinitionsFromArguments(array($definition->getFactory()))
);
2011-01-05 11:13:27 +00:00
$this->inlinedDefinitions->offsetSet($definition, $definitions);
return $definitions;
}
return $this->inlinedDefinitions->offsetGet($definition);
}
2011-02-13 18:06:41 +00:00
/**
2013-04-21 13:26:17 +01:00
* Gets the definition from arguments.
2011-02-13 18:06:41 +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 getDefinitionsFromArguments(array $arguments)
2011-01-05 11:13:27 +00:00
{
$definitions = array();
foreach ($arguments as $argument) {
if (is_array($argument)) {
$definitions = array_merge($definitions, $this->getDefinitionsFromArguments($argument));
2011-12-18 13:42:59 +00:00
} elseif ($argument instanceof Definition) {
2011-01-05 11:13:27 +00:00
$definitions = array_merge(
$definitions,
$this->getInlinedDefinitions($argument),
array($argument)
);
}
}
return $definitions;
}
2011-02-13 18:06:41 +00:00
/**
2013-04-21 13:26:17 +01:00
* Checks if a service id has a reference.
2011-02-13 18:06:41 +00:00
*
2014-11-30 13:33:44 +00:00
* @param string $id
* @param array $arguments
* @param bool $deep
* @param array $visited
2011-12-13 07:50:54 +00:00
*
2014-04-16 11:30:19 +01:00
* @return bool
2011-02-13 18:06:41 +00:00
*/
private function hasReference($id, array $arguments, $deep = false, array &$visited = array())
2011-01-05 11:13:27 +00:00
{
foreach ($arguments as $argument) {
if (is_array($argument)) {
2013-02-04 11:10:17 +00:00
if ($this->hasReference($id, $argument, $deep, $visited)) {
2011-01-05 11:13:27 +00:00
return true;
}
2011-12-18 13:42:59 +00:00
} elseif ($argument instanceof Reference) {
$argumentId = (string) $argument;
if ($id === $argumentId) {
2011-01-05 11:13:27 +00:00
return true;
}
if ($deep && !isset($visited[$argumentId])) {
$visited[$argumentId] = true;
2013-02-04 11:10:17 +00:00
$service = $this->container->getDefinition($argumentId);
$arguments = array_merge($service->getMethodCalls(), $service->getArguments(), $service->getProperties());
2013-02-04 11:10:17 +00:00
if ($this->hasReference($id, $arguments, $deep, $visited)) {
return true;
}
}
2011-01-05 11:13:27 +00:00
}
}
return false;
}
2011-02-13 18:06:41 +00:00
/**
* Dumps values.
*
* @param mixed $value
2014-11-30 13:33:44 +00:00
* @param bool $interpolate
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*
* @throws RuntimeException
2011-02-13 18:06:41 +00:00
*/
private 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 ($value instanceof Definition) {
2011-01-05 11:13:27 +00:00
if (null !== $this->definitionVariables && $this->definitionVariables->contains($value)) {
return $this->dumpValue($this->definitionVariables->offsetGet($value), $interpolate);
}
if (count($value->getMethodCalls()) > 0) {
throw new RuntimeException('Cannot dump definitions which have method calls.');
2011-01-05 11:13:27 +00:00
}
if (null !== $value->getConfigurator()) {
throw new RuntimeException('Cannot dump definitions which have a configurator.');
2011-01-05 11:13:27 +00:00
}
$arguments = array();
foreach ($value->getArguments() as $argument) {
$arguments[] = $this->dumpValue($argument);
}
if (null !== $value->getFactory()) {
$factory = $value->getFactory();
if (is_string($factory)) {
return sprintf('\\%s(%s)', $factory, implode(', ', $arguments));
}
if (is_array($factory)) {
if (!preg_match('/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$/', $factory[1])) {
throw new RuntimeException(sprintf('Cannot dump definition because of invalid factory method (%s)', $factory[1] ?: 'n/a'));
}
if (is_string($factory[0])) {
return sprintf('%s::%s(%s)', $this->dumpLiteralClass($this->dumpValue($factory[0])), $factory[1], implode(', ', $arguments));
}
if ($factory[0] instanceof Definition) {
return sprintf("call_user_func(array(%s, '%s')%s)", $this->dumpValue($factory[0]), $factory[1], count($arguments) > 0 ? ', '.implode(', ', $arguments) : '');
}
if ($factory[0] instanceof Reference) {
return sprintf('%s->%s(%s)', $this->dumpValue($factory[0]), $factory[1], implode(', ', $arguments));
}
}
throw new RuntimeException('Cannot dump definition because of invalid factory');
}
$class = $value->getClass();
if (null === $class) {
throw new RuntimeException('Cannot dump definitions which have no class nor factory.');
}
return sprintf('new %s(%s)', $this->dumpLiteralClass($this->dumpValue($class)), implode(', ', $arguments));
} elseif ($value instanceof Variable) {
2011-01-05 11:13:27 +00:00
return '$'.$value;
} elseif ($value instanceof Reference) {
2011-01-05 11:13:27 +00:00
if (null !== $this->referenceVariables && isset($this->referenceVariables[$id = (string) $value])) {
return $this->dumpValue($this->referenceVariables[$id], $interpolate);
}
return $this->getServiceCall((string) $value, $value);
} elseif ($value instanceof Expression) {
return $this->getExpressionLanguage()->compile((string) $value, array('this' => 'container'));
} elseif ($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 {
2014-12-03 22:04:33 +00:00
$replaceParameters = function ($match) {
return "'.".$this->dumpParameter(strtolower($match[2])).".'";
};
$code = str_replace('%%', '%', preg_replace_callback('/(?<!%)(%)([^%]+)\1/', $replaceParameters, $this->export($value)));
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 $this->export($value);
}
2010-01-04 14:26:20 +00:00
}
/**
* Dumps a string to a literal (aka PHP Code) class value.
*
* @param string $class
*
* @return string
*
* @throws RuntimeException
*/
private function dumpLiteralClass($class)
{
if (false !== strpos($class, '$')) {
throw new RuntimeException('Cannot dump definitions which have a variable class name.');
}
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 RuntimeException(sprintf('Cannot dump definition because of invalid class name (%s)', $class ?: 'n/a'));
}
Merge branch '2.4' into 2.5 * 2.4: fixed CS [Process] fixed some volatile tests [HttpKernel] fixed a volatile test [HttpFoundation] fixed some volatile tests [Tests] PHPUnit Optimizations Use getPathname() instead of string casting to get BinaryFileReponse file path Conflicts: src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/full.php src/Symfony/Bundle/FrameworkBundle/Tests/Functional/Bundle/TestBundle/Controller/SessionController.php src/Symfony/Component/ClassLoader/Tests/ApcUniversalClassLoaderTest.php src/Symfony/Component/Console/Formatter/OutputFormatterStyle.php src/Symfony/Component/HttpKernel/DataCollector/LoggerDataCollector.php src/Symfony/Component/HttpKernel/Debug/TraceableEventDispatcher.php src/Symfony/Component/HttpKernel/Tests/DataCollector/LoggerDataCollectorTest.php src/Symfony/Component/HttpKernel/Tests/DataCollector/RequestDataCollectorTest.php src/Symfony/Component/HttpKernel/Tests/Debug/TraceableEventDispatcherTest.php src/Symfony/Component/Process/Tests/AbstractProcessTest.php src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php src/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php src/Symfony/Component/Security/Acl/Dbal/MutableAclProvider.php src/Symfony/Component/Security/Core/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php src/Symfony/Component/Security/Http/Tests/Firewall/SwitchUserListenerTest.php src/Symfony/Component/Serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php src/Symfony/Component/Translation/Tests/Dumper/IcuResFileDumperTest.php src/Symfony/Component/Validator/Constraints/ChoiceValidator.php src/Symfony/Component/Validator/Constraints/CollectionValidator.php src/Symfony/Component/Validator/Tests/Constraints/AbstractConstraintValidatorTest.php src/Symfony/Component/Validator/Tests/Constraints/IsbnValidatorTest.php src/Symfony/Component/Validator/Tests/ValidationVisitorTest.php src/Symfony/Component/Yaml/Parser.php
2014-09-22 10:14:18 +01:00
return '\\'.substr(str_replace('\\\\', '\\', $class), 1, -1);
}
2011-02-13 18:06:41 +00:00
/**
2014-12-21 17:00:50 +00:00
* Dumps a parameter.
2011-02-13 18:06:41 +00:00
*
* @param string $name
2011-12-13 07:50:54 +00:00
*
2011-02-13 18:06:41 +00:00
* @return string
*/
2014-12-03 22:04:33 +00:00
private function dumpParameter($name)
2010-06-27 17:28:29 +01:00
{
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));
}
2011-02-13 18:06:41 +00:00
/**
2014-12-21 17:00:50 +00:00
* Gets a service call.
2011-02-13 18:06:41 +00:00
*
2011-04-23 16:05:44 +01:00
* @param string $id
* @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
{
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)) {
2011-01-07 14:44:29 +00:00
$id = (string) $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
}
2011-01-05 11:13:27 +00:00
/**
* Convert a service id to a valid PHP method name.
*
* @param string $id
*
* @return string
*
* @throws InvalidArgumentException
*/
private function camelize($id)
{
$name = Container::camelize($id);
if (!preg_match('/^[a-zA-Z0-9_\x7f-\xff]+$/', $name)) {
throw new InvalidArgumentException(sprintf('Service id "%s" cannot be converted to a valid PHP method name.', $id));
}
return $name;
}
2011-01-05 11:13:27 +00:00
/**
2014-12-21 17:00:50 +00:00
* Returns the next name to use.
2011-01-05 11:13:27 +00:00
*
* @return string
*/
private function getNextVariableName()
2011-01-05 11:13:27 +00:00
{
$firstChars = self::FIRST_CHARS;
$firstCharsLength = strlen($firstChars);
$nonFirstChars = self::NON_FIRST_CHARS;
$nonFirstCharsLength = strlen($nonFirstChars);
2011-02-27 19:56:29 +00:00
while (true) {
2011-01-05 11:13:27 +00:00
$name = '';
$i = $this->variableCount;
2011-02-27 19:56:29 +00:00
if ('' === $name) {
$name .= $firstChars[$i % $firstCharsLength];
$i = (int) ($i / $firstCharsLength);
2011-01-05 11:13:27 +00:00
}
2011-02-27 19:56:29 +00:00
while ($i > 0) {
--$i;
$name .= $nonFirstChars[$i % $nonFirstCharsLength];
$i = (int) ($i / $nonFirstCharsLength);
2011-01-05 11:13:27 +00:00
}
++$this->variableCount;
2011-01-05 11:13:27 +00:00
// check that the name is not reserved
if (in_array($name, $this->reservedVariables, true)) {
continue;
}
return $name;
}
}
private function getExpressionLanguage()
{
if (null === $this->expressionLanguage) {
if (!class_exists('Symfony\Component\ExpressionLanguage\ExpressionLanguage')) {
throw new RuntimeException('Unable to use expressions as the Symfony ExpressionLanguage component is not installed.');
}
$providers = $this->container->getExpressionLanguageProviders();
$this->expressionLanguage = new ExpressionLanguage(null, $providers);
if ($this->container->isTrackingResources()) {
foreach ($providers as $provider) {
$this->container->addObjectResource($provider);
}
}
}
return $this->expressionLanguage;
}
2014-12-02 21:48:32 +00:00
private function exportTargetDirs()
{
return null === $this->targetDirRegex ? '' : <<<EOF
\$dir = __DIR__;
for (\$i = 1; \$i <= {$this->targetDirMaxMatches}; ++\$i) {
\$this->targetDirs[\$i] = \$dir = dirname(\$dir);
}
EOF;
}
2014-12-02 21:48:32 +00:00
private function export($value)
{
if (null !== $this->targetDirRegex && is_string($value) && preg_match($this->targetDirRegex, $value, $matches, PREG_OFFSET_CAPTURE)) {
$prefix = $matches[0][1] ? var_export(substr($value, 0, $matches[0][1]), true).'.' : '';
$suffix = $matches[0][1] + strlen($matches[0][0]);
$suffix = isset($value[$suffix]) ? '.'.var_export(substr($value, $suffix), true) : '';
$dirname = '__DIR__';
if (0 < $offset = 1 + $this->targetDirMaxMatches - count($matches)) {
$dirname = sprintf('$this->targetDirs[%d]', $offset);
2014-12-02 21:48:32 +00:00
}
if ($prefix || $suffix) {
return sprintf('(%s%s%s)', $prefix, $dirname, $suffix);
}
return $dirname;
}
return var_export($value, true);
}
2010-01-04 14:26:20 +00:00
}