| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * Smarty Internal Plugin | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package    Smarty | 
					
						
							|  |  |  |  * @subpackage Cacher | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * Cache Handler API | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package    Smarty | 
					
						
							|  |  |  |  * @subpackage Cacher | 
					
						
							|  |  |  |  * @author     Rodney Rehm | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | abstract class Smarty_CacheResource | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * cache for Smarty_CacheResource instances | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-10-15 10:46:03 +00:00
										 |  |  |     public static $resources = array(); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * resource types provided by the core | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     protected static $sysplugins = array( | 
					
						
							| 
									
										
										
										
											2011-10-15 10:46:03 +00:00
										 |  |  |         'file' => true, | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * populate Cached Object with meta data from Resource | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached   $cached    cached object | 
					
						
							|  |  |  |      * @param Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     abstract public function populate(Smarty_Template_Cached $cached, Smarty_Internal_Template $_template); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * populate Cached Object with timestamp and exists from Resource | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached $cached | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     abstract public function populateTimestamp(Smarty_Template_Cached $cached); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Read the cached template and process header | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached   $cached    cached object | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean true or false if the cached content does not exist | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     abstract public function process(Smarty_Internal_Template $_template, Smarty_Template_Cached $cached = null); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Write the rendered template output to cache | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      * @param string                   $content   content to cache | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean success | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     abstract public function writeCachedContent(Smarty_Internal_Template $_template, $content); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Return cached content | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return null|string | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public function getCachedContent(Smarty_Internal_Template $_template) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($_template->cached->handler->process($_template)) { | 
					
						
							|  |  |  |             ob_start(); | 
					
						
							|  |  |  |             $_template->properties['unifunc']($_template); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |             return ob_get_clean(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         return null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Empty cache | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty  $smarty   Smarty object | 
					
						
							|  |  |  |      * @param integer $exp_time expiration time (number of seconds, not timestamp) | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return integer number of cache files deleted | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     abstract public function clearAll(Smarty $smarty, $exp_time = null); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Empty cache for a specific template | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty  $smarty        Smarty object | 
					
						
							|  |  |  |      * @param string  $resource_name template name | 
					
						
							|  |  |  |      * @param string  $cache_id      cache id | 
					
						
							|  |  |  |      * @param string  $compile_id    compile id | 
					
						
							|  |  |  |      * @param integer $exp_time      expiration time (number of seconds, not timestamp) | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return integer number of cache files deleted | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     abstract public function clear(Smarty $smarty, $resource_name, $cache_id, $compile_id, $exp_time); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * @param Smarty                 $smarty | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached $cached | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool|null | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public function locked(Smarty $smarty, Smarty_Template_Cached $cached) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // theoretically locking_timeout should be checked against time_limit (max_execution_time)
 | 
					
						
							|  |  |  |         $start = microtime(true); | 
					
						
							|  |  |  |         $hadLock = null; | 
					
						
							|  |  |  |         while ($this->hasLock($smarty, $cached)) { | 
					
						
							|  |  |  |             $hadLock = true; | 
					
						
							|  |  |  |             if (microtime(true) - $start > $smarty->locking_timeout) { | 
					
						
							|  |  |  |                 // abort waiting for lock release
 | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             sleep(1); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         return $hadLock; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Check is cache is locked for this template | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty                 $smarty | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached $cached | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public function hasLock(Smarty $smarty, Smarty_Template_Cached $cached) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // check if lock exists
 | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Lock cache for this template | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty                 $smarty | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached $cached | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public function acquireLock(Smarty $smarty, Smarty_Template_Cached $cached) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // create lock
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Unlock cache for this template | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty                 $smarty | 
					
						
							|  |  |  |      * @param Smarty_Template_Cached $cached | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public function releaseLock(Smarty $smarty, Smarty_Template_Cached $cached) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // release lock
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Load Cache Resource Handler | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty $smarty Smarty object | 
					
						
							|  |  |  |      * @param string $type   name of the cache resource | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @throws SmartyException | 
					
						
							|  |  |  |      * @return Smarty_CacheResource Cache Resource Handler | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public static function load(Smarty $smarty, $type = null) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (!isset($type)) { | 
					
						
							|  |  |  |             $type = $smarty->caching_type; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-10-15 10:46:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // try smarty's cache
 | 
					
						
							|  |  |  |         if (isset($smarty->_cacheresource_handlers[$type])) { | 
					
						
							|  |  |  |             return $smarty->_cacheresource_handlers[$type]; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         // try registered resource
 | 
					
						
							|  |  |  |         if (isset($smarty->registered_cache_resources[$type])) { | 
					
						
							|  |  |  |             // do not cache these instances as they may vary from instance to instance
 | 
					
						
							| 
									
										
										
										
											2011-10-15 10:46:03 +00:00
										 |  |  |             return $smarty->_cacheresource_handlers[$type] = $smarty->registered_cache_resources[$type]; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         // try sysplugins dir
 | 
					
						
							|  |  |  |         if (isset(self::$sysplugins[$type])) { | 
					
						
							| 
									
										
										
										
											2011-10-15 10:46:03 +00:00
										 |  |  |             if (!isset(self::$resources[$type])) { | 
					
						
							|  |  |  |                 $cache_resource_class = 'Smarty_Internal_CacheResource_' . ucfirst($type); | 
					
						
							|  |  |  |                 self::$resources[$type] = new $cache_resource_class(); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-15 10:46:03 +00:00
										 |  |  |             return $smarty->_cacheresource_handlers[$type] = self::$resources[$type]; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         // try plugins dir
 | 
					
						
							|  |  |  |         $cache_resource_class = 'Smarty_CacheResource_' . ucfirst($type); | 
					
						
							|  |  |  |         if ($smarty->loadPlugin($cache_resource_class)) { | 
					
						
							| 
									
										
										
										
											2011-10-15 10:46:03 +00:00
										 |  |  |             if (!isset(self::$resources[$type])) { | 
					
						
							|  |  |  |                 self::$resources[$type] = new $cache_resource_class(); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-15 10:46:03 +00:00
										 |  |  |             return $smarty->_cacheresource_handlers[$type] = self::$resources[$type]; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         // give up
 | 
					
						
							|  |  |  |         throw new SmartyException("Unable to load cache resource '{$type}'"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Invalid Loaded Cache Files | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty $smarty Smarty object | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public static function invalidLoadedCache(Smarty $smarty) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         foreach ($smarty->template_objects as $tpl) { | 
					
						
							|  |  |  |             if (isset($tpl->cached)) { | 
					
						
							|  |  |  |                 $tpl->cached->valid = false; | 
					
						
							|  |  |  |                 $tpl->cached->processed = false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * Smarty Resource Data Object | 
					
						
							|  |  |  |  * Cache Data Container for Template Files | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package    Smarty | 
					
						
							|  |  |  |  * @subpackage TemplateResources | 
					
						
							|  |  |  |  * @author     Rodney Rehm | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | class Smarty_Template_Cached | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Source Filepath | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public $filepath = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Source Content | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public $content = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Source Timestamp | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var integer | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public $timestamp = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Source Existence | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var boolean | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public $exists = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Cache Is Valid | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var boolean | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public $valid = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Cache was processed | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var boolean | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public $processed = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * CacheResource Handler | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var Smarty_CacheResource | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public $handler = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Template Compile Id (Smarty_Internal_Template::$compile_id) | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public $compile_id = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Template Cache Id (Smarty_Internal_Template::$cache_id) | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public $cache_id = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Id for cache locking | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public $lock_id = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * flag that cache is locked by this instance | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var bool | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public $is_locked = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Source Object | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var Smarty_Template_Source | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public $source = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * create Cached Object container | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public function __construct(Smarty_Internal_Template $_template) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->compile_id = $_template->compile_id; | 
					
						
							|  |  |  |         $this->cache_id = $_template->cache_id; | 
					
						
							|  |  |  |         $this->source = $_template->source; | 
					
						
							|  |  |  |         $_template->cached = $this; | 
					
						
							|  |  |  |         $smarty = $_template->smarty; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  |         // load resource handler
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  |         $this->handler = $handler = Smarty_CacheResource::load($smarty); // Note: prone to circular references
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  |         //    check if cache is valid
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  |         if (!($_template->caching == Smarty::CACHING_LIFETIME_CURRENT || $_template->caching == Smarty::CACHING_LIFETIME_SAVED) || $_template->source->recompiled) { | 
					
						
							| 
									
										
										
										
											2011-11-30 16:31:25 +00:00
										 |  |  |             $handler->populate($this, $_template); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         while (true) { | 
					
						
							|  |  |  |             while (true) { | 
					
						
							|  |  |  |                 $handler->populate($this, $_template); | 
					
						
							|  |  |  |                 if ($this->timestamp === false || $smarty->force_compile || $smarty->force_cache) { | 
					
						
							|  |  |  |                     $this->valid = false; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $this->valid = true; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if ($this->valid && $_template->caching == Smarty::CACHING_LIFETIME_CURRENT && $_template->cache_lifetime >= 0 && time() > ($this->timestamp + $_template->cache_lifetime)) { | 
					
						
							|  |  |  |                     // lifetime expired
 | 
					
						
							|  |  |  |                     $this->valid = false; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if ($this->valid || !$_template->smarty->cache_locking) { | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if (!$this->handler->locked($_template->smarty, $this)) { | 
					
						
							|  |  |  |                     $this->handler->acquireLock($_template->smarty, $this); | 
					
						
							|  |  |  |                     break 2; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if ($this->valid) { | 
					
						
							|  |  |  |                 if (!$_template->smarty->cache_locking || $this->handler->locked($_template->smarty, $this) === null) { | 
					
						
							|  |  |  |                     // load cache file for the following checks
 | 
					
						
							|  |  |  |                     if ($smarty->debugging) { | 
					
						
							|  |  |  |                         Smarty_Internal_Debug::start_cache($_template); | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |                     if ($handler->process($_template, $this) === false) { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                         $this->valid = false; | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         $this->processed = true; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     if ($smarty->debugging) { | 
					
						
							|  |  |  |                         Smarty_Internal_Debug::end_cache($_template); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     continue; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if ($this->valid && $_template->caching === Smarty::CACHING_LIFETIME_SAVED && $_template->properties['cache_lifetime'] >= 0 && (time() > ($_template->cached->timestamp + $_template->properties['cache_lifetime']))) { | 
					
						
							|  |  |  |                 $this->valid = false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (!$this->valid && $_template->smarty->cache_locking) { | 
					
						
							|  |  |  |                 $this->handler->acquireLock($_template->smarty, $this); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 return; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * Write this cache object to handler | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Smarty_Internal_Template $_template template object | 
					
						
							|  |  |  |      * @param string                   $content   content to cache | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean success | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     public function write(Smarty_Internal_Template $_template, $content) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (!$_template->source->recompiled) { | 
					
						
							|  |  |  |             if ($this->handler->writeCachedContent($_template, $content)) { | 
					
						
							| 
									
										
										
										
											2014-01-11 12:21:12 +00:00
										 |  |  |                 $this->content = null; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 $this->timestamp = time(); | 
					
						
							|  |  |  |                 $this->exists = true; | 
					
						
							|  |  |  |                 $this->valid = true; | 
					
						
							|  |  |  |                 if ($_template->smarty->cache_locking) { | 
					
						
							|  |  |  |                     $this->handler->releaseLock($_template->smarty, $this); | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 return true; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |