MediaWiki  REL1_22
LocalisationCache Class Reference

Class for caching the contents of localisation files, Messages*.php and *.i18n.php. More...

Inheritance diagram for LocalisationCache:
Collaboration diagram for LocalisationCache:

List of all members.

Public Member Functions

 __construct ($conf)
 Constructor.
 disableBackend ()
 Disable the storage backend.
 getCompiledPluralRules ($code)
 Get the compiled plural rules for a given language from the XML files.
 getInitialisedLanguages ()
 Return an array with initialised languages.
 getItem ($code, $key)
 Get a cache item.
 getPluralRules ($code)
 Get the plural rules for a given language from the XML files.
 getPluralRuleTypes ($code)
 Get the plural rule types for a given language from the XML files.
 getSubitem ($code, $key, $subkey)
 Get a subitem, for instance a single message for a given language.
 getSubitemList ($code, $key)
 Get the list of subitem keys for a given item.
 initShallowFallback ($primaryCode, $fallbackCode)
 Create a fallback from one language to another, without creating a complete persistent cache.
 isExpired ($code)
 Returns true if the cache identified by $code is missing or expired.
 isMergeableKey ($key)
 Returns true if the given key is mergeable, that is, if it is an associative array which can be merged through a fallback sequence.
 recache ($code)
 Load localisation data for a given language for both core and extensions and save it to the persistent cache store and the process cache.
 setInitialisedLanguages ($languages=array())
 Set initialised languages.
 unload ($code)
 Unload the data for a given language from the object cache.
 unloadAll ()
 Unload all data.

Public Attributes

 $conf
 Configuration associative array.
 $data = array()
 The cache data.
 $forceRecache = false
 True to treat all files as expired until they are regenerated by this object.
 $initialisedLangs = array()
 An array where presence of a key indicates that that language has been initialised.
 $loadedItems = array()
 A 2-d associative array, code/key, where presence indicates that the item is loaded.
 $loadedSubitems = array()
 A 3-d associative array, code/key/subkey, where presence indicates that the subitem is loaded.
 $manualRecache = false
 True if recaching should only be done on an explicit call to recache().
 $mergeableKeys = null
 $pluralRules = null
 Associative array of cached plural rules.
 $pluralRuleTypes = null
 Associative array of cached plural rule types.
 $recachedLangs = array()
 An array where the keys are codes that have been recached by this instance.
 $shallowFallbacks = array()
 An array mapping non-existent pseudo-languages to fallback languages.
LCStore $store
 The persistent store object.

Static Public Attributes

static $allKeys
 All item keys.
static $magicWordKeys = array( 'magicWords' )
 Keys for items that are formatted like $magicWords.
static $mergeableAliasListKeys = array( 'specialPageAliases' )
 Keys for items which contain an array of arrays of equivalent aliases for each subitem.
static $mergeableListKeys = array( 'extraUserToggles' )
 Keys for items which are a numbered array.
static $mergeableMapKeys
 Keys for items which consist of associative arrays, which may be merged by a fallback sequence.
static $optionalMergeKeys = array( 'bookstoreList' )
 Keys for items which contain an associative array, and may be merged if the primary value contains the special array key "inherit".
static $preloadedKeys = array( 'dateFormats', 'namespaceNames' )
 Keys which are loaded automatically by initLanguage()
static $splitKeys = array( 'messages' )
 Keys for items where the subitems are stored in the backend separately.

Protected Member Functions

 buildPreload ($data)
 Build the preload item from the given pre-cache data.
 initLanguage ($code)
 Initialise a language in this object.
 loadItem ($code, $key)
 Load an item into the cache.
 loadPluralFile ($fileName)
 Load a plural XML file with the given filename, compile the relevant rules, and save the compiled rules in a process-local cache.
 loadPluralFiles ()
 Load the plural XML files.
 loadSubitem ($code, $key, $subkey)
 Load a subitem into the cache.
 mergeExtensionItem ($codeSequence, $key, &$value, $fallbackValue)
 Given an array mapping language code to localisation value, such as is found in extension *.i18n.php files, iterate through a fallback sequence to merge the given data with an existing primary value.
 mergeItem ($key, &$value, $fallbackValue)
 Merge two localisation values, a primary and a fallback, overwriting the primary value in place.
 mergeMagicWords (&$value, $fallbackValue)
 readPHPFile ($_fileName, $_fileType)
 Read a PHP file containing localisation data.
 readSourceFilesAndRegisterDeps ($code, &$deps)
 Read the data from the source files for a given language, and register the relevant dependencies in the $deps array.

