Introduced Maintenance::getDB() and corresponding setDB() to control externally what...
[mediawiki.git] / includes / LocalisationCache.php
blob36867c8f8b7f3da03e066b3bdd16f3c9ca2de6b5
1 <?php
3 define( 'MW_LC_VERSION', 1 );
5 /**
6 * Class for caching the contents of localisation files, Messages*.php
7 * and *.i18n.php.
9 * An instance of this class is available using Language::getLocalisationCache().
11 * The values retrieved from here are merged, containing items from extension
12 * files, core messages files and the language fallback sequence (e.g. zh-cn ->
13 * zh-hans -> en ). Some common errors are corrected, for example namespace
14 * names with spaces instead of underscores, but heavyweight processing, such
15 * as grammatical transformation, is done by the caller.
17 class LocalisationCache {
18 /** Configuration associative array */
19 var $conf;
21 /**
22 * True if recaching should only be done on an explicit call to recache().
23 * Setting this reduces the overhead of cache freshness checking, which
24 * requires doing a stat() for every extension i18n file.
26 var $manualRecache = false;
28 /**
29 * True to treat all files as expired until they are regenerated by this object.
31 var $forceRecache = false;
33 /**
34 * The cache data. 3-d array, where the first key is the language code,
35 * the second key is the item key e.g. 'messages', and the third key is
36 * an item specific subkey index. Some items are not arrays and so for those
37 * items, there are no subkeys.
39 var $data = array();
41 /**
42 * The persistent store object. An instance of LCStore.
44 var $store;
46 /**
47 * A 2-d associative array, code/key, where presence indicates that the item
48 * is loaded. Value arbitrary.
50 * For split items, if set, this indicates that all of the subitems have been
51 * loaded.
53 var $loadedItems = array();
55 /**
56 * A 3-d associative array, code/key/subkey, where presence indicates that
57 * the subitem is loaded. Only used for the split items, i.e. messages.
59 var $loadedSubitems = array();
61 /**
62 * An array where presence of a key indicates that that language has been
63 * initialised. Initialisation includes checking for cache expiry and doing
64 * any necessary updates.
66 var $initialisedLangs = array();
68 /**
69 * An array mapping non-existent pseudo-languages to fallback languages. This
70 * is filled by initShallowFallback() when data is requested from a language
71 * that lacks a Messages*.php file.
73 var $shallowFallbacks = array();
75 /**
76 * An array where the keys are codes that have been recached by this instance.
78 var $recachedLangs = array();
80 /**
81 * All item keys
83 static public $allKeys = array(
84 'fallback', 'namespaceNames', 'bookstoreList',
85 'magicWords', 'messages', 'rtl', 'capitalizeAllNouns', 'digitTransformTable',
86 'separatorTransformTable', 'fallback8bitEncoding', 'linkPrefixExtension',
87 'defaultUserOptionOverrides', 'linkTrail', 'namespaceAliases',
88 'dateFormats', 'datePreferences', 'datePreferenceMigrationMap',
89 'defaultDateFormat', 'extraUserToggles', 'specialPageAliases',
90 'imageFiles', 'preloadedMessages', 'namespaceGenderAliases',
93 /**
94 * Keys for items which consist of associative arrays, which may be merged
95 * by a fallback sequence.
97 static public $mergeableMapKeys = array( 'messages', 'namespaceNames',
98 'dateFormats', 'defaultUserOptionOverrides', 'imageFiles',
99 'preloadedMessages',
103 * Keys for items which are a numbered array.
105 static public $mergeableListKeys = array( 'extraUserToggles' );
108 * Keys for items which contain an array of arrays of equivalent aliases
109 * for each subitem. The aliases may be merged by a fallback sequence.
111 static public $mergeableAliasListKeys = array( 'specialPageAliases' );
114 * Keys for items which contain an associative array, and may be merged if
115 * the primary value contains the special array key "inherit". That array
116 * key is removed after the first merge.
118 static public $optionalMergeKeys = array( 'bookstoreList' );
121 * Keys for items that are formatted like $magicWords
123 static public $magicWordKeys = array( 'magicWords' );
126 * Keys for items where the subitems are stored in the backend separately.
128 static public $splitKeys = array( 'messages' );
131 * Keys which are loaded automatically by initLanguage()
133 static public $preloadedKeys = array( 'dateFormats', 'namespaceNames',
134 'defaultUserOptionOverrides' );
137 * Constructor.
138 * For constructor parameters, see the documentation in DefaultSettings.php
139 * for $wgLocalisationCacheConf.
141 function __construct( $conf ) {
142 global $wgCacheDirectory;
144 $this->conf = $conf;
145 $storeConf = array();
146 if ( !empty( $conf['storeClass'] ) ) {
147 $storeClass = $conf['storeClass'];
148 } else {
149 switch ( $conf['store'] ) {
150 case 'files':
151 case 'file':
152 $storeClass = 'LCStore_CDB';
153 break;
154 case 'db':
155 $storeClass = 'LCStore_DB';
156 break;
157 case 'detect':
158 $storeClass = $wgCacheDirectory ? 'LCStore_CDB' : 'LCStore_DB';
159 break;
160 default:
161 throw new MWException(
162 'Please set $wgLocalisationCacheConf[\'store\'] to something sensible.' );
166 wfDebug( get_class( $this ) . ": using store $storeClass\n" );
167 if ( !empty( $conf['storeDirectory'] ) ) {
168 $storeConf['directory'] = $conf['storeDirectory'];
171 $this->store = new $storeClass( $storeConf );
172 foreach ( array( 'manualRecache', 'forceRecache' ) as $var ) {
173 if ( isset( $conf[$var] ) ) {
174 $this->$var = $conf[$var];
180 * Returns true if the given key is mergeable, that is, if it is an associative
181 * array which can be merged through a fallback sequence.
183 public function isMergeableKey( $key ) {
184 if ( !isset( $this->mergeableKeys ) ) {
185 $this->mergeableKeys = array_flip( array_merge(
186 self::$mergeableMapKeys,
187 self::$mergeableListKeys,
188 self::$mergeableAliasListKeys,
189 self::$optionalMergeKeys,
190 self::$magicWordKeys
191 ) );
193 return isset( $this->mergeableKeys[$key] );
197 * Get a cache item.
199 * Warning: this may be slow for split items (messages), since it will
200 * need to fetch all of the subitems from the cache individually.
202 public function getItem( $code, $key ) {
203 if ( !isset( $this->loadedItems[$code][$key] ) ) {
204 wfProfileIn( __METHOD__.'-load' );
205 $this->loadItem( $code, $key );
206 wfProfileOut( __METHOD__.'-load' );
208 if ( $key === 'fallback' && isset( $this->shallowFallbacks[$code] ) ) {
209 return $this->shallowFallbacks[$code];
211 return $this->data[$code][$key];
215 * Get a subitem, for instance a single message for a given language.
217 public function getSubitem( $code, $key, $subkey ) {
218 if ( !isset( $this->loadedSubitems[$code][$key][$subkey] )
219 && !isset( $this->loadedItems[$code][$key] ) )
221 wfProfileIn( __METHOD__.'-load' );
222 $this->loadSubitem( $code, $key, $subkey );
223 wfProfileOut( __METHOD__.'-load' );
225 if ( isset( $this->data[$code][$key][$subkey] ) ) {
226 return $this->data[$code][$key][$subkey];
227 } else {
228 return null;
233 * Get the list of subitem keys for a given item.
235 * This is faster than array_keys($lc->getItem(...)) for the items listed in
236 * self::$splitKeys.
238 * Will return null if the item is not found, or false if the item is not an
239 * array.
241 public function getSubitemList( $code, $key ) {
242 if ( in_array( $key, self::$splitKeys ) ) {
243 return $this->getSubitem( $code, 'list', $key );
244 } else {
245 $item = $this->getItem( $code, $key );
246 if ( is_array( $item ) ) {
247 return array_keys( $item );
248 } else {
249 return false;
255 * Load an item into the cache.
257 protected function loadItem( $code, $key ) {
258 if ( !isset( $this->initialisedLangs[$code] ) ) {
259 $this->initLanguage( $code );
261 // Check to see if initLanguage() loaded it for us
262 if ( isset( $this->loadedItems[$code][$key] ) ) {
263 return;
265 if ( isset( $this->shallowFallbacks[$code] ) ) {
266 $this->loadItem( $this->shallowFallbacks[$code], $key );
267 return;
269 if ( in_array( $key, self::$splitKeys ) ) {
270 $subkeyList = $this->getSubitem( $code, 'list', $key );
271 foreach ( $subkeyList as $subkey ) {
272 if ( isset( $this->data[$code][$key][$subkey] ) ) {
273 continue;
275 $this->data[$code][$key][$subkey] = $this->getSubitem( $code, $key, $subkey );
277 } else {
278 $this->data[$code][$key] = $this->store->get( $code, $key );
280 $this->loadedItems[$code][$key] = true;
284 * Load a subitem into the cache
286 protected function loadSubitem( $code, $key, $subkey ) {
287 if ( !in_array( $key, self::$splitKeys ) ) {
288 $this->loadItem( $code, $key );
289 return;
291 if ( !isset( $this->initialisedLangs[$code] ) ) {
292 $this->initLanguage( $code );
294 // Check to see if initLanguage() loaded it for us
295 if ( isset( $this->loadedItems[$code][$key] )
296 || isset( $this->loadedSubitems[$code][$key][$subkey] ) )
298 return;
300 if ( isset( $this->shallowFallbacks[$code] ) ) {
301 $this->loadSubitem( $this->shallowFallbacks[$code], $key, $subkey );
302 return;
304 $value = $this->store->get( $code, "$key:$subkey" );
305 $this->data[$code][$key][$subkey] = $value;
306 $this->loadedSubitems[$code][$key][$subkey] = true;
310 * Returns true if the cache identified by $code is missing or expired.
312 public function isExpired( $code ) {
313 if ( $this->forceRecache && !isset( $this->recachedLangs[$code] ) ) {
314 wfDebug( __METHOD__."($code): forced reload\n" );
315 return true;
318 $deps = $this->store->get( $code, 'deps' );
319 if ( $deps === null ) {
320 wfDebug( __METHOD__."($code): cache missing, need to make one\n" );
321 return true;
323 foreach ( $deps as $dep ) {
324 // Because we're unserializing stuff from cache, we
325 // could receive objects of classes that don't exist
326 // anymore (e.g. uninstalled extensions)
327 // When this happens, always expire the cache
328 if ( !$dep instanceof CacheDependency || $dep->isExpired() ) {
329 wfDebug( __METHOD__."($code): cache for $code expired due to " .
330 get_class( $dep ) . "\n" );
331 return true;
334 return false;
338 * Initialise a language in this object. Rebuild the cache if necessary.
340 protected function initLanguage( $code ) {
341 if ( isset( $this->initialisedLangs[$code] ) ) {
342 return;
344 $this->initialisedLangs[$code] = true;
346 # If the code is of the wrong form for a Messages*.php file, do a shallow fallback
347 if ( !Language::isValidBuiltInCode( $code ) ) {
348 $this->initShallowFallback( $code, 'en' );
349 return;
352 # Recache the data if necessary
353 if ( !$this->manualRecache && $this->isExpired( $code ) ) {
354 if ( file_exists( Language::getMessagesFileName( $code ) ) ) {
355 $this->recache( $code );
356 } elseif ( $code === 'en' ) {
357 throw new MWException( 'MessagesEn.php is missing.' );
358 } else {
359 $this->initShallowFallback( $code, 'en' );
361 return;
364 # Preload some stuff
365 $preload = $this->getItem( $code, 'preload' );
366 if ( $preload === null ) {
367 if ( $this->manualRecache ) {
368 // No Messages*.php file. Do shallow fallback to en.
369 if ( $code === 'en' ) {
370 throw new MWException( 'No localisation cache found for English. ' .
371 'Please run maintenance/rebuildLocalisationCache.php.' );
373 $this->initShallowFallback( $code, 'en' );
374 return;
375 } else {
376 throw new MWException( 'Invalid or missing localisation cache.' );
379 $this->data[$code] = $preload;
380 foreach ( $preload as $key => $item ) {
381 if ( in_array( $key, self::$splitKeys ) ) {
382 foreach ( $item as $subkey => $subitem ) {
383 $this->loadedSubitems[$code][$key][$subkey] = true;
385 } else {
386 $this->loadedItems[$code][$key] = true;
392 * Create a fallback from one language to another, without creating a
393 * complete persistent cache.
395 public function initShallowFallback( $primaryCode, $fallbackCode ) {
396 $this->data[$primaryCode] =& $this->data[$fallbackCode];
397 $this->loadedItems[$primaryCode] =& $this->loadedItems[$fallbackCode];
398 $this->loadedSubitems[$primaryCode] =& $this->loadedSubitems[$fallbackCode];
399 $this->shallowFallbacks[$primaryCode] = $fallbackCode;
403 * Read a PHP file containing localisation data.
405 protected function readPHPFile( $_fileName, $_fileType ) {
406 // Disable APC caching
407 $_apcEnabled = ini_set( 'apc.cache_by_default', '0' );
408 include( $_fileName );
409 ini_set( 'apc.cache_by_default', $_apcEnabled );
411 if ( $_fileType == 'core' || $_fileType == 'extension' ) {
412 $data = compact( self::$allKeys );
413 } elseif ( $_fileType == 'aliases' ) {
414 $data = compact( 'aliases' );
415 } else {
416 throw new MWException( __METHOD__.": Invalid file type: $_fileType" );
418 return $data;
422 * Merge two localisation values, a primary and a fallback, overwriting the
423 * primary value in place.
425 protected function mergeItem( $key, &$value, $fallbackValue ) {
426 if ( !is_null( $value ) ) {
427 if ( !is_null( $fallbackValue ) ) {
428 if ( in_array( $key, self::$mergeableMapKeys ) ) {
429 $value = $value + $fallbackValue;
430 } elseif ( in_array( $key, self::$mergeableListKeys ) ) {
431 $value = array_unique( array_merge( $fallbackValue, $value ) );
432 } elseif ( in_array( $key, self::$mergeableAliasListKeys ) ) {
433 $value = array_merge_recursive( $value, $fallbackValue );
434 } elseif ( in_array( $key, self::$optionalMergeKeys ) ) {
435 if ( !empty( $value['inherit'] ) ) {
436 $value = array_merge( $fallbackValue, $value );
438 if ( isset( $value['inherit'] ) ) {
439 unset( $value['inherit'] );
441 } elseif ( in_array( $key, self::$magicWordKeys ) ) {
442 $this->mergeMagicWords( $value, $fallbackValue );
445 } else {
446 $value = $fallbackValue;
450 protected function mergeMagicWords( &$value, $fallbackValue ) {
451 foreach ( $fallbackValue as $magicName => $fallbackInfo ) {
452 if ( !isset( $value[$magicName] ) ) {
453 $value[$magicName] = $fallbackInfo;
454 } else {
455 $oldSynonyms = array_slice( $fallbackInfo, 1 );
456 $newSynonyms = array_slice( $value[$magicName], 1 );
457 $synonyms = array_values( array_unique( array_merge(
458 $newSynonyms, $oldSynonyms ) ) );
459 $value[$magicName] = array_merge( array( $fallbackInfo[0] ), $synonyms );
465 * Given an array mapping language code to localisation value, such as is
466 * found in extension *.i18n.php files, iterate through a fallback sequence
467 * to merge the given data with an existing primary value.
469 * Returns true if any data from the extension array was used, false
470 * otherwise.
472 protected function mergeExtensionItem( $codeSequence, $key, &$value, $fallbackValue ) {
473 $used = false;
474 foreach ( $codeSequence as $code ) {
475 if ( isset( $fallbackValue[$code] ) ) {
476 $this->mergeItem( $key, $value, $fallbackValue[$code] );
477 $used = true;
480 return $used;
484 * Load localisation data for a given language for both core and extensions
485 * and save it to the persistent cache store and the process cache
487 public function recache( $code ) {
488 static $recursionGuard = array();
489 global $wgExtensionMessagesFiles, $wgExtensionAliasesFiles;
490 wfProfileIn( __METHOD__ );
492 if ( !$code ) {
493 throw new MWException( "Invalid language code requested" );
495 $this->recachedLangs[$code] = true;
497 # Initial values
498 $initialData = array_combine(
499 self::$allKeys,
500 array_fill( 0, count( self::$allKeys ), null ) );
501 $coreData = $initialData;
502 $deps = array();
504 # Load the primary localisation from the source file
505 $fileName = Language::getMessagesFileName( $code );
506 if ( !file_exists( $fileName ) ) {
507 wfDebug( __METHOD__.": no localisation file for $code, using fallback to en\n" );
508 $coreData['fallback'] = 'en';
509 } else {
510 $deps[] = new FileDependency( $fileName );
511 $data = $this->readPHPFile( $fileName, 'core' );
512 wfDebug( __METHOD__.": got localisation for $code from source\n" );
514 # Merge primary localisation
515 foreach ( $data as $key => $value ) {
516 $this->mergeItem( $key, $coreData[$key], $value );
520 # Fill in the fallback if it's not there already
521 if ( is_null( $coreData['fallback'] ) ) {
522 $coreData['fallback'] = $code === 'en' ? false : 'en';
525 if ( $coreData['fallback'] !== false ) {
526 # Guard against circular references
527 if ( isset( $recursionGuard[$code] ) ) {
528 throw new MWException( "Error: Circular fallback reference in language code $code" );
530 $recursionGuard[$code] = true;
532 # Load the fallback localisation item by item and merge it
533 $deps = array_merge( $deps, $this->getItem( $coreData['fallback'], 'deps' ) );
534 foreach ( self::$allKeys as $key ) {
535 if ( is_null( $coreData[$key] ) || $this->isMergeableKey( $key ) ) {
536 $fallbackValue = $this->getItem( $coreData['fallback'], $key );
537 $this->mergeItem( $key, $coreData[$key], $fallbackValue );
540 $fallbackSequence = $this->getItem( $coreData['fallback'], 'fallbackSequence' );
541 array_unshift( $fallbackSequence, $coreData['fallback'] );
542 $coreData['fallbackSequence'] = $fallbackSequence;
543 unset( $recursionGuard[$code] );
544 } else {
545 $coreData['fallbackSequence'] = array();
547 $codeSequence = array_merge( array( $code ), $coreData['fallbackSequence'] );
549 # Load the extension localisations
550 # This is done after the core because we know the fallback sequence now.
551 # But it has a higher precedence for merging so that we can support things
552 # like site-specific message overrides.
553 $allData = $initialData;
554 foreach ( $wgExtensionMessagesFiles as $fileName ) {
555 $data = $this->readPHPFile( $fileName, 'extension' );
556 $used = false;
557 foreach ( $data as $key => $item ) {
558 if( $this->mergeExtensionItem( $codeSequence, $key, $allData[$key], $item ) ) {
559 $used = true;
562 if ( $used ) {
563 $deps[] = new FileDependency( $fileName );
567 # Load deprecated $wgExtensionAliasesFiles
568 foreach ( $wgExtensionAliasesFiles as $fileName ) {
569 $data = $this->readPHPFile( $fileName, 'aliases' );
570 if ( !isset( $data['aliases'] ) ) {
571 continue;
573 $used = $this->mergeExtensionItem( $codeSequence, 'specialPageAliases',
574 $allData['specialPageAliases'], $data['aliases'] );
575 if ( $used ) {
576 $deps[] = new FileDependency( $fileName );
580 # Merge core data into extension data
581 foreach ( $coreData as $key => $item ) {
582 $this->mergeItem( $key, $allData[$key], $item );
585 # Add cache dependencies for any referenced globals
586 $deps['wgExtensionMessagesFiles'] = new GlobalDependency( 'wgExtensionMessagesFiles' );
587 $deps['wgExtensionAliasesFiles'] = new GlobalDependency( 'wgExtensionAliasesFiles' );
588 $deps['version'] = new ConstantDependency( 'MW_LC_VERSION' );
590 # Add dependencies to the cache entry
591 $allData['deps'] = $deps;
593 # Replace spaces with underscores in namespace names
594 $allData['namespaceNames'] = str_replace( ' ', '_', $allData['namespaceNames'] );
596 # And do the same for special page aliases. $page is an array.
597 foreach ( $allData['specialPageAliases'] as &$page ) {
598 $page = str_replace( ' ', '_', $page );
600 # Decouple the reference to prevent accidental damage
601 unset($page);
603 # Fix broken defaultUserOptionOverrides
604 if ( !is_array( $allData['defaultUserOptionOverrides'] ) ) {
605 $allData['defaultUserOptionOverrides'] = array();
608 # Set the list keys
609 $allData['list'] = array();
610 foreach ( self::$splitKeys as $key ) {
611 $allData['list'][$key] = array_keys( $allData[$key] );
614 # Run hooks
615 wfRunHooks( 'LocalisationCacheRecache', array( $this, $code, &$allData ) );
617 if ( is_null( $allData['defaultUserOptionOverrides'] ) ) {
618 throw new MWException( __METHOD__.': Localisation data failed sanity check! ' .
619 'Check that your languages/messages/MessagesEn.php file is intact.' );
622 # Set the preload key
623 $allData['preload'] = $this->buildPreload( $allData );
625 # Save to the process cache and register the items loaded
626 $this->data[$code] = $allData;
627 foreach ( $allData as $key => $item ) {
628 $this->loadedItems[$code][$key] = true;
631 # Save to the persistent cache
632 $this->store->startWrite( $code );
633 foreach ( $allData as $key => $value ) {
634 if ( in_array( $key, self::$splitKeys ) ) {
635 foreach ( $value as $subkey => $subvalue ) {
636 $this->store->set( "$key:$subkey", $subvalue );
638 } else {
639 $this->store->set( $key, $value );
642 $this->store->finishWrite();
644 # Clear out the MessageBlobStore
645 # HACK: If using a null (i.e. disabled) storage backend, we
646 # can't write to the MessageBlobStore either
647 if ( !$this->store instanceof LCStore_Null ) {
648 MessageBlobStore::clear();
651 wfProfileOut( __METHOD__ );
655 * Build the preload item from the given pre-cache data.
657 * The preload item will be loaded automatically, improving performance
658 * for the commonly-requested items it contains.
660 protected function buildPreload( $data ) {
661 $preload = array( 'messages' => array() );
662 foreach ( self::$preloadedKeys as $key ) {
663 $preload[$key] = $data[$key];
665 foreach ( $data['preloadedMessages'] as $subkey ) {
666 if ( isset( $data['messages'][$subkey] ) ) {
667 $subitem = $data['messages'][$subkey];
668 } else {
669 $subitem = null;
671 $preload['messages'][$subkey] = $subitem;
673 return $preload;
677 * Unload the data for a given language from the object cache.
678 * Reduces memory usage.
680 public function unload( $code ) {
681 unset( $this->data[$code] );
682 unset( $this->loadedItems[$code] );
683 unset( $this->loadedSubitems[$code] );
684 unset( $this->initialisedLangs[$code] );
685 foreach ( $this->shallowFallbacks as $shallowCode => $fbCode ) {
686 if ( $fbCode === $code ) {
687 $this->unload( $shallowCode );
693 * Unload all data
695 public function unloadAll() {
696 foreach ( $this->initialisedLangs as $lang => $unused ) {
697 $this->unload( $lang );
702 * Disable the storage backend
704 public function disableBackend() {
705 $this->store = new LCStore_Null;
706 $this->manualRecache = false;
711 * Interface for the persistence layer of LocalisationCache.
713 * The persistence layer is two-level hierarchical cache. The first level
714 * is the language, the second level is the item or subitem.
716 * Since the data for a whole language is rebuilt in one operation, it needs
717 * to have a fast and atomic method for deleting or replacing all of the
718 * current data for a given language. The interface reflects this bulk update
719 * operation. Callers writing to the cache must first call startWrite(), then
720 * will call set() a couple of thousand times, then will call finishWrite()
721 * to commit the operation. When finishWrite() is called, the cache is
722 * expected to delete all data previously stored for that language.
724 * The values stored are PHP variables suitable for serialize(). Implementations
725 * of LCStore are responsible for serializing and unserializing.
727 interface LCStore {
729 * Get a value.
730 * @param $code Language code
731 * @param $key Cache key
733 function get( $code, $key );
736 * Start a write transaction.
737 * @param $code Language code
739 function startWrite( $code );
742 * Finish a write transaction.
744 function finishWrite();
747 * Set a key to a given value. startWrite() must be called before this
748 * is called, and finishWrite() must be called afterwards.
750 function set( $key, $value );
755 * LCStore implementation which uses the standard DB functions to store data.
756 * This will work on any MediaWiki installation.
758 class LCStore_DB implements LCStore {
759 var $currentLang;
760 var $writesDone = false;
761 var $dbw, $batch;
762 var $readOnly = false;
764 public function get( $code, $key ) {
765 if ( $this->writesDone ) {
766 $db = wfGetDB( DB_MASTER );
767 } else {
768 $db = wfGetDB( DB_SLAVE );
770 $row = $db->selectRow( 'l10n_cache', array( 'lc_value' ),
771 array( 'lc_lang' => $code, 'lc_key' => $key ), __METHOD__ );
772 if ( $row ) {
773 return unserialize( $row->lc_value );
774 } else {
775 return null;
779 public function startWrite( $code ) {
780 if ( $this->readOnly ) {
781 return;
783 if ( !$code ) {
784 throw new MWException( __METHOD__.": Invalid language \"$code\"" );
786 $this->dbw = wfGetDB( DB_MASTER );
787 try {
788 $this->dbw->begin();
789 $this->dbw->delete( 'l10n_cache', array( 'lc_lang' => $code ), __METHOD__ );
790 } catch ( DBQueryError $e ) {
791 if ( $this->dbw->wasReadOnlyError() ) {
792 $this->readOnly = true;
793 $this->dbw->rollback();
794 $this->dbw->ignoreErrors( false );
795 return;
796 } else {
797 throw $e;
800 $this->currentLang = $code;
801 $this->batch = array();
804 public function finishWrite() {
805 if ( $this->readOnly ) {
806 return;
808 if ( $this->batch ) {
809 $this->dbw->insert( 'l10n_cache', $this->batch, __METHOD__ );
811 $this->dbw->commit();
812 $this->currentLang = null;
813 $this->dbw = null;
814 $this->batch = array();
815 $this->writesDone = true;
818 public function set( $key, $value ) {
819 if ( $this->readOnly ) {
820 return;
822 if ( is_null( $this->currentLang ) ) {
823 throw new MWException( __CLASS__.': must call startWrite() before calling set()' );
825 $this->batch[] = array(
826 'lc_lang' => $this->currentLang,
827 'lc_key' => $key,
828 'lc_value' => serialize( $value ) );
829 if ( count( $this->batch ) >= 100 ) {
830 $this->dbw->insert( 'l10n_cache', $this->batch, __METHOD__ );
831 $this->batch = array();
837 * LCStore implementation which stores data as a collection of CDB files in the
838 * directory given by $wgCacheDirectory. If $wgCacheDirectory is not set, this
839 * will throw an exception.
841 * Profiling indicates that on Linux, this implementation outperforms MySQL if
842 * the directory is on a local filesystem and there is ample kernel cache
843 * space. The performance advantage is greater when the DBA extension is
844 * available than it is with the PHP port.
846 * See Cdb.php and http://cr.yp.to/cdb.html
848 class LCStore_CDB implements LCStore {
849 var $readers, $writer, $currentLang, $directory;
851 function __construct( $conf = array() ) {
852 global $wgCacheDirectory;
853 if ( isset( $conf['directory'] ) ) {
854 $this->directory = $conf['directory'];
855 } else {
856 $this->directory = $wgCacheDirectory;
860 public function get( $code, $key ) {
861 if ( !isset( $this->readers[$code] ) ) {
862 $fileName = $this->getFileName( $code );
863 if ( !file_exists( $fileName ) ) {
864 $this->readers[$code] = false;
865 } else {
866 $this->readers[$code] = CdbReader::open( $fileName );
869 if ( !$this->readers[$code] ) {
870 return null;
871 } else {
872 $value = $this->readers[$code]->get( $key );
873 if ( $value === false ) {
874 return null;
876 return unserialize( $value );
880 public function startWrite( $code ) {
881 if ( !file_exists( $this->directory ) ) {
882 if ( !wfMkdirParents( $this->directory ) ) {
883 throw new MWException( "Unable to create the localisation store " .
884 "directory \"{$this->directory}\"" );
887 // Close reader to stop permission errors on write
888 if( !empty($this->readers[$code]) ) {
889 $this->readers[$code]->close();
891 $this->writer = CdbWriter::open( $this->getFileName( $code ) );
892 $this->currentLang = $code;
895 public function finishWrite() {
896 // Close the writer
897 $this->writer->close();
898 $this->writer = null;
899 unset( $this->readers[$this->currentLang] );
900 $this->currentLang = null;
903 public function set( $key, $value ) {
904 if ( is_null( $this->writer ) ) {
905 throw new MWException( __CLASS__.': must call startWrite() before calling set()' );
907 $this->writer->set( $key, serialize( $value ) );
910 protected function getFileName( $code ) {
911 if ( !$code || strpos( $code, '/' ) !== false ) {
912 throw new MWException( __METHOD__.": Invalid language \"$code\"" );
914 return "{$this->directory}/l10n_cache-$code.cdb";
919 * Null store backend, used to avoid DB errors during install
921 class LCStore_Null implements LCStore {
922 public function get( $code, $key ) {
923 return null;
926 public function startWrite( $code ) {}
927 public function finishWrite() {}
928 public function set( $key, $value ) {}
932 * A localisation cache optimised for loading large amounts of data for many
933 * languages. Used by rebuildLocalisationCache.php.
935 class LocalisationCache_BulkLoad extends LocalisationCache {
937 * A cache of the contents of data files.
938 * Core files are serialized to avoid using ~1GB of RAM during a recache.
940 var $fileCache = array();
943 * Most recently used languages. Uses the linked-list aspect of PHP hashtables
944 * to keep the most recently used language codes at the end of the array, and
945 * the language codes that are ready to be deleted at the beginning.
947 var $mruLangs = array();
950 * Maximum number of languages that may be loaded into $this->data
952 var $maxLoadedLangs = 10;
954 protected function readPHPFile( $fileName, $fileType ) {
955 $serialize = $fileType === 'core';
956 if ( !isset( $this->fileCache[$fileName][$fileType] ) ) {
957 $data = parent::readPHPFile( $fileName, $fileType );
958 if ( $serialize ) {
959 $encData = serialize( $data );
960 } else {
961 $encData = $data;
963 $this->fileCache[$fileName][$fileType] = $encData;
964 return $data;
965 } elseif ( $serialize ) {
966 return unserialize( $this->fileCache[$fileName][$fileType] );
967 } else {
968 return $this->fileCache[$fileName][$fileType];
972 public function getItem( $code, $key ) {
973 unset( $this->mruLangs[$code] );
974 $this->mruLangs[$code] = true;
975 return parent::getItem( $code, $key );
978 public function getSubitem( $code, $key, $subkey ) {
979 unset( $this->mruLangs[$code] );
980 $this->mruLangs[$code] = true;
981 return parent::getSubitem( $code, $key, $subkey );
984 public function recache( $code ) {
985 parent::recache( $code );
986 unset( $this->mruLangs[$code] );
987 $this->mruLangs[$code] = true;
988 $this->trimCache();
991 public function unload( $code ) {
992 unset( $this->mruLangs[$code] );
993 parent::unload( $code );
997 * Unload cached languages until there are less than $this->maxLoadedLangs
999 protected function trimCache() {
1000 while ( count( $this->data ) > $this->maxLoadedLangs && count( $this->mruLangs ) ) {
1001 reset( $this->mruLangs );
1002 $code = key( $this->mruLangs );
1003 wfDebug( __METHOD__.": unloading $code\n" );
1004 $this->unload( $code );