-
Notifications
You must be signed in to change notification settings - Fork 15
/
ArrayCachePool.php
274 lines (230 loc) · 6.38 KB
/
ArrayCachePool.php
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
<?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\PHPArray;
use Cache\Adapter\Common\AbstractCachePool;
use Cache\Adapter\Common\CacheItem;
use Cache\Adapter\Common\PhpCacheItem;
use Cache\Hierarchy\HierarchicalCachePoolTrait;
use Cache\Hierarchy\HierarchicalPoolInterface;
/**
* Array cache pool. You could set a limit of how many items you want to be stored to avoid memory leaks.
*
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/
class ArrayCachePool extends AbstractCachePool implements HierarchicalPoolInterface
{
use HierarchicalCachePoolTrait;
/**
* @type PhpCacheItem[]
*/
private $cache;
/**
* @type array A map to hold keys
*/
private $keyMap = [];
/**
* @type int The maximum number of keys in the map
*/
private $limit;
/**
* @type int The next key that we should remove from the cache
*/
private $currentPosition = 0;
/**
* @param int $limit the amount if items stored in the cache. Using a limit will reduce memory leaks.
* @param array $cache
*/
public function __construct($limit = null, array &$cache = [])
{
$this->cache = &$cache;
$this->limit = $limit;
}
/**
* {@inheritdoc}
*/
protected function getItemWithoutGenerateCacheKey($key)
{
if (isset($this->deferred[$key])) {
/** @type CacheItem $item */
$item = clone $this->deferred[$key];
$item->moveTagsToPrevious();
return $item;
}
return $this->fetchObjectFromCache($key);
}
/**
* {@inheritdoc}
*/
protected function fetchObjectFromCache($key)
{
$keys = $this->getHierarchyKey($key);
if (!$this->cacheIsset($keys)) {
return [false, null, [], null];
}
$element = $this->cacheToolkit($keys);
list($data, $tags, $timestamp) = $element;
if (is_object($data)) {
$data = clone $data;
}
return [true, $data, $tags, $timestamp];
}
/**
* {@inheritdoc}
*/
protected function clearAllObjectsFromCache()
{
$this->cache = [];
return true;
}
/**
* {@inheritdoc}
*/
protected function clearOneObjectFromCache($key)
{
$this->commit();
$keys = $this->getHierarchyKey($key);
$this->clearHierarchyKeyCache();
$this->cacheToolkit($keys, null, true);
return true;
}
/**
* {@inheritdoc}
*/
protected function storeItemInCache(PhpCacheItem $item, $ttl)
{
$keys = $this->getHierarchyKey($item->getKey());
$value = $item->get();
if (is_object($value)) {
$value = clone $value;
}
$this->cacheToolkit($keys, [$value, $item->getTags(), $item->getExpirationTimestamp()]);
if ($this->limit !== null) {
// Remove the oldest value
if (isset($this->keyMap[$this->currentPosition])) {
unset($this->cache[$this->keyMap[$this->currentPosition]]);
}
// Add the new key to the current position
$this->keyMap[$this->currentPosition] = implode(HierarchicalPoolInterface::HIERARCHY_SEPARATOR, $keys);
// Increase the current position
$this->currentPosition = ($this->currentPosition + 1) % $this->limit;
}
return true;
}
/**
* {@inheritdoc}
*/
protected function getDirectValue($key)
{
if (isset($this->cache[$key])) {
return $this->cache[$key];
}
}
/**
* {@inheritdoc}
*/
protected function getList($name)
{
if (!isset($this->cache[$name])) {
$this->cache[$name] = [];
}
return $this->cache[$name];
}
/**
* {@inheritdoc}
*/
protected function removeList($name)
{
unset($this->cache[$name]);
return true;
}
/**
* {@inheritdoc}
*/
protected function appendListItem($name, $key)
{
$this->cache[$name][] = $key;
}
/**
* {@inheritdoc}
*/
protected function removeListItem($name, $key)
{
if (isset($this->cache[$name])) {
foreach ($this->cache[$name] as $i => $item) {
if ($item === $key) {
unset($this->cache[$name][$i]);
}
}
}
}
/**
* Used to manipulate cached data by extracting, inserting or deleting value.
*
* @param array $keys
* @param null|mixed $value
* @param bool $unset
*
* @return mixed
*/
private function cacheToolkit($keys, $value = null, $unset = false)
{
$element = &$this->cache;
while ($keys && ($key = array_shift($keys))) {
if (!$keys && is_null($value) && $unset) {
unset($element[$key]);
unset($element);
$element = null;
} else {
$element =&$element[$key];
}
}
if (!$unset && !is_null($value)) {
$element = $value;
}
return $element;
}
/**
* Checking if given keys exists and is valid.
*
* @param array $keys
*
* @return bool
*/
private function cacheIsset($keys)
{
$has = false;
$array = $this->cache;
foreach ($keys as $key) {
if ($has = array_key_exists($key, $array)) {
$array = $array[$key];
}
}
if (is_array($array)) {
$has = $has && array_key_exists(0, $array);
}
return $has;
}
/**
* Get a key to use with the hierarchy. If the key does not start with HierarchicalPoolInterface::SEPARATOR
* this will return an unalterered key. This function supports a tagged key. Ie "foo:bar".
* With this overwrite we'll return array as keys.
*
* @param string $key The original key
*
* @return array
*/
protected function getHierarchyKey($key)
{
if (!$this->isHierarchyKey($key)) {
return [$key];
}
return $this->explodeKey($key);
}
}