Remove global state from DatabaseBase::__construct()
[mediawiki.git] / includes / db / loadbalancer / LBFactorySimple.php
blob9e9c2f10dda8e2d831c7d0cd7b314614ee1b6e7d
1 <?php
2 /**
3 * Generator of database load balancing objects.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup Database
24 /**
25 * A simple single-master LBFactory that gets its configuration from the b/c globals
27 class LBFactorySimple extends LBFactory {
28 /** @var LoadBalancer */
29 private $mainLB;
30 /** @var LoadBalancer[] */
31 private $extLBs = [];
33 /** @var string */
34 private $loadMonitorClass;
36 public function __construct( array $conf ) {
37 parent::__construct( $conf );
39 $this->loadMonitorClass = isset( $conf['loadMonitorClass'] )
40 ? $conf['loadMonitorClass']
41 : null;
44 /**
45 * @param bool|string $wiki
46 * @return LoadBalancer
48 public function newMainLB( $wiki = false ) {
49 global $wgDBservers, $wgDBprefix, $wgDBmwschema;
51 if ( is_array( $wgDBservers ) ) {
52 $servers = $wgDBservers;
53 foreach ( $servers as $i => &$server ) {
54 if ( $i == 0 ) {
55 $server['master'] = true;
56 } else {
57 $server['replica'] = true;
59 $server += [
60 'schema' => $wgDBmwschema,
61 'tablePrefix' => $wgDBprefix,
62 'flags' => DBO_DEFAULT
65 } else {
66 global $wgDBserver, $wgDBuser, $wgDBpassword, $wgDBname, $wgDBtype, $wgDebugDumpSql;
67 global $wgDBssl, $wgDBcompress;
69 $flags = DBO_DEFAULT;
70 if ( $wgDebugDumpSql ) {
71 $flags |= DBO_DEBUG;
73 if ( $wgDBssl ) {
74 $flags |= DBO_SSL;
76 if ( $wgDBcompress ) {
77 $flags |= DBO_COMPRESS;
80 $servers = [ [
81 'host' => $wgDBserver,
82 'user' => $wgDBuser,
83 'password' => $wgDBpassword,
84 'dbname' => $wgDBname,
85 'schema' => $wgDBmwschema,
86 'tablePrefix' => $wgDBprefix,
87 'type' => $wgDBtype,
88 'load' => 1,
89 'flags' => $flags,
90 'master' => true
91 ] ];
94 return $this->newLoadBalancer( $servers );
97 /**
98 * @param bool|string $wiki
99 * @return LoadBalancer
101 public function getMainLB( $wiki = false ) {
102 if ( !isset( $this->mainLB ) ) {
103 $this->mainLB = $this->newMainLB( $wiki );
104 $this->chronProt->initLB( $this->mainLB );
107 return $this->mainLB;
111 * @param string $cluster
112 * @param bool|string $wiki
113 * @return LoadBalancer
114 * @throws InvalidArgumentException
116 protected function newExternalLB( $cluster, $wiki = false ) {
117 global $wgExternalServers;
118 if ( !isset( $wgExternalServers[$cluster] ) ) {
119 throw new InvalidArgumentException( __METHOD__ . ": Unknown cluster \"$cluster\"" );
122 return $this->newLoadBalancer( $wgExternalServers[$cluster] );
126 * @param string $cluster
127 * @param bool|string $wiki
128 * @return array
130 public function getExternalLB( $cluster, $wiki = false ) {
131 if ( !isset( $this->extLBs[$cluster] ) ) {
132 $this->extLBs[$cluster] = $this->newExternalLB( $cluster, $wiki );
133 $this->chronProt->initLB( $this->extLBs[$cluster] );
136 return $this->extLBs[$cluster];
139 private function newLoadBalancer( array $servers ) {
140 $lb = new LoadBalancer( array_merge(
141 $this->baseLoadBalancerParams(),
143 'servers' => $servers,
144 'loadMonitor' => $this->loadMonitorClass,
146 ) );
147 $this->initLoadBalancer( $lb );
149 return $lb;
153 * Execute a function for each tracked load balancer
154 * The callback is called with the load balancer as the first parameter,
155 * and $params passed as the subsequent parameters.
157 * @param callable $callback
158 * @param array $params
160 public function forEachLB( $callback, array $params = [] ) {
161 if ( isset( $this->mainLB ) ) {
162 call_user_func_array( $callback, array_merge( [ $this->mainLB ], $params ) );
164 foreach ( $this->extLBs as $lb ) {
165 call_user_func_array( $callback, array_merge( [ $lb ], $params ) );