| Total Complexity | 40 |
| Total Lines | 295 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
Complex classes like CacheProvider often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use CacheProvider, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 20 | class CacheProvider implements CacheInterface |
||
| 21 | { |
||
| 22 | /** @var Config */ |
||
| 23 | protected $config; |
||
| 24 | |||
| 25 | /** @var CacheDriver */ |
||
| 26 | protected $driver; |
||
| 27 | |||
| 28 | /** @var EventProvider */ |
||
| 29 | protected $events; |
||
| 30 | |||
| 31 | /** @var array|Event[] */ |
||
| 32 | protected $delayedEvents = []; |
||
| 33 | |||
| 34 | public function __construct(Config $config = null, CacheDriver $driver = null, EventProvider $events = null) |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param string|array $key |
||
| 43 | * @param Closure|null|mixed $default |
||
| 44 | * |
||
| 45 | * @throws CacheInvalidArgumentException|InvalidArgumentException |
||
| 46 | * |
||
| 47 | * @return iterable|mixed|null |
||
| 48 | */ |
||
| 49 | public function get($key, $default = null) |
||
| 50 | { |
||
| 51 | if (is_array($key)) { |
||
| 52 | return $this->getMultiple($key, $default); |
||
|
|
|||
| 53 | } |
||
| 54 | |||
| 55 | $value = $this->driver()->get($key, null); |
||
| 56 | |||
| 57 | if ($this->driver()->expired($key)) { |
||
| 58 | $this->removeExpired($key, $value); |
||
| 59 | $value = null; |
||
| 60 | } |
||
| 61 | |||
| 62 | if (is_null($value)) { |
||
| 63 | $value = reduce_value($default); |
||
| 64 | $this->fire(new CacheMissed($this->driver(), $key)); |
||
| 65 | } else { |
||
| 66 | $this->fire(new CacheHit($this->driver(), $key, $value)); |
||
| 67 | } |
||
| 68 | |||
| 69 | return $value; |
||
| 70 | } |
||
| 71 | |||
| 72 | /** |
||
| 73 | * Accepts either a string or a key-value pair array. If given an array then the second value is used as the |
||
| 74 | * ttl, unless $ttl is explicitly set. |
||
| 75 | * |
||
| 76 | * @param string|array $key |
||
| 77 | * @param mixed $value |
||
| 78 | * @param null|int $ttl |
||
| 79 | * |
||
| 80 | * @throws CacheInvalidArgumentException|InvalidArgumentException |
||
| 81 | * |
||
| 82 | * @return bool |
||
| 83 | */ |
||
| 84 | public function set($key, $value = null, $ttl = null) |
||
| 85 | { |
||
| 86 | if (is_array($key)) { |
||
| 87 | return $this->setMultiple($key, $ttl ?? $value); |
||
| 88 | } |
||
| 89 | |||
| 90 | $result = $this->driver()->set($key, $value, $ttl); |
||
| 91 | |||
| 92 | if ($result) { |
||
| 93 | $this->fire(new CacheKeyStored($this->driver(), $key, $value, $ttl)); |
||
| 94 | } |
||
| 95 | |||
| 96 | return $result; |
||
| 97 | } |
||
| 98 | |||
| 99 | /** |
||
| 100 | * @param string|array $key |
||
| 101 | * |
||
| 102 | * @throws CacheInvalidArgumentException|InvalidArgumentException |
||
| 103 | * |
||
| 104 | * @return bool |
||
| 105 | */ |
||
| 106 | public function delete($key) |
||
| 107 | { |
||
| 108 | if (is_array($key)) { |
||
| 109 | return $this->deleteMultiple($key); |
||
| 110 | } |
||
| 111 | |||
| 112 | $result = $this->driver()->delete($key); |
||
| 113 | |||
| 114 | if ($result) { |
||
| 115 | $this->fire(new CacheKeyDeleted($this->driver(), $key)); |
||
| 116 | } |
||
| 117 | |||
| 118 | return $result; |
||
| 119 | } |
||
| 120 | |||
| 121 | /** |
||
| 122 | * @return bool |
||
| 123 | */ |
||
| 124 | public function clear() |
||
| 125 | { |
||
| 126 | $result = $this->driver->clear(); |
||
| 127 | |||
| 128 | if ($result) { |
||
| 129 | $this->fire(new CacheCleared($this->driver)); |
||
| 130 | } |
||
| 131 | |||
| 132 | return $result; |
||
| 133 | } |
||
| 134 | |||
| 135 | /** |
||
| 136 | * @param iterable $keys |
||
| 137 | * @param null $default |
||
| 138 | * |
||
| 139 | * @throws InvalidArgumentException|CacheInvalidArgumentException |
||
| 140 | * |
||
| 141 | * @return iterable |
||
| 142 | */ |
||
| 143 | public function getMultiple($keys, $default = null) |
||
| 144 | { |
||
| 145 | $hit = []; |
||
| 146 | |||
| 147 | foreach ($keys as $key) { |
||
| 148 | if ($this->driver()->expired($key)) { |
||
| 149 | $this->removeExpired($key); |
||
| 150 | } |
||
| 151 | |||
| 152 | if ($this->driver()->canGet($key)) { |
||
| 153 | $hit[$key] = $key; |
||
| 154 | } |
||
| 155 | } |
||
| 156 | |||
| 157 | $results = $this->driver()->getMultiple($keys, $default); |
||
| 158 | |||
| 159 | foreach ($results as $key => $value) { |
||
| 160 | if (array_key_exists($key, $hit)) { |
||
| 161 | $this->fire(new CacheHit($this->driver(), $key, $value)); |
||
| 162 | } else { |
||
| 163 | $this->fire(new CacheMissed($this->driver(), $key)); |
||
| 164 | } |
||
| 165 | } |
||
| 166 | |||
| 167 | return $results; |
||
| 168 | } |
||
| 169 | |||
| 170 | /** |
||
| 171 | * @param iterable $values |
||
| 172 | * @param null $ttl |
||
| 173 | * |
||
| 174 | * @return bool |
||
| 175 | */ |
||
| 176 | public function setMultiple($values, $ttl = null) |
||
| 179 | } |
||
| 180 | |||
| 181 | /** |
||
| 182 | * @param iterable $keys |
||
| 183 | * |
||
| 184 | * @return bool |
||
| 185 | */ |
||
| 186 | public function deleteMultiple($keys) |
||
| 187 | { |
||
| 188 | return $this->multiple('delete', $keys) ? $this->driver()->deleteMultiple($keys) : false; |
||
| 189 | } |
||
| 190 | |||
| 191 | /** |
||
| 192 | * @param string $key |
||
| 193 | * |
||
| 194 | * @return bool |
||
| 195 | */ |
||
| 196 | public function has($key) |
||
| 197 | { |
||
| 198 | return $this->driver()->has($key); |
||
| 199 | } |
||
| 200 | |||
| 201 | /** |
||
| 202 | * @return bool |
||
| 203 | */ |
||
| 204 | public function empty(): bool |
||
| 207 | } |
||
| 208 | |||
| 209 | /** |
||
| 210 | * @return bool |
||
| 211 | */ |
||
| 212 | public function notEmpty(): bool |
||
| 215 | } |
||
| 216 | |||
| 217 | /** |
||
| 218 | * @return CacheDriver |
||
| 219 | */ |
||
| 220 | public function driver() |
||
| 221 | { |
||
| 222 | return $this->driver; |
||
| 223 | } |
||
| 224 | |||
| 225 | /** |
||
| 226 | * @param string $method |
||
| 227 | * @param iterable $keys |
||
| 228 | * @param null|int|mixed $ttl |
||
| 229 | * |
||
| 230 | * @return bool |
||
| 231 | */ |
||
| 232 | protected function multiple(string $method, $keys, $ttl = null): bool |
||
| 233 | { |
||
| 234 | foreach ($keys as $key => $value) { |
||
| 235 | $result = false; |
||
| 236 | |||
| 237 | if ($method === 'set' && $result = $this->driver()->canSet($key, $value)) { |
||
| 238 | $this->delayedFire(new CacheKeyStored($this->driver, $key, $value, $ttl)); |
||
| 239 | } |
||
| 240 | |||
| 241 | if ($method === 'delete' && $result = $this->driver()->canDelete($value)) { |
||
| 242 | $this->delayedFire(new CacheKeyDeleted($this->driver, $value)); |
||
| 243 | } |
||
| 244 | |||
| 245 | if ($result === false) { |
||
| 246 | $this->flushDelayedEvents(false); |
||
| 247 | return false; |
||
| 248 | } |
||
| 249 | } |
||
| 250 | |||
| 251 | $this->flushDelayedEvents(); |
||
| 252 | |||
| 253 | return true; |
||
| 254 | } |
||
| 255 | |||
| 256 | /** |
||
| 257 | * @param $key |
||
| 258 | * @param null $value |
||
| 259 | * |
||
| 260 | * @throws CacheInvalidArgumentException|InvalidArgumentException |
||
| 261 | * |
||
| 262 | * @return self |
||
| 263 | */ |
||
| 264 | protected function removeExpired($key, $value = null): self |
||
| 265 | { |
||
| 266 | if ($this->driver()->expired($key)) { |
||
| 267 | $this->fire(new CacheKeyExpired($this->driver(), $key, $value)); |
||
| 268 | $this->delete($key); |
||
| 269 | } |
||
| 270 | |||
| 271 | |||
| 272 | return $this; |
||
| 273 | } |
||
| 274 | |||
| 275 | /** |
||
| 276 | * @param Event $event |
||
| 277 | * |
||
| 278 | * @return self |
||
| 279 | */ |
||
| 280 | protected function fire(Event $event): self |
||
| 281 | { |
||
| 282 | $this->events->fire($event); |
||
| 283 | |||
| 284 | return $this; |
||
| 285 | } |
||
| 286 | |||
| 287 | /** |
||
| 288 | * @param bool $fire |
||
| 289 | * |
||
| 290 | * @return self |
||
| 291 | */ |
||
| 292 | protected function flushDelayedEvents(bool $fire = true): self |
||
| 293 | { |
||
| 294 | if ($fire) { |
||
| 295 | array_map(function (Event $event) { |
||
| 296 | $this->fire($event); |
||
| 297 | }, $this->delayedEvents); |
||
| 298 | } |
||
| 299 | |||
| 300 | $this->delayedEvents = []; |
||
| 301 | |||
| 302 | return $this; |
||
| 303 | } |
||
| 304 | |||
| 305 | /** |
||
| 306 | * @param Event $event |
||
| 307 | * |
||
| 308 | * @return $this |
||
| 309 | */ |
||
| 310 | protected function delayedFire(Event $event): self |
||
| 315 | } |
||
| 316 | } |
||
| 317 |