Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / StubObject / StubObject.php
blobfeef2760c643d9126bdfd5fadf3f1645489b236d
1 <?php
3 // phpcs:disable MediaWiki.Commenting.FunctionComment.ObjectTypeHintReturn
4 // phpcs:disable MediaWiki.Commenting.FunctionComment.ObjectTypeHintParam
6 /**
7 * Delayed loading of global objects.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
24 * @file
27 namespace MediaWiki\StubObject;
29 use LogicException;
30 use Wikimedia\ObjectFactory\ObjectFactory;
32 /**
33 * Class to implement stub globals, which are globals that delay loading the
34 * their associated module code by deferring initialisation until the first
35 * method call.
37 * Note on reference parameters:
39 * If the called method takes any parameters by reference, the __call magic
40 * here won't work correctly. The solution is to unstub the object before
41 * calling the method.
43 * Note on unstub loops:
45 * Unstub loops (infinite recursion) sometimes occur when a constructor calls
46 * another function, and the other function calls some method of the stub. The
47 * best way to avoid this is to make constructors as lightweight as possible,
48 * deferring any initialisation which depends on other modules. As a last
49 * resort, you can use MediaWiki\StubObject\StubObject::isRealObject() to break the loop, but as a
50 * general rule, the stub object mechanism should be transparent, and code
51 * which refers to it should be kept to a minimum.
53 * @newable
55 class StubObject {
56 /** @var null|string */
57 protected $global;
59 /** @var null|string */
60 protected $class;
62 /** @var null|callable */
63 protected $factory;
65 /** @var array */
66 protected $params;
68 /**
69 * @stable to call
71 * @param string|null $global Name of the global variable.
72 * @param string|callable|null $class Name of the class of the real object
73 * or a factory function to call
74 * @param array $params Parameters to pass to constructor of the real object.
76 public function __construct( $global = null, $class = null, $params = [] ) {
77 $this->global = $global;
78 if ( is_callable( $class ) ) {
79 $this->factory = $class;
80 } else {
81 $this->class = $class;
83 $this->params = $params;
86 /**
87 * Returns a bool value whenever $obj is a stub object. Can be used to break
88 * a infinite loop when unstubbing an object.
90 * @param object $obj Object to check.
91 * @return bool True if $obj is not an instance of MediaWiki\StubObject\StubObject class.
93 public static function isRealObject( $obj ) {
94 return is_object( $obj ) && !$obj instanceof self;
97 /**
98 * Unstubs an object, if it is a stub object. Can be used to break a
99 * infinite loop when unstubbing an object or to avoid reference parameter
100 * breakage.
102 * @param object &$obj Object to check.
103 * @return void
105 public static function unstub( &$obj ) {
106 if ( $obj instanceof self ) {
107 $obj = $obj->_unstub( 'unstub', 3 );
112 * Function called if any function exists with that name in this object.
113 * It is used to unstub the object. Only used internally, PHP will call
114 * self::__call() function and that function will call this function.
115 * This function will also call the function with the same name in the real
116 * object.
118 * @param string $name Name of the function called
119 * @param array $args Arguments
120 * @return mixed
122 // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
123 public function _call( $name, $args ) {
124 $this->_unstub( $name, 5 );
125 return call_user_func_array( [ $GLOBALS[$this->global], $name ], $args );
129 * Create a new object to replace this stub object.
130 * @return object
132 // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
133 public function _newObject() {
134 $params = $this->factory
135 ? [ 'factory' => $this->factory ]
136 : [ 'class' => $this->class ];
138 // ObjectFactory::getObjectFromSpec accepts an array, not just a callable (phan bug)
139 // @phan-suppress-next-line PhanTypeInvalidCallableArraySize
140 return ObjectFactory::getObjectFromSpec( $params + [
141 'args' => $this->params,
142 'closure_expansion' => false,
143 ] );
147 * Function called by PHP if no function with that name exists in this
148 * object.
150 * @param string $name Name of the function called
151 * @param array $args Arguments
152 * @return mixed
154 public function __call( $name, $args ) {
155 return $this->_call( $name, $args );
159 * Wrapper for __get(), similar to _call() above
161 * @param string $name Name of the property to get
162 * @return mixed
164 // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
165 public function _get( $name ) {
166 $this->_unstub( "__get($name)", 5 );
167 return $GLOBALS[$this->global]->$name;
171 * Function called by PHP if no property with that name exists in this
172 * object.
174 * @param string $name Name of the property to get
175 * @return mixed
177 public function __get( $name ) {
178 return $this->_get( $name );
182 * Wrapper for __set(), similar to _call() above
184 * @param string $name Name of the property to set
185 * @param mixed $value New property value
187 // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
188 public function _set( $name, $value ) {
189 $this->_unstub( "__set($name)", 5 );
190 $GLOBALS[$this->global]->$name = $value;
194 * Function called by PHP if no property with that name exists in this
195 * object.
197 * @param string $name Name of the property to set
198 * @param mixed $value New property value
200 public function __set( $name, $value ) {
201 $this->_set( $name, $value );
205 * This function creates a new object of the real class and replace it in
206 * the global variable.
207 * This is public, for the convenience of external callers wishing to access
208 * properties, e.g. eval.php
210 * @param string $name Name of the method called in this object.
211 * @param int $level Level to go in the stack trace to get the function
212 * who called this function.
213 * @return object The unstubbed version of itself
215 // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
216 public function _unstub( $name = '_unstub', $level = 2 ) {
217 static $recursionLevel = 0;
219 if ( !$GLOBALS[$this->global] instanceof self ) {
220 return $GLOBALS[$this->global]; // already unstubbed.
223 if ( get_class( $GLOBALS[$this->global] ) != $this->class ) {
224 $caller = wfGetCaller( $level );
225 if ( ++$recursionLevel > 2 ) {
226 throw new LogicException( "Unstub loop detected on call of "
227 . "\${$this->global}->$name from $caller\n" );
229 wfDebug( "Unstubbing \${$this->global} on call of "
230 . "\${$this->global}::$name from $caller" );
231 $GLOBALS[$this->global] = $this->_newObject();
232 --$recursionLevel;
233 return $GLOBALS[$this->global];
238 /** @deprecated class alias since 1.40 */
239 class_alias( StubObject::class, 'StubObject' );