12 use Liuggio\StatsdClient\Factory\StatsdDataFactory
;
14 use MediaWiki\Linker\LinkRenderer
;
15 use MediaWiki\Linker\LinkRendererFactory
;
16 use MediaWiki\Services\SalvageableService
;
17 use MediaWiki\Services\ServiceContainer
;
21 use SearchEngineConfig
;
22 use SearchEngineFactory
;
29 use MediaWiki\Interwiki\InterwikiLookup
;
32 * Service locator for MediaWiki core services.
34 * This program is free software; you can redistribute it and/or modify
35 * it under the terms of the GNU General Public License as published by
36 * the Free Software Foundation; either version 2 of the License, or
37 * (at your option) any later version.
39 * This program is distributed in the hope that it will be useful,
40 * but WITHOUT ANY WARRANTY; without even the implied warranty of
41 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
42 * GNU General Public License for more details.
44 * You should have received a copy of the GNU General Public License along
45 * with this program; if not, write to the Free Software Foundation, Inc.,
46 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
47 * http://www.gnu.org/copyleft/gpl.html
55 * MediaWikiServices is the service locator for the application scope of MediaWiki.
56 * Its implemented as a simple configurable DI container.
57 * MediaWikiServices acts as a top level factory/registry for top level services, and builds
58 * the network of service objects that defines MediaWiki's application logic.
59 * It acts as an entry point to MediaWiki's dependency injection mechanism.
61 * Services are defined in the "wiring" array passed to the constructor,
62 * or by calling defineService().
64 * @see docs/injection.txt for an overview of using dependency injection in the
65 * MediaWiki code base.
67 class MediaWikiServices
extends ServiceContainer
{
70 * @var MediaWikiServices|null
72 private static $instance = null;
75 * Returns the global default instance of the top level service locator.
79 * The default instance is initialized using the service instantiator functions
80 * defined in ServiceWiring.php.
82 * @note This should only be called by static functions! The instance returned here
83 * should not be passed around! Objects that need access to a service should have
84 * that service injected into the constructor, never a service locator!
86 * @return MediaWikiServices
88 public static function getInstance() {
89 if ( self
::$instance === null ) {
90 // NOTE: constructing GlobalVarConfig here is not particularly pretty,
91 // but some information from the global scope has to be injected here,
92 // even if it's just a file name or database credentials to load
93 // configuration from.
94 $bootstrapConfig = new GlobalVarConfig();
95 self
::$instance = self
::newInstance( $bootstrapConfig, 'load' );
98 return self
::$instance;
102 * Replaces the global MediaWikiServices instance.
106 * @note This is for use in PHPUnit tests only!
108 * @throws MWException if called outside of PHPUnit tests.
110 * @param MediaWikiServices $services The new MediaWikiServices object.
112 * @return MediaWikiServices The old MediaWikiServices object, so it can be restored later.
114 public static function forceGlobalInstance( MediaWikiServices
$services ) {
115 if ( !defined( 'MW_PHPUNIT_TEST' ) ) {
116 throw new MWException( __METHOD__
. ' must not be used outside unit tests.' );
119 $old = self
::getInstance();
120 self
::$instance = $services;
126 * Creates a new instance of MediaWikiServices and sets it as the global default
127 * instance. getInstance() will return a different MediaWikiServices object
128 * after every call to resetGlobalInstance().
132 * @warning This should not be used during normal operation. It is intended for use
133 * when the configuration has changed significantly since bootstrap time, e.g.
134 * during the installation process or during testing.
136 * @warning Calling resetGlobalInstance() may leave the application in an inconsistent
137 * state. Calling this is only safe under the ASSUMPTION that NO REFERENCE to
138 * any of the services managed by MediaWikiServices exist. If any service objects
139 * managed by the old MediaWikiServices instance remain in use, they may INTERFERE
140 * with the operation of the services managed by the new MediaWikiServices.
141 * Operating with a mix of services created by the old and the new
142 * MediaWikiServices instance may lead to INCONSISTENCIES and even DATA LOSS!
143 * Any class implementing LAZY LOADING is especially prone to this problem,
144 * since instances would typically retain a reference to a storage layer service.
146 * @see forceGlobalInstance()
147 * @see resetGlobalInstance()
148 * @see resetBetweenTest()
150 * @param Config|null $bootstrapConfig The Config object to be registered as the
151 * 'BootstrapConfig' service. This has to contain at least the information
152 * needed to set up the 'ConfigFactory' service. If not given, the bootstrap
153 * config of the old instance of MediaWikiServices will be re-used. If there
154 * was no previous instance, a new GlobalVarConfig object will be used to
155 * bootstrap the services.
157 * @param string $quick Set this to "quick" to allow expensive resources to be re-used.
158 * See SalvageableService for details.
160 * @throws MWException If called after MW_SERVICE_BOOTSTRAP_COMPLETE has been defined in
161 * Setup.php (unless MW_PHPUNIT_TEST or MEDIAWIKI_INSTALL or RUN_MAINTENANCE_IF_MAIN
164 public static function resetGlobalInstance( Config
$bootstrapConfig = null, $quick = '' ) {
165 if ( self
::$instance === null ) {
166 // no global instance yet, nothing to reset
170 self
::failIfResetNotAllowed( __METHOD__
);
172 if ( $bootstrapConfig === null ) {
173 $bootstrapConfig = self
::$instance->getBootstrapConfig();
176 $oldInstance = self
::$instance;
178 self
::$instance = self
::newInstance( $bootstrapConfig );
179 self
::$instance->importWiring( $oldInstance, [ 'BootstrapConfig' ] );
181 if ( $quick === 'quick' ) {
182 self
::$instance->salvage( $oldInstance );
184 $oldInstance->destroy();
190 * Salvages the state of any salvageable service instances in $other.
192 * @note $other will have been destroyed when salvage() returns.
194 * @param MediaWikiServices $other
196 private function salvage( self
$other ) {
197 foreach ( $this->getServiceNames() as $name ) {
198 $oldService = $other->peekService( $name );
200 if ( $oldService instanceof SalvageableService
) {
201 /** @var SalvageableService $newService */
202 $newService = $this->getService( $name );
203 $newService->salvage( $oldService );
211 * Creates a new MediaWikiServices instance and initializes it according to the
212 * given $bootstrapConfig. In particular, all wiring files defined in the
213 * ServiceWiringFiles setting are loaded, and the MediaWikiServices hook is called.
215 * @param Config|null $bootstrapConfig The Config object to be registered as the
216 * 'BootstrapConfig' service.
218 * @param string $loadWiring set this to 'load' to load the wiring files specified
219 * in the 'ServiceWiringFiles' setting in $bootstrapConfig.
221 * @return MediaWikiServices
222 * @throws MWException
223 * @throws \FatalError
225 private static function newInstance( Config
$bootstrapConfig, $loadWiring = '' ) {
226 $instance = new self( $bootstrapConfig );
228 // Load the default wiring from the specified files.
229 if ( $loadWiring === 'load' ) {
230 $wiringFiles = $bootstrapConfig->get( 'ServiceWiringFiles' );
231 $instance->loadWiringFiles( $wiringFiles );
234 // Provide a traditional hook point to allow extensions to configure services.
235 Hooks
::run( 'MediaWikiServices', [ $instance ] );
241 * Disables all storage layer services. After calling this, any attempt to access the
242 * storage layer will result in an error. Use resetGlobalInstance() to restore normal
247 * @warning This is intended for extreme situations only and should never be used
248 * while serving normal web requests. Legitimate use cases for this method include
249 * the installation process. Test fixtures may also use this, if the fixture relies
252 * @see resetGlobalInstance()
253 * @see resetChildProcessServices()
255 public static function disableStorageBackend() {
256 // TODO: also disable some Caches, JobQueues, etc
257 $destroy = [ 'DBLoadBalancer', 'DBLoadBalancerFactory' ];
258 $services = self
::getInstance();
260 foreach ( $destroy as $name ) {
261 $services->disableService( $name );
264 ObjectCache
::clear();
268 * Resets any services that may have become stale after a child process
269 * returns from after pcntl_fork(). It's also safe, but generally unnecessary,
270 * to call this method from the parent process.
274 * @note This is intended for use in the context of process forking only!
276 * @see resetGlobalInstance()
277 * @see disableStorageBackend()
279 public static function resetChildProcessServices() {
280 // NOTE: for now, just reset everything. Since we don't know the interdependencies
281 // between services, we can't do this more selectively at this time.
282 self
::resetGlobalInstance();
284 // Child, reseed because there is no bug in PHP:
285 // http://bugs.php.net/bug.php?id=42465
286 mt_srand( getmypid() );
290 * Resets the given service for testing purposes.
294 * @warning This is generally unsafe! Other services may still retain references
295 * to the stale service instance, leading to failures and inconsistencies. Subclasses
296 * may use this method to reset specific services under specific instances, but
297 * it should not be exposed to application logic.
299 * @note With proper dependency injection used throughout the codebase, this method
300 * should not be needed. It is provided to allow tests that pollute global service
301 * instances to clean up.
303 * @param string $name
304 * @param bool $destroy Whether the service instance should be destroyed if it exists.
305 * When set to false, any existing service instance will effectively be detached
306 * from the container.
308 * @throws MWException if called outside of PHPUnit tests.
310 public function resetServiceForTesting( $name, $destroy = true ) {
311 if ( !defined( 'MW_PHPUNIT_TEST' ) && !defined( 'MW_PARSER_TEST' ) ) {
312 throw new MWException( 'resetServiceForTesting() must not be used outside unit tests.' );
315 $this->resetService( $name, $destroy );
319 * Convenience method that throws an exception unless it is called during a phase in which
320 * resetting of global services is allowed. In general, services should not be reset
321 * individually, since that may introduce inconsistencies.
325 * This method will throw an exception if:
327 * - self::$resetInProgress is false (to allow all services to be reset together
328 * via resetGlobalInstance)
329 * - and MEDIAWIKI_INSTALL is not defined (to allow services to be reset during installation)
330 * - and MW_PHPUNIT_TEST is not defined (to allow services to be reset during testing)
332 * This method is intended to be used to safeguard against accidentally resetting
333 * global service instances that are not yet managed by MediaWikiServices. It is
334 * defined here in the MediaWikiServices services class to have a central place
335 * for managing service bootstrapping and resetting.
337 * @param string $method the name of the caller method, as given by __METHOD__.
339 * @throws MWException if called outside bootstrap mode.
341 * @see resetGlobalInstance()
342 * @see forceGlobalInstance()
343 * @see disableStorageBackend()
345 public static function failIfResetNotAllowed( $method ) {
346 if ( !defined( 'MW_PHPUNIT_TEST' )
347 && !defined( 'MW_PARSER_TEST' )
348 && !defined( 'MEDIAWIKI_INSTALL' )
349 && !defined( 'RUN_MAINTENANCE_IF_MAIN' )
350 && defined( 'MW_SERVICE_BOOTSTRAP_COMPLETE' )
352 throw new MWException( $method . ' may only be called during bootstrapping and unit tests!' );
357 * @param Config $config The Config object to be registered as the 'BootstrapConfig' service.
358 * This has to contain at least the information needed to set up the 'ConfigFactory'
361 public function __construct( Config
$config ) {
362 parent
::__construct();
364 // Register the given Config object as the bootstrap config service.
365 $this->defineService( 'BootstrapConfig', function() use ( $config ) {
370 // CONVENIENCE GETTERS ////////////////////////////////////////////////////
373 * Returns the Config object containing the bootstrap configuration.
374 * Bootstrap configuration would typically include database credentials
375 * and other information that may be needed before the ConfigFactory
376 * service can be instantiated.
378 * @note This should only be used during bootstrapping, in particular
379 * when creating the MainConfig service. Application logic should
380 * use getMainConfig() to get a Config instances.
385 public function getBootstrapConfig() {
386 return $this->getService( 'BootstrapConfig' );
391 * @return ConfigFactory
393 public function getConfigFactory() {
394 return $this->getService( 'ConfigFactory' );
398 * Returns the Config object that provides configuration for MediaWiki core.
399 * This may or may not be the same object that is returned by getBootstrapConfig().
404 public function getMainConfig() {
405 return $this->getService( 'MainConfig' );
412 public function getSiteLookup() {
413 return $this->getService( 'SiteLookup' );
420 public function getSiteStore() {
421 return $this->getService( 'SiteStore' );
426 * @return InterwikiLookup
428 public function getInterwikiLookup() {
429 return $this->getService( 'InterwikiLookup' );
434 * @return StatsdDataFactory
436 public function getStatsdDataFactory() {
437 return $this->getService( 'StatsdDataFactory' );
442 * @return EventRelayerGroup
444 public function getEventRelayerGroup() {
445 return $this->getService( 'EventRelayerGroup' );
450 * @return SearchEngine
452 public function newSearchEngine() {
453 // New engine object every time, since they keep state
454 return $this->getService( 'SearchEngineFactory' )->create();
459 * @return SearchEngineFactory
461 public function getSearchEngineFactory() {
462 return $this->getService( 'SearchEngineFactory' );
467 * @return SearchEngineConfig
469 public function getSearchEngineConfig() {
470 return $this->getService( 'SearchEngineConfig' );
475 * @return SkinFactory
477 public function getSkinFactory() {
478 return $this->getService( 'SkinFactory' );
485 public function getDBLoadBalancerFactory() {
486 return $this->getService( 'DBLoadBalancerFactory' );
491 * @return LoadBalancer The main DB load balancer for the local wiki.
493 public function getDBLoadBalancer() {
494 return $this->getService( 'DBLoadBalancer' );
499 * @return WatchedItemStore
501 public function getWatchedItemStore() {
502 return $this->getService( 'WatchedItemStore' );
507 * @return GenderCache
509 public function getGenderCache() {
510 return $this->getService( 'GenderCache' );
517 public function getLinkCache() {
518 return $this->getService( 'LinkCache' );
523 * @return LinkRendererFactory
525 public function getLinkRendererFactory() {
526 return $this->getService( 'LinkRendererFactory' );
530 * LinkRenderer instance that can be used
531 * if no custom options are needed
534 * @return LinkRenderer
536 public function getLinkRenderer() {
537 return $this->getService( 'LinkRenderer' );
542 * @return TitleFormatter
544 public function getTitleFormatter() {
545 return $this->getService( 'TitleFormatter' );
550 * @return TitleParser
552 public function getTitleParser() {
553 return $this->getService( 'TitleParser' );
556 ///////////////////////////////////////////////////////////////////////////
557 // NOTE: When adding a service getter here, don't forget to add a test
558 // case for it in MediaWikiServicesTest::provideGetters() and in
559 // MediaWikiServicesTest::provideGetService()!
560 ///////////////////////////////////////////////////////////////////////////