3 * Cache of the contents of localisation files.
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.
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.
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
23 use Cdb\Reader
as CdbReader
;
24 use Cdb\Writer
as CdbWriter
;
25 use CLDRPluralRuleParser\Evaluator
;
26 use CLDRPluralRuleParser\Error
as CLDRPluralRuleError
;
27 use MediaWiki\MediaWikiServices
;
30 * Class for caching the contents of localisation files, Messages*.php
33 * An instance of this class is available using Language::getLocalisationCache().
35 * The values retrieved from here are merged, containing items from extension
36 * files, core messages files and the language fallback sequence (e.g. zh-cn ->
37 * zh-hans -> en ). Some common errors are corrected, for example namespace
38 * names with spaces instead of underscores, but heavyweight processing, such
39 * as grammatical transformation, is done by the caller.
41 class LocalisationCache
{
44 /** Configuration associative array */
48 * True if recaching should only be done on an explicit call to recache().
49 * Setting this reduces the overhead of cache freshness checking, which
50 * requires doing a stat() for every extension i18n file.
52 private $manualRecache = false;
55 * True to treat all files as expired until they are regenerated by this object.
57 private $forceRecache = false;
60 * The cache data. 3-d array, where the first key is the language code,
61 * the second key is the item key e.g. 'messages', and the third key is
62 * an item specific subkey index. Some items are not arrays and so for those
63 * items, there are no subkeys.
68 * The persistent store object. An instance of LCStore.
75 * A 2-d associative array, code/key, where presence indicates that the item
76 * is loaded. Value arbitrary.
78 * For split items, if set, this indicates that all of the subitems have been
81 private $loadedItems = [];
84 * A 3-d associative array, code/key/subkey, where presence indicates that
85 * the subitem is loaded. Only used for the split items, i.e. messages.
87 private $loadedSubitems = [];
90 * An array where presence of a key indicates that that language has been
91 * initialised. Initialisation includes checking for cache expiry and doing
92 * any necessary updates.
94 private $initialisedLangs = [];
97 * An array mapping non-existent pseudo-languages to fallback languages. This
98 * is filled by initShallowFallback() when data is requested from a language
99 * that lacks a Messages*.php file.
101 private $shallowFallbacks = [];
104 * An array where the keys are codes that have been recached by this instance.
106 private $recachedLangs = [];
111 static public $allKeys = [
112 'fallback', 'namespaceNames', 'bookstoreList',
113 'magicWords', 'messages', 'rtl', 'capitalizeAllNouns', 'digitTransformTable',
114 'separatorTransformTable', 'fallback8bitEncoding', 'linkPrefixExtension',
115 'linkTrail', 'linkPrefixCharset', 'namespaceAliases',
116 'dateFormats', 'datePreferences', 'datePreferenceMigrationMap',
117 'defaultDateFormat', 'extraUserToggles', 'specialPageAliases',
118 'imageFiles', 'preloadedMessages', 'namespaceGenderAliases',
119 'digitGroupingPattern', 'pluralRules', 'pluralRuleTypes', 'compiledPluralRules',
123 * Keys for items which consist of associative arrays, which may be merged
124 * by a fallback sequence.
126 static public $mergeableMapKeys = [ 'messages', 'namespaceNames',
127 'namespaceAliases', 'dateFormats', 'imageFiles', 'preloadedMessages'
131 * Keys for items which are a numbered array.
133 static public $mergeableListKeys = [ 'extraUserToggles' ];
136 * Keys for items which contain an array of arrays of equivalent aliases
137 * for each subitem. The aliases may be merged by a fallback sequence.
139 static public $mergeableAliasListKeys = [ 'specialPageAliases' ];
142 * Keys for items which contain an associative array, and may be merged if
143 * the primary value contains the special array key "inherit". That array
144 * key is removed after the first merge.
146 static public $optionalMergeKeys = [ 'bookstoreList' ];
149 * Keys for items that are formatted like $magicWords
151 static public $magicWordKeys = [ 'magicWords' ];
154 * Keys for items where the subitems are stored in the backend separately.
156 static public $splitKeys = [ 'messages' ];
159 * Keys which are loaded automatically by initLanguage()
161 static public $preloadedKeys = [ 'dateFormats', 'namespaceNames' ];
164 * Associative array of cached plural rules. The key is the language code,
165 * the value is an array of plural rules for that language.
167 private $pluralRules = null;
170 * Associative array of cached plural rule types. The key is the language
171 * code, the value is an array of plural rule types for that language. For
172 * example, $pluralRuleTypes['ar'] = ['zero', 'one', 'two', 'few', 'many'].
173 * The index for each rule type matches the index for the rule in
174 * $pluralRules, thus allowing correlation between the two. The reason we
175 * don't just use the type names as the keys in $pluralRules is because
176 * Language::convertPlural applies the rules based on numeric order (or
177 * explicit numeric parameter), not based on the name of the rule type. For
178 * example, {{plural:count|wordform1|wordform2|wordform3}}, rather than
179 * {{plural:count|one=wordform1|two=wordform2|many=wordform3}}.
181 private $pluralRuleTypes = null;
183 private $mergeableKeys = null;
187 * For constructor parameters, see the documentation in DefaultSettings.php
188 * for $wgLocalisationCacheConf.
191 * @throws MWException
193 function __construct( $conf ) {
194 global $wgCacheDirectory;
198 if ( !empty( $conf['storeClass'] ) ) {
199 $storeClass = $conf['storeClass'];
201 switch ( $conf['store'] ) {
204 $storeClass = 'LCStoreCDB';
207 $storeClass = 'LCStoreDB';
210 $storeClass = 'LCStoreStaticArray';
213 if ( !empty( $conf['storeDirectory'] ) ) {
214 $storeClass = 'LCStoreCDB';
216 $cacheDir = $wgCacheDirectory ?
: wfTempDir();
218 $storeConf['directory'] = $cacheDir;
219 $storeClass = 'LCStoreCDB';
221 $storeClass = 'LCStoreDB';
226 throw new MWException(
227 'Please set $wgLocalisationCacheConf[\'store\'] to something sensible.' );
231 wfDebugLog( 'caches', get_class( $this ) . ": using store $storeClass" );
232 if ( !empty( $conf['storeDirectory'] ) ) {
233 $storeConf['directory'] = $conf['storeDirectory'];
236 $this->store
= new $storeClass( $storeConf );
237 foreach ( [ 'manualRecache', 'forceRecache' ] as $var ) {
238 if ( isset( $conf[$var] ) ) {
239 $this->$var = $conf[$var];
245 * Returns true if the given key is mergeable, that is, if it is an associative
246 * array which can be merged through a fallback sequence.
250 public function isMergeableKey( $key ) {
251 if ( $this->mergeableKeys
=== null ) {
252 $this->mergeableKeys
= array_flip( array_merge(
253 self
::$mergeableMapKeys,
254 self
::$mergeableListKeys,
255 self
::$mergeableAliasListKeys,
256 self
::$optionalMergeKeys,
261 return isset( $this->mergeableKeys
[$key] );
267 * Warning: this may be slow for split items (messages), since it will
268 * need to fetch all of the subitems from the cache individually.
269 * @param string $code
273 public function getItem( $code, $key ) {
274 if ( !isset( $this->loadedItems
[$code][$key] ) ) {
275 $this->loadItem( $code, $key );
278 if ( $key === 'fallback' && isset( $this->shallowFallbacks
[$code] ) ) {
279 return $this->shallowFallbacks
[$code];
282 return $this->data
[$code][$key];
286 * Get a subitem, for instance a single message for a given language.
287 * @param string $code
289 * @param string $subkey
292 public function getSubitem( $code, $key, $subkey ) {
293 if ( !isset( $this->loadedSubitems
[$code][$key][$subkey] ) &&
294 !isset( $this->loadedItems
[$code][$key] )
296 $this->loadSubitem( $code, $key, $subkey );
299 if ( isset( $this->data
[$code][$key][$subkey] ) ) {
300 return $this->data
[$code][$key][$subkey];
307 * Get the list of subitem keys for a given item.
309 * This is faster than array_keys($lc->getItem(...)) for the items listed in
312 * Will return null if the item is not found, or false if the item is not an
314 * @param string $code
316 * @return bool|null|string
318 public function getSubitemList( $code, $key ) {
319 if ( in_array( $key, self
::$splitKeys ) ) {
320 return $this->getSubitem( $code, 'list', $key );
322 $item = $this->getItem( $code, $key );
323 if ( is_array( $item ) ) {
324 return array_keys( $item );
332 * Load an item into the cache.
333 * @param string $code
336 protected function loadItem( $code, $key ) {
337 if ( !isset( $this->initialisedLangs
[$code] ) ) {
338 $this->initLanguage( $code );
341 // Check to see if initLanguage() loaded it for us
342 if ( isset( $this->loadedItems
[$code][$key] ) ) {
346 if ( isset( $this->shallowFallbacks
[$code] ) ) {
347 $this->loadItem( $this->shallowFallbacks
[$code], $key );
352 if ( in_array( $key, self
::$splitKeys ) ) {
353 $subkeyList = $this->getSubitem( $code, 'list', $key );
354 foreach ( $subkeyList as $subkey ) {
355 if ( isset( $this->data
[$code][$key][$subkey] ) ) {
358 $this->data
[$code][$key][$subkey] = $this->getSubitem( $code, $key, $subkey );
361 $this->data
[$code][$key] = $this->store
->get( $code, $key );
364 $this->loadedItems
[$code][$key] = true;
368 * Load a subitem into the cache
369 * @param string $code
371 * @param string $subkey
373 protected function loadSubitem( $code, $key, $subkey ) {
374 if ( !in_array( $key, self
::$splitKeys ) ) {
375 $this->loadItem( $code, $key );
380 if ( !isset( $this->initialisedLangs
[$code] ) ) {
381 $this->initLanguage( $code );
384 // Check to see if initLanguage() loaded it for us
385 if ( isset( $this->loadedItems
[$code][$key] ) ||
386 isset( $this->loadedSubitems
[$code][$key][$subkey] )
391 if ( isset( $this->shallowFallbacks
[$code] ) ) {
392 $this->loadSubitem( $this->shallowFallbacks
[$code], $key, $subkey );
397 $value = $this->store
->get( $code, "$key:$subkey" );
398 $this->data
[$code][$key][$subkey] = $value;
399 $this->loadedSubitems
[$code][$key][$subkey] = true;
403 * Returns true if the cache identified by $code is missing or expired.
405 * @param string $code
409 public function isExpired( $code ) {
410 if ( $this->forceRecache
&& !isset( $this->recachedLangs
[$code] ) ) {
411 wfDebug( __METHOD__
. "($code): forced reload\n" );
416 $deps = $this->store
->get( $code, 'deps' );
417 $keys = $this->store
->get( $code, 'list' );
418 $preload = $this->store
->get( $code, 'preload' );
419 // Different keys may expire separately for some stores
420 if ( $deps === null ||
$keys === null ||
$preload === null ) {
421 wfDebug( __METHOD__
. "($code): cache missing, need to make one\n" );
426 foreach ( $deps as $dep ) {
427 // Because we're unserializing stuff from cache, we
428 // could receive objects of classes that don't exist
429 // anymore (e.g. uninstalled extensions)
430 // When this happens, always expire the cache
431 if ( !$dep instanceof CacheDependency ||
$dep->isExpired() ) {
432 wfDebug( __METHOD__
. "($code): cache for $code expired due to " .
433 get_class( $dep ) . "\n" );
443 * Initialise a language in this object. Rebuild the cache if necessary.
444 * @param string $code
445 * @throws MWException
447 protected function initLanguage( $code ) {
448 if ( isset( $this->initialisedLangs
[$code] ) ) {
452 $this->initialisedLangs
[$code] = true;
454 # If the code is of the wrong form for a Messages*.php file, do a shallow fallback
455 if ( !Language
::isValidBuiltInCode( $code ) ) {
456 $this->initShallowFallback( $code, 'en' );
461 # Recache the data if necessary
462 if ( !$this->manualRecache
&& $this->isExpired( $code ) ) {
463 if ( Language
::isSupportedLanguage( $code ) ) {
464 $this->recache( $code );
465 } elseif ( $code === 'en' ) {
466 throw new MWException( 'MessagesEn.php is missing.' );
468 $this->initShallowFallback( $code, 'en' );
475 $preload = $this->getItem( $code, 'preload' );
476 if ( $preload === null ) {
477 if ( $this->manualRecache
) {
478 // No Messages*.php file. Do shallow fallback to en.
479 if ( $code === 'en' ) {
480 throw new MWException( 'No localisation cache found for English. ' .
481 'Please run maintenance/rebuildLocalisationCache.php.' );
483 $this->initShallowFallback( $code, 'en' );
487 throw new MWException( 'Invalid or missing localisation cache.' );
490 $this->data
[$code] = $preload;
491 foreach ( $preload as $key => $item ) {
492 if ( in_array( $key, self
::$splitKeys ) ) {
493 foreach ( $item as $subkey => $subitem ) {
494 $this->loadedSubitems
[$code][$key][$subkey] = true;
497 $this->loadedItems
[$code][$key] = true;
503 * Create a fallback from one language to another, without creating a
504 * complete persistent cache.
505 * @param string $primaryCode
506 * @param string $fallbackCode
508 public function initShallowFallback( $primaryCode, $fallbackCode ) {
509 $this->data
[$primaryCode] =& $this->data
[$fallbackCode];
510 $this->loadedItems
[$primaryCode] =& $this->loadedItems
[$fallbackCode];
511 $this->loadedSubitems
[$primaryCode] =& $this->loadedSubitems
[$fallbackCode];
512 $this->shallowFallbacks
[$primaryCode] = $fallbackCode;
516 * Read a PHP file containing localisation data.
517 * @param string $_fileName
518 * @param string $_fileType
519 * @throws MWException
522 protected function readPHPFile( $_fileName, $_fileType ) {
523 // Disable APC caching
524 MediaWiki\
suppressWarnings();
525 $_apcEnabled = ini_set( 'apc.cache_by_default', '0' );
526 MediaWiki\restoreWarnings
();
530 MediaWiki\
suppressWarnings();
531 ini_set( 'apc.cache_by_default', $_apcEnabled );
532 MediaWiki\restoreWarnings
();
534 if ( $_fileType == 'core' ||
$_fileType == 'extension' ) {
535 $data = compact( self
::$allKeys );
536 } elseif ( $_fileType == 'aliases' ) {
537 $data = compact( 'aliases' );
539 throw new MWException( __METHOD__
. ": Invalid file type: $_fileType" );
546 * Read a JSON file containing localisation messages.
547 * @param string $fileName Name of file to read
548 * @throws MWException If there is a syntax error in the JSON file
549 * @return array Array with a 'messages' key, or empty array if the file doesn't exist
551 public function readJSONFile( $fileName ) {
553 if ( !is_readable( $fileName ) ) {
557 $json = file_get_contents( $fileName );
558 if ( $json === false ) {
562 $data = FormatJson
::decode( $json, true );
563 if ( $data === null ) {
565 throw new MWException( __METHOD__
. ": Invalid JSON file: $fileName" );
568 // Remove keys starting with '@', they're reserved for metadata and non-message data
569 foreach ( $data as $key => $unused ) {
570 if ( $key === '' ||
$key[0] === '@' ) {
571 unset( $data[$key] );
575 // The JSON format only supports messages, none of the other variables, so wrap the data
576 return [ 'messages' => $data ];
580 * Get the compiled plural rules for a given language from the XML files.
582 * @param string $code
585 public function getCompiledPluralRules( $code ) {
586 $rules = $this->getPluralRules( $code );
587 if ( $rules === null ) {
591 $compiledRules = Evaluator
::compile( $rules );
592 } catch ( CLDRPluralRuleError
$e ) {
593 wfDebugLog( 'l10n', $e->getMessage() );
598 return $compiledRules;
602 * Get the plural rules for a given language from the XML files.
605 * @param string $code
608 public function getPluralRules( $code ) {
609 if ( $this->pluralRules
=== null ) {
610 $this->loadPluralFiles();
612 if ( !isset( $this->pluralRules
[$code] ) ) {
615 return $this->pluralRules
[$code];
620 * Get the plural rule types for a given language from the XML files.
623 * @param string $code
626 public function getPluralRuleTypes( $code ) {
627 if ( $this->pluralRuleTypes
=== null ) {
628 $this->loadPluralFiles();
630 if ( !isset( $this->pluralRuleTypes
[$code] ) ) {
633 return $this->pluralRuleTypes
[$code];
638 * Load the plural XML files.
640 protected function loadPluralFiles() {
642 $cldrPlural = "$IP/languages/data/plurals.xml";
643 $mwPlural = "$IP/languages/data/plurals-mediawiki.xml";
644 // Load CLDR plural rules
645 $this->loadPluralFile( $cldrPlural );
646 if ( file_exists( $mwPlural ) ) {
647 // Override or extend
648 $this->loadPluralFile( $mwPlural );
653 * Load a plural XML file with the given filename, compile the relevant
654 * rules, and save the compiled rules in a process-local cache.
656 * @param string $fileName
657 * @throws MWException
659 protected function loadPluralFile( $fileName ) {
660 // Use file_get_contents instead of DOMDocument::load (T58439)
661 $xml = file_get_contents( $fileName );
663 throw new MWException( "Unable to read plurals file $fileName" );
665 $doc = new DOMDocument
;
666 $doc->loadXML( $xml );
667 $rulesets = $doc->getElementsByTagName( "pluralRules" );
668 foreach ( $rulesets as $ruleset ) {
669 $codes = $ruleset->getAttribute( 'locales' );
672 $ruleElements = $ruleset->getElementsByTagName( "pluralRule" );
673 foreach ( $ruleElements as $elt ) {
674 $ruleType = $elt->getAttribute( 'count' );
675 if ( $ruleType === 'other' ) {
676 // Don't record "other" rules, which have an empty condition
679 $rules[] = $elt->nodeValue
;
680 $ruleTypes[] = $ruleType;
682 foreach ( explode( ' ', $codes ) as $code ) {
683 $this->pluralRules
[$code] = $rules;
684 $this->pluralRuleTypes
[$code] = $ruleTypes;
690 * Read the data from the source files for a given language, and register
691 * the relevant dependencies in the $deps array. If the localisation
692 * exists, the data array is returned, otherwise false is returned.
694 * @param string $code
698 protected function readSourceFilesAndRegisterDeps( $code, &$deps ) {
701 // This reads in the PHP i18n file with non-messages l10n data
702 $fileName = Language
::getMessagesFileName( $code );
703 if ( !file_exists( $fileName ) ) {
706 $deps[] = new FileDependency( $fileName );
707 $data = $this->readPHPFile( $fileName, 'core' );
710 # Load CLDR plural rules for JavaScript
711 $data['pluralRules'] = $this->getPluralRules( $code );
713 $data['compiledPluralRules'] = $this->getCompiledPluralRules( $code );
714 # Load plural rule types
715 $data['pluralRuleTypes'] = $this->getPluralRuleTypes( $code );
717 $deps['plurals'] = new FileDependency( "$IP/languages/data/plurals.xml" );
718 $deps['plurals-mw'] = new FileDependency( "$IP/languages/data/plurals-mediawiki.xml" );
724 * Merge two localisation values, a primary and a fallback, overwriting the
725 * primary value in place.
727 * @param mixed $value
728 * @param mixed $fallbackValue
730 protected function mergeItem( $key, &$value, $fallbackValue ) {
731 if ( !is_null( $value ) ) {
732 if ( !is_null( $fallbackValue ) ) {
733 if ( in_array( $key, self
::$mergeableMapKeys ) ) {
734 $value = $value +
$fallbackValue;
735 } elseif ( in_array( $key, self
::$mergeableListKeys ) ) {
736 $value = array_unique( array_merge( $fallbackValue, $value ) );
737 } elseif ( in_array( $key, self
::$mergeableAliasListKeys ) ) {
738 $value = array_merge_recursive( $value, $fallbackValue );
739 } elseif ( in_array( $key, self
::$optionalMergeKeys ) ) {
740 if ( !empty( $value['inherit'] ) ) {
741 $value = array_merge( $fallbackValue, $value );
744 if ( isset( $value['inherit'] ) ) {
745 unset( $value['inherit'] );
747 } elseif ( in_array( $key, self
::$magicWordKeys ) ) {
748 $this->mergeMagicWords( $value, $fallbackValue );
752 $value = $fallbackValue;
757 * @param mixed $value
758 * @param mixed $fallbackValue
760 protected function mergeMagicWords( &$value, $fallbackValue ) {
761 foreach ( $fallbackValue as $magicName => $fallbackInfo ) {
762 if ( !isset( $value[$magicName] ) ) {
763 $value[$magicName] = $fallbackInfo;
765 $oldSynonyms = array_slice( $fallbackInfo, 1 );
766 $newSynonyms = array_slice( $value[$magicName], 1 );
767 $synonyms = array_values( array_unique( array_merge(
768 $newSynonyms, $oldSynonyms ) ) );
769 $value[$magicName] = array_merge( [ $fallbackInfo[0] ], $synonyms );
775 * Given an array mapping language code to localisation value, such as is
776 * found in extension *.i18n.php files, iterate through a fallback sequence
777 * to merge the given data with an existing primary value.
779 * Returns true if any data from the extension array was used, false
781 * @param array $codeSequence
783 * @param mixed $value
784 * @param mixed $fallbackValue
787 protected function mergeExtensionItem( $codeSequence, $key, &$value, $fallbackValue ) {
789 foreach ( $codeSequence as $code ) {
790 if ( isset( $fallbackValue[$code] ) ) {
791 $this->mergeItem( $key, $value, $fallbackValue[$code] );
800 * Gets the combined list of messages dirs from
801 * core and extensions
806 public function getMessagesDirs() {
809 $config = MediaWikiServices
::getInstance()->getMainConfig();
810 $messagesDirs = $config->get( 'MessagesDirs' );
812 'core' => "$IP/languages/i18n",
813 'api' => "$IP/includes/api/i18n",
814 'oojs-ui' => "$IP/resources/lib/oojs-ui/i18n",
819 * Load localisation data for a given language for both core and extensions
820 * and save it to the persistent cache store and the process cache
821 * @param string $code
822 * @throws MWException
824 public function recache( $code ) {
825 global $wgExtensionMessagesFiles;
828 throw new MWException( "Invalid language code requested" );
830 $this->recachedLangs
[$code] = true;
833 $initialData = array_fill_keys( self
::$allKeys, null );
834 $coreData = $initialData;
837 # Load the primary localisation from the source file
838 $data = $this->readSourceFilesAndRegisterDeps( $code, $deps );
839 if ( $data === false ) {
840 wfDebug( __METHOD__
. ": no localisation file for $code, using fallback to en\n" );
841 $coreData['fallback'] = 'en';
843 wfDebug( __METHOD__
. ": got localisation for $code from source\n" );
845 # Merge primary localisation
846 foreach ( $data as $key => $value ) {
847 $this->mergeItem( $key, $coreData[$key], $value );
851 # Fill in the fallback if it's not there already
852 if ( is_null( $coreData['fallback'] ) ) {
853 $coreData['fallback'] = $code === 'en' ?
false : 'en';
855 if ( $coreData['fallback'] === false ) {
856 $coreData['fallbackSequence'] = [];
858 $coreData['fallbackSequence'] = array_map( 'trim', explode( ',', $coreData['fallback'] ) );
859 $len = count( $coreData['fallbackSequence'] );
861 # Ensure that the sequence ends at en
862 if ( $coreData['fallbackSequence'][$len - 1] !== 'en' ) {
863 $coreData['fallbackSequence'][] = 'en';
867 $codeSequence = array_merge( [ $code ], $coreData['fallbackSequence'] );
868 $messageDirs = $this->getMessagesDirs();
870 # Load non-JSON localisation data for extensions
871 $extensionData = array_fill_keys( $codeSequence, $initialData );
872 foreach ( $wgExtensionMessagesFiles as $extension => $fileName ) {
873 if ( isset( $messageDirs[$extension] ) ) {
874 # This extension has JSON message data; skip the PHP shim
878 $data = $this->readPHPFile( $fileName, 'extension' );
881 foreach ( $data as $key => $item ) {
882 foreach ( $codeSequence as $csCode ) {
883 if ( isset( $item[$csCode] ) ) {
884 $this->mergeItem( $key, $extensionData[$csCode][$key], $item[$csCode] );
891 $deps[] = new FileDependency( $fileName );
895 # Load the localisation data for each fallback, then merge it into the full array
896 $allData = $initialData;
897 foreach ( $codeSequence as $csCode ) {
898 $csData = $initialData;
900 # Load core messages and the extension localisations.
901 foreach ( $messageDirs as $dirs ) {
902 foreach ( (array)$dirs as $dir ) {
903 $fileName = "$dir/$csCode.json";
904 $data = $this->readJSONFile( $fileName );
906 foreach ( $data as $key => $item ) {
907 $this->mergeItem( $key, $csData[$key], $item );
910 $deps[] = new FileDependency( $fileName );
914 # Merge non-JSON extension data
915 if ( isset( $extensionData[$csCode] ) ) {
916 foreach ( $extensionData[$csCode] as $key => $item ) {
917 $this->mergeItem( $key, $csData[$key], $item );
921 if ( $csCode === $code ) {
922 # Merge core data into extension data
923 foreach ( $coreData as $key => $item ) {
924 $this->mergeItem( $key, $csData[$key], $item );
927 # Load the secondary localisation from the source file to
928 # avoid infinite cycles on cyclic fallbacks
929 $fbData = $this->readSourceFilesAndRegisterDeps( $csCode, $deps );
930 if ( $fbData !== false ) {
931 # Only merge the keys that make sense to merge
932 foreach ( self
::$allKeys as $key ) {
933 if ( !isset( $fbData[$key] ) ) {
937 if ( is_null( $coreData[$key] ) ||
$this->isMergeableKey( $key ) ) {
938 $this->mergeItem( $key, $csData[$key], $fbData[$key] );
944 # Allow extensions an opportunity to adjust the data for this
946 Hooks
::run( 'LocalisationCacheRecacheFallback', [ $this, $csCode, &$csData ] );
948 # Merge the data for this fallback into the final array
949 if ( $csCode === $code ) {
952 foreach ( self
::$allKeys as $key ) {
953 if ( !isset( $csData[$key] ) ) {
957 if ( is_null( $allData[$key] ) ||
$this->isMergeableKey( $key ) ) {
958 $this->mergeItem( $key, $allData[$key], $csData[$key] );
964 # Add cache dependencies for any referenced globals
965 $deps['wgExtensionMessagesFiles'] = new GlobalDependency( 'wgExtensionMessagesFiles' );
966 // The 'MessagesDirs' config setting is used in LocalisationCache::getMessagesDirs().
967 // We use the key 'wgMessagesDirs' for historical reasons.
968 $deps['wgMessagesDirs'] = new MainConfigDependency( 'MessagesDirs' );
969 $deps['version'] = new ConstantDependency( 'LocalisationCache::VERSION' );
971 # Add dependencies to the cache entry
972 $allData['deps'] = $deps;
974 # Replace spaces with underscores in namespace names
975 $allData['namespaceNames'] = str_replace( ' ', '_', $allData['namespaceNames'] );
977 # And do the same for special page aliases. $page is an array.
978 foreach ( $allData['specialPageAliases'] as &$page ) {
979 $page = str_replace( ' ', '_', $page );
981 # Decouple the reference to prevent accidental damage
984 # If there were no plural rules, return an empty array
985 if ( $allData['pluralRules'] === null ) {
986 $allData['pluralRules'] = [];
988 if ( $allData['compiledPluralRules'] === null ) {
989 $allData['compiledPluralRules'] = [];
991 # If there were no plural rule types, return an empty array
992 if ( $allData['pluralRuleTypes'] === null ) {
993 $allData['pluralRuleTypes'] = [];
997 $allData['list'] = [];
998 foreach ( self
::$splitKeys as $key ) {
999 $allData['list'][$key] = array_keys( $allData[$key] );
1003 Hooks
::run( 'LocalisationCacheRecache', [ $this, $code, &$allData, &$purgeBlobs ] );
1005 if ( is_null( $allData['namespaceNames'] ) ) {
1006 throw new MWException( __METHOD__
. ': Localisation data failed sanity check! ' .
1007 'Check that your languages/messages/MessagesEn.php file is intact.' );
1010 # Set the preload key
1011 $allData['preload'] = $this->buildPreload( $allData );
1013 # Save to the process cache and register the items loaded
1014 $this->data
[$code] = $allData;
1015 foreach ( $allData as $key => $item ) {
1016 $this->loadedItems
[$code][$key] = true;
1019 # Save to the persistent cache
1020 $this->store
->startWrite( $code );
1021 foreach ( $allData as $key => $value ) {
1022 if ( in_array( $key, self
::$splitKeys ) ) {
1023 foreach ( $value as $subkey => $subvalue ) {
1024 $this->store
->set( "$key:$subkey", $subvalue );
1027 $this->store
->set( $key, $value );
1030 $this->store
->finishWrite();
1032 # Clear out the MessageBlobStore
1033 # HACK: If using a null (i.e. disabled) storage backend, we
1034 # can't write to the MessageBlobStore either
1035 if ( $purgeBlobs && !$this->store
instanceof LCStoreNull
) {
1036 $blobStore = new MessageBlobStore();
1037 $blobStore->clear();
1043 * Build the preload item from the given pre-cache data.
1045 * The preload item will be loaded automatically, improving performance
1046 * for the commonly-requested items it contains.
1047 * @param array $data
1050 protected function buildPreload( $data ) {
1051 $preload = [ 'messages' => [] ];
1052 foreach ( self
::$preloadedKeys as $key ) {
1053 $preload[$key] = $data[$key];
1056 foreach ( $data['preloadedMessages'] as $subkey ) {
1057 if ( isset( $data['messages'][$subkey] ) ) {
1058 $subitem = $data['messages'][$subkey];
1062 $preload['messages'][$subkey] = $subitem;
1069 * Unload the data for a given language from the object cache.
1070 * Reduces memory usage.
1071 * @param string $code
1073 public function unload( $code ) {
1074 unset( $this->data
[$code] );
1075 unset( $this->loadedItems
[$code] );
1076 unset( $this->loadedSubitems
[$code] );
1077 unset( $this->initialisedLangs
[$code] );
1078 unset( $this->shallowFallbacks
[$code] );
1080 foreach ( $this->shallowFallbacks
as $shallowCode => $fbCode ) {
1081 if ( $fbCode === $code ) {
1082 $this->unload( $shallowCode );
1090 public function unloadAll() {
1091 foreach ( $this->initialisedLangs
as $lang => $unused ) {
1092 $this->unload( $lang );
1097 * Disable the storage backend
1099 public function disableBackend() {
1100 $this->store
= new LCStoreNull
;
1101 $this->manualRecache
= false;