Detailed Description

Class for caching the contents of localisation files, Messages*.php and *.i18n.php.

An instance of this class is available using Language::getLocalisationCache().

The values retrieved from here are merged, containing items from extension files, core messages files and the language fallback sequence (e.g. zh-cn -> zh-hans -> en ). Some common errors are corrected, for example namespace names with spaces instead of underscores, but heavyweight processing, such as grammatical transformation, is done by the caller.

Definition at line 37 of file LocalisationCache.php.


Constructor & Destructor Documentation

Constructor.

For constructor parameters, see the documentation in DefaultSettings.php for $wgLocalisationCacheConf.

Parameters:
$confArray
Exceptions:
MWException

Definition at line 186 of file LocalisationCache.php.


Member Function Documentation

LocalisationCache::buildPreload ( data) [protected]

Build the preload item from the given pre-cache data.

The preload item will be loaded automatically, improving performance for the commonly-requested items it contains.

Parameters:
$data
Returns:
array

Definition at line 906 of file LocalisationCache.php.

Disable the storage backend.

Definition at line 955 of file LocalisationCache.php.

Get the compiled plural rules for a given language from the XML files.

Since:
1.20

Definition at line 520 of file LocalisationCache.php.

Return an array with initialised languages.

Returns:
array

Definition at line 965 of file LocalisationCache.php.

LocalisationCache::getItem ( code,
key 
)

Get a cache item.

Warning: this may be slow for split items (messages), since it will need to fetch all of the subitems from the cache individually.

Parameters:
$code
$key
Returns:
mixed

Reimplemented in LocalisationCache_BulkLoad.

Definition at line 255 of file LocalisationCache.php.

Get the plural rules for a given language from the XML files.

Cached.

Since:
1.20

Definition at line 539 of file LocalisationCache.php.

Get the plural rule types for a given language from the XML files.

Cached.

Since:
1.22

Definition at line 555 of file LocalisationCache.php.

LocalisationCache::getSubitem ( code,
key,
subkey 
)

Get a subitem, for instance a single message for a given language.

Parameters:
$code
$key
$subkey
Returns:
null

Reimplemented in LocalisationCache_BulkLoad.

Definition at line 276 of file LocalisationCache.php.

LocalisationCache::getSubitemList ( code,
key 
)

Get the list of subitem keys for a given item.

This is faster than array_keys($lc->getItem(...)) for the items listed in self::$splitKeys.

Will return null if the item is not found, or false if the item is not an array.

Parameters:
$code
$key
Returns:
bool|null|string

Definition at line 303 of file LocalisationCache.php.

LocalisationCache::initLanguage ( code) [protected]

Initialise a language in this object.

Rebuild the cache if necessary.

Parameters:
$code
Exceptions:
MWException

Definition at line 425 of file LocalisationCache.php.

LocalisationCache::initShallowFallback ( primaryCode,
fallbackCode 
)

Create a fallback from one language to another, without creating a complete persistent cache.

Parameters:
$primaryCode
$fallbackCode

Definition at line 483 of file LocalisationCache.php.

Returns true if the cache identified by $code is missing or expired.

Parameters:
string$code
Returns:
bool

Definition at line 390 of file LocalisationCache.php.

Returns true if the given key is mergeable, that is, if it is an associative array which can be merged through a fallback sequence.

Parameters:
$key
Returns:
bool

Definition at line 233 of file LocalisationCache.php.

LocalisationCache::loadItem ( code,
key 
) [protected]

Load an item into the cache.

Parameters:
$code
$key

Definition at line 321 of file LocalisationCache.php.

