-
Notifications
You must be signed in to change notification settings - Fork 0
/
Container.php
457 lines (406 loc) · 12.1 KB
/
Container.php
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
<?php
/**
* This file is part of the Zest Framework.
*
* @author Muhammad Umer Farooq (Malik) <[email protected]>
*
* @link https://github.com/zestframework/Zest_Framework
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
* @since 3.0.0
*
* @license MIT
*/
namespace Zest\Container;
use Zest\Data\Arrays;
class Container implements ContainerContract
{
/**
* Registered type hints.
*
* @since 3.0.0
*
* @var array
*/
protected $hints = [];
/**
* Aliases.
*
* @since 3.0.0
*
* @var array
*/
protected $aliases = [];
/**
* Singleton instances.
*
* @since 3.0.0
*
* @var array
*/
protected $instances = [];
/**
* Contextual dependencies.
*
* @since 3.0.0
*
* @var array
*/
protected $contextualDependencies = [];
/**
* Instance replacers.
*
* @since 3.0.0
*
* @var array
*/
protected $replacers = [];
/**
* Parse the hint parameter.
*
* @param string|array $hint Type hint or array contaning both type hint and alias
*
* @since 3.0.0
*
* @return string
*/
protected function parseHint($hint): string
{
if (is_string($hint) && preg_match('/a-zA-Z/i', $hint)) {
return $hint;
} elseif (Arrays::isReallyArray($hint)) {
list($hint, $alias) = $hint;
$this->aliases[$alias] = $hint;
return $hint;
}
throw new \InvalidArgumentException("The {$hint} parameter should be array or string ".gettype($hint).' given', 500);
}
/**
* Register a type hint.
*
* @param string|array $hint Type hint or array contaning both type hint and alias.
* @param string|\Closure $class Class name or closure.
* @param bool $singleton Should we return the same instance every time?
*
* @since 3.0.0
*
* @return void
*/
public function register($hint, $class, bool $singleton = false)
{
if ($class instanceof $hint[0]) {
$this->hints[$this->parseHint($hint)] = ['class' => $class, 'singleton' => $singleton];
} else {
// If not an instance of a class then throw an exception.
throw new \InvalidArgumentException("Claass should be valid instance of {$hint[0]}.", 500);
}
}
/**
* Register a type hint and return the same instance every time.
*
* @param string|array $hint Type hint or array contaning both type hint and alias.
* @param string|\Closure $class Class name or closure.
*
* @since 3.0.0
*
* @return 3.0.0
*/
public function registerSingleton($hint, $class)
{
$this->register($hint, $class, true);
}
/**
* Register a singleton instance.
*
* @param string|array $hint Type hint or array contaning both type hint and alias.
* @param object $instance Class instance.
*
* @since 3.0.0
*
* @return void
*/
public function registerInstance($hint, $instance)
{
$this->instances[$this->parseHint($hint)] = $instance;
}
/**
* Registers a contextual dependency.
*
* @param string $class Class.
* @param string $interface Interface.
* @param string $implementation Implementation.
*
* @since 3.0.0
*
* @return void
*/
public function registerContextualDependency($class, string $interface, string $implementation)
{
$this->contextualDependencies[$class][$interface] = $implementation;
}
/**
* Return the name based on its alias.
*
* @param string $alias Alias.
*
* @since 3.0.0
*
* @return string
*/
protected function resolveAlias(string $alias)
{
return $this->aliases[$alias] ?? $alias;
}
/**
* Resolves a type hint.
*
* @param string $hint Type hint
*
* @since 3.0.0
*
* @return string|\Closure
*/
protected function resolveHint($hint)
{
return $this->hints[$hint]['class'] ?? $hint;
}
/**
* Resolves a contextual dependency.
*
* @param string $class Class.
* @param string $interface Interface.
*
* @since 3.0.0
*
* @return string
*/
protected function resolveContextualDependency(string $class, string $interface): string
{
return $this->contextualDependencies[$class][$interface] ?? $interface;
}
/**
* Merges the provided parameters with the reflection parameters into one array.
*
* @param array $reflectionParameters Reflection parameters.
* @param array $providedParameters Provided parameters.
*
* @since 3.0.0
*
* @return array
*/
protected function mergeParameters(array $reflectionParameters, array $providedParameters): array
{
$assocReflectionParameters = [];
foreach ($reflectionParameters as $value) {
$assocReflectionParameters[$value->getName()] = $value;
}
$assocProvidedParameters = [];
foreach ($reflectionParameters as $key => $value) {
$assocProvidedParameters[$key] = $value;
}
return array_replace($assocReflectionParameters, $assocProvidedParameters);
}
/**
* Returns the name of function.
*
* @param \ReflectionParameter $parameter ReflectionParameter instance.
*
* @since 3.0.0
*
* @return string
*/
protected function getDeclaringFunction(\ReflectionParameter $parameter): string
{
$declaringFunction = $parameter->getDeclaringFunction();
$class = $parameter->getDeclaringClass();
if ($declaringFunction->isClosure()) {
return 'Closure';
} elseif ($class === null) {
return $declaringFunction->getName();
}
return $class->getName().'::'.$declaringFunction->getName();
}
/**
* Resolve a parameter.
*
* @param \ReflectionParameter $parameter ReflectionParameter instance.
* @param \ReflectionClass|null $class ReflectionClass instance.
*
* @since 3.0.0
*
* @return mixed
*/
protected function resolveParameter(\ReflectionParameter $parameter, \ReflectionClass $class = null)
{
//Try to get the class name.
if ($parameterClass = $parameter->getClass() !== null) {
$parameterClassName = $parameterClass->getName();
if ($class !== null) {
$parameterClassName = $this->resolveContextualDependency($class->getName(), $parameterClassName);
}
return $this->get($parameterClassName);
//Detetmine Parameter has default value? yes, use it.
} elseif ($parameter->isDefaultValueAvailable()) {
return $parameter->getDefaultValue();
}
throw new \RuntimeException('Unable to resolve the parameter', 500);
}
/**
* Resolve parameters.
*
* @param array $reflectionParameters Reflection parameters.
* @param array $providedParameters Provided Parameters.
* @param \ReflectionClass|null $class ReflectionClass instance.
*
* @since 3.0.0
*
* @return array
*/
protected function resolveParameters(array $reflectionParameters, array $providedParameters, \ReflectionClass $class = null): array
{
//Merge the parameter in to one array.
$parameters = $this->mergeParameters($reflectionParameters, $providedParameters);
foreach ($parameters as $key => $parameter) {
//Determine either the parameter instance of \ReflectionParameter?
if ($parameter instanceof \ReflectionParameter) {
$parameters[$key] = $this->resolveParameter($parameter, $class);
}
}
return array_values($parameters);
}
/**
* Creates a class instance using closure.
*
* @param closure $factory Closuare.
* @param array $parameters Constructor parameters.
*
* @since 3.0.0
*
* @return object
*/
public function closureFactory(\Closure $factory, array $parameters)
{
$instance = $factory(...array_merge($this, $parameters));
//Determine closure return valid object.
if (is_object($instance) !== false) {
return $instance;
}
throw new \Exception('Instance should be an object', 500);
}
/**
* Creates a class instance using reflection.
*
* @param mixed $class Class name.
* @param array $parameters Constructor parameters.
*
* @since 3.0.0
*
* @return object
*/
public function reflectionFactory($class, array $parameters = [])
{
$class = new \ReflectionClass($class);
//Determine the class is really class?
if ($class->isInstantiable() === true) {
//Get the class construct.
$constructor = $class->getConstructor();
if (null === $constructor) {
//No construct just return an object.
return $class->newInstance();
}
//Get Construct parameters.
$constructorParameters = $constructor->getParameters();
return $class->newInstanceArgs($this->resolveParameters($constructorParameters, $parameters, $class));
}
throw new \Exception('Class is not instantiable', 500);
}
/**
* Creates a class instance.
*
* @param string|\Closure $class Class name or closure.
* @param array $parameters Constructor parameters.
*
* @since 3.0.0
*
* @return object
*/
public function factory($class, array $parameters = [])
{
//If Closure calls to closure method.
if ($class instanceof \Closure) {
$instance = $this->closureFactory($class, $parameters);
} else {
//If reflection calls to reflection.
$instance = $this->reflectionFactory($class, $parameters);
}
return $instance;
}
/**
* Checks if a class is registered in the container.
*
* @param string $class Class name.
*
* @since 3.0.0
*
* @return bool
*/
public function has(string $class): bool
{
$class = $this->resolveAlias($class);
return isset($this->hints[$class]) || isset($this->instances[$class]);
}
/**
* Returns TRUE if a class has been registered as a singleton and FALSE if not.
*
* @param string $class Class name.
*
* @since 3.0.0
*
* @return bool
*/
public function isSingleton(string $class): bool
{
$class = $this->resolveAlias($class);
return (isset($this->hints[$class]) || isset($this->instances[$class])) && $this->hints[$class]['singleton'] === true;
}
/**
* Returns a class instance.
*
* @param string $class Class name.
* @param array $parameters Constructor parameters.
*
* @since 3.0.0
*
* @return object
*/
public function get($class, array $parameters = [])
{
$class = $this->resolveAlias($class);
//If instance? return it.
if (isset($this->instances[$class])) {
return $this->instances[$class];
}
$instance = $this->factory($this->resolveHint($class), $parameters);
//If singleton store to new instance.
if (isset($this->hints[$class]) && $this->hints[$class]['singleton']) {
$this->instances[$class] = $instance;
}
return $instance;
}
/**
* Execute a callable and inject its dependencies.
*
* @param callable $callable Callable.
* @param array $parameters Parameters.
*
* @since 3.0.0
*
* @return object
*/
public function exec(callable $callable, array $parameters = [])
{
$reflection = new \ReflectionFunction($callable);
return $callable(...$this->resolveParameters($reflection->getParameters(), $parameters));
}
}