Merge "Exclude redirects from Special:Fewestrevisions"
[lhc/web/wiklou.git] / includes / libs / objectcache / HashBagOStuff.php
1 <?php
2 /**
3 * Per-process memory cache for storing items.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Cache
22 */
23
24 /**
25 * Simple store for keeping values in an associative array for the current process.
26 *
27 * Data will not persist and is not shared with other processes.
28 *
29 * @ingroup Cache
30 */
31 class HashBagOStuff extends MediumSpecificBagOStuff {
32 /** @var mixed[] */
33 protected $bag = [];
34 /** @var int Max entries allowed */
35 protected $maxCacheKeys;
36
37 /** @var string CAS token prefix for this instance */
38 private $token;
39
40 /** @var int CAS token counter */
41 private static $casCounter = 0;
42
43 const KEY_VAL = 0;
44 const KEY_EXP = 1;
45 const KEY_CAS = 2;
46
47 /**
48 * @param array $params Additional parameters include:
49 * - maxKeys : only allow this many keys (using oldest-first eviction)
50 */
51 function __construct( $params = [] ) {
52 $params['segmentationSize'] = $params['segmentationSize'] ?? INF;
53 parent::__construct( $params );
54
55 $this->token = microtime( true ) . ':' . mt_rand();
56 $this->maxCacheKeys = $params['maxKeys'] ?? INF;
57 if ( $this->maxCacheKeys <= 0 ) {
58 throw new InvalidArgumentException( '$maxKeys parameter must be above zero' );
59 }
60 }
61
62 protected function doGet( $key, $flags = 0, &$casToken = null ) {
63 $casToken = null;
64
65 if ( !$this->hasKey( $key ) || $this->expire( $key ) ) {
66 return false;
67 }
68
69 // Refresh key position for maxCacheKeys eviction
70 $temp = $this->bag[$key];
71 unset( $this->bag[$key] );
72 $this->bag[$key] = $temp;
73
74 $casToken = $this->bag[$key][self::KEY_CAS];
75
76 return $this->bag[$key][self::KEY_VAL];
77 }
78
79 protected function doSet( $key, $value, $exptime = 0, $flags = 0 ) {
80 // Refresh key position for maxCacheKeys eviction
81 unset( $this->bag[$key] );
82 $this->bag[$key] = [
83 self::KEY_VAL => $value,
84 self::KEY_EXP => $this->convertToExpiry( $exptime ),
85 self::KEY_CAS => $this->token . ':' . ++self::$casCounter
86 ];
87
88 if ( count( $this->bag ) > $this->maxCacheKeys ) {
89 reset( $this->bag );
90 $evictKey = key( $this->bag );
91 unset( $this->bag[$evictKey] );
92 }
93
94 return true;
95 }
96
97 public function add( $key, $value, $exptime = 0, $flags = 0 ) {
98 if ( $this->hasKey( $key ) && !$this->expire( $key ) ) {
99 return false; // key already set
100 }
101
102 return $this->doSet( $key, $value, $exptime, $flags );
103 }
104
105 protected function doDelete( $key, $flags = 0 ) {
106 unset( $this->bag[$key] );
107
108 return true;
109 }
110
111 public function incr( $key, $value = 1 ) {
112 $n = $this->get( $key );
113 if ( $this->isInteger( $n ) ) {
114 $n = max( $n + intval( $value ), 0 );
115 $this->bag[$key][self::KEY_VAL] = $n;
116
117 return $n;
118 }
119
120 return false;
121 }
122
123 /**
124 * Clear all values in cache
125 */
126 public function clear() {
127 $this->bag = [];
128 }
129
130 /**
131 * @param string $key
132 * @return bool
133 */
134 protected function expire( $key ) {
135 $et = $this->bag[$key][self::KEY_EXP];
136 if ( $et == self::TTL_INDEFINITE || $et > $this->getCurrentTime() ) {
137 return false;
138 }
139
140 $this->doDelete( $key );
141
142 return true;
143 }
144
145 /**
146 * Does this bag have a non-null value for the given key?
147 *
148 * @param string $key
149 * @return bool
150 * @since 1.27
151 */
152 public function hasKey( $key ) {
153 return isset( $this->bag[$key] );
154 }
155 }