<ac:macro ac:name="unmigrated-inline-wiki-markup"><ac:plain-text-body><![CDATA[
Zend_Di is a dependency injector component. It minimizes coupling between groups of classes, makes unit testing much simpler, and provides an easy way to re-configure a package to use custom implementations of components. The architecture of the Zend_Di component is based on the following concepts:
Benefits of using a DI Container:Zend Framework: Zend_Di Component Proposal
Proposed Component Name
Zend_Di
Developer Notes
http://framework.zend.com/wiki/display/ZFDEV/Zend_Di
Proposers
Federico Cagnelutti
Matthew Weier O'Phinney, Zend Liaison
Revision
0.1 - 21 November 2007: Initial Proposal. (wiki revision: 66)
Table of Contents
1. Overview
2. References
3. Component Requirements, Constraints, and Acceptance Criteria
- This component will use Reflection to wire dependencies.
- This component will use Configuration to wire dependencies.
- This component must support PHP, XML and INI configuration files.
- This component must allow all components to be constructed using Zend_Config instances.
4. Dependencies on Other Framework Components
- Zend_Config (optional)
- Zend_Exception
- Zend_Loader
5. Theory of Operation
Zend_Di provides generic factory classes that instantiate instances of classes. These instances are then configured by the container, allowing construction logic to be reused on a broader level. For example:
Once we separate configuration from use, we can easily test the Car with different Engines. It's just a matter of re-configuring the package and injecting Zend_Car_Parts_Engine_Gas instead of Zend_Car_Parts_Engine_Fuel.
6. Milestones / Tasks
- Milestone 1: [DONE] Design interface
- Milestone 2: [DONE] Write proposal
- Milestone 3: [DONE] Gather feedback and revise design as necessary
- Milestone 4: Review by the Zend team
- Milestone 5: Develop full implementation and unit tests
- Milestone 6: Documentation
- Milestone 7: Future enhancements
7. Class Index
- Zend_Di
- Zend_Di_Container
- Zend_Di_Factory
- Zend_Di_Reflection
- Zend_Di_Parameter
- Zend_Di_Data
- Zend_Di_Registry
- Zend_Di_Storage_Interface
- Zend_Di_Storage_Object
- Zend_Di_Storage_Exception
- Zend_Di_Exception
8. Use Cases
Zend_Di handles injections via the constructor or setters methods. In addition, the component allows the user to map out specifications for components and their dependencies in a configuration file and generate the objects based on that specification.
Assembling Objects Using Reflection
| UC-01 |
|---|
Assembling objects using Zend_Di_Reflection
| UC-02 |
|---|
Assembling objects using Zend_Di_Container
Assembling Objects Using Configuration
The configuration is typically set up in a different file. Each package can have its own configuration file: PHP, INI or XML file. The configuration file holds the components specifications and package dependencies.
You can pass an instance of Zend_Config via the constructor, or set a configuration array using the setConfigArray() method.
The cases below assume that the following classes have been defined:
| UC-01 |
|---|
The two major flavors of Dependency Injection are Setter Injection (injection via setter methods) and Constructor Injection (injection via constructor arguments). Zend_Di provides support for both, and even allows you to mix the two when configuring the one object.
Constructor dependency injection
When a class is loaded, the constructor method is selected by default.
| UC-02 |
|---|
| UC-03 |
|---|
| UC-04 |
|---|
Users can map out specifications for components and their dependencies. So whenever a class is loaded, Zend_Di will inject the dependencies automatically. For example:
| UC-05 |
|---|
Setter dependency injection
| UC-06 |
|---|
Zend_Di injects dependencies using the top-down fashion, starting with the constructor and ending with the setter methods.
| UC-07 |
|---|
Users can map out specifications for a component:
| UC-08 |
|---|
Storage Containers
You can tell Zend_Di what components to manage by adding them to a container (the order of registration has no significance). Containers are stored are retrieved using the Zend_Di_Registry class. The Zend_Di_Registry::getContainer() method returns an instance of Zend_Di_Storage_Interface.
| UC-09 |
|---|
You can register your own container as long as you pass an instance of Zend_Di_Storage_Interface. New containers can be register using the Zend_Di_Registry::setStorage() method.
| UC-10 |
|---|
Real-life example
Please visit the following page: http://framework.zend.com/wiki/display/ZFPROP/Zend_Di+Example
9. Class Skeletons
- Zend_Di_Container
- Zend_Di_Factory
- Zend_Di_Parameter
- Zend_Di_Registry
- Zend_Di_Storage_Object