理解PHP依赖注入|LaravelIoC容器

王朝学院·作者佚名  2016-08-28  
宽屏版  字体: 小 | 中 | 大 | 超大  

原文连接(http://www.yuansir-web.com/2014/03/20)

Laravel框架的依赖注入确实很强大,并且通过容器实现依赖注入可以有选择性的加载需要的服务,减少初始化框架的开销,下面是我在网上看到的一个帖子,写的很好拿来与大家分享,文章从开始按照传统的类设计数据库连接一直到通过容器加载服务这个高度解耦的设计展示了依赖注入的强大之处,值得我们借鉴和学习。

-----------------------------------------------------------分割线下面是大牛的原文----------------------------------------------------------

首先,我们假设,我们要开发一个组件命名为SomeComponent。这个组件中现在将要注入一个数据库连接。在这个例子中,数据库连接在component中被创建,这种方法是不切实际的,这样做的话,我们将不能改变数据库连接参数及数据库类型等一些参数。

1<?php23classSomeComponent4{56/**7* The instantiation of the connection is hardcoded inside8* the component so is difficult to replace it externally9* or change its behavior10*/11publicfunctionsomeDbTask()12{13$connection=newConnection(array(14"host" => "localhost",15"username" => "root",16"passWord" => "secret",17"dbname" => "invo"18));1920//...21}2223}2425$some=newSomeComponent();26$some->someDbTask();

为了解决上面所说的问题,我们需要在使用前创建一个外部连接,并注入到容器中。就目前而言,这看起来是一个很好的解决方案:

1<?php23classSomeComponent4{56PRotected$_connection;78/**9* Sets the connection externally10*/11publicfunctionsetConnection($connection)12{13$this->_connection =$connection;14}1516publicfunctionsomeDbTask()17{18$connection=$this->_connection;1920//...21}2223}2425$some=newSomeComponent();2627//Create the connection28$connection=newConnection(array(29"host" => "localhost",30"username" => "root",31"password" => "secret",32"dbname" => "invo"33));3435//Inject the connection in the component36$some->setConnection($connection);3738$some->someDbTask();

现在我们来考虑一个问题,我们在应用程序中的不同地方使用此组件,将多次创建数据库连接。使用一种类似全局注册表的方式,从这获得一个数据库连接实例,而不是使用一次就创建一次。

1<?php23classRegistry4{56/**7* Returns the connection8*/9publicstaticfunctiongetConnection()10{11returnnewConnection(array(12"host" => "localhost",13"username" => "root",14"password" => "secret",15"dbname" => "invo"16));17}1819}2021classSomeComponent22{2324protected$_connection;2526/**27* Sets the connection externally28*/29publicfunctionsetConnection($connection){30$this->_connection =$connection;31}3233publicfunctionsomeDbTask()34{35$connection=$this->_connection;3637//...38}3940}4142$some=newSomeComponent();4344//Pass the connection defined in the registry45$some->setConnection(Registry::getConnection());4647$some->someDbTask();

现在,让我们来想像一下,我们必须在组件中实现两个方法,首先需要创建一个新的数据库连接,第二个总是获得一个共享连接:

1<?php23classRegistry4{56protectedstatic$_connection;78/**9* Creates a connection10*/11protectedstaticfunction_createConnection()12{13returnnewConnection(array(14"host" => "localhost",15"username" => "root",16"password" => "secret",17"dbname" => "invo"18));19}2021/**22* Creates a connection only once and returns it23*/24publicstaticfunctiongetSharedConnection()25{26if(self::$_connection===null){27$connection= self::_createConnection();28self::$_connection=$connection;29}30returnself::$_connection;31}3233/**34* Always returns a new connection35*/36publicstaticfunctiongetNewConnection()37{38returnself::_createConnection();39}4041}4243classSomeComponent44{4546protected$_connection;4748/**49* Sets the connection externally50*/51publicfunctionsetConnection($connection){52$this->_connection =$connection;53}5455/**56* This method always needs the shared connection57*/58publicfunctionsomeDbTask()59{60$connection=$this->_connection;6162//...63}6465/**66* This method always needs a new connection67*/68publicfunctionsomeOtherDbTask($connection)69{7071}7273}7475$some=newSomeComponent();7677//This injects the shared connection78$some->setConnection(Registry::getSharedConnection());7980$some->someDbTask();8182//Here, we always pass a new connection as parameter83$some->someOtherDbTask(Registry::getConnection());

到此为止,我们已经看到了如何使用依赖注入解决我们的问题。不是在代码内部创建依赖关系,而是让其作为一个参数传递,这使得我们的程序更容易维护,降低程序代码的耦合度,实现一种松耦合。但是从长远来看,这种形式的依赖注入也有一些缺点。

例如,如果组件中有较多的依赖关系,我们需要创建多个setter方法传递,或创建构造函数进行传递。另外,每次使用组件时,都需要创建依赖组件,使代码维护不太易,我们编写的代码可能像这样:

1<?php23//Create the dependencies or retrieve them from the registry4$connection=newConnection();5$session=newSession();6$fileSystem=newFileSystem();7$filter=newFilter();8$selector=newSelector();910//Pass them as constructor parameters11$some=newSomeComponent($connection,$session,$fileSystem,$filter,$selector);1213//... or using setters1415$some->setConnection($connection);16$some->setSession($session);17$some->setFileSystem($fileSystem);18$some->setFilter($filter);19$some->setSelector($selector);

我想,我们不得不在应用程序的许多地方创建这个对象。如果你不需要依赖的组件后,我们又要去代码注入部分移除构造函数中的参数或者是setter方法。为了解决这个问题,我们再次返回去使用一个全局注册表来创建组件。但是,在创建对象之前,它增加了一个新的抽象层:

1<?php23classSomeComponent4{56//...78/**9* Define a factory method to create SomeComponent instances injecting its dependencies10*/11publicstaticfunctionfactory()12{1314$connection=newConnection();15$session=newSession();16$fileSystem=newFileSystem();17$filter=newFilter();18$selector=newSelector();1920returnnewself($connection,$session,$fileSystem,$filter,$selector);21}2223}

这一刻,我们好像回到了问题的开始,我们正在创建组件内部的依赖,我们每次都在修改以及找寻一种解决问题的办法,但这都不是很好的做法。

一种实用和优雅的来解决这些问题,是使用容器的依赖注入,像我们在前面看到的,容器作为全局注册表,使用容器的依赖注入做为一种桥梁来解决依赖可以使我们的代码耦合度更低,很好的降低了组件的复杂性:

1<?php23classSomeComponent4{56protected$_di;78publicfunction__construct($di)9{10$this->_di =$di;11}1213publicfunctionsomeDbTask()14{1516//Get the connection service17// Always returns a new connection18$connection=$this->_di->get('db');1920}2122publicfunctionsomeOtherDbTask()23{2425//Get a shared connection service,26// this will return the same connection everytime27$connection=$this->_di->getShared('db');2829//This method also requires a input filtering service30$filter=$this->_db->get('filter');3132}3334}3536$di=newPhalcon\DI();3738//Register a "db" service in the container39$di->set('db',function(){40returnnewConnection(array(41"host" => "localhost",42"username" => "root",43"password" => "secret",44"dbname" => "invo"45));46});4748//Register a "filter" service in the container49$di->set('filter',function(){50returnnewFilter();51});5253//Register a "session" service in the container54$di->set('session',function(){55returnnewSession();56});5758//Pass the service container as unique parameter59$some=newSomeComponent($di);6061$some->someTask();

现在,该组件只有访问某种service的时候才需要它,如果它不需要,它甚至不初始化,以节约资源。该组件是高度解耦。他们的行为,或者说他们的任何其他方面都不会影响到组件本身。

我们的实现办法¶

Phalcon\DI 是一个实现了服务的依赖注入功能的组件,它本身也是一个容器。

由于Phalcon高度解耦,Phalcon\DI 是框架用来集成其他组件的必不可少的部分,开发人员也可以使用这个组件依赖注入和管理应用程序中不同类文件的实例。

基本上,这个组件实现了 Inversion of Control 模式。基于此,对象不再以构造函数接收参数或者使用setter的方式来实现注入,而是直接请求服务的依赖注入。这就大大降低了整体程序的复杂性,因为只有一个方法用以获得所需要的一个组件的依赖关系。

此外,这种模式增强了代码的可测试性,从而使它不容易出错。

在容器中注册服务¶

框架本身或开发人员都可以注册服务。当一个组件A要求调用组件B(或它的类的一个实例),可以从容器中请求调用组件B,而不是创建组件B的一个实例。

这种工作方式为我们提供了许多优点:

我们可以更换一个组件,从他们本身或者第三方轻松创建。

在组件发布之前,我们可以充分的控制对象的初始化,并对对象进行各种设置。

我们可以使用统一的方式从组件得到一个结构化的全局实例

服务可以通过以下几种方式注入到容器:

1<?php23//Create the Dependency Injector Container4$di=newPhalcon\DI();56//By its class name7$di->set("request", 'Phalcon\Http\Request');89//Using an anonymous function, the instance will lazy loaded10$di->set("request",function(){11returnnewPhalcon\Http\Request();12});1314//Registering directly an instance15$di->set("request",newPhalcon\Http\Request());1617//Using an array definition18$di->set("request",array(19"className" => 'Phalcon\Http\Request'20));

在上面的例子中,当向框架请求访问一个请求数据时,它将首先确定容器中是否存在这个”reqeust”名称的服务。

容器会反回一个请求数据的实例,开发人员最终得到他们想要的组件。

在上面示例中的每一种方法都有优缺点,具体使用哪一种,由开发过程中的特定场景来决定的。

用一个字符串来设定一个服务非常简单,但缺少灵活性。设置服务时,使用数组则提供了更多的灵活性,而且可以使用较复杂的代码。lambda函数是两者之间一个很好的平衡,但也可能导致更多的维护管理成本。

Phalcon\DI 提供服务的延迟加载。除非开发人员在注入服务的时候直接实例化一个对象,然后存存储到容器中。在容器中,通过数组,字符串等方式存储的服务都将被延迟加载,即只有在请求对象的时候才被初始化。

1<?php23//Register a service "db" with a class name and its parameters4$di->set("db",array(5"className" => "Phalcon\Db\Adapter\Pdo\MySQL",6"parameters" =>array(7"parameter" =>array(8"host" => "localhost",9"username" => "root",10"password" => "secret",11"dbname" => "blog"12)13)14));1516//Using an anonymous function17$di->set("db",function(){18returnnewPhalcon\Db\Adapter\Pdo\Mysql(array(19"host" => "localhost",20"username" => "root",21"password" => "secret",22"dbname" => "blog"23));24});

以上这两种服务的注册方式产生相同的结果。然后,通过数组定义的,在后面需要的时候,你可以修改服务参数:

1<?php23$di->setParameter("db", 0,array(4"host" => "localhost",5"username" => "root",6"password" => "secret"7));

从容器中获得服务的最简单方式就是使用”get”方法,它将从容器中返回一个新的实例:

1<?php2$request=$di->get("request");

或者通过下面这种魔术方法的形式调用:

1<?php23$request=$di->getRequest();45Phalcon\DI 同时允许服务重用,为了得到一个已经实例化过的服务,可以使用 getShared() 方法的形式来获得服务。

具体的 Phalcon\Http\Request 请求示例:

1<?php23$request=$di->getShared("request");

参数还可以在请求的时候通过将一个数组参数传递给构造函数的方式:

1<?php23$component=$di->get("MyComponent",array("some-parameter", "other"))

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
© 2005- 王朝网络 版权所有