Source for file DefinitionCache.php
Documentation is available at DefinitionCache.php
* Abstract class representing Definition cache managers that implements
* useful common methods and is a factory.
* @todo Create a separate maintenance file advanced users can use to
* cache their custom HTMLDefinition, which can be loaded
* via a configuration directive
* @todo Implement memcached
* @param $name Type of definition objects this instance of the
* Generates a unique identifier for a particular configuration
* @param Instance of HTMLPurifier_Config
return $config->version .
',' .
// possibly replace with function calls
$config->getBatchSerial($this->type) .
',' .
$config->get($this->type, 'DefinitionRev');
* Tests whether or not a key is old with respect to the configuration's
* version and revision number.
* @param $key Key to test
* @param $config Instance of HTMLPurifier_Config to test against
public function isOld($key, $config) {
list
($version, $hash, $revision) =
explode(',', $key, 3);
// version mismatch, is always old
if ($compare !=
0) return true;
// versions match, ids match, check revision number
$hash ==
$config->getBatchSerial($this->type) &&
$revision <
$config->get($this->type, 'DefinitionRev')
* Checks if a definition's type jives with the cache's type
* @note Throws an error on failure
* @param $def Definition object to check
* @return Boolean true if good, false if not
if ($def->type !==
$this->type) {
trigger_error("Cannot use definition of type {$def->type} in cache for {
$this->type}");
* Adds a definition object to the cache
abstract public function add($def, $config);
* Unconditionally saves a definition object to the cache
abstract public function set($def, $config);
* Replace an object in the cache
abstract public function replace($def, $config);
* Retrieves a definition object from the cache
abstract public function get($config);
* Removes a definition object to the cache
abstract public function remove($config);
* Clears all objects from cache
abstract public function flush($config);
* Clears all expired (older version or revision) objects from cache
* @note Be carefuly implementing this method as flush. Flush must
* not interfere with other Definition types, and cleanup()
* should not be repeatedly called by userland code.
abstract public function cleanup($config);
Documentation generated on Thu, 19 Jun 2008 18:49:01 -0400 by phpDocumentor 1.4.2