当前位置:首页 > PHP教程 > php高级应用 > 列表

php中依赖注入深入理解

发布:smiling 来源: PHP粉丝网  添加日期:2018-10-13 14:15:49 浏览: 评论:0 

PHP程序员如何理解依赖注入容器(dependency injection container)

背景知识

传统的思路是应用程序用到一个Foo类,就会创建Foo类并调用Foo类的方法,假如这个方法内需要一个Bar类,就会创建Bar类并调用Bar类的方法,而这个方法内需要一个Bim类,就会创建Bim类,接着做些其它工作。

  1. <?php 
  2. // 代码【1】 
  3. class Bim 
  4.     public function doSomething() 
  5.     { 
  6.         echo __METHOD__'|'
  7.     } 
  8.  
  9. class Bar 
  10.     public function doSomething() 
  11.     { 
  12.         $bim = new Bim(); 
  13.         $bim->doSomething(); 
  14.         echo __METHOD__'|'
  15.     } 
  16.  
  17. class Foo 
  18.     public function doSomething() 
  19.     { 
  20.         $bar = new Bar(); 
  21.         $bar->doSomething(); 
  22.         echo __METHOD__
  23.     } 
  24.  
  25. $foo = new Foo(); 
  26. $foo->doSomething(); // Bim::doSomething|Bar::doSomething|Foo::doSomething 

