7

我正在努力通过注入的标记服务组中的类名获取特定服务。

这是一个示例:我将所有实现为的服务标记DriverInterfaceapp.driver并将其绑定到$drivers变量。

在其他一些服务中,我需要获取所有那些被标记app.driver和实例化的驱动程序,并且只使用其中的几个。但是需要什么驱动程序是动态的。

服务.yml

_defaults:
        autowire: true
        autoconfigure: true
        public: false
        bind:
            $drivers: [!tagged app.driver]

_instanceof:
        DriverInterface:
            tags: ['app.driver']

其他一些服务:

/**
 * @var iterable
 */
private $drivers;

/**
 * @param iterable $drivers
 */
public function __construct(iterable $drivers) 
{
    $this->drivers = $drivers;
}

public function getDriverByClassName(string $className): DriverInterface
{
    ????????
}

因此,实现的服务作为可迭代结果DriverInterface注入到参数中。$this->drivers我只能foreach通过它们,但随后所有服务都将被实例化。

是否有其他方法可以注入这些服务以通过类名从它们那里获取特定服务而不实例化其他服务?

我知道有可能将这些驱动程序公开并使用容器,但如果可以通过其他方式进行,我想避免将容器注入服务。

4

2 回答 2

13

您不再(从 Symfony 4 开始)需要创建编译器通道来配置服务定位器。

可以通过配置完成所有事情,让 Symfony 执行“魔法”。

您可以在配置中添加以下内容:

services:
  _instanceof:
    DriverInterface:
      tags: ['app.driver']
      lazy: true

  DriverConsumer:
    arguments:
      - !tagged_locator
        tag: 'app.driver'

需要访问这些而不是接收 的服务会iterable接收ServiceLocatorInterface

class DriverConsumer
{
    private $drivers;
    
    public function __construct(ServiceLocatorInterface $locator) 
    {
        $this->locator = $locator;
    }
    
    public function foo() {
        $driver = $this->locator->get(Driver::class);
        // where Driver is a concrete implementation of DriverInterface
    }
}

就是这样。你不需要任何其他东西,它只是工作tm


完整示例

涉及所有类的完整示例。

我们有:

FooInterface

interface FooInterface
{
    public function whoAmI(): string;
}

AbstractFoo

为了简化实现,我们将在具体服务中扩展一个抽象类:

abstract class AbstractFoo implements FooInterface
{
    public function whoAmI(): string {
        return get_class($this);
    }   
}

服务实现

实现的几个服务FooInterface

class FooOneService extends AbstractFoo { }
class FooTwoService extends AbstractFoo { }

服务的消费者

还有另一个服务需要服务定位器来使用我们刚刚定义的这两个:

class Bar
{
    /**
     * @var \Symfony\Component\DependencyInjection\ServiceLocator
     */
    private $service_locator;

    public function __construct(ServiceLocator $service_locator) {
        $this->service_locator = $service_locator;
    }

    public function handle(): string {
        /** @var \App\Test\FooInterface $service */
        $service = $this->service_locator->get(FooOneService::class);

        return $service->whoAmI();
    }
}

配置

唯一需要的配置是:

services:
  _instanceof:
    App\Test\FooInterface:
      tags: ['test_foo_tag']
      lazy: true
    
  App\Test\Bar:
      arguments:
        - !tagged_locator
          tag: 'test_foo_tag'
            

服务名称的 FQCN 替代方案

如果您不想使用类名来定义自己的服务名称,则可以使用静态方法来定义服务名称。配置将更改为:

App\Test\Bar:
        arguments:
          - !tagged_locator
            tag: 'test_foo_tag'
            default_index_method: 'fooIndex'

其中fooIndex是在每个返回字符串的服务上定义的公共静态方法。注意:如果使用此方法,您将无法通过类名获取服务。

于 2019-09-19T18:07:18.820 回答
5

ServiceLocator将允许通过名称访问服务,而无需实例化其余服务。它确实需要编译器通过,但设置起来并不难。

use Symfony\Component\DependencyInjection\ServiceLocator;
class DriverLocator extends ServiceLocator
{
    // Leave empty
}
# Some Service
public function __construct(DriverLocator $driverLocator) 
{
    $this->driverLocator = $driverLocator;
}

public function getDriverByClassName(string $className): DriverInterface
{
    return $this->driverLocator->get($fullyQualifiedClassName);
}

现在魔术来了:

# src/Kernel.php
# Make your kernel a compiler pass
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
class Kernel extends BaseKernel implements CompilerPassInterface {
...
# Dynamically add all drivers to the locator using a compiler pass
public function process(ContainerBuilder $container)
{
    $driverIds = [];
    foreach ($container->findTaggedServiceIds('app.driver') as $id => $tags) {
        $driverIds[$id] = new Reference($id);
    }
    $driverLocator = $container->getDefinition(DriverLocator::class);
    $driverLocator->setArguments([$driverIds]);
}

并且很快。假设您修复了我可能引入的任何语法错误或拼写错误,它应该可以工作。

并且为了额外的信用,您可以自动注册您的驱动程序类并在您的服务文件中删除该 instanceof 条目。

# Kernel.php
protected function build(ContainerBuilder $container)
{
    $container->registerForAutoconfiguration(DriverInterface::class)
        ->addTag('app.driver');
}
于 2019-03-01T17:31:40.803 回答