-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
[DI] add ReverseContainer: a locator that turns services back to their ids #30334
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?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\Compiler; | ||
|
||
use Symfony\Component\DependencyInjection\Argument\ServiceClosureArgument; | ||
use Symfony\Component\DependencyInjection\ContainerBuilder; | ||
use Symfony\Component\DependencyInjection\ContainerInterface; | ||
use Symfony\Component\DependencyInjection\Definition; | ||
use Symfony\Component\DependencyInjection\Reference; | ||
|
||
/** | ||
* @author Nicolas Grekas <p@tchwork.com> | ||
*/ | ||
class RegisterReverseContainerPass implements CompilerPassInterface | ||
{ | ||
private $beforeRemoving; | ||
private $serviceId; | ||
private $tagName; | ||
|
||
public function __construct(bool $beforeRemoving, string $serviceId = 'reverse_container', string $tagName = 'container.reversible') | ||
{ | ||
$this->beforeRemoving = $beforeRemoving; | ||
$this->serviceId = $serviceId; | ||
$this->tagName = $tagName; | ||
} | ||
|
||
public function process(ContainerBuilder $container) | ||
{ | ||
if (!$container->hasDefinition($this->serviceId)) { | ||
return; | ||
} | ||
|
||
$refType = $this->beforeRemoving ? ContainerInterface::IGNORE_ON_UNINITIALIZED_REFERENCE : ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE; | ||
$services = []; | ||
foreach ($container->findTaggedServiceIds($this->tagName) as $id => $tags) { | ||
$services[$id] = new Reference($id, $refType); | ||
} | ||
|
||
if ($this->beforeRemoving) { | ||
// prevent inlining of the reverse container | ||
$services[$this->serviceId] = new Reference($this->serviceId, $refType); | ||
} | ||
$locator = $container->getDefinition($this->serviceId)->getArgument(1); | ||
|
||
if ($locator instanceof Reference) { | ||
$locator = $container->getDefinition((string) $locator); | ||
} | ||
if ($locator instanceof Definition) { | ||
foreach ($services as $id => $ref) { | ||
$services[$id] = new ServiceClosureArgument($ref); | ||
} | ||
$locator->replaceArgument(0, $services); | ||
} else { | ||
$locator->setValues($services); | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<?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; | ||
|
||
use Psr\Container\ContainerInterface; | ||
use Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException; | ||
|
||
/** | ||
* Turns public and "container.reversible" services back to their ids. | ||
* | ||
* @author Nicolas Grekas <p@tchwork.com> | ||
*/ | ||
final class ReverseContainer | ||
{ | ||
private $serviceContainer; | ||
private $reversibleLocator; | ||
private $tagName; | ||
private $getServiceId; | ||
|
||
public function __construct(Container $serviceContainer, ContainerInterface $reversibleLocator, string $tagName = 'container.reversible') | ||
{ | ||
$this->serviceContainer = $serviceContainer; | ||
$this->reversibleLocator = $reversibleLocator; | ||
$this->tagName = $tagName; | ||
$this->getServiceId = \Closure::bind(function ($service): ?string { | ||
return array_search($service, $this->services, true) ?: array_search($service, $this->privates, true) ?: null; | ||
}, $serviceContainer, Container::class); | ||
} | ||
|
||
/** | ||
* Returns the id of the passed object when it exists as a service. | ||
* | ||
* To be reversible, services need to be either public or be tagged with "container.reversible". | ||
* | ||
* @param object $service | ||
*/ | ||
public function getId($service): ?string | ||
{ | ||
if ($this->serviceContainer === $service) { | ||
return 'service_container'; | ||
} | ||
|
||
if (null === $id = ($this->getServiceId)($service)) { | ||
nicolas-grekas marked this conversation as resolved.
Show resolved
Hide resolved
|
||
return null; | ||
} | ||
|
||
if ($this->serviceContainer->has($id) || $this->reversibleLocator->has($id)) { | ||
return $id; | ||
} | ||
|
||
return null; | ||
} | ||
|
||
/** | ||
* @return object | ||
* | ||
* @throws ServiceNotFoundException When the service is not reversible | ||
*/ | ||
public function getService(string $id) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not let people use a normal service locator for this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because it's not a normal service locator: you can get here only the ids you can fetch with the other method before. It wouldn't make sense to provide a standard locator interface here Having a different interface highlights this is not the same kind as a regular locator. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. isn't it the same as having a service locator for services tagged with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. those, + public services There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So why does it need the method then? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because an instance of this class is a single consistent scope of services you can reverse. |
||
{ | ||
if ($this->serviceContainer->has($id)) { | ||
return $this->serviceContainer->get($id); | ||
} | ||
|
||
if ($this->reversibleLocator->has($id)) { | ||
return $this->reversibleLocator->get($id); | ||
} | ||
|
||
if (isset($this->serviceContainer->getRemovedIds()[$id])) { | ||
throw new ServiceNotFoundException($id, null, null, [], sprintf('The "%s" service is private and cannot be accessed by reference. You should either make it public, or tag it as "%s".', $id, $this->tagName)); | ||
} | ||
|
||
// will throw a ServiceNotFoundException | ||
$this->serviceContainer->get($id); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<?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\Tests\Compiler; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
use Symfony\Component\DependencyInjection\Argument\ServiceLocatorArgument; | ||
use Symfony\Component\DependencyInjection\Compiler\PassConfig; | ||
use Symfony\Component\DependencyInjection\Compiler\RegisterReverseContainerPass; | ||
use Symfony\Component\DependencyInjection\ContainerBuilder; | ||
use Symfony\Component\DependencyInjection\Reference; | ||
use Symfony\Component\DependencyInjection\ReverseContainer; | ||
|
||
class RegisterReverseContainerPassTest extends TestCase | ||
{ | ||
public function testCompileRemovesUnusedServices() | ||
{ | ||
$container = new ContainerBuilder(); | ||
$container->register('foo', 'stdClass'); | ||
$container->register('reverse_container', ReverseContainer::class) | ||
->addArgument(new Reference('service_container')) | ||
->addArgument(new ServiceLocatorArgument([])) | ||
->setPublic(true); | ||
|
||
$container->addCompilerPass(new RegisterReverseContainerPass(true)); | ||
$container->compile(); | ||
|
||
$this->assertFalse($container->has('foo')); | ||
} | ||
|
||
public function testPublicServices() | ||
{ | ||
$container = new ContainerBuilder(); | ||
$container->register('foo', 'stdClass')->setPublic(true); | ||
$container->register('reverse_container', ReverseContainer::class) | ||
->addArgument(new Reference('service_container')) | ||
->addArgument(new ServiceLocatorArgument([])) | ||
->setPublic(true); | ||
|
||
$container->addCompilerPass(new RegisterReverseContainerPass(true)); | ||
$container->addCompilerPass(new RegisterReverseContainerPass(false), PassConfig::TYPE_AFTER_REMOVING); | ||
$container->compile(); | ||
|
||
$foo = $container->get('foo'); | ||
|
||
$this->assertSame('foo', $container->get('reverse_container')->getId($foo)); | ||
$this->assertSame($foo, $container->get('reverse_container')->getService('foo')); | ||
} | ||
|
||
public function testReversibleServices() | ||
{ | ||
$container = new ContainerBuilder(); | ||
$container->register('bar', 'stdClass')->setProperty('foo', new Reference('foo'))->setPublic(true); | ||
$container->register('foo', 'stdClass')->addTag('container.reversible'); | ||
$container->register('reverse_container', ReverseContainer::class) | ||
->addArgument(new Reference('service_container')) | ||
->addArgument(new ServiceLocatorArgument([])) | ||
->setPublic(true); | ||
|
||
$container->addCompilerPass(new RegisterReverseContainerPass(true)); | ||
$container->addCompilerPass(new RegisterReverseContainerPass(false), PassConfig::TYPE_AFTER_REMOVING); | ||
$container->compile(); | ||
|
||
$foo = $container->get('bar')->foo; | ||
|
||
$this->assertSame('foo', $container->get('reverse_container')->getId($foo)); | ||
$this->assertSame($foo, $container->get('reverse_container')->getService('foo')); | ||
} | ||
} |
Uh oh!
There was an error while loading. Please reload this page.