1 <sect1 id="zend.controller.dispatcher">
4 <sect2 id="zend.controller.dispatcher.overview">
8 分发是取得请求对象,提取其中的模块名,控制器名,动作名以及可选参数,然后实例化控制器并调用其中的动作的整过过程。如果其中的模块、控制器或者动作没能找到,将使用它们的默认值。<code>Zend_Controller_Dispatcher_Standard</code>指定每个控制器和动作的默认值为 <code>index</code>,模块的默认值为<code>default</code>,允许开发人通过<code>setDefaultController()</code>、<code>setDefaultAction()</code>和<code>setDefaultModule()</code>改变默认值设定。
15 当创建模块程序,你可能也需要缺省模块的命名空间(缺省配置中,缺省模块<emphasis>没有</emphasis>命名空间)。从 1.5.0 开始,可以在前端控制器或你的派遣器里通过指定 <code>prefixDefaultModule</code> 为 true 来实现。
18 <programlisting role="php"><![CDATA[
20 $front->setParam('prefixDefaultModule', true);
23 $dispatcher->setParam('prefixDefaultModule', true);
28 这允许你重定义一个已存在的模块为程序的缺省模块。
33 分发发生在前端控制器中的一个循环(loop)中。分发之前,前端控制器通过路由请求,找到用户指定的模块、控制器、动作和可选参数。然后进入分发循环,分发请求。
37 每次迭代(iteration)过程开始时,在请求对象中设置一个标志指示该动作已分发。如果在动作或者前/后分发(pre/postDispatch)插件重置了该标志,分发循环将继续下去并试图分发新的请求。通过改变请求中的控制器或者动作并重置已分发标志,开发人员可以定制执行一个请求链。
41 控制这种分发过程的动作控制器方法是<code>_forward()</code>;在任意的<code>pre/postDispatch()</code>或者动作中调用该方法,并传入动作、控制器、模块、以及可选的附加参数,就可以进入新的动作。
44 <programlisting role="php"><![CDATA[
45 public function fooAction()
47 // forward to another action in the current controller and module:
48 $this->_forward('bar', null, null, array('baz' => 'bogus'));
51 public function barAction()
53 // forward to an action in another controller:
54 // FooController::bazAction(),
55 // in the current module:
56 $this->_forward('baz', 'foo', null, array('baz' => 'bogus'));
59 public function bazAction()
61 // forward to an action in another controller in another module,
62 // Foo_BarController::bazAction():
63 $this->_forward('baz', 'bar', 'foo', array('baz' => 'bogus'));
69 <sect2 id="zend.controller.dispatcher.subclassing">
73 <code>Zend_Controller_Front</code>首先调用路由器找到请求中的第一个动作,然后进入分发循环,调用分发器分发动作。
77 分发器需要大量数据完成任务——它需要知道如何格式化控制器和动作的名称,到哪儿找到控制器类文件,模块名是否有效,以及基于其它可用信息判定请求是否能分发的API。
81 <code>Zend_Controller_Dispatcher_Interface</code>定义了下列所有分发器需要实现的方法。
84 <programlisting role="php"><![CDATA[
85 interface Zend_Controller_Dispatcher_Interface
88 * Format a string into a controller class name.
90 * @param string $unformatted
93 public function formatControllerName($unformatted);
96 * Format a string into an action method name.
98 * @param string $unformatted
101 public function formatActionName($unformatted);
104 * Determine if a request is dispatchable
106 * @param Zend_Controller_Request_Abstract $request
109 public function isDispatchable(
110 Zend_Controller_Request_Abstract $request
114 * Set a user parameter (via front controller, or for local use)
116 * @param string $name
117 * @param mixed $value
118 * @return Zend_Controller_Dispatcher_Interface
120 public function setParam($name, $value);
123 * Set an array of user parameters
125 * @param array $params
126 * @return Zend_Controller_Dispatcher_Interface
128 public function setParams(array $params);
131 * Retrieve a single user parameter
133 * @param string $name
136 public function getParam($name);
139 * Retrieve all user parameters
143 public function getParams();
146 * Clear the user parameter stack, or a single user parameter
148 * @param null|string|array single key or array of keys for
150 * @return Zend_Controller_Dispatcher_Interface
152 public function clearParams($name = null);
155 * Set the response object to use, if any
157 * @param Zend_Controller_Response_Abstract|null $response
160 public function setResponse(
161 Zend_Controller_Response_Abstract $response = null
165 * Retrieve the response object, if any
167 * @return Zend_Controller_Response_Abstract|null
169 public function getResponse();
172 * Add a controller directory to the controller directory stack
174 * @param string $path
175 * @param string $args
176 * @return Zend_Controller_Dispatcher_Interface
178 public function addControllerDirectory($path, $args = null);
181 * Set the directory (or directories) where controller files are
184 * @param string|array $dir
185 * @return Zend_Controller_Dispatcher_Interface
187 public function setControllerDirectory($path);
190 * Return the currently set directory(ies) for controller file
195 public function getControllerDirectory();
198 * Dispatch a request to a (module/)controller/action.
200 * @param Zend_Controller_Request_Abstract $request
201 * @param Zend_Controller_Response_Abstract $response
202 * @return Zend_Controller_Request_Abstract|boolean
204 public function dispatch(
205 Zend_Controller_Request_Abstract $request,
206 Zend_Controller_Response_Abstract $response
210 * Whether or not a given module is valid
212 * @param string $module
215 public function isValidModule($module);
218 * Retrieve the default module name
222 public function getDefaultModule();
225 * Retrieve the default controller name
229 public function getDefaultControllerName();
232 * Retrieve the default action
236 public function getDefaultAction();
242 不过大多数情况下,只需要简单地扩展抽象类<code>Zend_Controller_Dispatcher_Abstract</code>,其中已经定义好了上面的大部分方法。或者扩展<code>Zend_Controller_Dispatcher_Standard</code>类,基于标准分发器来修改功能。
246 需要子类化分发器的可能原因包括:期望在动作控制器中使用不同的类和方法命名模式,或者期望使用不同的分发方式,比如分发到控制器目录下的动作文件,而不是控制器类的动作方法。