Go to the documentation of this file.
49 static $typesWithSchema = [
'postgres',
'msssql' ];
53 $mainConfig->
get(
'DBname' ),
54 $mainConfig->
get(
'DBmwschema' ),
55 $mainConfig->
get(
'DBprefix' )
59 'replLogger' => LoggerFactory::getInstance(
'DBReplication' ),
60 'queryLogger' => LoggerFactory::getInstance(
'DBQuery' ),
61 'connLogger' => LoggerFactory::getInstance(
'DBConnection' ),
62 'perfLogger' => LoggerFactory::getInstance(
'DBPerformance' ),
67 'readOnlyReason' => $readOnlyMode->
getReason(),
68 'defaultGroup' => $mainConfig->
get(
'DBDefaultGroup' ),
75 if ( isset( $lbConf[
'servers'] ) ) {
77 } elseif ( is_array( $mainConfig->
get(
'DBservers' ) ) ) {
78 foreach ( $mainConfig->
get(
'DBservers' )
as $i => $server ) {
79 if ( $server[
'type'] ===
'sqlite' ) {
80 $server += [
'dbDirectory' => $mainConfig->
get(
'SQLiteDataDir' ) ];
81 } elseif ( $server[
'type'] ===
'postgres' ) {
83 'port' => $mainConfig->
get(
'DBport' ),
85 'keywordTableMap' => [
'user' =>
'mwuser',
'text' =>
'pagecontent' ]
87 } elseif ( $server[
'type'] ===
'mssql' ) {
89 'port' => $mainConfig->
get(
'DBport' ),
90 'useWindowsAuth' => $mainConfig->
get(
'DBWindowsAuthentication' )
94 if ( in_array( $server[
'type'], $typesWithSchema,
true ) ) {
95 $server += [
'schema' => $mainConfig->
get(
'DBmwschema' ) ];
99 'tablePrefix' => $mainConfig->
get(
'DBprefix' ),
101 'sqlMode' => $mainConfig->
get(
'SQLMode' ),
102 'utf8Mode' => $mainConfig->
get(
'DBmysql5' )
105 $lbConf[
'servers'][$i] = $server;
109 $flags |= $mainConfig->
get(
'DebugDumpSql' ) ?
DBO_DEBUG : 0;
110 $flags |= $mainConfig->
get(
'DBssl' ) ?
DBO_SSL : 0;
113 'host' => $mainConfig->
get(
'DBserver' ),
114 'user' => $mainConfig->
get(
'DBuser' ),
115 'password' => $mainConfig->
get(
'DBpassword' ),
116 'dbname' => $mainConfig->
get(
'DBname' ),
117 'tablePrefix' => $mainConfig->
get(
'DBprefix' ),
118 'type' => $mainConfig->
get(
'DBtype' ),
121 'sqlMode' => $mainConfig->
get(
'SQLMode' ),
122 'utf8Mode' => $mainConfig->
get(
'DBmysql5' )
124 if ( in_array( $server[
'type'], $typesWithSchema,
true ) ) {
125 $server += [
'schema' => $mainConfig->
get(
'DBmwschema' ) ];
127 if ( $server[
'type'] ===
'sqlite' ) {
128 $server[
'dbDirectory'] = $mainConfig->
get(
'SQLiteDataDir' );
129 } elseif ( $server[
'type'] ===
'postgres' ) {
130 $server[
'port'] = $mainConfig->
get(
'DBport' );
132 $server[
'keywordTableMap'] = [
'user' =>
'mwuser',
'text' =>
'pagecontent' ];
133 } elseif ( $server[
'type'] ===
'mssql' ) {
134 $server[
'port'] = $mainConfig->
get(
'DBport' );
135 $server[
'useWindowsAuth'] = $mainConfig->
get(
'DBWindowsAuthentication' );
137 $lbConf[
'servers'] = [ $server ];
139 if ( !isset( $lbConf[
'externalClusters'] ) ) {
140 $lbConf[
'externalClusters'] = $mainConfig->
get(
'ExternalServers' );
143 if ( isset( $lbConf[
'serverTemplate'] ) ) {
144 if ( in_array( $lbConf[
'serverTemplate'][
'type'], $typesWithSchema,
true ) ) {
145 $lbConf[
'serverTemplate'][
'schema'] = $mainConfig->
get(
'DBmwschema' );
147 $lbConf[
'serverTemplate'][
'sqlMode'] = $mainConfig->
get(
'SQLMode' );
148 $lbConf[
'serverTemplate'][
'utf8Mode'] = $mainConfig->
get(
'DBmysql5' );
152 $services = MediaWikiServices::getInstance();
155 $sCache =
$services->getLocalServerObjectCache();
156 if ( $sCache->getQoS( $sCache::ATTR_EMULATION ) > $sCache::QOS_EMULATION_SQL ) {
157 $lbConf[
'srvCache'] = $sCache;
159 $mStash =
$services->getMainObjectStash();
160 if ( $mStash->getQoS( $mStash::ATTR_EMULATION ) > $mStash::QOS_EMULATION_SQL ) {
161 $lbConf[
'memStash'] = $mStash;
163 $wCache =
$services->getMainWANObjectCache();
164 if ( $wCache->getQoS( $wCache::ATTR_EMULATION ) > $wCache::QOS_EMULATION_SQL ) {
165 $lbConf[
'wanCache'] = $wCache;
183 'LBFactory_Simple' =>
'LBFactorySimple',
184 'LBFactory_Single' =>
'LBFactorySingle',
185 'LBFactory_Multi' =>
'LBFactoryMulti'
188 $class = $config[
'class'];
190 if ( isset( $bcClasses[$class] ) ) {
191 $class = $bcClasses[$class];
193 '$wgLBFactoryConf must be updated. See RELEASE-NOTES for details',
205 if ( isset( $compat[$class] ) ) {
206 $class = $compat[$class];
213 if ( $config->
get(
'DBtype' ) ===
'mysql' ) {
229 'ar_usertext_timestamp' =>
'usertext_timestamp',
230 'un_user_id' =>
'user_id',
231 'un_user_ip' =>
'user_ip',
243 if ( isset( self::$loggedDeprecations[$msg] ) ) {
246 self::$loggedDeprecations[$msg] =
true;
249 trigger_error( $msg, E_USER_DEPRECATED );
MediaWiki-specific class for generating database load balancers.
static instance()
Singleton.
wfHostname()
Fetch server name for use in error reporting etc.
static logDeprecation( $msg)
Log a database deprecation warning.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
static array $loggedDeprecations
Cache of already-logged deprecation messages.
Interface for configuration instances.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
get( $name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".
global $wgCommandLineMode
static getLBFactoryClass(array $config)
Returns the LBFactory class to use and the load balancer configuration.
static applyDefaultConfig(array $lbConf, Config $mainConfig, ConfiguredReadOnlyMode $readOnlyMode)
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
static setSchemaAliases(LBFactory $lbFactory, Config $config)
$wgDevelopmentWarnings
If set to true MediaWiki will throw notices for some possible error conditions and for deprecated fun...
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Class to handle database/prefix specification for IDatabase domains.