2003-05-08 20:21:16 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Smarty plugin
|
|
|
|
* @package Smarty
|
|
|
|
* @subpackage plugins
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* read a cache file, determine if it needs to be
|
|
|
|
* regenerated or not
|
|
|
|
*
|
|
|
|
* @param string $tpl_file
|
|
|
|
* @param string $cache_id
|
|
|
|
* @param string $compile_id
|
|
|
|
* @param string $results
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
|
|
|
|
// $tpl_file, $cache_id, $compile_id, &$results
|
|
|
|
|
|
|
|
function smarty_core_read_cache_file(&$params, &$this)
|
|
|
|
{
|
|
|
|
static $content_cache = array();
|
|
|
|
|
|
|
|
if ($this->force_compile) {
|
|
|
|
// force compile enabled, always regenerate
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($content_cache[$params['tpl_file'].','.$params['cache_id'].','.$params['compile_id']])) {
|
|
|
|
list($params['results'], $this->_cache_info) = $content_cache[$params['tpl_file'].','.$params['cache_id'].','.$params['compile_id']];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($this->cache_handler_func)) {
|
|
|
|
// use cache_handler function
|
|
|
|
call_user_func_array($this->cache_handler_func,
|
|
|
|
array('read', &$this, &$params['results'], $params['tpl_file'], $params['cache_id'], $params['compile_id']));
|
|
|
|
} else {
|
|
|
|
// use local cache file
|
|
|
|
$_auto_id = $this->_get_auto_id($params['cache_id'], $params['compile_id']);
|
|
|
|
$_cache_file = $this->_get_auto_filename($this->cache_dir, $params['tpl_file'], $_auto_id);
|
|
|
|
$params['results'] = $this->_read_file($_cache_file);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($params['results'])) {
|
|
|
|
// nothing to parse (error?), regenerate cache
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$cache_split = explode("\n", $params['results'], 2);
|
|
|
|
$cache_header = $cache_split[0];
|
|
|
|
|
|
|
|
$this->_cache_info = unserialize($cache_header);
|
|
|
|
|
|
|
|
if ($this->caching == 2 && isset ($this->_cache_info['expires'])){
|
|
|
|
// caching by expiration time
|
|
|
|
if ($this->_cache_info['expires'] > -1 && (time() > $this->_cache_info['expires'])) {
|
|
|
|
// cache expired, regenerate
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// caching by lifetime
|
|
|
|
if ($this->cache_lifetime > -1 && (time() - $this->_cache_info['timestamp'] > $this->cache_lifetime)) {
|
|
|
|
// cache expired, regenerate
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->compile_check) {
|
2003-06-16 19:45:11 +00:00
|
|
|
require_once(SMARTY_DIR . 'core/core.fetch_file_info.php');
|
2003-05-12 07:53:57 +00:00
|
|
|
foreach (array_keys($this->_cache_info['template']) as $_template_dep) {
|
2003-06-16 19:45:11 +00:00
|
|
|
$_params = array('file_path' => $this->template_dir . '/' . $_template_dep);
|
|
|
|
smarty_core_fetch_file_info($_params, $this);
|
|
|
|
if ($this->_cache_info['timestamp'] < $_params['file_timestamp']) {
|
2003-05-08 20:21:16 +00:00
|
|
|
// template file has changed, regenerate cache
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($this->_cache_info['config'])) {
|
2003-06-16 19:45:11 +00:00
|
|
|
require_once(SMARTY_DIR . 'core/core.fetch_file_info.php');
|
|
|
|
foreach (array_keys($this->_cache_info['config']) as $_config_dep) {
|
|
|
|
$_params = array('file_path' => $this->config_dir . '/' . $_config_dep);
|
|
|
|
smarty_core_fetch_file_info($_params, $this);
|
|
|
|
if ($this->_cache_info['timestamp'] < $_params['file_timestamp']) {
|
|
|
|
// config file has changed, regenerate cache
|
|
|
|
return false;
|
|
|
|
}
|
2003-05-08 20:21:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$params['results'] = $cache_split[1];
|
|
|
|
$content_cache[$params['tpl_file'].','.$params['cache_id'].','.$params['compile_id']] = array($params['results'], $this->_cache_info);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim: set expandtab: */
|
|
|
|
|
|
|
|
?>
|