X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fcache_functions.php;h=7959501e951768abe20f08f9721ef2034b411233;hb=f2736bc6457140146890877d992be862a78b259f;hp=611073a72ae89cba3603f1129bd3f217afc0c64b;hpb=6586600d8020147192e5f28ca2a3a0153f774d3c;p=mailer.git diff --git a/inc/libs/cache_functions.php b/inc/libs/cache_functions.php index 611073a72a..7959501e95 100644 --- a/inc/libs/cache_functions.php +++ b/inc/libs/cache_functions.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Funktionen fuer die admins-Erweiterung * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -33,353 +38,57 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); -} - -// Caching class -class CacheSystem { - // Define variables - var $ret = "init"; - var $path = ""; - var $inc = ""; - var $pointer = false; - var $data = ""; - var $version = ""; - var $name = ""; - - // Constructor - function CacheSystem ($interval, $path, $tested) { - // Failed is the default - $this->ret = "failed"; - - // Remeber path - $this->path = $path; - - // Check if path exists - if ((is_dir($path)) && (!$tested)) { - // Check if we can create a file inside the path - touch($path."dummy.tmp", 'w'); - if (FILE_READABLE($path."dummy.tmp")) { - // Yes, we can do. So let's remove it - unlink($path."dummy.tmp"); - - // Is there a .htaccess file? - if (FILE_READABLE($path.".htaccess")) { - // Update database that we have tested it - UPDATE_CONFIG("cache_tested", 1); - - // All done! - $this->ret = "done"; - } else { - // Stop! Set a .htaccess file first - $this->ret = "htaccess"; - } - } - } elseif ($tested) { - // System already tested - $this->ret = "done"; - } - } - - // Checks validity of cache file and if content is given - function loadCacheFile ($file, $forceContent = false) { - // Remember cache file - $this->name = $file; - - // Construct FQFN (full qualified file name) - $this->inc = $this->path.$file.".cache"; - - // Check if file exists and if version matches - $status = (FILE_READABLE($this->inc) && (is_writeable($this->inc)) && ($this->extensionVersionMatches("cache"))); - - // Return status - return $status; - } - - function init () { - // This will destory an existing cache file! - if ($this->ret == "done") { - // Create file - if (FILE_READABLE($this->inc)) chmod($this->inc, 0666); - $this->pointer = fopen($this->inc, 'w') or mxchange_die("Cannot write to cache ".$this->inc." !"); - - // Add open PHP tag - fwrite($this->pointer, "storeExtensionVersion("cache"); - } else { - // Cannot create file - ADD_FATAL(__FILE__."(".__LINE__."): ".CACHE_PROBLEMS_DETECTED); - } - } - - function addRow ($data) { - global $cacheArray; - - if (is_resource($this->pointer)) { - // Write every array element to cache file - foreach ($data as $k => $v) { - // Write global cache array for immediate access - if ((substr($k, 0, 4) == "ext_") && (isset($data['ext_name'])) && (isset($data['ext_id']))) { - if ($k != "ext_name") { - $cacheArray['extensions'][$k][$data['ext_name']] = $v; - } else { - $cacheArray['extensions'][$k][$data['ext_id']] = $v; - } - if (($k == "ext_keep") && ($v == "Y")) { - $cacheArray['active_extensions'][$data['ext_name']] = $v; - } // END - if - } elseif (is_array($v)) { - // Serialize and BASE64-encode the array - $v = base64_encode(serialize($v)); - } - - // Write cache line to file - fwrite($this->pointer, $this->rewriteEntry($k, $v)); - } - } else { - // Cannot create file - ADD_FATAL(__FILE__."(".__LINE__."): ".CACHE_PROBLEMS_DETECTED); - } - } - - function finalize () { - // Quit function when no pointer is set - if (is_resource($this->pointer)) { - // Write footer - fwrite($this->pointer, "?>\n"); - - // Close file add destroy handler - fclose($this->pointer); - - // Set rights - if (FILE_READABLE($this->inc)) chmod($this->inc, 0666); - - // Remove pointer - $this->pointer = false; - } else { - // Cannot create file - ADD_FATAL(__FILE__."(".__LINE__."): ".CACHE_PROBLEMS_DETECTED); - } - } - - function getArrayFromCache () { - // Is the cache already loaded? - if (isset($this->data[$this->name])) { - // Return it's content! - return $this->data[$this->name]; - } // END - if - - // Is the cache file there? - if (FILE_READABLE($this->inc)) { - // Prepare temporary array - $data = array(); - $cache_version = null; + die(); +} // END - if - // Load cache file - require_once($this->inc); +// Destroy the cache on extension changes +function FILTER_CACHE_DESTROY_ON_EXT_CHANGE ($data) { + // Return the data anyway if there is no cache extension + if (!isCacheInstanceValid()) return $data; - // Is there an array? - if (is_array($data)) { - // Cache data - $this->data[$this->name] = $data; + // Remove cache + foreach (array('config','extension','modules') as $cache) { + if ($GLOBALS['cache_instance']->loadCacheFile($cache)) $GLOBALS['cache_instance']->removeCacheFile(); + } // END - foreach - // Cache version found? - if ((is_array($cache_version)) && (count($cache_version) > 0)) { - // Remember it as well... - $this->version[$this->name] = $cache_version; - } else { - // Invalid cache so destroy it - $this->destroyCacheFile(); - - // Clear cached data - $this->data[$this->name] = array(); - } - - // Return cache - return $this->data[$this->name]; - } else { - // Cache problem detected! - $this->destroyCacheFile(); - } - } else { - // Cache file not found or not readable - ADD_FATAL(__FILE__."(".__LINE__."): ".CACHE_CANNOT_LOAD_1.$this->inc.CACHE_CANNOT_LOAD_2); - } - } - - // Destroy an existing cache file - function destroyCacheFile () { - // Is the cache file there? - if (FILE_READABLE($this->inc)) { - // Close cache - $this->finalize(); - - // Remove cache file from system - unlink($this->inc); - - // Is the file there? - if (!FILE_READABLE($this->inc)) { - // The cache does no longer exist so kill the content - unset($this->data[$this->name]); - } else { - // Not removed! - ADD_FATAL(__FILE__."(".__LINE__."): ".CACHE_CANNOT_UNLINK_1.$this->inc.CACHE_CANNOT_UNLINK_2); - } - } else { - // Does not exist! - ADD_FATAL(__FILE__."(".__LINE__."): ".CACHE_PROBLEMS_DETECTED); - } - } - - // Unused method: - function removeEntry ($search, $data, $array) { - if ((FILE_READABLE($this->inc)) && (is_writeable($this->inc))) { - // Load cache into dummy array - $dummy = $this->getArrayFromCache(); - - // Search for key in array - $key = array_search($data, $dummy[$search]); - if (!empty($key)) { - // Key (hopefully) found? - foreach ($array as $a) { - // So we can remove all elements as requested - unset($dummy[$a][$key]); - } - - // Flush array to cache file - $this->init(); - - // Write array out - $this->writeArray($dummy); - - // Close cache file - $this->finalize(); - } - } else { - // Cannot write to cache! - ADD_FATAL(__FILE__."(".__LINE__."): ".CACHE_PROBLEMS_DETECTED); - } - } - - function writeArray ($array) { - if (is_resource($this->pointer)) { - foreach ($array as $k => $v) { - if (is_array($v)) { - // Multi line(s) found - $LINE = ""; - foreach($v as $k2 => $v2) { - // Put every array element in a row... - $LINE .= $this->rewriteEntry($k, $v2); - } - } else { - // Single line found - $LINE = $this->rewriteEntry($k, $v); - } - - // Write line(s) - fwrite($this->pointer, $LINE); - } // END - foreach - } else { - // Cannot write array! - ADD_FATAL(__FILE__."(".__LINE__."): ".CACHE_PROBLEMS_DETECTED); - } - } - - // Unused method - function replaceEntry ($search, $replace, $search_key, $array) { - if ((FILE_READABLE($this->inc)) && (is_writeable($this->inc))) { - // Load cache into dummy array - $dummy = $this->getArrayFromCache(); - - // Check if $dummy is valid (prevents some errors) - if ((is_array($dummy)) && (isset($dummy[$search])) && (is_array($dummy[$search]))) { - // Search for key in array - $key_found = array_key_exists($search_key, $dummy[$search]); - if ($key_found == true) { - $key = $search_key; - // Key (hopefully) found? - foreach ($dummy as $a => $v) { - // So we can update all entries - if ($a == $search) { - // Update now... - $dummy[$a][$search_key] = $replace; - } - } - - // Flush array to cache file - $this->init(); - - // Write array out - $this->writeArray($dummy); - - // Close cache file - $this->finalize(); - } - } - } else { - // Cannot write to cache! - ADD_FATAL(__FILE__."(".__LINE__."): ".CACHE_PROBLEMS_DETECTED); - } - } - - function storeExtensionVersion ($ext_name) { - // Valid cache pointer? - if (is_resource($this->pointer)) { - // Get extension version - $ext_ver = GET_EXT_VERSION($ext_name); - - // Write cache line to file - fwrite($this->pointer, "\$cache_version['".$ext_name."'] = \"".$ext_ver."\";\n"); - } else { - // Cannot create file - ADD_FATAL(__FILE__."(".__LINE__."): ".CACHE_PROBLEMS_DETECTED); - } - } - - function extensionVersionMatches ($ext_name) { - // Load cache (dummy) - $this->getArrayFromCache(); + // Return it + return $data; +} - // Get extension version - $ext_ver = GET_EXT_VERSION($ext_name); +// Destroy the cache on changing admin +function FILTER_CACHE_DESTROY_ON_ADMIN_CHANGE ($data) { + // Skip this step if the cache instance is not there + if (!isCacheInstanceValid()) return false; - // Compare both - return ((isset($this->version[$this->name][$ext_name])) && ($this->version[$this->name][$ext_name] == $ext_ver)); - } + // Remove cache + if ($GLOBALS['cache_instance']->loadCacheFile('admins')) $GLOBALS['cache_instance']->removeCacheFile(); - function rewriteEntry ($key, $value) { - // Init line - $line = ""; + // Return the data + return $data; +} - // String or non-string? ;-) - if (is_string($value)) { - // String... - $line = "\$data['".$key."'][] = \"".$value."\";\n"; - } elseif (is_null($value)) { - // Null - $line = "\$data['".$key."'][] = null;\n"; - } elseif (is_bool($value)) { - // Boolean value - if ($value === true) { - $line = "\$data['".$key."'][] = true;\n"; - } else { - $line = "\$data['".$key."'][] = false;\n"; - } - } else { - // Non-string - $line = "\$data['".$key."'][] = ".$value.";\n"; - } +// Destroy all cache files +function FILTER_CACHE_DESTROY_ALL () { + // Skip this step if the cache instance is not there + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!'); + if (!isCacheInstanceValid()) return false; + + // Remove cache files + foreach (array('admin','admin_acls','config','extension','modules','refdepths','refsystem','themes','revision','filter','imprint') as $cache) { + /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, sprintf("Trying to remove cache %s.", $cache)); + if ($GLOBALS['cache_instance']->loadCacheFile($cache)) $GLOBALS['cache_instance']->removeCacheFile(); + } // END - foreach + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!'); +} - // Return line - return $line; - } +// Filter for purging 'filter' cache +function FILTER_CACHE_DESTROY_FILTER () { + // Skip this step if the cache instance is not there + if ((!isCacheInstanceValid()) || (getConfig('update_filter_usage') != 'Y')) return false; - function getStatus () { - return $this->ret; - } + // Remove cache files + if ($GLOBALS['cache_instance']->loadCacheFile('filter')) $GLOBALS['cache_instance']->removeCacheFile(); } -// + +// [EOF] ?>