[关闭]
@Chiang 2020-02-16T16:25:45.000000Z 字数 5051 阅读 569

类的反射和依赖注入

Laravel-源码 2020-02


在讲服务容器之前我想先梳理下PHP反射相关的知识,PHP反射是程序实现依赖注入的基础,也是Laravel的服务容器实现服务解析的基础,如果你已经掌握了这方面基础知识,那么可以跳过本文直接看服务容器部分的内容。

PHP具有完整的反射 API,提供了对类、接口、函数、方法和扩展进行逆向工程的能力。通过类的反射提供的能力我们能够知道类是如何被定义的,它有什么属性、什么方法、方法都有哪些参数,类文件的路径是什么等很重要的信息。也正式因为类的反射很多PHP框架才能实现依赖注入自动解决类与类之间的依赖关系,这给我们平时的开发带来了很大的方便。 本文主要是讲解如何利用类的反射来实现依赖注入(Dependency Injection),并不会去逐条讲述PHP Reflection里的每一个API,详细的API参考信息请查阅官方文档

再次声明这里实现的依赖注入非常简单,并不能应用到实际开发中去,可以参考后面的文章服务容器(IocContainer), 了解Laravel的服务容器是如何实现依赖注入的。

为了更好地理解,我们通过一个例子来看类的反射,以及如何实现依赖注入。 下面这个类代表了坐标系里的一个点,有两个属性横坐标x和纵坐标y。

  1. /**
  2. * Class Point
  3. */
  4. class Point
  5. {
  6. public $x;
  7. public $y;
  8. /**
  9. * Point constructor.
  10. * @param int $x horizontal value of point's coordinate
  11. * @param int $y vertical value of point's coordinate
  12. */
  13. public function __construct($x = 0, $y = 0)
  14. {
  15. $this->x = $x;
  16. $this->y = $y;
  17. }
  18. }

接下来这个类代表圆形,可以看到在它的构造函数里有一个参数是Point类的,即Circle类是依赖与Point类的。

  1. class Circle
  2. {
  3. /**
  4. * @var int
  5. */
  6. public $radius;//半径
  7. /**
  8. * @var Point
  9. */
  10. public $center;//圆心点
  11. const PI = 3.14;
  12. public function __construct(Point $point, $radius = 1)
  13. {
  14. $this->center = $point;
  15. $this->radius = $radius;
  16. }
  17. //打印圆点的坐标
  18. public function printCenter()
  19. {
  20. printf('center coordinate is (%d, %d)', $this->center->x, $this->center->y);
  21. }
  22. //计算圆形的面积
  23. public function area()
  24. {
  25. return 3.14 * pow($this->radius, 2);
  26. }
  27. }

ReflectionClass

下面我们通过反射来对Circle这个类进行反向工程。 把Circle类的名字传递给reflectionClass来实例化一个ReflectionClass类的对象。

  1. $reflectionClass = new reflectionClass(Circle::class);
  2. //返回值如下
  3. object(ReflectionClass)#1 (1) {
  4. ["name"]=>
  5. string(6) "Circle"
  6. }

反射出类的常量

  1. $reflectionClass->getConstants();

返回一个由常量名称和值构成的关联数组

  1. array(1) {
  2. ["PI"]=>
  3. float(3.14)
  4. }

通过反射获取属性

  1. $reflectionClass->getProperties();

返回一个由ReflectionProperty对象构成的数组

  1. array(2) {
  2. [0]=>
  3. object(ReflectionProperty)#2 (2) {
  4. ["name"]=>
  5. string(6) "radius"
  6. ["class"]=>
  7. string(6) "Circle"
  8. }
  9. [1]=>
  10. object(ReflectionProperty)#3 (2) {
  11. ["name"]=>
  12. string(6) "center"
  13. ["class"]=>
  14. string(6) "Circle"
  15. }
  16. }

反射出类中定义的方法

  1. $reflectionClass->getMethods();

返回ReflectionMethod对象构成的数组

  1. array(3) {
  2. [0]=>
  3. object(ReflectionMethod)#2 (2) {
  4. ["name"]=>
  5. string(11) "__construct"
  6. ["class"]=>
  7. string(6) "Circle"
  8. }
  9. [1]=>
  10. object(ReflectionMethod)#3 (2) {
  11. ["name"]=>
  12. string(11) "printCenter"
  13. ["class"]=>
  14. string(6) "Circle"
  15. }
  16. [2]=>
  17. object(ReflectionMethod)#4 (2) {
  18. ["name"]=>
  19. string(4) "area"
  20. ["class"]=>
  21. string(6) "Circle"
  22. }
  23. }

我们还可以通过getConstructor()来单独获取类的构造方法,其返回值为一个ReflectionMethod对象。

  1. $constructor = $reflectionClass->getConstructor();

反射出方法的参数

  1. $parameters = $constructor->getParameters();