LocalisationCache::loadPluralFile ( fileName) [protected]

Load a plural XML file with the given filename, compile the relevant rules, and save the compiled rules in a process-local cache.

Definition at line 585 of file LocalisationCache.php.

Load the plural XML files.

Definition at line 569 of file LocalisationCache.php.

LocalisationCache::loadSubitem ( code,
key,
subkey 
) [protected]

Load a subitem into the cache.

Parameters:
$code
$key
$subkey

Definition at line 357 of file LocalisationCache.php.

LocalisationCache::mergeExtensionItem ( codeSequence,
key,
&$  value,
fallbackValue 
) [protected]

Given an array mapping language code to localisation value, such as is found in extension *.i18n.php files, iterate through a fallback sequence to merge the given data with an existing primary value.

Returns true if any data from the extension array was used, false otherwise.

Parameters:
$codeSequence
$key
$value
$fallbackValue
Returns:
bool

Definition at line 706 of file LocalisationCache.php.

LocalisationCache::mergeItem ( key,
&$  value,
fallbackValue 
) [protected]

Merge two localisation values, a primary and a fallback, overwriting the primary value in place.

Parameters:
$key
$value
$fallbackValue

Definition at line 649 of file LocalisationCache.php.

LocalisationCache::mergeMagicWords ( &$  value,
fallbackValue 
) [protected]
Parameters:
$value
$fallbackValue

Definition at line 679 of file LocalisationCache.php.

LocalisationCache::readPHPFile ( _fileName,
_fileType 
) [protected]

Read a PHP file containing localisation data.

Parameters:
$_fileName
$_fileType
Exceptions:
MWException
Returns:
array

Reimplemented in LocalisationCache_BulkLoad.

Definition at line 497 of file LocalisationCache.php.

LocalisationCache::readSourceFilesAndRegisterDeps ( code,
&$  deps 
) [protected]

Read the data from the source files for a given language, and register the relevant dependencies in the $deps array.

If the localisation exists, the data array is returned, otherwise false is returned.

Definition at line 615 of file LocalisationCache.php.

Load localisation data for a given language for both core and extensions and save it to the persistent cache store and the process cache.

Parameters:
$code
Exceptions:
MWException

Reimplemented in LocalisationCache_BulkLoad.

Definition at line 724 of file LocalisationCache.php.

Set initialised languages.

Parameters:
array$languagesOptional array of initialised languages.

Definition at line 974 of file LocalisationCache.php.

Unload the data for a given language from the object cache.

Reduces memory usage.

Parameters:
$code

Reimplemented in LocalisationCache_BulkLoad.

Definition at line 929 of file LocalisationCache.php.

Unload all data.

Definition at line 946 of file LocalisationCache.php.


Member Data Documentation

LocalisationCache::$allKeys [static]
Initial value:
 array(
        'fallback', 'namespaceNames', 'bookstoreList',
        'magicWords', 'messages', 'rtl', 'capitalizeAllNouns', 'digitTransformTable',
        'separatorTransformTable', 'fallback8bitEncoding', 'linkPrefixExtension',
        'linkTrail', 'namespaceAliases',
        'dateFormats', 'datePreferences', 'datePreferenceMigrationMap',
        'defaultDateFormat', 'extraUserToggles', 'specialPageAliases',
        'imageFiles', 'preloadedMessages', 'namespaceGenderAliases',
        'digitGroupingPattern', 'pluralRules', 'pluralRuleTypes', 'compiledPluralRules',
    )

All item keys.

Definition at line 104 of file LocalisationCache.php.

LocalisationCache::$conf

Configuration associative array.

Definition at line 39 of file LocalisationCache.php.

LocalisationCache::$data = array()

The cache data.

3-d array, where the first key is the language code, the second key is the item key e.g. 'messages', and the third key is an item specific subkey index. Some items are not arrays and so for those items, there are no subkeys.

Definition at line 59 of file LocalisationCache.php.

LocalisationCache::$forceRecache = false

True to treat all files as expired until they are regenerated by this object.

Definition at line 51 of file LocalisationCache.php.

LocalisationCache::$initialisedLangs = array()

