Merge "Handle revisions with different content models in EditPage"
[lhc/web/wiklou.git] / includes / objectcache / ObjectCache.php
1 <?php
2 /**
3 * Functions to get cache objects.
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 use MediaWiki\Logger\LoggerFactory;
25
26 /**
27 * Functions to get cache objects
28 *
29 * The word "cache" has two main dictionary meanings, and both
30 * are used in this factory class. They are:
31 *
32 * - a) Cache (the computer science definition).
33 * A place to store copies or computations on existing data for
34 * higher access speeds.
35 * - b) Storage.
36 * A place to store lightweight data that is not canonically
37 * stored anywhere else (e.g. a "hoard" of objects).
38 *
39 * The former should always use strongly consistent stores, so callers don't
40 * have to deal with stale reads. The later may be eventually consistent, but
41 * callers can use BagOStuff:READ_LATEST to see the latest available data.
42 *
43 * Primary entry points:
44 *
45 * - ObjectCache::newAccelerator( $fallbackType )
46 * Purpose: Cache for very hot keys.
47 * Stored only on the individual web server.
48 * Not associated with other servers.
49 *
50 * - ObjectCache::getMainWANInstance()
51 * Purpose: Cache.
52 * Stored in the local data-center's main cache (uses different cache keys).
53 * Delete events are broadcasted to other DCs. See WANObjectCache for details.
54 *
55 * - ObjectCache::getMainStashInstance()
56 * Purpose: Ephemeral storage.
57 * Stored centrally within the primary data-center.
58 * Changes are applied there first and replicated to other DCs (best-effort).
59 * To retrieve the latest value (e.g. not from a slave), use BagOStuff:READ_LATEST.
60 * This store may be subject to LRU style evictions.
61 *
62 * - ObjectCache::getLocalClusterInstance()
63 * Purpose: Memory storage for per-cluster coordination and tracking.
64 * A typical use case would be a rate limit counter or cache regeneration mutex.
65 * Stored centrally within the local data-center. Not replicated to other DCs.
66 * Also known as $wgMemc. Configured by $wgMainCacheType.
67 *
68 * - wfGetCache( $cacheType )
69 * Get a specific cache type by key in $wgObjectCaches.
70 *
71 * All the above cache instances (BagOStuff and WANObjectCache) have their makeKey()
72 * method scoped to the *current* wiki ID. Use makeGlobalKey() to avoid this scoping
73 * when using keys that need to be shared amongst wikis.
74 *
75 * @ingroup Cache
76 */
77 class ObjectCache {
78 /** @var BagOStuff[] Map of (id => BagOStuff) */
79 public static $instances = array();
80 /** @var WANObjectCache[] Map of (id => WANObjectCache) */
81 public static $wanInstances = array();
82
83 /**
84 * Get a cached instance of the specified type of cache object.
85 *
86 * @param string $id A key in $wgObjectCaches.
87 * @return BagOStuff
88 */
89 public static function getInstance( $id ) {
90 if ( !isset( self::$instances[$id] ) ) {
91 self::$instances[$id] = self::newFromId( $id );
92 }
93
94 return self::$instances[$id];
95 }
96
97 /**
98 * Get a cached instance of the specified type of WAN cache object.
99 *
100 * @since 1.26
101 * @param string $id A key in $wgWANObjectCaches.
102 * @return WANObjectCache
103 */
104 public static function getWANInstance( $id ) {
105 if ( !isset( self::$wanInstances[$id] ) ) {
106 self::$wanInstances[$id] = self::newWANCacheFromId( $id );
107 }
108
109 return self::$wanInstances[$id];
110 }
111
112 /**
113 * Create a new cache object of the specified type.
114 *
115 * @param string $id A key in $wgObjectCaches.
116 * @return BagOStuff
117 * @throws MWException
118 */
119 public static function newFromId( $id ) {
120 global $wgObjectCaches;
121
122 if ( !isset( $wgObjectCaches[$id] ) ) {
123 throw new MWException( "Invalid object cache type \"$id\" requested. " .
124 "It is not present in \$wgObjectCaches." );
125 }
126
127 return self::newFromParams( $wgObjectCaches[$id] );
128 }
129
130 /**
131 * Get the default keyspace for this wiki.
132 *
133 * This is either the value of the `CachePrefix` configuration variable,
134 * or (if the former is unset) the `DBname` configuration variable, with
135 * `DBprefix` (if defined).
136 *
137 * @return string
138 */
139 public static function getDefaultKeyspace() {
140 global $wgCachePrefix, $wgDBname, $wgDBprefix;
141
142 $keyspace = $wgCachePrefix;
143 if ( is_string( $keyspace ) && $keyspace !== '' ) {
144 return $keyspace;
145 }
146
147 $keyspace = $wgDBname;
148 if ( is_string( $wgDBprefix ) && $wgDBprefix !== '' ) {
149 $keyspace .= '-' . $wgDBprefix;
150 }
151
152 return $keyspace;
153 }
154
155 /**
156 * Create a new cache object from parameters.
157 *
158 * @param array $params Must have 'factory' or 'class' property.
159 * - factory: Callback passed $params that returns BagOStuff.
160 * - class: BagOStuff subclass constructed with $params.
161 * - loggroup: Alias to set 'logger' key with LoggerFactory group.
162 * - .. Other parameters passed to factory or class.
163 * @return BagOStuff
164 * @throws MWException
165 */
166 public static function newFromParams( $params ) {
167 if ( isset( $params['loggroup'] ) ) {
168 $params['logger'] = LoggerFactory::getInstance( $params['loggroup'] );
169 } else {
170 // For backwards-compatability with custom parameters, lets not
171 // have all logging suddenly disappear
172 $params['logger'] = LoggerFactory::getInstance( 'objectcache' );
173 }
174 if ( !isset( $params['keyspace'] ) ) {
175 $params['keyspace'] = self::getDefaultKeyspace();
176 }
177 if ( isset( $params['factory'] ) ) {
178 return call_user_func( $params['factory'], $params );
179 } elseif ( isset( $params['class'] ) ) {
180 $class = $params['class'];
181 if ( $class === 'MultiWriteBagOStuff' && !isset( $params['asyncHandler'] ) ) {
182 $params['asyncHandler'] = 'DeferredUpdates::addCallableUpdate';
183 }
184 return new $class( $params );
185 } else {
186 throw new MWException( "The definition of cache type \""
187 . print_r( $params, true ) . "\" lacks both "
188 . "factory and class parameters." );
189 }
190 }
191
192 /**
193 * Factory function for CACHE_ANYTHING (referenced from DefaultSettings.php)
194 *
195 * CACHE_ANYTHING means that stuff has to be cached, not caching is not an option.
196 * If a caching method is configured for any of the main caches ($wgMainCacheType,
197 * $wgMessageCacheType, $wgParserCacheType), then CACHE_ANYTHING will effectively
198 * be an alias to the configured cache choice for that.
199 * If no cache choice is configured (by default $wgMainCacheType is CACHE_NONE),
200 * then CACHE_ANYTHING will forward to CACHE_DB.
201 *
202 * @param array $params
203 * @return BagOStuff
204 */
205 public static function newAnything( $params ) {
206 global $wgMainCacheType, $wgMessageCacheType, $wgParserCacheType;
207 $candidates = array( $wgMainCacheType, $wgMessageCacheType, $wgParserCacheType );
208 foreach ( $candidates as $candidate ) {
209 if ( $candidate !== CACHE_NONE && $candidate !== CACHE_ANYTHING ) {
210 return self::getInstance( $candidate );
211 }
212 }
213 return self::getInstance( CACHE_DB );
214 }
215
216 /**
217 * Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)
218 *
219 * This will look for any APC style server-local cache.
220 * A fallback cache can be specified if none is found.
221 *
222 * // Direct calls
223 * ObjectCache::newAccelerator( $fallbackType );
224 *
225 * // From $wgObjectCaches via newFromParams()
226 * ObjectCache::newAccelerator( array( 'fallback' => $fallbackType ) );
227 *
228 * @param array $params [optional] Array key 'fallback' for $fallback.
229 * @param int|string $fallback Fallback cache, e.g. (CACHE_NONE, "hash") (since 1.24)
230 * @return BagOStuff
231 * @throws MWException
232 */
233 public static function newAccelerator( $params = array(), $fallback = null ) {
234 if ( $fallback === null ) {
235 // The is_array check here is needed because in PHP 5.3:
236 // $a = 'hash'; isset( $params['fallback'] ); yields true
237 if ( is_array( $params ) && isset( $params['fallback'] ) ) {
238 $fallback = $params['fallback'];
239 } elseif ( !is_array( $params ) ) {
240 $fallback = $params;
241 }
242 }
243 if ( function_exists( 'apc_fetch' ) ) {
244 $id = 'apc';
245 } elseif ( function_exists( 'xcache_get' ) && wfIniGetBool( 'xcache.var_size' ) ) {
246 $id = 'xcache';
247 } elseif ( function_exists( 'wincache_ucache_get' ) ) {
248 $id = 'wincache';
249 } else {
250 if ( $fallback === null ) {
251 throw new MWException( 'CACHE_ACCEL requested but no suitable object ' .
252 'cache is present. You may want to install APC.' );
253 }
254 $id = $fallback;
255 }
256 return self::newFromId( $id );
257 }
258
259 /**
260 * Factory function that creates a memcached client object.
261 *
262 * This always uses the PHP client, since the PECL client has a different
263 * hashing scheme and a different interpretation of the flags bitfield, so
264 * switching between the two clients randomly would be disastrous.
265 *
266 * @param array $params
267 * @return MemcachedPhpBagOStuff
268 */
269 public static function newMemcached( $params ) {
270 return new MemcachedPhpBagOStuff( $params );
271 }
272
273 /**
274 * Create a new cache object of the specified type.
275 *
276 * @since 1.26
277 * @param string $id A key in $wgWANObjectCaches.
278 * @return WANObjectCache
279 * @throws MWException
280 */
281 public static function newWANCacheFromId( $id ) {
282 global $wgWANObjectCaches;
283
284 if ( !isset( $wgWANObjectCaches[$id] ) ) {
285 throw new MWException( "Invalid object cache type \"$id\" requested. " .
286 "It is not present in \$wgWANObjectCaches." );
287 }
288
289 $params = $wgWANObjectCaches[$id];
290 $class = $params['relayerConfig']['class'];
291 $params['relayer'] = new $class( $params['relayerConfig'] );
292 $params['cache'] = self::newFromId( $params['cacheId'] );
293 $class = $params['class'];
294
295 return new $class( $params );
296 }
297
298 /**
299 * Get the main cluster-local cache object.
300 *
301 * @since 1.27
302 * @return BagOStuff
303 */
304 public static function getLocalClusterInstance() {
305 global $wgMainCacheType;
306
307 return self::getInstance( $wgMainCacheType );
308 }
309
310 /**
311 * Get the main WAN cache object.
312 *
313 * @since 1.26
314 * @return WANObjectCache
315 */
316 public static function getMainWANInstance() {
317 global $wgMainWANCache;
318
319 return self::getWANInstance( $wgMainWANCache );
320 }
321
322 /**
323 * Get the cache object for the main stash.
324 *
325 * Stash objects are BagOStuff instances suitable for storing light
326 * weight data that is not canonically stored elsewhere (such as RDBMS).
327 * Stashes should be configured to propagate changes to all data-centers.
328 *
329 * Callers should be prepared for:
330 * - a) Writes to be slower in non-"primary" (e.g. HTTP GET/HEAD only) DCs
331 * - b) Reads to be eventually consistent, e.g. for get()/getMulti()
332 * In general, this means avoiding updates on idempotent HTTP requests and
333 * avoiding an assumption of perfect serializability (or accepting anomalies).
334 * Reads may be eventually consistent or data might rollback as nodes flap.
335 * Callers can use BagOStuff:READ_LATEST to see the latest available data.
336 *
337 * @return BagOStuff
338 * @since 1.26
339 */
340 public static function getMainStashInstance() {
341 global $wgMainStash;
342
343 return self::getInstance( $wgMainStash );
344 }
345
346 /**
347 * Clear all the cached instances.
348 */
349 public static function clear() {
350 self::$instances = array();
351 self::$wanInstances = array();
352 }
353 }