-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDoctrineCachePool.php
More file actions
149 lines (120 loc) · 3.83 KB
/
Copy pathDoctrineCachePool.php
File metadata and controls
149 lines (120 loc) · 3.83 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
<?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\Adapter\Doctrine;
use Cache\Adapter\Common\AbstractCachePool;
use Cache\Adapter\Common\PhpCacheItem;
use Cache\Adapter\Common\PhpUnserializer;
use Doctrine\Common\Cache\Cache;
use Doctrine\Common\Cache\FlushableCache;
/**
* This is a bridge between PSR-6 and aDoctrine cache.
*
* @author Aaron Scherer <aequasi@gmail.com>
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/
class DoctrineCachePool extends AbstractCachePool
{
protected Cache $cache;
public function __construct(Cache $cache)
{
$this->cache = $cache;
}
protected function fetchObjectFromCache(string $key): array
{
$payload = $this->cache->fetch($key);
if (!\is_string($payload)) {
return [false, null, [], null];
}
if (!PhpUnserializer::unserialize($payload, $record)) {
return [false, null, [], null];
}
if (!\is_array($record) || !array_is_list($record) || 4 !== \count($record) || true !== $record[0]) {
return [false, null, [], null];
}
$tags = $record[2];
if (!\is_array($tags)) {
return [false, null, [], null];
}
$decodedTags = [];
foreach ($tags as $tagVersion) {
if (!\is_array($tagVersion) || !array_is_list($tagVersion) || 2 !== \count($tagVersion)) {
return [false, null, [], null];
}
[$tag, $version] = $tagVersion;
if (!\is_string($tag) || !\is_string($version)) {
return [false, null, [], null];
}
$decodedTags[] = [$tag, $version];
}
$expiration = $record[3];
if (!\is_int($expiration) && null !== $expiration) {
return [false, null, [], null];
}
return [true, $record[1], $decodedTags, $expiration];
}
protected function clearAllObjectsFromCache(): bool
{
if ($this->cache instanceof FlushableCache) {
return $this->cache->flushAll();
}
return false;
}
protected function clearOneObjectFromCache(string $key): bool
{
return $this->cache->delete($key) || !$this->cache->contains($key);
}
protected function storeItemInCache(PhpCacheItem $item, ?int $ttl): bool
{
if (null === $ttl) {
$ttl = 0;
}
$data = serialize([true, $item->get(), $item->getTagVersions(), $item->getExpirationTimestamp()]);
return $this->cache->save($item->getKey(), $data, $ttl);
}
public function getCache(): Cache
{
return $this->cache;
}
protected function getList(string $name): array
{
$storedList = $this->cache->fetch($name);
if (!\is_array($storedList)) {
return [];
}
$list = [];
foreach ($storedList as $item) {
if (!\is_string($item)) {
return [];
}
$list[] = $item;
}
return $list;
}
protected function removeList(string $name): bool
{
return $this->cache->delete($name) || !$this->cache->contains($name);
}
protected function appendListItem(string $name, string $key): bool
{
$list = $this->getList($name);
$list[] = $key;
return $this->cache->save($name, $list);
}
protected function removeListItem(string $name, string $key): bool
{
$list = $this->getList($name);
foreach ($list as $i => $item) {
if ($item === $key) {
unset($list[$i]);
}
}
return $this->cache->save($name, $list);
}
}