在 Zend Framework 中,Zend_Application 对象有一个 bootstrap 对象来引导或配置组件。Bootstrap 类又可以访问 zend_application 对象来访问配置参数。
我的问题是,这是一种什么样的模式,或者是因为循环依赖而产生的代码味道。
问问题
152 次
1 回答
2
Zend Framework 1 很臃肿,这是肯定的。
该$_application
属性表示双向关系的原因是由于模块的独立引导文件。
我认为这很奇怪,因为在处理模块时,Zend_Aplication
您将拥有主引导程序而不是设置:
/**
* Set application/parent bootstrap
*
* @param Zend_Application|Zend_Application_Bootstrap_Bootstrapper $application
* @return Zend_Application_Bootstrap_BootstrapAbstract
*/
public function setApplication($application)
{
if (($application instanceof Zend_Application)
|| ($application instanceof Zend_Application_Bootstrap_Bootstrapper)
) {
if ($application === $this) {
throw new Zend_Application_Bootstrap_Exception('Cannot set application to same object; creates recursion');
}
$this->_application = $application;
} else {
throw new Zend_Application_Bootstrap_Exception('Invalid application provided to bootstrap constructor (received "' . get_class($application) . '" instance)');
}
return $this;
}
还有很多代码气味:
/**
* Constructor
*
* Sets application object, initializes options, and prepares list of
* initializer methods.
*
* @param Zend_Application|Zend_Application_Bootstrap_Bootstrapper $application
* @return void
* @throws Zend_Application_Bootstrap_Exception When invalid application is provided
*/
public function __construct($application)
{
$this->setApplication($application);
$options = $application->getOptions();
$this->setOptions($options);
}
boostrap 文件需要选项,因此它不要求选项,而是希望 Zend_Application 获得选项:
$options = $application->getOptions();
$this->setOptions($options);
似乎他们只是忽略了 setApplication() 方法所期望的接口类型,它可以是以下之一:
- Zend_Application
- Zend_Application_Bootstrap_Bootstrap
- Zend_Application_Bootstrap_ResourceBootstrap
不过,我会放弃尝试理解这种混乱并切换到 ZF 2 ;)
于 2012-08-31T20:48:13.643 回答