MediaWiki  1.33.0
LocalisationCacheBulkLoad.php
Go to the documentation of this file.
1 <?php
26 
31  private $fileCache = [];
32 
38  private $mruLangs = [];
39 
43  private $maxLoadedLangs = 10;
44 
50  protected function readPHPFile( $fileName, $fileType ) {
51  $serialize = $fileType === 'core';
52  if ( !isset( $this->fileCache[$fileName][$fileType] ) ) {
53  $data = parent::readPHPFile( $fileName, $fileType );
54 
55  if ( $serialize ) {
56  $encData = serialize( $data );
57  } else {
58  $encData = $data;
59  }
60 
61  $this->fileCache[$fileName][$fileType] = $encData;
62 
63  return $data;
64  } elseif ( $serialize ) {
65  return unserialize( $this->fileCache[$fileName][$fileType] );
66  } else {
67  return $this->fileCache[$fileName][$fileType];
68  }
69  }
70 
76  public function getItem( $code, $key ) {
77  unset( $this->mruLangs[$code] );
78  $this->mruLangs[$code] = true;
79 
80  return parent::getItem( $code, $key );
81  }
82 
89  public function getSubitem( $code, $key, $subkey ) {
90  unset( $this->mruLangs[$code] );
91  $this->mruLangs[$code] = true;
92 
93  return parent::getSubitem( $code, $key, $subkey );
94  }
95 
99  public function recache( $code ) {
100  parent::recache( $code );
101  unset( $this->mruLangs[$code] );
102  $this->mruLangs[$code] = true;
103  $this->trimCache();
104  }
105 
109  public function unload( $code ) {
110  unset( $this->mruLangs[$code] );
111  parent::unload( $code );
112  }
113 
117  protected function trimCache() {
118  while ( count( $this->data ) > $this->maxLoadedLangs && count( $this->mruLangs ) ) {
119  reset( $this->mruLangs );
120  $code = key( $this->mruLangs );
121  wfDebug( __METHOD__ . ": unloading $code\n" );
122  $this->unload( $code );
123  }
124  }
125 
126 }
LocalisationCacheBulkLoad\unload
unload( $code)
Definition: LocalisationCacheBulkLoad.php:109
captcha-old.count
count
Definition: captcha-old.py:249
LocalisationCacheBulkLoad\getItem
getItem( $code, $key)
Definition: LocalisationCacheBulkLoad.php:76
data
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of data
Definition: hooks.txt:6
serialize
serialize()
Definition: ApiMessageTrait.php:134
LocalisationCacheBulkLoad\$fileCache
$fileCache
A cache of the contents of data files.
Definition: LocalisationCacheBulkLoad.php:31
LocalisationCacheBulkLoad\$maxLoadedLangs
$maxLoadedLangs
Maximum number of languages that may be loaded into $this->data.
Definition: LocalisationCacheBulkLoad.php:43
php
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:35
LocalisationCacheBulkLoad
A localisation cache optimised for loading large amounts of data for many languages.
Definition: LocalisationCacheBulkLoad.php:25
LocalisationCacheBulkLoad\getSubitem
getSubitem( $code, $key, $subkey)
Definition: LocalisationCacheBulkLoad.php:89
LocalisationCacheBulkLoad\readPHPFile
readPHPFile( $fileName, $fileType)
Definition: LocalisationCacheBulkLoad.php:50
LocalisationCacheBulkLoad\recache
recache( $code)
Definition: LocalisationCacheBulkLoad.php:99
$code
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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:780
wfDebug
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Definition: GlobalFunctions.php:949
key
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message key
Definition: hooks.txt:2154
LocalisationCacheBulkLoad\trimCache
trimCache()
Unload cached languages until there are less than $this->maxLoadedLangs.
Definition: LocalisationCacheBulkLoad.php:117
LocalisationCache
Class for caching the contents of localisation files, Messages*.php and *.i18n.php.
Definition: LocalisationCache.php:39
unserialize
unserialize( $serialized)
Definition: ApiMessageTrait.php:142
LocalisationCacheBulkLoad\$mruLangs
$mruLangs
Most recently used languages.
Definition: LocalisationCacheBulkLoad.php:38
LocalisationCache\$data
$data
The cache data.
Definition: LocalisationCache.php:63