| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2003-10-11 08:55:53 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | //  $tpl_file, $cache_id, $compile_id, &$results
 | 
					
						
							| 
									
										
										
										
											2003-10-11 08:55:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  | function smarty_core_read_cache_file(&$params, &$smarty) | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     static  $content_cache = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |     if ($smarty->force_compile) { | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |         // force compile enabled, always regenerate
 | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (isset($content_cache[$params['tpl_file'].','.$params['cache_id'].','.$params['compile_id']])) { | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |         list($params['results'], $smarty->_cache_info) = $content_cache[$params['tpl_file'].','.$params['cache_id'].','.$params['compile_id']]; | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |     if (!empty($smarty->cache_handler_func)) { | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |         // use cache_handler function
 | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |         call_user_func_array($smarty->cache_handler_func, | 
					
						
							| 
									
										
										
										
											2003-11-06 17:16:32 +00:00
										 |  |  |                              array('read', &$smarty, &$params['results'], $params['tpl_file'], $params['cache_id'], $params['compile_id'], null)); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         // use local cache file
 | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |         $_auto_id = $smarty->_get_auto_id($params['cache_id'], $params['compile_id']); | 
					
						
							|  |  |  |         $_cache_file = $smarty->_get_auto_filename($smarty->cache_dir, $params['tpl_file'], $_auto_id); | 
					
						
							|  |  |  |         $params['results'] = $smarty->_read_file($_cache_file); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (empty($params['results'])) { | 
					
						
							|  |  |  |         // nothing to parse (error?), regenerate cache
 | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-02-01 10:19:08 +00:00
										 |  |  |     $_contents = $params['results']; | 
					
						
							|  |  |  |     $_info_start = strpos($_contents, "\n") + 1; | 
					
						
							|  |  |  |     $_info_len = (int)substr($_contents, 0, $_info_start - 1); | 
					
						
							|  |  |  |     $_cache_info = unserialize(substr($_contents, $_info_start, $_info_len)); | 
					
						
							|  |  |  |     $params['results'] = substr($_contents, $_info_start + $_info_len); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-22 14:02:15 +00:00
										 |  |  |     if ($smarty->caching == 2 && isset ($_cache_info['expires'])){ | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |         // caching by expiration time
 | 
					
						
							| 
									
										
										
										
											2003-08-22 14:02:15 +00:00
										 |  |  |         if ($_cache_info['expires'] > -1 && (time() > $_cache_info['expires'])) { | 
					
						
							|  |  |  |             // cache expired, regenerate
 | 
					
						
							|  |  |  |             return false; | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         // caching by lifetime
 | 
					
						
							| 
									
										
										
										
											2003-08-22 14:02:15 +00:00
										 |  |  |         if ($smarty->cache_lifetime > -1 && (time() - $_cache_info['timestamp'] > $smarty->cache_lifetime)) { | 
					
						
							|  |  |  |             // cache expired, regenerate
 | 
					
						
							|  |  |  |             return false; | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |     if ($smarty->compile_check) { | 
					
						
							| 
									
										
										
										
											2003-10-11 08:55:53 +00:00
										 |  |  |         $_params = array('get_source' => false, 'quiet'=>true); | 
					
						
							| 
									
										
										
										
											2003-08-22 14:02:15 +00:00
										 |  |  |         foreach (array_keys($_cache_info['template']) as $_template_dep) { | 
					
						
							|  |  |  |             $_params['resource_name'] = $_template_dep; | 
					
						
							|  |  |  |             if (!$smarty->_fetch_resource_info($_params) || $_cache_info['timestamp'] < $_params['resource_timestamp']) { | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |                 // template file has changed, regenerate cache
 | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-22 14:02:15 +00:00
										 |  |  |         if (isset($_cache_info['config'])) { | 
					
						
							|  |  |  |             $_params = array('resource_base_path' => $smarty->config_dir, 'get_source' => false, 'quiet'=>true); | 
					
						
							|  |  |  |             foreach (array_keys($_cache_info['config']) as $_config_dep) { | 
					
						
							| 
									
										
										
										
											2003-08-14 16:44:03 +00:00
										 |  |  |                 $_params['resource_name'] = $_config_dep; | 
					
						
							| 
									
										
										
										
											2003-08-22 14:02:15 +00:00
										 |  |  |                 if (!$smarty->_fetch_resource_info($_params) || $_cache_info['timestamp'] < $_params['resource_timestamp']) { | 
					
						
							|  |  |  |                     // config file has changed, regenerate cache
 | 
					
						
							|  |  |  |                     return false; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-22 14:02:15 +00:00
										 |  |  |     $content_cache[$params['tpl_file'].','.$params['cache_id'].','.$params['compile_id']] = array($params['results'], $_cache_info); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-22 14:02:15 +00:00
										 |  |  |     $smarty->_cache_info = $_cache_info; | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |     return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* vim: set expandtab: */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 |