ArrayAdapter.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Cache\Adapter;
  11. use Psr\Cache\CacheItemInterface;
  12. use Psr\Log\LoggerAwareInterface;
  13. use Psr\Log\LoggerAwareTrait;
  14. use Symfony\Component\Cache\CacheItem;
  15. use Symfony\Component\Cache\Exception\InvalidArgumentException;
  16. use Symfony\Component\Cache\ResettableInterface;
  17. use Symfony\Contracts\Cache\CacheInterface;
  18. /**
  19. * An in-memory cache storage.
  20. *
  21. * Acts as a least-recently-used (LRU) storage when configured with a maximum number of items.
  22. *
  23. * @author Nicolas Grekas <p@tchwork.com>
  24. */
  25. class ArrayAdapter implements AdapterInterface, CacheInterface, LoggerAwareInterface, ResettableInterface
  26. {
  27. use LoggerAwareTrait;
  28. private bool $storeSerialized;
  29. private array $values = [];
  30. private array $expiries = [];
  31. private int $defaultLifetime;
  32. private float $maxLifetime;
  33. private int $maxItems;
  34. private static \Closure $createCacheItem;
  35. /**
  36. * @param bool $storeSerialized Disabling serialization can lead to cache corruptions when storing mutable values but increases performance otherwise
  37. */
  38. public function __construct(int $defaultLifetime = 0, bool $storeSerialized = true, float $maxLifetime = 0, int $maxItems = 0)
  39. {
  40. if (0 > $maxLifetime) {
  41. throw new InvalidArgumentException(sprintf('Argument $maxLifetime must be positive, %F passed.', $maxLifetime));
  42. }
  43. if (0 > $maxItems) {
  44. throw new InvalidArgumentException(sprintf('Argument $maxItems must be a positive integer, %d passed.', $maxItems));
  45. }
  46. $this->defaultLifetime = $defaultLifetime;
  47. $this->storeSerialized = $storeSerialized;
  48. $this->maxLifetime = $maxLifetime;
  49. $this->maxItems = $maxItems;
  50. self::$createCacheItem ?? self::$createCacheItem = \Closure::bind(
  51. static function ($key, $value, $isHit) {
  52. $item = new CacheItem();
  53. $item->key = $key;
  54. $item->value = $value;
  55. $item->isHit = $isHit;
  56. return $item;
  57. },
  58. null,
  59. CacheItem::class
  60. );
  61. }
  62. /**
  63. * {@inheritdoc}
  64. */
  65. public function get(string $key, callable $callback, float $beta = null, array &$metadata = null): mixed
  66. {
  67. $item = $this->getItem($key);
  68. $metadata = $item->getMetadata();
  69. // ArrayAdapter works in memory, we don't care about stampede protection
  70. if (\INF === $beta || !$item->isHit()) {
  71. $save = true;
  72. $this->save($item->set($callback($item, $save)));
  73. }
  74. return $item->get();
  75. }
  76. /**
  77. * {@inheritdoc}
  78. */
  79. public function delete(string $key): bool
  80. {
  81. return $this->deleteItem($key);
  82. }
  83. /**
  84. * {@inheritdoc}
  85. */
  86. public function hasItem(mixed $key): bool
  87. {
  88. if (\is_string($key) && isset($this->expiries[$key]) && $this->expiries[$key] > microtime(true)) {
  89. if ($this->maxItems) {
  90. // Move the item last in the storage
  91. $value = $this->values[$key];
  92. unset($this->values[$key]);
  93. $this->values[$key] = $value;
  94. }
  95. return true;
  96. }
  97. \assert('' !== CacheItem::validateKey($key));
  98. return isset($this->expiries[$key]) && !$this->deleteItem($key);
  99. }
  100. /**
  101. * {@inheritdoc}
  102. */
  103. public function getItem(mixed $key): CacheItem
  104. {
  105. if (!$isHit = $this->hasItem($key)) {
  106. $value = null;
  107. if (!$this->maxItems) {
  108. // Track misses in non-LRU mode only
  109. $this->values[$key] = null;
  110. }
  111. } else {
  112. $value = $this->storeSerialized ? $this->unfreeze($key, $isHit) : $this->values[$key];
  113. }
  114. return (self::$createCacheItem)($key, $value, $isHit);
  115. }
  116. /**
  117. * {@inheritdoc}
  118. */
  119. public function getItems(array $keys = []): iterable
  120. {
  121. \assert(self::validateKeys($keys));
  122. return $this->generateItems($keys, microtime(true), self::$createCacheItem);
  123. }
  124. /**
  125. * {@inheritdoc}
  126. */
  127. public function deleteItem(mixed $key): bool
  128. {
  129. \assert('' !== CacheItem::validateKey($key));
  130. unset($this->values[$key], $this->expiries[$key]);
  131. return true;
  132. }
  133. /**
  134. * {@inheritdoc}
  135. */
  136. public function deleteItems(array $keys): bool
  137. {
  138. foreach ($keys as $key) {
  139. $this->deleteItem($key);
  140. }
  141. return true;
  142. }
  143. /**
  144. * {@inheritdoc}
  145. */
  146. public function save(CacheItemInterface $item): bool
  147. {
  148. if (!$item instanceof CacheItem) {
  149. return false;
  150. }
  151. $item = (array) $item;
  152. $key = $item["\0*\0key"];
  153. $value = $item["\0*\0value"];
  154. $expiry = $item["\0*\0expiry"];
  155. $now = microtime(true);
  156. if (null !== $expiry) {
  157. if (!$expiry) {
  158. $expiry = \PHP_INT_MAX;
  159. } elseif ($expiry <= $now) {
  160. $this->deleteItem($key);
  161. return true;
  162. }
  163. }
  164. if ($this->storeSerialized && null === $value = $this->freeze($value, $key)) {
  165. return false;
  166. }
  167. if (null === $expiry && 0 < $this->defaultLifetime) {
  168. $expiry = $this->defaultLifetime;
  169. $expiry = $now + ($expiry > ($this->maxLifetime ?: $expiry) ? $this->maxLifetime : $expiry);
  170. } elseif ($this->maxLifetime && (null === $expiry || $expiry > $now + $this->maxLifetime)) {
  171. $expiry = $now + $this->maxLifetime;
  172. }
  173. if ($this->maxItems) {
  174. unset($this->values[$key]);
  175. // Iterate items and vacuum expired ones while we are at it
  176. foreach ($this->values as $k => $v) {
  177. if ($this->expiries[$k] > $now && \count($this->values) < $this->maxItems) {
  178. break;
  179. }
  180. unset($this->values[$k], $this->expiries[$k]);
  181. }
  182. }
  183. $this->values[$key] = $value;
  184. $this->expiries[$key] = $expiry ?? \PHP_INT_MAX;
  185. return true;
  186. }
  187. /**
  188. * {@inheritdoc}
  189. */
  190. public function saveDeferred(CacheItemInterface $item): bool
  191. {
  192. return $this->save($item);
  193. }
  194. /**
  195. * {@inheritdoc}
  196. */
  197. public function commit(): bool
  198. {
  199. return true;
  200. }
  201. /**
  202. * {@inheritdoc}
  203. */
  204. public function clear(string $prefix = ''): bool
  205. {
  206. if ('' !== $prefix) {
  207. $now = microtime(true);
  208. foreach ($this->values as $key => $value) {
  209. if (!isset($this->expiries[$key]) || $this->expiries[$key] <= $now || 0 === strpos($key, $prefix)) {
  210. unset($this->values[$key], $this->expiries[$key]);
  211. }
  212. }
  213. if ($this->values) {
  214. return true;
  215. }
  216. }
  217. $this->values = $this->expiries = [];
  218. return true;
  219. }
  220. /**
  221. * Returns all cached values, with cache miss as null.
  222. */
  223. public function getValues(): array
  224. {
  225. if (!$this->storeSerialized) {
  226. return $this->values;
  227. }
  228. $values = $this->values;
  229. foreach ($values as $k => $v) {
  230. if (null === $v || 'N;' === $v) {
  231. continue;
  232. }
  233. if (!\is_string($v) || !isset($v[2]) || ':' !== $v[1]) {
  234. $values[$k] = serialize($v);
  235. }
  236. }
  237. return $values;
  238. }
  239. /**
  240. * {@inheritdoc}
  241. */
  242. public function reset()
  243. {
  244. $this->clear();
  245. }
  246. private function generateItems(array $keys, float $now, \Closure $f): \Generator
  247. {
  248. foreach ($keys as $i => $key) {
  249. if (!$isHit = isset($this->expiries[$key]) && ($this->expiries[$key] > $now || !$this->deleteItem($key))) {
  250. $value = null;
  251. if (!$this->maxItems) {
  252. // Track misses in non-LRU mode only
  253. $this->values[$key] = null;
  254. }
  255. } else {
  256. if ($this->maxItems) {
  257. // Move the item last in the storage
  258. $value = $this->values[$key];
  259. unset($this->values[$key]);
  260. $this->values[$key] = $value;
  261. }
  262. $value = $this->storeSerialized ? $this->unfreeze($key, $isHit) : $this->values[$key];
  263. }
  264. unset($keys[$i]);
  265. yield $key => $f($key, $value, $isHit);
  266. }
  267. foreach ($keys as $key) {
  268. yield $key => $f($key, null, false);
  269. }
  270. }
  271. private function freeze($value, string $key)
  272. {
  273. if (null === $value) {
  274. return 'N;';
  275. }
  276. if (\is_string($value)) {
  277. // Serialize strings if they could be confused with serialized objects or arrays
  278. if ('N;' === $value || (isset($value[2]) && ':' === $value[1])) {
  279. return serialize($value);
  280. }
  281. } elseif (!is_scalar($value)) {
  282. try {
  283. $serialized = serialize($value);
  284. } catch (\Exception $e) {
  285. unset($this->values[$key]);
  286. $type = get_debug_type($value);
  287. $message = sprintf('Failed to save key "{key}" of type %s: %s', $type, $e->getMessage());
  288. CacheItem::log($this->logger, $message, ['key' => $key, 'exception' => $e, 'cache-adapter' => get_debug_type($this)]);
  289. return;
  290. }
  291. // Keep value serialized if it contains any objects or any internal references
  292. if ('C' === $serialized[0] || 'O' === $serialized[0] || preg_match('/;[OCRr]:[1-9]/', $serialized)) {
  293. return $serialized;
  294. }
  295. }
  296. return $value;
  297. }
  298. private function unfreeze(string $key, bool &$isHit)
  299. {
  300. if ('N;' === $value = $this->values[$key]) {
  301. return null;
  302. }
  303. if (\is_string($value) && isset($value[2]) && ':' === $value[1]) {
  304. try {
  305. $value = unserialize($value);
  306. } catch (\Exception $e) {
  307. CacheItem::log($this->logger, 'Failed to unserialize key "{key}": '.$e->getMessage(), ['key' => $key, 'exception' => $e, 'cache-adapter' => get_debug_type($this)]);
  308. $value = false;
  309. }
  310. if (false === $value) {
  311. $value = null;
  312. $isHit = false;
  313. if (!$this->maxItems) {
  314. $this->values[$key] = null;
  315. }
  316. }
  317. }
  318. return $value;
  319. }
  320. private function validateKeys(array $keys): bool
  321. {
  322. foreach ($keys as $key) {
  323. if (!\is_string($key) || !isset($this->expiries[$key])) {
  324. CacheItem::validateKey($key);
  325. }
  326. }
  327. return true;
  328. }
  329. }