Laravel如何推迟在单个服务提供商中列出的多个绑定?

时间:2015-04-28 23:51:18

标签: php laravel laravel-5 service-provider deferred-loading

我希望我的所有存储库都列在一个服务提供商中,但我希望它们一次全部加载...

考虑下面的服务提供商:

class RepositoryServiceProvider extends ServiceProvider {

    protected $defer = true;

    public function register()
    {
        $this->app->bind(
            'App\Repositories\Contracts\FooRepository',
            'App\Repositories\SQL\FooSQLRepository');

        $this->app->bind(
            'App\Repositories\Contracts\BarRepository',
            'App\Repositories\SQL\BarSQLRepository');

        // and more to be added later...
    }

    public function provides()
    {

        // Will it defer and load all these at once? Or only the one(s) needed?
        return ['App\Repositories\Contracts\FooRepository',
                'App\Repositories\Contracts\BarRepository'];
    }

}

According to the Laravel docs,我可以推迟绑定注册直到需要。但是,当我在单个服务提供商中添加多个绑定时,这是否有效?具体来说,我的意思是,它会推迟然后加载所有或加载只需要吗?

1 个答案:

答案 0 :(得分:3)

Laravel将注册所有绑定,即使只需要一个绑定。延迟功能实际上非常简单。首先,创建provides()中的条目和实际提供者的映射:

Illuminate\Foundation\ProviderRepository@compileManifest

if ($instance->isDeferred())
{
    foreach ($instance->provides() as $service)
    {
        $manifest['deferred'][$service] = $provider;
    }
    $manifest['when'][$provider] = $instance->when();
}

然后在make() ...

中调用Illuminate\Foundation\Application
if (isset($this->deferredServices[$abstract]))
{
    $this->loadDeferredProvider($abstract);
}

...并且绑定与延迟提供者之一匹配,它将在此处结束:

Illuminate\Foundation\Application@registerDeferredProvider

$this->register($instance = new $provider($this));

if ( ! $this->booted)
{
    $this->booting(function() use ($instance)
    {
        $this->bootProvider($instance);
    });
}

正如您可能知道的那样,现在提供商照常注册,这意味着register()boot()被调用。如果您考虑一下,它甚至不可能从服务提供商加载一个绑定而不包括其他绑定,因为它们都是在一个方法中完成的。