1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* @link http://www.yiiframework.com/ |
4
|
|
|
* @copyright Copyright (c) 2008 Yii Software LLC |
5
|
|
|
* @license http://www.yiiframework.com/license/ |
6
|
|
|
*/ |
7
|
|
|
|
8
|
|
|
namespace yii\di; |
9
|
|
|
|
10
|
|
|
use ReflectionClass; |
11
|
|
|
use Yii; |
12
|
|
|
use yii\base\Component; |
13
|
|
|
use yii\base\InvalidConfigException; |
14
|
|
|
use yii\helpers\ArrayHelper; |
15
|
|
|
|
16
|
|
|
/** |
17
|
|
|
* Container implements a [dependency injection](http://en.wikipedia.org/wiki/Dependency_injection) container. |
18
|
|
|
* |
19
|
|
|
* A dependency injection (DI) container is an object that knows how to instantiate and configure objects and |
20
|
|
|
* all their dependent objects. For more information about DI, please refer to |
21
|
|
|
* [Martin Fowler's article](http://martinfowler.com/articles/injection.html). |
22
|
|
|
* |
23
|
|
|
* Container supports constructor injection as well as property injection. |
24
|
|
|
* |
25
|
|
|
* To use Container, you first need to set up the class dependencies by calling [[set()]]. |
26
|
|
|
* You then call [[get()]] to create a new class object. Container will automatically instantiate |
27
|
|
|
* dependent objects, inject them into the object being created, configure and finally return the newly created object. |
28
|
|
|
* |
29
|
|
|
* By default, [[\Yii::$container]] refers to a Container instance which is used by [[\Yii::createObject()]] |
30
|
|
|
* to create new object instances. You may use this method to replace the `new` operator |
31
|
|
|
* when creating a new object, which gives you the benefit of automatic dependency resolution and default |
32
|
|
|
* property configuration. |
33
|
|
|
* |
34
|
|
|
* Below is an example of using Container: |
35
|
|
|
* |
36
|
|
|
* ```php |
37
|
|
|
* namespace app\models; |
38
|
|
|
* |
39
|
|
|
* use yii\base\Object; |
40
|
|
|
* use yii\db\Connection; |
41
|
|
|
* use yii\di\Container; |
42
|
|
|
* |
43
|
|
|
* interface UserFinderInterface |
44
|
|
|
* { |
45
|
|
|
* function findUser(); |
46
|
|
|
* } |
47
|
|
|
* |
48
|
|
|
* class UserFinder extends Object implements UserFinderInterface |
49
|
|
|
* { |
50
|
|
|
* public $db; |
51
|
|
|
* |
52
|
|
|
* public function __construct(Connection $db, $config = []) |
53
|
|
|
* { |
54
|
|
|
* $this->db = $db; |
55
|
|
|
* parent::__construct($config); |
56
|
|
|
* } |
57
|
|
|
* |
58
|
|
|
* public function findUser() |
59
|
|
|
* { |
60
|
|
|
* } |
61
|
|
|
* } |
62
|
|
|
* |
63
|
|
|
* class UserLister extends Object |
64
|
|
|
* { |
65
|
|
|
* public $finder; |
66
|
|
|
* |
67
|
|
|
* public function __construct(UserFinderInterface $finder, $config = []) |
68
|
|
|
* { |
69
|
|
|
* $this->finder = $finder; |
70
|
|
|
* parent::__construct($config); |
71
|
|
|
* } |
72
|
|
|
* } |
73
|
|
|
* |
74
|
|
|
* $container = new Container; |
75
|
|
|
* $container->set('yii\db\Connection', [ |
76
|
|
|
* 'dsn' => '...', |
77
|
|
|
* ]); |
78
|
|
|
* $container->set('app\models\UserFinderInterface', [ |
79
|
|
|
* 'class' => 'app\models\UserFinder', |
80
|
|
|
* ]); |
81
|
|
|
* $container->set('userLister', 'app\models\UserLister'); |
82
|
|
|
* |
83
|
|
|
* $lister = $container->get('userLister'); |
84
|
|
|
* |
85
|
|
|
* // which is equivalent to: |
86
|
|
|
* |
87
|
|
|
* $db = new \yii\db\Connection(['dsn' => '...']); |
88
|
|
|
* $finder = new UserFinder($db); |
89
|
|
|
* $lister = new UserLister($finder); |
90
|
|
|
* ``` |
91
|
|
|
* |
92
|
|
|
* For more details and usage information on Container, see the [guide article on di-containers](guide:concept-di-container). |
93
|
|
|
* |
94
|
|
|
* @property array $definitions The list of the object definitions or the loaded shared objects (type or ID => |
95
|
|
|
* definition or instance). This property is read-only. |
96
|
|
|
* |
97
|
|
|
* @author Qiang Xue <[email protected]> |
98
|
|
|
* @since 2.0 |
99
|
|
|
*/ |
100
|
|
|
class Container extends Component |
101
|
|
|
{ |
102
|
|
|
/** |
103
|
|
|
* @var array singleton objects indexed by their types |
104
|
|
|
*/ |
105
|
|
|
private $_singletons = []; |
106
|
|
|
/** |
107
|
|
|
* @var array object definitions indexed by their types |
108
|
|
|
*/ |
109
|
|
|
private $_definitions = []; |
110
|
|
|
/** |
111
|
|
|
* @var array constructor parameters indexed by object types |
112
|
|
|
*/ |
113
|
|
|
private $_params = []; |
114
|
|
|
/** |
115
|
|
|
* @var array cached ReflectionClass objects indexed by class/interface names |
116
|
|
|
*/ |
117
|
|
|
private $_reflections = []; |
118
|
|
|
/** |
119
|
|
|
* @var array cached dependencies indexed by class/interface names. Each class name |
120
|
|
|
* is associated with a list of constructor parameter types or default values. |
121
|
|
|
*/ |
122
|
|
|
private $_dependencies = []; |
123
|
|
|
|
124
|
|
|
|
125
|
|
|
/** |
126
|
|
|
* Returns an instance of the requested class. |
127
|
|
|
* |
128
|
|
|
* You may provide constructor parameters (`$params`) and object configurations (`$config`) |
129
|
|
|
* that will be used during the creation of the instance. |
130
|
|
|
* |
131
|
|
|
* If the class implements [[\yii\base\Configurable]], the `$config` parameter will be passed as the last |
132
|
|
|
* parameter to the class constructor; Otherwise, the configuration will be applied *after* the object is |
133
|
|
|
* instantiated. |
134
|
|
|
* |
135
|
|
|
* Note that if the class is declared to be singleton by calling [[setSingleton()]], |
136
|
|
|
* the same instance of the class will be returned each time this method is called. |
137
|
|
|
* In this case, the constructor parameters and object configurations will be used |
138
|
|
|
* only if the class is instantiated the first time. |
139
|
|
|
* |
140
|
|
|
* @param string $class the class name or an alias name (e.g. `foo`) that was previously registered via [[set()]] |
141
|
|
|
* or [[setSingleton()]]. |
142
|
|
|
* @param array $params a list of constructor parameter values. The parameters should be provided in the order |
143
|
|
|
* they appear in the constructor declaration. If you want to skip some parameters, you should index the remaining |
144
|
|
|
* ones with the integers that represent their positions in the constructor parameter list. |
145
|
|
|
* @param array $config a list of name-value pairs that will be used to initialize the object properties. |
146
|
|
|
* @return object an instance of the requested class. |
147
|
|
|
* @throws InvalidConfigException if the class cannot be recognized or correspond to an invalid definition |
148
|
|
|
* @throws NotInstantiableException If resolved to an abstract class or an interface (since 2.0.9) |
149
|
|
|
*/ |
150
|
1770 |
|
public function get($class, $params = [], $config = []) |
151
|
|
|
{ |
152
|
1770 |
|
if (isset($this->_singletons[$class])) { |
153
|
|
|
// singleton |
154
|
2 |
|
return $this->_singletons[$class]; |
155
|
1770 |
|
} elseif (!isset($this->_definitions[$class])) { |
156
|
1770 |
|
return $this->build($class, $params, $config); |
157
|
|
|
} |
158
|
|
|
|
159
|
15 |
|
$definition = $this->_definitions[$class]; |
160
|
|
|
|
161
|
15 |
|
if (is_callable($definition, true)) { |
162
|
3 |
|
$params = $this->resolveDependencies($this->mergeParams($class, $params)); |
163
|
3 |
|
$object = call_user_func($definition, $this, $params, $config); |
164
|
15 |
|
} elseif (is_array($definition)) { |
165
|
15 |
|
$concrete = $definition['class']; |
166
|
15 |
|
unset($definition['class']); |
167
|
|
|
|
168
|
15 |
|
$config = array_merge($definition, $config); |
169
|
15 |
|
$params = $this->mergeParams($class, $params); |
170
|
|
|
|
171
|
15 |
|
if ($concrete === $class) { |
172
|
1 |
|
$object = $this->build($class, $params, $config); |
173
|
1 |
|
} else { |
174
|
15 |
|
$object = $this->get($concrete, $params, $config); |
175
|
|
|
} |
176
|
15 |
|
} elseif (is_object($definition)) { |
177
|
1 |
|
return $this->_singletons[$class] = $definition; |
178
|
|
|
} else { |
179
|
|
|
throw new InvalidConfigException('Unexpected object definition type: ' . gettype($definition)); |
180
|
|
|
} |
181
|
|
|
|
182
|
15 |
|
if (array_key_exists($class, $this->_singletons)) { |
183
|
|
|
// singleton |
184
|
1 |
|
$this->_singletons[$class] = $object; |
185
|
1 |
|
} |
186
|
|
|
|
187
|
15 |
|
return $object; |
188
|
|
|
} |
189
|
|
|
|
190
|
|
|
/** |
191
|
|
|
* Registers a class definition with this container. |
192
|
|
|
* |
193
|
|
|
* For example, |
194
|
|
|
* |
195
|
|
|
* ```php |
196
|
|
|
* // register a class name as is. This can be skipped. |
197
|
|
|
* $container->set('yii\db\Connection'); |
198
|
|
|
* |
199
|
|
|
* // register an interface |
200
|
|
|
* // When a class depends on the interface, the corresponding class |
201
|
|
|
* // will be instantiated as the dependent object |
202
|
|
|
* $container->set('yii\mail\MailInterface', 'yii\swiftmailer\Mailer'); |
203
|
|
|
* |
204
|
|
|
* // register an alias name. You can use $container->get('foo') |
205
|
|
|
* // to create an instance of Connection |
206
|
|
|
* $container->set('foo', 'yii\db\Connection'); |
207
|
|
|
* |
208
|
|
|
* // register a class with configuration. The configuration |
209
|
|
|
* // will be applied when the class is instantiated by get() |
210
|
|
|
* $container->set('yii\db\Connection', [ |
211
|
|
|
* 'dsn' => 'mysql:host=127.0.0.1;dbname=demo', |
212
|
|
|
* 'username' => 'root', |
213
|
|
|
* 'password' => '', |
214
|
|
|
* 'charset' => 'utf8', |
215
|
|
|
* ]); |
216
|
|
|
* |
217
|
|
|
* // register an alias name with class configuration |
218
|
|
|
* // In this case, a "class" element is required to specify the class |
219
|
|
|
* $container->set('db', [ |
220
|
|
|
* 'class' => 'yii\db\Connection', |
221
|
|
|
* 'dsn' => 'mysql:host=127.0.0.1;dbname=demo', |
222
|
|
|
* 'username' => 'root', |
223
|
|
|
* 'password' => '', |
224
|
|
|
* 'charset' => 'utf8', |
225
|
|
|
* ]); |
226
|
|
|
* |
227
|
|
|
* // register a PHP callable |
228
|
|
|
* // The callable will be executed when $container->get('db') is called |
229
|
|
|
* $container->set('db', function ($container, $params, $config) { |
230
|
|
|
* return new \yii\db\Connection($config); |
231
|
|
|
* }); |
232
|
|
|
* ``` |
233
|
|
|
* |
234
|
|
|
* If a class definition with the same name already exists, it will be overwritten with the new one. |
235
|
|
|
* You may use [[has()]] to check if a class definition already exists. |
236
|
|
|
* |
237
|
|
|
* @param string $class class name, interface name or alias name |
238
|
|
|
* @param mixed $definition the definition associated with `$class`. It can be one of the following: |
239
|
|
|
* |
240
|
|
|
* - a PHP callable: The callable will be executed when [[get()]] is invoked. The signature of the callable |
241
|
|
|
* should be `function ($container, $params, $config)`, where `$params` stands for the list of constructor |
242
|
|
|
* parameters, `$config` the object configuration, and `$container` the container object. The return value |
243
|
|
|
* of the callable will be returned by [[get()]] as the object instance requested. |
244
|
|
|
* - a configuration array: the array contains name-value pairs that will be used to initialize the property |
245
|
|
|
* values of the newly created object when [[get()]] is called. The `class` element stands for the |
246
|
|
|
* the class of the object to be created. If `class` is not specified, `$class` will be used as the class name. |
247
|
|
|
* - a string: a class name, an interface name or an alias name. |
248
|
|
|
* @param array $params the list of constructor parameters. The parameters will be passed to the class |
249
|
|
|
* constructor when [[get()]] is called. |
250
|
|
|
* @return $this the container itself |
251
|
|
|
*/ |
252
|
332 |
|
public function set($class, $definition = [], array $params = []) |
253
|
|
|
{ |
254
|
332 |
|
$this->_definitions[$class] = $this->normalizeDefinition($class, $definition); |
|
|
|
|
255
|
332 |
|
$this->_params[$class] = $params; |
256
|
332 |
|
unset($this->_singletons[$class]); |
257
|
332 |
|
return $this; |
258
|
|
|
} |
259
|
|
|
|
260
|
|
|
/** |
261
|
|
|
* Registers a class definition with this container and marks the class as a singleton class. |
262
|
|
|
* |
263
|
|
|
* This method is similar to [[set()]] except that classes registered via this method will only have one |
264
|
|
|
* instance. Each time [[get()]] is called, the same instance of the specified class will be returned. |
265
|
|
|
* |
266
|
|
|
* @param string $class class name, interface name or alias name |
267
|
|
|
* @param mixed $definition the definition associated with `$class`. See [[set()]] for more details. |
268
|
|
|
* @param array $params the list of constructor parameters. The parameters will be passed to the class |
269
|
|
|
* constructor when [[get()]] is called. |
270
|
|
|
* @return $this the container itself |
271
|
|
|
* @see set() |
272
|
|
|
*/ |
273
|
1 |
|
public function setSingleton($class, $definition = [], array $params = []) |
274
|
|
|
{ |
275
|
1 |
|
$this->_definitions[$class] = $this->normalizeDefinition($class, $definition); |
|
|
|
|
276
|
1 |
|
$this->_params[$class] = $params; |
277
|
1 |
|
$this->_singletons[$class] = null; |
278
|
1 |
|
return $this; |
279
|
|
|
} |
280
|
|
|
|
281
|
|
|
/** |
282
|
|
|
* Returns a value indicating whether the container has the definition of the specified name. |
283
|
|
|
* @param string $class class name, interface name or alias name |
284
|
|
|
* @return bool whether the container has the definition of the specified name.. |
285
|
|
|
* @see set() |
286
|
|
|
*/ |
287
|
|
|
public function has($class) |
288
|
|
|
{ |
289
|
|
|
return isset($this->_definitions[$class]); |
290
|
|
|
} |
291
|
|
|
|
292
|
|
|
/** |
293
|
|
|
* Returns a value indicating whether the given name corresponds to a registered singleton. |
294
|
|
|
* @param string $class class name, interface name or alias name |
295
|
|
|
* @param bool $checkInstance whether to check if the singleton has been instantiated. |
296
|
|
|
* @return bool whether the given name corresponds to a registered singleton. If `$checkInstance` is true, |
297
|
|
|
* the method should return a value indicating whether the singleton has been instantiated. |
298
|
|
|
*/ |
299
|
|
|
public function hasSingleton($class, $checkInstance = false) |
300
|
|
|
{ |
301
|
|
|
return $checkInstance ? isset($this->_singletons[$class]) : array_key_exists($class, $this->_singletons); |
302
|
|
|
} |
303
|
|
|
|
304
|
|
|
/** |
305
|
|
|
* Removes the definition for the specified name. |
306
|
|
|
* @param string $class class name, interface name or alias name |
307
|
|
|
*/ |
308
|
|
|
public function clear($class) |
309
|
|
|
{ |
310
|
|
|
unset($this->_definitions[$class], $this->_singletons[$class]); |
311
|
|
|
} |
312
|
|
|
|
313
|
|
|
/** |
314
|
|
|
* Normalizes the class definition. |
315
|
|
|
* @param string $class class name |
316
|
|
|
* @param string|array|callable $definition the class definition |
317
|
|
|
* @return array the normalized class definition |
318
|
|
|
* @throws InvalidConfigException if the definition is invalid. |
319
|
|
|
*/ |
320
|
333 |
|
protected function normalizeDefinition($class, $definition) |
321
|
|
|
{ |
322
|
333 |
|
if (empty($definition)) { |
323
|
1 |
|
return ['class' => $class]; |
324
|
333 |
|
} elseif (is_string($definition)) { |
325
|
4 |
|
return ['class' => $definition]; |
326
|
332 |
|
} elseif (is_callable($definition, true) || is_object($definition)) { |
327
|
321 |
|
return $definition; |
328
|
13 |
|
} elseif (is_array($definition)) { |
329
|
13 |
|
if (!isset($definition['class'])) { |
330
|
|
|
if (strpos($class, '\\') !== false) { |
331
|
|
|
$definition['class'] = $class; |
332
|
|
|
} else { |
333
|
|
|
throw new InvalidConfigException("A class definition requires a \"class\" member."); |
334
|
|
|
} |
335
|
|
|
} |
336
|
13 |
|
return $definition; |
337
|
|
|
} else { |
338
|
|
|
throw new InvalidConfigException("Unsupported definition type for \"$class\": " . gettype($definition)); |
339
|
|
|
} |
340
|
|
|
} |
341
|
|
|
|
342
|
|
|
/** |
343
|
|
|
* Returns the list of the object definitions or the loaded shared objects. |
344
|
|
|
* @return array the list of the object definitions or the loaded shared objects (type or ID => definition or instance). |
345
|
|
|
*/ |
346
|
|
|
public function getDefinitions() |
347
|
|
|
{ |
348
|
|
|
return $this->_definitions; |
349
|
|
|
} |
350
|
|
|
|
351
|
|
|
/** |
352
|
|
|
* Creates an instance of the specified class. |
353
|
|
|
* This method will resolve dependencies of the specified class, instantiate them, and inject |
354
|
|
|
* them into the new instance of the specified class. |
355
|
|
|
* @param string $class the class name |
356
|
|
|
* @param array $params constructor parameters |
357
|
|
|
* @param array $config configurations to be applied to the new instance |
358
|
|
|
* @return object the newly created instance of the specified class |
359
|
|
|
* @throws NotInstantiableException If resolved to an abstract class or an interface (since 2.0.9) |
360
|
|
|
*/ |
361
|
1770 |
|
protected function build($class, $params, $config) |
362
|
|
|
{ |
363
|
|
|
/* @var $reflection ReflectionClass */ |
364
|
1770 |
|
list ($reflection, $dependencies) = $this->getDependencies($class); |
365
|
|
|
|
366
|
1767 |
|
foreach ($params as $index => $param) { |
367
|
270 |
|
$dependencies[$index] = $param; |
368
|
1767 |
|
} |
369
|
|
|
|
370
|
1767 |
|
$dependencies = $this->resolveDependencies($dependencies, $reflection); |
371
|
1767 |
|
if (!$reflection->isInstantiable()) { |
372
|
1 |
|
throw new NotInstantiableException($reflection->name); |
373
|
|
|
} |
374
|
1766 |
|
if (empty($config)) { |
375
|
1124 |
|
return $reflection->newInstanceArgs($dependencies); |
376
|
|
|
} |
377
|
|
|
|
378
|
1711 |
|
if (!empty($dependencies) && $reflection->implementsInterface('yii\base\Configurable')) { |
379
|
|
|
// set $config as the last parameter (existing one will be overwritten) |
380
|
1710 |
|
$dependencies[count($dependencies) - 1] = $config; |
381
|
1710 |
|
return $reflection->newInstanceArgs($dependencies); |
382
|
|
|
} else { |
383
|
1 |
|
$object = $reflection->newInstanceArgs($dependencies); |
384
|
1 |
|
foreach ($config as $name => $value) { |
385
|
1 |
|
$object->$name = $value; |
386
|
1 |
|
} |
387
|
1 |
|
return $object; |
388
|
|
|
} |
389
|
|
|
} |
390
|
|
|
|
391
|
|
|
/** |
392
|
|
|
* Merges the user-specified constructor parameters with the ones registered via [[set()]]. |
393
|
|
|
* @param string $class class name, interface name or alias name |
394
|
|
|
* @param array $params the constructor parameters |
395
|
|
|
* @return array the merged parameters |
396
|
|
|
*/ |
397
|
15 |
|
protected function mergeParams($class, $params) |
398
|
|
|
{ |
399
|
15 |
|
if (empty($this->_params[$class])) { |
400
|
15 |
|
return $params; |
401
|
3 |
|
} elseif (empty($params)) { |
402
|
3 |
|
return $this->_params[$class]; |
403
|
|
|
} else { |
404
|
|
|
$ps = $this->_params[$class]; |
405
|
|
|
foreach ($params as $index => $value) { |
406
|
|
|
$ps[$index] = $value; |
407
|
|
|
} |
408
|
|
|
return $ps; |
409
|
|
|
} |
410
|
|
|
} |
411
|
|
|
|
412
|
|
|
/** |
413
|
|
|
* Returns the dependencies of the specified class. |
414
|
|
|
* @param string $class class name, interface name or alias name |
415
|
|
|
* @return array the dependencies of the specified class. |
416
|
|
|
*/ |
417
|
1770 |
|
protected function getDependencies($class) |
418
|
|
|
{ |
419
|
1770 |
|
if (isset($this->_reflections[$class])) { |
420
|
1744 |
|
return [$this->_reflections[$class], $this->_dependencies[$class]]; |
421
|
|
|
} |
422
|
|
|
|
423
|
96 |
|
$dependencies = []; |
424
|
96 |
|
$reflection = new ReflectionClass($class); |
425
|
|
|
|
426
|
93 |
|
$constructor = $reflection->getConstructor(); |
427
|
93 |
|
if ($constructor !== null) { |
428
|
91 |
|
foreach ($constructor->getParameters() as $param) { |
429
|
91 |
|
if ($param->isDefaultValueAvailable()) { |
430
|
91 |
|
$dependencies[] = $param->getDefaultValue(); |
431
|
91 |
|
} else { |
432
|
13 |
|
$c = $param->getClass(); |
433
|
13 |
|
$dependencies[] = Instance::of($c === null ? null : $c->getName()); |
434
|
|
|
} |
435
|
91 |
|
} |
436
|
91 |
|
} |
437
|
|
|
|
438
|
93 |
|
$this->_reflections[$class] = $reflection; |
439
|
93 |
|
$this->_dependencies[$class] = $dependencies; |
440
|
|
|
|
441
|
93 |
|
return [$reflection, $dependencies]; |
442
|
|
|
} |
443
|
|
|
|
444
|
|
|
/** |
445
|
|
|
* Resolves dependencies by replacing them with the actual object instances. |
446
|
|
|
* @param array $dependencies the dependencies |
447
|
|
|
* @param ReflectionClass $reflection the class reflection associated with the dependencies |
448
|
|
|
* @return array the resolved dependencies |
449
|
|
|
* @throws InvalidConfigException if a dependency cannot be resolved or if a dependency cannot be fulfilled. |
450
|
|
|
*/ |
451
|
1767 |
|
protected function resolveDependencies($dependencies, $reflection = null) |
452
|
|
|
{ |
453
|
1767 |
|
foreach ($dependencies as $index => $dependency) { |
454
|
1765 |
|
if ($dependency instanceof Instance) { |
455
|
2 |
|
if ($dependency->id !== null) { |
456
|
2 |
|
$dependencies[$index] = $this->get($dependency->id); |
457
|
2 |
|
} elseif ($reflection !== null) { |
458
|
|
|
$name = $reflection->getConstructor()->getParameters()[$index]->getName(); |
459
|
|
|
$class = $reflection->getName(); |
460
|
|
|
throw new InvalidConfigException("Missing required parameter \"$name\" when instantiating \"$class\"."); |
461
|
|
|
} |
462
|
2 |
|
} |
463
|
1767 |
|
} |
464
|
1767 |
|
return $dependencies; |
465
|
|
|
} |
466
|
|
|
|
467
|
|
|
/** |
468
|
|
|
* Invoke a callback with resolving dependencies in parameters. |
469
|
|
|
* |
470
|
|
|
* This methods allows invoking a callback and let type hinted parameter names to be |
471
|
|
|
* resolved as objects of the Container. It additionally allow calling function using named parameters. |
472
|
|
|
* |
473
|
|
|
* For example, the following callback may be invoked using the Container to resolve the formatter dependency: |
474
|
|
|
* |
475
|
|
|
* ```php |
476
|
|
|
* $formatString = function($string, \yii\i18n\Formatter $formatter) { |
477
|
|
|
* // ... |
478
|
|
|
* } |
479
|
|
|
* Yii::$container->invoke($formatString, ['string' => 'Hello World!']); |
480
|
|
|
* ``` |
481
|
|
|
* |
482
|
|
|
* This will pass the string `'Hello World!'` as the first param, and a formatter instance created |
483
|
|
|
* by the DI container as the second param to the callable. |
484
|
|
|
* |
485
|
|
|
* @param callable $callback callable to be invoked. |
486
|
|
|
* @param array $params The array of parameters for the function. |
487
|
|
|
* This can be either a list of parameters, or an associative array representing named function parameters. |
488
|
|
|
* @return mixed the callback return value. |
489
|
|
|
* @throws InvalidConfigException if a dependency cannot be resolved or if a dependency cannot be fulfilled. |
490
|
|
|
* @throws NotInstantiableException If resolved to an abstract class or an interface (since 2.0.9) |
491
|
|
|
* @since 2.0.7 |
492
|
|
|
*/ |
493
|
5 |
|
public function invoke(callable $callback, $params = []) |
494
|
|
|
{ |
495
|
5 |
|
if (is_callable($callback)) { |
496
|
5 |
|
return call_user_func_array($callback, $this->resolveCallableDependencies($callback, $params)); |
497
|
|
|
} else { |
498
|
|
|
return call_user_func_array($callback, $params); |
499
|
|
|
} |
500
|
|
|
} |
501
|
|
|
|
502
|
|
|
/** |
503
|
|
|
* Resolve dependencies for a function. |
504
|
|
|
* |
505
|
|
|
* This method can be used to implement similar functionality as provided by [[invoke()]] in other |
506
|
|
|
* components. |
507
|
|
|
* |
508
|
|
|
* @param callable $callback callable to be invoked. |
509
|
|
|
* @param array $params The array of parameters for the function, can be either numeric or associative. |
510
|
|
|
* @return array The resolved dependencies. |
511
|
|
|
* @throws InvalidConfigException if a dependency cannot be resolved or if a dependency cannot be fulfilled. |
512
|
|
|
* @throws NotInstantiableException If resolved to an abstract class or an interface (since 2.0.9) |
513
|
|
|
* @since 2.0.7 |
514
|
|
|
*/ |
515
|
6 |
|
public function resolveCallableDependencies(callable $callback, $params = []) |
516
|
|
|
{ |
517
|
6 |
|
if (is_array($callback)) { |
518
|
2 |
|
$reflection = new \ReflectionMethod($callback[0], $callback[1]); |
519
|
2 |
|
} else { |
520
|
6 |
|
$reflection = new \ReflectionFunction($callback); |
521
|
|
|
} |
522
|
|
|
|
523
|
6 |
|
$args = []; |
524
|
|
|
|
525
|
6 |
|
$associative = ArrayHelper::isAssociative($params); |
526
|
|
|
|
527
|
6 |
|
foreach ($reflection->getParameters() as $param) { |
528
|
5 |
|
$name = $param->getName(); |
529
|
5 |
|
if (($class = $param->getClass()) !== null) { |
530
|
3 |
|
$className = $class->getName(); |
531
|
3 |
|
if ($associative && isset($params[$name]) && $params[$name] instanceof $className) { |
532
|
|
|
$args[] = $params[$name]; |
533
|
|
|
unset($params[$name]); |
534
|
3 |
|
} elseif (!$associative && isset($params[0]) && $params[0] instanceof $className) { |
535
|
1 |
|
$args[] = array_shift($params); |
536
|
3 |
|
} elseif (isset(Yii::$app) && Yii::$app->has($name) && ($obj = Yii::$app->get($name)) instanceof $className) { |
537
|
1 |
|
$args[] = $obj; |
538
|
1 |
|
} else { |
539
|
|
|
// If the argument is optional we catch not instantiable exceptions |
540
|
|
|
try { |
541
|
3 |
|
$args[] = $this->get($className); |
542
|
3 |
|
} catch (NotInstantiableException $e) { |
543
|
1 |
|
if ($param->isDefaultValueAvailable()) { |
544
|
1 |
|
$args[] = $param->getDefaultValue(); |
545
|
1 |
|
} else { |
546
|
|
|
throw $e; |
547
|
|
|
} |
548
|
|
|
} |
549
|
|
|
|
550
|
|
|
} |
551
|
5 |
|
} elseif ($associative && isset($params[$name])) { |
552
|
2 |
|
$args[] = $params[$name]; |
553
|
2 |
|
unset($params[$name]); |
554
|
4 |
|
} elseif (!$associative && count($params)) { |
555
|
3 |
|
$args[] = array_shift($params); |
556
|
4 |
|
} elseif ($param->isDefaultValueAvailable()) { |
557
|
3 |
|
$args[] = $param->getDefaultValue(); |
558
|
3 |
|
} elseif (!$param->isOptional()) { |
559
|
|
|
$funcName = $reflection->getName(); |
560
|
|
|
throw new InvalidConfigException("Missing required parameter \"$name\" when calling \"$funcName\"."); |
561
|
|
|
} |
562
|
6 |
|
} |
563
|
|
|
|
564
|
6 |
|
foreach ($params as $value) { |
565
|
|
|
$args[] = $value; |
566
|
6 |
|
} |
567
|
6 |
|
return $args; |
568
|
|
|
} |
569
|
|
|
|
570
|
|
|
/** |
571
|
|
|
* Registers class definitions within this container. |
572
|
|
|
* |
573
|
|
|
* @param array $definitions array of definitions. There are two allowed formats of array. |
574
|
|
|
* The first format: |
575
|
|
|
* - key: class name, interface name or alias name. The key will be passed to the [[set()]] method |
576
|
|
|
* as a first argument `$class`. |
577
|
|
|
* - value: the definition associated with `$class`. Possible values are described in |
578
|
|
|
* [[set()]] documentation for the `$definition` parameter. Will be passed to the [[set()]] method |
579
|
|
|
* as the second argument `$definition`. |
580
|
|
|
* |
581
|
|
|
* Example: |
582
|
|
|
* ```php |
583
|
|
|
* $container->setDefinitions([ |
584
|
|
|
* 'yii\web\Request' => 'app\components\Request', |
585
|
|
|
* 'yii\web\Response' => [ |
586
|
|
|
* 'class' => 'app\components\Response', |
587
|
|
|
* 'format' => 'json' |
588
|
|
|
* ], |
589
|
|
|
* 'foo\Bar' => function () { |
590
|
|
|
* $qux = new Qux; |
591
|
|
|
* $foo = new Foo($qux); |
592
|
|
|
* return new Bar($foo); |
593
|
|
|
* } |
594
|
|
|
* ]); |
595
|
|
|
* ``` |
596
|
|
|
* |
597
|
|
|
* The second format: |
598
|
|
|
* - key: class name, interface name or alias name. The key will be passed to the [[set()]] method |
599
|
|
|
* as a first argument `$class`. |
600
|
|
|
* - value: array of two elements. The first element will be passed the [[set()]] method as the |
601
|
|
|
* second argument `$definition`, the second one — as `$params`. |
602
|
|
|
* |
603
|
|
|
* Example: |
604
|
|
|
* ```php |
605
|
|
|
* $container->setDefinitions([ |
606
|
|
|
* 'foo\Bar' => [ |
607
|
|
|
* ['class' => 'app\Bar'], |
608
|
|
|
* [Instance::of('baz')] |
609
|
|
|
* ] |
610
|
|
|
* ]); |
611
|
|
|
* ``` |
612
|
|
|
* |
613
|
|
|
* @see set() to know more about possible values of definitions |
614
|
|
|
* @since 2.0.11 |
615
|
|
|
*/ |
616
|
2 |
|
public function setDefinitions(array $definitions) |
617
|
|
|
{ |
618
|
2 |
|
foreach ($definitions as $class => $definition) { |
619
|
2 |
|
if (count($definition) === 2 && array_values($definition) === $definition) { |
620
|
1 |
|
$this->set($class, $definition[0], $definition[1]); |
621
|
1 |
|
continue; |
622
|
|
|
} |
623
|
|
|
|
624
|
2 |
|
$this->set($class, $definition); |
625
|
2 |
|
} |
626
|
2 |
|
} |
627
|
|
|
|
628
|
|
|
/** |
629
|
|
|
* Registers class definitions as singletons within this container by calling [[setSingleton()]] |
630
|
|
|
* |
631
|
|
|
* @param array $singletons array of singleton definitions. See [[setDefinitions()]] |
632
|
|
|
* for allowed formats of array. |
633
|
|
|
* |
634
|
|
|
* @see setDefinitions() for allowed formats of $singletons parameter |
635
|
|
|
* @see setSingleton() to know more about possible values of definitions |
636
|
|
|
* @since 2.0.11 |
637
|
|
|
*/ |
638
|
1 |
|
public function setSingletons(array $singletons) |
639
|
|
|
{ |
640
|
1 |
|
foreach ($singletons as $class => $definition) { |
641
|
1 |
|
if (count($definition) === 2 && array_values($definition) === $definition) { |
642
|
1 |
|
$this->setSingleton($class, $definition[0], $definition[1]); |
643
|
1 |
|
continue; |
644
|
|
|
} |
645
|
|
|
|
646
|
1 |
|
$this->setSingleton($class, $definition); |
647
|
1 |
|
} |
648
|
1 |
|
} |
649
|
|
|
} |
650
|
|
|
|
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: