MediaWiki REL1_28
LocalisationCache.php
Go to the documentation of this file.
1<?php
23use Cdb\Reader as CdbReader;
24use Cdb\Writer as CdbWriter;
25use CLDRPluralRuleParser\Evaluator;
26use CLDRPluralRuleParser\Error as CLDRPluralRuleError;
28
42 const VERSION = 4;
43
45 private $conf;
46
52 private $manualRecache = false;
53
57 private $forceRecache = false;
58
65 protected $data = [];
66
72 private $store;
73
81 private $loadedItems = [];
82
87 private $loadedSubitems = [];
88
94 private $initialisedLangs = [];
95
101 private $shallowFallbacks = [];
102
106 private $recachedLangs = [];
107
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',
120 ];
121
126 static public $mergeableMapKeys = [ 'messages', 'namespaceNames',
127 'namespaceAliases', 'dateFormats', 'imageFiles', 'preloadedMessages'
128 ];
129
133 static public $mergeableListKeys = [ 'extraUserToggles' ];
134
139 static public $mergeableAliasListKeys = [ 'specialPageAliases' ];
140
146 static public $optionalMergeKeys = [ 'bookstoreList' ];
147
151 static public $magicWordKeys = [ 'magicWords' ];
152
156 static public $splitKeys = [ 'messages' ];
157
161 static public $preloadedKeys = [ 'dateFormats', 'namespaceNames' ];
162
167 private $pluralRules = null;
168
181 private $pluralRuleTypes = null;
182
183 private $mergeableKeys = null;
184
193 function __construct( $conf ) {
195
196 $this->conf = $conf;
197 $storeConf = [];
198 if ( !empty( $conf['storeClass'] ) ) {
199 $storeClass = $conf['storeClass'];
200 } else {
201 switch ( $conf['store'] ) {
202 case 'files':
203 case 'file':
204 $storeClass = 'LCStoreCDB';
205 break;
206 case 'db':
207 $storeClass = 'LCStoreDB';
208 break;
209 case 'array':
210 $storeClass = 'LCStoreStaticArray';
211 break;
212 case 'detect':
213 if ( !empty( $conf['storeDirectory'] ) ) {
214 $storeClass = 'LCStoreCDB';
215 } elseif ( $wgCacheDirectory ) {
216 $storeConf['directory'] = $wgCacheDirectory;
217 $storeClass = 'LCStoreCDB';
218 } else {
219 $storeClass = 'LCStoreDB';
220 }
221 break;
222 default:
223 throw new MWException(
224 'Please set $wgLocalisationCacheConf[\'store\'] to something sensible.'
225 );
226 }
227 }
228
229 wfDebugLog( 'caches', get_class( $this ) . ": using store $storeClass" );
230 if ( !empty( $conf['storeDirectory'] ) ) {
231 $storeConf['directory'] = $conf['storeDirectory'];
232 }
233
234 $this->store = new $storeClass( $storeConf );
235 foreach ( [ 'manualRecache', 'forceRecache' ] as $var ) {
236 if ( isset( $conf[$var] ) ) {
237 $this->$var = $conf[$var];
238 }
239 }
240 }
241
248 public function isMergeableKey( $key ) {
249 if ( $this->mergeableKeys === null ) {
250 $this->mergeableKeys = array_flip( array_merge(
251 self::$mergeableMapKeys,
252 self::$mergeableListKeys,
253 self::$mergeableAliasListKeys,
254 self::$optionalMergeKeys,
255 self::$magicWordKeys
256 ) );
257 }
258
259 return isset( $this->mergeableKeys[$key] );
260 }
261
271 public function getItem( $code, $key ) {
272 if ( !isset( $this->loadedItems[$code][$key] ) ) {
273 $this->loadItem( $code, $key );
274 }
275
276 if ( $key === 'fallback' && isset( $this->shallowFallbacks[$code] ) ) {
277 return $this->shallowFallbacks[$code];
278 }
279
280 return $this->data[$code][$key];
281 }
282
290 public function getSubitem( $code, $key, $subkey ) {
291 if ( !isset( $this->loadedSubitems[$code][$key][$subkey] ) &&
292 !isset( $this->loadedItems[$code][$key] )
293 ) {
294 $this->loadSubitem( $code, $key, $subkey );
295 }
296
297 if ( isset( $this->data[$code][$key][$subkey] ) ) {
298 return $this->data[$code][$key][$subkey];
299 } else {
300 return null;
301 }
302 }
303
316 public function getSubitemList( $code, $key ) {
317 if ( in_array( $key, self::$splitKeys ) ) {
318 return $this->getSubitem( $code, 'list', $key );
319 } else {
320 $item = $this->getItem( $code, $key );
321 if ( is_array( $item ) ) {
322 return array_keys( $item );
323 } else {
324 return false;
325 }
326 }
327 }
328
334 protected function loadItem( $code, $key ) {
335 if ( !isset( $this->initialisedLangs[$code] ) ) {
336 $this->initLanguage( $code );
337 }
338
339 // Check to see if initLanguage() loaded it for us
340 if ( isset( $this->loadedItems[$code][$key] ) ) {
341 return;
342 }
343
344 if ( isset( $this->shallowFallbacks[$code] ) ) {
345 $this->loadItem( $this->shallowFallbacks[$code], $key );
346
347 return;
348 }
349
350 if ( in_array( $key, self::$splitKeys ) ) {
351 $subkeyList = $this->getSubitem( $code, 'list', $key );
352 foreach ( $subkeyList as $subkey ) {
353 if ( isset( $this->data[$code][$key][$subkey] ) ) {
354 continue;
355 }
356 $this->data[$code][$key][$subkey] = $this->getSubitem( $code, $key, $subkey );
357 }
358 } else {
359 $this->data[$code][$key] = $this->store->get( $code, $key );
360 }
361
362 $this->loadedItems[$code][$key] = true;
363 }
364
371 protected function loadSubitem( $code, $key, $subkey ) {
372 if ( !in_array( $key, self::$splitKeys ) ) {
373 $this->loadItem( $code, $key );
374
375 return;
376 }
377
378 if ( !isset( $this->initialisedLangs[$code] ) ) {
379 $this->initLanguage( $code );
380 }
381
382 // Check to see if initLanguage() loaded it for us
383 if ( isset( $this->loadedItems[$code][$key] ) ||
384 isset( $this->loadedSubitems[$code][$key][$subkey] )
385 ) {
386 return;
387 }
388
389 if ( isset( $this->shallowFallbacks[$code] ) ) {
390 $this->loadSubitem( $this->shallowFallbacks[$code], $key, $subkey );
391
392 return;
393 }
394
395 $value = $this->store->get( $code, "$key:$subkey" );
396 $this->data[$code][$key][$subkey] = $value;
397 $this->loadedSubitems[$code][$key][$subkey] = true;
398 }
399
407 public function isExpired( $code ) {
408 if ( $this->forceRecache && !isset( $this->recachedLangs[$code] ) ) {
409 wfDebug( __METHOD__ . "($code): forced reload\n" );
410
411 return true;
412 }
413
414 $deps = $this->store->get( $code, 'deps' );
415 $keys = $this->store->get( $code, 'list' );
416 $preload = $this->store->get( $code, 'preload' );
417 // Different keys may expire separately for some stores
418 if ( $deps === null || $keys === null || $preload === null ) {
419 wfDebug( __METHOD__ . "($code): cache missing, need to make one\n" );
420
421 return true;
422 }
423
424 foreach ( $deps as $dep ) {
425 // Because we're unserializing stuff from cache, we
426 // could receive objects of classes that don't exist
427 // anymore (e.g. uninstalled extensions)
428 // When this happens, always expire the cache
429 if ( !$dep instanceof CacheDependency || $dep->isExpired() ) {
430 wfDebug( __METHOD__ . "($code): cache for $code expired due to " .
431 get_class( $dep ) . "\n" );
432
433 return true;
434 }
435 }
436
437 return false;
438 }
439
445 protected function initLanguage( $code ) {
446 if ( isset( $this->initialisedLangs[$code] ) ) {
447 return;
448 }
449
450 $this->initialisedLangs[$code] = true;
451
452 # If the code is of the wrong form for a Messages*.php file, do a shallow fallback
453 if ( !Language::isValidBuiltInCode( $code ) ) {
454 $this->initShallowFallback( $code, 'en' );
455
456 return;
457 }
458
459 # Recache the data if necessary
460 if ( !$this->manualRecache && $this->isExpired( $code ) ) {
461 if ( Language::isSupportedLanguage( $code ) ) {
462 $this->recache( $code );
463 } elseif ( $code === 'en' ) {
464 throw new MWException( 'MessagesEn.php is missing.' );
465 } else {
466 $this->initShallowFallback( $code, 'en' );
467 }
468
469 return;
470 }
471
472 # Preload some stuff
473 $preload = $this->getItem( $code, 'preload' );
474 if ( $preload === null ) {
475 if ( $this->manualRecache ) {
476 // No Messages*.php file. Do shallow fallback to en.
477 if ( $code === 'en' ) {
478 throw new MWException( 'No localisation cache found for English. ' .
479 'Please run maintenance/rebuildLocalisationCache.php.' );
480 }
481 $this->initShallowFallback( $code, 'en' );
482
483 return;
484 } else {
485 throw new MWException( 'Invalid or missing localisation cache.' );
486 }
487 }
488 $this->data[$code] = $preload;
489 foreach ( $preload as $key => $item ) {
490 if ( in_array( $key, self::$splitKeys ) ) {
491 foreach ( $item as $subkey => $subitem ) {
492 $this->loadedSubitems[$code][$key][$subkey] = true;
493 }
494 } else {
495 $this->loadedItems[$code][$key] = true;
496 }
497 }
498 }
499
506 public function initShallowFallback( $primaryCode, $fallbackCode ) {
507 $this->data[$primaryCode] =& $this->data[$fallbackCode];
508 $this->loadedItems[$primaryCode] =& $this->loadedItems[$fallbackCode];
509 $this->loadedSubitems[$primaryCode] =& $this->loadedSubitems[$fallbackCode];
510 $this->shallowFallbacks[$primaryCode] = $fallbackCode;
511 }
512
520 protected function readPHPFile( $_fileName, $_fileType ) {
521 // Disable APC caching
522 MediaWiki\suppressWarnings();
523 $_apcEnabled = ini_set( 'apc.cache_by_default', '0' );
524 MediaWiki\restoreWarnings();
525
526 include $_fileName;
527
528 MediaWiki\suppressWarnings();
529 ini_set( 'apc.cache_by_default', $_apcEnabled );
530 MediaWiki\restoreWarnings();
531
532 if ( $_fileType == 'core' || $_fileType == 'extension' ) {
533 $data = compact( self::$allKeys );
534 } elseif ( $_fileType == 'aliases' ) {
535 $data = compact( 'aliases' );
536 } else {
537 throw new MWException( __METHOD__ . ": Invalid file type: $_fileType" );
538 }
539
540 return $data;
541 }
542
549 public function readJSONFile( $fileName ) {
550
551 if ( !is_readable( $fileName ) ) {
552 return [];
553 }
554
555 $json = file_get_contents( $fileName );
556 if ( $json === false ) {
557 return [];
558 }
559
560 $data = FormatJson::decode( $json, true );
561 if ( $data === null ) {
562
563 throw new MWException( __METHOD__ . ": Invalid JSON file: $fileName" );
564 }
565
566 // Remove keys starting with '@', they're reserved for metadata and non-message data
567 foreach ( $data as $key => $unused ) {
568 if ( $key === '' || $key[0] === '@' ) {
569 unset( $data[$key] );
570 }
571 }
572
573 // The JSON format only supports messages, none of the other variables, so wrap the data
574 return [ 'messages' => $data ];
575 }
576
583 public function getCompiledPluralRules( $code ) {
584 $rules = $this->getPluralRules( $code );
585 if ( $rules === null ) {
586 return null;
587 }
588 try {
589 $compiledRules = Evaluator::compile( $rules );
590 } catch ( CLDRPluralRuleError $e ) {
591 wfDebugLog( 'l10n', $e->getMessage() );
592
593 return [];
594 }
595
596 return $compiledRules;
597 }
598
606 public function getPluralRules( $code ) {
607 if ( $this->pluralRules === null ) {
608 $this->loadPluralFiles();
609 }
610 if ( !isset( $this->pluralRules[$code] ) ) {
611 return null;
612 } else {
613 return $this->pluralRules[$code];
614 }
615 }
616
624 public function getPluralRuleTypes( $code ) {
625 if ( $this->pluralRuleTypes === null ) {
626 $this->loadPluralFiles();
627 }
628 if ( !isset( $this->pluralRuleTypes[$code] ) ) {
629 return null;
630 } else {
631 return $this->pluralRuleTypes[$code];
632 }
633 }
634
638 protected function loadPluralFiles() {
639 global $IP;
640 $cldrPlural = "$IP/languages/data/plurals.xml";
641 $mwPlural = "$IP/languages/data/plurals-mediawiki.xml";
642 // Load CLDR plural rules
643 $this->loadPluralFile( $cldrPlural );
644 if ( file_exists( $mwPlural ) ) {
645 // Override or extend
646 $this->loadPluralFile( $mwPlural );
647 }
648 }
649
657 protected function loadPluralFile( $fileName ) {
658 // Use file_get_contents instead of DOMDocument::load (T58439)
659 $xml = file_get_contents( $fileName );
660 if ( !$xml ) {
661 throw new MWException( "Unable to read plurals file $fileName" );
662 }
663 $doc = new DOMDocument;
664 $doc->loadXML( $xml );
665 $rulesets = $doc->getElementsByTagName( "pluralRules" );
666 foreach ( $rulesets as $ruleset ) {
667 $codes = $ruleset->getAttribute( 'locales' );
668 $rules = [];
669 $ruleTypes = [];
670 $ruleElements = $ruleset->getElementsByTagName( "pluralRule" );
671 foreach ( $ruleElements as $elt ) {
672 $ruleType = $elt->getAttribute( 'count' );
673 if ( $ruleType === 'other' ) {
674 // Don't record "other" rules, which have an empty condition
675 continue;
676 }
677 $rules[] = $elt->nodeValue;
678 $ruleTypes[] = $ruleType;
679 }
680 foreach ( explode( ' ', $codes ) as $code ) {
681 $this->pluralRules[$code] = $rules;
682 $this->pluralRuleTypes[$code] = $ruleTypes;
683 }
684 }
685 }
686
696 protected function readSourceFilesAndRegisterDeps( $code, &$deps ) {
697 global $IP;
698
699 // This reads in the PHP i18n file with non-messages l10n data
700 $fileName = Language::getMessagesFileName( $code );
701 if ( !file_exists( $fileName ) ) {
702 $data = [];
703 } else {
704 $deps[] = new FileDependency( $fileName );
705 $data = $this->readPHPFile( $fileName, 'core' );
706 }
707
708 # Load CLDR plural rules for JavaScript
709 $data['pluralRules'] = $this->getPluralRules( $code );
710 # And for PHP
711 $data['compiledPluralRules'] = $this->getCompiledPluralRules( $code );
712 # Load plural rule types
713 $data['pluralRuleTypes'] = $this->getPluralRuleTypes( $code );
714
715 $deps['plurals'] = new FileDependency( "$IP/languages/data/plurals.xml" );
716 $deps['plurals-mw'] = new FileDependency( "$IP/languages/data/plurals-mediawiki.xml" );
717
718 return $data;
719 }
720
728 protected function mergeItem( $key, &$value, $fallbackValue ) {
729 if ( !is_null( $value ) ) {
730 if ( !is_null( $fallbackValue ) ) {
731 if ( in_array( $key, self::$mergeableMapKeys ) ) {
732 $value = $value + $fallbackValue;
733 } elseif ( in_array( $key, self::$mergeableListKeys ) ) {
734 $value = array_unique( array_merge( $fallbackValue, $value ) );
735 } elseif ( in_array( $key, self::$mergeableAliasListKeys ) ) {
736 $value = array_merge_recursive( $value, $fallbackValue );
737 } elseif ( in_array( $key, self::$optionalMergeKeys ) ) {
738 if ( !empty( $value['inherit'] ) ) {
739 $value = array_merge( $fallbackValue, $value );
740 }
741
742 if ( isset( $value['inherit'] ) ) {
743 unset( $value['inherit'] );
744 }
745 } elseif ( in_array( $key, self::$magicWordKeys ) ) {
746 $this->mergeMagicWords( $value, $fallbackValue );
747 }
748 }
749 } else {
750 $value = $fallbackValue;
751 }
752 }
753
758 protected function mergeMagicWords( &$value, $fallbackValue ) {
759 foreach ( $fallbackValue as $magicName => $fallbackInfo ) {
760 if ( !isset( $value[$magicName] ) ) {
761 $value[$magicName] = $fallbackInfo;
762 } else {
763 $oldSynonyms = array_slice( $fallbackInfo, 1 );
764 $newSynonyms = array_slice( $value[$magicName], 1 );
765 $synonyms = array_values( array_unique( array_merge(
766 $newSynonyms, $oldSynonyms ) ) );
767 $value[$magicName] = array_merge( [ $fallbackInfo[0] ], $synonyms );
768 }
769 }
770 }
771
785 protected function mergeExtensionItem( $codeSequence, $key, &$value, $fallbackValue ) {
786 $used = false;
787 foreach ( $codeSequence as $code ) {
788 if ( isset( $fallbackValue[$code] ) ) {
789 $this->mergeItem( $key, $value, $fallbackValue[$code] );
790 $used = true;
791 }
792 }
793
794 return $used;
795 }
796
804 public function getMessagesDirs() {
805 global $IP;
806
807 $config = MediaWikiServices::getInstance()->getMainConfig();
808 $messagesDirs = $config->get( 'MessagesDirs' );
809 return [
810 'core' => "$IP/languages/i18n",
811 'api' => "$IP/includes/api/i18n",
812 'oojs-ui' => "$IP/resources/lib/oojs-ui/i18n",
813 ] + $messagesDirs;
814 }
815
822 public function recache( $code ) {
824
825 if ( !$code ) {
826 throw new MWException( "Invalid language code requested" );
827 }
828 $this->recachedLangs[$code] = true;
829
830 # Initial values
831 $initialData = array_fill_keys( self::$allKeys, null );
832 $coreData = $initialData;
833 $deps = [];
834
835 # Load the primary localisation from the source file
836 $data = $this->readSourceFilesAndRegisterDeps( $code, $deps );
837 if ( $data === false ) {
838 wfDebug( __METHOD__ . ": no localisation file for $code, using fallback to en\n" );
839 $coreData['fallback'] = 'en';
840 } else {
841 wfDebug( __METHOD__ . ": got localisation for $code from source\n" );
842
843 # Merge primary localisation
844 foreach ( $data as $key => $value ) {
845 $this->mergeItem( $key, $coreData[$key], $value );
846 }
847 }
848
849 # Fill in the fallback if it's not there already
850 if ( is_null( $coreData['fallback'] ) ) {
851 $coreData['fallback'] = $code === 'en' ? false : 'en';
852 }
853 if ( $coreData['fallback'] === false ) {
854 $coreData['fallbackSequence'] = [];
855 } else {
856 $coreData['fallbackSequence'] = array_map( 'trim', explode( ',', $coreData['fallback'] ) );
857 $len = count( $coreData['fallbackSequence'] );
858
859 # Ensure that the sequence ends at en
860 if ( $coreData['fallbackSequence'][$len - 1] !== 'en' ) {
861 $coreData['fallbackSequence'][] = 'en';
862 }
863 }
864
865 $codeSequence = array_merge( [ $code ], $coreData['fallbackSequence'] );
866 $messageDirs = $this->getMessagesDirs();
867
868 # Load non-JSON localisation data for extensions
869 $extensionData = array_fill_keys( $codeSequence, $initialData );
870 foreach ( $wgExtensionMessagesFiles as $extension => $fileName ) {
871 if ( isset( $messageDirs[$extension] ) ) {
872 # This extension has JSON message data; skip the PHP shim
873 continue;
874 }
875
876 $data = $this->readPHPFile( $fileName, 'extension' );
877 $used = false;
878
879 foreach ( $data as $key => $item ) {
880 foreach ( $codeSequence as $csCode ) {
881 if ( isset( $item[$csCode] ) ) {
882 $this->mergeItem( $key, $extensionData[$csCode][$key], $item[$csCode] );
883 $used = true;
884 }
885 }
886 }
887
888 if ( $used ) {
889 $deps[] = new FileDependency( $fileName );
890 }
891 }
892
893 # Load the localisation data for each fallback, then merge it into the full array
894 $allData = $initialData;
895 foreach ( $codeSequence as $csCode ) {
896 $csData = $initialData;
897
898 # Load core messages and the extension localisations.
899 foreach ( $messageDirs as $dirs ) {
900 foreach ( (array)$dirs as $dir ) {
901 $fileName = "$dir/$csCode.json";
902 $data = $this->readJSONFile( $fileName );
903
904 foreach ( $data as $key => $item ) {
905 $this->mergeItem( $key, $csData[$key], $item );
906 }
907
908 $deps[] = new FileDependency( $fileName );
909 }
910 }
911
912 # Merge non-JSON extension data
913 if ( isset( $extensionData[$csCode] ) ) {
914 foreach ( $extensionData[$csCode] as $key => $item ) {
915 $this->mergeItem( $key, $csData[$key], $item );
916 }
917 }
918
919 if ( $csCode === $code ) {
920 # Merge core data into extension data
921 foreach ( $coreData as $key => $item ) {
922 $this->mergeItem( $key, $csData[$key], $item );
923 }
924 } else {
925 # Load the secondary localisation from the source file to
926 # avoid infinite cycles on cyclic fallbacks
927 $fbData = $this->readSourceFilesAndRegisterDeps( $csCode, $deps );
928 if ( $fbData !== false ) {
929 # Only merge the keys that make sense to merge
930 foreach ( self::$allKeys as $key ) {
931 if ( !isset( $fbData[$key] ) ) {
932 continue;
933 }
934
935 if ( is_null( $coreData[$key] ) || $this->isMergeableKey( $key ) ) {
936 $this->mergeItem( $key, $csData[$key], $fbData[$key] );
937 }
938 }
939 }
940 }
941
942 # Allow extensions an opportunity to adjust the data for this
943 # fallback
944 Hooks::run( 'LocalisationCacheRecacheFallback', [ $this, $csCode, &$csData ] );
945
946 # Merge the data for this fallback into the final array
947 if ( $csCode === $code ) {
948 $allData = $csData;
949 } else {
950 foreach ( self::$allKeys as $key ) {
951 if ( !isset( $csData[$key] ) ) {
952 continue;
953 }
954
955 if ( is_null( $allData[$key] ) || $this->isMergeableKey( $key ) ) {
956 $this->mergeItem( $key, $allData[$key], $csData[$key] );
957 }
958 }
959 }
960 }
961
962 # Add cache dependencies for any referenced globals
963 $deps['wgExtensionMessagesFiles'] = new GlobalDependency( 'wgExtensionMessagesFiles' );
964 // The 'MessagesDirs' config setting is used in LocalisationCache::getMessagesDirs().
965 // We use the key 'wgMessagesDirs' for historical reasons.
966 $deps['wgMessagesDirs'] = new MainConfigDependency( 'MessagesDirs' );
967 $deps['version'] = new ConstantDependency( 'LocalisationCache::VERSION' );
968
969 # Add dependencies to the cache entry
970 $allData['deps'] = $deps;
971
972 # Replace spaces with underscores in namespace names
973 $allData['namespaceNames'] = str_replace( ' ', '_', $allData['namespaceNames'] );
974
975 # And do the same for special page aliases. $page is an array.
976 foreach ( $allData['specialPageAliases'] as &$page ) {
977 $page = str_replace( ' ', '_', $page );
978 }
979 # Decouple the reference to prevent accidental damage
980 unset( $page );
981
982 # If there were no plural rules, return an empty array
983 if ( $allData['pluralRules'] === null ) {
984 $allData['pluralRules'] = [];
985 }
986 if ( $allData['compiledPluralRules'] === null ) {
987 $allData['compiledPluralRules'] = [];
988 }
989 # If there were no plural rule types, return an empty array
990 if ( $allData['pluralRuleTypes'] === null ) {
991 $allData['pluralRuleTypes'] = [];
992 }
993
994 # Set the list keys
995 $allData['list'] = [];
996 foreach ( self::$splitKeys as $key ) {
997 $allData['list'][$key] = array_keys( $allData[$key] );
998 }
999 # Run hooks
1000 $purgeBlobs = true;
1001 Hooks::run( 'LocalisationCacheRecache', [ $this, $code, &$allData, &$purgeBlobs ] );
1002
1003 if ( is_null( $allData['namespaceNames'] ) ) {
1004 throw new MWException( __METHOD__ . ': Localisation data failed sanity check! ' .
1005 'Check that your languages/messages/MessagesEn.php file is intact.' );
1006 }
1007
1008 # Set the preload key
1009 $allData['preload'] = $this->buildPreload( $allData );
1010
1011 # Save to the process cache and register the items loaded
1012 $this->data[$code] = $allData;
1013 foreach ( $allData as $key => $item ) {
1014 $this->loadedItems[$code][$key] = true;
1015 }
1016
1017 # Save to the persistent cache
1018 $this->store->startWrite( $code );
1019 foreach ( $allData as $key => $value ) {
1020 if ( in_array( $key, self::$splitKeys ) ) {
1021 foreach ( $value as $subkey => $subvalue ) {
1022 $this->store->set( "$key:$subkey", $subvalue );
1023 }
1024 } else {
1025 $this->store->set( $key, $value );
1026 }
1027 }
1028 $this->store->finishWrite();
1029
1030 # Clear out the MessageBlobStore
1031 # HACK: If using a null (i.e. disabled) storage backend, we
1032 # can't write to the MessageBlobStore either
1033 if ( $purgeBlobs && !$this->store instanceof LCStoreNull ) {
1034 $blobStore = new MessageBlobStore();
1035 $blobStore->clear();
1036 }
1037
1038 }
1039
1048 protected function buildPreload( $data ) {
1049 $preload = [ 'messages' => [] ];
1050 foreach ( self::$preloadedKeys as $key ) {
1051 $preload[$key] = $data[$key];
1052 }
1053
1054 foreach ( $data['preloadedMessages'] as $subkey ) {
1055 if ( isset( $data['messages'][$subkey] ) ) {
1056 $subitem = $data['messages'][$subkey];
1057 } else {
1058 $subitem = null;
1059 }
1060 $preload['messages'][$subkey] = $subitem;
1061 }
1062
1063 return $preload;
1064 }
1065
1071 public function unload( $code ) {
1072 unset( $this->data[$code] );
1073 unset( $this->loadedItems[$code] );
1074 unset( $this->loadedSubitems[$code] );
1075 unset( $this->initialisedLangs[$code] );
1076 unset( $this->shallowFallbacks[$code] );
1077
1078 foreach ( $this->shallowFallbacks as $shallowCode => $fbCode ) {
1079 if ( $fbCode === $code ) {
1080 $this->unload( $shallowCode );
1081 }
1082 }
1083 }
1084
1088 public function unloadAll() {
1089 foreach ( $this->initialisedLangs as $lang => $unused ) {
1090 $this->unload( $lang );
1091 }
1092 }
1093
1097 public function disableBackend() {
1098 $this->store = new LCStoreNull;
1099 $this->manualRecache = false;
1100 }
1101
1102}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$wgCacheDirectory
Directory for caching data in the local filesystem.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
$IP
Definition WebStart.php:58
isExpired()
Returns true if the dependency is expired, false otherwise.
Null store backend, used to avoid DB errors during install.
Class for caching the contents of localisation files, Messages*.php and *.i18n.php.
$manualRecache
True if recaching should only be done on an explicit call to recache().
static $magicWordKeys
Keys for items that are formatted like $magicWords.
buildPreload( $data)
Build the preload item from the given pre-cache data.
initLanguage( $code)
Initialise a language in this object.
static $mergeableMapKeys
Keys for items which consist of associative arrays, which may be merged by a fallback sequence.
readSourceFilesAndRegisterDeps( $code, &$deps)
Read the data from the source files for a given language, and register the relevant dependencies in t...
isMergeableKey( $key)
Returns true if the given key is mergeable, that is, if it is an associative array which can be merge...
loadPluralFile( $fileName)
Load a plural XML file with the given filename, compile the relevant rules, and save the compiled rul...
getPluralRules( $code)
Get the plural rules for a given language from the XML files.
$loadedItems
A 2-d associative array, code/key, where presence indicates that the item is loaded.
readPHPFile( $_fileName, $_fileType)
Read a PHP file containing localisation data.
$initialisedLangs
An array where presence of a key indicates that that language has been initialised.
readJSONFile( $fileName)
Read a JSON file containing localisation messages.
loadPluralFiles()
Load the plural XML files.
unload( $code)
Unload the data for a given language from the object cache.
unloadAll()
Unload all data.
disableBackend()
Disable the storage backend.
static $mergeableAliasListKeys
Keys for items which contain an array of arrays of equivalent aliases for each subitem.
getSubitemList( $code, $key)
Get the list of subitem keys for a given item.
$recachedLangs
An array where the keys are codes that have been recached by this instance.
$loadedSubitems
A 3-d associative array, code/key/subkey, where presence indicates that the subitem is loaded.
static $mergeableListKeys
Keys for items which are a numbered array.
recache( $code)
Load localisation data for a given language for both core and extensions and save it to the persisten...
isExpired( $code)
Returns true if the cache identified by $code is missing or expired.
mergeItem( $key, &$value, $fallbackValue)
Merge two localisation values, a primary and a fallback, overwriting the primary value in place.
getSubitem( $code, $key, $subkey)
Get a subitem, for instance a single message for a given language.
mergeMagicWords(&$value, $fallbackValue)
$shallowFallbacks
An array mapping non-existent pseudo-languages to fallback languages.
initShallowFallback( $primaryCode, $fallbackCode)
Create a fallback from one language to another, without creating a complete persistent cache.
static $allKeys
All item keys.
getCompiledPluralRules( $code)
Get the compiled plural rules for a given language from the XML files.
static $optionalMergeKeys
Keys for items which contain an associative array, and may be merged if the primary value contains th...
__construct( $conf)
Constructor.
getMessagesDirs()
Gets the combined list of messages dirs from core and extensions.
static $preloadedKeys
Keys which are loaded automatically by initLanguage()
getItem( $code, $key)
Get a cache item.
static $splitKeys
Keys for items where the subitems are stored in the backend separately.
loadItem( $code, $key)
Load an item into the cache.
$pluralRuleTypes
Associative array of cached plural rule types.
getPluralRuleTypes( $code)
Get the plural rule types for a given language from the XML files.
$forceRecache
True to treat all files as expired until they are regenerated by this object.
LCStore $store
The persistent store object.
loadSubitem( $code, $key, $subkey)
Load a subitem into the cache.
$pluralRules
Associative array of cached plural rules.
$conf
Configuration associative array.
mergeExtensionItem( $codeSequence, $key, &$value, $fallbackValue)
Given an array mapping language code to localisation value, such as is found in extension *....
MediaWiki exception.
MediaWikiServices is the service locator for the application scope of MediaWiki.
This class generates message blobs for use by ResourceLoader modules.
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
the array() calling protocol came about after MediaWiki 1.4rc1.
namespace are movable Hooks may change this value to override the return value of MWNamespace::isMovable(). 'NewDifferenceEngine' do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition hooks.txt:2534
processing should stop and the error should be shown to the user * false
Definition hooks.txt:189
returning false will NOT prevent logging $e
Definition hooks.txt:2110
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition hooks.txt:887
if(count( $args)==0) $dir
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Interface for the persistence layer of LocalisationCache.
Definition LCStore.php:38
$wgExtensionMessagesFiles['ExtensionNameMagic']
Definition magicword.txt:43
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres as and are nearing end of but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN boolean columns are always mapped to as the code does not always treat the column as a and VARBINARY columns should simply be TEXT The only exception is when VARBINARY is used to store true binary data
Definition postgres.txt:43
MediaWiki s SiteStore can be cached and stored in a flat in a json format If the SiteStore is frequently the file cache may provide a performance benefit over a database store
Definition sitescache.txt:4
if(!isset( $args[0])) $lang