Make LBFactorySingle call initLoadBalancer() as the others do
[mediawiki.git] / includes / libs / rdbms / lbfactory / LBFactorySingle.php
bloba64117ffa8d4c61140238094fc6f4fcf07476c38
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 * An LBFactory class that always returns a single database object.
27 class LBFactorySingle extends LBFactory {
28 /** @var LoadBalancerSingle */
29 private $lb;
31 /**
32 * @param array $conf An associative array with one member:
33 * - connection: The IDatabase connection object
35 public function __construct( array $conf ) {
36 parent::__construct( $conf );
38 if ( !isset( $conf['connection'] ) ) {
39 throw new InvalidArgumentException( "Missing 'connection' argument." );
42 $lb = new LoadBalancerSingle( array_merge( $this->baseLoadBalancerParams(), $conf ) );
43 $this->initLoadBalancer( $lb );
44 $this->lb = $lb;
47 /**
48 * @param IDatabase $db Live connection handle
49 * @param array $params Parameter map to LBFactorySingle::__constructs()
50 * @return LBFactorySingle
51 * @since 1.28
53 public static function newFromConnection( IDatabase $db, array $params = [] ) {
54 return new static( [ 'connection' => $db ] + $params );
57 /**
58 * @param bool|string $wiki
59 * @return LoadBalancerSingle
61 public function newMainLB( $wiki = false ) {
62 return $this->lb;
65 /**
66 * @param bool|string $wiki
67 * @return LoadBalancerSingle
69 public function getMainLB( $wiki = false ) {
70 return $this->lb;
73 /**
74 * @param string $cluster External storage cluster, or false for core
75 * @param bool|string $wiki Wiki ID, or false for the current wiki
76 * @return LoadBalancerSingle
78 public function newExternalLB( $cluster, $wiki = false ) {
79 return $this->lb;
82 /**
83 * @param string $cluster External storage cluster, or false for core
84 * @param bool|string $wiki Wiki ID, or false for the current wiki
85 * @return LoadBalancerSingle
87 public function getExternalLB( $cluster, $wiki = false ) {
88 return $this->lb;
91 /**
92 * @param string|callable $callback
93 * @param array $params
95 public function forEachLB( $callback, array $params = [] ) {
96 call_user_func_array( $callback, array_merge( [ $this->lb ], $params ) );