使用依赖注入的思路是应用程序用到Foo类,Foo类需要Bar类,Bar类需要Bim类,那么先创建Bim类,再创建Bar类并把Bim注入,再创建Foo类,并把Bar类注入,再调用Foo方法,Foo调用Bar方法,接着做些其它工作。

  1. <?php 
  2. // 代码【2】 
  3. class Bim 
  4.     public function doSomething() 
  5.     { 
  6.         echo __METHOD__'|'
  7.     } 
  8.  
  9. class Bar 
  10.     private $bim
  11.  
  12.     public function __construct(Bim $bim
  13.     { 
  14.         $this->bim = $bim
  15.     } 
  16.  
  17.     public function doSomething() 
  18.     { 
  19.         $this->bim->doSomething(); 
  20.         echo __METHOD__'|'
  21.     } 
  22.  
  23. class Foo 
  24.     private $bar
  25.  
  26.     public function __construct(Bar $bar
  27.     { 
  28.         $this->bar = $bar
  29.     } 
  30.  
  31.     public function doSomething() 
  32.     { 
  33.         $this->bar->doSomething(); 
  34.         echo __METHOD__
  35.     } 
  36.  
  37. $foo = new Foo(new Bar(new Bim())); 
  38. $foo->doSomething(); // Bim::doSomething|Bar::doSomething|Foo::doSomething 

这就是控制反转模式。依赖关系的控制反转到调用链的起点。这样你可以完全控制依赖关系,通过调整不同的注入对象,来控制程序的行为。例如Foo类用到了memcache,可以在不修改Foo类代码的情况下,改用redis。

使用依赖注入容器后的思路是应用程序需要到Foo类,就从容器内取得Foo类,容器创建Bim类,再创建Bar类并把Bim注入,再创建Foo类,并把Bar注入,应用程序调用Foo方法,Foo调用Bar方法,接着做些其它工作.

总之容器负责实例化,注入依赖,处理依赖关系等工作。

代码演示 依赖注入容器 (dependency injection container)

通过一个最简单的容器类来解释一下,这段代码来自 Twittee

  1. <?php 
  2.  
  3. class Container 
  4.     private $s = array(); 
  5.  
  6.     function __set($k$c
  7.     { 
  8.         $this->s[$k] = $c
  9.     } 
  10.  
  11.     function __get($k
  12.     { 
  13.         return $this->s[$k]($this); 
  14.     } 

这段代码使用了魔术方法,在给不可访问属性赋值时,__set() 会被调用。读取不可访问属性的值时,__get() 会被调用。

  1. <?php 
  2.  
  3. $c = new Container(); 
  4.  
  5. $c->bim = function () { 
  6.     return new Bim(); 
  7. }; 
  8. $c->bar = function ($c) { 
  9.     return new Bar($c->bim); 
  10. }; 
  11. $c->foo = function ($c) { 
  12.     return new Foo($c->bar); 
  13. }; //phpfensi.com 
  14.  
  15. // 从容器中取得Foo 
  16. $foo = $c->foo; 
  17. $foo->doSomething(); // Bim::doSomething|Bar::doSomething|Foo::doSomething 

这段代码使用了匿名函数

再来一段简单的代码演示一下,容器代码来自simple di container

  1. <?php 
  2.  
  3. class IoC 
  4.     protected static $registry = []; 
  5.  
  6.     public static function bind($name, Callable $resolver
  7.     { 
  8.         static::$registry[$name] = $resolver
  9.     } 
  10.  
  11.     public static function make($name
  12.     { 
  13.         if (isset(static::$registry[$name])) { 
  14.             $resolver = static::$registry[$name]; 
  15.             return $resolver(); 
  16.         } 
  17.         throw new Exception('Alias does not exist in the IoC registry.'); 
  18.     } 
  19.  
  20. IoC::bind('bim'function () { 
  21.     return new Bim(); 
  22. }); 
  23. IoC::bind('bar'function () { 
  24.     return new Bar(IoC::make('bim')); 
  25. }); 
  26. IoC::bind('foo'function () { 
  27.     return new Foo(IoC::make('bar')); 
  28. }); 
  29.  
  30.  
  31. // 从容器中取得Foo 
  32. $foo = IoC::make('foo'); 
  33. $foo->doSomething(); // Bim::doSomething|Bar::doSomething|Foo::doSomething 

这段代码使用了后期静态绑定

依赖注入容器 (dependency injection container) 高级功能

真实的dependency injection container会提供更多的特性,如:

自动绑定(Autowiring)或 自动解析(Automatic Resolution)

注释解析器(Annotations)

延迟注入(Lazy injection)

下面的代码在Twittee的基础上,实现了Autowiring。

  1. <?php 
  2.  
  3. class Bim 
  4.     public function doSomething() 
  5.     { 
  6.         echo __METHOD__'|'
  7.     } 
  8.  
  9. class Bar 
  10.     private $bim
  11.  
  12.     public function __construct(Bim $bim
  13.     { 
  14.         $this->bim = $bim
  15.     } 
  16.  
  17.     public function doSomething() 
  18.     { 
  19.         $this->bim->doSomething(); 
  20.         echo __METHOD__'|'
  21.     } 
  22.  
  23. class Foo 
  24.     private $bar
  25.  
  26.     public function __construct(Bar $bar
  27.     { 
  28.         $this->bar = $bar
  29.     } 
  30.  
  31.     public function doSomething() 
  32.     { 
  33.         $this->bar->doSomething(); 
  34.         echo __METHOD__
  35.     } 
  36.  
  37. class Container 
  38.     private $s = array(); 
  39.  
  40.     public function __set($k$c
  41.     { 
  42.         $this->s[$k] = $c
  43.     } 
  44.  
  45.     public function __get($k
  46.     { 
  47.         // return $this->s[$k]($this); 
  48.         return $this->build($this->s[$k]); 
  49.     } 
  50.  
  51.     /** 
  52.      * 自动绑定(Autowiring)自动解析(Automatic Resolution) 
  53.      * 
  54.      * @param string $className 
  55.      * @return object 
  56.      * @throws Exception 
  57.      */ 
  58.     public function build($className
  59.     { 
  60.         // 如果是匿名函数(Anonymous functions),也叫闭包函数(closures) 
  61.         if ($className instanceof Closure) { 
  62.             // 执行闭包函数,并将结果 
  63.             return $className($this); 
  64.         } 
  65.  
  66.         /** @var ReflectionClass $reflector */ 
  67.         $reflector = new ReflectionClass($className); 
  68.  
  69.         // 检查类是否可实例化, 排除抽象类abstract和对象接口interface 
  70.         if (!$reflector->isInstantiable()) { 
  71.             throw new Exception("Can't instantiate this."); 
  72.         } 
  73.  
  74.         /** @var ReflectionMethod $constructor 获取类的构造函数 */ 
  75.         $constructor = $reflector->getConstructor(); 
  76.  
  77.         // 若无构造函数,直接实例化并返回 
  78.         if (is_null($constructor)) { 
  79.             return new $className
  80.         } 
  81.  
  82.         // 取构造函数参数,通过 ReflectionParameter 数组返回参数列表 
  83.         $parameters = $constructor->getParameters(); 
  84.  
  85.         // 递归解析构造函数的参数 
  86.         $dependencies = $this->getDependencies($parameters); 
  87.  
  88.         // 创建一个类的新实例,给出的参数将传递到类的构造函数。 
  89.         return $reflector->newInstanceArgs($dependencies); 
  90.     } 
  91.  
  92.     /** 
  93.      * @param array $parameters 
  94.      * @return array 
  95.      * @throws Exception 
  96.      */ 
  97.     public function getDependencies($parameters
  98.     { 
  99.         $dependencies = []; 
  100.  
  101.         /** @var ReflectionParameter $parameter */ 
  102.         foreach ($parameters as $parameter) { 
  103.             /** @var ReflectionClass $dependency */ 
  104.             $dependency = $parameter->getClass(); 
  105.  
  106.             if (is_null($dependency)) { 
  107.                 // 是变量,有默认值则设置默认值 
  108.                 $dependencies[] = $this->resolveNonClass($parameter); 
  109.             } else { 
  110.                 // 是一个类,递归解析 
  111.                 $dependencies[] = $this->build($dependency->name); 
  112.             } 
  113.         } 
  114.  
  115.         return $dependencies
  116.     } 
  117.  
  118.     /** 
  119.      * @param ReflectionParameter $parameter 
  120.      * @return mixed 
  121.      * @throws Exception 
  122.      */ 
  123.     public function resolveNonClass($parameter
  124.     { 
  125.         // 有默认值则返回默认值 
  126.         if ($parameter->isDefaultValueAvailable()) { 
  127.             return $parameter->getDefaultValue(); 
  128.         } 
  129.  
  130.         throw new Exception('I have no idea what to do here.'); 
  131.     } 
  132.  
  133. // ---- 
  134. $c = new Container(); 
  135. $c->bar = 'Bar'
  136. $c->foo = function ($c) { 
  137.     return new Foo($c->bar); 
  138. }; 
  139. // 从容器中取得Foo 
  140. $foo = $c->foo; 
  141. $foo->doSomething(); // Bim::doSomething|Bar::doSomething|Foo::doSomething 
  142.  
  143. // ---- 
  144. $di = new Container(); 
  145.  
  146. $di->foo = 'Foo'
  147.  
  148. /** @var Foo $foo */ 
  149. $foo = $di->foo; 
  150.  
  151. var_dump($foo); 
  152. /* 
  153. Foo#10 (1) { 
  154.   private $bar => 
  155.   class Bar#14 (1) { 
  156.     private $bim => 
  157.     class Bim#16 (0) { 
  158.     } 
  159.   } 
  160. } 
  161. */ 
  162.  
  163. $foo->doSomething(); // Bim::doSomething|Bar::doSomething|Foo::doSomething 

以上代码的原理参考PHP官方文档:反射,PHP 5 具有完整的反射 API,添加了对类、接口、函数、方法和扩展进行反向工程的能力。 此外,反射 API 提供了方法来取出函数、类和方法中的文档注释。

Tags: php依赖注入 php注入

分享到: