DatabaseMysqlBase visibility cleanups
[mediawiki.git] / includes / libs / rdbms / loadbalancer / LoadBalancerSingle.php
blob0a05202504387084af0e4064852f11b6d3be0e78
1 <?php
2 /**
3 * Simple generator of database connections that always returns the same object.
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 * Trivial LoadBalancer that always returns an injected connection handle
27 class LoadBalancerSingle extends LoadBalancer {
28 /** @var IDatabase */
29 private $db;
31 /**
32 * @param array $params An associative array with one member:
33 * - connection: An IDatabase connection object
35 public function __construct( array $params ) {
36 if ( !isset( $params['connection'] ) ) {
37 throw new InvalidArgumentException( "Missing 'connection' argument." );
40 $this->db = $params['connection'];
42 parent::__construct( [
43 'servers' => [
45 'type' => $this->db->getType(),
46 'host' => $this->db->getServer(),
47 'dbname' => $this->db->getDBname(),
48 'load' => 1,
51 'trxProfiler' => isset( $params['trxProfiler'] ) ? $params['trxProfiler'] : null,
52 'srvCache' => isset( $params['srvCache'] ) ? $params['srvCache'] : null,
53 'wanCache' => isset( $params['wanCache'] ) ? $params['wanCache'] : null
54 ] );
56 if ( isset( $params['readOnlyReason'] ) ) {
57 $this->db->setLBInfo( 'readOnlyReason', $params['readOnlyReason'] );
61 /**
62 * @param IDatabase $db Live connection handle
63 * @param array $params Parameter map to LoadBalancerSingle::__constructs()
64 * @return LoadBalancerSingle
65 * @since 1.28
67 public static function newFromConnection( IDatabase $db, array $params = [] ) {
68 return new static( [ 'connection' => $db ] + $params );
71 protected function reallyOpenConnection( array $server, $dbNameOverride = false ) {
72 return $this->db;