An array where presence of a key indicates that that language has been initialised.

Initialisation includes checking for cache expiry and doing any necessary updates.

Definition at line 87 of file LocalisationCache.php.

LocalisationCache::$loadedItems = array()

A 2-d associative array, code/key, where presence indicates that the item is loaded.

Value arbitrary.

For split items, if set, this indicates that all of the subitems have been loaded.

Definition at line 74 of file LocalisationCache.php.

LocalisationCache::$loadedSubitems = array()

A 3-d associative array, code/key/subkey, where presence indicates that the subitem is loaded.

Only used for the split items, i.e. messages.

Definition at line 80 of file LocalisationCache.php.

LocalisationCache::$magicWordKeys = array( 'magicWords' ) [static]

Keys for items that are formatted like $magicWords.

Definition at line 144 of file LocalisationCache.php.

LocalisationCache::$manualRecache = false

True if recaching should only be done on an explicit call to recache().

Setting this reduces the overhead of cache freshness checking, which requires doing a stat() for every extension i18n file.

Definition at line 46 of file LocalisationCache.php.

LocalisationCache::$mergeableAliasListKeys = array( 'specialPageAliases' ) [static]

Keys for items which contain an array of arrays of equivalent aliases for each subitem.

The aliases may be merged by a fallback sequence.

Definition at line 132 of file LocalisationCache.php.

LocalisationCache::$mergeableKeys = null

Definition at line 176 of file LocalisationCache.php.

LocalisationCache::$mergeableListKeys = array( 'extraUserToggles' ) [static]

Keys for items which are a numbered array.

Definition at line 126 of file LocalisationCache.php.

LocalisationCache::$mergeableMapKeys [static]
Initial value:
 array( 'messages', 'namespaceNames',
        'dateFormats', 'imageFiles', 'preloadedMessages'
    )

Keys for items which consist of associative arrays, which may be merged by a fallback sequence.

Definition at line 119 of file LocalisationCache.php.

LocalisationCache::$optionalMergeKeys = array( 'bookstoreList' ) [static]

Keys for items which contain an associative array, and may be merged if the primary value contains the special array key "inherit".

That array key is removed after the first merge.

Definition at line 139 of file LocalisationCache.php.

LocalisationCache::$pluralRules = null

Associative array of cached plural rules.

The key is the language code, the value is an array of plural rules for that language.

Definition at line 160 of file LocalisationCache.php.

LocalisationCache::$pluralRuleTypes = null

Associative array of cached plural rule types.

The key is the language code, the value is an array of plural rule types for that language. For example, $pluralRuleTypes['ar'] = ['zero', 'one', 'two', 'few', 'many']. The index for each rule type matches the index for the rule in $pluralRules, thus allowing correlation between the two. The reason we don't just use the type names as the keys in $pluralRules is because Language::convertPlural applies the rules based on numeric order (or explicit numeric parameter), not based on the name of the rule type. For example, {{plural:count|wordform1|wordform2|wordform3}}, rather than {{plural:count|one=wordform1|two=wordform2|many=wordform3}}.

Definition at line 174 of file LocalisationCache.php.

LocalisationCache::$preloadedKeys = array( 'dateFormats', 'namespaceNames' ) [static]

Keys which are loaded automatically by initLanguage()

Definition at line 154 of file LocalisationCache.php.

LocalisationCache::$recachedLangs = array()

An array where the keys are codes that have been recached by this instance.

Definition at line 99 of file LocalisationCache.php.

LocalisationCache::$shallowFallbacks = array()

An array mapping non-existent pseudo-languages to fallback languages.

This is filled by initShallowFallback() when data is requested from a language that lacks a Messages*.php file.

Definition at line 94 of file LocalisationCache.php.

LocalisationCache::$splitKeys = array( 'messages' ) [static]

Keys for items where the subitems are stored in the backend separately.

Definition at line 149 of file LocalisationCache.php.

LCStore LocalisationCache::$store

The persistent store object.

An instance of LCStore.

Definition at line 65 of file LocalisationCache.php.


The documentation for this class was generated from the following file: