7 public function add($def, $config) {
10 if (file_exists(
$file))
return false;
12 return $this->
_write(
$file, serialize($def), $config);
15 public function set($def, $config) {
19 return $this->
_write(
$file, serialize($def), $config);
25 if (!file_exists(
$file))
return false;
27 return $this->
_write(
$file, serialize($def), $config);
30 public function get($config) {
32 if (!file_exists(
$file))
return false;
33 return unserialize(file_get_contents(
$file));
36 public function remove($config) {
38 if (!file_exists(
$file))
return false;
42 public function flush($config) {
46 while (
false !== (
$filename = readdir($dh))) {
57 while (
false !== (
$filename = readdir($dh))) {
91 $base = $config->get(
'Cache.SerializerPath');
92 $base = is_null($base) ? HTMLPURIFIER_PREFIX .
'/HTMLPurifier/DefinitionCache/Serializer' : $base;
107 $chmod = $config->get(
'Cache.SerializerPermissions');
111 $chmod = $chmod & 0666;
112 chmod(
$file, $chmod);
124 $chmod = $config->get(
'Cache.SerializerPermissions');
128 if (!is_dir($directory)) {
130 if (!is_dir($base)) {
131 trigger_error(
'Base directory '.$base.
' does not exist, 132 please create or change using %Cache.SerializerPath',
139 mkdir($directory, $chmod);
156 if (is_writable($dir))
return true;
160 trigger_error(
'Directory '.$dir.
' does not exist',
164 if (function_exists(
'posix_getuid')) {
166 if (fileowner($dir) === posix_getuid()) {
168 $chmod = $chmod | 0700;
169 if (chmod($dir, $chmod))
return true;
170 } elseif (filegroup($dir) === posix_getgid()) {
171 $chmod = $chmod | 0070;
175 $chmod = $chmod | 0777;
177 trigger_error(
'Directory '.$dir.
' not writable, '.
178 'please chmod to ' . decoct($chmod),
182 trigger_error(
'Directory '.$dir.
' not writable, '.
183 'please alter file permissions',
generateBaseDirectoryPath($config)
Generates path to base directory that contains all definition type serials.
Abstract class representing Definition cache managers that implements useful common methods and is a ...
generateDirectoryPath($config)
Generates the path to the directory contain this cache's serial files.
checkDefType($def)
Checks if a definition's type jives with the cache's type.
_prepareDir($config)
Prepares the directory that this type stores the serials in.
_write($file, $data, $config)
Convenience wrapper function for file_put_contents.
generateFilePath($config)
Generates the file path to the serial file corresponding to the configuration and definition name...
_testPermissions($dir, $chmod)
Tests permissions on a directory and throws out friendly error messages and attempts to chmod it itse...
while($lm_rec=$ilDB->fetchAssoc($lm_set)) $data
isOld($key, $config)
Tests whether or not a key is old with respect to the configuration's version and revision number...
generateKey($config)
Generates a unique identifier for a particular configuration.