|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace ntentan\panie; |
|
4
|
|
|
|
|
5
|
|
|
/** |
|
6
|
|
|
* Description of Container |
|
7
|
|
|
* |
|
8
|
|
|
* @author ekow |
|
9
|
|
|
*/ |
|
10
|
|
|
class Container |
|
11
|
|
|
{ |
|
12
|
|
|
|
|
13
|
|
|
private $bindings; |
|
14
|
|
|
private $singletons = []; |
|
15
|
|
|
|
|
16
|
7 |
|
public function __construct() |
|
17
|
|
|
{ |
|
18
|
7 |
|
$this->bindings = new Bindings(); |
|
19
|
7 |
|
} |
|
20
|
|
|
|
|
21
|
|
|
/** |
|
22
|
|
|
* |
|
23
|
|
|
* @param string|\ReflectionClass $class |
|
24
|
|
|
* @return \ReflectionClass |
|
25
|
|
|
*/ |
|
26
|
7 |
|
private function getResolvedClassName($class) |
|
27
|
|
|
{ |
|
28
|
7 |
|
$bound = null; |
|
29
|
7 |
|
if ($this->bindings->has($class)) { |
|
30
|
5 |
|
$bound = $this->bindings->get($class); |
|
31
|
5 |
|
} else if (is_string($class) && class_exists($class)) { |
|
32
|
4 |
|
$bound = ['binding' => $class]; |
|
33
|
|
|
} |
|
34
|
7 |
|
return $bound; |
|
35
|
|
|
} |
|
36
|
|
|
|
|
37
|
5 |
|
public function bind($type) |
|
38
|
|
|
{ |
|
39
|
5 |
|
return $this->bindings->setActiveKey($type); |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
public function has($type) |
|
43
|
|
|
{ |
|
44
|
|
|
return $this->bindings->has($type); |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
public function setup($bindings) |
|
48
|
|
|
{ |
|
49
|
|
|
$this->bindings->merge($bindings); |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
7 |
|
public function resolve($type, $constructorArguments = []) |
|
53
|
|
|
{ |
|
54
|
7 |
|
if ($type === null) { |
|
55
|
|
|
throw new exceptions\ResolutionException("Cannot resolve an empty type"); |
|
56
|
|
|
} |
|
57
|
7 |
|
$resolvedClass = $this->getResolvedClassName($type); |
|
58
|
7 |
|
if ($resolvedClass['binding'] === null) { |
|
59
|
1 |
|
throw new exceptions\ResolutionException("Could not resolve dependency $type"); |
|
60
|
|
|
} |
|
61
|
6 |
|
if ($resolvedClass['singleton'] ?? false) { |
|
62
|
1 |
|
$instance = $this->getSingletonInstance($type, $resolvedClass['binding'], $constructorArguments); |
|
63
|
|
|
} else { |
|
64
|
5 |
|
$instance = $this->getInstance($resolvedClass['binding'], $constructorArguments); |
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
5 |
|
foreach($resolvedClass['calls'] ?? [] as $method => $parameters) { |
|
68
|
|
|
$method = new \ReflectionMethod($instance, $method); |
|
69
|
|
|
$method->invokeArgs($instance, $this->getMethodArguments($method, $parameters)); |
|
70
|
|
|
} |
|
71
|
|
|
|
|
72
|
5 |
|
return $instance; |
|
73
|
|
|
} |
|
74
|
|
|
|
|
75
|
1 |
|
private function resolveArgument($argument, $class) |
|
76
|
|
|
{ |
|
77
|
1 |
|
if($class && is_string($argument)) { |
|
78
|
|
|
return $this->resolve($argument); |
|
79
|
|
|
} |
|
80
|
1 |
|
return $argument; |
|
81
|
|
|
} |
|
82
|
|
|
|
|
83
|
3 |
|
private function getMethodArguments($method, $methodArguments) |
|
84
|
|
|
{ |
|
85
|
3 |
|
$argumentValues = []; |
|
86
|
3 |
|
$parameters = $method->getParameters(); |
|
87
|
3 |
|
foreach ($parameters as $parameter) { |
|
88
|
3 |
|
$class = $parameter->getClass(); |
|
89
|
3 |
|
$className = $class ? $class->getName() : null; |
|
90
|
3 |
|
if (isset($methodArguments[$parameter->getName()])) { |
|
91
|
1 |
|
$argumentValues[] = $this->resolveArgument($methodArguments[$parameter->getName()], $className); |
|
92
|
|
|
} else { |
|
93
|
3 |
|
$argumentValues[] = $className ? $this->resolve($className) : null; |
|
94
|
|
|
} |
|
95
|
|
|
} |
|
96
|
3 |
|
return $argumentValues; |
|
97
|
|
|
} |
|
98
|
|
|
|
|
99
|
1 |
|
private function getSingletonInstance($type, $class, $constructorArguments) |
|
100
|
|
|
{ |
|
101
|
1 |
|
if (!isset($this->singletons[$type])) { |
|
102
|
1 |
|
$this->singletons[$type] = $this->getInstance($class, $constructorArguments); |
|
103
|
|
|
} |
|
104
|
1 |
|
return $this->singletons[$type]; |
|
105
|
|
|
} |
|
106
|
|
|
|
|
107
|
6 |
|
private function getInstance($className, $constructorArguments = []) |
|
108
|
|
|
{ |
|
109
|
6 |
|
if (is_callable($className)) { |
|
110
|
|
|
return $className($this); |
|
111
|
|
|
} |
|
112
|
6 |
|
$reflection = new \ReflectionClass($className); |
|
113
|
6 |
|
if ($reflection->isAbstract()) { |
|
114
|
1 |
|
throw new exceptions\ResolutionException( |
|
115
|
1 |
|
"Abstract class {$reflection->getName()} cannot be instantiated. " |
|
|
|
|
|
|
116
|
1 |
|
. "Please provide a binding to an implementation." |
|
117
|
|
|
); |
|
118
|
|
|
} |
|
119
|
5 |
|
$constructor = $reflection->getConstructor(); |
|
120
|
5 |
|
return $reflection->newInstanceArgs($constructor ? $this->getMethodArguments($constructor, $constructorArguments) : []); |
|
121
|
|
|
} |
|
122
|
|
|
} |
|
123
|
|
|
|