123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427 |
- <?php
- namespace Symfony\Component\Cache\Traits;
- use Psr\Cache\CacheItemInterface;
- use Psr\Log\LoggerAwareTrait;
- use Symfony\Component\Cache\CacheItem;
- use Symfony\Component\Cache\Exception\InvalidArgumentException;
- trait AbstractAdapterTrait
- {
- use LoggerAwareTrait;
-
- private static $createCacheItem;
-
- private static $mergeByLifetime;
- private $namespace = '';
- private $defaultLifetime;
- private $namespaceVersion = '';
- private $versioningIsEnabled = false;
- private $deferred = [];
- private $ids = [];
-
- protected $maxIdLength;
-
- abstract protected function doFetch(array $ids);
-
- abstract protected function doHave(string $id);
-
- abstract protected function doClear(string $namespace);
-
- abstract protected function doDelete(array $ids);
-
- abstract protected function doSave(array $values, int $lifetime);
-
- public function hasItem($key)
- {
- $id = $this->getId($key);
- if (isset($this->deferred[$key])) {
- $this->commit();
- }
- try {
- return $this->doHave($id);
- } catch (\Exception $e) {
- CacheItem::log($this->logger, 'Failed to check if key "{key}" is cached: '.$e->getMessage(), ['key' => $key, 'exception' => $e, 'cache-adapter' => get_debug_type($this)]);
- return false;
- }
- }
-
- public function clear(string $prefix = '')
- {
- $this->deferred = [];
- if ($cleared = $this->versioningIsEnabled) {
- if ('' === $namespaceVersionToClear = $this->namespaceVersion) {
- foreach ($this->doFetch([static::NS_SEPARATOR.$this->namespace]) as $v) {
- $namespaceVersionToClear = $v;
- }
- }
- $namespaceToClear = $this->namespace.$namespaceVersionToClear;
- $namespaceVersion = self::formatNamespaceVersion(mt_rand());
- try {
- $e = $this->doSave([static::NS_SEPARATOR.$this->namespace => $namespaceVersion], 0);
- } catch (\Exception $e) {
- }
- if (true !== $e && [] !== $e) {
- $cleared = false;
- $message = 'Failed to save the new namespace'.($e instanceof \Exception ? ': '.$e->getMessage() : '.');
- CacheItem::log($this->logger, $message, ['exception' => $e instanceof \Exception ? $e : null, 'cache-adapter' => get_debug_type($this)]);
- } else {
- $this->namespaceVersion = $namespaceVersion;
- $this->ids = [];
- }
- } else {
- $namespaceToClear = $this->namespace.$prefix;
- }
- try {
- return $this->doClear($namespaceToClear) || $cleared;
- } catch (\Exception $e) {
- CacheItem::log($this->logger, 'Failed to clear the cache: '.$e->getMessage(), ['exception' => $e, 'cache-adapter' => get_debug_type($this)]);
- return false;
- }
- }
-
- public function deleteItem($key)
- {
- return $this->deleteItems([$key]);
- }
-
- public function deleteItems(array $keys)
- {
- $ids = [];
- foreach ($keys as $key) {
- $ids[$key] = $this->getId($key);
- unset($this->deferred[$key]);
- }
- try {
- if ($this->doDelete($ids)) {
- return true;
- }
- } catch (\Exception $e) {
- }
- $ok = true;
-
- foreach ($ids as $key => $id) {
- try {
- $e = null;
- if ($this->doDelete([$id])) {
- continue;
- }
- } catch (\Exception $e) {
- }
- $message = 'Failed to delete key "{key}"'.($e instanceof \Exception ? ': '.$e->getMessage() : '.');
- CacheItem::log($this->logger, $message, ['key' => $key, 'exception' => $e, 'cache-adapter' => get_debug_type($this)]);
- $ok = false;
- }
- return $ok;
- }
-
- public function getItem($key)
- {
- $id = $this->getId($key);
- if (isset($this->deferred[$key])) {
- $this->commit();
- }
- $isHit = false;
- $value = null;
- try {
- foreach ($this->doFetch([$id]) as $value) {
- $isHit = true;
- }
- return (self::$createCacheItem)($key, $value, $isHit);
- } catch (\Exception $e) {
- CacheItem::log($this->logger, 'Failed to fetch key "{key}": '.$e->getMessage(), ['key' => $key, 'exception' => $e, 'cache-adapter' => get_debug_type($this)]);
- }
- return (self::$createCacheItem)($key, null, false);
- }
-
- public function getItems(array $keys = [])
- {
- $ids = [];
- $commit = false;
- foreach ($keys as $key) {
- $ids[] = $this->getId($key);
- $commit = $commit || isset($this->deferred[$key]);
- }
- if ($commit) {
- $this->commit();
- }
- try {
- $items = $this->doFetch($ids);
- } catch (\Exception $e) {
- CacheItem::log($this->logger, 'Failed to fetch items: '.$e->getMessage(), ['keys' => $keys, 'exception' => $e, 'cache-adapter' => get_debug_type($this)]);
- $items = [];
- }
- $ids = array_combine($ids, $keys);
- return $this->generateItems($items, $ids);
- }
-
- public function save(CacheItemInterface $item)
- {
- if (!$item instanceof CacheItem) {
- return false;
- }
- $this->deferred[$item->getKey()] = $item;
- return $this->commit();
- }
-
- public function saveDeferred(CacheItemInterface $item)
- {
- if (!$item instanceof CacheItem) {
- return false;
- }
- $this->deferred[$item->getKey()] = $item;
- return true;
- }
-
- public function enableVersioning(bool $enable = true)
- {
- $wasEnabled = $this->versioningIsEnabled;
- $this->versioningIsEnabled = $enable;
- $this->namespaceVersion = '';
- $this->ids = [];
- return $wasEnabled;
- }
-
- public function reset()
- {
- if ($this->deferred) {
- $this->commit();
- }
- $this->namespaceVersion = '';
- $this->ids = [];
- }
-
- public function __sleep()
- {
- throw new \BadMethodCallException('Cannot serialize '.__CLASS__);
- }
- public function __wakeup()
- {
- throw new \BadMethodCallException('Cannot unserialize '.__CLASS__);
- }
- public function __destruct()
- {
- if ($this->deferred) {
- $this->commit();
- }
- }
- private function generateItems(iterable $items, array &$keys): \Generator
- {
- $f = self::$createCacheItem;
- try {
- foreach ($items as $id => $value) {
- if (!isset($keys[$id])) {
- throw new InvalidArgumentException(sprintf('Could not match value id "%s" to keys "%s".', $id, implode('", "', $keys)));
- }
- $key = $keys[$id];
- unset($keys[$id]);
- yield $key => $f($key, $value, true);
- }
- } catch (\Exception $e) {
- CacheItem::log($this->logger, 'Failed to fetch items: '.$e->getMessage(), ['keys' => array_values($keys), 'exception' => $e, 'cache-adapter' => get_debug_type($this)]);
- }
- foreach ($keys as $key) {
- yield $key => $f($key, null, false);
- }
- }
-
- protected function getId($key)
- {
- if ($this->versioningIsEnabled && '' === $this->namespaceVersion) {
- $this->ids = [];
- $this->namespaceVersion = '1'.static::NS_SEPARATOR;
- try {
- foreach ($this->doFetch([static::NS_SEPARATOR.$this->namespace]) as $v) {
- $this->namespaceVersion = $v;
- }
- $e = true;
- if ('1'.static::NS_SEPARATOR === $this->namespaceVersion) {
- $this->namespaceVersion = self::formatNamespaceVersion(time());
- $e = $this->doSave([static::NS_SEPARATOR.$this->namespace => $this->namespaceVersion], 0);
- }
- } catch (\Exception $e) {
- }
- if (true !== $e && [] !== $e) {
- $message = 'Failed to save the new namespace'.($e instanceof \Exception ? ': '.$e->getMessage() : '.');
- CacheItem::log($this->logger, $message, ['exception' => $e instanceof \Exception ? $e : null, 'cache-adapter' => get_debug_type($this)]);
- }
- }
- if (\is_string($key) && isset($this->ids[$key])) {
- return $this->namespace.$this->namespaceVersion.$this->ids[$key];
- }
- \assert('' !== CacheItem::validateKey($key));
- $this->ids[$key] = $key;
- if (\count($this->ids) > 1000) {
- $this->ids = \array_slice($this->ids, 500, null, true);
- }
- if (null === $this->maxIdLength) {
- return $this->namespace.$this->namespaceVersion.$key;
- }
- if (\strlen($id = $this->namespace.$this->namespaceVersion.$key) > $this->maxIdLength) {
-
- $this->ids[$key] = $id = substr_replace(base64_encode(hash('md5', $key, true)), static::NS_SEPARATOR, -(\strlen($this->namespaceVersion) + 2));
- $id = $this->namespace.$this->namespaceVersion.$id;
- }
- return $id;
- }
-
- public static function handleUnserializeCallback(string $class)
- {
- throw new \DomainException('Class not found: '.$class);
- }
- private static function formatNamespaceVersion(int $value): string
- {
- return strtr(substr_replace(base64_encode(pack('V', $value)), static::NS_SEPARATOR, 5), '/', '_');
- }
- }
|