Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Cache.php
Go to the documentation of this file.
1 <?php
28 abstract class Zend_Cache
29 {
30 
36  public static $standardFrontends = array('Core', 'Output', 'Class', 'File', 'Function', 'Page');
37 
43  public static $standardBackends = array('File', 'Sqlite', 'Memcached', 'Libmemcached', 'Apc', 'ZendPlatform',
44  'Xcache', 'TwoLevels', 'WinCache', 'ZendServer_Disk', 'ZendServer_ShMem');
45 
51  public static $standardExtendedBackends = array('File', 'Apc', 'TwoLevels', 'Memcached', 'Libmemcached', 'Sqlite', 'WinCache');
52 
59  public static $availableFrontends = array('Core', 'Output', 'Class', 'File', 'Function', 'Page');
60 
67  public static $availableBackends = array('File', 'Sqlite', 'Memcached', 'Libmemcached', 'Apc', 'ZendPlatform', 'Xcache', 'WinCache', 'TwoLevels');
68 
72  const CLEANING_MODE_ALL = 'all';
73  const CLEANING_MODE_OLD = 'old';
74  const CLEANING_MODE_MATCHING_TAG = 'matchingTag';
75  const CLEANING_MODE_NOT_MATCHING_TAG = 'notMatchingTag';
76  const CLEANING_MODE_MATCHING_ANY_TAG = 'matchingAnyTag';
77 
91  public static function factory($frontend, $backend, $frontendOptions = array(), $backendOptions = array(), $customFrontendNaming = false, $customBackendNaming = false, $autoload = false)
92  {
93  if (is_string($backend)) {
94  $backendObject = self::_makeBackend($backend, $backendOptions, $customBackendNaming, $autoload);
95  } else {
96  if ((is_object($backend)) && (in_array('Zend_Cache_Backend_Interface', class_implements($backend)))) {
97  $backendObject = $backend;
98  } else {
99  self::throwException('backend must be a backend name (string) or an object which implements Zend_Cache_Backend_Interface');
100  }
101  }
102  if (is_string($frontend)) {
103  $frontendObject = self::_makeFrontend($frontend, $frontendOptions, $customFrontendNaming, $autoload);
104  } else {
105  if (is_object($frontend)) {
106  $frontendObject = $frontend;
107  } else {
108  self::throwException('frontend must be a frontend name (string) or an object');
109  }
110  }
111  $frontendObject->setBackend($backendObject);
112  return $frontendObject;
113  }
114 
124  public static function _makeBackend($backend, $backendOptions, $customBackendNaming = false, $autoload = false)
125  {
126  if (!$customBackendNaming) {
127  $backend = self::_normalizeName($backend);
128  }
129  if (in_array($backend, Zend_Cache::$standardBackends)) {
130  // we use a standard backend
131  $backendClass = 'Zend_Cache_Backend_' . $backend;
132  // security controls are explicit
133  #require_once str_replace('_', DIRECTORY_SEPARATOR, $backendClass) . '.php';
134  } else {
135  // we use a custom backend
136  if (!preg_match('~^[\w\\\\]+$~D', $backend)) {
137  Zend_Cache::throwException("Invalid backend name [$backend]");
138  }
139  if (!$customBackendNaming) {
140  // we use this boolean to avoid an API break
141  $backendClass = 'Zend_Cache_Backend_' . $backend;
142  } else {
143  $backendClass = $backend;
144  }
145  if (!$autoload) {
146  $file = str_replace('_', DIRECTORY_SEPARATOR, $backendClass) . '.php';
147  if (!(self::_isReadable($file))) {
148  self::throwException("file $file not found in include_path");
149  }
150  #require_once $file;
151  }
152  }
153  return new $backendClass($backendOptions);
154  }
155 
165  public static function _makeFrontend($frontend, $frontendOptions = array(), $customFrontendNaming = false, $autoload = false)
166  {
167  if (!$customFrontendNaming) {
168  $frontend = self::_normalizeName($frontend);
169  }
170  if (in_array($frontend, self::$standardFrontends)) {
171  // we use a standard frontend
172  // For perfs reasons, with frontend == 'Core', we can interact with the Core itself
173  $frontendClass = 'Zend_Cache_' . ($frontend != 'Core' ? 'Frontend_' : '') . $frontend;
174  // security controls are explicit
175  #require_once str_replace('_', DIRECTORY_SEPARATOR, $frontendClass) . '.php';
176  } else {
177  // we use a custom frontend
178  if (!preg_match('~^[\w\\\\]+$~D', $frontend)) {
179  Zend_Cache::throwException("Invalid frontend name [$frontend]");
180  }
181  if (!$customFrontendNaming) {
182  // we use this boolean to avoid an API break
183  $frontendClass = 'Zend_Cache_Frontend_' . $frontend;
184  } else {
185  $frontendClass = $frontend;
186  }
187  if (!$autoload) {
188  $file = str_replace('_', DIRECTORY_SEPARATOR, $frontendClass) . '.php';
189  if (!(self::_isReadable($file))) {
190  self::throwException("file $file not found in include_path");
191  }
192  #require_once $file;
193  }
194  }
195  return new $frontendClass($frontendOptions);
196  }
197 
205  public static function throwException($msg, Exception $e = null)
206  {
207  // For perfs reasons, we use this dynamic inclusion
208  #require_once 'Zend/Cache/Exception.php';
209  throw new Zend_Cache_Exception($msg, 0, $e);
210  }
211 
218  protected static function _normalizeName($name)
219  {
220  $name = ucfirst(strtolower($name));
221  $name = str_replace(array('-', '_', '.'), ' ', $name);
222  $name = ucwords($name);
223  $name = str_replace(' ', '', $name);
224  if (stripos($name, 'ZendServer') === 0) {
225  $name = 'ZendServer_' . substr($name, strlen('ZendServer'));
226  }
227 
228  return $name;
229  }
230 
241  private static function _isReadable($filename)
242  {
243  if (!$fh = @fopen($filename, 'r', true)) {
244  return false;
245  }
246  @fclose($fh);
247  return true;
248  }
249 
250 }
static _makeFrontend($frontend, $frontendOptions=array(), $customFrontendNaming=false, $autoload=false)
Definition: Cache.php:165
const CLEANING_MODE_OLD
Definition: Cache.php:73
static $standardBackends
Definition: Cache.php:43
const CLEANING_MODE_NOT_MATCHING_TAG
Definition: Cache.php:75
static $standardExtendedBackends
Definition: Cache.php:51
static $standardFrontends
Definition: Cache.php:36
static $availableFrontends
Definition: Cache.php:59
const CLEANING_MODE_ALL
Definition: Cache.php:72
static throwException($msg, Exception $e=null)
Definition: Cache.php:205
const CLEANING_MODE_MATCHING_ANY_TAG
Definition: Cache.php:76
static factory($frontend, $backend, $frontendOptions=array(), $backendOptions=array(), $customFrontendNaming=false, $customBackendNaming=false, $autoload=false)
Definition: Cache.php:91
static _normalizeName($name)
Definition: Cache.php:218
const CLEANING_MODE_MATCHING_TAG
Definition: Cache.php:74
static $availableBackends
Definition: Cache.php:67
if(!isset($_GET['name'])) $name
Definition: log.php:14
static _makeBackend($backend, $backendOptions, $customBackendNaming=false, $autoload=false)
Definition: Cache.php:124