-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFactory.php
More file actions
304 lines (266 loc) · 10.2 KB
/
Factory.php
File metadata and controls
304 lines (266 loc) · 10.2 KB
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
<?php
declare(strict_types=1);
namespace Lit\Air;
use Lit\Air\Injection\InjectorInterface;
use Lit\Air\Psr\CircularDependencyException;
use Lit\Air\Psr\Container;
use Lit\Air\Psr\ContainerException;
use Psr\Container\ContainerInterface;
/**
* Air DI Factory
*/
class Factory
{
public const CONTAINER_KEY = self::class;
public const INJECTOR = self::class . '::injector';
/**
* @var Container
*/
protected $container;
/**
* @var array
*/
protected $circularStore = [];
public function __construct(ContainerInterface $container = null)
{
if ($container instanceof Container) {
$this->container = $container;
} elseif ($container === null) {
$this->container = new Container();
} else {
$this->container = Container::wrap($container);
}
$this->container->set(static::CONTAINER_KEY, $this);
}
/**
* Get or create a factory instance from the container
*
* @param ContainerInterface $container The container.
* @return Factory
*/
public static function of(ContainerInterface $container): self
{
if (!$container->has(static::CONTAINER_KEY)) {
return new static($container);
}
return $container->get(static::CONTAINER_KEY);
}
/**
* Create a $className instance
*
* @param string $className Requested classname.
* @param array $extraParameters Extra parameters.
* @return object
* @throws \Psr\Container\ContainerExceptionInterface Failure when fetching dependency in container.
* @throws \ReflectionException Failure during reflection process.
*/
public function instantiate(string $className, array $extraParameters = [])
{
$class = new \ReflectionClass($className);
$constructor = $class->getConstructor();
$constructParams = $constructor
? $this->resolveParams($constructor->getParameters(), $className, $extraParameters)
: [];
$instance = $class->newInstanceArgs($constructParams);
$this->inject($instance, $extraParameters);
return $instance;
}
/**
* Call $callback with parameters injected
*
* @param callable $callback The callback to be called.
* @param array $extra Extra parameters.
* @return mixed
*/
public function invoke(callable $callback, array $extra = [])
{
if (is_string($callback) || $callback instanceof \Closure) {
$method = new \ReflectionFunction($callback);
$params = $method->getParameters();
} else {
if (is_object($callback)) {
$callback = [$callback, '__invoke'];
}
assert(is_array($callback));
$method = (new \ReflectionClass($callback[0]))->getMethod($callback[1]);
$params = $method->getParameters();
}
if ($method->isClosure()) {
$name = sprintf('Closure@%s:%d', $method->getFileName(), $method->getStartLine());
} elseif ($method instanceof \ReflectionMethod) {
$name = sprintf('%s::%s', $method->getDeclaringClass()->name, $method->name);
} else {
assert($method instanceof \ReflectionFunction);
preg_match('#function\s+([\w\\\\]+)#', (string)$method, $matches);
$name = $matches[1];
}
assert(is_callable($callback));
return $callback(...$this->resolveParams($params, '!' . $name, $extra));
}
/**
* Produce a $className instance.
*
* @param string $className Requested classname.
* @param array $extra Extra parameters.
* @param bool $cached Whether to save the instance if it's not defined in container.
* @return object of $className
* @throws \ReflectionException Failure during reflection process.
*/
public function produce(string $className, array $extra = [], bool $cached = true)
{
if (!class_exists($className)) {
throw new \RuntimeException("$className not found");
}
if ($this->container->has($className)) {
return $this->container->get($className);
}
$instance = $this->instantiate($className, $extra);
if ($cached) {
$this->container->set($className, $instance);
}
return $instance;
}
/**
* Run injectors on object. (Typically for setter injection)
*
* @param object $obj The object to be injected.
* @param array $extra Extra parameters.
* @return void
* @throws \Psr\Container\ContainerExceptionInterface Failure when fetching dependency in container.
*/
protected function inject($obj, array $extra = []): void
{
if (!$this->container->has(static::INJECTOR)) {
return;
}
/**
* @var InjectorInterface $injector
*/
$injector = $this->container->get(static::INJECTOR);
$injector->inject($this, $obj, $extra);
}
/**
* Resolve a dependency item.
* http://litphp.github.io/docs/air-di#working-on-dependencies
*
* @param string $consumer Represents who need the dependency. Often a class name.
* @param array $keys Ordered array of string keys describing required dependency.
* @param null|string $className Optional class name of the dependency.
* @param array $extra Extra parameters.
* @return mixed|object
* @throws \Psr\Container\ContainerExceptionInterface Failure when fetching dependency in container.
* @throws \ReflectionException Failure during reflection process.
*/
public function resolveDependency(string $consumer, array $keys, ?string $className = null, array $extra = [])
{
if ($value = $this->resolveBasedOnConsumer($consumer, $keys, $extra)) {
return $value[0];
}
if ($className && $this->container->has($className)) {
return $this->container->get($className);
}
if ($className && class_exists($className)) {
return $this->instantiate($className, $extra);
}
throw new ContainerException('failed to produce dependency for ' . $consumer);
}
/**
* A subprocess of dependency resolving: try use candicate keys and consumer to find dependency.
* http://litphp.github.io/docs/air-di#working-on-dependencies
*
* @param string $consumer Represents who need the dependency. Often a class name.
* @param array $keys Ordered array of string keys describing the dependency.
* @param array $extra Extra parameters.
* @return array|null return single element array when success, null when fail, so null value can be handled
* @throws \Psr\Container\ContainerExceptionInterface Failure when fetching dependency in container.
*/
protected function resolveBasedOnConsumer(string $consumer, array $keys, array $extra = [])
{
if (!empty($extra) && ($value = $this->findFromArray($extra, $keys))) {
return $value;
}
$current = $consumer;
do {
if (
!empty($current)
&& $this->container->has("$current::")
&& ($value = $this->findFromArray($this->container->get("$current::"), $keys))
) {
return $value;
}
} while ($current = get_parent_class($current));
return null;
}
protected function findFromArray($arr, $keys)
{
foreach ($keys as $key) {
if (array_key_exists($key, $arr)) {
return [$this->container->resolveRecipe($arr[$key])];
}
}
return null;
}
/**
* Resolve array of ReflectionParameter into concrete values
*
* @param array $params Array of ReflectionParameter.
* @param string $consumer Represents who need the dependency.
* @param array $extra Extra parameters.
* @return array
*/
protected function resolveParams(array $params, string $consumer, array $extra = [])
{
return array_map(
function (\ReflectionParameter $parameter) use ($consumer, $extra) {
return $this->resolveParam($consumer, $parameter, $extra);
},
$params
);
}
/**
* Resolve a parameter (of callback, or constructor)
*
* @param string $consumer Represents who need the dependency.
* @param \ReflectionParameter $parameter The ReflectionParameter.
* @param array $extra Extra parameters.
* @return mixed|object
* @throws \Psr\Container\ContainerExceptionInterface Failure when fetching dependency in container.
* @throws \ReflectionException Failure during reflection process.
*/
protected function resolveParam(string $consumer, \ReflectionParameter $parameter, array $extra)
{
$hash = sprintf('%s#%d', $consumer, $parameter->getPosition());
if (isset($this->circularStore[$hash])) {
throw new CircularDependencyException(array_keys($this->circularStore));
}
try {
$this->circularStore[$hash] = true;
[$keys, $paramClassName] = Factory::parseParameter($parameter);
return $this->resolveDependency($consumer, $keys, $paramClassName, $extra);
} catch (CircularDependencyException $e) {
throw $e;
} catch (ContainerException $e) {
if ($parameter->isOptional()) {
return $parameter->getDefaultValue();
}
throw new ContainerException(
sprintf('failed to produce constructor parameter "%s" for %s', $parameter->getName(), $consumer),
0,
$e
);
} finally {
unset($this->circularStore[$hash]);
}
}
protected static function parseParameter(\ReflectionParameter $parameter)
{
$paramClassName = null;
$keys = [$parameter->name];
$paramClass = $parameter->getClass();
if (!empty($paramClass)) {
$keys[] = $paramClassName = $paramClass->name;
}
$keys[] = $parameter->getPosition();
return [$keys, $paramClassName];
}
}