123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 1.2.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Cache;
- use Cake\Core\InstanceConfigTrait;
- use InvalidArgumentException;
- /**
- * Storage engine for CakePHP caching
- */
- abstract class CacheEngine
- {
- use InstanceConfigTrait;
- /**
- * The default cache configuration is overridden in most cache adapters. These are
- * the keys that are common to all adapters. If overridden, this property is not used.
- *
- * - `duration` Specify how long items in this cache configuration last.
- * - `groups` List of groups or 'tags' associated to every key stored in this config.
- * handy for deleting a complete group from cache.
- * - `prefix` Prefix appended to all entries. Good for when you need to share a keyspace
- * with either another cache config or another application.
- * - `probability` Probability of hitting a cache gc cleanup. Setting to 0 will disable
- * cache::gc from ever being called automatically.
- * - `warnOnWriteFailures` Some engines, such as ApcuEngine, may raise warnings on
- * write failures.
- *
- * @var array
- */
- protected $_defaultConfig = [
- 'duration' => 3600,
- 'groups' => [],
- 'prefix' => 'cake_',
- 'probability' => 100,
- 'warnOnWriteFailures' => true,
- ];
- /**
- * Contains the compiled string with all groups
- * prefixes to be prepended to every key in this cache engine
- *
- * @var string
- */
- protected $_groupPrefix;
- /**
- * Initialize the cache engine
- *
- * Called automatically by the cache frontend. Merge the runtime config with the defaults
- * before use.
- *
- * @param array $config Associative array of parameters for the engine
- * @return bool True if the engine has been successfully initialized, false if not
- */
- public function init(array $config = [])
- {
- $this->setConfig($config);
- if (!empty($this->_config['groups'])) {
- sort($this->_config['groups']);
- $this->_groupPrefix = str_repeat('%s_', count($this->_config['groups']));
- }
- if (!is_numeric($this->_config['duration'])) {
- $this->_config['duration'] = strtotime($this->_config['duration']) - time();
- }
- return true;
- }
- /**
- * Garbage collection
- *
- * Permanently remove all expired and deleted data
- *
- * @param int|null $expires [optional] An expires timestamp, invalidating all data before.
- * @return void
- */
- public function gc($expires = null)
- {
- }
- /**
- * Write value for a key into cache
- *
- * @param string $key Identifier for the data
- * @param mixed $value Data to be cached
- * @return bool True if the data was successfully cached, false on failure
- */
- abstract public function write($key, $value);
- /**
- * Write data for many keys into cache
- *
- * @param array $data An array of data to be stored in the cache
- * @return array of bools for each key provided, true if the data was successfully cached, false on failure
- */
- public function writeMany($data)
- {
- $return = [];
- foreach ($data as $key => $value) {
- $return[$key] = $this->write($key, $value);
- }
- return $return;
- }
- /**
- * Read a key from the cache
- *
- * @param string $key Identifier for the data
- * @return mixed The cached data, or false if the data doesn't exist, has expired, or if there was an error fetching it
- */
- abstract public function read($key);
- /**
- * Read multiple keys from the cache
- *
- * @param array $keys An array of identifiers for the data
- * @return array For each cache key (given as the array key) the cache data associated or false if the data doesn't
- * exist, has expired, or if there was an error fetching it
- */
- public function readMany($keys)
- {
- $return = [];
- foreach ($keys as $key) {
- $return[$key] = $this->read($key);
- }
- return $return;
- }
- /**
- * Increment a number under the key and return incremented value
- *
- * @param string $key Identifier for the data
- * @param int $offset How much to add
- * @return bool|int New incremented value, false otherwise
- */
- abstract public function increment($key, $offset = 1);
- /**
- * Decrement a number under the key and return decremented value
- *
- * @param string $key Identifier for the data
- * @param int $offset How much to subtract
- * @return bool|int New incremented value, false otherwise
- */
- abstract public function decrement($key, $offset = 1);
- /**
- * Delete a key from the cache
- *
- * @param string $key Identifier for the data
- * @return bool True if the value was successfully deleted, false if it didn't exist or couldn't be removed
- */
- abstract public function delete($key);
- /**
- * Delete all keys from the cache
- *
- * @param bool $check if true will check expiration, otherwise delete all
- * @return bool True if the cache was successfully cleared, false otherwise
- */
- abstract public function clear($check);
- /**
- * Deletes keys from the cache
- *
- * @param array $keys An array of identifiers for the data
- * @return array For each provided cache key (given back as the array key) true if the value was successfully deleted,
- * false if it didn't exist or couldn't be removed
- */
- public function deleteMany($keys)
- {
- $return = [];
- foreach ($keys as $key) {
- $return[$key] = $this->delete($key);
- }
- return $return;
- }
- /**
- * Add a key to the cache if it does not already exist.
- *
- * Defaults to a non-atomic implementation. Subclasses should
- * prefer atomic implementations.
- *
- * @param string $key Identifier for the data.
- * @param mixed $value Data to be cached.
- * @return bool True if the data was successfully cached, false on failure.
- */
- public function add($key, $value)
- {
- $cachedValue = $this->read($key);
- if ($cachedValue === false) {
- return $this->write($key, $value);
- }
- return false;
- }
- /**
- * Clears all values belonging to a group. Is up to the implementing engine
- * to decide whether actually delete the keys or just simulate it to achieve
- * the same result.
- *
- * @param string $group name of the group to be cleared
- * @return bool
- */
- public function clearGroup($group)
- {
- return false;
- }
- /**
- * Does whatever initialization for each group is required
- * and returns the `group value` for each of them, this is
- * the token representing each group in the cache key
- *
- * @return array
- */
- public function groups()
- {
- return $this->_config['groups'];
- }
- /**
- * Generates a safe key for use with cache engine storage engines.
- *
- * @param string $key the key passed over
- * @return bool|string string key or false
- */
- public function key($key)
- {
- if (!$key) {
- return false;
- }
- $prefix = '';
- if ($this->_groupPrefix) {
- $prefix = md5(implode('_', $this->groups()));
- }
- $key = preg_replace('/[\s]+/', '_', strtolower(trim(str_replace([DIRECTORY_SEPARATOR, '/', '.'], '_', (string)$key))));
- return $prefix . $key;
- }
- /**
- * Generates a safe key, taking account of the configured key prefix
- *
- * @param string $key the key passed over
- * @return mixed string $key or false
- * @throws \InvalidArgumentException If key's value is empty
- */
- protected function _key($key)
- {
- $key = $this->key($key);
- if ($key === false) {
- throw new InvalidArgumentException('An empty value is not valid as a cache key');
- }
- return $this->_config['prefix'] . $key;
- }
- /**
- * Cache Engines may trigger warnings if they encounter failures during operation,
- * if option warnOnWriteFailures is set to true.
- *
- * @param string $message The warning message.
- * @return void
- */
- protected function warning($message)
- {
- if ($this->getConfig('warnOnWriteFailures') !== true) {
- return;
- }
- triggerWarning($message);
- }
- }
|