Drop zh-tw message "saveprefs"
[lhc/web/wiklou.git] / includes / cache / MessageCache.php
1 <?php
2 /**
3 * Localisation messages cache.
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 * MediaWiki message cache structure version.
26 * Bump this whenever the message cache format has changed.
27 */
28 define( 'MSG_CACHE_VERSION', 2 );
29
30 /**
31 * Message cache
32 * Performs various MediaWiki namespace-related functions
33 * @ingroup Cache
34 */
35 class MessageCache {
36 const FOR_UPDATE = 1; // force message reload
37
38 /** How long to wait for memcached locks */
39 const WAIT_SEC = 15;
40 /** How long memcached locks last */
41 const LOCK_TTL = 30;
42
43 /**
44 * Process local cache of loaded messages that are defined in
45 * MediaWiki namespace. First array level is a language code,
46 * second level is message key and the values are either message
47 * content prefixed with space, or !NONEXISTENT for negative
48 * caching.
49 * @var array $mCache
50 */
51 protected $mCache;
52
53 /**
54 * Should mean that database cannot be used, but check
55 * @var bool $mDisable
56 */
57 protected $mDisable;
58
59 /**
60 * Lifetime for cache, used by object caching.
61 * Set on construction, see __construct().
62 */
63 protected $mExpiry;
64
65 /**
66 * Message cache has its own parser which it uses to transform
67 * messages.
68 */
69 protected $mParserOptions, $mParser;
70
71 /**
72 * Variable for tracking which variables are already loaded
73 * @var array $mLoadedLanguages
74 */
75 protected $mLoadedLanguages = array();
76
77 /**
78 * @var bool $mInParser
79 */
80 protected $mInParser = false;
81
82 /** @var BagOStuff */
83 protected $mMemc;
84 /** @var WANObjectCache */
85 protected $wanCache;
86
87 /**
88 * Singleton instance
89 *
90 * @var MessageCache $instance
91 */
92 private static $instance;
93
94 /**
95 * Get the signleton instance of this class
96 *
97 * @since 1.18
98 * @return MessageCache
99 */
100 public static function singleton() {
101 if ( is_null( self::$instance ) ) {
102 global $wgUseDatabaseMessages, $wgMsgCacheExpiry;
103 self::$instance = new self(
104 wfGetMessageCacheStorage(),
105 $wgUseDatabaseMessages,
106 $wgMsgCacheExpiry
107 );
108 }
109
110 return self::$instance;
111 }
112
113 /**
114 * Destroy the singleton instance
115 *
116 * @since 1.18
117 */
118 public static function destroyInstance() {
119 self::$instance = null;
120 }
121
122 /**
123 * Normalize message key input
124 *
125 * @param string $key Input message key to be normalized
126 * @return string Normalized message key
127 */
128 public static function normalizeKey( $key ) {
129 global $wgContLang;
130 $lckey = strtr( $key, ' ', '_' );
131 if ( ord( $lckey ) < 128 ) {
132 $lckey[0] = strtolower( $lckey[0] );
133 } else {
134 $lckey = $wgContLang->lcfirst( $lckey );
135 }
136
137 return $lckey;
138 }
139
140 /**
141 * @param BagOStuff $memCached A cache instance. If none, fall back to CACHE_NONE.
142 * @param bool $useDB
143 * @param int $expiry Lifetime for cache. @see $mExpiry.
144 */
145 function __construct( $memCached, $useDB, $expiry ) {
146 global $wgUseLocalMessageCache;
147
148 if ( !$memCached ) {
149 $memCached = wfGetCache( CACHE_NONE );
150 }
151
152 $this->mMemc = $memCached;
153 $this->mDisable = !$useDB;
154 $this->mExpiry = $expiry;
155
156 if ( $wgUseLocalMessageCache ) {
157 $this->localCache = ObjectCache::newAccelerator( CACHE_NONE );
158 } else {
159 $this->localCache = wfGetCache( CACHE_NONE );
160 }
161
162 $this->wanCache = ObjectCache::getMainWANInstance();
163 }
164
165 /**
166 * ParserOptions is lazy initialised.
167 *
168 * @return ParserOptions
169 */
170 function getParserOptions() {
171 if ( !$this->mParserOptions ) {
172 $this->mParserOptions = new ParserOptions;
173 $this->mParserOptions->setEditSection( false );
174 }
175
176 return $this->mParserOptions;
177 }
178
179 /**
180 * Try to load the cache from APC.
181 *
182 * @param string $code Optional language code, see documenation of load().
183 * @return array|bool The cache array, or false if not in cache.
184 */
185 protected function getLocalCache( $code ) {
186 $cacheKey = wfMemcKey( __CLASS__, $code );
187
188 return $this->localCache->get( $cacheKey );
189 }
190
191 /**
192 * Save the cache to APC.
193 *
194 * @param string $code
195 * @param array $cache The cache array
196 */
197 protected function saveToLocalCache( $code, $cache ) {
198 $cacheKey = wfMemcKey( __CLASS__, $code );
199 $this->localCache->set( $cacheKey, $cache );
200 }
201
202 /**
203 * Loads messages from caches or from database in this order:
204 * (1) local message cache (if $wgUseLocalMessageCache is enabled)
205 * (2) memcached
206 * (3) from the database.
207 *
208 * When succesfully loading from (2) or (3), all higher level caches are
209 * updated for the newest version.
210 *
211 * Nothing is loaded if member variable mDisable is true, either manually
212 * set by calling code or if message loading fails (is this possible?).
213 *
214 * Returns true if cache is already populated or it was succesfully populated,
215 * or false if populating empty cache fails. Also returns true if MessageCache
216 * is disabled.
217 *
218 * @param bool|string $code Language to which load messages
219 * @param integer $mode Use MessageCache::FOR_UPDATE to skip process cache
220 * @throws MWException
221 * @return bool
222 */
223 function load( $code = false, $mode = null ) {
224 if ( !is_string( $code ) ) {
225 # This isn't really nice, so at least make a note about it and try to
226 # fall back
227 wfDebug( __METHOD__ . " called without providing a language code\n" );
228 $code = 'en';
229 }
230
231 # Don't do double loading...
232 if ( isset( $this->mLoadedLanguages[$code] ) && $mode != self::FOR_UPDATE ) {
233 return true;
234 }
235
236 # 8 lines of code just to say (once) that message cache is disabled
237 if ( $this->mDisable ) {
238 static $shownDisabled = false;
239 if ( !$shownDisabled ) {
240 wfDebug( __METHOD__ . ": disabled\n" );
241 $shownDisabled = true;
242 }
243
244 return true;
245 }
246
247 # Loading code starts
248 $success = false; # Keep track of success
249 $staleCache = false; # a cache array with expired data, or false if none has been loaded
250 $where = array(); # Debug info, delayed to avoid spamming debug log too much
251
252 # Hash of the contents is stored in memcache, to detect if data-center cache
253 # or local cache goes out of date (e.g. due to replace() on some other server)
254 list( $hash, $hashVolatile ) = $this->getValidationHash( $code );
255
256 # Try the local cache and check against the cluster hash key...
257 $cache = $this->getLocalCache( $code );
258 if ( !$cache ) {
259 $where[] = 'local cache is empty';
260 } elseif ( !isset( $cache['HASH'] ) || $cache['HASH'] !== $hash ) {
261 $where[] = 'local cache has the wrong hash';
262 $staleCache = $cache;
263 } elseif ( $this->isCacheExpired( $cache ) ) {
264 $where[] = 'local cache is expired';
265 $staleCache = $cache;
266 } elseif ( $hashVolatile ) {
267 $where[] = 'local cache validation key is expired/volatile';
268 $staleCache = $cache;
269 } else {
270 $where[] = 'got from local cache';
271 $success = true;
272 $this->mCache[$code] = $cache;
273 }
274
275 if ( !$success ) {
276 $cacheKey = wfMemcKey( 'messages', $code ); # Key in memc for messages
277 # Try the global cache. If it is empty, try to acquire a lock. If
278 # the lock can't be acquired, wait for the other thread to finish
279 # and then try the global cache a second time.
280 for ( $failedAttempts = 0; $failedAttempts <= 1; $failedAttempts++ ) {
281 if ( $hashVolatile && $staleCache ) {
282 # Do not bother fetching the whole cache blob to avoid I/O.
283 # Instead, just try to get the non-blocking $statusKey lock
284 # below, and use the local stale value if it was not acquired.
285 $where[] = 'global cache is presumed expired';
286 } else {
287 $cache = $this->mMemc->get( $cacheKey );
288 if ( !$cache ) {
289 $where[] = 'global cache is empty';
290 } elseif ( $this->isCacheExpired( $cache ) ) {
291 $where[] = 'global cache is expired';
292 $staleCache = $cache;
293 } elseif ( $hashVolatile ) {
294 # DB results are slave lag prone until the holdoff TTL passes.
295 # By then, updates should be reflected in loadFromDBWithLock().
296 # One thread renerates the cache while others use old values.
297 $where[] = 'global cache is expired/volatile';
298 $staleCache = $cache;
299 } else {
300 $where[] = 'got from global cache';
301 $this->mCache[$code] = $cache;
302 $this->saveToCaches( $cache, 'local-only', $code );
303 $success = true;
304 }
305 }
306
307 if ( $success ) {
308 # Done, no need to retry
309 break;
310 }
311
312 # We need to call loadFromDB. Limit the concurrency to one process.
313 # This prevents the site from going down when the cache expires.
314 # Note that the DB slam protection lock here is non-blocking.
315 $loadStatus = $this->loadFromDBWithLock( $code, $where, $mode );
316 if ( $loadStatus === true ) {
317 $success = true;
318 break;
319 } elseif ( $staleCache ) {
320 # Use the stale cache while some other thread constructs the new one
321 $where[] = 'using stale cache';
322 $this->mCache[$code] = $staleCache;
323 $success = true;
324 break;
325 } elseif ( $failedAttempts > 0 ) {
326 # Already blocked once, so avoid another lock/unlock cycle.
327 # This case will typically be hit if memcached is down, or if
328 # loadFromDB() takes longer than LOCK_WAIT.
329 $where[] = "could not acquire status key.";
330 break;
331 } elseif ( $loadStatus === 'cantacquire' ) {
332 # Wait for the other thread to finish, then retry. Normally,
333 # the memcached get() will then yeild the other thread's result.
334 $where[] = 'waited for other thread to complete';
335 $this->getReentrantScopedLock( $cacheKey );
336 } else {
337 # Disable cache; $loadStatus is 'disabled'
338 break;
339 }
340 }
341 }
342
343 if ( !$success ) {
344 $where[] = 'loading FAILED - cache is disabled';
345 $this->mDisable = true;
346 $this->mCache = false;
347 # This used to throw an exception, but that led to nasty side effects like
348 # the whole wiki being instantly down if the memcached server died
349 } else {
350 # All good, just record the success
351 $this->mLoadedLanguages[$code] = true;
352 }
353
354 $info = implode( ', ', $where );
355 wfDebugLog( 'MessageCache', __METHOD__ . ": Loading $code... $info\n" );
356
357 return $success;
358 }
359
360 /**
361 * @param string $code
362 * @param array $where List of wfDebug() comments
363 * @param integer $mode Use MessageCache::FOR_UPDATE to use DB_MASTER
364 * @return bool|string True on success or one of ("cantacquire", "disabled")
365 */
366 protected function loadFromDBWithLock( $code, array &$where, $mode = null ) {
367 global $wgUseLocalMessageCache;
368
369 # If cache updates on all levels fail, give up on message overrides.
370 # This is to avoid easy site outages; see $saveSuccess comments below.
371 $statusKey = wfMemcKey( 'messages', $code, 'status' );
372 $status = $this->mMemc->get( $statusKey );
373 if ( $status === 'error' ) {
374 $where[] = "could not load; method is still globally disabled";
375 return 'disabled';
376 }
377
378 # Now let's regenerate
379 $where[] = 'loading from database';
380
381 # Lock the cache to prevent conflicting writes.
382 # This lock is non-blocking so stale cache can quickly be used.
383 # Note that load() will call a blocking getReentrantScopedLock()
384 # after this if it really need to wait for any current thread.
385 $cacheKey = wfMemcKey( 'messages', $code );
386 $scopedLock = $this->getReentrantScopedLock( $cacheKey, 0 );
387 if ( !$scopedLock ) {
388 $where[] = 'could not acquire main lock';
389 return 'cantacquire';
390 }
391
392 $cache = $this->loadFromDB( $code, $mode );
393 $this->mCache[$code] = $cache;
394 $saveSuccess = $this->saveToCaches( $cache, 'all', $code );
395
396 if ( !$saveSuccess ) {
397 # Cache save has failed.
398 # There are two main scenarios where this could be a problem:
399 #
400 # - The cache is more than the maximum size (typically
401 # 1MB compressed).
402 #
403 # - Memcached has no space remaining in the relevant slab
404 # class. This is unlikely with recent versions of
405 # memcached.
406 #
407 # Either way, if there is a local cache, nothing bad will
408 # happen. If there is no local cache, disabling the message
409 # cache for all requests avoids incurring a loadFromDB()
410 # overhead on every request, and thus saves the wiki from
411 # complete downtime under moderate traffic conditions.
412 if ( !$wgUseLocalMessageCache ) {
413 $this->mMemc->set( $statusKey, 'error', 60 * 5 );
414 $where[] = 'could not save cache, disabled globally for 5 minutes';
415 } else {
416 $where[] = "could not save global cache";
417 }
418 }
419
420 return true;
421 }
422
423 /**
424 * Loads cacheable messages from the database. Messages bigger than
425 * $wgMaxMsgCacheEntrySize are assigned a special value, and are loaded
426 * on-demand from the database later.
427 *
428 * @param string $code Language code
429 * @param integer $mode Use MessageCache::FOR_UPDATE to skip process cache
430 * @return array Loaded messages for storing in caches
431 */
432 function loadFromDB( $code, $mode = null ) {
433 global $wgMaxMsgCacheEntrySize, $wgLanguageCode, $wgAdaptiveMessageCache;
434
435 $dbr = wfGetDB( ( $mode == self::FOR_UPDATE ) ? DB_MASTER : DB_SLAVE );
436
437 $cache = array();
438
439 # Common conditions
440 $conds = array(
441 'page_is_redirect' => 0,
442 'page_namespace' => NS_MEDIAWIKI,
443 );
444
445 $mostused = array();
446 if ( $wgAdaptiveMessageCache && $code !== $wgLanguageCode ) {
447 if ( !isset( $this->mCache[$wgLanguageCode] ) ) {
448 $this->load( $wgLanguageCode );
449 }
450 $mostused = array_keys( $this->mCache[$wgLanguageCode] );
451 foreach ( $mostused as $key => $value ) {
452 $mostused[$key] = "$value/$code";
453 }
454 }
455
456 if ( count( $mostused ) ) {
457 $conds['page_title'] = $mostused;
458 } elseif ( $code !== $wgLanguageCode ) {
459 $conds[] = 'page_title' . $dbr->buildLike( $dbr->anyString(), '/', $code );
460 } else {
461 # Effectively disallows use of '/' character in NS_MEDIAWIKI for uses
462 # other than language code.
463 $conds[] = 'page_title NOT' . $dbr->buildLike( $dbr->anyString(), '/', $dbr->anyString() );
464 }
465
466 # Conditions to fetch oversized pages to ignore them
467 $bigConds = $conds;
468 $bigConds[] = 'page_len > ' . intval( $wgMaxMsgCacheEntrySize );
469
470 # Load titles for all oversized pages in the MediaWiki namespace
471 $res = $dbr->select( 'page', 'page_title', $bigConds, __METHOD__ . "($code)-big" );
472 foreach ( $res as $row ) {
473 $cache[$row->page_title] = '!TOO BIG';
474 }
475
476 # Conditions to load the remaining pages with their contents
477 $smallConds = $conds;
478 $smallConds[] = 'page_latest=rev_id';
479 $smallConds[] = 'rev_text_id=old_id';
480 $smallConds[] = 'page_len <= ' . intval( $wgMaxMsgCacheEntrySize );
481
482 $res = $dbr->select(
483 array( 'page', 'revision', 'text' ),
484 array( 'page_title', 'old_text', 'old_flags' ),
485 $smallConds,
486 __METHOD__ . "($code)-small"
487 );
488
489 foreach ( $res as $row ) {
490 $text = Revision::getRevisionText( $row );
491 if ( $text === false ) {
492 // Failed to fetch data; possible ES errors?
493 // Store a marker to fetch on-demand as a workaround...
494 $entry = '!TOO BIG';
495 wfDebugLog(
496 'MessageCache',
497 __METHOD__
498 . ": failed to load message page text for {$row->page_title} ($code)"
499 );
500 } else {
501 $entry = ' ' . $text;
502 }
503 $cache[$row->page_title] = $entry;
504 }
505
506 $cache['VERSION'] = MSG_CACHE_VERSION;
507 ksort( $cache );
508 $cache['HASH'] = md5( serialize( $cache ) );
509 $cache['EXPIRY'] = wfTimestamp( TS_MW, time() + $this->mExpiry );
510
511 return $cache;
512 }
513
514 /**
515 * Updates cache as necessary when message page is changed
516 *
517 * @param string|bool $title Name of the page changed (false if deleted)
518 * @param mixed $text New contents of the page.
519 */
520 public function replace( $title, $text ) {
521 global $wgMaxMsgCacheEntrySize, $wgContLang, $wgLanguageCode;
522
523 if ( $this->mDisable ) {
524 return;
525 }
526
527 list( $msg, $code ) = $this->figureMessage( $title );
528 if ( strpos( $title, '/' ) !== false && $code === $wgLanguageCode ) {
529 // Content language overrides do not use the /<code> suffix
530 return;
531 }
532
533 // Note that if the cache is volatile, load() may trigger a DB fetch.
534 // In that case we reenter/reuse the existing cache key lock to avoid
535 // a self-deadlock. This is safe as no reads happen *directly* in this
536 // method between getReentrantScopedLock() and load() below. There is
537 // no risk of data "changing under our feet" for replace().
538 $cacheKey = wfMemcKey( 'messages', $code );
539 $scopedLock = $this->getReentrantScopedLock( $cacheKey );
540 $this->load( $code, self::FOR_UPDATE );
541
542 $titleKey = wfMemcKey( 'messages', 'individual', $title );
543 if ( $text === false ) {
544 // Article was deleted
545 $this->mCache[$code][$title] = '!NONEXISTENT';
546 $this->wanCache->delete( $titleKey );
547 } elseif ( strlen( $text ) > $wgMaxMsgCacheEntrySize ) {
548 // Check for size
549 $this->mCache[$code][$title] = '!TOO BIG';
550 $this->wanCache->set( $titleKey, ' ' . $text, $this->mExpiry );
551 } else {
552 $this->mCache[$code][$title] = ' ' . $text;
553 $this->wanCache->delete( $titleKey );
554 }
555
556 // Mark this cache as definitely "latest" (non-volatile) so
557 // load() calls do try to refresh the cache with slave data
558 $this->mCache[$code]['LATEST'] = time();
559
560 // Update caches if the lock was acquired
561 if ( $scopedLock ) {
562 $this->saveToCaches( $this->mCache[$code], 'all', $code );
563 }
564
565 ScopedCallback::consume( $scopedLock );
566 // Relay the purge to APC and other DCs
567 $this->wanCache->touchCheckKey( wfMemcKey( 'messages', $code ) );
568
569 // Also delete cached sidebar... just in case it is affected
570 $codes = array( $code );
571 if ( $code === 'en' ) {
572 // Delete all sidebars, like for example on action=purge on the
573 // sidebar messages
574 $codes = array_keys( Language::fetchLanguageNames() );
575 }
576
577 foreach ( $codes as $code ) {
578 $sidebarKey = wfMemcKey( 'sidebar', $code );
579 $this->wanCache->delete( $sidebarKey, 5 );
580 }
581
582 // Update the message in the message blob store
583 $blobStore = new MessageBlobStore();
584 $blobStore->updateMessage( $wgContLang->lcfirst( $msg ) );
585
586 Hooks::run( 'MessageCacheReplace', array( $title, $text ) );
587 }
588
589 /**
590 * Is the given cache array expired due to time passing or a version change?
591 *
592 * @param array $cache
593 * @return bool
594 */
595 protected function isCacheExpired( $cache ) {
596 if ( !isset( $cache['VERSION'] ) || !isset( $cache['EXPIRY'] ) ) {
597 return true;
598 }
599 if ( $cache['VERSION'] != MSG_CACHE_VERSION ) {
600 return true;
601 }
602 if ( wfTimestampNow() >= $cache['EXPIRY'] ) {
603 return true;
604 }
605
606 return false;
607 }
608
609 /**
610 * Shortcut to update caches.
611 *
612 * @param array $cache Cached messages with a version.
613 * @param string $dest Either "local-only" to save to local caches only
614 * or "all" to save to all caches.
615 * @param string|bool $code Language code (default: false)
616 * @return bool
617 */
618 protected function saveToCaches( array $cache, $dest, $code = false ) {
619 if ( $dest === 'all' ) {
620 $cacheKey = wfMemcKey( 'messages', $code );
621 $success = $this->mMemc->set( $cacheKey, $cache );
622 } else {
623 $success = true;
624 }
625
626 $this->setValidationHash( $code, $cache );
627 $this->saveToLocalCache( $code, $cache );
628
629 return $success;
630 }
631
632 /**
633 * Get the md5 used to validate the local APC cache
634 *
635 * @param string $code
636 * @return array (hash or false, bool expiry/volatility status)
637 */
638 protected function getValidationHash( $code ) {
639 $curTTL = null;
640 $value = $this->wanCache->get(
641 wfMemcKey( 'messages', $code, 'hash', 'v1' ),
642 $curTTL,
643 array( wfMemcKey( 'messages', $code ) )
644 );
645
646 if ( !$value ) {
647 // No hash found at all; cache must regenerate to be safe
648 $expired = true;
649 } elseif ( ( time() - $value['latest'] ) < WANObjectCache::HOLDOFF_TTL ) {
650 // Cache was recently updated via replace() and should be up-to-date
651 $expired = false;
652 } else {
653 // See if the "check" key was bumped after the hash was generated
654 $expired = ( $curTTL < 0 );
655 }
656
657 return array( $value['hash'], $expired );
658 }
659
660 /**
661 * Set the md5 used to validate the local disk cache
662 *
663 * If $cache has a 'LATEST' UNIX timestamp key, then the hash will not
664 * be treated as "volatile" by getValidationHash() for the next few seconds
665 *
666 * @param string $code
667 * @param array $cache Cached messages with a version
668 */
669 protected function setValidationHash( $code, array $cache ) {
670 $this->wanCache->set(
671 wfMemcKey( 'messages', $code, 'hash', 'v1' ),
672 array(
673 'hash' => $cache['HASH'],
674 'latest' => isset( $cache['LATEST'] ) ? $cache['LATEST'] : 0
675 ),
676 WANObjectCache::TTL_NONE
677 );
678 }
679
680 /**
681 * @param string $key A language message cache key that stores blobs
682 * @param integer $timeout Wait timeout in seconds
683 * @return null|ScopedCallback
684 */
685 protected function getReentrantScopedLock( $key, $timeout = self::WAIT_SEC ) {
686 return $this->mMemc->getScopedLock( $key, $timeout, self::LOCK_TTL, __METHOD__ );
687 }
688
689 /**
690 * Get a message from either the content language or the user language.
691 *
692 * First, assemble a list of languages to attempt getting the message from. This
693 * chain begins with the requested language and its fallbacks and then continues with
694 * the content language and its fallbacks. For each language in the chain, the following
695 * process will occur (in this order):
696 * 1. If a language-specific override, i.e., [[MW:msg/lang]], is available, use that.
697 * Note: for the content language, there is no /lang subpage.
698 * 2. Fetch from the static CDB cache.
699 * 3. If available, check the database for fallback language overrides.
700 *
701 * This process provides a number of guarantees. When changing this code, make sure all
702 * of these guarantees are preserved.
703 * * If the requested language is *not* the content language, then the CDB cache for that
704 * specific language will take precedence over the root database page ([[MW:msg]]).
705 * * Fallbacks will be just that: fallbacks. A fallback language will never be reached if
706 * the message is available *anywhere* in the language for which it is a fallback.
707 *
708 * @param string $key The message key
709 * @param bool $useDB If true, look for the message in the DB, false
710 * to use only the compiled l10n cache.
711 * @param bool|string|object $langcode Code of the language to get the message for.
712 * - If string and a valid code, will create a standard language object
713 * - If string but not a valid code, will create a basic language object
714 * - If boolean and false, create object from the current users language
715 * - If boolean and true, create object from the wikis content language
716 * - If language object, use it as given
717 * @param bool $isFullKey Specifies whether $key is a two part key "msg/lang".
718 *
719 * @throws MWException When given an invalid key
720 * @return string|bool False if the message doesn't exist, otherwise the
721 * message (which can be empty)
722 */
723 function get( $key, $useDB = true, $langcode = true, $isFullKey = false ) {
724 global $wgContLang;
725
726 if ( is_int( $key ) ) {
727 // Fix numerical strings that somehow become ints
728 // on their way here
729 $key = (string)$key;
730 } elseif ( !is_string( $key ) ) {
731 throw new MWException( 'Non-string key given' );
732 } elseif ( $key === '' ) {
733 // Shortcut: the empty key is always missing
734 return false;
735 }
736
737 // For full keys, get the language code from the key
738 $pos = strrpos( $key, '/' );
739 if ( $isFullKey && $pos !== false ) {
740 $langcode = substr( $key, $pos + 1 );
741 $key = substr( $key, 0, $pos );
742 }
743
744 // Normalise title-case input (with some inlining)
745 $lckey = MessageCache::normalizeKey( $key );
746
747 Hooks::run( 'MessageCache::get', array( &$lckey ) );
748
749 if ( ord( $lckey ) < 128 ) {
750 $uckey = ucfirst( $lckey );
751 } else {
752 $uckey = $wgContLang->ucfirst( $lckey );
753 }
754
755 // Loop through each language in the fallback list until we find something useful
756 $lang = wfGetLangObj( $langcode );
757 $message = $this->getMessageFromFallbackChain(
758 $lang,
759 $lckey,
760 $uckey,
761 !$this->mDisable && $useDB
762 );
763
764 // If we still have no message, maybe the key was in fact a full key so try that
765 if ( $message === false ) {
766 $parts = explode( '/', $lckey );
767 // We may get calls for things that are http-urls from sidebar
768 // Let's not load nonexistent languages for those
769 // They usually have more than one slash.
770 if ( count( $parts ) == 2 && $parts[1] !== '' ) {
771 $message = Language::getMessageFor( $parts[0], $parts[1] );
772 if ( $message === null ) {
773 $message = false;
774 }
775 }
776 }
777
778 // Post-processing if the message exists
779 if ( $message !== false ) {
780 // Fix whitespace
781 $message = str_replace(
782 array(
783 # Fix for trailing whitespace, removed by textarea
784 '&#32;',
785 # Fix for NBSP, converted to space by firefox
786 '&nbsp;',
787 '&#160;',
788 ),
789 array(
790 ' ',
791 "\xc2\xa0",
792 "\xc2\xa0"
793 ),
794 $message
795 );
796 }
797
798 return $message;
799 }
800
801 /**
802 * Given a language, try and fetch a message from that language, then the
803 * fallbacks of that language, then the site language, then the fallbacks for the
804 * site language.
805 *
806 * @param Language $lang Requested language
807 * @param string $lckey Lowercase key for the message
808 * @param string $uckey Uppercase key for the message
809 * @param bool $useDB Whether to use the database
810 *
811 * @see MessageCache::get
812 * @return string|bool The message, or false if not found
813 */
814 protected function getMessageFromFallbackChain( $lang, $lckey, $uckey, $useDB ) {
815 global $wgLanguageCode, $wgContLang;
816
817 $langcode = $lang->getCode();
818 $message = false;
819
820 // First try the requested language.
821 if ( $useDB ) {
822 if ( $langcode === $wgLanguageCode ) {
823 // Messages created in the content language will not have the /lang extension
824 $message = $this->getMsgFromNamespace( $uckey, $langcode );
825 } else {
826 $message = $this->getMsgFromNamespace( "$uckey/$langcode", $langcode );
827 }
828 }
829
830 if ( $message !== false ) {
831 return $message;
832 }
833
834 // Check the CDB cache
835 $message = $lang->getMessage( $lckey );
836 if ( $message !== null ) {
837 return $message;
838 }
839
840 list( $fallbackChain, $siteFallbackChain ) =
841 Language::getFallbacksIncludingSiteLanguage( $langcode );
842
843 // Next try checking the database for all of the fallback languages of the requested language.
844 if ( $useDB ) {
845 foreach ( $fallbackChain as $code ) {
846 if ( $code === $wgLanguageCode ) {
847 // Messages created in the content language will not have the /lang extension
848 $message = $this->getMsgFromNamespace( $uckey, $code );
849 } else {
850 $message = $this->getMsgFromNamespace( "$uckey/$code", $code );
851 }
852
853 if ( $message !== false ) {
854 // Found the message.
855 return $message;
856 }
857 }
858 }
859
860 // Now try checking the site language.
861 if ( $useDB ) {
862 $message = $this->getMsgFromNamespace( $uckey, $wgLanguageCode );
863 if ( $message !== false ) {
864 return $message;
865 }
866 }
867
868 $message = $wgContLang->getMessage( $lckey );
869 if ( $message !== null ) {
870 return $message;
871 }
872
873 // Finally try the DB for the site language's fallbacks.
874 if ( $useDB ) {
875 foreach ( $siteFallbackChain as $code ) {
876 $message = $this->getMsgFromNamespace( "$uckey/$code", $code );
877 if ( $message === false && $code === $wgLanguageCode ) {
878 // Messages created in the content language will not have the /lang extension
879 $message = $this->getMsgFromNamespace( $uckey, $code );
880 }
881
882 if ( $message !== false ) {
883 // Found the message.
884 return $message;
885 }
886 }
887 }
888
889 return false;
890 }
891
892 /**
893 * Get a message from the MediaWiki namespace, with caching. The key must
894 * first be converted to two-part lang/msg form if necessary.
895 *
896 * Unlike self::get(), this function doesn't resolve fallback chains, and
897 * some callers require this behavior. LanguageConverter::parseCachedTable()
898 * and self::get() are some examples in core.
899 *
900 * @param string $title Message cache key with initial uppercase letter.
901 * @param string $code Code denoting the language to try.
902 * @return string|bool The message, or false if it does not exist or on error
903 */
904 function getMsgFromNamespace( $title, $code ) {
905 $this->load( $code );
906 if ( isset( $this->mCache[$code][$title] ) ) {
907 $entry = $this->mCache[$code][$title];
908 if ( substr( $entry, 0, 1 ) === ' ' ) {
909 // The message exists, so make sure a string
910 // is returned.
911 return (string)substr( $entry, 1 );
912 } elseif ( $entry === '!NONEXISTENT' ) {
913 return false;
914 } elseif ( $entry === '!TOO BIG' ) {
915 // Fall through and try invididual message cache below
916 }
917 } else {
918 // XXX: This is not cached in process cache, should it?
919 $message = false;
920 Hooks::run( 'MessagesPreLoad', array( $title, &$message ) );
921 if ( $message !== false ) {
922 return $message;
923 }
924
925 return false;
926 }
927
928 # Try the individual message cache
929 $titleKey = wfMemcKey( 'messages', 'individual', $title );
930 $entry = $this->wanCache->get( $titleKey );
931 if ( $entry ) {
932 if ( substr( $entry, 0, 1 ) === ' ' ) {
933 $this->mCache[$code][$title] = $entry;
934
935 // The message exists, so make sure a string
936 // is returned.
937 return (string)substr( $entry, 1 );
938 } elseif ( $entry === '!NONEXISTENT' ) {
939 $this->mCache[$code][$title] = '!NONEXISTENT';
940
941 return false;
942 } else {
943 # Corrupt/obsolete entry, delete it
944 $this->wanCache->delete( $titleKey );
945 }
946 }
947
948 # Try loading it from the database
949 $revision = Revision::newFromTitle( Title::makeTitle( NS_MEDIAWIKI, $title ) );
950 if ( $revision ) {
951 $content = $revision->getContent();
952 if ( !$content ) {
953 // A possibly temporary loading failure.
954 wfDebugLog(
955 'MessageCache',
956 __METHOD__ . ": failed to load message page text for {$title} ($code)"
957 );
958 $message = null; // no negative caching
959 } else {
960 // XXX: Is this the right way to turn a Content object into a message?
961 // NOTE: $content is typically either WikitextContent, JavaScriptContent or
962 // CssContent. MessageContent is *not* used for storing messages, it's
963 // only used for wrapping them when needed.
964 $message = $content->getWikitextForTransclusion();
965
966 if ( $message === false || $message === null ) {
967 wfDebugLog(
968 'MessageCache',
969 __METHOD__ . ": message content doesn't provide wikitext "
970 . "(content model: " . $content->getModel() . ")"
971 );
972
973 $message = false; // negative caching
974 } else {
975 $this->mCache[$code][$title] = ' ' . $message;
976 $this->wanCache->set( $titleKey, ' ' . $message, $this->mExpiry );
977 }
978 }
979 } else {
980 $message = false; // negative caching
981 }
982
983 if ( $message === false ) { // negative caching
984 $this->mCache[$code][$title] = '!NONEXISTENT';
985 $this->wanCache->set( $titleKey, '!NONEXISTENT', $this->mExpiry );
986 }
987
988 return $message;
989 }
990
991 /**
992 * @param string $message
993 * @param bool $interface
994 * @param string $language Language code
995 * @param Title $title
996 * @return string
997 */
998 function transform( $message, $interface = false, $language = null, $title = null ) {
999 // Avoid creating parser if nothing to transform
1000 if ( strpos( $message, '{{' ) === false ) {
1001 return $message;
1002 }
1003
1004 if ( $this->mInParser ) {
1005 return $message;
1006 }
1007
1008 $parser = $this->getParser();
1009 if ( $parser ) {
1010 $popts = $this->getParserOptions();
1011 $popts->setInterfaceMessage( $interface );
1012 $popts->setTargetLanguage( $language );
1013
1014 $userlang = $popts->setUserLang( $language );
1015 $this->mInParser = true;
1016 $message = $parser->transformMsg( $message, $popts, $title );
1017 $this->mInParser = false;
1018 $popts->setUserLang( $userlang );
1019 }
1020
1021 return $message;
1022 }
1023
1024 /**
1025 * @return Parser
1026 */
1027 function getParser() {
1028 global $wgParser, $wgParserConf;
1029 if ( !$this->mParser && isset( $wgParser ) ) {
1030 # Do some initialisation so that we don't have to do it twice
1031 $wgParser->firstCallInit();
1032 # Clone it and store it
1033 $class = $wgParserConf['class'];
1034 if ( $class == 'ParserDiffTest' ) {
1035 # Uncloneable
1036 $this->mParser = new $class( $wgParserConf );
1037 } else {
1038 $this->mParser = clone $wgParser;
1039 }
1040 }
1041
1042 return $this->mParser;
1043 }
1044
1045 /**
1046 * @param string $text
1047 * @param Title $title
1048 * @param bool $linestart Whether or not this is at the start of a line
1049 * @param bool $interface Whether this is an interface message
1050 * @param string $language Language code
1051 * @return ParserOutput|string
1052 */
1053 public function parse( $text, $title = null, $linestart = true,
1054 $interface = false, $language = null
1055 ) {
1056 if ( $this->mInParser ) {
1057 return htmlspecialchars( $text );
1058 }
1059
1060 $parser = $this->getParser();
1061 $popts = $this->getParserOptions();
1062 $popts->setInterfaceMessage( $interface );
1063 $popts->setTargetLanguage( $language );
1064
1065 if ( !$title || !$title instanceof Title ) {
1066 global $wgTitle;
1067 wfDebugLog( 'GlobalTitleFail', __METHOD__ . ' called by ' .
1068 wfGetAllCallers( 5 ) . ' with no title set.' );
1069 $title = $wgTitle;
1070 }
1071 // Sometimes $wgTitle isn't set either...
1072 if ( !$title ) {
1073 # It's not uncommon having a null $wgTitle in scripts. See r80898
1074 # Create a ghost title in such case
1075 $title = Title::makeTitle( NS_SPECIAL, 'Badtitle/title not set in ' . __METHOD__ );
1076 }
1077
1078 $this->mInParser = true;
1079 $res = $parser->parse( $text, $title, $popts, $linestart );
1080 $this->mInParser = false;
1081
1082 return $res;
1083 }
1084
1085 function disable() {
1086 $this->mDisable = true;
1087 }
1088
1089 function enable() {
1090 $this->mDisable = false;
1091 }
1092
1093 /**
1094 * Clear all stored messages. Mainly used after a mass rebuild.
1095 */
1096 function clear() {
1097 $langs = Language::fetchLanguageNames( null, 'mw' );
1098 foreach ( array_keys( $langs ) as $code ) {
1099 # Global and local caches
1100 $this->wanCache->touchCheckKey( wfMemcKey( 'messages', $code ) );
1101 }
1102
1103 $this->mLoadedLanguages = array();
1104 }
1105
1106 /**
1107 * @param string $key
1108 * @return array
1109 */
1110 public function figureMessage( $key ) {
1111 global $wgLanguageCode;
1112
1113 $pieces = explode( '/', $key );
1114 if ( count( $pieces ) < 2 ) {
1115 return array( $key, $wgLanguageCode );
1116 }
1117
1118 $lang = array_pop( $pieces );
1119 if ( !Language::fetchLanguageName( $lang, null, 'mw' ) ) {
1120 return array( $key, $wgLanguageCode );
1121 }
1122
1123 $message = implode( '/', $pieces );
1124
1125 return array( $message, $lang );
1126 }
1127
1128 /**
1129 * Get all message keys stored in the message cache for a given language.
1130 * If $code is the content language code, this will return all message keys
1131 * for which MediaWiki:msgkey exists. If $code is another language code, this
1132 * will ONLY return message keys for which MediaWiki:msgkey/$code exists.
1133 * @param string $code Language code
1134 * @return array Array of message keys (strings)
1135 */
1136 public function getAllMessageKeys( $code ) {
1137 global $wgContLang;
1138 $this->load( $code );
1139 if ( !isset( $this->mCache[$code] ) ) {
1140 // Apparently load() failed
1141 return null;
1142 }
1143 // Remove administrative keys
1144 $cache = $this->mCache[$code];
1145 unset( $cache['VERSION'] );
1146 unset( $cache['EXPIRY'] );
1147 // Remove any !NONEXISTENT keys
1148 $cache = array_diff( $cache, array( '!NONEXISTENT' ) );
1149
1150 // Keys may appear with a capital first letter. lcfirst them.
1151 return array_map( array( $wgContLang, 'lcfirst' ), array_keys( $cache ) );
1152 }
1153 }