3 namespace Wikimedia\Rdbms
;
6 use InvalidArgumentException
;
9 * Helper class to handle automatically marking connections as reusable (via RAII pattern)
10 * as well handling deferring the actual network connection until the handle is used
12 * @note: proxy methods are defined explicity to avoid interface errors
16 class DBConnRef
implements IDatabase
{
17 /** @var ILoadBalancer */
19 /** @var Database|null Live connection handle */
21 /** @var array|null N-tuple of (server index, group, DatabaseDomain|string) */
29 * @param ILoadBalancer $lb Connection manager for $conn
30 * @param Database|array $conn New connection handle or (server index, query groups, domain)
32 public function __construct( ILoadBalancer
$lb, $conn ) {
34 if ( $conn instanceof Database
) {
35 $this->conn
= $conn; // live handle
36 } elseif ( count( $conn ) >= 3 && $conn[self
::FLD_DOMAIN
] !== false ) {
37 $this->params
= $conn;
39 throw new InvalidArgumentException( "Missing lazy connection arguments." );
43 function __call( $name, array $arguments ) {
44 if ( $this->conn
=== null ) {
45 list( $db, $groups, $wiki ) = $this->params
;
46 $this->conn
= $this->lb
->getConnection( $db, $groups, $wiki );
49 return call_user_func_array( [ $this->conn
, $name ], $arguments );
52 public function getServerInfo() {
53 return $this->__call( __FUNCTION__
, func_get_args() );
56 public function bufferResults( $buffer = null ) {
57 return $this->__call( __FUNCTION__
, func_get_args() );
60 public function trxLevel() {
61 return $this->__call( __FUNCTION__
, func_get_args() );
64 public function trxTimestamp() {
65 return $this->__call( __FUNCTION__
, func_get_args() );
68 public function explicitTrxActive() {
69 return $this->__call( __FUNCTION__
, func_get_args() );
72 public function tablePrefix( $prefix = null ) {
73 return $this->__call( __FUNCTION__
, func_get_args() );
76 public function dbSchema( $schema = null ) {
77 return $this->__call( __FUNCTION__
, func_get_args() );
80 public function getLBInfo( $name = null ) {
81 return $this->__call( __FUNCTION__
, func_get_args() );
84 public function setLBInfo( $name, $value = null ) {
85 return $this->__call( __FUNCTION__
, func_get_args() );
88 public function setLazyMasterHandle( IDatabase
$conn ) {
89 return $this->__call( __FUNCTION__
, func_get_args() );
92 public function implicitGroupby() {
93 return $this->__call( __FUNCTION__
, func_get_args() );
96 public function implicitOrderby() {
97 return $this->__call( __FUNCTION__
, func_get_args() );
100 public function lastQuery() {
101 return $this->__call( __FUNCTION__
, func_get_args() );
104 public function doneWrites() {
105 return $this->__call( __FUNCTION__
, func_get_args() );
108 public function lastDoneWrites() {
109 return $this->__call( __FUNCTION__
, func_get_args() );
112 public function writesPending() {
113 return $this->__call( __FUNCTION__
, func_get_args() );
116 public function writesOrCallbacksPending() {
117 return $this->__call( __FUNCTION__
, func_get_args() );
120 public function pendingWriteQueryDuration( $type = self
::ESTIMATE_TOTAL
) {
121 return $this->__call( __FUNCTION__
, func_get_args() );
124 public function pendingWriteCallers() {
125 return $this->__call( __FUNCTION__
, func_get_args() );
128 public function isOpen() {
129 return $this->__call( __FUNCTION__
, func_get_args() );
132 public function setFlag( $flag, $remember = self
::REMEMBER_NOTHING
) {
133 return $this->__call( __FUNCTION__
, func_get_args() );
136 public function clearFlag( $flag, $remember = self
::REMEMBER_NOTHING
) {
137 return $this->__call( __FUNCTION__
, func_get_args() );
140 public function restoreFlags( $state = self
::RESTORE_PRIOR
) {
141 return $this->__call( __FUNCTION__
, func_get_args() );
144 public function getFlag( $flag ) {
145 return $this->__call( __FUNCTION__
, func_get_args() );
148 public function getProperty( $name ) {
149 return $this->__call( __FUNCTION__
, func_get_args() );
152 public function getDomainID() {
153 if ( $this->conn
=== null ) {
154 $domain = $this->params
[self
::FLD_DOMAIN
];
155 // Avoid triggering a database connection
156 return $domain instanceof DatabaseDomain ?
$domain->getId() : $domain;
159 return $this->__call( __FUNCTION__
, func_get_args() );
162 public function getWikiID() {
163 return $this->getDomainID();
166 public function getType() {
167 return $this->__call( __FUNCTION__
, func_get_args() );
170 public function open( $server, $user, $password, $dbName ) {
171 return $this->__call( __FUNCTION__
, func_get_args() );
174 public function fetchObject( $res ) {
175 return $this->__call( __FUNCTION__
, func_get_args() );
178 public function fetchRow( $res ) {
179 return $this->__call( __FUNCTION__
, func_get_args() );
182 public function numRows( $res ) {
183 return $this->__call( __FUNCTION__
, func_get_args() );
186 public function numFields( $res ) {
187 return $this->__call( __FUNCTION__
, func_get_args() );
190 public function fieldName( $res, $n ) {
191 return $this->__call( __FUNCTION__
, func_get_args() );
194 public function insertId() {
195 return $this->__call( __FUNCTION__
, func_get_args() );
198 public function dataSeek( $res, $row ) {
199 return $this->__call( __FUNCTION__
, func_get_args() );
202 public function lastErrno() {
203 return $this->__call( __FUNCTION__
, func_get_args() );
206 public function lastError() {
207 return $this->__call( __FUNCTION__
, func_get_args() );
210 public function fieldInfo( $table, $field ) {
211 return $this->__call( __FUNCTION__
, func_get_args() );
214 public function affectedRows() {
215 return $this->__call( __FUNCTION__
, func_get_args() );
218 public function getSoftwareLink() {
219 return $this->__call( __FUNCTION__
, func_get_args() );
222 public function getServerVersion() {
223 return $this->__call( __FUNCTION__
, func_get_args() );
226 public function close() {
227 return $this->__call( __FUNCTION__
, func_get_args() );
230 public function reportConnectionError( $error = 'Unknown error' ) {
231 return $this->__call( __FUNCTION__
, func_get_args() );
234 public function query( $sql, $fname = __METHOD__
, $tempIgnore = false ) {
235 return $this->__call( __FUNCTION__
, func_get_args() );
238 public function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false ) {
239 return $this->__call( __FUNCTION__
, func_get_args() );
242 public function freeResult( $res ) {
243 return $this->__call( __FUNCTION__
, func_get_args() );
246 public function selectField(
247 $table, $var, $cond = '', $fname = __METHOD__
, $options = []
249 return $this->__call( __FUNCTION__
, func_get_args() );
252 public function selectFieldValues(
253 $table, $var, $cond = '', $fname = __METHOD__
, $options = []
255 return $this->__call( __FUNCTION__
, func_get_args() );
258 public function select(
259 $table, $vars, $conds = '', $fname = __METHOD__
,
260 $options = [], $join_conds = []
262 return $this->__call( __FUNCTION__
, func_get_args() );
265 public function selectSQLText(
266 $table, $vars, $conds = '', $fname = __METHOD__
,
267 $options = [], $join_conds = []
269 return $this->__call( __FUNCTION__
, func_get_args() );
272 public function selectRow(
273 $table, $vars, $conds, $fname = __METHOD__
,
274 $options = [], $join_conds = []
276 return $this->__call( __FUNCTION__
, func_get_args() );
279 public function estimateRowCount(
280 $table, $vars = '*', $conds = '', $fname = __METHOD__
, $options = []
282 return $this->__call( __FUNCTION__
, func_get_args() );
285 public function selectRowCount(
286 $tables, $vars = '*', $conds = '', $fname = __METHOD__
, $options = [], $join_conds = []
288 return $this->__call( __FUNCTION__
, func_get_args() );
291 public function fieldExists( $table, $field, $fname = __METHOD__
) {
292 return $this->__call( __FUNCTION__
, func_get_args() );
295 public function indexExists( $table, $index, $fname = __METHOD__
) {
296 return $this->__call( __FUNCTION__
, func_get_args() );
299 public function tableExists( $table, $fname = __METHOD__
) {
300 return $this->__call( __FUNCTION__
, func_get_args() );
303 public function indexUnique( $table, $index ) {
304 return $this->__call( __FUNCTION__
, func_get_args() );
307 public function insert( $table, $a, $fname = __METHOD__
, $options = [] ) {
308 return $this->__call( __FUNCTION__
, func_get_args() );
311 public function update( $table, $values, $conds, $fname = __METHOD__
, $options = [] ) {
312 return $this->__call( __FUNCTION__
, func_get_args() );
315 public function makeList( $a, $mode = self
::LIST_COMMA
) {
316 return $this->__call( __FUNCTION__
, func_get_args() );
319 public function makeWhereFrom2d( $data, $baseKey, $subKey ) {
320 return $this->__call( __FUNCTION__
, func_get_args() );
323 public function aggregateValue( $valuedata, $valuename = 'value' ) {
324 return $this->__call( __FUNCTION__
, func_get_args() );
327 public function bitNot( $field ) {
328 return $this->__call( __FUNCTION__
, func_get_args() );
331 public function bitAnd( $fieldLeft, $fieldRight ) {
332 return $this->__call( __FUNCTION__
, func_get_args() );
335 public function bitOr( $fieldLeft, $fieldRight ) {
336 return $this->__call( __FUNCTION__
, func_get_args() );
339 public function buildConcat( $stringList ) {
340 return $this->__call( __FUNCTION__
, func_get_args() );
343 public function buildGroupConcatField(
344 $delim, $table, $field, $conds = '', $join_conds = []
346 return $this->__call( __FUNCTION__
, func_get_args() );
349 public function buildStringCast( $field ) {
350 return $this->__call( __FUNCTION__
, func_get_args() );
353 public function selectDB( $db ) {
354 return $this->__call( __FUNCTION__
, func_get_args() );
357 public function getDBname() {
358 return $this->__call( __FUNCTION__
, func_get_args() );
361 public function getServer() {
362 return $this->__call( __FUNCTION__
, func_get_args() );
365 public function addQuotes( $s ) {
366 return $this->__call( __FUNCTION__
, func_get_args() );
369 public function buildLike() {
370 return $this->__call( __FUNCTION__
, func_get_args() );
373 public function anyChar() {
374 return $this->__call( __FUNCTION__
, func_get_args() );
377 public function anyString() {
378 return $this->__call( __FUNCTION__
, func_get_args() );
381 public function nextSequenceValue( $seqName ) {
382 return $this->__call( __FUNCTION__
, func_get_args() );
385 public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__
) {
386 return $this->__call( __FUNCTION__
, func_get_args() );
389 public function upsert(
390 $table, array $rows, array $uniqueIndexes, array $set, $fname = __METHOD__
392 return $this->__call( __FUNCTION__
, func_get_args() );
395 public function deleteJoin(
396 $delTable, $joinTable, $delVar, $joinVar, $conds, $fname = __METHOD__
398 return $this->__call( __FUNCTION__
, func_get_args() );
401 public function delete( $table, $conds, $fname = __METHOD__
) {
402 return $this->__call( __FUNCTION__
, func_get_args() );
405 public function insertSelect(
406 $destTable, $srcTable, $varMap, $conds,
407 $fname = __METHOD__
, $insertOptions = [], $selectOptions = []
409 return $this->__call( __FUNCTION__
, func_get_args() );
412 public function unionSupportsOrderAndLimit() {
413 return $this->__call( __FUNCTION__
, func_get_args() );
416 public function unionQueries( $sqls, $all ) {
417 return $this->__call( __FUNCTION__
, func_get_args() );
420 public function conditional( $cond, $trueVal, $falseVal ) {
421 return $this->__call( __FUNCTION__
, func_get_args() );
424 public function strreplace( $orig, $old, $new ) {
425 return $this->__call( __FUNCTION__
, func_get_args() );
428 public function getServerUptime() {
429 return $this->__call( __FUNCTION__
, func_get_args() );
432 public function wasDeadlock() {
433 return $this->__call( __FUNCTION__
, func_get_args() );
436 public function wasLockTimeout() {
437 return $this->__call( __FUNCTION__
, func_get_args() );
440 public function wasErrorReissuable() {
441 return $this->__call( __FUNCTION__
, func_get_args() );
444 public function wasReadOnlyError() {
445 return $this->__call( __FUNCTION__
, func_get_args() );
448 public function masterPosWait( DBMasterPos
$pos, $timeout ) {
449 return $this->__call( __FUNCTION__
, func_get_args() );
452 public function getReplicaPos() {
453 return $this->__call( __FUNCTION__
, func_get_args() );
456 public function getMasterPos() {
457 return $this->__call( __FUNCTION__
, func_get_args() );
460 public function serverIsReadOnly() {
461 return $this->__call( __FUNCTION__
, func_get_args() );
464 public function onTransactionResolution( callable
$callback, $fname = __METHOD__
) {
465 return $this->__call( __FUNCTION__
, func_get_args() );
468 public function onTransactionIdle( callable
$callback, $fname = __METHOD__
) {
469 return $this->__call( __FUNCTION__
, func_get_args() );
472 public function onTransactionPreCommitOrIdle( callable
$callback, $fname = __METHOD__
) {
473 return $this->__call( __FUNCTION__
, func_get_args() );
476 public function setTransactionListener( $name, callable
$callback = null ) {
477 return $this->__call( __FUNCTION__
, func_get_args() );
480 public function startAtomic( $fname = __METHOD__
) {
481 return $this->__call( __FUNCTION__
, func_get_args() );
484 public function endAtomic( $fname = __METHOD__
) {
485 return $this->__call( __FUNCTION__
, func_get_args() );
488 public function doAtomicSection( $fname, callable
$callback ) {
489 return $this->__call( __FUNCTION__
, func_get_args() );
492 public function begin( $fname = __METHOD__
, $mode = IDatabase
::TRANSACTION_EXPLICIT
) {
493 return $this->__call( __FUNCTION__
, func_get_args() );
496 public function commit( $fname = __METHOD__
, $flush = '' ) {
497 return $this->__call( __FUNCTION__
, func_get_args() );
500 public function rollback( $fname = __METHOD__
, $flush = '' ) {
501 return $this->__call( __FUNCTION__
, func_get_args() );
504 public function flushSnapshot( $fname = __METHOD__
) {
505 return $this->__call( __FUNCTION__
, func_get_args() );
508 public function listTables( $prefix = null, $fname = __METHOD__
) {
509 return $this->__call( __FUNCTION__
, func_get_args() );
512 public function timestamp( $ts = 0 ) {
513 return $this->__call( __FUNCTION__
, func_get_args() );
516 public function timestampOrNull( $ts = null ) {
517 return $this->__call( __FUNCTION__
, func_get_args() );
520 public function ping( &$rtt = null ) {
521 return func_num_args()
522 ?
$this->__call( __FUNCTION__
, [ &$rtt ] )
523 : $this->__call( __FUNCTION__
, [] ); // method cares about null vs missing
526 public function getLag() {
527 return $this->__call( __FUNCTION__
, func_get_args() );
530 public function getSessionLagStatus() {
531 return $this->__call( __FUNCTION__
, func_get_args() );
534 public function maxListLen() {
535 return $this->__call( __FUNCTION__
, func_get_args() );
538 public function encodeBlob( $b ) {
539 return $this->__call( __FUNCTION__
, func_get_args() );
542 public function decodeBlob( $b ) {
543 return $this->__call( __FUNCTION__
, func_get_args() );
546 public function setSessionOptions( array $options ) {
547 return $this->__call( __FUNCTION__
, func_get_args() );
550 public function setSchemaVars( $vars ) {
551 return $this->__call( __FUNCTION__
, func_get_args() );
554 public function lockIsFree( $lockName, $method ) {
555 return $this->__call( __FUNCTION__
, func_get_args() );
558 public function lock( $lockName, $method, $timeout = 5 ) {
559 return $this->__call( __FUNCTION__
, func_get_args() );
562 public function unlock( $lockName, $method ) {
563 return $this->__call( __FUNCTION__
, func_get_args() );
566 public function getScopedLockAndFlush( $lockKey, $fname, $timeout ) {
567 return $this->__call( __FUNCTION__
, func_get_args() );
570 public function namedLocksEnqueue() {
571 return $this->__call( __FUNCTION__
, func_get_args() );
574 public function getInfinity() {
575 return $this->__call( __FUNCTION__
, func_get_args() );
578 public function encodeExpiry( $expiry ) {
579 return $this->__call( __FUNCTION__
, func_get_args() );
582 public function decodeExpiry( $expiry, $format = TS_MW
) {
583 return $this->__call( __FUNCTION__
, func_get_args() );
586 public function setBigSelects( $value = true ) {
587 return $this->__call( __FUNCTION__
, func_get_args() );
590 public function isReadOnly() {
591 return $this->__call( __FUNCTION__
, func_get_args() );
594 public function setTableAliases( array $aliases ) {
595 return $this->__call( __FUNCTION__
, func_get_args() );
599 * Clean up the connection when out of scope
601 function __destruct() {
603 $this->lb
->reuseConnection( $this->conn
);
608 class_alias( 'Wikimedia\Rdbms\DBConnRef', 'DBConnRef' );