9 require_once( 'Revision.php' );
14 define( 'MSG_LOAD_TIMEOUT', 60);
15 define( 'MSG_LOCK_TIMEOUT', 10);
16 define( 'MSG_WAIT_TIMEOUT', 10);
20 * Performs various useful MediaWiki namespace-related functions
26 var $mCache, $mUseCache, $mDisable, $mExpiry;
27 var $mMemcKey, $mKeys, $mParserOptions, $mParser;
28 var $mExtensionMessages;
29 var $mInitialised = false;
30 var $mDeferred = true;
32 function initialise( &$memCached, $useDB, $expiry, $memcPrefix) {
33 $fname = 'MessageCache::initialise';
34 wfProfileIn( $fname );
36 $this->mUseCache
= !is_null( $memCached );
37 $this->mMemc
= &$memCached;
38 $this->mDisable
= !$useDB;
39 $this->mExpiry
= $expiry;
40 $this->mDisableTransform
= false;
41 $this->mMemcKey
= $memcPrefix.':messages';
42 $this->mKeys
= false; # initialised on demand
43 $this->mInitialised
= true;
45 wfProfileIn( $fname.'-parseropt' );
46 $this->mParserOptions
= ParserOptions
::newFromUser( $u=NULL );
47 wfProfileOut( $fname.'-parseropt' );
48 wfProfileIn( $fname.'-parser' );
49 $this->mParser
= new Parser
;
50 wfProfileOut( $fname.'-parser' );
52 # When we first get asked for a message,
53 # then we'll fill up the cache. If we
54 # can return a cache hit, this saves
55 # some extra milliseconds
56 $this->mDeferred
= true;
58 wfProfileOut( $fname );
62 * Loads messages either from memcached or the database, if not disabled
63 * On error, quietly switches to a fallback mode
64 * Returns false for a reportable error, true otherwise
67 global $wgAllMessagesEn;
69 if ( $this->mDisable
) {
70 static $shownDisabled = false;
71 if ( !$shownDisabled ) {
72 wfDebug( "MessageCache::load(): disabled\n" );
73 $shownDisabled = true;
77 $fname = 'MessageCache::load';
78 wfProfileIn( $fname );
81 if ( $this->mUseCache
) {
82 wfProfileIn( $fname.'-fromcache' );
83 $this->mCache
= $this->mMemc
->get( $this->mMemcKey
);
84 wfProfileOut( $fname.'-fromcache' );
86 # If there's nothing in memcached, load all the messages from the database
87 if ( !$this->mCache
) {
88 wfDebug( "MessageCache::load(): loading all messages\n" );
90 # Other threads don't need to load the messages if another thread is doing it.
91 $success = $this->mMemc
->add( $this->mMemcKey
, "loading", MSG_LOAD_TIMEOUT
);
93 wfProfileIn( $fname.'-load' );
95 wfProfileOut( $fname.'-load' );
97 # Keep trying if it fails, this is kind of important
98 wfProfileIn( $fname.'-save' );
99 for ( $i=0; $i<20 && !$this->mMemc
->set( $this->mMemcKey
, $this->mCache
, $this->mExpiry
); $i++
) {
100 usleep(mt_rand(500000,1500000));
102 wfProfileOut( $fname.'-save' );
104 $this->mMemc
->set( $this->mMemcKey
, 'error', 60*5 );
105 wfDebug( "MemCached set error in MessageCache: restart memcached server!\n" );
111 if ( !is_array( $this->mCache
) ) {
112 wfDebug( "MessageCache::load(): individual message mode\n" );
113 # If it is 'loading' or 'error', switch to individual message mode, otherwise disable
114 # Causing too much DB load, disabling -- TS
115 $this->mDisable
= true;
117 if ( $this->mCache == "loading" ) {
118 $this->mUseCache = false;
119 } elseif ( $this->mCache == "error" ) {
120 $this->mUseCache = false;
123 $this->mDisable = true;
126 $this->mCache
= false;
129 wfProfileOut( $fname );
130 $this->mDeferred
= false;
135 * Loads all or main part of cacheable messages from the database
137 function loadFromDB() {
138 $fname = 'MessageCache::loadFromDB';
139 $dbr =& wfGetDB( DB_SLAVE
);
140 $conditions = array( 'page_is_redirect' => 0,
141 'page_namespace' => NS_MEDIAWIKI
);
142 $res = $dbr->select( array( 'page', 'revision', 'text' ),
143 array( 'page_title', 'old_text', 'old_flags' ),
144 'page_is_redirect=0 AND page_namespace='.NS_MEDIAWIKI
.' AND page_latest=rev_id AND rev_text_id=old_id',
148 $this->mCache
= array();
149 for ( $row = $dbr->fetchObject( $res ); $row; $row = $dbr->fetchObject( $res ) ) {
150 $this->mCache
[$row->page_title
] = Revision
::getRevisionText( $row );
153 $dbr->freeResult( $res );
155 # FIXME: This is too slow currently.
156 # We need to bulk-fetch revisions, but in a portable way...
157 $resultSet = Revision::fetchFromConds( $dbr, array(
158 'page_namespace' => NS_MEDIAWIKI,
159 'page_is_redirect' => 0,
160 'page_id=rev_page' ) );
161 while( $row = $resultSet->fetchObject() ) {
162 $revision = new Revision( $row );
163 $title = $revision->getTitle();
164 $this->mCache[$title->getDBkey()] = $revision->getText();
171 * Not really needed anymore
174 global $wgAllMessagesEn, $wgContLang;
175 if ( !$this->mKeys
) {
176 $this->mKeys
= array();
177 foreach ( $wgAllMessagesEn as $key => $value ) {
178 $title = $wgContLang->ucfirst( $key );
179 array_push( $this->mKeys
, $title );
188 function isCacheable( $key ) {
192 function replace( $title, $text ) {
195 if ( is_array( $this->mCache
) ) {
196 $this->mCache
[$title] = $text;
197 $this->mMemc
->set( $this->mMemcKey
, $this->mCache
, $this->mExpiry
);
204 * Represents a write lock on the messages key
207 if ( !$this->mUseCache
) {
211 $lockKey = $this->mMemcKey
. 'lock';
212 for ($i=0; $i < MSG_WAIT_TIMEOUT
&& !$this->mMemc
->add( $lockKey, 1, MSG_LOCK_TIMEOUT
); $i++
) {
216 return $i >= MSG_WAIT_TIMEOUT
;
220 if ( !$this->mUseCache
) {
224 $lockKey = $this->mMemcKey
. 'lock';
225 $this->mMemc
->delete( $lockKey );
228 function get( $key, $useDB, $forcontent=true, $isfullkey = false ) {
229 global $wgContLanguageCode;
232 $lang =& $wgContLang;
233 $langcode = $wgContLanguageCode;
235 global $wgLang, $wgLanguageCode;
237 $langcode = $wgLanguageCode;
239 # If uninitialised, someone is trying to call this halfway through Setup.php
240 if( !$this->mInitialised
) {
241 return '<' . htmlspecialchars($key) . '>';
243 # If cache initialization was deferred, start it now.
244 if( $this->mDeferred
) {
249 if( !$this->mDisable
&& $useDB ) {
250 $title = $lang->ucfirst( $key );
251 if(!$isfullkey && ($langcode != $wgContLanguageCode) ) {
252 $title .= '/' . $langcode;
254 $message = $this->getFromCache( $title );
256 # Try the extension array
258 $message = @$this->mExtensionMessages
[$key];
261 # Try the array in the language object
263 wfSuppressWarnings();
264 $message = $lang->getMessage( $key );
268 # Try the English array
269 if( !$message && $langcode != 'en' ) {
270 wfSuppressWarnings();
271 $message = Language
::getMessage( $key );
275 # Is this a custom message? Try the default language in the db...
277 !$this->mDisable
&& $useDB &&
278 !$isfullkey && ($langcode != $wgContLanguageCode) ) {
279 $message = $this->getFromCache( $lang->ucfirst( $key ) );
284 return '<' . htmlspecialchars($key) . '>';
288 $message = $this->transform( $message );
292 function getFromCache( $title ) {
296 if( $this->mUseCache
&& is_array( $this->mCache
) && array_key_exists( $title, $this->mCache
) ) {
297 $message = $this->mCache
[$title];
300 if ( !$message && $this->mUseCache
) {
301 $message = $this->mMemc
->get( $this->mMemcKey
. ':' . $title );
303 $this->mCache
[$title] = $message;
307 # If it wasn't in the cache, load each message from the DB individually
309 $revision = Revision
::newFromTitle( Title
::makeTitle( NS_MEDIAWIKI
, $title ) );
311 $message = $revision->getText();
312 if ($this->mUseCache
) {
313 $this->mCache
[$title]=$message;
314 /* individual messages may be often
315 recached until proper purge code exists
317 $this->mMemc
->set( $this->mMemcKey
. ':' . $title, $message, 300 );
325 function transform( $message ) {
326 if( !$this->mDisableTransform
) {
327 if( strpos( $message, '{{' ) !== false ) {
328 $message = $this->mParser
->transformMsg( $message, $this->mParserOptions
);
334 function disable() { $this->mDisable
= true; }
335 function enable() { $this->mDisable
= false; }
336 function disableTransform() { $this->mDisableTransform
= true; }
337 function enableTransform() { $this->mDisableTransform
= false; }
340 * Add a message to the cache
343 * @param mixed $value
345 function addMessage( $key, $value ) {
346 $this->mExtensionMessages
[$key] = $value;
350 * Add an associative array of message to the cache
352 * @param array $messages An associative array of key => values to be added
354 function addMessages( $messages ) {
355 foreach ( $messages as $key => $value ) {
356 $this->mExtensionMessages
[$key] = $value;
361 * Clear all stored messages. Mainly used after a mass rebuild.
364 if( $this->mUseCache
) {
365 $this->mMemc
->delete( $this->mMemcKey
);