Defer initialisation of the special page list, allow autoloading of the SpecialPage...
[lhc/web/wiklou.git] / includes / MessageCache.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 * @subpackage Cache
6 */
7
8 /**
9 *
10 */
11 define( 'MSG_LOAD_TIMEOUT', 60);
12 define( 'MSG_LOCK_TIMEOUT', 10);
13 define( 'MSG_WAIT_TIMEOUT', 10);
14
15 /**
16 * Message cache
17 * Performs various useful MediaWiki namespace-related functions
18 *
19 * @package MediaWiki
20 */
21 class MessageCache {
22 var $mCache, $mUseCache, $mDisable, $mExpiry;
23 var $mMemcKey, $mKeys, $mParserOptions, $mParser;
24 var $mExtensionMessages = array();
25 var $mInitialised = false;
26 var $mDeferred = true;
27
28 function initialise( &$memCached, $useDB, $expiry, $memcPrefix) {
29 $fname = 'MessageCache::initialise';
30 wfProfileIn( $fname );
31
32 $this->mUseCache = !is_null( $memCached );
33 $this->mMemc = &$memCached;
34 $this->mDisable = !$useDB;
35 $this->mExpiry = $expiry;
36 $this->mDisableTransform = false;
37 $this->mMemcKey = $memcPrefix.':messages';
38 $this->mKeys = false; # initialised on demand
39 $this->mInitialised = true;
40
41 wfProfileIn( $fname.'-parseropt' );
42 $this->mParserOptions = ParserOptions::newFromUser( $u=NULL );
43 wfProfileOut( $fname.'-parseropt' );
44 wfProfileIn( $fname.'-parser' );
45 $this->mParser = new Parser;
46 wfProfileOut( $fname.'-parser' );
47
48 # When we first get asked for a message,
49 # then we'll fill up the cache. If we
50 # can return a cache hit, this saves
51 # some extra milliseconds
52 $this->mDeferred = true;
53
54 wfProfileOut( $fname );
55 }
56
57 /**
58 * Try to load the cache from a local file
59 */
60 function loadFromLocal( $hash ) {
61 global $wgLocalMessageCache, $wgDBname;
62
63 $this->mCache = false;
64 if ( $wgLocalMessageCache === false ) {
65 return;
66 }
67
68 $filename = "$wgLocalMessageCache/messages-$wgDBname";
69
70 wfSuppressWarnings();
71 $file = fopen( $filename, 'r' );
72 wfRestoreWarnings();
73 if ( !$file ) {
74 return;
75 }
76
77 // Check to see if the file has the hash specified
78 $localHash = fread( $file, 32 );
79 if ( $hash == $localHash ) {
80 // All good, get the rest of it
81 $serialized = fread( $file, 1000000 );
82 $this->mCache = unserialize( $serialized );
83 }
84 fclose( $file );
85 }
86
87 /**
88 * Save the cache to a local file
89 */
90 function saveToLocal( $serialized, $hash ) {
91 global $wgLocalMessageCache, $wgDBname;
92
93 if ( $wgLocalMessageCache === false ) {
94 return;
95 }
96
97 $filename = "$wgLocalMessageCache/messages-$wgDBname";
98 $oldUmask = umask( 0 );
99 wfMkdirParents( $wgLocalMessageCache, 0777 );
100 umask( $oldUmask );
101
102 $file = fopen( $filename, 'w' );
103 if ( !$file ) {
104 wfDebug( "Unable to open local cache file for writing\n" );
105 return;
106 }
107
108 fwrite( $file, $hash . $serialized );
109 fclose( $file );
110 @chmod( $filename, 0666 );
111 }
112
113 function loadFromScript( $hash ) {
114 global $wgLocalMessageCache, $wgDBname;
115 if ( $wgLocalMessageCache === false ) {
116 return;
117 }
118
119 $filename = "$wgLocalMessageCache/messages-$wgDBname";
120
121 wfSuppressWarnings();
122 $file = fopen( $filename, 'r' );
123 wfRestoreWarnings();
124 if ( !$file ) {
125 return;
126 }
127 $localHash=substr(fread($file,40),8);
128 fclose($file);
129 if ($hash!=$localHash) {
130 return;
131 }
132 require("$wgLocalMessageCache/messages-$wgDBname");
133 }
134
135 function saveToScript($array, $hash) {
136 global $wgLocalMessageCache, $wgDBname;
137 if ( $wgLocalMessageCache === false ) {
138 return;
139 }
140
141 $filename = "$wgLocalMessageCache/messages-$wgDBname";
142 $oldUmask = umask( 0 );
143 wfMkdirParents( $wgLocalMessageCache, 0777 );
144 umask( $oldUmask );
145 $file = fopen( $filename.'.tmp', 'w');
146 fwrite($file,"<?php\n//$hash\n\n \$this->mCache = array(");
147
148 foreach ($array as $key => $message) {
149 fwrite($file, "'". $this->escapeForScript($key).
150 "' => '" . $this->escapeForScript($message).
151 "',\n");
152 }
153 fwrite($file,");\n?>");
154 fclose($file);
155 rename($filename.'.tmp',$filename);
156 }
157
158 function escapeForScript($string) {
159 $string = str_replace( '\\', '\\\\', $string );
160 $string = str_replace( '\'', '\\\'', $string );
161 return $string;
162 }
163
164 /**
165 * Loads messages either from memcached or the database, if not disabled
166 * On error, quietly switches to a fallback mode
167 * Returns false for a reportable error, true otherwise
168 */
169 function load() {
170 global $wgLocalMessageCache, $wgLocalMessageCacheSerialized;
171
172 if ( $this->mDisable ) {
173 static $shownDisabled = false;
174 if ( !$shownDisabled ) {
175 wfDebug( "MessageCache::load(): disabled\n" );
176 $shownDisabled = true;
177 }
178 return true;
179 }
180 $fname = 'MessageCache::load';
181 wfProfileIn( $fname );
182 $success = true;
183
184 if ( $this->mUseCache ) {
185 $this->mCache = false;
186
187 # Try local cache
188 wfProfileIn( $fname.'-fromlocal' );
189 $hash = $this->mMemc->get( "{$this->mMemcKey}-hash" );
190 if ( $hash ) {
191 if ($wgLocalMessageCacheSerialized) {
192 $this->loadFromLocal( $hash );
193 } else {
194 $this->loadFromScript( $hash );
195 }
196 }
197 wfProfileOut( $fname.'-fromlocal' );
198
199 # Try memcached
200 if ( !$this->mCache ) {
201 wfProfileIn( $fname.'-fromcache' );
202 $this->mCache = $this->mMemc->get( $this->mMemcKey );
203
204 # Save to local cache
205 if ( $wgLocalMessageCache !== false ) {
206 $serialized = serialize( $this->mCache );
207 if ( !$hash ) {
208 $hash = md5( $serialized );
209 $this->mMemc->set( "{$this->mMemcKey}-hash", $hash, $this->mExpiry );
210 }
211 if ($wgLocalMessageCacheSerialized) {
212 $this->saveToLocal( $serialized,$hash );
213 } else {
214 $this->saveToScript( $this->mCache, $hash );
215 }
216 }
217 wfProfileOut( $fname.'-fromcache' );
218 }
219
220
221 # If there's nothing in memcached, load all the messages from the database
222 if ( !$this->mCache ) {
223 wfDebug( "MessageCache::load(): loading all messages\n" );
224 $this->lock();
225 # Other threads don't need to load the messages if another thread is doing it.
226 $success = $this->mMemc->add( $this->mMemcKey.'-status', "loading", MSG_LOAD_TIMEOUT );
227 if ( $success ) {
228 wfProfileIn( $fname.'-load' );
229 $this->loadFromDB();
230 wfProfileOut( $fname.'-load' );
231
232 # Save in memcached
233 # Keep trying if it fails, this is kind of important
234 wfProfileIn( $fname.'-save' );
235 for ($i=0; $i<20 &&
236 !$this->mMemc->set( $this->mMemcKey, $this->mCache, $this->mExpiry );
237 $i++ ) {
238 usleep(mt_rand(500000,1500000));
239 }
240
241 # Save to local cache
242 if ( $wgLocalMessageCache !== false ) {
243 $serialized = serialize( $this->mCache );
244 $hash = md5( $serialized );
245 $this->mMemc->set( "{$this->mMemcKey}-hash", $hash, $this->mExpiry );
246 if ($wgLocalMessageCacheSerialized) {
247 $this->saveToLocal( $serialized,$hash );
248 } else {
249 $this->saveToScript( $this->mCache, $hash );
250 }
251 }
252
253 wfProfileOut( $fname.'-save' );
254 if ( $i == 20 ) {
255 $this->mMemc->set( $this->mMemcKey.'-status', 'error', 60*5 );
256 wfDebug( "MemCached set error in MessageCache: restart memcached server!\n" );
257 }
258 }
259 $this->unlock();
260 }
261
262 if ( !is_array( $this->mCache ) ) {
263 wfDebug( "MessageCache::load(): individual message mode\n" );
264 # If it is 'loading' or 'error', switch to individual message mode, otherwise disable
265 # Causing too much DB load, disabling -- TS
266 $this->mDisable = true;
267 /*
268 if ( $this->mCache == "loading" ) {
269 $this->mUseCache = false;
270 } elseif ( $this->mCache == "error" ) {
271 $this->mUseCache = false;
272 $success = false;
273 } else {
274 $this->mDisable = true;
275 $success = false;
276 }*/
277 $this->mCache = false;
278 }
279 }
280 wfProfileOut( $fname );
281 $this->mDeferred = false;
282 return $success;
283 }
284
285 /**
286 * Loads all or main part of cacheable messages from the database
287 */
288 function loadFromDB() {
289 global $wgAllMessagesEn, $wgLang;
290
291 $fname = 'MessageCache::loadFromDB';
292 $dbr =& wfGetDB( DB_SLAVE );
293 if ( !$dbr ) {
294 throw new MWException( 'Invalid database object' );
295 }
296 $conditions = array( 'page_is_redirect' => 0,
297 'page_namespace' => NS_MEDIAWIKI);
298 $res = $dbr->select( array( 'page', 'revision', 'text' ),
299 array( 'page_title', 'old_text', 'old_flags' ),
300 'page_is_redirect=0 AND page_namespace='.NS_MEDIAWIKI.' AND page_latest=rev_id AND rev_text_id=old_id',
301 $fname
302 );
303
304 $this->mCache = array();
305 for ( $row = $dbr->fetchObject( $res ); $row; $row = $dbr->fetchObject( $res ) ) {
306 $this->mCache[$row->page_title] = Revision::getRevisionText( $row );
307 }
308
309 # Negative caching
310 # Go through the language array and the extension array and make a note of
311 # any keys missing from the cache
312 foreach ( $wgAllMessagesEn as $key => $value ) {
313 $uckey = $wgLang->ucfirst( $key );
314 if ( !array_key_exists( $uckey, $this->mCache ) ) {
315 $this->mCache[$uckey] = false;
316 }
317 }
318
319 # Make sure all extension messages are available
320 wfLoadAllExtensions();
321
322 # Add them to the cache
323 foreach ( $this->mExtensionMessages as $key => $value ) {
324 $uckey = $wgLang->ucfirst( $key );
325 if ( !array_key_exists( $uckey, $this->mCache ) ) {
326 $this->mCache[$uckey] = false;
327 }
328 }
329
330 $dbr->freeResult( $res );
331 }
332
333 /**
334 * Not really needed anymore
335 */
336 function getKeys() {
337 global $wgAllMessagesEn, $wgContLang;
338 if ( !$this->mKeys ) {
339 $this->mKeys = array();
340 foreach ( $wgAllMessagesEn as $key => $value ) {
341 $title = $wgContLang->ucfirst( $key );
342 array_push( $this->mKeys, $title );
343 }
344 }
345 return $this->mKeys;
346 }
347
348 /**
349 * @deprecated
350 */
351 function isCacheable( $key ) {
352 return true;
353 }
354
355 function replace( $title, $text ) {
356 global $wgLocalMessageCache, $wgLocalMessageCacheSerialized, $parserMemc, $wgDBname;
357
358 $this->lock();
359 $this->load();
360 $parserMemc->delete("$wgDBname:sidebar");
361 if ( is_array( $this->mCache ) ) {
362 $this->mCache[$title] = $text;
363 $this->mMemc->set( $this->mMemcKey, $this->mCache, $this->mExpiry );
364
365 # Save to local cache
366 if ( $wgLocalMessageCache !== false ) {
367 $serialized = serialize( $this->mCache );
368 $hash = md5( $serialized );
369 $this->mMemc->set( "{$this->mMemcKey}-hash", $hash, $this->mExpiry );
370 if ($wgLocalMessageCacheSerialized) {
371 $this->saveToLocal( $serialized,$hash );
372 } else {
373 $this->saveToScript( $this->mCache, $hash );
374 }
375 }
376
377
378 }
379 $this->unlock();
380 }
381
382 /**
383 * Returns success
384 * Represents a write lock on the messages key
385 */
386 function lock() {
387 if ( !$this->mUseCache ) {
388 return true;
389 }
390
391 $lockKey = $this->mMemcKey . 'lock';
392 for ($i=0; $i < MSG_WAIT_TIMEOUT && !$this->mMemc->add( $lockKey, 1, MSG_LOCK_TIMEOUT ); $i++ ) {
393 sleep(1);
394 }
395
396 return $i >= MSG_WAIT_TIMEOUT;
397 }
398
399 function unlock() {
400 if ( !$this->mUseCache ) {
401 return;
402 }
403
404 $lockKey = $this->mMemcKey . 'lock';
405 $this->mMemc->delete( $lockKey );
406 }
407
408 function get( $key, $useDB, $forcontent=true, $isfullkey = false ) {
409 global $wgContLanguageCode;
410 if( $forcontent ) {
411 global $wgContLang;
412 $lang =& $wgContLang;
413 $langcode = $wgContLanguageCode;
414 } else {
415 global $wgLang, $wgLanguageCode;
416 $lang =& $wgLang;
417 $langcode = $wgLanguageCode;
418 }
419 # If uninitialised, someone is trying to call this halfway through Setup.php
420 if( !$this->mInitialised ) {
421 return '&lt;' . htmlspecialchars($key) . '&gt;';
422 }
423 # If cache initialization was deferred, start it now.
424 if( $this->mDeferred && !$this->mDisable && $useDB ) {
425 $this->load();
426 }
427
428 $message = false;
429 if( !$this->mDisable && $useDB ) {
430 $title = $lang->ucfirst( $key );
431 if(!$isfullkey && ($langcode != $wgContLanguageCode) ) {
432 $title .= '/' . $langcode;
433 }
434 $message = $this->getFromCache( $title );
435 }
436 # Try the extension array
437 if( $message === false && array_key_exists( $key, $this->mExtensionMessages ) ) {
438 $message = $this->mExtensionMessages[$key];
439 }
440
441 # Try the array in the language object
442 if( $message === false ) {
443 wfSuppressWarnings();
444 $message = $lang->getMessage( $key );
445 wfRestoreWarnings();
446 if ( is_null( $message ) ) {
447 $message = false;
448 }
449 }
450
451 # Try the English array
452 if( $message === false && $langcode != 'en' ) {
453 wfSuppressWarnings();
454 $message = Language::getMessage( $key );
455 wfRestoreWarnings();
456 if ( is_null( $message ) ) {
457 $message = false;
458 }
459 }
460
461 # Is this a custom message? Try the default language in the db...
462 if( ($message === false || $message === '-' ) &&
463 !$this->mDisable && $useDB &&
464 !$isfullkey && ($langcode != $wgContLanguageCode) ) {
465 $message = $this->getFromCache( $lang->ucfirst( $key ) );
466 }
467
468 # Final fallback
469 if( $message === false ) {
470 return '&lt;' . htmlspecialchars($key) . '&gt;';
471 }
472
473 # Replace brace tags
474 $message = $this->transform( $message );
475 return $message;
476 }
477
478 function getFromCache( $title ) {
479 $message = false;
480
481 # Try the cache
482 if( $this->mUseCache && is_array( $this->mCache ) && array_key_exists( $title, $this->mCache ) ) {
483 return $this->mCache[$title];
484 }
485
486 # Try individual message cache
487 if ( $this->mUseCache ) {
488 $message = $this->mMemc->get( $this->mMemcKey . ':' . $title );
489 if ( $message == '###NONEXISTENT###' ) {
490 return false;
491 } elseif( !is_null( $message ) ) {
492 $this->mCache[$title] = $message;
493 return $message;
494 } else {
495 $message = false;
496 }
497 }
498
499 # Call message Hooks, in case they are defined
500 wfRunHooks('MessagesPreLoad',array($title,&$message));
501
502 # If it wasn't in the cache, load each message from the DB individually
503 $revision = Revision::newFromTitle( Title::makeTitle( NS_MEDIAWIKI, $title ) );
504 if( $revision ) {
505 $message = $revision->getText();
506 if ($this->mUseCache) {
507 $this->mCache[$title]=$message;
508 /* individual messages may be often
509 recached until proper purge code exists
510 */
511 $this->mMemc->set( $this->mMemcKey . ':' . $title, $message, 300 );
512 }
513 } else {
514 # Negative caching
515 # Use some special text instead of false, because false gets converted to '' somewhere
516 $this->mMemc->set( $this->mMemcKey . ':' . $title, '###NONEXISTENT###', $this->mExpiry );
517 }
518
519 return $message;
520 }
521
522 function transform( $message ) {
523 if( !$this->mDisableTransform ) {
524 if( strpos( $message, '{{' ) !== false ) {
525 $message = $this->mParser->transformMsg( $message, $this->mParserOptions );
526 }
527 }
528 return $message;
529 }
530
531 function disable() { $this->mDisable = true; }
532 function enable() { $this->mDisable = false; }
533 function disableTransform() { $this->mDisableTransform = true; }
534 function enableTransform() { $this->mDisableTransform = false; }
535 function setTransform( $x ) { $this->mDisableTransform = $x; }
536 function getTransform() { return $this->mDisableTransform; }
537
538 /**
539 * Add a message to the cache
540 *
541 * @param mixed $key
542 * @param mixed $value
543 */
544 function addMessage( $key, $value ) {
545 $this->mExtensionMessages[$key] = $value;
546 }
547
548 /**
549 * Add an associative array of message to the cache
550 *
551 * @param array $messages An associative array of key => values to be added
552 */
553 function addMessages( $messages ) {
554 foreach ( $messages as $key => $value ) {
555 $this->addMessage( $key, $value );
556 }
557 }
558
559 /**
560 * Clear all stored messages. Mainly used after a mass rebuild.
561 */
562 function clear() {
563 if( $this->mUseCache ) {
564 $this->mMemc->delete( $this->mMemcKey );
565 }
566 }
567 }
568 ?>