其返回值为ReflectionParameter对象构成的数组。

  1. array(2) {
  2. [0]=>
  3. object(ReflectionParameter)#3 (1) {
  4. ["name"]=>
  5. string(5) "point"
  6. }
  7. [1]=>
  8. object(ReflectionParameter)#4 (1) {
  9. ["name"]=>
  10. string(6) "radius"
  11. }
  12. }

依赖注入

好了接下来我们编写一个名为make的函数,传递类名称给make函数返回类的对象,在make里它会帮我们注入类的依赖,即在本例中帮我们注入Point对象给Circle类的构造方法。

  1. //构建类的对象
  2. function make($className)
  3. {
  4. $reflectionClass = new ReflectionClass($className);
  5. $constructor = $reflectionClass->getConstructor();
  6. $parameters = $constructor->getParameters();
  7. $dependencies = getDependencies($parameters);
  8. return $reflectionClass->newInstanceArgs($dependencies);
  9. }
  10. //依赖解析
  11. function getDependencies($parameters)
  12. {
  13. $dependencies = [];
  14. foreach($parameters as $parameter) {
  15. $dependency = $parameter->getClass();
  16. if (is_null($dependency)) {
  17. if($parameter->isDefaultValueAvailable()) {
  18. $dependencies[] = $parameter->getDefaultValue();
  19. } else {
  20. //不是可选参数的为了简单直接赋值为字符串0
  21. //针对构造方法的必须参数这个情况
  22. //laravel是通过service provider注册closure到IocContainer,
  23. //在closure里可以通过return new Class($param1, $param2)来返回类的实例
  24. //然后在make时回调这个closure即可解析出对象
  25. //具体细节我会在另一篇文章里面描述
  26. $dependencies[] = '0';
  27. }
  28. } else {
  29. //递归解析出依赖类的对象
  30. $dependencies[] = make($parameter->getClass()->name);
  31. }
  32. }
  33. return $dependencies;
  34. }

定义好make方法后我们通过它来帮我们实例化Circle类的对象:

  1. $circle = make('Circle');
  2. $area = $circle->area();
  3. /*var_dump($circle, $area);
  4. object(Circle)#6 (2) {
  5. ["radius"]=>
  6. int(1)
  7. ["center"]=>
  8. object(Point)#11 (2) {
  9. ["x"]=>
  10. int(0)
  11. ["y"]=>
  12. int(0)
  13. }
  14. }
  15. float(3.14)*/

通过上面这个实例我简单描述了一下如何利用PHP类的反射来实现依赖注入,Laravel的依赖注入也是通过这个思路来实现的,只不过设计的更精密大量地利用了闭包回调来应对各种复杂的依赖注入。

示例代码

  1. <?php
  2. class Circle
  3. {
  4. /**
  5. * @var int
  6. */
  7. public $radius;
  8. /**
  9. * @var Point
  10. */
  11. public $center;
  12. const PI = 3.14;
  13. public function __construct(Point $point, $radius = 1)
  14. {
  15. $this->center = $point;
  16. $this->radius = $radius;
  17. }
  18. public function printCenter()
  19. {
  20. printf('center coordinate is (%d, %d)', $this->center->x, $this->center->y);
  21. }
  22. public function area()
  23. {
  24. return 3.14 * pow($this->radius, 2);
  25. }
  26. }
  27. /**
  28. * Class Point
  29. */
  30. class Point
  31. {
  32. public $x;
  33. public $y;
  34. /**
  35. * Point constructor.
  36. * @param int $x horizontal value of point's coordinate
  37. * @param int $y vertical value of point's coordinate
  38. */
  39. public function __construct($x = 0, $y = 0)
  40. {
  41. $this->x = $x;
  42. $this->y = $y;
  43. }
  44. }
  45. $reflectionClass = new reflectionClass(Circle::class);
  46. function make($className)
  47. {
  48. $reflectionClass = new ReflectionClass($className);
  49. $constructor = $reflectionClass->getConstructor();
  50. $parameters = $constructor->getParameters();
  51. $dependencies = getDependencies($parameters);
  52. return $reflectionClass->newInstanceArgs($dependencies);
  53. }
  54. function getDependencies($parameters)
  55. {
  56. $dependencies = [];
  57. foreach($parameters as $parameter) {
  58. $dependency = $parameter->getClass();
  59. if (is_null($dependency)) {
  60. if($parameter->isDefaultValueAvailable()) {
  61. $dependencies[] = $parameter->getDefaultValue();
  62. } else {
  63. //to easily implement this function, I just assume 0 to built-in type parameters
  64. $dependencies[] = '0';
  65. }
  66. } else {
  67. $dependencies[] = make($parameter->getClass()->name);
  68. }
  69. }
  70. return $dependencies;
  71. }
  72. $circle = make('Circle');
  73. $area = $circle->area();

参考资料:
Laravel核心代码学习

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注