Total Complexity | 71 |
Total Lines | 467 |
Duplicated Lines | 0 % |
Coverage | 98.05% |
Changes | 0 |
Complex classes like Container often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Container, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
48 | class Container implements ContainerInterface, ArrayAccess, IteratorAggregate, Countable |
||
49 | { |
||
50 | /** |
||
51 | * 容器对象实例 |
||
52 | * @var Container|Closure |
||
53 | */ |
||
54 | protected static $instance; |
||
55 | |||
56 | /** |
||
57 | * 容器中的对象实例 |
||
58 | * @var array |
||
59 | */ |
||
60 | protected $instances = []; |
||
61 | |||
62 | /** |
||
63 | * 容器绑定标识 |
||
64 | * @var array |
||
65 | */ |
||
66 | protected $bind = [ |
||
67 | 'app' => App::class, |
||
68 | 'cache' => Cache::class, |
||
69 | 'config' => Config::class, |
||
70 | 'console' => Console::class, |
||
71 | 'cookie' => Cookie::class, |
||
72 | 'db' => Db::class, |
||
73 | 'env' => Env::class, |
||
74 | 'event' => Event::class, |
||
75 | 'http' => Http::class, |
||
76 | 'lang' => Lang::class, |
||
77 | 'log' => Log::class, |
||
78 | 'middleware' => Middleware::class, |
||
79 | 'request' => Request::class, |
||
80 | 'response' => Response::class, |
||
81 | 'route' => Route::class, |
||
82 | 'session' => Session::class, |
||
83 | 'validate' => Validate::class, |
||
84 | 'view' => View::class, |
||
85 | |||
86 | // 接口依赖注入 |
||
87 | 'Psr\Log\LoggerInterface' => Log::class, |
||
88 | ]; |
||
89 | |||
90 | /** |
||
91 | * 获取当前容器的实例(单例) |
||
92 | * @access public |
||
93 | * @return static |
||
94 | */ |
||
95 | 3 | public static function getInstance() |
|
96 | { |
||
97 | 3 | if (is_null(static::$instance)) { |
|
98 | 1 | static::$instance = new static; |
|
99 | } |
||
100 | |||
101 | 3 | if (static::$instance instanceof Closure) { |
|
102 | 1 | return (static::$instance)(); |
|
103 | } |
||
104 | |||
105 | 3 | return static::$instance; |
|
106 | } |
||
107 | |||
108 | /** |
||
109 | * 设置当前容器的实例 |
||
110 | * @access public |
||
111 | * @param object|Closure $instance |
||
1 ignored issue
–
show
|
|||
112 | * @return void |
||
113 | */ |
||
114 | 29 | public static function setInstance($instance): void |
|
117 | 29 | } |
|
118 | |||
119 | /** |
||
120 | * 获取容器中的对象实例 不存在则创建 |
||
121 | * @access public |
||
122 | * @param string $abstract 类名或者标识 |
||
1 ignored issue
–
show
|
|||
123 | * @param array|true $vars 变量 |
||
1 ignored issue
–
show
|
|||
124 | * @param bool $newInstance 是否每次创建新的实例 |
||
1 ignored issue
–
show
|
|||
125 | * @return object |
||
126 | */ |
||
127 | 1 | public static function pull(string $abstract, array $vars = [], bool $newInstance = false) |
|
128 | { |
||
129 | 1 | return static::getInstance()->make($abstract, $vars, $newInstance); |
|
130 | } |
||
131 | |||
132 | /** |
||
133 | * 获取容器中的对象实例 |
||
134 | * @access public |
||
135 | * @param string $abstract 类名或者标识 |
||
1 ignored issue
–
show
|
|||
136 | * @return object |
||
137 | */ |
||
138 | 12 | public function get($abstract) |
|
139 | { |
||
140 | 12 | if ($this->has($abstract)) { |
|
141 | 11 | return $this->make($abstract); |
|
142 | } |
||
143 | |||
144 | 1 | throw new ClassNotFoundException('class not exists: ' . $abstract, $abstract); |
|
145 | } |
||
146 | |||
147 | /** |
||
148 | * 绑定一个类、闭包、实例、接口实现到容器 |
||
149 | * @access public |
||
150 | * @param string|array $abstract 类标识、接口 |
||
1 ignored issue
–
show
|
|||
151 | * @param mixed $concrete 要绑定的类、闭包或者实例 |
||
1 ignored issue
–
show
|
|||
152 | * @return $this |
||
153 | */ |
||
154 | 9 | public function bind($abstract, $concrete = null) |
|
155 | { |
||
156 | 9 | if (is_array($abstract)) { |
|
157 | 4 | $this->bind = array_merge($this->bind, $abstract); |
|
158 | 6 | } elseif ($concrete instanceof Closure) { |
|
159 | 3 | $this->bind[$abstract] = $concrete; |
|
160 | 4 | } elseif (is_object($concrete)) { |
|
161 | 3 | $this->instance($abstract, $concrete); |
|
162 | } else { |
||
163 | 2 | $this->bind[$abstract] = $concrete; |
|
164 | } |
||
165 | |||
166 | 9 | return $this; |
|
167 | } |
||
168 | |||
169 | /** |
||
170 | * 绑定一个类实例到容器 |
||
171 | * @access public |
||
172 | * @param string $abstract 类名或者标识 |
||
1 ignored issue
–
show
|
|||
173 | * @param object $instance 类的实例 |
||
1 ignored issue
–
show
|
|||
174 | * @return $this |
||
175 | */ |
||
176 | 22 | public function instance(string $abstract, $instance) |
|
177 | { |
||
178 | 22 | if (isset($this->bind[$abstract])) { |
|
179 | 19 | $bind = $this->bind[$abstract]; |
|
180 | |||
181 | 19 | if (is_string($bind)) { |
|
182 | 19 | return $this->instance($bind, $instance); |
|
183 | } |
||
184 | } |
||
185 | |||
186 | 22 | $this->instances[$abstract] = $instance; |
|
187 | |||
188 | 22 | return $this; |
|
189 | } |
||
190 | |||
191 | /** |
||
192 | * 判断容器中是否存在类及标识 |
||
193 | * @access public |
||
194 | * @param string $abstract 类名或者标识 |
||
1 ignored issue
–
show
|
|||
195 | * @return bool |
||
196 | */ |
||
197 | 12 | public function bound(string $abstract): bool |
|
198 | { |
||
199 | 12 | return isset($this->bind[$abstract]) || isset($this->instances[$abstract]); |
|
200 | } |
||
201 | |||
202 | /** |
||
203 | * 判断容器中是否存在类及标识 |
||
204 | * @access public |
||
205 | * @param string $name 类名或者标识 |
||
1 ignored issue
–
show
|
|||
206 | * @return bool |
||
207 | */ |
||
208 | 12 | public function has($name): bool |
|
209 | { |
||
210 | 12 | return $this->bound($name); |
|
211 | } |
||
212 | |||
213 | /** |
||
214 | * 判断容器中是否存在对象实例 |
||
215 | * @access public |
||
216 | * @param string $abstract 类名或者标识 |
||
1 ignored issue
–
show
|
|||
217 | * @return bool |
||
218 | */ |
||
219 | 4 | public function exists(string $abstract): bool |
|
220 | { |
||
221 | 4 | if (isset($this->bind[$abstract])) { |
|
222 | 3 | $bind = $this->bind[$abstract]; |
|
223 | |||
224 | 3 | if (is_string($bind)) { |
|
225 | 2 | return $this->exists($bind); |
|
226 | } |
||
227 | } |
||
228 | |||
229 | 4 | return isset($this->instances[$abstract]); |
|
230 | } |
||
231 | |||
232 | /** |
||
233 | * 创建类的实例 已经存在则直接获取 |
||
234 | * @access public |
||
235 | * @param string $abstract 类名或者标识 |
||
1 ignored issue
–
show
|
|||
236 | * @param array $vars 变量 |
||
1 ignored issue
–
show
|
|||
237 | * @param bool $newInstance 是否每次创建新的实例 |
||
1 ignored issue
–
show
|
|||
238 | * @return mixed |
||
239 | */ |
||
240 | 16 | public function make(string $abstract, array $vars = [], bool $newInstance = false) |
|
241 | { |
||
242 | 16 | if (isset($this->instances[$abstract]) && !$newInstance) { |
|
243 | 12 | return $this->instances[$abstract]; |
|
244 | } |
||
245 | |||
246 | 15 | if (isset($this->bind[$abstract])) { |
|
247 | 13 | $concrete = $this->bind[$abstract]; |
|
248 | |||
249 | 13 | if ($concrete instanceof Closure) { |
|
250 | 3 | $object = $this->invokeFunction($concrete, $vars); |
|
251 | } else { |
||
252 | 13 | return $this->make($concrete, $vars, $newInstance); |
|
253 | } |
||
254 | } else { |
||
255 | 12 | $object = $this->invokeClass($abstract, $vars); |
|
256 | } |
||
257 | |||
258 | 15 | if (!$newInstance) { |
|
259 | 15 | $this->instances[$abstract] = $object; |
|
260 | } |
||
261 | |||
262 | 15 | return $object; |
|
263 | } |
||
264 | |||
265 | /** |
||
266 | * 删除容器中的对象实例 |
||
267 | * @access public |
||
268 | * @param string $name 类名或者标识 |
||
1 ignored issue
–
show
|
|||
269 | * @return void |
||
270 | */ |
||
271 | 2 | public function delete($name) |
|
272 | { |
||
273 | 2 | if (isset($this->bind[$name])) { |
|
274 | 2 | $bind = $this->bind[$name]; |
|
275 | |||
276 | 2 | if (is_string($bind)) { |
|
277 | 2 | return $this->delete($bind); |
|
278 | } |
||
279 | } |
||
280 | |||
281 | 2 | if (isset($this->instances[$name])) { |
|
282 | 2 | unset($this->instances[$name]); |
|
283 | } |
||
284 | 2 | } |
|
285 | |||
286 | /** |
||
287 | * 执行函数或者闭包方法 支持参数调用 |
||
288 | * @access public |
||
289 | * @param mixed $function 函数或者闭包 |
||
1 ignored issue
–
show
|
|||
290 | * @param array $vars 参数 |
||
1 ignored issue
–
show
|
|||
291 | * @return mixed |
||
292 | */ |
||
293 | 5 | public function invokeFunction($function, array $vars = []) |
|
294 | { |
||
295 | try { |
||
296 | 5 | $reflect = new ReflectionFunction($function); |
|
297 | |||
298 | 4 | $args = $this->bindParams($reflect, $vars); |
|
299 | |||
300 | 4 | return call_user_func_array($function, $args); |
|
301 | 1 | } catch (ReflectionException $e) { |
|
302 | 1 | throw new Exception('function not exists: ' . $function . '()'); |
|
303 | } |
||
304 | } |
||
305 | |||
306 | /** |
||
307 | * 调用反射执行类的方法 支持参数绑定 |
||
308 | * @access public |
||
309 | * @param mixed $method 方法 |
||
1 ignored issue
–
show
|
|||
310 | * @param array $vars 参数 |
||
1 ignored issue
–
show
|
|||
311 | * @return mixed |
||
312 | */ |
||
313 | 3 | public function invokeMethod($method, array $vars = []) |
|
314 | { |
||
315 | try { |
||
316 | 3 | if (is_array($method)) { |
|
317 | 3 | $class = is_object($method[0]) ? $method[0] : $this->invokeClass($method[0]); |
|
318 | 3 | $reflect = new ReflectionMethod($class, $method[1]); |
|
319 | } else { |
||
320 | // 静态方法 |
||
321 | 1 | $reflect = new ReflectionMethod($method); |
|
322 | } |
||
323 | |||
324 | 2 | $args = $this->bindParams($reflect, $vars); |
|
325 | |||
326 | 2 | return $reflect->invokeArgs($class ?? null, $args); |
|
327 | 1 | } catch (ReflectionException $e) { |
|
328 | 1 | if (is_array($method)) { |
|
329 | 1 | $class = is_object($method[0]) ? get_class($method[0]) : $method[0]; |
|
330 | 1 | $callback = $class . '::' . $method[1]; |
|
331 | } else { |
||
332 | $callback = $method; |
||
333 | } |
||
334 | |||
335 | 1 | throw new Exception('method not exists: ' . $callback . '()'); |
|
336 | } |
||
337 | } |
||
338 | |||
339 | /** |
||
340 | * 调用反射执行类的方法 支持参数绑定 |
||
341 | * @access public |
||
342 | * @param object $instance 对象实例 |
||
1 ignored issue
–
show
|
|||
343 | * @param mixed $reflect 反射类 |
||
1 ignored issue
–
show
|
|||
344 | * @param array $vars 参数 |
||
1 ignored issue
–
show
|
|||
345 | * @return mixed |
||
346 | */ |
||
347 | 1 | public function invokeReflectMethod($instance, $reflect, array $vars = []) |
|
348 | { |
||
349 | 1 | $args = $this->bindParams($reflect, $vars); |
|
350 | |||
351 | 1 | return $reflect->invokeArgs($instance, $args); |
|
352 | } |
||
353 | |||
354 | /** |
||
355 | * 调用反射执行callable 支持参数绑定 |
||
356 | * @access public |
||
357 | * @param mixed $callable |
||
1 ignored issue
–
show
|
|||
358 | * @param array $vars 参数 |
||
1 ignored issue
–
show
|
|||
359 | * @return mixed |
||
360 | */ |
||
361 | 2 | public function invoke($callable, array $vars = []) |
|
362 | { |
||
363 | 2 | if ($callable instanceof Closure) { |
|
364 | 1 | return $this->invokeFunction($callable, $vars); |
|
365 | } |
||
366 | |||
367 | 2 | return $this->invokeMethod($callable, $vars); |
|
368 | } |
||
369 | |||
370 | /** |
||
371 | * 调用反射执行类的实例化 支持依赖注入 |
||
372 | * @access public |
||
373 | * @param string $class 类名 |
||
1 ignored issue
–
show
|
|||
374 | * @param array $vars 参数 |
||
1 ignored issue
–
show
|
|||
375 | * @return mixed |
||
376 | */ |
||
377 | 15 | public function invokeClass(string $class, array $vars = []) |
|
378 | { |
||
379 | try { |
||
380 | 15 | $reflect = new ReflectionClass($class); |
|
381 | |||
382 | 14 | if ($reflect->hasMethod('__make')) { |
|
383 | 11 | $method = new ReflectionMethod($class, '__make'); |
|
384 | |||
385 | 11 | if ($method->isPublic() && $method->isStatic()) { |
|
386 | 11 | $args = $this->bindParams($method, $vars); |
|
387 | 11 | return $method->invokeArgs(null, $args); |
|
388 | } |
||
389 | } |
||
390 | |||
391 | 11 | $constructor = $reflect->getConstructor(); |
|
392 | |||
393 | 11 | $args = $constructor ? $this->bindParams($constructor, $vars) : []; |
|
394 | |||
395 | 11 | return $reflect->newInstanceArgs($args); |
|
396 | 1 | } catch (ReflectionException $e) { |
|
397 | 1 | throw new ClassNotFoundException('class not exists: ' . $class, $class); |
|
398 | } |
||
399 | } |
||
400 | |||
401 | /** |
||
402 | * 绑定参数 |
||
403 | * @access protected |
||
404 | * @param \ReflectionMethod|\ReflectionFunction $reflect 反射类 |
||
1 ignored issue
–
show
|
|||
405 | * @param array $vars 参数 |
||
1 ignored issue
–
show
|
|||
406 | * @return array |
||
407 | */ |
||
408 | 17 | protected function bindParams($reflect, array $vars = []): array |
|
409 | { |
||
410 | 17 | if ($reflect->getNumberOfParameters() == 0) { |
|
411 | 6 | return []; |
|
412 | } |
||
413 | |||
414 | // 判断数组类型 数字数组时按顺序绑定参数 |
||
415 | 11 | reset($vars); |
|
416 | 11 | $type = key($vars) === 0 ? 1 : 0; |
|
417 | 11 | $params = $reflect->getParameters(); |
|
418 | 11 | $args = []; |
|
419 | |||
420 | 11 | foreach ($params as $param) { |
|
421 | 11 | $name = $param->getName(); |
|
422 | 11 | $lowerName = App::parseName($name); |
|
423 | 11 | $class = $param->getClass(); |
|
424 | |||
425 | 11 | if ($class) { |
|
426 | 11 | $args[] = $this->getObjectParam($class->getName(), $vars); |
|
427 | 9 | } elseif (1 == $type && !empty($vars)) { |
|
428 | 1 | $args[] = array_shift($vars); |
|
429 | 9 | } elseif (0 == $type && isset($vars[$name])) { |
|
430 | 1 | $args[] = $vars[$name]; |
|
431 | 9 | } elseif (0 == $type && isset($vars[$lowerName])) { |
|
432 | 1 | $args[] = $vars[$lowerName]; |
|
433 | 9 | } elseif ($param->isDefaultValueAvailable()) { |
|
434 | 9 | $args[] = $param->getDefaultValue(); |
|
435 | } else { |
||
436 | 11 | throw new InvalidArgumentException('method param miss:' . $name); |
|
437 | } |
||
438 | } |
||
439 | |||
440 | 11 | return $args; |
|
441 | } |
||
442 | |||
443 | /** |
||
444 | * 获取对象类型的参数值 |
||
445 | * @access protected |
||
446 | * @param string $className 类名 |
||
1 ignored issue
–
show
|
|||
447 | * @param array $vars 参数 |
||
1 ignored issue
–
show
|
|||
448 | * @return mixed |
||
449 | */ |
||
450 | 11 | protected function getObjectParam(string $className, array &$vars) |
|
451 | { |
||
452 | 11 | $array = $vars; |
|
453 | 11 | $value = array_shift($array); |
|
454 | |||
455 | 11 | if ($value instanceof $className) { |
|
456 | 1 | $result = $value; |
|
457 | 1 | array_shift($vars); |
|
458 | } else { |
||
459 | 11 | $result = $this->make($className); |
|
460 | } |
||
461 | |||
462 | 11 | return $result; |
|
463 | } |
||
464 | |||
465 | 1 | public function __set($name, $value) |
|
468 | 1 | } |
|
469 | |||
470 | 11 | public function __get($name) |
|
471 | { |
||
472 | 11 | return $this->get($name); |
|
473 | } |
||
474 | |||
475 | 1 | public function __isset($name): bool |
|
478 | } |
||
479 | |||
480 | 2 | public function __unset($name) |
|
483 | 2 | } |
|
484 | |||
485 | 1 | public function offsetExists($key) |
|
486 | { |
||
487 | 1 | return $this->exists($key); |
|
488 | } |
||
489 | |||
490 | 1 | public function offsetGet($key) |
|
491 | { |
||
492 | 1 | return $this->make($key); |
|
493 | } |
||
494 | |||
495 | 1 | public function offsetSet($key, $value) |
|
496 | { |
||
497 | 1 | $this->bind($key, $value); |
|
498 | 1 | } |
|
499 | |||
500 | 1 | public function offsetUnset($key) |
|
501 | { |
||
502 | 1 | $this->delete($key); |
|
503 | 1 | } |
|
504 | |||
505 | //Countable |
||
506 | public function count() |
||
507 | { |
||
508 | return count($this->instances); |
||
509 | } |
||
510 | |||
511 | //IteratorAggregate |
||
512 | 1 | public function getIterator() |
|
515 | } |
||
516 | } |
||
517 |