]> git.mxchange.org Git - friendica.git/blob - src/Core/Cache/Type/ArrayCache.php
Restructure Cache to follow new paradigm
[friendica.git] / src / Core / Cache / Type / ArrayCache.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Core\Cache\Type;
23
24 use Friendica\Core\Cache\Enum\Duration;
25 use Friendica\Core\Cache\IMemoryCache;
26 use Friendica\Core\Cache\Type\TraitCompareDelete;
27 use Friendica\Core\Cache\Enum\Type;
28
29 /**
30  * Implementation of the IMemoryCache mainly for testing purpose
31  */
32 class ArrayCache extends BaseCache implements IMemoryCache
33 {
34         use TraitCompareDelete;
35
36         /** @var array Array with the cached data */
37         protected $cachedData = array();
38
39         /**
40          * (@inheritdoc)
41          */
42         public function getAllKeys($prefix = null)
43         {
44                 return $this->filterArrayKeysByPrefix(array_keys($this->cachedData), $prefix);
45         }
46
47         /**
48          * (@inheritdoc)
49          */
50         public function get($key)
51         {
52                 if (isset($this->cachedData[$key])) {
53                         return $this->cachedData[$key];
54                 }
55                 return null;
56         }
57
58         /**
59          * (@inheritdoc)
60          */
61         public function set($key, $value, $ttl = Duration::FIVE_MINUTES)
62         {
63                 $this->cachedData[$key] = $value;
64                 return true;
65         }
66
67         /**
68          * (@inheritdoc)
69          */
70         public function delete($key)
71         {
72                 unset($this->cachedData[$key]);
73                 return true;
74         }
75
76         /**
77          * (@inheritdoc)
78          */
79         public function clear($outdated = true)
80         {
81                 // Array doesn't support TTL so just don't delete something
82                 if ($outdated) {
83                         return true;
84                 }
85
86                 $this->cachedData = [];
87                 return true;
88         }
89
90         /**
91          * (@inheritdoc)
92          */
93         public function add($key, $value, $ttl = Duration::FIVE_MINUTES)
94         {
95                 if (isset($this->cachedData[$key])) {
96                         return false;
97                 } else {
98                         return $this->set($key, $value, $ttl);
99                 }
100         }
101
102         /**
103          * (@inheritdoc)
104          */
105         public function compareSet($key, $oldValue, $newValue, $ttl = Duration::FIVE_MINUTES)
106         {
107                 if ($this->get($key) === $oldValue) {
108                         return $this->set($key, $newValue);
109                 } else {
110                         return false;
111                 }
112         }
113
114         /**
115          * {@inheritDoc}
116          */
117         public function getName()
118         {
119                 return Type::ARRAY;
120         }
121 }