2006-07-26 07:15:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class to implement stub globals, which are globals that delay loading the
|
2008-04-14 07:45:50 +00:00
|
|
|
* their associated module code by deferring initialisation until the first
|
|
|
|
|
* method call.
|
2006-07-26 07:15:39 +00:00
|
|
|
*
|
2008-04-14 07:45:50 +00:00
|
|
|
* Note on unstub loops:
|
2006-07-26 07:15:39 +00:00
|
|
|
*
|
2008-04-14 07:45:50 +00:00
|
|
|
* Unstub loops (infinite recursion) sometimes occur when a constructor calls
|
|
|
|
|
* another function, and the other function calls some method of the stub. The
|
2006-07-26 07:15:39 +00:00
|
|
|
* best way to avoid this is to make constructors as lightweight as possible,
|
2008-04-14 07:45:50 +00:00
|
|
|
* deferring any initialisation which depends on other modules. As a last
|
|
|
|
|
* resort, you can use StubObject::isRealObject() to break the loop, but as a
|
|
|
|
|
* general rule, the stub object mechanism should be transparent, and code
|
2006-07-26 07:15:39 +00:00
|
|
|
* which refers to it should be kept to a minimum.
|
|
|
|
|
*/
|
|
|
|
|
class StubObject {
|
|
|
|
|
var $mGlobal, $mClass, $mParams;
|
2008-04-08 18:52:57 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Constructor.
|
|
|
|
|
*
|
2010-03-28 20:21:30 +00:00
|
|
|
* @param $global String: name of the global variable.
|
|
|
|
|
* @param $class String: name of the class of the real object.
|
|
|
|
|
* @param $params Array: parameters to pass to contructor of the real
|
|
|
|
|
* object.
|
2008-04-08 18:52:57 +00:00
|
|
|
*/
|
2006-07-26 07:15:39 +00:00
|
|
|
function __construct( $global = null, $class = null, $params = array() ) {
|
|
|
|
|
$this->mGlobal = $global;
|
|
|
|
|
$this->mClass = $class;
|
|
|
|
|
$this->mParams = $params;
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-08 18:52:57 +00:00
|
|
|
/**
|
|
|
|
|
* Returns a bool value whetever $obj is a stub object. Can be used to break
|
|
|
|
|
* a infinite loop when unstubbing an object.
|
|
|
|
|
*
|
2010-03-28 20:21:30 +00:00
|
|
|
* @param $obj Object to check.
|
|
|
|
|
* @return Boolean: true if $obj is not an instance of StubObject class.
|
2008-04-08 18:52:57 +00:00
|
|
|
*/
|
2006-07-26 07:15:39 +00:00
|
|
|
static function isRealObject( $obj ) {
|
2007-02-12 20:22:34 +00:00
|
|
|
return is_object( $obj ) && !($obj instanceof StubObject);
|
2006-07-26 07:15:39 +00:00
|
|
|
}
|
|
|
|
|
|
2008-04-08 18:52:57 +00:00
|
|
|
/**
|
|
|
|
|
* Function called if any function exists with that name in this object.
|
|
|
|
|
* It is used to unstub the object. Only used internally, PHP will call
|
|
|
|
|
* self::__call() function and that function will call this function.
|
|
|
|
|
* This function will also call the function with the same name in the real
|
|
|
|
|
* object.
|
|
|
|
|
*
|
2010-03-28 20:21:30 +00:00
|
|
|
* @param $name String: name of the function called
|
|
|
|
|
* @param $args Array: arguments
|
2008-04-08 18:52:57 +00:00
|
|
|
*/
|
2006-07-26 07:15:39 +00:00
|
|
|
function _call( $name, $args ) {
|
|
|
|
|
$this->_unstub( $name, 5 );
|
|
|
|
|
return call_user_func_array( array( $GLOBALS[$this->mGlobal], $name ), $args );
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-08 18:52:57 +00:00
|
|
|
/**
|
|
|
|
|
* Create a new object to replace this stub object.
|
|
|
|
|
*/
|
2006-07-26 07:15:39 +00:00
|
|
|
function _newObject() {
|
2011-01-03 02:10:05 +00:00
|
|
|
return MWFunction::newObj( $this->mClass, $this->mParams );
|
2006-07-26 07:15:39 +00:00
|
|
|
}
|
2007-02-12 20:18:05 +00:00
|
|
|
|
2008-04-08 18:52:57 +00:00
|
|
|
/**
|
|
|
|
|
* Function called by PHP if no function with that name exists in this
|
|
|
|
|
* object.
|
|
|
|
|
*
|
2010-03-28 20:21:30 +00:00
|
|
|
* @param $name String: name of the function called
|
|
|
|
|
* @param $args Array: arguments
|
2008-04-08 18:52:57 +00:00
|
|
|
*/
|
2006-07-26 07:15:39 +00:00
|
|
|
function __call( $name, $args ) {
|
|
|
|
|
return $this->_call( $name, $args );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2008-04-08 18:52:57 +00:00
|
|
|
* This function creates a new object of the real class and replace it in
|
|
|
|
|
* the global variable.
|
2008-04-14 07:45:50 +00:00
|
|
|
* This is public, for the convenience of external callers wishing to access
|
2006-07-26 07:15:39 +00:00
|
|
|
* properties, e.g. eval.php
|
2008-04-08 18:52:57 +00:00
|
|
|
*
|
2010-03-28 20:21:30 +00:00
|
|
|
* @param $name String: name of the method called in this object.
|
|
|
|
|
* @param $level Integer: level to go in the stact trace to get the function
|
|
|
|
|
* who called this function.
|
2006-07-26 07:15:39 +00:00
|
|
|
*/
|
|
|
|
|
function _unstub( $name = '_unstub', $level = 2 ) {
|
|
|
|
|
static $recursionLevel = 0;
|
2009-08-06 16:11:12 +00:00
|
|
|
|
|
|
|
|
if ( !($GLOBALS[$this->mGlobal] instanceof StubObject) )
|
|
|
|
|
return $GLOBALS[$this->mGlobal]; // already unstubbed.
|
|
|
|
|
|
2006-07-26 07:15:39 +00:00
|
|
|
if ( get_class( $GLOBALS[$this->mGlobal] ) != $this->mClass ) {
|
|
|
|
|
$fname = __METHOD__.'-'.$this->mGlobal;
|
|
|
|
|
wfProfileIn( $fname );
|
2006-08-02 18:48:30 +00:00
|
|
|
$caller = wfGetCaller( $level );
|
2006-07-26 07:15:39 +00:00
|
|
|
if ( ++$recursionLevel > 2 ) {
|
|
|
|
|
throw new MWException( "Unstub loop detected on call of \${$this->mGlobal}->$name from $caller\n" );
|
|
|
|
|
}
|
2008-11-04 02:04:53 +00:00
|
|
|
wfDebug( "Unstubbing \${$this->mGlobal} on call of \${$this->mGlobal}::$name from $caller\n" );
|
2010-11-30 18:44:50 +00:00
|
|
|
$GLOBALS[$this->mGlobal] = $this->_newObject();
|
2006-07-26 07:15:39 +00:00
|
|
|
--$recursionLevel;
|
|
|
|
|
wfProfileOut( $fname );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-08 18:52:57 +00:00
|
|
|
/**
|
|
|
|
|
* Stub object for the content language of this wiki. This object have to be in
|
|
|
|
|
* $wgContLang global.
|
|
|
|
|
*/
|
2006-07-26 07:15:39 +00:00
|
|
|
class StubContLang extends StubObject {
|
2008-04-08 18:52:57 +00:00
|
|
|
|
2006-07-26 07:15:39 +00:00
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct( 'wgContLang' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function __call( $name, $args ) {
|
2008-04-08 18:52:57 +00:00
|
|
|
return $this->_call( $name, $args );
|
2006-07-26 07:15:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _newObject() {
|
2010-09-07 22:37:55 +00:00
|
|
|
global $wgLanguageCode;
|
|
|
|
|
$obj = Language::factory( $wgLanguageCode );
|
2006-07-26 07:15:39 +00:00
|
|
|
$obj->initEncoding();
|
|
|
|
|
$obj->initContLang();
|
|
|
|
|
return $obj;
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-04-08 18:52:57 +00:00
|
|
|
|
|
|
|
|
/**
|
2011-04-03 20:40:27 +00:00
|
|
|
* Stub object for the user language. It depends of the user preferences and
|
|
|
|
|
* "uselang" parameter that can be passed to index.php. This object have to be
|
|
|
|
|
* in $wgLang global.
|
2008-04-08 18:52:57 +00:00
|
|
|
*/
|
2011-04-03 20:40:27 +00:00
|
|
|
class StubUserLang extends StubObject {
|
|
|
|
|
|
|
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct( 'wgLang' );
|
2006-07-26 07:15:39 +00:00
|
|
|
}
|
2011-04-03 20:40:27 +00:00
|
|
|
|
2006-07-26 07:15:39 +00:00
|
|
|
function __call( $name, $args ) {
|
|
|
|
|
return $this->_call( $name, $args );
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-03 20:40:27 +00:00
|
|
|
function _newObject() {
|
2011-04-03 23:56:15 +00:00
|
|
|
return RequestContext::getMain()->lang;
|
2009-05-30 19:49:51 +00:00
|
|
|
}
|
|
|
|
|
}
|