これは MVC フレームワーク ActionController のカプセル化です。
- /*
- * MST_Library v3.1
- * @autohr Janpoem
- */
- if (!define('IN_MST_CORE'))
- exit('MST_ActionController 単一で含めることはできません! ');
- if (!define(MST_Core::LITE_MODE)) {
- MST_Core::import(array(
- 'MST/ActionController/Request',
- 'MST/ActionController/Router',
- ), MST_Core::P_LIB ;
- VIEW = 'ビュー',
- TEXT = 'テキスト',
- ACTION = 'アクション',
- WIDGET = 'ウィジェット',
- CUSTOM_VIEW = 'custom_view';
- プライベート静的
- $_request = null,
- $_instance = null,
- $_currentView = null;
-
- # @todo ここでの処理はコントローラーがインスタンス化された後に行われるべきであり、ディスパッチには特定の意味があるはずです
- Final static public functiondispatch(array $config = null, $beforeDispatch = null) {
- if (self ::$_instance == null) {
- $request = new MST_ActionController_Request($config['request']);
- $router = new MST_ActionController_Router($config['routes']);
- $router-> ;routing($ request);
- $controller = $request['controller'];
- $controller = MST_String::camelize2($controller) . static::PF_CONTROLLER;
- if ($request['module'] != null ) {
- $ module = $request['module'];
- if (strpos($module, '/') !== false)
- $module = str_replace('/', '_', $module);
- $controller = $ module . '_' . $controller;
- }
- if (is_callable($beforeDispatch)) {
- call_user_func_array($beforeDispatch, array($request, & $controller));
- }
- $GLOBALS['DATA_CACHE '][' request'] = & $request;
- if (!class_exists($controller))
- MST_Core::error(202, $controller);
- else
- self::$_instance = new $controller();
- }
- }
- public
- $layout = false,
- $format = 'html',
- $params = null,
- $autoLoadHelper = false;
- protected
- $comet = 0,
- $viewPath = null,
- $defaultRender = self:: VIEW;
- 抽象パブリック関数 application();
- プライベート関数 __construct()
- {
- if ($this->comet <= 0)
- ob_start();
- $this->params = & $GLOBALS ['DATA_CACHE']['request'];
- $this->viewPath = トリム(
- $this->params['module'] . '/' . $this->params['コントローラー'], '/');
- if ($this->application() !== self::NO_RENDER)
- $this->action($this->params['action']);
- }
-
- public function __destruct() {
- if (!define(self::IS_RENDER) && self::$_currentView != null) {
- switch ($this->defaultRender) {
- case self::VIEW :
- case self:: TEXT :
- case self::ACTION :
- case self::WIDGET :
- #$this->defaultRender = $mode;
- Break;
- デフォルト :
- $this->defaultRender = self::VIEW ;
- }
- $this->render(
- $this->defaultRender,
- self::$_currentView
- );
- }
- if (self::$_instance != null)
- self::$_instance = null ;
- if ( self::$_request != null)
- self::$_request = null;
- }
-
- 保護関数 action($action) {
- $name = MST_String::camelize($action);
- $actName = $name . self::PF_ACTION;
- if (!method_exists($this, $actName))
- MST_Core::error(203, $actName);
- $actRef = new ReflectionMethod($this, $actName);
- if ($actRef- >isPrivate() || $actRef->isProtected()
- && !constant(MST_ActionController_Router::IS_MAP))
- MST_Core::error(203, $actName);
- if ($this-> $actName() !== self::NO_RENDER && self::$_currentView == null)
- self::$_currentView = $action;
- return $this;
- }
-
- /**
- * 出力、URL ジャンプ
- */
- protected function redirect($ url) {
- if (define(self::IS_RENDER)) return self::NO_RENDER;
- define(self::IS_RENDER, true);
- header('Location:'.linkUri($url));
- return $this ;
- }
-
- // XML をレンダリングします
- // JAVASCRIPT
- 保護された関数をレンダリングします render(
- $mode = null,
- $content = null,
- array $options = null)
- {
- if (define(self) ::IS_RENDER) ) return self::NO_RENDER;
- define(self::IS_RENDER, true);
- if ($mode == null) $mode = $this->defaultRender;
- if ($mode == self: :VIEW)
- $content = $this->viewPath . '/' . $content;
- MST_ActionView::instance()
- ->assign($this)
- ->setOptions($options)
- -> render($mode , $content);
- return $this;
- }
-
- 保護関数customRender($file, $path, array $options = null) {
- return $this->render(self::CUSTOM_VIEW, array($file, $path), $options);
- }
-
- 保護関数 setView($val) {
- self::$_currentView = $val;
- }
-
- 保護関数 setViewOption($key, $val) {
- MST_ActionView::instance()->setOption($key, $val) );
- return $this;
- }
-
- 保護関数 getViewOption($key) {
- return MST_ActionView::instance()->getOption($key);
- }
-
- 保護関数 setViewOptions(array $options) {
- MST_ActionView::instance()->setOptions($options);
- return $this;
- }
-
- protected function getViewOptions() {
- return MST_ActionView::instance()->getOptions();
- }
-
- protected function doComet(Closure $fn) {
- $times = 0;
- set_time_limit(0);
- while(true) {
- ob_flush();
- flash();
- $times++;
- $result = call_user_func($fn, $回, $this);
- if ($result === false) {
- Break;
- }
- usleep(10000);
- sleep($this->comet);
- }
- }
- }
复制代
|