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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace Zend\Di;
use Closure;
use Interop\Container\Exception\ContainerException;
use Zend\Di\Exception\RuntimeException as DiRuntimeException;
/**
* Dependency injector that can generate instances using class definitions and configured instance parameters
*/
class Di implements DependencyInjectionInterface
{
/**
* @var DefinitionList
*/
protected $definitions = null;
/**
* @var InstanceManager
*/
protected $instanceManager = null;
/**
* @var string
*/
protected $instanceContext = [];
/**
* All the class dependencies [source][dependency]
*
* @var array
*/
protected $currentDependencies = [];
/**
* All the dependenent aliases
*
* @var array
*/
protected $currentAliasDependenencies = [];
/**
* All the class references [dependency][source]
*
* @var array
*/
protected $references = [];
/**
* Resolve method policy
*
* EAGER: explore type preference or go through
*/
const RESOLVE_EAGER = 1;
/**
* Resolve method policy
*
* STRICT: explore type preference or throw exception
*/
const RESOLVE_STRICT = 2;
/**
*
* use only specified parameters
*/
const METHOD_IS_OPTIONAL = 0;
/**
*
* resolve mode RESOLVE_EAGER
*/
const METHOD_IS_AWARE = 1;
/**
*
* resolve mode RESOLVE_EAGER | RESOLVE_STRICT
*/
const METHOD_IS_CONSTRUCTOR = 3;
/**
*
* resolve mode RESOLVE_EAGER | RESOLVE_STRICT
*/
const METHOD_IS_INSTANTIATOR = 3;
/**
*
* resolve mode RESOLVE_EAGER | RESOLVE_STRICT
*/
const METHOD_IS_REQUIRED = 3;
/**
*
* resolve mode RESOLVE_EAGER
*/
const METHOD_IS_EAGER = 1;
/**
* Constructor
*
* @param null|DefinitionList $definitions
* @param null|InstanceManager $instanceManager
* @param null|Config $config
*/
public function __construct(DefinitionList $definitions = null, InstanceManager $instanceManager = null, Config $config = null)
{
$this->definitions = ($definitions) ?: new DefinitionList(new Definition\RuntimeDefinition());
$this->instanceManager = ($instanceManager) ?: new InstanceManager();
if ($config) {
$this->configure($config);
}
}
/**
* Provide a configuration object to configure this instance
*
* @param Config $config
* @return void
*/
public function configure(Config $config)
{
$config->configure($this);
}
/**
* @param DefinitionList $definitions
* @return self
*/
public function setDefinitionList(DefinitionList $definitions)
{
$this->definitions = $definitions;
return $this;
}
/**
* @return DefinitionList
*/
public function definitions()
{
return $this->definitions;
}
/**
* Set the instance manager
*
* @param InstanceManager $instanceManager
* @return Di
*/
public function setInstanceManager(InstanceManager $instanceManager)
{
$this->instanceManager = $instanceManager;
return $this;
}
/**
*
* @return InstanceManager
*/
public function instanceManager()
{
return $this->instanceManager;
}
/**
* Utility method used to retrieve the class of a particular instance. This is here to allow extending classes to
* override how class names are resolved
*
* @internal this method is used by the ServiceLocator\DependencyInjectorProxy class to interact with instances
* and is a hack to be used internally until a major refactor does not split the `resolveMethodParameters`. Do not
* rely on its functionality.
* @param object $instance
* @return string
*/
protected function getClass($instance)
{
return get_class($instance);
}
/**
* @param $name
* @param array $params
* @param string $method
* @return array
*/
protected function getCallParameters($name, array $params, $method = "__construct")
{
$im = $this->instanceManager;
$class = $im->hasAlias($name) ? $im->getClassFromAlias($name) : $name;
if ($this->definitions->hasClass($class)) {
$callParameters = [];
if ($this->definitions->hasMethod($class, $method)) {
foreach ($this->definitions->getMethodParameters($class, $method) as $param) {
if (isset($params[$param[0]])) {
$callParameters[$param[0]] = $params[$param[0]];
}
}
}
return $callParameters;
}
return $params;
}
/**
* Is the DI container capable of returning the named instance?
*
* @param string $name
* @return bool
*/
public function has($name)
{
$definitions = $this->definitions;
$instanceManager = $this->instanceManager();
$class = $instanceManager->hasAlias($name)
? $instanceManager->getClassFromAlias($name)
: $name;
return $definitions->hasClass($class);
}
/**
* Lazy-load a class
*
* Attempts to load the class (or service alias) provided. If it has been
* loaded before, the previous instance will be returned (unless the service
* definition indicates shared instances should not be used).
*
* @param string $name Class name or service alias
* @param null|array $params Parameters to pass to the constructor
* @return object|null
*/
public function get($name, array $params = [])
{
array_push($this->instanceContext, ['GET', $name, null]);
$im = $this->instanceManager;
$callParameters = $this->getCallParameters($name, $params);
if ($callParameters) {
$fastHash = $im->hasSharedInstanceWithParameters($name, $callParameters, true);
if ($fastHash) {
array_pop($this->instanceContext);
return $im->getSharedInstanceWithParameters(null, [], $fastHash);
}
if (! $this->definitions->hasClass($name) && $im->hasSharedInstance($name)) {
array_pop($this->instanceContext);
return $im->getSharedInstance($name);
}
} elseif ($im->hasSharedInstance($name)) {
array_pop($this->instanceContext);
return $im->getSharedInstance($name);
}
$config = $im->getConfig($name);
$instance = $this->newInstance($name, $params, $config['shared']);
array_pop($this->instanceContext);
return $instance;
}
/**
* Retrieve a new instance of a class
*
* Forces retrieval of a discrete instance of the given class, using the
* constructor parameters provided.
*
* @param mixed $name Class name or service alias
* @param array $params Parameters to pass to the constructor
* @param bool $isShared
* @return object|null
* @throws Exception\ClassNotFoundException
* @throws Exception\RuntimeException
*/
public function newInstance($name, array $params = [], $isShared = true)
{
// localize dependencies
$definitions = $this->definitions;
$instanceManager = $this->instanceManager();
if ($instanceManager->hasAlias($name)) {
$class = $instanceManager->getClassFromAlias($name);
$alias = $name;
} else {
$class = $name;
$alias = null;
}
array_push($this->instanceContext, ['NEW', $class, $alias]);
if (!$definitions->hasClass($class)) {
$aliasMsg = ($alias) ? '(specified by alias ' . $alias . ') ' : '';
throw new Exception\ClassNotFoundException(
'Class ' . $aliasMsg . $class . ' could not be located in provided definitions.'
);
}
$instantiator = $definitions->getInstantiator($class);
$injectionMethods = [];
$injectionMethods[$class] = $definitions->getMethods($class);
foreach ($definitions->getClassSupertypes($class) as $supertype) {
$injectionMethods[$supertype] = $definitions->getMethods($supertype);
}
if ($instantiator === '__construct') {
$instance = $this->createInstanceViaConstructor($class, $params, $alias);
if (array_key_exists('__construct', $injectionMethods)) {
unset($injectionMethods['__construct']);
}
} elseif (is_callable($instantiator, false)) {
$instance = $this->createInstanceViaCallback($instantiator, $params, $alias);
} else {
if (is_array($instantiator)) {
$msg = sprintf(
'Invalid instantiator: %s::%s() is not callable.',
isset($instantiator[0]) ? $instantiator[0] : 'NoClassGiven',
isset($instantiator[1]) ? $instantiator[1] : 'NoMethodGiven'
);
} else {
$msg = sprintf(
'Invalid instantiator of type "%s" for "%s".',
gettype($instantiator),
$name
);
}
throw new Exception\RuntimeException($msg);
}
if ($isShared) {
if ($callParameters = $this->getCallParameters($name, $params)) {
$this->instanceManager->addSharedInstanceWithParameters($instance, $name, $callParameters);
} else {
$this->instanceManager->addSharedInstance($instance, $name);
}
}
$this->handleInjectDependencies($instance, $injectionMethods, $params, $class, $alias, $name);
array_pop($this->instanceContext);
return $instance;
}
/**
* Inject dependencies
*
* @param object $instance
* @param array $params
* @return void
*/
public function injectDependencies($instance, array $params = [])
{
$definitions = $this->definitions();
$class = $this->getClass($instance);
$injectionMethods = [
$class => ($definitions->hasClass($class)) ? $definitions->getMethods($class) : []
];
$parent = $class;
while ($parent = get_parent_class($parent)) {
if ($definitions->hasClass($parent)) {
$injectionMethods[$parent] = $definitions->getMethods($parent);
}
}
foreach (class_implements($class) as $interface) {
if ($definitions->hasClass($interface)) {
$injectionMethods[$interface] = $definitions->getMethods($interface);
}
}
$this->handleInjectDependencies($instance, $injectionMethods, $params, $class, null, null);
}
/**
* @param object $instance
* @param array $injectionMethods
* @param array $params
* @param string|null $instanceClass
* @param string|null$instanceAlias
* @param string $requestedName
* @throws Exception\RuntimeException
*/
protected function handleInjectDependencies($instance, $injectionMethods, $params, $instanceClass, $instanceAlias, $requestedName)
{
// localize dependencies
$definitions = $this->definitions;
$instanceManager = $this->instanceManager();
$calledMethods = ['__construct' => true];
if ($injectionMethods) {
foreach ($injectionMethods as $type => $typeInjectionMethods) {
foreach ($typeInjectionMethods as $typeInjectionMethod => $methodRequirementType) {
if (!isset($calledMethods[$typeInjectionMethod])) {
if ($this->resolveAndCallInjectionMethodForInstance($instance, $typeInjectionMethod, $params, $instanceAlias, $methodRequirementType, $type)) {
$calledMethods[$typeInjectionMethod] = true;
}
}
}
}
if ($requestedName) {
$instanceConfig = $instanceManager->getConfig($requestedName);
if ($instanceConfig['injections']) {
$objectsToInject = $methodsToCall = [];
foreach ($instanceConfig['injections'] as $injectName => $injectValue) {
if (is_int($injectName) && is_string($injectValue)) {
$objectsToInject[] = $this->get($injectValue, $params);
} elseif (is_string($injectName) && is_array($injectValue)) {
if (is_string(key($injectValue))) {
$methodsToCall[] = ['method' => $injectName, 'args' => $injectValue];
} else {
foreach ($injectValue as $methodCallArgs) {
$methodsToCall[] = ['method' => $injectName, 'args' => $methodCallArgs];
}
}
} elseif (is_object($injectValue)) {
$objectsToInject[] = $injectValue;
} elseif (is_int($injectName) && is_array($injectValue)) {
throw new Exception\RuntimeException(
'An injection was provided with a keyed index and an array of data, try using'
. ' the name of a particular method as a key for your injection data.'
);
}
}
if ($objectsToInject) {
foreach ($objectsToInject as $objectToInject) {
$calledMethods = ['__construct' => true];
foreach ($injectionMethods as $type => $typeInjectionMethods) {
foreach ($typeInjectionMethods as $typeInjectionMethod => $methodRequirementType) {
if (!isset($calledMethods[$typeInjectionMethod])) {
$methodParams = $definitions->getMethodParameters($type, $typeInjectionMethod);
if ($methodParams) {
foreach ($methodParams as $methodParam) {
$objectToInjectClass = $this->getClass($objectToInject);
if ($objectToInjectClass == $methodParam[1] || is_subclass_of($objectToInjectClass, $methodParam[1])) {
if ($this->resolveAndCallInjectionMethodForInstance($instance, $typeInjectionMethod, [$methodParam[0] => $objectToInject], $instanceAlias, self::METHOD_IS_REQUIRED, $type)) {
$calledMethods[$typeInjectionMethod] = true;
}
continue 3;
}
}
}
}
}
}
}
}
if ($methodsToCall) {
foreach ($methodsToCall as $methodInfo) {
$this->resolveAndCallInjectionMethodForInstance($instance, $methodInfo['method'], $methodInfo['args'], $instanceAlias, self::METHOD_IS_REQUIRED, $instanceClass);
}
}
}
}
}
}
/**
* Retrieve a class instance based on class name
*
* Any parameters provided will be used as constructor arguments. If any
* given parameter is a DependencyReference object, it will be fetched
* from the container so that the instance may be injected.
*
* @param string $class
* @param array $params
* @param string|null $alias
* @return object
*/
protected function createInstanceViaConstructor($class, $params, $alias = null)
{
$callParameters = [];
if ($this->definitions->hasMethod($class, '__construct')) {
$callParameters = $this->resolveMethodParameters($class, '__construct', $params, $alias, self::METHOD_IS_CONSTRUCTOR, true);
}
if (!class_exists($class)) {
if (interface_exists($class)) {
throw new Exception\ClassNotFoundException(sprintf(
'Cannot instantiate interface "%s"',
$class
));
}
throw new Exception\ClassNotFoundException(sprintf(
'Class "%s" does not exist; cannot instantiate',
$class
));
}
// Hack to avoid Reflection in most common use cases
switch (count($callParameters)) {
case 0:
return new $class();
case 1:
return new $class($callParameters[0]);
case 2:
return new $class($callParameters[0], $callParameters[1]);
case 3:
return new $class($callParameters[0], $callParameters[1], $callParameters[2]);
default:
$r = new \ReflectionClass($class);
return $r->newInstanceArgs($callParameters);
}
}
/**
* Get an object instance from the defined callback
*
* @param callable $callback
* @param array $params
* @param string $alias
* @return object
* @throws Exception\InvalidCallbackException
* @throws Exception\RuntimeException
*/
protected function createInstanceViaCallback($callback, $params, $alias)
{
if (!is_callable($callback)) {
throw new Exception\InvalidCallbackException('An invalid constructor callback was provided');
}
if (is_array($callback)) {
$class = (is_object($callback[0])) ? $this->getClass($callback[0]) : $callback[0];
$method = $callback[1];
} elseif (is_string($callback) && strpos($callback, '::') !== false) {
list($class, $method) = explode('::', $callback, 2);
} else {
throw new Exception\RuntimeException('Invalid callback type provided to ' . __METHOD__);
}
$callParameters = [];
if ($this->definitions->hasMethod($class, $method)) {
$callParameters = $this->resolveMethodParameters($class, $method, $params, $alias, self::METHOD_IS_INSTANTIATOR, true);
}
return call_user_func_array($callback, $callParameters);
}
/**
* This parameter will handle any injection methods and resolution of
* dependencies for such methods
*
* @param object $instance
* @param string $method
* @param array $params
* @param string $alias
* @param bool $methodRequirementType
* @param string|null $methodClass
* @return bool
*/
protected function resolveAndCallInjectionMethodForInstance($instance, $method, $params, $alias, $methodRequirementType, $methodClass = null)
{
$methodClass = ($methodClass) ?: $this->getClass($instance);
$callParameters = $this->resolveMethodParameters($methodClass, $method, $params, $alias, $methodRequirementType);
if ($callParameters == false) {
return false;
}
if ($callParameters !== array_fill(0, count($callParameters), null)) {
call_user_func_array([$instance, $method], $callParameters);
return true;
}
return false;
}
/**
* Resolve parameters referencing other services
*
* @param string $class
* @param string $method
* @param array $callTimeUserParams
* @param string $alias
* @param int|bool $methodRequirementType
* @param bool $isInstantiator
* @throws Exception\MissingPropertyException
* @throws Exception\CircularDependencyException
* @return array
*/
protected function resolveMethodParameters($class, $method, array $callTimeUserParams, $alias, $methodRequirementType, $isInstantiator = false)
{
//for BC
if (is_bool($methodRequirementType)) {
if ($isInstantiator) {
$methodRequirementType = Di::METHOD_IS_INSTANTIATOR;
} elseif ($methodRequirementType) {
$methodRequirementType = Di::METHOD_IS_REQUIRED;
} else {
$methodRequirementType = Di::METHOD_IS_OPTIONAL;
}
}
// parameters for this method, in proper order, to be returned
$resolvedParams = [];
// parameter requirements from the definition
$injectionMethodParameters = $this->definitions->getMethodParameters($class, $method);
// computed parameters array
$computedParams = [
'value' => [],
'retrieval' => [],
'optional' => []
];
// retrieve instance configurations for all contexts
$iConfig = [];
$aliases = $this->instanceManager->getAliases();
// for the alias in the dependency tree
if ($alias && $this->instanceManager->hasConfig($alias)) {
$iConfig['thisAlias'] = $this->instanceManager->getConfig($alias);
}
// for the current class in the dependency tree
if ($this->instanceManager->hasConfig($class)) {
$iConfig['thisClass'] = $this->instanceManager->getConfig($class);
}
// for the parent class, provided we are deeper than one node
if (isset($this->instanceContext[0])) {
list($requestedClass, $requestedAlias) = ($this->instanceContext[0][0] == 'NEW')
? [$this->instanceContext[0][1], $this->instanceContext[0][2]]
: [$this->instanceContext[1][1], $this->instanceContext[1][2]];
} else {
$requestedClass = $requestedAlias = null;
}
if ($requestedClass != $class && $this->instanceManager->hasConfig($requestedClass)) {
$iConfig['requestedClass'] = $this->instanceManager->getConfig($requestedClass);
if (array_key_exists('parameters', $iConfig['requestedClass'])) {
$newParameters = [];
foreach ($iConfig['requestedClass']['parameters'] as $name => $parameter) {
$newParameters[$requestedClass.'::'.$method.'::'.$name] = $parameter;
}
$iConfig['requestedClass']['parameters'] = $newParameters;
}
if ($requestedAlias) {
$iConfig['requestedAlias'] = $this->instanceManager->getConfig($requestedAlias);
}
}
// This is a 2 pass system for resolving parameters
// first pass will find the sources, the second pass will order them and resolve lookups if they exist
// MOST methods will only have a single parameters to resolve, so this should be fast
foreach ($injectionMethodParameters as $fqParamPos => $info) {
list($name, $type, $isRequired) = $info;
$fqParamName = substr_replace($fqParamPos, ':' . $info[0], strrpos($fqParamPos, ':'));
// PRIORITY 1 - consult user provided parameters
if (isset($callTimeUserParams[$fqParamPos]) || isset($callTimeUserParams[$name])) {
if (isset($callTimeUserParams[$fqParamPos])) {
$callTimeCurValue =& $callTimeUserParams[$fqParamPos];
} elseif (isset($callTimeUserParams[$fqParamName])) {
$callTimeCurValue =& $callTimeUserParams[$fqParamName];
} else {
$callTimeCurValue =& $callTimeUserParams[$name];
}
if ($type !== false && is_string($callTimeCurValue)) {
if ($this->instanceManager->hasAlias($callTimeCurValue)) {
// was an alias provided?
$computedParams['retrieval'][$fqParamPos] = [
$callTimeUserParams[$name],
$this->instanceManager->getClassFromAlias($callTimeCurValue)
];
} elseif ($this->definitions->hasClass($callTimeUserParams[$name])) {
// was a known class provided?
$computedParams['retrieval'][$fqParamPos] = [
$callTimeCurValue,
$callTimeCurValue
];
} else {
// must be a value
$computedParams['value'][$fqParamPos] = $callTimeCurValue;
}
} else {
// int, float, null, object, etc
$computedParams['value'][$fqParamPos] = $callTimeCurValue;
}
unset($callTimeCurValue);
continue;
}
// PRIORITY 2 -specific instance configuration (thisAlias) - this alias
// PRIORITY 3 -THEN specific instance configuration (thisClass) - this class
// PRIORITY 4 -THEN specific instance configuration (requestedAlias) - requested alias
// PRIORITY 5 -THEN specific instance configuration (requestedClass) - requested class
foreach (['thisAlias', 'thisClass', 'requestedAlias', 'requestedClass'] as $thisIndex) {
// check the provided parameters config
if (isset($iConfig[$thisIndex]['parameters'][$fqParamPos])
|| isset($iConfig[$thisIndex]['parameters'][$fqParamName])
|| isset($iConfig[$thisIndex]['parameters'][$name])) {
if (isset($iConfig[$thisIndex]['parameters'][$fqParamPos])) {
$iConfigCurValue =& $iConfig[$thisIndex]['parameters'][$fqParamPos];
} elseif (isset($iConfig[$thisIndex]['parameters'][$fqParamName])) {
$iConfigCurValue =& $iConfig[$thisIndex]['parameters'][$fqParamName];
} else {
$iConfigCurValue =& $iConfig[$thisIndex]['parameters'][$name];
}
if ($type === false && is_string($iConfigCurValue)) {
$computedParams['value'][$fqParamPos] = $iConfigCurValue;
} elseif (is_string($iConfigCurValue)
&& isset($aliases[$iConfigCurValue])) {
$computedParams['retrieval'][$fqParamPos] = [
$iConfig[$thisIndex]['parameters'][$name],
$this->instanceManager->getClassFromAlias($iConfigCurValue)
];
} elseif (is_string($iConfigCurValue)
&& $this->definitions->hasClass($iConfigCurValue)) {
$computedParams['retrieval'][$fqParamPos] = [
$iConfigCurValue,
$iConfigCurValue
];
} elseif (is_object($iConfigCurValue)
&& $iConfigCurValue instanceof Closure
&& $type !== 'Closure') {
/* @var $iConfigCurValue Closure */
$computedParams['value'][$fqParamPos] = $iConfigCurValue();
} else {
$computedParams['value'][$fqParamPos] = $iConfigCurValue;
}
unset($iConfigCurValue);
continue 2;
}
}
// PRIORITY 6 - globally preferred implementations
// next consult alias level preferred instances
// RESOLVE_EAGER wants to inject the cross-cutting concerns.
// If you want to retrieve an instance from TypePreferences,
// use AwareInterface or specify the method requirement option METHOD_IS_EAGER at ClassDefinition
if ($methodRequirementType & self::RESOLVE_EAGER) {
if ($alias && $this->instanceManager->hasTypePreferences($alias)) {
$pInstances = $this->instanceManager->getTypePreferences($alias);
foreach ($pInstances as $pInstance) {
if (is_object($pInstance)) {
$computedParams['value'][$fqParamPos] = $pInstance;
continue 2;
}
$pInstanceClass = ($this->instanceManager->hasAlias($pInstance)) ?
$this->instanceManager->getClassFromAlias($pInstance) : $pInstance;
if ($pInstanceClass === $type || is_subclass_of($pInstanceClass, $type)) {
$computedParams['retrieval'][$fqParamPos] = [$pInstance, $pInstanceClass];
continue 2;
}
}
}
// next consult class level preferred instances
if ($type && $this->instanceManager->hasTypePreferences($type)) {
$pInstances = $this->instanceManager->getTypePreferences($type);
foreach ($pInstances as $pInstance) {
if (is_object($pInstance)) {
$computedParams['value'][$fqParamPos] = $pInstance;
continue 2;
}
$pInstanceClass = ($this->instanceManager->hasAlias($pInstance)) ?
$this->instanceManager->getClassFromAlias($pInstance) : $pInstance;
if ($pInstanceClass === $type || is_subclass_of($pInstanceClass, $type)) {
$computedParams['retrieval'][$fqParamPos] = [$pInstance, $pInstanceClass];
continue 2;
}
}
}
}
if (!$isRequired) {
$computedParams['optional'][$fqParamPos] = true;
}
if ($type && $isRequired && ($methodRequirementType & self::RESOLVE_EAGER)) {
$computedParams['retrieval'][$fqParamPos] = [$type, $type];
}
}
$index = 0;
foreach ($injectionMethodParameters as $fqParamPos => $value) {
$name = $value[0];
if (isset($computedParams['value'][$fqParamPos])) {
// if there is a value supplied, use it
$resolvedParams[$index] = $computedParams['value'][$fqParamPos];
} elseif (isset($computedParams['retrieval'][$fqParamPos])) {
// detect circular dependencies! (they can only happen in instantiators)
if ($isInstantiator && in_array($computedParams['retrieval'][$fqParamPos][1], $this->currentDependencies)
&& (!isset($alias) || in_array($computedParams['retrieval'][$fqParamPos][0], $this->currentAliasDependenencies))
) {
$msg = "Circular dependency detected: $class depends on {$value[1]} and viceversa";
if (isset($alias)) {
$msg .= " (Aliased as $alias)";
}
throw new Exception\CircularDependencyException($msg);
}
array_push($this->currentDependencies, $class);
if (isset($alias)) {
array_push($this->currentAliasDependenencies, $alias);
}
$dConfig = $this->instanceManager->getConfig($computedParams['retrieval'][$fqParamPos][0]);
try {
if ($dConfig['shared'] === false) {
$resolvedParams[$index] = $this->newInstance($computedParams['retrieval'][$fqParamPos][0], $callTimeUserParams, false);
} else {
$resolvedParams[$index] = $this->get($computedParams['retrieval'][$fqParamPos][0], $callTimeUserParams);
}
} catch (DiRuntimeException $e) {
if ($methodRequirementType & self::RESOLVE_STRICT) {
//finally ( be aware to do at the end of flow)
array_pop($this->currentDependencies);
if (isset($alias)) {
array_pop($this->currentAliasDependenencies);
}
// if this item was marked strict,
// plus it cannot be resolve, and no value exist, bail out
throw new Exception\MissingPropertyException(
sprintf(
'Missing %s for parameter ' . $name . ' for ' . $class . '::' . $method,
(($value[0] === null) ? 'value' : 'instance/object')
),
$e->getCode(),
$e
);
} else {
//finally ( be aware to do at the end of flow)
array_pop($this->currentDependencies);
if (isset($alias)) {
array_pop($this->currentAliasDependenencies);
}
return false;
}
} catch (ContainerException $e) {
// Exceptions thrown by nested/peered containers (e.g., zend-servicemanager)
if ($methodRequirementType & self::RESOLVE_STRICT) {
//finally ( be aware to do at the end of flow)
array_pop($this->currentDependencies);
if (isset($alias)) {
array_pop($this->currentAliasDependenencies);
}
// if this item was marked strict,
// plus it cannot be resolve, and no value exist, bail out
throw new Exception\MissingPropertyException(
sprintf(
'Missing %s for parameter ' . $name . ' for ' . $class . '::' . $method,
(($value[0] === null) ? 'value' : 'instance/object')
),
$e->getCode(),
$e
);
} else {
//finally ( be aware to do at the end of flow)
array_pop($this->currentDependencies);
if (isset($alias)) {
array_pop($this->currentAliasDependenencies);
}
return false;
}
}
array_pop($this->currentDependencies);
if (isset($alias)) {
array_pop($this->currentAliasDependenencies);
}
} elseif (!array_key_exists($fqParamPos, $computedParams['optional'])) {
if ($methodRequirementType & self::RESOLVE_STRICT) {
// if this item was not marked as optional,
// plus it cannot be resolve, and no value exist, bail out
throw new Exception\MissingPropertyException(sprintf(
'Missing %s for parameter ' . $name . ' for ' . $class . '::' . $method,
(($value[0] === null) ? 'value' : 'instance/object')
));
} else {
return false;
}
} else {
$resolvedParams[$index] = $value[3];
}
$index++;
}
return $resolvedParams; // return ordered list of parameters
}
/**
* Checks if the object has this class as one of its parents
*
* @see https://bugs.php.net/bug.php?id=53727
* @see https://github.com/zendframework/zf2/pull/1807
*
* @deprecated since zf 2.3 requires PHP >= 5.3.23
*
* @param string $className
* @param $type
* @return bool
*/
protected static function isSubclassOf($className, $type)
{
return is_subclass_of($className, $type);
}
}