2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2003-12-14 14:32:19 +00:00
|
|
|
|
|
|
|
|
# Message cache
|
|
|
|
|
# Performs various useful MediaWiki namespace-related functions
|
|
|
|
|
|
|
|
|
|
define( "MSG_LOAD_TIMEOUT", 60);
|
|
|
|
|
define( "MSG_LOCK_TIMEOUT", 10);
|
|
|
|
|
define( "MSG_WAIT_TIMEOUT", 10);
|
|
|
|
|
|
|
|
|
|
class MessageCache
|
|
|
|
|
{
|
|
|
|
|
var $mCache, $mUseCache, $mDisable, $mExpiry;
|
2004-04-05 10:38:40 +00:00
|
|
|
var $mMemcKey, $mKeys, $mParserOptions, $mParser;
|
2004-01-07 13:05:27 +00:00
|
|
|
|
|
|
|
|
var $mInitialised = false;
|
2003-12-14 14:32:19 +00:00
|
|
|
|
|
|
|
|
function initialise( $useMemCached, $useDB, $expiry, $memcPrefix ) {
|
|
|
|
|
$this->mUseCache = $useMemCached;
|
|
|
|
|
$this->mDisable = !$useDB;
|
|
|
|
|
$this->mExpiry = $expiry;
|
2004-05-03 10:21:26 +00:00
|
|
|
$this->mDisableTransform = false;
|
2003-12-14 14:32:19 +00:00
|
|
|
$this->mMemcKey = "$memcPrefix:messages";
|
|
|
|
|
$this->mKeys = false; # initialised on demand
|
2004-01-07 13:05:27 +00:00
|
|
|
$this->mInitialised = true;
|
2004-04-05 10:38:40 +00:00
|
|
|
$this->mParserOptions = ParserOptions::newFromUser( $u=NULL );
|
|
|
|
|
$this->mParser = new Parser;
|
|
|
|
|
|
2003-12-14 14:32:19 +00:00
|
|
|
$this->load();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Loads messages either from memcached or the database, if not disabled
|
|
|
|
|
# On error, quietly switches to a fallback mode
|
|
|
|
|
# Returns false for a reportable error, true otherwise
|
|
|
|
|
function load() {
|
|
|
|
|
global $wgAllMessagesEn, $wgMemc;
|
|
|
|
|
|
|
|
|
|
if ( $this->mDisable ) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$success = true;
|
|
|
|
|
|
|
|
|
|
if ( $this->mUseCache ) {
|
|
|
|
|
$this->mCache = $wgMemc->get( $this->mMemcKey );
|
|
|
|
|
|
|
|
|
|
# If there's nothing in memcached, load all the messages from the database
|
|
|
|
|
if ( !$this->mCache ) {
|
|
|
|
|
$this->lock();
|
|
|
|
|
# Other threads don't need to load the messages if another thread is doing it.
|
|
|
|
|
$wgMemc->set( $this->mMemcKey, "loading", MSG_LOAD_TIMEOUT );
|
|
|
|
|
$this->loadFromDB();
|
|
|
|
|
# Save in memcached
|
|
|
|
|
if ( !$wgMemc->set( $this->mMemcKey, $this->mCache, $this->mExpiry ) ) {
|
|
|
|
|
# Hack for slabs reassignment problem
|
|
|
|
|
$wgMemc->set( $this->mMemcKey, "error" );
|
|
|
|
|
wfDebug( "MemCached set error in MessageCache: restart memcached server!\n" );
|
|
|
|
|
}
|
|
|
|
|
$this->unlock();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !is_array( $this->mCache ) ) {
|
|
|
|
|
# If it is 'loading' or 'error', switch to individual message mode, otherwise disable
|
|
|
|
|
if ( $this->mCache == "loading" ) {
|
|
|
|
|
$this->mUseCache = false;
|
|
|
|
|
} elseif ( $this->mCache == "error" ) {
|
|
|
|
|
$this->mUseCache = false;
|
|
|
|
|
$success = false;
|
|
|
|
|
} else {
|
|
|
|
|
$this->mDisable = true;
|
|
|
|
|
$success = false;
|
|
|
|
|
}
|
|
|
|
|
$this->mCache = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Loads all cacheable messages from the database
|
|
|
|
|
function loadFromDB()
|
|
|
|
|
{
|
2004-01-25 12:38:44 +00:00
|
|
|
$fname = "MessageCache::loadFromDB";
|
2003-12-14 14:32:19 +00:00
|
|
|
$sql = "SELECT cur_title,cur_text FROM cur WHERE cur_namespace=" . NS_MEDIAWIKI;
|
|
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
|
|
|
|
|
|
|
|
|
$this->mCache = array();
|
|
|
|
|
for ( $row = wfFetchObject( $res ); $row; $row = wfFetchObject( $res ) ) {
|
|
|
|
|
$this->mCache[$row->cur_title] = $row->cur_text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wfFreeResult( $res );
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
# Not really needed anymore
|
2003-12-14 14:32:19 +00:00
|
|
|
function getKeys() {
|
2004-01-25 05:57:02 +00:00
|
|
|
global $wgAllMessagesEn, $wgLang;
|
2003-12-14 14:32:19 +00:00
|
|
|
if ( !$this->mKeys ) {
|
2004-01-25 08:49:45 +00:00
|
|
|
$this->mKeys = array();
|
|
|
|
|
foreach ( $wgAllMessagesEn as $key => $value ) {
|
2004-01-25 12:38:44 +00:00
|
|
|
array_push( $this->mKeys, $wgLang->ucfirst( $key ) );
|
2004-01-25 08:49:45 +00:00
|
|
|
}
|
2003-12-14 14:32:19 +00:00
|
|
|
}
|
|
|
|
|
return $this->mKeys;
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
# Obsolete
|
2003-12-14 14:32:19 +00:00
|
|
|
function isCacheable( $key ) {
|
2004-03-20 15:03:26 +00:00
|
|
|
return true;
|
|
|
|
|
/*
|
2004-01-25 05:57:02 +00:00
|
|
|
global $wgAllMessagesEn, $wgLang;
|
|
|
|
|
return array_key_exists( $wgLang->lcfirst( $key ), $wgAllMessagesEn ) ||
|
2003-12-14 14:32:19 +00:00
|
|
|
array_key_exists( $key, $wgAllMessagesEn );
|
2004-03-20 15:03:26 +00:00
|
|
|
*/
|
2003-12-14 14:32:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function replace( $title, $text ) {
|
|
|
|
|
global $wgMemc;
|
2004-03-20 15:03:26 +00:00
|
|
|
$this->lock();
|
|
|
|
|
$this->load();
|
|
|
|
|
if ( is_array( $this->mCache ) ) {
|
|
|
|
|
$this->mCache[$title] = $text;
|
|
|
|
|
$wgMemc->set( $this->mMemcKey, $this->mCache, $this->mExpiry );
|
2003-12-14 14:32:19 +00:00
|
|
|
}
|
2004-03-20 15:03:26 +00:00
|
|
|
$this->unlock();
|
2003-12-14 14:32:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Returns success
|
|
|
|
|
# Represents a write lock on the messages key
|
|
|
|
|
function lock() {
|
|
|
|
|
global $wgMemc;
|
|
|
|
|
|
|
|
|
|
if ( !$this->mUseCache ) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$lockKey = $this->mMemcKey . "lock";
|
|
|
|
|
for ($i=0; $i < MSG_WAIT_TIMEOUT && !$wgMemc->add( $lockKey, 1, MSG_LOCK_TIMEOUT ); $i++ ) {
|
|
|
|
|
sleep(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $i >= MSG_WAIT_TIMEOUT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function unlock() {
|
|
|
|
|
global $wgMemc;
|
|
|
|
|
|
|
|
|
|
if ( !$this->mUseCache ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$lockKey = $this->mMemcKey . "lock";
|
|
|
|
|
$wgMemc->delete( $lockKey );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function get( $key, $useDB ) {
|
|
|
|
|
global $wgLang, $wgLanguageCode;
|
2004-01-07 13:05:27 +00:00
|
|
|
|
|
|
|
|
# If uninitialised, someone is trying to call this halfway through Setup.php
|
|
|
|
|
if ( !$this->mInitialised ) {
|
|
|
|
|
return "<$key>";
|
|
|
|
|
}
|
|
|
|
|
|
2003-12-14 14:32:19 +00:00
|
|
|
if ( $this->mDisable ) {
|
2004-04-05 10:38:40 +00:00
|
|
|
return $this->transform( $wgLang->getMessage( $key ) );
|
2003-12-14 14:32:19 +00:00
|
|
|
}
|
2004-01-25 05:57:02 +00:00
|
|
|
$title = $wgLang->ucfirst( $key );
|
2003-12-14 14:32:19 +00:00
|
|
|
|
|
|
|
|
$message = false;
|
|
|
|
|
|
|
|
|
|
# Try the cache
|
2004-04-07 13:59:15 +00:00
|
|
|
if ( $this->mUseCache && $this->mCache && array_key_exists( $title, $this->mCache ) ) {
|
2003-12-14 14:32:19 +00:00
|
|
|
$message = $this->mCache[$title];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# If it wasn't in the cache, load each message from the DB individually
|
|
|
|
|
if ( !$message && $useDB) {
|
2004-03-20 15:03:26 +00:00
|
|
|
$result = wfGetArray( "cur", array("cur_text"),
|
|
|
|
|
array( "cur_namespace" => NS_MEDIAWIKI, "cur_title" => $title ),
|
|
|
|
|
"MessageCache::get" );
|
|
|
|
|
if ( $result ) {
|
|
|
|
|
$message = $result->cur_text;
|
2003-12-14 14:32:19 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Try the array in $wgLang
|
|
|
|
|
if ( !$message ) {
|
|
|
|
|
$message = $wgLang->getMessage( $key );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Try the English array
|
|
|
|
|
if ( !$message && $wgLanguageCode != "en" ) {
|
|
|
|
|
$message = Language::getMessage( $key );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Final fallback
|
|
|
|
|
if ( !$message ) {
|
|
|
|
|
$message = "<$key>";
|
|
|
|
|
}
|
2004-04-05 10:38:40 +00:00
|
|
|
|
|
|
|
|
# Replace brace tags
|
|
|
|
|
$message = $this->transform( $message );
|
2003-12-14 14:32:19 +00:00
|
|
|
return $message;
|
|
|
|
|
}
|
2004-03-01 05:51:55 +00:00
|
|
|
|
2004-04-05 10:38:40 +00:00
|
|
|
function transform( $message ) {
|
2004-05-03 10:21:26 +00:00
|
|
|
if( !$this->mDisableTransform ) {
|
|
|
|
|
if ( strstr( $message, "{{" ) !== false ) {
|
|
|
|
|
$message = $this->mParser->transformMsg( $message, $this->mParserOptions );
|
|
|
|
|
}
|
2004-04-05 10:38:40 +00:00
|
|
|
}
|
|
|
|
|
return $message;
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-01 05:51:55 +00:00
|
|
|
function disable() { $this->mDisable = true; }
|
|
|
|
|
function enable() { $this->mDisable = false; }
|
2004-05-03 10:21:26 +00:00
|
|
|
function disableTransform() { $this->mDisableTransform = true; }
|
2004-03-01 05:51:55 +00:00
|
|
|
|
2003-12-14 14:32:19 +00:00
|
|
|
}
|
|
|
|
|
?>
|