-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathTaggablePSR6ItemAdapter.php
More file actions
320 lines (258 loc) · 8.7 KB
/
Copy pathTaggablePSR6ItemAdapter.php
File metadata and controls
320 lines (258 loc) · 8.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<?php
/*
* This file is part of php-cache organization.
*
* (c) 2015 Aaron Scherer <aequasi@gmail.com>, Tobias Nyholm <tobias.nyholm@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Cache\Taggable;
use Cache\Taggable\Exception\InvalidArgumentException;
use Cache\TagInterop\TaggableCacheItemInterface;
use Psr\Cache\CacheItemInterface;
/**
* Wraps a PSR-6 item with its tag names and generation snapshots.
*
* @internal
*
* @author Magnus Nordlander <magnus@fervo.se>
*/
class TaggablePSR6ItemAdapter implements TaggableCacheItemInterface
{
private bool $dirty = false;
/** @var \Closure(list<string>, list<string>): bool */
private readonly \Closure $generationsAreCurrent;
private bool $hasValue = false;
private ?bool $hit = null;
private bool $initialized = false;
private CacheItemInterface $cacheItem;
private bool $invalidStoredItem = false;
/** @var array<string, string> */
private array $prevTags = [];
/** @var list<string> */
private array $previousTagGenerations = [];
/** @var array<string, string> */
private array $tags = [];
/** @var list<string> */
private array $tagGenerations = [];
private mixed $value = null;
private bool $valueWasSet = false;
/** @param (\Closure(list<string>, list<string>): bool)|null $generationsAreCurrent */
private function __construct(CacheItemInterface $cacheItem, private readonly object $owner, ?\Closure $generationsAreCurrent)
{
$this->cacheItem = $cacheItem;
$this->generationsAreCurrent = $generationsAreCurrent ?? static fn (array $tags, array $generations): bool => true;
}
/** @param (\Closure(list<string>, list<string>): bool)|null $generationsAreCurrent */
public static function makeTaggable(CacheItemInterface $cacheItem, ?object $owner = null, ?\Closure $generationsAreCurrent = null): self
{
return new self($cacheItem, $owner ?? new \stdClass(), $generationsAreCurrent);
}
public function unwrap(): CacheItemInterface
{
return $this->cacheItem;
}
public function isOwnedBy(object $owner): bool
{
return $this->owner === $owner;
}
public function isDirty(): bool
{
return $this->dirty;
}
public function getKey(): string
{
return $this->cacheItem->getKey();
}
public function get(): mixed
{
$this->initialize();
if (!$this->dirty && !$this->isHit()) {
return null;
}
return $this->hasValue ? $this->value : null;
}
public function isHit(): bool
{
if (null !== $this->hit) {
return $this->hit;
}
$this->initialize();
if (!$this->cacheItem->isHit() || $this->invalidStoredItem) {
return $this->hit = false;
}
if ([] === $this->prevTags) {
return $this->hit = true;
}
$previousTags = array_values($this->prevTags);
if (\count($previousTags) !== \count($this->previousTagGenerations)) {
return $this->hit = false;
}
return $this->hit = ($this->generationsAreCurrent)($previousTags, $this->previousTagGenerations);
}
public function set(mixed $value): static
{
$this->initialize();
$this->value = $value;
$this->hasValue = true;
$this->valueWasSet = true;
$this->updateStoredItem();
return $this;
}
/**
* @return array<string, string>
*/
public function getPreviousTags(): array
{
$this->initialize();
return $this->prevTags;
}
/**
* @return array<string, string>
*/
public function getTags(): array
{
return $this->tags;
}
public function setTags(array $tags): static
{
$this->initialize();
if (!$this->valueWasSet && !$this->isHit()) {
$this->value = null;
$this->hasValue = true;
}
$this->tags = [];
$this->tagGenerations = [];
return $this->tag($tags);
}
/**
* @param string|array<array-key, mixed> $tags
*/
private function tag(string|array $tags): static
{
if (!\is_array($tags)) {
$tags = [$tags];
}
$this->initialize();
foreach ($tags as $tag) {
$tag = self::validateTag($tag);
$tagIndex = self::tagIndex($tag);
if (isset($this->tags[$tagIndex])) {
continue;
}
$this->tags[$tagIndex] = $tag;
}
$this->updateStoredItem();
return $this;
}
public static function validateTag(mixed $tag): string
{
if (!\is_string($tag)) {
throw new InvalidArgumentException(\sprintf('Cache tag must be string, "%s" given', \is_object($tag) ? $tag::class : \gettype($tag)));
}
if (!isset($tag[0])) {
throw new InvalidArgumentException('Cache tag length must be greater than zero');
}
if (isset($tag[strcspn($tag, '{}()/\@:')])) {
throw new InvalidArgumentException(\sprintf('Cache tag "%s" contains reserved characters {}()/\@:', $tag));
}
return $tag;
}
public function expiresAt(?\DateTimeInterface $expiration): static
{
$this->cacheItem->expiresAt($expiration);
return $this;
}
public function expiresAfter(int|\DateInterval|null $time): static
{
$this->cacheItem->expiresAfter($time);
return $this;
}
/** @param list<string> $generations */
public function setTagGenerations(array $generations): void
{
if (\count($this->tags) !== \count($generations)) {
throw new \LogicException('Tag generations must match the current tags.');
}
$this->tagGenerations = $generations;
$this->updateStoredItem();
}
private function updateStoredItem(): void
{
$this->dirty = true;
$this->cacheItem->set([
'value' => $this->value,
'tags' => array_values($this->tags),
'tag_generations' => $this->tagGenerations,
]);
}
private function initialize(): void
{
if (!$this->initialized) {
if ($this->cacheItem->isHit()) {
$rawItem = $this->cacheItem->get();
$item = $this->unpackStoredItem($rawItem);
if (null !== $item) {
$this->value = $item['value'];
$this->hasValue = true;
$this->prevTags = $item['tags'];
$this->previousTagGenerations = $item['tag_generations'];
} elseif (\is_array($rawItem) && \array_key_exists('tag_generations', $rawItem)) {
$this->invalidStoredItem = true;
} else {
$this->value = $rawItem;
$this->hasValue = true;
}
}
$this->initialized = true;
}
}
/**
* Read the value and tags from an item created by this class.
*
* @return array{value: mixed, tags: array<string, string>, tag_generations: list<string>}|null
*/
private function unpackStoredItem(mixed $rawItem): ?array
{
if (!\is_array($rawItem)
|| !\array_key_exists('value', $rawItem)
|| !isset($rawItem['tags'])
|| !\is_array($rawItem['tags'])
|| (2 !== \count($rawItem) && 3 !== \count($rawItem))
) {
return null;
}
$tags = [];
foreach ($rawItem['tags'] as $tag) {
if (!\is_string($tag)) {
return null;
}
$tags[self::tagIndex($tag)] = $tag;
}
if (2 === \count($rawItem)) {
return ['value' => $rawItem['value'], 'tags' => $tags, 'tag_generations' => []];
}
if (!isset($rawItem['tag_generations']) || !\is_array($rawItem['tag_generations']) || !array_is_list($rawItem['tag_generations'])) {
return null;
}
$tagGenerations = [];
foreach ($rawItem['tag_generations'] as $generation) {
if (!\is_string($generation) || '' === $generation) {
return null;
}
$tagGenerations[] = $generation;
}
if (\count($tags) !== \count($tagGenerations)) {
return null;
}
return ['value' => $rawItem['value'], 'tags' => $tags, 'tag_generations' => $tagGenerations];
}
private static function tagIndex(string $tag): string
{
if (1 === preg_match('/^(?:0|-?[1-9][0-9]*)$/D', $tag) && (string) (int) $tag === $tag) {
return ':'.$tag;
}
return $tag;
}
}