2016-09-18 01:04:42 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Simple generator of database connections that always returns the same object.
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup Database
|
|
|
|
|
*/
|
|
|
|
|
|
2017-02-18 00:26:47 +00:00
|
|
|
namespace Wikimedia\Rdbms;
|
|
|
|
|
|
|
|
|
|
use InvalidArgumentException;
|
|
|
|
|
|
2016-09-18 01:04:42 +00:00
|
|
|
/**
|
|
|
|
|
* Trivial LoadBalancer that always returns an injected connection handle
|
|
|
|
|
*/
|
|
|
|
|
class LoadBalancerSingle extends LoadBalancer {
|
|
|
|
|
/** @var IDatabase */
|
|
|
|
|
private $db;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param array $params An associative array with one member:
|
|
|
|
|
* - connection: An IDatabase connection object
|
|
|
|
|
*/
|
|
|
|
|
public function __construct( array $params ) {
|
|
|
|
|
if ( !isset( $params['connection'] ) ) {
|
|
|
|
|
throw new InvalidArgumentException( "Missing 'connection' argument." );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->db = $params['connection'];
|
|
|
|
|
|
|
|
|
|
parent::__construct( [
|
|
|
|
|
'servers' => [
|
|
|
|
|
[
|
|
|
|
|
'type' => $this->db->getType(),
|
|
|
|
|
'host' => $this->db->getServer(),
|
|
|
|
|
'dbname' => $this->db->getDBname(),
|
|
|
|
|
'load' => 1,
|
|
|
|
|
]
|
|
|
|
|
],
|
2017-10-06 22:17:58 +00:00
|
|
|
'trxProfiler' => $params['trxProfiler'] ?? null,
|
|
|
|
|
'srvCache' => $params['srvCache'] ?? null,
|
2018-08-27 18:50:24 +00:00
|
|
|
'wanCache' => $params['wanCache'] ?? null,
|
|
|
|
|
'localDomain' => $params['localDomain'] ?? $this->db->getDomainID()
|
2016-09-18 01:04:42 +00:00
|
|
|
] );
|
|
|
|
|
|
|
|
|
|
if ( isset( $params['readOnlyReason'] ) ) {
|
|
|
|
|
$this->db->setLBInfo( 'readOnlyReason', $params['readOnlyReason'] );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:13:21 +00:00
|
|
|
/**
|
|
|
|
|
* @param IDatabase $db Live connection handle
|
|
|
|
|
* @param array $params Parameter map to LoadBalancerSingle::__constructs()
|
|
|
|
|
* @return LoadBalancerSingle
|
|
|
|
|
* @since 1.28
|
|
|
|
|
*/
|
|
|
|
|
public static function newFromConnection( IDatabase $db, array $params = [] ) {
|
2018-08-27 18:50:24 +00:00
|
|
|
return new static( array_merge(
|
|
|
|
|
[ 'localDomain' => $db->getDomainID() ],
|
|
|
|
|
$params,
|
|
|
|
|
[ 'connection' => $db ]
|
|
|
|
|
) );
|
2016-09-18 02:13:21 +00:00
|
|
|
}
|
|
|
|
|
|
2018-08-14 23:44:41 +00:00
|
|
|
protected function reallyOpenConnection( array $server, DatabaseDomain $domain ) {
|
2016-09-18 01:04:42 +00:00
|
|
|
return $this->db;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-18 00:26:47 +00:00
|
|
|
|
2018-05-29 16:21:31 +00:00
|
|
|
/**
|
|
|
|
|
* @deprecated since 1.29
|
|
|
|
|
*/
|
2018-01-13 00:02:09 +00:00
|
|
|
class_alias( LoadBalancerSingle::class, 'LoadBalancerSingle' );
|