| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2009 http://thinkphp.cn All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: liu21st <liu21st@gmail.com>
- // +----------------------------------------------------------------------
- // $Id$
- /**
- +------------------------------------------------------------------------------
- * ThinkPHP 视图输出
- * 支持缓存和页面压缩
- +------------------------------------------------------------------------------
- * @category Think
- * @package Think
- * @subpackage Core
- * @author liu21st <liu21st@gmail.com>
- * @version $Id$
- +------------------------------------------------------------------------------
- */
- class View extends Think
- {
- protected $tVar = array(); // 模板输出变量
- protected $trace = array(); // 页面trace变量
- protected $templateFile = ''; // 模板文件名
- /**
- +----------------------------------------------------------
- * 模板变量赋值
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- * @param mixed $name
- * @param mixed $value
- +----------------------------------------------------------
- */
- public function assign($name,$value=''){
- if(is_array($name)) {
- $this->tVar = array_merge($this->tVar,$name);
- }elseif(is_object($name)){
- foreach($name as $key =>$val)
- $this->tVar[$key] = $val;
- }else {
- $this->tVar[$name] = $value;
- }
- }
- /**
- +----------------------------------------------------------
- * Trace变量赋值
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- * @param mixed $name
- * @param mixed $value
- +----------------------------------------------------------
- */
- public function trace($title,$value='') {
- if(is_array($title))
- $this->trace = array_merge($this->trace,$title);
- else
- $this->trace[$title] = $value;
- }
- /**
- +----------------------------------------------------------
- * 取得模板变量的值
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- * @param string $name
- +----------------------------------------------------------
- * @return mixed
- +----------------------------------------------------------
- */
- public function get($name){
- if(isset($this->tVar[$name]))
- return $this->tVar[$name];
- else
- return false;
- }
- /**
- +----------------------------------------------------------
- * 加载模板和页面输出 可以返回输出内容
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- * @param string $templateFile 模板文件名 留空为自动获取
- * @param string $charset 模板输出字符集
- * @param string $contentType 输出类型
- +----------------------------------------------------------
- * @return mixed
- +----------------------------------------------------------
- */
- public function display($templateFile='',$charset='',$contentType='text/html')
- {
- $this->fetch($templateFile,$charset,$contentType,true);
- }
- /**
- +----------------------------------------------------------
- * 输出布局模板
- +----------------------------------------------------------
- * @access protected
- +----------------------------------------------------------
- * @param string $charset 输出编码
- * @param string $contentType 输出类型
- * @param string $display 是否直接显示
- +----------------------------------------------------------
- * @return mixed
- +----------------------------------------------------------
- */
- protected function layout($content,$charset='',$contentType='text/html')
- {
- if(false !== strpos($content,'<!-- layout')) {
- // 查找布局包含的页面
- $find = preg_match_all('/<!-- layout::(.+?)::(.+?) -->/is',$content,$matches);
- if($find) {
- for ($i=0; $i< $find; $i++) {
- // 读取相关的页面模板替换布局单元
- if(0===strpos($matches[1][$i],'$'))
- // 动态布局
- $matches[1][$i] = $this->get(substr($matches[1][$i],1));
- if(0 != $matches[2][$i] ) {
- // 设置了布局缓存
- // 检查布局缓存是否有效
- $guid = md5($matches[1][$i]);
- $cache = S($guid);
- if($cache) {
- $layoutContent = $cache;
- }else{
- $layoutContent = $this->fetch($matches[1][$i],$charset,$contentType);
- S($guid,$layoutContent,$matches[2][$i]);
- }
- }else{
- $layoutContent = $this->fetch($matches[1][$i],$charset,$contentType);
- }
- $content = str_replace($matches[0][$i],$layoutContent,$content);
- }
- }
- }
- return $content;
- }
- /**
- +----------------------------------------------------------
- * 加载模板和页面输出
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- * @param string $templateFile 模板文件名 留空为自动获取
- * @param string $charset 模板输出字符集
- * @param string $contentType 输出类型
- * @param string $display 是否直接显示
- +----------------------------------------------------------
- * @return mixed
- +----------------------------------------------------------
- */
- public function fetch($templateFile='',$charset='',$contentType='text/html',$display=false)
- {
- $GLOBALS['_viewStartTime'] = microtime(TRUE);
- if(null===$templateFile)
- // 使用null参数作为模版名直接返回不做任何输出
- return ;
- if(empty($charset)) $charset = C('DEFAULT_CHARSET');
- // 网页字符编码
- header("Content-Type:".$contentType."; charset=".$charset);
- header("Cache-control: private"); //支持页面回跳
- //页面缓存
- ob_start();
- ob_implicit_flush(0);
- if(!file_exists_case($templateFile))
- // 自动定位模板文件
- $templateFile = $this->parseTemplateFile($templateFile);
- $engine = strtolower(C('TMPL_ENGINE_TYPE'));
- if('php'==$engine) {
- // 模板阵列变量分解成为独立变量
- extract($this->tVar, EXTR_OVERWRITE);
- // 直接载入PHP模板
- include $templateFile;
- }elseif('think'==$engine && $this->checkCache($templateFile)) {
- // 如果是Think模板引擎并且缓存有效 分解变量并载入模板缓存
- extract($this->tVar, EXTR_OVERWRITE);
- //载入模版缓存文件
- include C('CACHE_PATH').md5($templateFile).C('TMPL_CACHFILE_SUFFIX');
- }else{
- // 模板文件需要重新编译 支持第三方模板引擎
- // 调用模板引擎解析和输出
- $className = 'Template'.ucwords($engine);
- require_cache(THINK_PATH.'/Lib/Think/Util/Template/'.$className.'.class.php');
- $tpl = new $className;
- $tpl->fetch($templateFile,$this->tVar,$charset);
- }
- $this->templateFile = $templateFile;
- // 获取并清空缓存
- $content = ob_get_clean();
- // 模板内容替换
- $content = $this->templateContentReplace($content);
- // 布局模板解析
- $content = $this->layout($content,$charset,$contentType);
- // 输出模板文件
- return $this->output($content,$display);
- }
- /**
- +----------------------------------------------------------
- * 检查缓存文件是否有效
- * 如果无效则需要重新编译
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- * @param string $tmplTemplateFile 模板文件名
- +----------------------------------------------------------
- * @return boolen
- +----------------------------------------------------------
- */
- protected function checkCache($tmplTemplateFile)
- {
- if (!C('TMPL_CACHE_ON')) // 优先对配置设定检测
- return false;
- $tmplCacheFile = C('CACHE_PATH').md5($tmplTemplateFile).C('TMPL_CACHFILE_SUFFIX');
- if(!is_file($tmplCacheFile)){
- return false;
- }elseif (filemtime($tmplTemplateFile) > filemtime($tmplCacheFile)) {
- // 模板文件如果有更新则缓存需要更新
- return false;
- }elseif (C('TMPL_CACHE_TIME') != -1 && time() > filemtime($tmplCacheFile)+C('TMPL_CACHE_TIME')) {
- // 缓存是否在有效期
- return false;
- }
- //缓存有效
- return true;
- }
- /**
- +----------------------------------------------------------
- * 创建静态页面
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- * @htmlfile 生成的静态文件名称
- * @htmlpath 生成的静态文件路径
- * @param string $templateFile 指定要调用的模板文件
- * 默认为空 由系统自动定位模板文件
- * @param string $charset 输出编码
- * @param string $contentType 输出类型
- +----------------------------------------------------------
- * @return string
- +----------------------------------------------------------
- */
- public function buildHtml($htmlfile,$htmlpath='',$templateFile='',$charset='',$contentType='text/html') {
- $content = $this->fetch($templateFile,$charset,$contentType);
- $htmlpath = !empty($htmlpath)?$htmlpath:HTML_PATH;
- $htmlfile = $htmlpath.$htmlfile.C('HTML_FILE_SUFFIX');
- if(!is_dir(dirname($htmlfile)))
- // 如果静态目录不存在 则创建
- mk_dir(dirname($htmlfile));
- if(false === file_put_contents($htmlfile,$content))
- throw_exception(L('_CACHE_WRITE_ERROR_'));
- return $content;
- }
- /**
- +----------------------------------------------------------
- * 输出模板
- +----------------------------------------------------------
- * @access protected
- +----------------------------------------------------------
- * @param string $content 模板内容
- * @param boolean $display 是否直接显示
- +----------------------------------------------------------
- * @return mixed
- +----------------------------------------------------------
- */
- protected function output($content,$display) {
- if(C('HTML_CACHE_ON')) HtmlCache::writeHTMLCache($content);
- if($display) {
- if(C('SHOW_RUN_TIME')){
- $runtime = '<div id="think_run_time" class="think_run_time">'.$this->showTime().'</div>';
- if(strpos($content,'{__RUNTIME__}'))
- $content = str_replace('{__RUNTIME__}',$runtime,$content);
- else
- $content .= $runtime;
- }
- echo $content;
- if(C('SHOW_PAGE_TRACE')) $this->showTrace();
- return null;
- }else {
- return $content;
- }
- }
- /**
- +----------------------------------------------------------
- * 模板内容替换
- +----------------------------------------------------------
- * @access protected
- +----------------------------------------------------------
- * @param string $content 模板内容
- +----------------------------------------------------------
- * @return string
- +----------------------------------------------------------
- */
- protected function templateContentReplace($content) {
- // 系统默认的特殊变量替换
- $replace = array(
- '../Public' => APP_PUBLIC_PATH,// 项目公共目录
- '__PUBLIC__' => WEB_PUBLIC_PATH,// 站点公共目录
- '__TMPL__' => APP_TMPL_PATH, // 项目模板目录
- '__ROOT__' => __ROOT__, // 当前网站地址
- '__APP__' => __APP__, // 当前项目地址
- '__URL__' => __URL__, // 当前模块地址
- '__ACTION__' => __ACTION__, // 当前操作地址
- '__SELF__' => __SELF__, // 当前页面地址
- );
- if(C('TOKEN_ON')) {
- if(strpos($content,'{__TOKEN__}')) {
- // 指定表单令牌隐藏域位置
- $replace['{__TOKEN__}'] = $this->buildFormToken();
- }elseif(strpos($content,'{__NOTOKEN__}')){
- // 标记为不需要令牌验证
- $replace['{__NOTOKEN__}'] = '';
- }elseif(preg_match('/<\/form(\s*)>/is',$content,$match)) {
- // 智能生成表单令牌隐藏域
- $replace[$match[0]] = $this->buildFormToken().$match[0];
- }
- }
- // 允许用户自定义模板的字符串替换
- if(is_array(C('TMPL_PARSE_STRING')) )
- $replace = array_merge($replace,C('TMPL_PARSE_STRING'));
- $content = str_replace(array_keys($replace),array_values($replace),$content);
- return $content;
- }
- /**
- +----------------------------------------------------------
- * 创建表单令牌隐藏域
- +----------------------------------------------------------
- * @access private
- +----------------------------------------------------------
- * @return string
- +----------------------------------------------------------
- */
- private function buildFormToken() {
- // 开启表单验证自动生成表单令牌
- $tokenName = C('TOKEN_NAME');
- $tokenType = C('TOKEN_TYPE');
- $tokenValue = $tokenType(microtime(TRUE));
- $token = '<input type="hidden" name="'.$tokenName.'" value="'.$tokenValue.'" />';
- $_SESSION[$tokenName] = $tokenValue;
- return $token;
- }
- /**
- +----------------------------------------------------------
- * 自动定位模板文件
- +----------------------------------------------------------
- * @access private
- +----------------------------------------------------------
- * @param string $templateFile 文件名
- +----------------------------------------------------------
- * @return string
- +----------------------------------------------------------
- * @throws ThinkExecption
- +----------------------------------------------------------
- */
- private function parseTemplateFile($templateFile) {
- if(''==$templateFile) {
- // 如果模板文件名为空 按照默认规则定位
- $templateFile = C('TMPL_FILE_NAME');
- }elseif(strpos($templateFile,'@')){
- // 引入其它主题的操作模板 必须带上模块名称 例如 blue@User:add
- $templateFile = TMPL_PATH.str_replace(array('@',':'),'/',$templateFile).C('TMPL_TEMPLATE_SUFFIX');
- }elseif(strpos($templateFile,':')){
- // 引入其它模块的操作模板
- $templateFile = TEMPLATE_PATH.'/'.str_replace(':','/',$templateFile).C('TMPL_TEMPLATE_SUFFIX');
- }elseif(!is_file($templateFile)) {
- // 引入当前模块的其它操作模板
- $templateFile = dirname(C('TMPL_FILE_NAME')).'/'.$templateFile.C('TMPL_TEMPLATE_SUFFIX');
- }
- if(!file_exists_case($templateFile))
- throw_exception(L('_TEMPLATE_NOT_EXIST_').'['.$templateFile.']');
- return $templateFile;
- }
- /**
- +----------------------------------------------------------
- * 显示运行时间、数据库操作、缓存次数、内存使用信息
- +----------------------------------------------------------
- * @access private
- +----------------------------------------------------------
- * @return string
- +----------------------------------------------------------
- */
- private function showTime() {
- // 显示运行时间
- $startTime = $GLOBALS['_viewStartTime'];
- $endTime = microtime(TRUE);
- $total_run_time = number_format(($endTime - $GLOBALS['_beginTime']), 3);
- $showTime = 'Process: '.$total_run_time.'s ';
- if(C('SHOW_ADV_TIME')) {
- // 显示详细运行时间
- $_load_time = number_format(($GLOBALS['_loadTime'] -$GLOBALS['_beginTime'] ), 3);
- $_init_time = number_format(($GLOBALS['_initTime'] -$GLOBALS['_loadTime'] ), 3);
- $_exec_time = number_format(($startTime -$GLOBALS['_initTime'] ), 3);
- $_parse_time = number_format(($endTime - $startTime), 3);
- $showTime .= '( Load:'.$_load_time.'s Init:'.$_init_time.'s Exec:'.$_exec_time.'s Template:'.$_parse_time.'s )';
- }
- if(C('SHOW_DB_TIMES') && class_exists('Db',false) ) {
- // 显示数据库操作次数
- $db = Db::getInstance();
- $showTime .= ' | DB :'.$db->Q().' queries '.$db->W().' writes ';
- }
- if(C('SHOW_CACHE_TIMES') && class_exists('Cache',false)) {
- // 显示缓存读写次数
- $cache = Cache::getInstance();
- $showTime .= ' | Cache :'.$cache->Q().' gets '.$cache->W().' writes ';
- }
- if(MEMORY_LIMIT_ON && C('SHOW_USE_MEM')) {
- // 显示内存开销
- $startMem = array_sum(explode(' ', $GLOBALS['_startUseMems']));
- $endMem = array_sum(explode(' ', memory_get_usage()));
- $showTime .= ' | UseMem:'. number_format(($endMem - $startMem)/1024).' kb';
- }
- return $showTime;
- }
- /**
- +----------------------------------------------------------
- * 显示页面Trace信息
- +----------------------------------------------------------
- * @access private
- +----------------------------------------------------------
- */
- private function showTrace(){
- // 显示页面Trace信息 读取Trace定义文件
- // 定义格式 return array('当前页面'=>$_SERVER['PHP_SELF'],'通信协议'=>$_SERVER['SERVER_PROTOCOL'],...);
- $traceFile = CONFIG_PATH.'trace.php';
- $_trace = is_file($traceFile)? include $traceFile : array();
- // 系统默认显示信息
- $this->trace('当前页面', $_SERVER['REQUEST_URI']);
- $this->trace('模板缓存', C('CACHE_PATH').md5($this->templateFile).C('TMPL_CACHFILE_SUFFIX'));
- $this->trace('请求方法', $_SERVER['REQUEST_METHOD']);
- $this->trace('通信协议', $_SERVER['SERVER_PROTOCOL']);
- $this->trace('请求时间', date('Y-m-d H:i:s',$_SERVER['REQUEST_TIME']));
- $this->trace('用户代理', $_SERVER['HTTP_USER_AGENT']);
- $this->trace('会话ID' , session_id());
- $log = Log::$log;
- $this->trace('日志记录',count($log)?count($log).'条日志<br/>'.implode('<br/>',$log):'无日志记录');
- $files = get_included_files();
- $this->trace('加载文件', count($files).str_replace("\n",'<br/>',substr(substr(print_r($files,true),7),0,-2)));
- $_trace = array_merge($_trace,$this->trace);
- // 调用Trace页面模板
- include C('TMPL_TRACE_FILE');
- }
- }//
- ?>
|