Merge "Exclude redirects from Special:Fewestrevisions"
[lhc/web/wiklou.git] / includes / libs / objectcache / ReplicatedBagOStuff.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @ingroup Cache
20 */
21 use Wikimedia\ObjectFactory;
22
23 /**
24 * A cache class that directs writes to one set of servers and reads to
25 * another. This assumes that the servers used for reads are setup to replica DB
26 * those that writes go to. This can easily be used with redis for example.
27 *
28 * In the WAN scenario (e.g. multi-datacenter case), this is useful when
29 * writes are rare or they usually take place in the primary datacenter.
30 *
31 * @ingroup Cache
32 * @since 1.26
33 */
34 class ReplicatedBagOStuff extends BagOStuff {
35 /** @var BagOStuff */
36 protected $writeStore;
37 /** @var BagOStuff */
38 protected $readStore;
39
40 /**
41 * Constructor. Parameters are:
42 * - writeFactory : ObjectFactory::getObjectFromSpec array yeilding BagOStuff.
43 * This object will be used for writes (e.g. the master DB).
44 * - readFactory : ObjectFactory::getObjectFromSpec array yeilding BagOStuff.
45 * This object will be used for reads (e.g. a replica DB).
46 *
47 * @param array $params
48 * @throws InvalidArgumentException
49 */
50 public function __construct( $params ) {
51 parent::__construct( $params );
52
53 if ( !isset( $params['writeFactory'] ) ) {
54 throw new InvalidArgumentException(
55 __METHOD__ . ': the "writeFactory" parameter is required' );
56 }
57 if ( !isset( $params['readFactory'] ) ) {
58 throw new InvalidArgumentException(
59 __METHOD__ . ': the "readFactory" parameter is required' );
60 }
61
62 $opts = [ 'reportDupes' => false ]; // redundant
63 $this->writeStore = ( $params['writeFactory'] instanceof BagOStuff )
64 ? $params['writeFactory']
65 : ObjectFactory::getObjectFromSpec( $opts + $params['writeFactory'] );
66 $this->readStore = ( $params['readFactory'] instanceof BagOStuff )
67 ? $params['readFactory']
68 : ObjectFactory::getObjectFromSpec( $opts + $params['readFactory'] );
69 $this->attrMap = $this->mergeFlagMaps( [ $this->readStore, $this->writeStore ] );
70 }
71
72 public function setDebug( $enabled ) {
73 parent::setDebug( $enabled );
74 $this->writeStore->setDebug( $enabled );
75 $this->readStore->setDebug( $enabled );
76 }
77
78 public function get( $key, $flags = 0 ) {
79 return ( ( $flags & self::READ_LATEST ) == self::READ_LATEST )
80 ? $this->writeStore->get( $key, $flags )
81 : $this->readStore->get( $key, $flags );
82 }
83
84 public function set( $key, $value, $exptime = 0, $flags = 0 ) {
85 return $this->writeStore->set( $key, $value, $exptime, $flags );
86 }
87
88 public function delete( $key, $flags = 0 ) {
89 return $this->writeStore->delete( $key, $flags );
90 }
91
92 public function add( $key, $value, $exptime = 0, $flags = 0 ) {
93 return $this->writeStore->add( $key, $value, $exptime, $flags );
94 }
95
96 public function merge( $key, callable $callback, $exptime = 0, $attempts = 10, $flags = 0 ) {
97 return $this->writeStore->merge( $key, $callback, $exptime, $attempts, $flags );
98 }
99
100 public function changeTTL( $key, $exptime = 0, $flags = 0 ) {
101 return $this->writeStore->changeTTL( $key, $exptime, $flags );
102 }
103
104 public function lock( $key, $timeout = 6, $expiry = 6, $rclass = '' ) {
105 return $this->writeStore->lock( $key, $timeout, $expiry, $rclass );
106 }
107
108 public function unlock( $key ) {
109 return $this->writeStore->unlock( $key );
110 }
111
112 public function deleteObjectsExpiringBefore(
113 $timestamp,
114 callable $progress = null,
115 $limit = INF
116 ) {
117 return $this->writeStore->deleteObjectsExpiringBefore( $timestamp, $progress, $limit );
118 }
119
120 public function getMulti( array $keys, $flags = 0 ) {
121 return ( ( $flags & self::READ_LATEST ) == self::READ_LATEST )
122 ? $this->writeStore->getMulti( $keys, $flags )
123 : $this->readStore->getMulti( $keys, $flags );
124 }
125
126 public function setMulti( array $data, $exptime = 0, $flags = 0 ) {
127 return $this->writeStore->setMulti( $data, $exptime, $flags );
128 }
129
130 public function deleteMulti( array $keys, $flags = 0 ) {
131 return $this->writeStore->deleteMulti( $keys, $flags );
132 }
133
134 public function changeTTLMulti( array $keys, $exptime, $flags = 0 ) {
135 return $this->writeStore->changeTTLMulti( $keys, $exptime, $flags );
136 }
137
138 public function incr( $key, $value = 1 ) {
139 return $this->writeStore->incr( $key, $value );
140 }
141
142 public function decr( $key, $value = 1 ) {
143 return $this->writeStore->decr( $key, $value );
144 }
145
146 public function incrWithInit( $key, $ttl, $value = 1, $init = 1 ) {
147 return $this->writeStore->incrWithInit( $key, $ttl, $value, $init );
148 }
149
150 public function getLastError() {
151 return ( $this->writeStore->getLastError() != self::ERR_NONE )
152 ? $this->writeStore->getLastError()
153 : $this->readStore->getLastError();
154 }
155
156 public function clearLastError() {
157 $this->writeStore->clearLastError();
158 $this->readStore->clearLastError();
159 }
160
161 public function makeKeyInternal( $keyspace, $args ) {
162 return $this->writeStore->makeKeyInternal( ...func_get_args() );
163 }
164
165 public function makeKey( $class, $component = null ) {
166 return $this->writeStore->makeKey( ...func_get_args() );
167 }
168
169 public function makeGlobalKey( $class, $component = null ) {
170 return $this->writeStore->makeGlobalKey( ...func_get_args() );
171 }
172
173 public function addBusyCallback( callable $workCallback ) {
174 $this->writeStore->addBusyCallback( $workCallback );
175 }
176
177 public function setMockTime( &$time ) {
178 parent::setMockTime( $time );
179 $this->writeStore->setMockTime( $time );
180 $this->readStore->setMockTime( $time );
181 }
182 }