|
1
|
|
|
<?php |
|
2
|
|
|
declare(strict_types = 1); |
|
3
|
|
|
|
|
4
|
|
|
namespace Roave\DoctrineSimpleCache; |
|
5
|
|
|
|
|
6
|
|
|
use Doctrine\Common\Cache\Cache as DoctrineCache; |
|
7
|
|
|
use Doctrine\Common\Cache\ClearableCache; |
|
8
|
|
|
use Doctrine\Common\Cache\MultiGetCache; |
|
9
|
|
|
use Doctrine\Common\Cache\MultiPutCache; |
|
10
|
|
|
use Psr\SimpleCache\CacheInterface as PsrCache; |
|
11
|
|
|
use Roave\DoctrineSimpleCache\Exception\InvalidArgumentException; |
|
12
|
|
|
|
|
13
|
|
|
final class SimpleCacheAdapter implements PsrCache |
|
14
|
|
|
{ |
|
15
|
|
|
/** |
|
16
|
|
|
* @var DoctrineCache|ClearableCache|MultiGetCache|MultiPutCache |
|
17
|
|
|
*/ |
|
18
|
|
|
private $doctrineCache; |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* @param DoctrineCache $doctrineCache |
|
22
|
|
|
* @throws \Roave\DoctrineSimpleCache\Exception\CacheException |
|
23
|
|
|
*/ |
|
24
|
32 |
|
public function __construct(DoctrineCache $doctrineCache) |
|
25
|
|
|
{ |
|
26
|
32 |
|
$this->doctrineCache = $doctrineCache; |
|
27
|
|
|
|
|
28
|
32 |
|
if (!$this->doctrineCache instanceof ClearableCache) { |
|
29
|
1 |
|
throw Exception\CacheException::fromNonClearableCache($this->doctrineCache); |
|
30
|
|
|
} |
|
31
|
31 |
|
if (!$this->doctrineCache instanceof MultiGetCache) { |
|
32
|
1 |
|
throw Exception\CacheException::fromNonMultiGetCache($this->doctrineCache); |
|
33
|
|
|
} |
|
34
|
30 |
|
if (!$this->doctrineCache instanceof MultiPutCache) { |
|
35
|
1 |
|
throw Exception\CacheException::fromNonMultiPutCache($this->doctrineCache); |
|
36
|
|
|
} |
|
37
|
29 |
|
} |
|
38
|
|
|
|
|
39
|
|
|
/** |
|
40
|
|
|
* {@inheritDoc} |
|
41
|
|
|
*/ |
|
42
|
5 |
|
public function get($key, $default = null) |
|
43
|
|
|
{ |
|
44
|
5 |
|
$value = $this->doctrineCache->fetch($key); |
|
|
|
|
|
|
45
|
5 |
|
if ($value === false) { |
|
46
|
3 |
|
return $default; |
|
47
|
|
|
} |
|
48
|
|
|
|
|
49
|
5 |
|
return $value; |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
|
|
/** |
|
53
|
|
|
* {@inheritDoc} |
|
54
|
|
|
*/ |
|
55
|
11 |
|
public function set($key, $value, $ttl = null) : bool |
|
56
|
|
|
{ |
|
57
|
11 |
|
if ($ttl === null) { |
|
58
|
1 |
|
return $this->doctrineCache->save($key, $value); |
|
|
|
|
|
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
10 |
|
if ($ttl instanceof \DateInterval) { |
|
62
|
1 |
|
$ttl = $this->convertDateIntervalToInteger($ttl); |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
10 |
|
if (!is_integer($ttl)) { |
|
66
|
7 |
|
throw InvalidArgumentException::fromKeyAndInvalidTTL($key, $ttl); |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
3 |
|
if ($ttl <= 0) { |
|
70
|
1 |
|
return $this->delete($key); |
|
71
|
|
|
} |
|
72
|
|
|
|
|
73
|
3 |
|
return $this->doctrineCache->save($key, $value, $ttl); |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
/** |
|
77
|
|
|
* {@inheritDoc} |
|
78
|
|
|
*/ |
|
79
|
5 |
|
public function delete($key) : bool |
|
80
|
|
|
{ |
|
81
|
5 |
|
return $this->doctrineCache->delete($key); |
|
|
|
|
|
|
82
|
|
|
} |
|
83
|
|
|
|
|
84
|
|
|
/** |
|
85
|
|
|
* {@inheritDoc} |
|
86
|
|
|
*/ |
|
87
|
1 |
|
public function clear() : bool |
|
88
|
|
|
{ |
|
89
|
1 |
|
return $this->doctrineCache->deleteAll(); |
|
|
|
|
|
|
90
|
|
|
} |
|
91
|
|
|
|
|
92
|
|
|
/** |
|
93
|
|
|
* {@inheritDoc} |
|
94
|
|
|
*/ |
|
95
|
3 |
|
public function getMultiple($keys, $default = null) |
|
96
|
|
|
{ |
|
97
|
3 |
|
return array_merge(array_fill_keys($keys, $default), $this->doctrineCache->fetchMultiple($keys)); |
|
|
|
|
|
|
98
|
|
|
} |
|
99
|
|
|
|
|
100
|
|
|
/** |
|
101
|
|
|
* {@inheritDoc} |
|
102
|
|
|
*/ |
|
103
|
11 |
|
public function setMultiple($values, $ttl = null) : bool |
|
104
|
|
|
{ |
|
105
|
11 |
|
if ($ttl === null) { |
|
106
|
3 |
|
return $this->doctrineCache->saveMultiple($values); |
|
|
|
|
|
|
107
|
|
|
} |
|
108
|
|
|
|
|
109
|
9 |
|
if ($ttl instanceof \DateInterval) { |
|
110
|
1 |
|
$ttl = self::convertDateIntervalToInteger($ttl); |
|
111
|
|
|
} |
|
112
|
|
|
|
|
113
|
9 |
|
if (!is_integer($ttl)) { |
|
114
|
7 |
|
throw InvalidArgumentException::fromKeyAndInvalidTTL(key($values), $ttl); |
|
115
|
|
|
} |
|
116
|
|
|
|
|
117
|
2 |
|
if ($ttl <= 0) { |
|
118
|
1 |
|
return $this->deleteMultiple(array_keys($values)); |
|
|
|
|
|
|
119
|
|
|
} |
|
120
|
|
|
|
|
121
|
1 |
|
return $this->doctrineCache->saveMultiple($values, $ttl); |
|
122
|
|
|
} |
|
123
|
|
|
|
|
124
|
|
|
/** |
|
125
|
|
|
* {@inheritDoc} |
|
126
|
|
|
*/ |
|
127
|
3 |
|
public function deleteMultiple($keys) : bool |
|
128
|
|
|
{ |
|
129
|
3 |
|
$success = true; |
|
130
|
|
|
|
|
131
|
3 |
|
foreach ($keys as $key) { |
|
132
|
3 |
|
if (!$this->delete($key)) { |
|
133
|
3 |
|
$success = false; |
|
134
|
|
|
} |
|
135
|
|
|
} |
|
136
|
|
|
|
|
137
|
3 |
|
return $success; |
|
138
|
|
|
} |
|
139
|
|
|
|
|
140
|
|
|
/** |
|
141
|
|
|
* {@inheritDoc} |
|
142
|
|
|
*/ |
|
143
|
1 |
|
public function has($key) : bool |
|
144
|
|
|
{ |
|
145
|
1 |
|
return $this->doctrineCache->contains($key); |
|
|
|
|
|
|
146
|
|
|
} |
|
147
|
|
|
|
|
148
|
2 |
|
private function convertDateIntervalToInteger(\DateInterval $ttl) : int |
|
149
|
|
|
{ |
|
150
|
|
|
// Timestamp has 2038 year limitation, but it's unlikely to set TTL that long. |
|
151
|
2 |
|
return (new \DateTime()) |
|
152
|
2 |
|
->setTimestamp(0) |
|
153
|
2 |
|
->add($ttl) |
|
154
|
2 |
|
->getTimestamp(); |
|
155
|
|
|
} |
|
156
|
|
|
} |
|
157
|
|
|
|
It seems like the method you are trying to call exists only in some of the possible types.
Let’s take a look at an example:
Available Fixes
Add an additional type-check:
Only allow a single type to be passed if the variable comes from a parameter: