| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- <?php
- declare(strict_types=1);
- /**
- * 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\Cache\Exception\InvalidArgumentException;
- use Cake\Core\InstanceConfigTrait;
- use DateInterval;
- use DateTime;
- use Psr\SimpleCache\CacheInterface;
- use function Cake\Core\triggerWarning;
- /**
- * Storage engine for CakePHP caching
- */
- abstract class CacheEngine implements CacheInterface, CacheEngineInterface
- {
- use InstanceConfigTrait;
- /**
- * @var string
- */
- protected const CHECK_KEY = 'key';
- /**
- * @var string
- */
- protected const CHECK_VALUE = 'value';
- /**
- * 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.
- * - `warnOnWriteFailures` Some engines, such as ApcuEngine, may raise warnings on
- * write failures.
- *
- * @var array<string, mixed>
- */
- protected array $_defaultConfig = [
- 'duration' => 3600,
- 'groups' => [],
- 'prefix' => 'cake_',
- 'warnOnWriteFailures' => true,
- ];
- /**
- * Contains the compiled string with all group
- * prefixes to be prepended to every key in this cache engine
- *
- * @var string
- */
- protected string $_groupPrefix = '';
- /**
- * Initialize the cache engine
- *
- * Called automatically by the cache frontend. Merge the runtime config with the defaults
- * before use.
- *
- * @param array<string, mixed> $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 = []): bool
- {
- $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;
- }
- /**
- * Ensure the validity of the given cache key.
- *
- * @param mixed $key Key to check.
- * @return void
- * @throws \Cake\Cache\Exception\InvalidArgumentException When the key is not valid.
- */
- protected function ensureValidKey(mixed $key): void
- {
- if (!is_string($key) || strlen($key) === 0) {
- throw new InvalidArgumentException('A cache key must be a non-empty string.');
- }
- }
- /**
- * Ensure the validity of the argument type and cache keys.
- *
- * @param iterable $iterable The iterable to check.
- * @param string $check Whether to check keys or values.
- * @return void
- * @throws \Cake\Cache\Exception\InvalidArgumentException
- */
- protected function ensureValidType(iterable $iterable, string $check = self::CHECK_VALUE): void
- {
- foreach ($iterable as $key => $value) {
- if ($check === self::CHECK_VALUE) {
- $this->ensureValidKey($value);
- } else {
- $this->ensureValidKey($key);
- }
- }
- }
- /**
- * Obtains multiple cache items by their unique keys.
- *
- * @param iterable<string> $keys A list of keys that can obtained in a single operation.
- * @param mixed $default Default value to return for keys that do not exist.
- * @return iterable<string, mixed> A list of key value pairs. Cache keys that do not exist or are stale will have $default as value.
- * @throws \Cake\Cache\Exception\InvalidArgumentException If $keys is neither an array nor a Traversable,
- * or if any of the $keys are not a legal value.
- */
- public function getMultiple(iterable $keys, mixed $default = null): iterable
- {
- $this->ensureValidType($keys);
- $results = [];
- foreach ($keys as $key) {
- $results[$key] = $this->get($key, $default);
- }
- return $results;
- }
- /**
- * Persists a set of key => value pairs in the cache, with an optional TTL.
- *
- * @param iterable $values A list of key => value pairs for a multiple-set operation.
- * @param \DateInterval|int|null $ttl Optional. The TTL value of this item. If no value is sent and
- * the driver supports TTL then the library may set a default value
- * for it or let the driver take care of that.
- * @return bool True on success and false on failure.
- * @throws \Cake\Cache\Exception\InvalidArgumentException If $values is neither an array nor a Traversable,
- * or if any of the $values are not a legal value.
- */
- public function setMultiple(iterable $values, DateInterval|int|null $ttl = null): bool
- {
- $this->ensureValidType($values, self::CHECK_KEY);
- $restore = null;
- if ($ttl !== null) {
- $restore = $this->getConfig('duration');
- $this->setConfig('duration', $ttl);
- }
- try {
- foreach ($values as $key => $value) {
- $success = $this->set($key, $value);
- if ($success === false) {
- return false;
- }
- }
- return true;
- } finally {
- if ($restore !== null) {
- $this->setConfig('duration', $restore);
- }
- }
- }
- /**
- * Deletes multiple cache items as a list
- *
- * This is a best effort attempt. If deleting an item would
- * create an error it will be ignored, and all items will
- * be attempted.
- *
- * @param iterable $keys A list of string-based keys to be deleted.
- * @return bool True if the items were successfully removed. False if there was an error.
- * @throws \Cake\Cache\Exception\InvalidArgumentException If $keys is neither an array nor a Traversable,
- * or if any of the $keys are not a legal value.
- */
- public function deleteMultiple(iterable $keys): bool
- {
- $this->ensureValidType($keys);
- $result = true;
- foreach ($keys as $key) {
- if (!$this->delete($key)) {
- $result = false;
- }
- }
- return $result;
- }
- /**
- * Determines whether an item is present in the cache.
- *
- * NOTE: It is recommended that has() is only to be used for cache warming type purposes
- * and not to be used within your live applications operations for get/set, as this method
- * is subject to a race condition where your has() will return true and immediately after,
- * another script can remove it making the state of your app out of date.
- *
- * @param string $key The cache item key.
- * @return bool
- * @throws \Cake\Cache\Exception\InvalidArgumentException If the $key string is not a legal value.
- */
- public function has(string $key): bool
- {
- return $this->get($key) !== null;
- }
- /**
- * Fetches the value for a given key from the cache.
- *
- * @param string $key The unique key of this item in the cache.
- * @param mixed $default Default value to return if the key does not exist.
- * @return mixed The value of the item from the cache, or $default in case of cache miss.
- * @throws \Cake\Cache\Exception\InvalidArgumentException If the $key string is not a legal value.
- */
- abstract public function get(string $key, mixed $default = null): mixed;
- /**
- * Persists data in the cache, uniquely referenced by the given key with an optional expiration TTL time.
- *
- * @param string $key The key of the item to store.
- * @param mixed $value The value of the item to store, must be serializable.
- * @param \DateInterval|int|null $ttl Optional. The TTL value of this item. If no value is sent and
- * the driver supports TTL then the library may set a default value
- * for it or let the driver take care of that.
- * @return bool True on success and false on failure.
- * @throws \Cake\Cache\Exception\InvalidArgumentException
- * MUST be thrown if the $key string is not a legal value.
- */
- abstract public function set(string $key, mixed $value, DateInterval|int|null $ttl = null): bool;
- /**
- * 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 int|false New incremented value, false otherwise
- */
- abstract public function increment(string $key, int $offset = 1): int|false;
- /**
- * 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 int|false New incremented value, false otherwise
- */
- abstract public function decrement(string $key, int $offset = 1): int|false;
- /**
- * 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(string $key): bool;
- /**
- * Delete all keys from the cache
- *
- * @return bool True if the cache was successfully cleared, false otherwise
- */
- abstract public function clear(): bool;
- /**
- * 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(string $key, mixed $value): bool
- {
- $cachedValue = $this->get($key);
- if ($cachedValue === null) {
- return $this->set($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
- */
- abstract public function clearGroup(string $group): bool;
- /**
- * 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<string>
- */
- public function groups(): array
- {
- return $this->_config['groups'];
- }
- /**
- * Generates a key for cache backend usage.
- *
- * If the requested key is valid, the group prefix value and engine prefix are applied.
- * Whitespace in keys will be replaced.
- *
- * @param string $key the key passed over
- * @return string Prefixed key with potentially unsafe characters replaced.
- * @throws \Cake\Cache\Exception\InvalidArgumentException If key's value is invalid.
- */
- protected function _key(string $key): string
- {
- $this->ensureValidKey($key);
- $prefix = '';
- if ($this->_groupPrefix) {
- $prefix = md5(implode('_', $this->groups()));
- }
- $key = preg_replace('/[\s]+/', '_', $key);
- return $this->_config['prefix'] . $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(string $message): void
- {
- if ($this->getConfig('warnOnWriteFailures') !== true) {
- return;
- }
- triggerWarning($message);
- }
- /**
- * Convert the various expressions of a TTL value into duration in seconds
- *
- * @param \DateInterval|int|null $ttl The TTL value of this item. If null is sent, the
- * driver's default duration will be used.
- * @return int
- */
- protected function duration(DateInterval|int|null $ttl): int
- {
- if ($ttl === null) {
- return $this->_config['duration'];
- }
- if (is_int($ttl)) {
- return $ttl;
- }
- /** @var \DateTime $datetime */
- $datetime = DateTime::createFromFormat('U', '0');
- return (int)$datetime
- ->add($ttl)
- ->format('U');
- }
- }
|