How to work with Service Definition Objects

Service definitions are the instructions describing how the container should build a service. They are not the actual services used by your applications. The container will create the actual class instances based on the configuration in the definition.

サービス定義は、コンテナーがサービスを構築する方法を説明する指示です。これらは、アプリケーションで使用される実際のサービスではありません。コンテナは、定義の構成に基づいて実際のクラス インスタンスを作成します。

Normally, you would use YAML, XML or PHP to describe the service definitions. But if you're doing advanced things with the service container, like working with a Compiler Pass or creating a Dependency Injection Extension, you may need to work directly with the Definition objects that define how a service will be instantiated.

通常、YAML、XML、または PHP を使用してサービス定義を記述します。ただし、コンパイラ パスを操作したり、依存性注入拡張機能を作成したりするなど、サービス コンテナーで高度なことを行う場合は、定義オブジェクトを直接操作する必要がある場合があります。サービスをインスタンス化する方法を定義します。

Getting and Setting Service Definitions

There are some helpful methods for working with the service definitions:

サービス定義を操作するための便利な方法がいくつかあります。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use Symfony\Component\DependencyInjection\Definition;

// finds out if there is an "app.mailer" definition
$container->hasDefinition('app.mailer');
// finds out if there is an "app.mailer" definition or alias
$container->has('app.mailer');

// gets the "app.user_config_manager" definition
$definition = $container->getDefinition('app.user_config_manager');
// gets the definition with the "app.user_config_manager" ID or alias
$definition = $container->findDefinition('app.user_config_manager');

// adds a new "app.number_generator" definition
$definition = new Definition(\App\NumberGenerator::class);
$container->setDefinition('app.number_generator', $definition);

// shortcut for the previous method
$container->register('app.number_generator', \App\NumberGenerator::class);

Working with a Definition

Creating a New Definition

In addition to manipulating and retrieving existing definitions, you can also define new service definitions with the Definition class.

既存の定義を操作および取得するだけでなく、Definition クラスを使用して新しいサービス定義を定義することもできます。

Class

The first optional argument of the Definition class is the fully qualified class name of the object returned when the service is fetched from the container:

Definition クラスの最初のオプション引数は、コンテナからサービスがフェッチされるときに返されるオブジェクトの完全修飾クラス名です。
1
2
3
4
5
6
7
8
9
10
11
use App\Config\CustomConfigManager;
use App\Config\UserConfigManager;
use Symfony\Component\DependencyInjection\Definition;

$definition = new Definition(UserConfigManager::class);

// override the class
$definition->setClass(CustomConfigManager::class);

// get the class configured for this definition
$class = $definition->getClass();

Constructor Arguments

The second optional argument of the Definition class is an array with the arguments passed to the constructor of the object returned when the service is fetched from the container:

Definition クラスの 2 番目のオプション引数は、コンテナーからサービスがフェッチされるときに返されるオブジェクトのコンストラクターに渡される引数を含む配列です。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use App\Config\DoctrineConfigManager;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Reference;

$definition = new Definition(DoctrineConfigManager::class, [
    new Reference('doctrine'), // a reference to another service
    '%app.config_table_name%',  // will be resolved to the value of a container parameter
]);

// gets all arguments configured for this definition
$constructorArguments = $definition->getArguments();

// gets a specific argument
$firstArgument = $definition->getArgument(0);

// adds a new named argument
// '$argumentName' = the name of the argument in the constructor, including the '$' symbol
$definition = $definition->setArgument('$argumentName', $argumentValue);

// adds a new argument
$definition->addArgument($argumentValue);

// replaces argument on a specific index (0 = first argument)
$definition->replaceArgument($index, $argument);

// replaces all previously configured arguments with the passed array
$definition->setArguments($arguments);

Caution

注意

Don't use get() to get a service that you want to inject as constructor argument, the service is not yet available. Instead, use a Reference instance as shown above.

get() を使用して、コンストラクター引数として挿入するサービスを取得しないでください。サービスはまだ利用できません。代わりに、上記のように aReference インスタンスを使用してください。

Method Calls

If the service you are working with uses setter injection then you can manipulate any method calls in the definitions as well:

使用しているサービスがセッター注入を使用している場合は、定義内のメソッド呼び出しも操作できます。
1
2
3
4
5
6
7
8
9
10
11
// gets all configured method calls
$methodCalls = $definition->getMethodCalls();

// configures a new method call
$definition->addMethodCall('setLogger', [new Reference('logger')]);

// configures an immutable-setter
$definition->addMethodCall('withLogger', [new Reference('logger')], true);

// replaces all previously configured method calls with the passed array
$definition->setMethodCalls($methodCalls);

Tip

ヒント

There are more examples of specific ways of working with definitions in the PHP code blocks of the Service Container articles such as Using a Factory to Create Services and How to Manage Common Dependencies with Parent Services.

ファクトリを使用してサービスを作成する方法や親サービスとの共通の依存関係を管理する方法など、サービス コンテナーの記事の PHP コード ブロックには、定義を操作する具体的な方法の例が他にもあります。

Note

ノート

The methods here that change service definitions can only be used before the container is compiled. Once the container is compiled you cannot manipulate service definitions further. To learn more about compiling the container, see Compiling the Container.

ここでサービス定義を変更するメソッドは、コンテナーがコンパイルされる前にのみ使用できます。コンテナーがコンパイルされると、それ以上サービス定義を操作することはできません。コンテナーのコンパイルの詳細については、コンテナーのコンパイルを参照してください。

Requiring Files

There might be use cases when you need to include another file just before the service itself gets loaded. To do so, you can use the setFile() method:

サービス自体が読み込まれる直前に、別のファイルを含める必要がある場合があります。これを行うには、setFile() メソッドを使用できます。
1
$definition->setFile('/src/path/to/file/foo.php');

Notice that Symfony will internally call the PHP statement require_once, which means that your file will be included only once per request.

Symfony は PHP ステートメントの require_once を内部的に呼び出すことに注意してください。これは、ファイルがリクエストごとに 1 回だけ含まれることを意味します。