00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 class Mage_CatalogIndex_Model_Aggregation extends Mage_Core_Model_Abstract
00033 {
00034 const CACHE_FLAG_NAME = 'layered_navigation';
00035
00036
00037
00038
00039 protected function _construct()
00040 {
00041 $this->_init('catalogindex/aggregation');
00042 }
00043
00044 protected function _isEnabled()
00045 {
00046 return Mage::app()->useCache(self::CACHE_FLAG_NAME);
00047 }
00048
00049
00050
00051
00052
00053
00054
00055
00056 public function getCacheData($key, $store=null)
00057 {
00058 if (!$this->_isEnabled()) {
00059 return null;
00060 }
00061
00062 $key = $this->_processKey($key);
00063 $store = Mage::app()->getStore($store);
00064 $data = $this->_getResource()->getCacheData($key, $store->getId());
00065 if (empty($data)) {
00066 return null;
00067 }
00068 return $data;
00069 }
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079 public function saveCacheData($data, $key, $tags, $store=null)
00080 {
00081 if (!$this->_isEnabled()) {
00082 return $this;
00083 }
00084
00085 $key = $this->_processKey($key);
00086 $tags = $this->_processTags($tags);
00087 $store = Mage::app()->getStore($store);
00088
00089 $this->_getResource()->saveCacheData($data, $key, $tags, $store->getId());
00090 return $this;
00091 }
00092
00093
00094
00095
00096
00097
00098
00099
00100 public function clearCacheData($tags=array(), $store=null)
00101 {
00102 $tags = $this->_processTags($tags);
00103 if ($store !== null) {
00104 $store = Mage::app()->getStore($store)->getId();
00105 }
00106 $this->_getResource()->clearCacheData($tags, $store);
00107 return $this;
00108 }
00109
00110
00111
00112
00113
00114
00115
00116 public function clearProductData($productIds)
00117 {
00118 $categoryPaths = $this->_getResource()->getProductCategoryPaths($productIds);
00119 if (!empty($categoryPaths)) {
00120 $tags = array();
00121 foreach ($categoryPaths as $path) {
00122 $tags[] = Mage_Catalog_Model_Category::CACHE_TAG.':'.$path;
00123 }
00124 $this->clearCacheData($tags);
00125 }
00126 return $this;
00127 }
00128
00129
00130
00131
00132
00133
00134
00135 protected function _processKey($key)
00136 {
00137 return $key;
00138 return md5($key);
00139 }
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150 protected function _processTags($tags)
00151 {
00152 $newTags = array();
00153 foreach ($tags as $tag) {
00154 $tagInfo = split(':', $tag);
00155 if (count($tagInfo)==1) {
00156 $newTags[] = $tagInfo[0];
00157 } else {
00158 $tagVariants = split('/', $tagInfo[1]);
00159 foreach ($tagVariants as $tagVariant) {
00160 $newTags[] = $tagInfo[0] . $tagVariant;
00161 }
00162 }
00163 }
00164 return $newTags;
00165 }
00166 }