resourceloader: Add tests for StartUpModule dep tree optimisation
[lhc/web/wiklou.git] / includes / libs / rdbms / database / Database.php
1 <?php
2 /**
3 * @defgroup Database Database
4 *
5 * This file deals with database interface functions
6 * and query specifics/optimisations.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 * @ingroup Database
25 */
26 namespace Wikimedia\Rdbms;
27
28 use Psr\Log\LoggerAwareInterface;
29 use Psr\Log\LoggerInterface;
30 use Psr\Log\NullLogger;
31 use Wikimedia\ScopedCallback;
32 use Wikimedia\Timestamp\ConvertibleTimestamp;
33 use Wikimedia;
34 use BagOStuff;
35 use HashBagOStuff;
36 use LogicException;
37 use InvalidArgumentException;
38 use UnexpectedValueException;
39 use Exception;
40 use RuntimeException;
41
42 /**
43 * Relational database abstraction object
44 *
45 * @ingroup Database
46 * @since 1.28
47 */
48 abstract class Database implements IDatabase, IMaintainableDatabase, LoggerAwareInterface {
49 /** Number of times to re-try an operation in case of deadlock */
50 const DEADLOCK_TRIES = 4;
51 /** Minimum time to wait before retry, in microseconds */
52 const DEADLOCK_DELAY_MIN = 500000;
53 /** Maximum time to wait before retry */
54 const DEADLOCK_DELAY_MAX = 1500000;
55
56 /** How long before it is worth doing a dummy query to test the connection */
57 const PING_TTL = 1.0;
58 const PING_QUERY = 'SELECT 1 AS ping';
59
60 const TINY_WRITE_SEC = 0.010;
61 const SLOW_WRITE_SEC = 0.500;
62 const SMALL_WRITE_ROWS = 100;
63
64 /** @var string Lock granularity is on the level of the entire database */
65 const ATTR_DB_LEVEL_LOCKING = 'db-level-locking';
66 /** @var string The SCHEMA keyword refers to a grouping of tables in a database */
67 const ATTR_SCHEMAS_AS_TABLE_GROUPS = 'supports-schemas';
68
69 /** @var int New Database instance will not be connected yet when returned */
70 const NEW_UNCONNECTED = 0;
71 /** @var int New Database instance will already be connected when returned */
72 const NEW_CONNECTED = 1;
73
74 /** @var string SQL query */
75 protected $lastQuery = '';
76 /** @var float|bool UNIX timestamp of last write query */
77 protected $lastWriteTime = false;
78 /** @var string|bool */
79 protected $phpError = false;
80 /** @var string Server that this instance is currently connected to */
81 protected $server;
82 /** @var string User that this instance is currently connected under the name of */
83 protected $user;
84 /** @var string Password used to establish the current connection */
85 protected $password;
86 /** @var array[] Map of (table => (dbname, schema, prefix) map) */
87 protected $tableAliases = [];
88 /** @var string[] Map of (index alias => index) */
89 protected $indexAliases = [];
90 /** @var bool Whether this PHP instance is for a CLI script */
91 protected $cliMode;
92 /** @var string Agent name for query profiling */
93 protected $agent;
94 /** @var array Parameters used by initConnection() to establish a connection */
95 protected $connectionParams = [];
96 /** @var BagOStuff APC cache */
97 protected $srvCache;
98 /** @var LoggerInterface */
99 protected $connLogger;
100 /** @var LoggerInterface */
101 protected $queryLogger;
102 /** @var callable Error logging callback */
103 protected $errorLogger;
104 /** @var callable Deprecation logging callback */
105 protected $deprecationLogger;
106
107 /** @var object|resource|null Database connection */
108 protected $conn = null;
109 /** @var bool */
110 protected $opened = false;
111
112 /** @var array[] List of (callable, method name, atomic section id) */
113 protected $trxIdleCallbacks = [];
114 /** @var array[] List of (callable, method name, atomic section id) */
115 protected $trxPreCommitCallbacks = [];
116 /** @var array[] List of (callable, method name, atomic section id) */
117 protected $trxEndCallbacks = [];
118 /** @var callable[] Map of (name => callable) */
119 protected $trxRecurringCallbacks = [];
120 /** @var bool Whether to suppress triggering of transaction end callbacks */
121 protected $trxEndCallbacksSuppressed = false;
122
123 /** @var int */
124 protected $flags;
125 /** @var array */
126 protected $lbInfo = [];
127 /** @var array|bool */
128 protected $schemaVars = false;
129 /** @var array */
130 protected $sessionVars = [];
131 /** @var array|null */
132 protected $preparedArgs;
133 /** @var string|bool|null Stashed value of html_errors INI setting */
134 protected $htmlErrors;
135 /** @var string */
136 protected $delimiter = ';';
137 /** @var DatabaseDomain */
138 protected $currentDomain;
139 /** @var integer|null Rows affected by the last query to query() or its CRUD wrappers */
140 protected $affectedRowCount;
141
142 /**
143 * @var int Transaction status
144 */
145 protected $trxStatus = self::STATUS_TRX_NONE;
146 /**
147 * @var Exception|null The last error that caused the status to become STATUS_TRX_ERROR
148 */
149 protected $trxStatusCause;
150 /**
151 * @var array|null If wasKnownStatementRollbackError() prevented trxStatus from being set,
152 * the relevant details are stored here.
153 */
154 protected $trxStatusIgnoredCause;
155 /**
156 * Either 1 if a transaction is active or 0 otherwise.
157 * The other Trx fields may not be meaningfull if this is 0.
158 *
159 * @var int
160 */
161 protected $trxLevel = 0;
162 /**
163 * Either a short hexidecimal string if a transaction is active or ""
164 *
165 * @var string
166 * @see Database::trxLevel
167 */
168 protected $trxShortId = '';
169 /**
170 * The UNIX time that the transaction started. Callers can assume that if
171 * snapshot isolation is used, then the data is *at least* up to date to that
172 * point (possibly more up-to-date since the first SELECT defines the snapshot).
173 *
174 * @var float|null
175 * @see Database::trxLevel
176 */
177 private $trxTimestamp = null;
178 /** @var float Lag estimate at the time of BEGIN */
179 private $trxReplicaLag = null;
180 /**
181 * Remembers the function name given for starting the most recent transaction via begin().
182 * Used to provide additional context for error reporting.
183 *
184 * @var string
185 * @see Database::trxLevel
186 */
187 private $trxFname = null;
188 /**
189 * Record if possible write queries were done in the last transaction started
190 *
191 * @var bool
192 * @see Database::trxLevel
193 */
194 private $trxDoneWrites = false;
195 /**
196 * Record if the current transaction was started implicitly due to DBO_TRX being set.
197 *
198 * @var bool
199 * @see Database::trxLevel
200 */
201 private $trxAutomatic = false;
202 /**
203 * Counter for atomic savepoint identifiers. Reset when a new transaction begins.
204 *
205 * @var int
206 */
207 private $trxAtomicCounter = 0;
208 /**
209 * Array of levels of atomicity within transactions
210 *
211 * @var array List of (name, unique ID, savepoint ID)
212 */
213 private $trxAtomicLevels = [];
214 /**
215 * Record if the current transaction was started implicitly by Database::startAtomic
216 *
217 * @var bool
218 */
219 private $trxAutomaticAtomic = false;
220 /**
221 * Track the write query callers of the current transaction
222 *
223 * @var string[]
224 */
225 private $trxWriteCallers = [];
226 /**
227 * @var float Seconds spent in write queries for the current transaction
228 */
229 private $trxWriteDuration = 0.0;
230 /**
231 * @var int Number of write queries for the current transaction
232 */
233 private $trxWriteQueryCount = 0;
234 /**
235 * @var int Number of rows affected by write queries for the current transaction
236 */
237 private $trxWriteAffectedRows = 0;
238 /**
239 * @var float Like trxWriteQueryCount but excludes lock-bound, easy to replicate, queries
240 */
241 private $trxWriteAdjDuration = 0.0;
242 /**
243 * @var int Number of write queries counted in trxWriteAdjDuration
244 */
245 private $trxWriteAdjQueryCount = 0;
246 /**
247 * @var float RTT time estimate
248 */
249 private $rttEstimate = 0.0;
250
251 /** @var array Map of (name => 1) for locks obtained via lock() */
252 private $namedLocksHeld = [];
253 /** @var array Map of (table name => 1) for TEMPORARY tables */
254 protected $sessionTempTables = [];
255
256 /** @var IDatabase|null Lazy handle to the master DB this server replicates from */
257 private $lazyMasterHandle;
258
259 /** @var float UNIX timestamp */
260 protected $lastPing = 0.0;
261
262 /** @var int[] Prior flags member variable values */
263 private $priorFlags = [];
264
265 /** @var callable|null */
266 protected $profiler;
267 /** @var TransactionProfiler */
268 protected $trxProfiler;
269
270 /** @var int */
271 protected $nonNativeInsertSelectBatchSize = 10000;
272
273 /** @var string Idiom used when a cancelable atomic section started the transaction */
274 private static $NOT_APPLICABLE = 'n/a';
275 /** @var string Prefix to the atomic section counter used to make savepoint IDs */
276 private static $SAVEPOINT_PREFIX = 'wikimedia_rdbms_atomic';
277
278 /** @var int Transaction is in a error state requiring a full or savepoint rollback */
279 const STATUS_TRX_ERROR = 1;
280 /** @var int Transaction is active and in a normal state */
281 const STATUS_TRX_OK = 2;
282 /** @var int No transaction is active */
283 const STATUS_TRX_NONE = 3;
284
285 /** @var int Writes to this temporary table do not affect lastDoneWrites() */
286 const TEMP_NORMAL = 1;
287 /** @var int Writes to this temporary table effect lastDoneWrites() */
288 const TEMP_PSEUDO_PERMANENT = 2;
289
290 /**
291 * @note exceptions for missing libraries/drivers should be thrown in initConnection()
292 * @param array $params Parameters passed from Database::factory()
293 */
294 protected function __construct( array $params ) {
295 foreach ( [ 'host', 'user', 'password', 'dbname', 'schema', 'tablePrefix' ] as $name ) {
296 $this->connectionParams[$name] = $params[$name];
297 }
298
299 $this->cliMode = $params['cliMode'];
300 // Agent name is added to SQL queries in a comment, so make sure it can't break out
301 $this->agent = str_replace( '/', '-', $params['agent'] );
302
303 $this->flags = $params['flags'];
304 if ( $this->flags & self::DBO_DEFAULT ) {
305 if ( $this->cliMode ) {
306 $this->flags &= ~self::DBO_TRX;
307 } else {
308 $this->flags |= self::DBO_TRX;
309 }
310 }
311 // Disregard deprecated DBO_IGNORE flag (T189999)
312 $this->flags &= ~self::DBO_IGNORE;
313
314 $this->sessionVars = $params['variables'];
315
316 $this->srvCache = $params['srvCache'] ?? new HashBagOStuff();
317
318 $this->profiler = is_callable( $params['profiler'] ) ? $params['profiler'] : null;
319 $this->trxProfiler = $params['trxProfiler'];
320 $this->connLogger = $params['connLogger'];
321 $this->queryLogger = $params['queryLogger'];
322 $this->errorLogger = $params['errorLogger'];
323 $this->deprecationLogger = $params['deprecationLogger'];
324
325 if ( isset( $params['nonNativeInsertSelectBatchSize'] ) ) {
326 $this->nonNativeInsertSelectBatchSize = $params['nonNativeInsertSelectBatchSize'];
327 }
328
329 // Set initial dummy domain until open() sets the final DB/prefix
330 $this->currentDomain = new DatabaseDomain(
331 $params['dbname'] != '' ? $params['dbname'] : null,
332 $params['schema'] != '' ? $params['schema'] : null,
333 $params['tablePrefix']
334 );
335 }
336
337 /**
338 * Initialize the connection to the database over the wire (or to local files)
339 *
340 * @throws LogicException
341 * @throws InvalidArgumentException
342 * @throws DBConnectionError
343 * @since 1.31
344 */
345 final public function initConnection() {
346 if ( $this->isOpen() ) {
347 throw new LogicException( __METHOD__ . ': already connected.' );
348 }
349 // Establish the connection
350 $this->doInitConnection();
351 }
352
353 /**
354 * Actually connect to the database over the wire (or to local files)
355 *
356 * @throws InvalidArgumentException
357 * @throws DBConnectionError
358 * @since 1.31
359 */
360 protected function doInitConnection() {
361 if ( strlen( $this->connectionParams['user'] ) ) {
362 $this->open(
363 $this->connectionParams['host'],
364 $this->connectionParams['user'],
365 $this->connectionParams['password'],
366 $this->connectionParams['dbname'],
367 $this->connectionParams['schema'],
368 $this->connectionParams['tablePrefix']
369 );
370 } else {
371 throw new InvalidArgumentException( "No database user provided." );
372 }
373 }
374
375 /**
376 * Open a new connection to the database (closing any existing one)
377 *
378 * @param string $server Database server host
379 * @param string $user Database user name
380 * @param string $password Database user password
381 * @param string $dbName Database name
382 * @param string|null $schema Database schema name
383 * @param string $tablePrefix Table prefix
384 * @return bool
385 * @throws DBConnectionError
386 */
387 abstract protected function open( $server, $user, $password, $dbName, $schema, $tablePrefix );
388
389 /**
390 * Construct a Database subclass instance given a database type and parameters
391 *
392 * This also connects to the database immediately upon object construction
393 *
394 * @param string $dbType A possible DB type (sqlite, mysql, postgres,...)
395 * @param array $p Parameter map with keys:
396 * - host : The hostname of the DB server
397 * - user : The name of the database user the client operates under
398 * - password : The password for the database user
399 * - dbname : The name of the database to use where queries do not specify one.
400 * The database must exist or an error might be thrown. Setting this to the empty string
401 * will avoid any such errors and make the handle have no implicit database scope. This is
402 * useful for queries like SHOW STATUS, CREATE DATABASE, or DROP DATABASE. Note that a
403 * "database" in Postgres is rougly equivalent to an entire MySQL server. This the domain
404 * in which user names and such are defined, e.g. users are database-specific in Postgres.
405 * - schema : The database schema to use (if supported). A "schema" in Postgres is roughly
406 * equivalent to a "database" in MySQL. Note that MySQL and SQLite do not use schemas.
407 * - tablePrefix : Optional table prefix that is implicitly added on to all table names
408 * recognized in queries. This can be used in place of schemas for handle site farms.
409 * - flags : Optional bitfield of DBO_* constants that define connection, protocol,
410 * buffering, and transaction behavior. It is STRONGLY adviced to leave the DBO_DEFAULT
411 * flag in place UNLESS this this database simply acts as a key/value store.
412 * - driver: Optional name of a specific DB client driver. For MySQL, there is only the
413 * 'mysqli' driver; the old one 'mysql' has been removed.
414 * - variables: Optional map of session variables to set after connecting. This can be
415 * used to adjust lock timeouts or encoding modes and the like.
416 * - connLogger: Optional PSR-3 logger interface instance.
417 * - queryLogger: Optional PSR-3 logger interface instance.
418 * - profiler : Optional callback that takes a section name argument and returns
419 * a ScopedCallback instance that ends the profile section in its destructor.
420 * These will be called in query(), using a simplified version of the SQL that
421 * also includes the agent as a SQL comment.
422 * - trxProfiler: Optional TransactionProfiler instance.
423 * - errorLogger: Optional callback that takes an Exception and logs it.
424 * - deprecationLogger: Optional callback that takes a string and logs it.
425 * - cliMode: Whether to consider the execution context that of a CLI script.
426 * - agent: Optional name used to identify the end-user in query profiling/logging.
427 * - srvCache: Optional BagOStuff instance to an APC-style cache.
428 * - nonNativeInsertSelectBatchSize: Optional batch size for non-native INSERT SELECT emulation.
429 * @param int $connect One of the class constants (NEW_CONNECTED, NEW_UNCONNECTED) [optional]
430 * @return Database|null If the database driver or extension cannot be found
431 * @throws InvalidArgumentException If the database driver or extension cannot be found
432 * @since 1.18
433 */
434 final public static function factory( $dbType, $p = [], $connect = self::NEW_CONNECTED ) {
435 $class = self::getClass( $dbType, $p['driver'] ?? null );
436
437 if ( class_exists( $class ) && is_subclass_of( $class, IDatabase::class ) ) {
438 // Resolve some defaults for b/c
439 $p['host'] = $p['host'] ?? false;
440 $p['user'] = $p['user'] ?? false;
441 $p['password'] = $p['password'] ?? false;
442 $p['dbname'] = $p['dbname'] ?? false;
443 $p['flags'] = $p['flags'] ?? 0;
444 $p['variables'] = $p['variables'] ?? [];
445 $p['tablePrefix'] = $p['tablePrefix'] ?? '';
446 $p['schema'] = $p['schema'] ?? null;
447 $p['cliMode'] = $p['cliMode'] ?? ( PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg' );
448 $p['agent'] = $p['agent'] ?? '';
449 if ( !isset( $p['connLogger'] ) ) {
450 $p['connLogger'] = new NullLogger();
451 }
452 if ( !isset( $p['queryLogger'] ) ) {
453 $p['queryLogger'] = new NullLogger();
454 }
455 $p['profiler'] = $p['profiler'] ?? null;
456 if ( !isset( $p['trxProfiler'] ) ) {
457 $p['trxProfiler'] = new TransactionProfiler();
458 }
459 if ( !isset( $p['errorLogger'] ) ) {
460 $p['errorLogger'] = function ( Exception $e ) {
461 trigger_error( get_class( $e ) . ': ' . $e->getMessage(), E_USER_WARNING );
462 };
463 }
464 if ( !isset( $p['deprecationLogger'] ) ) {
465 $p['deprecationLogger'] = function ( $msg ) {
466 trigger_error( $msg, E_USER_DEPRECATED );
467 };
468 }
469
470 /** @var Database $conn */
471 $conn = new $class( $p );
472 if ( $connect == self::NEW_CONNECTED ) {
473 $conn->initConnection();
474 }
475 } else {
476 $conn = null;
477 }
478
479 return $conn;
480 }
481
482 /**
483 * @param string $dbType A possible DB type (sqlite, mysql, postgres,...)
484 * @param string|null $driver Optional name of a specific DB client driver
485 * @return array Map of (Database::ATTR_* constant => value) for all such constants
486 * @throws InvalidArgumentException
487 * @since 1.31
488 */
489 final public static function attributesFromType( $dbType, $driver = null ) {
490 static $defaults = [
491 self::ATTR_DB_LEVEL_LOCKING => false,
492 self::ATTR_SCHEMAS_AS_TABLE_GROUPS => false
493 ];
494
495 $class = self::getClass( $dbType, $driver );
496
497 return call_user_func( [ $class, 'getAttributes' ] ) + $defaults;
498 }
499
500 /**
501 * @param string $dbType A possible DB type (sqlite, mysql, postgres,...)
502 * @param string|null $driver Optional name of a specific DB client driver
503 * @return string Database subclass name to use
504 * @throws InvalidArgumentException
505 */
506 private static function getClass( $dbType, $driver = null ) {
507 // For database types with built-in support, the below maps type to IDatabase
508 // implementations. For types with multipe driver implementations (PHP extensions),
509 // an array can be used, keyed by extension name. In case of an array, the
510 // optional 'driver' parameter can be used to force a specific driver. Otherwise,
511 // we auto-detect the first available driver. For types without built-in support,
512 // an class named "Database<Type>" us used, eg. DatabaseFoo for type 'foo'.
513 static $builtinTypes = [
514 'mssql' => DatabaseMssql::class,
515 'mysql' => [ 'mysqli' => DatabaseMysqli::class ],
516 'sqlite' => DatabaseSqlite::class,
517 'postgres' => DatabasePostgres::class,
518 ];
519
520 $dbType = strtolower( $dbType );
521 $class = false;
522
523 if ( isset( $builtinTypes[$dbType] ) ) {
524 $possibleDrivers = $builtinTypes[$dbType];
525 if ( is_string( $possibleDrivers ) ) {
526 $class = $possibleDrivers;
527 } elseif ( (string)$driver !== '' ) {
528 if ( !isset( $possibleDrivers[$driver] ) ) {
529 throw new InvalidArgumentException( __METHOD__ .
530 " type '$dbType' does not support driver '{$driver}'" );
531 }
532
533 $class = $possibleDrivers[$driver];
534 } else {
535 foreach ( $possibleDrivers as $posDriver => $possibleClass ) {
536 if ( extension_loaded( $posDriver ) ) {
537 $class = $possibleClass;
538 break;
539 }
540 }
541 }
542 } else {
543 $class = 'Database' . ucfirst( $dbType );
544 }
545
546 if ( $class === false ) {
547 throw new InvalidArgumentException( __METHOD__ .
548 " no viable database extension found for type '$dbType'" );
549 }
550
551 return $class;
552 }
553
554 /**
555 * @return array Map of (Database::ATTR_* constant => value
556 * @since 1.31
557 */
558 protected static function getAttributes() {
559 return [];
560 }
561
562 /**
563 * Set the PSR-3 logger interface to use for query logging. (The logger
564 * interfaces for connection logging and error logging can be set with the
565 * constructor.)
566 *
567 * @param LoggerInterface $logger
568 */
569 public function setLogger( LoggerInterface $logger ) {
570 $this->queryLogger = $logger;
571 }
572
573 public function getServerInfo() {
574 return $this->getServerVersion();
575 }
576
577 public function bufferResults( $buffer = null ) {
578 $res = !$this->getFlag( self::DBO_NOBUFFER );
579 if ( $buffer !== null ) {
580 $buffer
581 ? $this->clearFlag( self::DBO_NOBUFFER )
582 : $this->setFlag( self::DBO_NOBUFFER );
583 }
584
585 return $res;
586 }
587
588 public function trxLevel() {
589 return $this->trxLevel;
590 }
591
592 public function trxTimestamp() {
593 return $this->trxLevel ? $this->trxTimestamp : null;
594 }
595
596 /**
597 * @return int One of the STATUS_TRX_* class constants
598 * @since 1.31
599 */
600 public function trxStatus() {
601 return $this->trxStatus;
602 }
603
604 public function tablePrefix( $prefix = null ) {
605 $old = $this->currentDomain->getTablePrefix();
606 if ( $prefix !== null ) {
607 $this->currentDomain = new DatabaseDomain(
608 $this->currentDomain->getDatabase(),
609 $this->currentDomain->getSchema(),
610 $prefix
611 );
612 }
613
614 return $old;
615 }
616
617 public function dbSchema( $schema = null ) {
618 if ( strlen( $schema ) && $this->getDBname() === null ) {
619 throw new DBUnexpectedError( $this, "Cannot set schema to '$schema'; no database set." );
620 }
621
622 $old = $this->currentDomain->getSchema();
623 if ( $schema !== null ) {
624 $this->currentDomain = new DatabaseDomain(
625 $this->currentDomain->getDatabase(),
626 // DatabaseDomain uses null for unspecified schemas
627 strlen( $schema ) ? $schema : null,
628 $this->currentDomain->getTablePrefix()
629 );
630 }
631
632 return (string)$old;
633 }
634
635 /**
636 * @return string Schema to use to qualify relations in queries
637 */
638 protected function relationSchemaQualifier() {
639 return $this->dbSchema();
640 }
641
642 public function getLBInfo( $name = null ) {
643 if ( is_null( $name ) ) {
644 return $this->lbInfo;
645 }
646
647 if ( array_key_exists( $name, $this->lbInfo ) ) {
648 return $this->lbInfo[$name];
649 }
650
651 return null;
652 }
653
654 public function setLBInfo( $name, $value = null ) {
655 if ( is_null( $value ) ) {
656 $this->lbInfo = $name;
657 } else {
658 $this->lbInfo[$name] = $value;
659 }
660 }
661
662 public function setLazyMasterHandle( IDatabase $conn ) {
663 $this->lazyMasterHandle = $conn;
664 }
665
666 /**
667 * @return IDatabase|null
668 * @see setLazyMasterHandle()
669 * @since 1.27
670 */
671 protected function getLazyMasterHandle() {
672 return $this->lazyMasterHandle;
673 }
674
675 public function implicitGroupby() {
676 return true;
677 }
678
679 public function implicitOrderby() {
680 return true;
681 }
682
683 public function lastQuery() {
684 return $this->lastQuery;
685 }
686
687 public function doneWrites() {
688 return (bool)$this->lastWriteTime;
689 }
690
691 public function lastDoneWrites() {
692 return $this->lastWriteTime ?: false;
693 }
694
695 public function writesPending() {
696 return $this->trxLevel && $this->trxDoneWrites;
697 }
698
699 public function writesOrCallbacksPending() {
700 return $this->trxLevel && (
701 $this->trxDoneWrites ||
702 $this->trxIdleCallbacks ||
703 $this->trxPreCommitCallbacks ||
704 $this->trxEndCallbacks
705 );
706 }
707
708 public function preCommitCallbacksPending() {
709 return $this->trxLevel && $this->trxPreCommitCallbacks;
710 }
711
712 /**
713 * @return string|null
714 */
715 final protected function getTransactionRoundId() {
716 // If transaction round participation is enabled, see if one is active
717 if ( $this->getFlag( self::DBO_TRX ) ) {
718 $id = $this->getLBInfo( 'trxRoundId' );
719
720 return is_string( $id ) ? $id : null;
721 }
722
723 return null;
724 }
725
726 public function pendingWriteQueryDuration( $type = self::ESTIMATE_TOTAL ) {
727 if ( !$this->trxLevel ) {
728 return false;
729 } elseif ( !$this->trxDoneWrites ) {
730 return 0.0;
731 }
732
733 switch ( $type ) {
734 case self::ESTIMATE_DB_APPLY:
735 return $this->pingAndCalculateLastTrxApplyTime();
736 default: // everything
737 return $this->trxWriteDuration;
738 }
739 }
740
741 /**
742 * @return float Time to apply writes to replicas based on trxWrite* fields
743 */
744 private function pingAndCalculateLastTrxApplyTime() {
745 $this->ping( $rtt );
746
747 $rttAdjTotal = $this->trxWriteAdjQueryCount * $rtt;
748 $applyTime = max( $this->trxWriteAdjDuration - $rttAdjTotal, 0 );
749 // For omitted queries, make them count as something at least
750 $omitted = $this->trxWriteQueryCount - $this->trxWriteAdjQueryCount;
751 $applyTime += self::TINY_WRITE_SEC * $omitted;
752
753 return $applyTime;
754 }
755
756 public function pendingWriteCallers() {
757 return $this->trxLevel ? $this->trxWriteCallers : [];
758 }
759
760 public function pendingWriteRowsAffected() {
761 return $this->trxWriteAffectedRows;
762 }
763
764 /**
765 * List the methods that have write queries or callbacks for the current transaction
766 *
767 * This method should not be used outside of Database/LoadBalancer
768 *
769 * @return string[]
770 * @since 1.32
771 */
772 public function pendingWriteAndCallbackCallers() {
773 $fnames = $this->pendingWriteCallers();
774 foreach ( [
775 $this->trxIdleCallbacks,
776 $this->trxPreCommitCallbacks,
777 $this->trxEndCallbacks
778 ] as $callbacks ) {
779 foreach ( $callbacks as $callback ) {
780 $fnames[] = $callback[1];
781 }
782 }
783
784 return $fnames;
785 }
786
787 /**
788 * @return string
789 */
790 private function flatAtomicSectionList() {
791 return array_reduce( $this->trxAtomicLevels, function ( $accum, $v ) {
792 return $accum === null ? $v[0] : "$accum, " . $v[0];
793 } );
794 }
795
796 public function isOpen() {
797 return $this->opened;
798 }
799
800 public function setFlag( $flag, $remember = self::REMEMBER_NOTHING ) {
801 if ( ( $flag & self::DBO_IGNORE ) ) {
802 throw new UnexpectedValueException( "Modifying DBO_IGNORE is not allowed." );
803 }
804
805 if ( $remember === self::REMEMBER_PRIOR ) {
806 array_push( $this->priorFlags, $this->flags );
807 }
808 $this->flags |= $flag;
809 }
810
811 public function clearFlag( $flag, $remember = self::REMEMBER_NOTHING ) {
812 if ( ( $flag & self::DBO_IGNORE ) ) {
813 throw new UnexpectedValueException( "Modifying DBO_IGNORE is not allowed." );
814 }
815
816 if ( $remember === self::REMEMBER_PRIOR ) {
817 array_push( $this->priorFlags, $this->flags );
818 }
819 $this->flags &= ~$flag;
820 }
821
822 public function restoreFlags( $state = self::RESTORE_PRIOR ) {
823 if ( !$this->priorFlags ) {
824 return;
825 }
826
827 if ( $state === self::RESTORE_INITIAL ) {
828 $this->flags = reset( $this->priorFlags );
829 $this->priorFlags = [];
830 } else {
831 $this->flags = array_pop( $this->priorFlags );
832 }
833 }
834
835 public function getFlag( $flag ) {
836 return (bool)( $this->flags & $flag );
837 }
838
839 /**
840 * @param string $name Class field name
841 * @return mixed
842 * @deprecated Since 1.28
843 */
844 public function getProperty( $name ) {
845 return $this->$name;
846 }
847
848 public function getDomainID() {
849 return $this->currentDomain->getId();
850 }
851
852 final public function getWikiID() {
853 return $this->getDomainID();
854 }
855
856 /**
857 * Get information about an index into an object
858 * @param string $table Table name
859 * @param string $index Index name
860 * @param string $fname Calling function name
861 * @return mixed Database-specific index description class or false if the index does not exist
862 */
863 abstract function indexInfo( $table, $index, $fname = __METHOD__ );
864
865 /**
866 * Wrapper for addslashes()
867 *
868 * @param string $s String to be slashed.
869 * @return string Slashed string.
870 */
871 abstract function strencode( $s );
872
873 /**
874 * Set a custom error handler for logging errors during database connection
875 */
876 protected function installErrorHandler() {
877 $this->phpError = false;
878 $this->htmlErrors = ini_set( 'html_errors', '0' );
879 set_error_handler( [ $this, 'connectionErrorLogger' ] );
880 }
881
882 /**
883 * Restore the previous error handler and return the last PHP error for this DB
884 *
885 * @return bool|string
886 */
887 protected function restoreErrorHandler() {
888 restore_error_handler();
889 if ( $this->htmlErrors !== false ) {
890 ini_set( 'html_errors', $this->htmlErrors );
891 }
892
893 return $this->getLastPHPError();
894 }
895
896 /**
897 * @return string|bool Last PHP error for this DB (typically connection errors)
898 */
899 protected function getLastPHPError() {
900 if ( $this->phpError ) {
901 $error = preg_replace( '!\[<a.*</a>\]!', '', $this->phpError );
902 $error = preg_replace( '!^.*?:\s?(.*)$!', '$1', $error );
903
904 return $error;
905 }
906
907 return false;
908 }
909
910 /**
911 * Error handler for logging errors during database connection
912 * This method should not be used outside of Database classes
913 *
914 * @param int $errno
915 * @param string $errstr
916 */
917 public function connectionErrorLogger( $errno, $errstr ) {
918 $this->phpError = $errstr;
919 }
920
921 /**
922 * Create a log context to pass to PSR-3 logger functions.
923 *
924 * @param array $extras Additional data to add to context
925 * @return array
926 */
927 protected function getLogContext( array $extras = [] ) {
928 return array_merge(
929 [
930 'db_server' => $this->server,
931 'db_name' => $this->getDBname(),
932 'db_user' => $this->user,
933 ],
934 $extras
935 );
936 }
937
938 final public function close() {
939 $exception = null; // error to throw after disconnecting
940
941 $wasOpen = $this->opened;
942 // This should mostly do nothing if the connection is already closed
943 if ( $this->conn ) {
944 // Roll back any dangling transaction first
945 if ( $this->trxLevel ) {
946 if ( $this->trxAtomicLevels ) {
947 // Cannot let incomplete atomic sections be committed
948 $levels = $this->flatAtomicSectionList();
949 $exception = new DBUnexpectedError(
950 $this,
951 __METHOD__ . ": atomic sections $levels are still open."
952 );
953 } elseif ( $this->trxAutomatic ) {
954 // Only the connection manager can commit non-empty DBO_TRX transactions
955 // (empty ones we can silently roll back)
956 if ( $this->writesOrCallbacksPending() ) {
957 $exception = new DBUnexpectedError(
958 $this,
959 __METHOD__ .
960 ": mass commit/rollback of peer transaction required (DBO_TRX set)."
961 );
962 }
963 } else {
964 // Manual transactions should have been committed or rolled
965 // back, even if empty.
966 $exception = new DBUnexpectedError(
967 $this,
968 __METHOD__ . ": transaction is still open (from {$this->trxFname})."
969 );
970 }
971
972 if ( $this->trxEndCallbacksSuppressed ) {
973 $exception = $exception ?: new DBUnexpectedError(
974 $this,
975 __METHOD__ . ': callbacks are suppressed; cannot properly commit.'
976 );
977 }
978
979 // Rollback the changes and run any callbacks as needed
980 $this->rollback( __METHOD__, self::FLUSHING_INTERNAL );
981 }
982
983 // Close the actual connection in the binding handle
984 $closed = $this->closeConnection();
985 } else {
986 $closed = true; // already closed; nothing to do
987 }
988
989 $this->conn = false;
990 $this->opened = false;
991
992 // Throw any unexpected errors after having disconnected
993 if ( $exception instanceof Exception ) {
994 throw $exception;
995 }
996
997 // Note that various subclasses call close() at the start of open(), which itself is
998 // called by replaceLostConnection(). In that case, just because onTransactionResolution()
999 // callbacks are pending does not mean that an exception should be thrown. Rather, they
1000 // will be executed after the reconnection step.
1001 if ( $wasOpen ) {
1002 // Sanity check that no callbacks are dangling
1003 $fnames = $this->pendingWriteAndCallbackCallers();
1004 if ( $fnames ) {
1005 throw new RuntimeException(
1006 "Transaction callbacks are still pending:\n" . implode( ', ', $fnames )
1007 );
1008 }
1009 }
1010
1011 return $closed;
1012 }
1013
1014 /**
1015 * Make sure there is an open connection handle (alive or not) as a sanity check
1016 *
1017 * This guards against fatal errors to the binding handle not being defined
1018 * in cases where open() was never called or close() was already called
1019 *
1020 * @throws DBUnexpectedError
1021 */
1022 protected function assertHasConnectionHandle() {
1023 if ( !$this->isOpen() ) {
1024 throw new DBUnexpectedError( $this, "DB connection was already closed." );
1025 }
1026 }
1027
1028 /**
1029 * Make sure that this server is not marked as a replica nor read-only as a sanity check
1030 *
1031 * @throws DBUnexpectedError
1032 */
1033 protected function assertIsWritableMaster() {
1034 if ( $this->getLBInfo( 'replica' ) === true ) {
1035 throw new DBReadOnlyRoleError(
1036 $this,
1037 'Write operations are not allowed on replica database connections.'
1038 );
1039 }
1040 $reason = $this->getReadOnlyReason();
1041 if ( $reason !== false ) {
1042 throw new DBReadOnlyError( $this, "Database is read-only: $reason" );
1043 }
1044 }
1045
1046 /**
1047 * Closes underlying database connection
1048 * @since 1.20
1049 * @return bool Whether connection was closed successfully
1050 */
1051 abstract protected function closeConnection();
1052
1053 /**
1054 * @deprecated since 1.32
1055 * @param string $error Fallback message, if none is given by DB
1056 * @throws DBConnectionError
1057 */
1058 public function reportConnectionError( $error = 'Unknown error' ) {
1059 call_user_func( $this->deprecationLogger, 'Use of ' . __METHOD__ . ' is deprecated.' );
1060 throw new DBConnectionError( $this, $this->lastError() ?: $error );
1061 }
1062
1063 /**
1064 * Run a query and return a DBMS-dependent wrapper or boolean
1065 *
1066 * For SELECT queries, this returns either:
1067 * - a) A driver-specific value/resource, only on success. This can be iterated
1068 * over by calling fetchObject()/fetchRow() until there are no more rows.
1069 * Alternatively, the result can be passed to resultObject() to obtain a
1070 * ResultWrapper instance which can then be iterated over via "foreach".
1071 * - b) False, on any query failure
1072 *
1073 * For non-SELECT queries, this returns either:
1074 * - a) A driver-specific value/resource, only on success
1075 * - b) True, only on success (e.g. no meaningful result other than "OK")
1076 * - c) False, on any query failure
1077 *
1078 * @param string $sql SQL query
1079 * @return mixed|bool An object, resource, or true on success; false on failure
1080 */
1081 abstract protected function doQuery( $sql );
1082
1083 /**
1084 * Determine whether a query writes to the DB. When in doubt, this returns true.
1085 *
1086 * Main use cases:
1087 *
1088 * - Subsequent web requests should not need to wait for replication from
1089 * the master position seen by this web request, unless this request made
1090 * changes to the master. This is handled by ChronologyProtector by checking
1091 * doneWrites() at the end of the request. doneWrites() returns true if any
1092 * query set lastWriteTime; which query() does based on isWriteQuery().
1093 *
1094 * - Reject write queries to replica DBs, in query().
1095 *
1096 * @param string $sql
1097 * @return bool
1098 */
1099 protected function isWriteQuery( $sql ) {
1100 // BEGIN and COMMIT queries are considered read queries here.
1101 // Database backends and drivers (MySQL, MariaDB, php-mysqli) generally
1102 // treat these as write queries, in that their results have "affected rows"
1103 // as meta data as from writes, instead of "num rows" as from reads.
1104 // But, we treat them as read queries because when reading data (from
1105 // either replica or master) we use transactions to enable repeatable-read
1106 // snapshots, which ensures we get consistent results from the same snapshot
1107 // for all queries within a request. Use cases:
1108 // - Treating these as writes would trigger ChronologyProtector (see method doc).
1109 // - We use this method to reject writes to replicas, but we need to allow
1110 // use of transactions on replicas for read snapshots. This fine given
1111 // that transactions by themselves don't make changes, only actual writes
1112 // within the transaction matter, which we still detect.
1113 return !preg_match(
1114 '/^(?:SELECT|BEGIN|ROLLBACK|COMMIT|SAVEPOINT|RELEASE|SET|SHOW|EXPLAIN|\(SELECT)\b/i',
1115 $sql
1116 );
1117 }
1118
1119 /**
1120 * @param string $sql
1121 * @return string|null
1122 */
1123 protected function getQueryVerb( $sql ) {
1124 return preg_match( '/^\s*([a-z]+)/i', $sql, $m ) ? strtoupper( $m[1] ) : null;
1125 }
1126
1127 /**
1128 * Determine whether a SQL statement is sensitive to isolation level.
1129 *
1130 * A SQL statement is considered transactable if its result could vary
1131 * depending on the transaction isolation level. Operational commands
1132 * such as 'SET' and 'SHOW' are not considered to be transactable.
1133 *
1134 * Main purpose: Used by query() to decide whether to begin a transaction
1135 * before the current query (in DBO_TRX mode, on by default).
1136 *
1137 * @param string $sql
1138 * @return bool
1139 */
1140 protected function isTransactableQuery( $sql ) {
1141 return !in_array(
1142 $this->getQueryVerb( $sql ),
1143 [ 'BEGIN', 'ROLLBACK', 'COMMIT', 'SET', 'SHOW', 'CREATE', 'ALTER' ],
1144 true
1145 );
1146 }
1147
1148 /**
1149 * @param string $sql A SQL query
1150 * @param bool $pseudoPermanent Treat any table from CREATE TEMPORARY as pseudo-permanent
1151 * @return int|null A self::TEMP_* constant for temp table operations or null otherwise
1152 */
1153 protected function registerTempTableWrite( $sql, $pseudoPermanent ) {
1154 static $qt = '[`"\']?(\w+)[`"\']?'; // quoted table
1155
1156 if ( preg_match(
1157 '/^CREATE\s+TEMPORARY\s+TABLE\s+(?:IF\s+NOT\s+EXISTS\s+)?' . $qt . '/i',
1158 $sql,
1159 $matches
1160 ) ) {
1161 $type = $pseudoPermanent ? self::TEMP_PSEUDO_PERMANENT : self::TEMP_NORMAL;
1162 $this->sessionTempTables[$matches[1]] = $type;
1163
1164 return $type;
1165 } elseif ( preg_match(
1166 '/^DROP\s+(?:TEMPORARY\s+)?TABLE\s+(?:IF\s+EXISTS\s+)?' . $qt . '/i',
1167 $sql,
1168 $matches
1169 ) ) {
1170 $type = $this->sessionTempTables[$matches[1]] ?? null;
1171 unset( $this->sessionTempTables[$matches[1]] );
1172
1173 return $type;
1174 } elseif ( preg_match(
1175 '/^TRUNCATE\s+(?:TEMPORARY\s+)?TABLE\s+(?:IF\s+EXISTS\s+)?' . $qt . '/i',
1176 $sql,
1177 $matches
1178 ) ) {
1179 return $this->sessionTempTables[$matches[1]] ?? null;
1180 } elseif ( preg_match(
1181 '/^(?:(?:INSERT|REPLACE)\s+(?:\w+\s+)?INTO|UPDATE|DELETE\s+FROM)\s+' . $qt . '/i',
1182 $sql,
1183 $matches
1184 ) ) {
1185 return $this->sessionTempTables[$matches[1]] ?? null;
1186 }
1187
1188 return null;
1189 }
1190
1191 public function query( $sql, $fname = __METHOD__, $flags = 0 ) {
1192 $this->assertTransactionStatus( $sql, $fname );
1193 $this->assertHasConnectionHandle();
1194
1195 $flags = (int)$flags; // b/c; this field used to be a bool
1196 $ignoreErrors = $this->hasFlags( $flags, self::QUERY_SILENCE_ERRORS );
1197
1198 $priorTransaction = $this->trxLevel;
1199 $priorWritesPending = $this->writesOrCallbacksPending();
1200 $this->lastQuery = $sql;
1201
1202 if ( $this->isWriteQuery( $sql ) ) {
1203 # In theory, non-persistent writes are allowed in read-only mode, but due to things
1204 # like https://bugs.mysql.com/bug.php?id=33669 that might not work anyway...
1205 $this->assertIsWritableMaster();
1206 # Do not treat temporary table writes as "meaningful writes" that need committing.
1207 # Profile them as reads. Integration tests can override this behavior via $flags.
1208 $pseudoPermanent = $this->hasFlags( $flags, self::QUERY_PSEUDO_PERMANENT );
1209 $tableType = $this->registerTempTableWrite( $sql, $pseudoPermanent );
1210 $isEffectiveWrite = ( $tableType !== self::TEMP_NORMAL );
1211 # DBConnRef uses QUERY_REPLICA_ROLE to enforce the replica role for raw SQL queries
1212 if ( $isEffectiveWrite && $this->hasFlags( $flags, self::QUERY_REPLICA_ROLE ) ) {
1213 throw new DBReadOnlyRoleError( $this, "Cannot write; target role is DB_REPLICA" );
1214 }
1215 } else {
1216 $isEffectiveWrite = false;
1217 }
1218
1219 # Add trace comment to the begin of the sql string, right after the operator.
1220 # Or, for one-word queries (like "BEGIN" or COMMIT") add it to the end (T44598)
1221 $commentedSql = preg_replace( '/\s|$/', " /* $fname {$this->agent} */ ", $sql, 1 );
1222
1223 # Send the query to the server and fetch any corresponding errors
1224 $ret = $this->attemptQuery( $sql, $commentedSql, $isEffectiveWrite, $fname );
1225 $lastError = $this->lastError();
1226 $lastErrno = $this->lastErrno();
1227
1228 $recoverableSR = false; // recoverable statement rollback?
1229 $recoverableCL = false; // recoverable connection loss?
1230
1231 if ( $ret === false && $this->wasConnectionLoss() ) {
1232 # Check if no meaningful session state was lost
1233 $recoverableCL = $this->canRecoverFromDisconnect( $sql, $priorWritesPending );
1234 # Update session state tracking and try to restore the connection
1235 $reconnected = $this->replaceLostConnection( __METHOD__ );
1236 # Silently resend the query to the server if it is safe and possible
1237 if ( $recoverableCL && $reconnected ) {
1238 $ret = $this->attemptQuery( $sql, $commentedSql, $isEffectiveWrite, $fname );
1239 $lastError = $this->lastError();
1240 $lastErrno = $this->lastErrno();
1241
1242 if ( $ret === false && $this->wasConnectionLoss() ) {
1243 # Query probably causes disconnects; reconnect and do not re-run it
1244 $this->replaceLostConnection( __METHOD__ );
1245 } else {
1246 $recoverableCL = false; // connection does not need recovering
1247 $recoverableSR = $this->wasKnownStatementRollbackError();
1248 }
1249 }
1250 } else {
1251 $recoverableSR = $this->wasKnownStatementRollbackError();
1252 }
1253
1254 if ( $ret === false ) {
1255 if ( $priorTransaction ) {
1256 if ( $recoverableSR ) {
1257 # We're ignoring an error that caused just the current query to be aborted.
1258 # But log the cause so we can log a deprecation notice if a caller actually
1259 # does ignore it.
1260 $this->trxStatusIgnoredCause = [ $lastError, $lastErrno, $fname ];
1261 } elseif ( !$recoverableCL ) {
1262 # Either the query was aborted or all queries after BEGIN where aborted.
1263 # In the first case, the only options going forward are (a) ROLLBACK, or
1264 # (b) ROLLBACK TO SAVEPOINT (if one was set). If the later case, the only
1265 # option is ROLLBACK, since the snapshots would have been released.
1266 $this->trxStatus = self::STATUS_TRX_ERROR;
1267 $this->trxStatusCause =
1268 $this->getQueryExceptionAndLog( $lastError, $lastErrno, $sql, $fname );
1269 $ignoreErrors = false; // cannot recover
1270 $this->trxStatusIgnoredCause = null;
1271 }
1272 }
1273
1274 $this->reportQueryError( $lastError, $lastErrno, $sql, $fname, $ignoreErrors );
1275 }
1276
1277 return $this->resultObject( $ret );
1278 }
1279
1280 /**
1281 * Wrapper for query() that also handles profiling, logging, and affected row count updates
1282 *
1283 * @param string $sql Original SQL query
1284 * @param string $commentedSql SQL query with debugging/trace comment
1285 * @param bool $isEffectiveWrite Whether the query is a (non-temporary table) write
1286 * @param string $fname Name of the calling function
1287 * @return bool|ResultWrapper True for a successful write query, ResultWrapper
1288 * object for a successful read query, or false on failure
1289 */
1290 private function attemptQuery( $sql, $commentedSql, $isEffectiveWrite, $fname ) {
1291 $this->beginIfImplied( $sql, $fname );
1292
1293 # Keep track of whether the transaction has write queries pending
1294 if ( $isEffectiveWrite ) {
1295 $this->lastWriteTime = microtime( true );
1296 if ( $this->trxLevel && !$this->trxDoneWrites ) {
1297 $this->trxDoneWrites = true;
1298 $this->trxProfiler->transactionWritingIn(
1299 $this->server, $this->getDomainID(), $this->trxShortId );
1300 }
1301 }
1302
1303 if ( $this->getFlag( self::DBO_DEBUG ) ) {
1304 $this->queryLogger->debug( "{$this->getDomainID()} {$commentedSql}" );
1305 }
1306
1307 $isMaster = !is_null( $this->getLBInfo( 'master' ) );
1308 # generalizeSQL() will probably cut down the query to reasonable
1309 # logging size most of the time. The substr is really just a sanity check.
1310 if ( $isMaster ) {
1311 $queryProf = 'query-m: ' . substr( self::generalizeSQL( $sql ), 0, 255 );
1312 } else {
1313 $queryProf = 'query: ' . substr( self::generalizeSQL( $sql ), 0, 255 );
1314 }
1315
1316 # Include query transaction state
1317 $queryProf .= $this->trxShortId ? " [TRX#{$this->trxShortId}]" : "";
1318
1319 $startTime = microtime( true );
1320 $ps = $this->profiler ? ( $this->profiler )( $queryProf ) : null;
1321 $this->affectedRowCount = null;
1322 $ret = $this->doQuery( $commentedSql );
1323 $this->affectedRowCount = $this->affectedRows();
1324 unset( $ps ); // profile out (if set)
1325 $queryRuntime = max( microtime( true ) - $startTime, 0.0 );
1326
1327 if ( $ret !== false ) {
1328 $this->lastPing = $startTime;
1329 if ( $isEffectiveWrite && $this->trxLevel ) {
1330 $this->updateTrxWriteQueryTime( $sql, $queryRuntime, $this->affectedRows() );
1331 $this->trxWriteCallers[] = $fname;
1332 }
1333 }
1334
1335 if ( $sql === self::PING_QUERY ) {
1336 $this->rttEstimate = $queryRuntime;
1337 }
1338
1339 $this->trxProfiler->recordQueryCompletion(
1340 $queryProf,
1341 $startTime,
1342 $isEffectiveWrite,
1343 $isEffectiveWrite ? $this->affectedRows() : $this->numRows( $ret )
1344 );
1345 $this->queryLogger->debug( $sql, [
1346 'method' => $fname,
1347 'master' => $isMaster,
1348 'runtime' => $queryRuntime,
1349 ] );
1350
1351 return $ret;
1352 }
1353
1354 /**
1355 * Start an implicit transaction if DBO_TRX is enabled and no transaction is active
1356 *
1357 * @param string $sql
1358 * @param string $fname
1359 */
1360 private function beginIfImplied( $sql, $fname ) {
1361 if (
1362 !$this->trxLevel &&
1363 $this->getFlag( self::DBO_TRX ) &&
1364 $this->isTransactableQuery( $sql )
1365 ) {
1366 $this->begin( __METHOD__ . " ($fname)", self::TRANSACTION_INTERNAL );
1367 $this->trxAutomatic = true;
1368 }
1369 }
1370
1371 /**
1372 * Update the estimated run-time of a query, not counting large row lock times
1373 *
1374 * LoadBalancer can be set to rollback transactions that will create huge replication
1375 * lag. It bases this estimate off of pendingWriteQueryDuration(). Certain simple
1376 * queries, like inserting a row can take a long time due to row locking. This method
1377 * uses some simple heuristics to discount those cases.
1378 *
1379 * @param string $sql A SQL write query
1380 * @param float $runtime Total runtime, including RTT
1381 * @param int $affected Affected row count
1382 */
1383 private function updateTrxWriteQueryTime( $sql, $runtime, $affected ) {
1384 // Whether this is indicative of replica DB runtime (except for RBR or ws_repl)
1385 $indicativeOfReplicaRuntime = true;
1386 if ( $runtime > self::SLOW_WRITE_SEC ) {
1387 $verb = $this->getQueryVerb( $sql );
1388 // insert(), upsert(), replace() are fast unless bulky in size or blocked on locks
1389 if ( $verb === 'INSERT' ) {
1390 $indicativeOfReplicaRuntime = $this->affectedRows() > self::SMALL_WRITE_ROWS;
1391 } elseif ( $verb === 'REPLACE' ) {
1392 $indicativeOfReplicaRuntime = $this->affectedRows() > self::SMALL_WRITE_ROWS / 2;
1393 }
1394 }
1395
1396 $this->trxWriteDuration += $runtime;
1397 $this->trxWriteQueryCount += 1;
1398 $this->trxWriteAffectedRows += $affected;
1399 if ( $indicativeOfReplicaRuntime ) {
1400 $this->trxWriteAdjDuration += $runtime;
1401 $this->trxWriteAdjQueryCount += 1;
1402 }
1403 }
1404
1405 /**
1406 * Error out if the DB is not in a valid state for a query via query()
1407 *
1408 * @param string $sql
1409 * @param string $fname
1410 * @throws DBTransactionStateError
1411 */
1412 private function assertTransactionStatus( $sql, $fname ) {
1413 $verb = $this->getQueryVerb( $sql );
1414 if ( $verb === 'USE' ) {
1415 throw new DBUnexpectedError( $this, "Got USE query; use selectDomain() instead." );
1416 }
1417
1418 if ( $verb === 'ROLLBACK' ) { // transaction/savepoint
1419 return;
1420 }
1421
1422 if ( $this->trxStatus < self::STATUS_TRX_OK ) {
1423 throw new DBTransactionStateError(
1424 $this,
1425 "Cannot execute query from $fname while transaction status is ERROR.",
1426 [],
1427 $this->trxStatusCause
1428 );
1429 } elseif ( $this->trxStatus === self::STATUS_TRX_OK && $this->trxStatusIgnoredCause ) {
1430 list( $iLastError, $iLastErrno, $iFname ) = $this->trxStatusIgnoredCause;
1431 call_user_func( $this->deprecationLogger,
1432 "Caller from $fname ignored an error originally raised from $iFname: " .
1433 "[$iLastErrno] $iLastError"
1434 );
1435 $this->trxStatusIgnoredCause = null;
1436 }
1437 }
1438
1439 public function assertNoOpenTransactions() {
1440 if ( $this->explicitTrxActive() ) {
1441 throw new DBTransactionError(
1442 $this,
1443 "Explicit transaction still active. A caller may have caught an error. "
1444 . "Open transactions: " . $this->flatAtomicSectionList()
1445 );
1446 }
1447 }
1448
1449 /**
1450 * Determine whether it is safe to retry queries after a database connection is lost
1451 *
1452 * @param string $sql SQL query
1453 * @param bool $priorWritesPending Whether there is a transaction open with
1454 * possible write queries or transaction pre-commit/idle callbacks
1455 * waiting on it to finish.
1456 * @return bool True if it is safe to retry the query, false otherwise
1457 */
1458 private function canRecoverFromDisconnect( $sql, $priorWritesPending ) {
1459 # Transaction dropped; this can mean lost writes, or REPEATABLE-READ snapshots.
1460 # Dropped connections also mean that named locks are automatically released.
1461 # Only allow error suppression in autocommit mode or when the lost transaction
1462 # didn't matter anyway (aside from DBO_TRX snapshot loss).
1463 if ( $this->namedLocksHeld ) {
1464 return false; // possible critical section violation
1465 } elseif ( $this->sessionTempTables ) {
1466 return false; // tables might be queried latter
1467 } elseif ( $sql === 'COMMIT' ) {
1468 return !$priorWritesPending; // nothing written anyway? (T127428)
1469 } elseif ( $sql === 'ROLLBACK' ) {
1470 return true; // transaction lost...which is also what was requested :)
1471 } elseif ( $this->explicitTrxActive() ) {
1472 return false; // don't drop atomocity and explicit snapshots
1473 } elseif ( $priorWritesPending ) {
1474 return false; // prior writes lost from implicit transaction
1475 }
1476
1477 return true;
1478 }
1479
1480 /**
1481 * Clean things up after session (and thus transaction) loss before reconnect
1482 */
1483 private function handleSessionLossPreconnect() {
1484 // Clean up tracking of session-level things...
1485 // https://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html
1486 // https://www.postgresql.org/docs/9.2/static/sql-createtable.html (ignoring ON COMMIT)
1487 $this->sessionTempTables = [];
1488 // https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html#function_get-lock
1489 // https://www.postgresql.org/docs/9.4/static/functions-admin.html#FUNCTIONS-ADVISORY-LOCKS
1490 $this->namedLocksHeld = [];
1491 // Session loss implies transaction loss
1492 $this->trxLevel = 0;
1493 $this->trxAtomicCounter = 0;
1494 $this->trxIdleCallbacks = []; // T67263; transaction already lost
1495 $this->trxPreCommitCallbacks = []; // T67263; transaction already lost
1496 // @note: leave trxRecurringCallbacks in place
1497 if ( $this->trxDoneWrites ) {
1498 $this->trxProfiler->transactionWritingOut(
1499 $this->server,
1500 $this->getDomainID(),
1501 $this->trxShortId,
1502 $this->pendingWriteQueryDuration( self::ESTIMATE_TOTAL ),
1503 $this->trxWriteAffectedRows
1504 );
1505 }
1506 }
1507
1508 /**
1509 * Clean things up after session (and thus transaction) loss after reconnect
1510 */
1511 private function handleSessionLossPostconnect() {
1512 try {
1513 // Handle callbacks in trxEndCallbacks, e.g. onTransactionResolution().
1514 // If callback suppression is set then the array will remain unhandled.
1515 $this->runOnTransactionIdleCallbacks( self::TRIGGER_ROLLBACK );
1516 } catch ( Exception $ex ) {
1517 // Already logged; move on...
1518 }
1519 try {
1520 // Handle callbacks in trxRecurringCallbacks, e.g. setTransactionListener()
1521 $this->runTransactionListenerCallbacks( self::TRIGGER_ROLLBACK );
1522 } catch ( Exception $ex ) {
1523 // Already logged; move on...
1524 }
1525 }
1526
1527 /**
1528 * Checks whether the cause of the error is detected to be a timeout.
1529 *
1530 * It returns false by default, and not all engines support detecting this yet.
1531 * If this returns false, it will be treated as a generic query error.
1532 *
1533 * @param string $error Error text
1534 * @param int $errno Error number
1535 * @return bool
1536 */
1537 protected function wasQueryTimeout( $error, $errno ) {
1538 return false;
1539 }
1540
1541 /**
1542 * Report a query error. Log the error, and if neither the object ignore
1543 * flag nor the $ignoreErrors flag is set, throw a DBQueryError.
1544 *
1545 * @param string $error
1546 * @param int $errno
1547 * @param string $sql
1548 * @param string $fname
1549 * @param bool $ignoreErrors
1550 * @throws DBQueryError
1551 */
1552 public function reportQueryError( $error, $errno, $sql, $fname, $ignoreErrors = false ) {
1553 if ( $ignoreErrors ) {
1554 $this->queryLogger->debug( "SQL ERROR (ignored): $error\n" );
1555 } else {
1556 $exception = $this->getQueryExceptionAndLog( $error, $errno, $sql, $fname );
1557
1558 throw $exception;
1559 }
1560 }
1561
1562 /**
1563 * @param string $error
1564 * @param string|int $errno
1565 * @param string $sql
1566 * @param string $fname
1567 * @return DBError
1568 */
1569 private function getQueryExceptionAndLog( $error, $errno, $sql, $fname ) {
1570 $sql1line = mb_substr( str_replace( "\n", "\\n", $sql ), 0, 5 * 1024 );
1571 $this->queryLogger->error(
1572 "{fname}\t{db_server}\t{errno}\t{error}\t{sql1line}",
1573 $this->getLogContext( [
1574 'method' => __METHOD__,
1575 'errno' => $errno,
1576 'error' => $error,
1577 'sql1line' => $sql1line,
1578 'fname' => $fname,
1579 'trace' => ( new RuntimeException() )->getTraceAsString()
1580 ] )
1581 );
1582 $this->queryLogger->debug( "SQL ERROR: " . $error . "\n" );
1583 $wasQueryTimeout = $this->wasQueryTimeout( $error, $errno );
1584 if ( $wasQueryTimeout ) {
1585 $e = new DBQueryTimeoutError( $this, $error, $errno, $sql, $fname );
1586 } else {
1587 $e = new DBQueryError( $this, $error, $errno, $sql, $fname );
1588 }
1589
1590 return $e;
1591 }
1592
1593 public function freeResult( $res ) {
1594 }
1595
1596 public function selectField(
1597 $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
1598 ) {
1599 if ( $var === '*' ) { // sanity
1600 throw new DBUnexpectedError( $this, "Cannot use a * field: got '$var'" );
1601 }
1602
1603 if ( !is_array( $options ) ) {
1604 $options = [ $options ];
1605 }
1606
1607 $options['LIMIT'] = 1;
1608
1609 $res = $this->select( $table, $var, $cond, $fname, $options, $join_conds );
1610 if ( $res === false ) {
1611 throw new DBUnexpectedError( $this, "Got false from select()" );
1612 }
1613
1614 $row = $this->fetchRow( $res );
1615 if ( $row === false ) {
1616 return false;
1617 }
1618
1619 return reset( $row );
1620 }
1621
1622 public function selectFieldValues(
1623 $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
1624 ) {
1625 if ( $var === '*' ) { // sanity
1626 throw new DBUnexpectedError( $this, "Cannot use a * field" );
1627 } elseif ( !is_string( $var ) ) { // sanity
1628 throw new DBUnexpectedError( $this, "Cannot use an array of fields" );
1629 }
1630
1631 if ( !is_array( $options ) ) {
1632 $options = [ $options ];
1633 }
1634
1635 $res = $this->select( $table, [ 'value' => $var ], $cond, $fname, $options, $join_conds );
1636 if ( $res === false ) {
1637 throw new DBUnexpectedError( $this, "Got false from select()" );
1638 }
1639
1640 $values = [];
1641 foreach ( $res as $row ) {
1642 $values[] = $row->value;
1643 }
1644
1645 return $values;
1646 }
1647
1648 /**
1649 * Returns an optional USE INDEX clause to go after the table, and a
1650 * string to go at the end of the query.
1651 *
1652 * @param array $options Associative array of options to be turned into
1653 * an SQL query, valid keys are listed in the function.
1654 * @return array
1655 * @see Database::select()
1656 */
1657 protected function makeSelectOptions( $options ) {
1658 $preLimitTail = $postLimitTail = '';
1659 $startOpts = '';
1660
1661 $noKeyOptions = [];
1662
1663 foreach ( $options as $key => $option ) {
1664 if ( is_numeric( $key ) ) {
1665 $noKeyOptions[$option] = true;
1666 }
1667 }
1668
1669 $preLimitTail .= $this->makeGroupByWithHaving( $options );
1670
1671 $preLimitTail .= $this->makeOrderBy( $options );
1672
1673 if ( isset( $noKeyOptions['FOR UPDATE'] ) ) {
1674 $postLimitTail .= ' FOR UPDATE';
1675 }
1676
1677 if ( isset( $noKeyOptions['LOCK IN SHARE MODE'] ) ) {
1678 $postLimitTail .= ' LOCK IN SHARE MODE';
1679 }
1680
1681 if ( isset( $noKeyOptions['DISTINCT'] ) || isset( $noKeyOptions['DISTINCTROW'] ) ) {
1682 $startOpts .= 'DISTINCT';
1683 }
1684
1685 # Various MySQL extensions
1686 if ( isset( $noKeyOptions['STRAIGHT_JOIN'] ) ) {
1687 $startOpts .= ' /*! STRAIGHT_JOIN */';
1688 }
1689
1690 if ( isset( $noKeyOptions['HIGH_PRIORITY'] ) ) {
1691 $startOpts .= ' HIGH_PRIORITY';
1692 }
1693
1694 if ( isset( $noKeyOptions['SQL_BIG_RESULT'] ) ) {
1695 $startOpts .= ' SQL_BIG_RESULT';
1696 }
1697
1698 if ( isset( $noKeyOptions['SQL_BUFFER_RESULT'] ) ) {
1699 $startOpts .= ' SQL_BUFFER_RESULT';
1700 }
1701
1702 if ( isset( $noKeyOptions['SQL_SMALL_RESULT'] ) ) {
1703 $startOpts .= ' SQL_SMALL_RESULT';
1704 }
1705
1706 if ( isset( $noKeyOptions['SQL_CALC_FOUND_ROWS'] ) ) {
1707 $startOpts .= ' SQL_CALC_FOUND_ROWS';
1708 }
1709
1710 if ( isset( $noKeyOptions['SQL_CACHE'] ) ) {
1711 $startOpts .= ' SQL_CACHE';
1712 }
1713
1714 if ( isset( $noKeyOptions['SQL_NO_CACHE'] ) ) {
1715 $startOpts .= ' SQL_NO_CACHE';
1716 }
1717
1718 if ( isset( $options['USE INDEX'] ) && is_string( $options['USE INDEX'] ) ) {
1719 $useIndex = $this->useIndexClause( $options['USE INDEX'] );
1720 } else {
1721 $useIndex = '';
1722 }
1723 if ( isset( $options['IGNORE INDEX'] ) && is_string( $options['IGNORE INDEX'] ) ) {
1724 $ignoreIndex = $this->ignoreIndexClause( $options['IGNORE INDEX'] );
1725 } else {
1726 $ignoreIndex = '';
1727 }
1728
1729 return [ $startOpts, $useIndex, $preLimitTail, $postLimitTail, $ignoreIndex ];
1730 }
1731
1732 /**
1733 * Returns an optional GROUP BY with an optional HAVING
1734 *
1735 * @param array $options Associative array of options
1736 * @return string
1737 * @see Database::select()
1738 * @since 1.21
1739 */
1740 protected function makeGroupByWithHaving( $options ) {
1741 $sql = '';
1742 if ( isset( $options['GROUP BY'] ) ) {
1743 $gb = is_array( $options['GROUP BY'] )
1744 ? implode( ',', $options['GROUP BY'] )
1745 : $options['GROUP BY'];
1746 $sql .= ' GROUP BY ' . $gb;
1747 }
1748 if ( isset( $options['HAVING'] ) ) {
1749 $having = is_array( $options['HAVING'] )
1750 ? $this->makeList( $options['HAVING'], self::LIST_AND )
1751 : $options['HAVING'];
1752 $sql .= ' HAVING ' . $having;
1753 }
1754
1755 return $sql;
1756 }
1757
1758 /**
1759 * Returns an optional ORDER BY
1760 *
1761 * @param array $options Associative array of options
1762 * @return string
1763 * @see Database::select()
1764 * @since 1.21
1765 */
1766 protected function makeOrderBy( $options ) {
1767 if ( isset( $options['ORDER BY'] ) ) {
1768 $ob = is_array( $options['ORDER BY'] )
1769 ? implode( ',', $options['ORDER BY'] )
1770 : $options['ORDER BY'];
1771
1772 return ' ORDER BY ' . $ob;
1773 }
1774
1775 return '';
1776 }
1777
1778 public function select(
1779 $table, $vars, $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
1780 ) {
1781 $sql = $this->selectSQLText( $table, $vars, $conds, $fname, $options, $join_conds );
1782
1783 return $this->query( $sql, $fname );
1784 }
1785
1786 public function selectSQLText( $table, $vars, $conds = '', $fname = __METHOD__,
1787 $options = [], $join_conds = []
1788 ) {
1789 if ( is_array( $vars ) ) {
1790 $fields = implode( ',', $this->fieldNamesWithAlias( $vars ) );
1791 } else {
1792 $fields = $vars;
1793 }
1794
1795 $options = (array)$options;
1796 $useIndexes = ( isset( $options['USE INDEX'] ) && is_array( $options['USE INDEX'] ) )
1797 ? $options['USE INDEX']
1798 : [];
1799 $ignoreIndexes = (
1800 isset( $options['IGNORE INDEX'] ) &&
1801 is_array( $options['IGNORE INDEX'] )
1802 )
1803 ? $options['IGNORE INDEX']
1804 : [];
1805
1806 if (
1807 $this->selectOptionsIncludeLocking( $options ) &&
1808 $this->selectFieldsOrOptionsAggregate( $vars, $options )
1809 ) {
1810 // Some DB types (postgres/oracle) disallow FOR UPDATE with aggregate
1811 // functions. Discourage use of such queries to encourage compatibility.
1812 call_user_func(
1813 $this->deprecationLogger,
1814 __METHOD__ . ": aggregation used with a locking SELECT ($fname)."
1815 );
1816 }
1817
1818 if ( is_array( $table ) ) {
1819 $from = ' FROM ' .
1820 $this->tableNamesWithIndexClauseOrJOIN(
1821 $table, $useIndexes, $ignoreIndexes, $join_conds );
1822 } elseif ( $table != '' ) {
1823 $from = ' FROM ' .
1824 $this->tableNamesWithIndexClauseOrJOIN(
1825 [ $table ], $useIndexes, $ignoreIndexes, [] );
1826 } else {
1827 $from = '';
1828 }
1829
1830 list( $startOpts, $useIndex, $preLimitTail, $postLimitTail, $ignoreIndex ) =
1831 $this->makeSelectOptions( $options );
1832
1833 if ( is_array( $conds ) ) {
1834 $conds = $this->makeList( $conds, self::LIST_AND );
1835 }
1836
1837 if ( $conds === null || $conds === false ) {
1838 $this->queryLogger->warning(
1839 __METHOD__
1840 . ' called from '
1841 . $fname
1842 . ' with incorrect parameters: $conds must be a string or an array'
1843 );
1844 $conds = '';
1845 }
1846
1847 if ( $conds === '' || $conds === '*' ) {
1848 $sql = "SELECT $startOpts $fields $from $useIndex $ignoreIndex $preLimitTail";
1849 } elseif ( is_string( $conds ) ) {
1850 $sql = "SELECT $startOpts $fields $from $useIndex $ignoreIndex " .
1851 "WHERE $conds $preLimitTail";
1852 } else {
1853 throw new DBUnexpectedError( $this, __METHOD__ . ' called with incorrect parameters' );
1854 }
1855
1856 if ( isset( $options['LIMIT'] ) ) {
1857 $sql = $this->limitResult( $sql, $options['LIMIT'],
1858 $options['OFFSET'] ?? false );
1859 }
1860 $sql = "$sql $postLimitTail";
1861
1862 if ( isset( $options['EXPLAIN'] ) ) {
1863 $sql = 'EXPLAIN ' . $sql;
1864 }
1865
1866 return $sql;
1867 }
1868
1869 public function selectRow( $table, $vars, $conds, $fname = __METHOD__,
1870 $options = [], $join_conds = []
1871 ) {
1872 $options = (array)$options;
1873 $options['LIMIT'] = 1;
1874
1875 $res = $this->select( $table, $vars, $conds, $fname, $options, $join_conds );
1876 if ( $res === false ) {
1877 throw new DBUnexpectedError( $this, "Got false from select()" );
1878 }
1879
1880 if ( !$this->numRows( $res ) ) {
1881 return false;
1882 }
1883
1884 return $this->fetchObject( $res );
1885 }
1886
1887 public function estimateRowCount(
1888 $table, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
1889 ) {
1890 $conds = $this->normalizeConditions( $conds, $fname );
1891 $column = $this->extractSingleFieldFromList( $var );
1892 if ( is_string( $column ) && !in_array( $column, [ '*', '1' ] ) ) {
1893 $conds[] = "$column IS NOT NULL";
1894 }
1895
1896 $res = $this->select(
1897 $table, [ 'rowcount' => 'COUNT(*)' ], $conds, $fname, $options, $join_conds
1898 );
1899 $row = $res ? $this->fetchRow( $res ) : [];
1900
1901 return isset( $row['rowcount'] ) ? (int)$row['rowcount'] : 0;
1902 }
1903
1904 public function selectRowCount(
1905 $tables, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
1906 ) {
1907 $conds = $this->normalizeConditions( $conds, $fname );
1908 $column = $this->extractSingleFieldFromList( $var );
1909 if ( is_string( $column ) && !in_array( $column, [ '*', '1' ] ) ) {
1910 $conds[] = "$column IS NOT NULL";
1911 }
1912
1913 $res = $this->select(
1914 [
1915 'tmp_count' => $this->buildSelectSubquery(
1916 $tables,
1917 '1',
1918 $conds,
1919 $fname,
1920 $options,
1921 $join_conds
1922 )
1923 ],
1924 [ 'rowcount' => 'COUNT(*)' ],
1925 [],
1926 $fname
1927 );
1928 $row = $res ? $this->fetchRow( $res ) : [];
1929
1930 return isset( $row['rowcount'] ) ? (int)$row['rowcount'] : 0;
1931 }
1932
1933 /**
1934 * @param string|array $options
1935 * @return bool
1936 */
1937 private function selectOptionsIncludeLocking( $options ) {
1938 $options = (array)$options;
1939 foreach ( [ 'FOR UPDATE', 'LOCK IN SHARE MODE' ] as $lock ) {
1940 if ( in_array( $lock, $options, true ) ) {
1941 return true;
1942 }
1943 }
1944
1945 return false;
1946 }
1947
1948 /**
1949 * @param array|string $fields
1950 * @param array|string $options
1951 * @return bool
1952 */
1953 private function selectFieldsOrOptionsAggregate( $fields, $options ) {
1954 foreach ( (array)$options as $key => $value ) {
1955 if ( is_string( $key ) ) {
1956 if ( preg_match( '/^(?:GROUP BY|HAVING)$/i', $key ) ) {
1957 return true;
1958 }
1959 } elseif ( is_string( $value ) ) {
1960 if ( preg_match( '/^(?:DISTINCT|DISTINCTROW)$/i', $value ) ) {
1961 return true;
1962 }
1963 }
1964 }
1965
1966 $regex = '/^(?:COUNT|MIN|MAX|SUM|GROUP_CONCAT|LISTAGG|ARRAY_AGG)\s*\\(/i';
1967 foreach ( (array)$fields as $field ) {
1968 if ( is_string( $field ) && preg_match( $regex, $field ) ) {
1969 return true;
1970 }
1971 }
1972
1973 return false;
1974 }
1975
1976 /**
1977 * @param array|string $conds
1978 * @param string $fname
1979 * @return array
1980 */
1981 final protected function normalizeConditions( $conds, $fname ) {
1982 if ( $conds === null || $conds === false ) {
1983 $this->queryLogger->warning(
1984 __METHOD__
1985 . ' called from '
1986 . $fname
1987 . ' with incorrect parameters: $conds must be a string or an array'
1988 );
1989 $conds = '';
1990 }
1991
1992 if ( !is_array( $conds ) ) {
1993 $conds = ( $conds === '' ) ? [] : [ $conds ];
1994 }
1995
1996 return $conds;
1997 }
1998
1999 /**
2000 * @param array|string $var Field parameter in the style of select()
2001 * @return string|null Column name or null; ignores aliases
2002 * @throws DBUnexpectedError Errors out if multiple columns are given
2003 */
2004 final protected function extractSingleFieldFromList( $var ) {
2005 if ( is_array( $var ) ) {
2006 if ( !$var ) {
2007 $column = null;
2008 } elseif ( count( $var ) == 1 ) {
2009 $column = $var[0] ?? reset( $var );
2010 } else {
2011 throw new DBUnexpectedError( $this, __METHOD__ . ': got multiple columns.' );
2012 }
2013 } else {
2014 $column = $var;
2015 }
2016
2017 return $column;
2018 }
2019
2020 public function lockForUpdate(
2021 $table, $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
2022 ) {
2023 if ( !$this->trxLevel && !$this->getFlag( self::DBO_TRX ) ) {
2024 throw new DBUnexpectedError(
2025 $this,
2026 __METHOD__ . ': no transaction is active nor is DBO_TRX set'
2027 );
2028 }
2029
2030 $options = (array)$options;
2031 $options[] = 'FOR UPDATE';
2032
2033 return $this->selectRowCount( $table, '*', $conds, $fname, $options, $join_conds );
2034 }
2035
2036 /**
2037 * Removes most variables from an SQL query and replaces them with X or N for numbers.
2038 * It's only slightly flawed. Don't use for anything important.
2039 *
2040 * @param string $sql A SQL Query
2041 *
2042 * @return string
2043 */
2044 protected static function generalizeSQL( $sql ) {
2045 # This does the same as the regexp below would do, but in such a way
2046 # as to avoid crashing php on some large strings.
2047 # $sql = preg_replace( "/'([^\\\\']|\\\\.)*'|\"([^\\\\\"]|\\\\.)*\"/", "'X'", $sql );
2048
2049 $sql = str_replace( "\\\\", '', $sql );
2050 $sql = str_replace( "\\'", '', $sql );
2051 $sql = str_replace( "\\\"", '', $sql );
2052 $sql = preg_replace( "/'.*'/s", "'X'", $sql );
2053 $sql = preg_replace( '/".*"/s', "'X'", $sql );
2054
2055 # All newlines, tabs, etc replaced by single space
2056 $sql = preg_replace( '/\s+/', ' ', $sql );
2057
2058 # All numbers => N,
2059 # except the ones surrounded by characters, e.g. l10n
2060 $sql = preg_replace( '/-?\d+(,-?\d+)+/s', 'N,...,N', $sql );
2061 $sql = preg_replace( '/(?<![a-zA-Z])-?\d+(?![a-zA-Z])/s', 'N', $sql );
2062
2063 return $sql;
2064 }
2065
2066 public function fieldExists( $table, $field, $fname = __METHOD__ ) {
2067 $info = $this->fieldInfo( $table, $field );
2068
2069 return (bool)$info;
2070 }
2071
2072 public function indexExists( $table, $index, $fname = __METHOD__ ) {
2073 if ( !$this->tableExists( $table ) ) {
2074 return null;
2075 }
2076
2077 $info = $this->indexInfo( $table, $index, $fname );
2078 if ( is_null( $info ) ) {
2079 return null;
2080 } else {
2081 return $info !== false;
2082 }
2083 }
2084
2085 abstract public function tableExists( $table, $fname = __METHOD__ );
2086
2087 public function indexUnique( $table, $index ) {
2088 $indexInfo = $this->indexInfo( $table, $index );
2089
2090 if ( !$indexInfo ) {
2091 return null;
2092 }
2093
2094 return !$indexInfo[0]->Non_unique;
2095 }
2096
2097 /**
2098 * Helper for Database::insert().
2099 *
2100 * @param array $options
2101 * @return string
2102 */
2103 protected function makeInsertOptions( $options ) {
2104 return implode( ' ', $options );
2105 }
2106
2107 public function insert( $table, $a, $fname = __METHOD__, $options = [] ) {
2108 # No rows to insert, easy just return now
2109 if ( !count( $a ) ) {
2110 return true;
2111 }
2112
2113 $table = $this->tableName( $table );
2114
2115 if ( !is_array( $options ) ) {
2116 $options = [ $options ];
2117 }
2118
2119 $options = $this->makeInsertOptions( $options );
2120
2121 if ( isset( $a[0] ) && is_array( $a[0] ) ) {
2122 $multi = true;
2123 $keys = array_keys( $a[0] );
2124 } else {
2125 $multi = false;
2126 $keys = array_keys( $a );
2127 }
2128
2129 $sql = 'INSERT ' . $options .
2130 " INTO $table (" . implode( ',', $keys ) . ') VALUES ';
2131
2132 if ( $multi ) {
2133 $first = true;
2134 foreach ( $a as $row ) {
2135 if ( $first ) {
2136 $first = false;
2137 } else {
2138 $sql .= ',';
2139 }
2140 $sql .= '(' . $this->makeList( $row ) . ')';
2141 }
2142 } else {
2143 $sql .= '(' . $this->makeList( $a ) . ')';
2144 }
2145
2146 $this->query( $sql, $fname );
2147
2148 return true;
2149 }
2150
2151 /**
2152 * Make UPDATE options array for Database::makeUpdateOptions
2153 *
2154 * @param array $options
2155 * @return array
2156 */
2157 protected function makeUpdateOptionsArray( $options ) {
2158 if ( !is_array( $options ) ) {
2159 $options = [ $options ];
2160 }
2161
2162 $opts = [];
2163
2164 if ( in_array( 'IGNORE', $options ) ) {
2165 $opts[] = 'IGNORE';
2166 }
2167
2168 return $opts;
2169 }
2170
2171 /**
2172 * Make UPDATE options for the Database::update function
2173 *
2174 * @param array $options The options passed to Database::update
2175 * @return string
2176 */
2177 protected function makeUpdateOptions( $options ) {
2178 $opts = $this->makeUpdateOptionsArray( $options );
2179
2180 return implode( ' ', $opts );
2181 }
2182
2183 public function update( $table, $values, $conds, $fname = __METHOD__, $options = [] ) {
2184 $table = $this->tableName( $table );
2185 $opts = $this->makeUpdateOptions( $options );
2186 $sql = "UPDATE $opts $table SET " . $this->makeList( $values, self::LIST_SET );
2187
2188 if ( $conds !== [] && $conds !== '*' ) {
2189 $sql .= " WHERE " . $this->makeList( $conds, self::LIST_AND );
2190 }
2191
2192 $this->query( $sql, $fname );
2193
2194 return true;
2195 }
2196
2197 public function makeList( $a, $mode = self::LIST_COMMA ) {
2198 if ( !is_array( $a ) ) {
2199 throw new DBUnexpectedError( $this, __METHOD__ . ' called with incorrect parameters' );
2200 }
2201
2202 $first = true;
2203 $list = '';
2204
2205 foreach ( $a as $field => $value ) {
2206 if ( !$first ) {
2207 if ( $mode == self::LIST_AND ) {
2208 $list .= ' AND ';
2209 } elseif ( $mode == self::LIST_OR ) {
2210 $list .= ' OR ';
2211 } else {
2212 $list .= ',';
2213 }
2214 } else {
2215 $first = false;
2216 }
2217
2218 if ( ( $mode == self::LIST_AND || $mode == self::LIST_OR ) && is_numeric( $field ) ) {
2219 $list .= "($value)";
2220 } elseif ( $mode == self::LIST_SET && is_numeric( $field ) ) {
2221 $list .= "$value";
2222 } elseif (
2223 ( $mode == self::LIST_AND || $mode == self::LIST_OR ) && is_array( $value )
2224 ) {
2225 // Remove null from array to be handled separately if found
2226 $includeNull = false;
2227 foreach ( array_keys( $value, null, true ) as $nullKey ) {
2228 $includeNull = true;
2229 unset( $value[$nullKey] );
2230 }
2231 if ( count( $value ) == 0 && !$includeNull ) {
2232 throw new InvalidArgumentException(
2233 __METHOD__ . ": empty input for field $field" );
2234 } elseif ( count( $value ) == 0 ) {
2235 // only check if $field is null
2236 $list .= "$field IS NULL";
2237 } else {
2238 // IN clause contains at least one valid element
2239 if ( $includeNull ) {
2240 // Group subconditions to ensure correct precedence
2241 $list .= '(';
2242 }
2243 if ( count( $value ) == 1 ) {
2244 // Special-case single values, as IN isn't terribly efficient
2245 // Don't necessarily assume the single key is 0; we don't
2246 // enforce linear numeric ordering on other arrays here.
2247 $value = array_values( $value )[0];
2248 $list .= $field . " = " . $this->addQuotes( $value );
2249 } else {
2250 $list .= $field . " IN (" . $this->makeList( $value ) . ") ";
2251 }
2252 // if null present in array, append IS NULL
2253 if ( $includeNull ) {
2254 $list .= " OR $field IS NULL)";
2255 }
2256 }
2257 } elseif ( $value === null ) {
2258 if ( $mode == self::LIST_AND || $mode == self::LIST_OR ) {
2259 $list .= "$field IS ";
2260 } elseif ( $mode == self::LIST_SET ) {
2261 $list .= "$field = ";
2262 }
2263 $list .= 'NULL';
2264 } else {
2265 if (
2266 $mode == self::LIST_AND || $mode == self::LIST_OR || $mode == self::LIST_SET
2267 ) {
2268 $list .= "$field = ";
2269 }
2270 $list .= $mode == self::LIST_NAMES ? $value : $this->addQuotes( $value );
2271 }
2272 }
2273
2274 return $list;
2275 }
2276
2277 public function makeWhereFrom2d( $data, $baseKey, $subKey ) {
2278 $conds = [];
2279
2280 foreach ( $data as $base => $sub ) {
2281 if ( count( $sub ) ) {
2282 $conds[] = $this->makeList(
2283 [ $baseKey => $base, $subKey => array_keys( $sub ) ],
2284 self::LIST_AND );
2285 }
2286 }
2287
2288 if ( $conds ) {
2289 return $this->makeList( $conds, self::LIST_OR );
2290 } else {
2291 // Nothing to search for...
2292 return false;
2293 }
2294 }
2295
2296 public function aggregateValue( $valuedata, $valuename = 'value' ) {
2297 return $valuename;
2298 }
2299
2300 public function bitNot( $field ) {
2301 return "(~$field)";
2302 }
2303
2304 public function bitAnd( $fieldLeft, $fieldRight ) {
2305 return "($fieldLeft & $fieldRight)";
2306 }
2307
2308 public function bitOr( $fieldLeft, $fieldRight ) {
2309 return "($fieldLeft | $fieldRight)";
2310 }
2311
2312 public function buildConcat( $stringList ) {
2313 return 'CONCAT(' . implode( ',', $stringList ) . ')';
2314 }
2315
2316 public function buildGroupConcatField(
2317 $delim, $table, $field, $conds = '', $join_conds = []
2318 ) {
2319 $fld = "GROUP_CONCAT($field SEPARATOR " . $this->addQuotes( $delim ) . ')';
2320
2321 return '(' . $this->selectSQLText( $table, $fld, $conds, null, [], $join_conds ) . ')';
2322 }
2323
2324 public function buildSubstring( $input, $startPosition, $length = null ) {
2325 $this->assertBuildSubstringParams( $startPosition, $length );
2326 $functionBody = "$input FROM $startPosition";
2327 if ( $length !== null ) {
2328 $functionBody .= " FOR $length";
2329 }
2330 return 'SUBSTRING(' . $functionBody . ')';
2331 }
2332
2333 /**
2334 * Check type and bounds for parameters to self::buildSubstring()
2335 *
2336 * All supported databases have substring functions that behave the same for
2337 * positive $startPosition and non-negative $length, but behaviors differ when
2338 * given 0 or negative $startPosition or negative $length. The simplest
2339 * solution to that is to just forbid those values.
2340 *
2341 * @param int $startPosition
2342 * @param int|null $length
2343 * @since 1.31
2344 */
2345 protected function assertBuildSubstringParams( $startPosition, $length ) {
2346 if ( !is_int( $startPosition ) || $startPosition <= 0 ) {
2347 throw new InvalidArgumentException(
2348 '$startPosition must be a positive integer'
2349 );
2350 }
2351 if ( !( is_int( $length ) && $length >= 0 || $length === null ) ) {
2352 throw new InvalidArgumentException(
2353 '$length must be null or an integer greater than or equal to 0'
2354 );
2355 }
2356 }
2357
2358 public function buildStringCast( $field ) {
2359 // In theory this should work for any standards-compliant
2360 // SQL implementation, although it may not be the best way to do it.
2361 return "CAST( $field AS CHARACTER )";
2362 }
2363
2364 public function buildIntegerCast( $field ) {
2365 return 'CAST( ' . $field . ' AS INTEGER )';
2366 }
2367
2368 public function buildSelectSubquery(
2369 $table, $vars, $conds = '', $fname = __METHOD__,
2370 $options = [], $join_conds = []
2371 ) {
2372 return new Subquery(
2373 $this->selectSQLText( $table, $vars, $conds, $fname, $options, $join_conds )
2374 );
2375 }
2376
2377 public function databasesAreIndependent() {
2378 return false;
2379 }
2380
2381 final public function selectDB( $db ) {
2382 $this->selectDomain( new DatabaseDomain(
2383 $db,
2384 $this->currentDomain->getSchema(),
2385 $this->currentDomain->getTablePrefix()
2386 ) );
2387
2388 return true;
2389 }
2390
2391 final public function selectDomain( $domain ) {
2392 $this->doSelectDomain( DatabaseDomain::newFromId( $domain ) );
2393 }
2394
2395 protected function doSelectDomain( DatabaseDomain $domain ) {
2396 $this->currentDomain = $domain;
2397 }
2398
2399 public function getDBname() {
2400 return $this->currentDomain->getDatabase();
2401 }
2402
2403 public function getServer() {
2404 return $this->server;
2405 }
2406
2407 public function tableName( $name, $format = 'quoted' ) {
2408 if ( $name instanceof Subquery ) {
2409 throw new DBUnexpectedError(
2410 $this,
2411 __METHOD__ . ': got Subquery instance when expecting a string.'
2412 );
2413 }
2414
2415 # Skip the entire process when we have a string quoted on both ends.
2416 # Note that we check the end so that we will still quote any use of
2417 # use of `database`.table. But won't break things if someone wants
2418 # to query a database table with a dot in the name.
2419 if ( $this->isQuotedIdentifier( $name ) ) {
2420 return $name;
2421 }
2422
2423 # Lets test for any bits of text that should never show up in a table
2424 # name. Basically anything like JOIN or ON which are actually part of
2425 # SQL queries, but may end up inside of the table value to combine
2426 # sql. Such as how the API is doing.
2427 # Note that we use a whitespace test rather than a \b test to avoid
2428 # any remote case where a word like on may be inside of a table name
2429 # surrounded by symbols which may be considered word breaks.
2430 if ( preg_match( '/(^|\s)(DISTINCT|JOIN|ON|AS)(\s|$)/i', $name ) !== 0 ) {
2431 $this->queryLogger->warning(
2432 __METHOD__ . ": use of subqueries is not supported this way.",
2433 [ 'trace' => ( new RuntimeException() )->getTraceAsString() ]
2434 );
2435
2436 return $name;
2437 }
2438
2439 # Split database and table into proper variables.
2440 list( $database, $schema, $prefix, $table ) = $this->qualifiedTableComponents( $name );
2441
2442 # Quote $table and apply the prefix if not quoted.
2443 # $tableName might be empty if this is called from Database::replaceVars()
2444 $tableName = "{$prefix}{$table}";
2445 if ( $format === 'quoted'
2446 && !$this->isQuotedIdentifier( $tableName )
2447 && $tableName !== ''
2448 ) {
2449 $tableName = $this->addIdentifierQuotes( $tableName );
2450 }
2451
2452 # Quote $schema and $database and merge them with the table name if needed
2453 $tableName = $this->prependDatabaseOrSchema( $schema, $tableName, $format );
2454 $tableName = $this->prependDatabaseOrSchema( $database, $tableName, $format );
2455
2456 return $tableName;
2457 }
2458
2459 /**
2460 * Get the table components needed for a query given the currently selected database
2461 *
2462 * @param string $name Table name in the form of db.schema.table, db.table, or table
2463 * @return array (DB name or "" for default, schema name, table prefix, table name)
2464 */
2465 protected function qualifiedTableComponents( $name ) {
2466 # We reverse the explode so that database.table and table both output the correct table.
2467 $dbDetails = explode( '.', $name, 3 );
2468 if ( count( $dbDetails ) == 3 ) {
2469 list( $database, $schema, $table ) = $dbDetails;
2470 # We don't want any prefix added in this case
2471 $prefix = '';
2472 } elseif ( count( $dbDetails ) == 2 ) {
2473 list( $database, $table ) = $dbDetails;
2474 # We don't want any prefix added in this case
2475 $prefix = '';
2476 # In dbs that support it, $database may actually be the schema
2477 # but that doesn't affect any of the functionality here
2478 $schema = '';
2479 } else {
2480 list( $table ) = $dbDetails;
2481 if ( isset( $this->tableAliases[$table] ) ) {
2482 $database = $this->tableAliases[$table]['dbname'];
2483 $schema = is_string( $this->tableAliases[$table]['schema'] )
2484 ? $this->tableAliases[$table]['schema']
2485 : $this->relationSchemaQualifier();
2486 $prefix = is_string( $this->tableAliases[$table]['prefix'] )
2487 ? $this->tableAliases[$table]['prefix']
2488 : $this->tablePrefix();
2489 } else {
2490 $database = '';
2491 $schema = $this->relationSchemaQualifier(); # Default schema
2492 $prefix = $this->tablePrefix(); # Default prefix
2493 }
2494 }
2495
2496 return [ $database, $schema, $prefix, $table ];
2497 }
2498
2499 /**
2500 * @param string|null $namespace Database or schema
2501 * @param string $relation Name of table, view, sequence, etc...
2502 * @param string $format One of (raw, quoted)
2503 * @return string Relation name with quoted and merged $namespace as needed
2504 */
2505 private function prependDatabaseOrSchema( $namespace, $relation, $format ) {
2506 if ( strlen( $namespace ) ) {
2507 if ( $format === 'quoted' && !$this->isQuotedIdentifier( $namespace ) ) {
2508 $namespace = $this->addIdentifierQuotes( $namespace );
2509 }
2510 $relation = $namespace . '.' . $relation;
2511 }
2512
2513 return $relation;
2514 }
2515
2516 public function tableNames() {
2517 $inArray = func_get_args();
2518 $retVal = [];
2519
2520 foreach ( $inArray as $name ) {
2521 $retVal[$name] = $this->tableName( $name );
2522 }
2523
2524 return $retVal;
2525 }
2526
2527 public function tableNamesN() {
2528 $inArray = func_get_args();
2529 $retVal = [];
2530
2531 foreach ( $inArray as $name ) {
2532 $retVal[] = $this->tableName( $name );
2533 }
2534
2535 return $retVal;
2536 }
2537
2538 /**
2539 * Get an aliased table name
2540 *
2541 * This returns strings like "tableName AS newTableName" for aliased tables
2542 * and "(SELECT * from tableA) newTablename" for subqueries (e.g. derived tables)
2543 *
2544 * @see Database::tableName()
2545 * @param string|Subquery $table Table name or object with a 'sql' field
2546 * @param string|bool $alias Table alias (optional)
2547 * @return string SQL name for aliased table. Will not alias a table to its own name
2548 */
2549 protected function tableNameWithAlias( $table, $alias = false ) {
2550 if ( is_string( $table ) ) {
2551 $quotedTable = $this->tableName( $table );
2552 } elseif ( $table instanceof Subquery ) {
2553 $quotedTable = (string)$table;
2554 } else {
2555 throw new InvalidArgumentException( "Table must be a string or Subquery." );
2556 }
2557
2558 if ( $alias === false || $alias === $table ) {
2559 if ( $table instanceof Subquery ) {
2560 throw new InvalidArgumentException( "Subquery table missing alias." );
2561 }
2562
2563 return $quotedTable;
2564 } else {
2565 return $quotedTable . ' ' . $this->addIdentifierQuotes( $alias );
2566 }
2567 }
2568
2569 /**
2570 * Gets an array of aliased table names
2571 *
2572 * @param array $tables [ [alias] => table ]
2573 * @return string[] See tableNameWithAlias()
2574 */
2575 protected function tableNamesWithAlias( $tables ) {
2576 $retval = [];
2577 foreach ( $tables as $alias => $table ) {
2578 if ( is_numeric( $alias ) ) {
2579 $alias = $table;
2580 }
2581 $retval[] = $this->tableNameWithAlias( $table, $alias );
2582 }
2583
2584 return $retval;
2585 }
2586
2587 /**
2588 * Get an aliased field name
2589 * e.g. fieldName AS newFieldName
2590 *
2591 * @param string $name Field name
2592 * @param string|bool $alias Alias (optional)
2593 * @return string SQL name for aliased field. Will not alias a field to its own name
2594 */
2595 protected function fieldNameWithAlias( $name, $alias = false ) {
2596 if ( !$alias || (string)$alias === (string)$name ) {
2597 return $name;
2598 } else {
2599 return $name . ' AS ' . $this->addIdentifierQuotes( $alias ); // PostgreSQL needs AS
2600 }
2601 }
2602
2603 /**
2604 * Gets an array of aliased field names
2605 *
2606 * @param array $fields [ [alias] => field ]
2607 * @return string[] See fieldNameWithAlias()
2608 */
2609 protected function fieldNamesWithAlias( $fields ) {
2610 $retval = [];
2611 foreach ( $fields as $alias => $field ) {
2612 if ( is_numeric( $alias ) ) {
2613 $alias = $field;
2614 }
2615 $retval[] = $this->fieldNameWithAlias( $field, $alias );
2616 }
2617
2618 return $retval;
2619 }
2620
2621 /**
2622 * Get the aliased table name clause for a FROM clause
2623 * which might have a JOIN and/or USE INDEX or IGNORE INDEX clause
2624 *
2625 * @param array $tables ( [alias] => table )
2626 * @param array $use_index Same as for select()
2627 * @param array $ignore_index Same as for select()
2628 * @param array $join_conds Same as for select()
2629 * @return string
2630 */
2631 protected function tableNamesWithIndexClauseOrJOIN(
2632 $tables, $use_index = [], $ignore_index = [], $join_conds = []
2633 ) {
2634 $ret = [];
2635 $retJOIN = [];
2636 $use_index = (array)$use_index;
2637 $ignore_index = (array)$ignore_index;
2638 $join_conds = (array)$join_conds;
2639
2640 foreach ( $tables as $alias => $table ) {
2641 if ( !is_string( $alias ) ) {
2642 // No alias? Set it equal to the table name
2643 $alias = $table;
2644 }
2645
2646 if ( is_array( $table ) ) {
2647 // A parenthesized group
2648 if ( count( $table ) > 1 ) {
2649 $joinedTable = '(' .
2650 $this->tableNamesWithIndexClauseOrJOIN(
2651 $table, $use_index, $ignore_index, $join_conds ) . ')';
2652 } else {
2653 // Degenerate case
2654 $innerTable = reset( $table );
2655 $innerAlias = key( $table );
2656 $joinedTable = $this->tableNameWithAlias(
2657 $innerTable,
2658 is_string( $innerAlias ) ? $innerAlias : $innerTable
2659 );
2660 }
2661 } else {
2662 $joinedTable = $this->tableNameWithAlias( $table, $alias );
2663 }
2664
2665 // Is there a JOIN clause for this table?
2666 if ( isset( $join_conds[$alias] ) ) {
2667 list( $joinType, $conds ) = $join_conds[$alias];
2668 $tableClause = $joinType;
2669 $tableClause .= ' ' . $joinedTable;
2670 if ( isset( $use_index[$alias] ) ) { // has USE INDEX?
2671 $use = $this->useIndexClause( implode( ',', (array)$use_index[$alias] ) );
2672 if ( $use != '' ) {
2673 $tableClause .= ' ' . $use;
2674 }
2675 }
2676 if ( isset( $ignore_index[$alias] ) ) { // has IGNORE INDEX?
2677 $ignore = $this->ignoreIndexClause(
2678 implode( ',', (array)$ignore_index[$alias] ) );
2679 if ( $ignore != '' ) {
2680 $tableClause .= ' ' . $ignore;
2681 }
2682 }
2683 $on = $this->makeList( (array)$conds, self::LIST_AND );
2684 if ( $on != '' ) {
2685 $tableClause .= ' ON (' . $on . ')';
2686 }
2687
2688 $retJOIN[] = $tableClause;
2689 } elseif ( isset( $use_index[$alias] ) ) {
2690 // Is there an INDEX clause for this table?
2691 $tableClause = $joinedTable;
2692 $tableClause .= ' ' . $this->useIndexClause(
2693 implode( ',', (array)$use_index[$alias] )
2694 );
2695
2696 $ret[] = $tableClause;
2697 } elseif ( isset( $ignore_index[$alias] ) ) {
2698 // Is there an INDEX clause for this table?
2699 $tableClause = $joinedTable;
2700 $tableClause .= ' ' . $this->ignoreIndexClause(
2701 implode( ',', (array)$ignore_index[$alias] )
2702 );
2703
2704 $ret[] = $tableClause;
2705 } else {
2706 $tableClause = $joinedTable;
2707
2708 $ret[] = $tableClause;
2709 }
2710 }
2711
2712 // We can't separate explicit JOIN clauses with ',', use ' ' for those
2713 $implicitJoins = implode( ',', $ret );
2714 $explicitJoins = implode( ' ', $retJOIN );
2715
2716 // Compile our final table clause
2717 return implode( ' ', [ $implicitJoins, $explicitJoins ] );
2718 }
2719
2720 /**
2721 * Allows for index remapping in queries where this is not consistent across DBMS
2722 *
2723 * @param string $index
2724 * @return string
2725 */
2726 protected function indexName( $index ) {
2727 return $this->indexAliases[$index] ?? $index;
2728 }
2729
2730 public function addQuotes( $s ) {
2731 if ( $s instanceof Blob ) {
2732 $s = $s->fetch();
2733 }
2734 if ( $s === null ) {
2735 return 'NULL';
2736 } elseif ( is_bool( $s ) ) {
2737 return (int)$s;
2738 } else {
2739 # This will also quote numeric values. This should be harmless,
2740 # and protects against weird problems that occur when they really
2741 # _are_ strings such as article titles and string->number->string
2742 # conversion is not 1:1.
2743 return "'" . $this->strencode( $s ) . "'";
2744 }
2745 }
2746
2747 public function addIdentifierQuotes( $s ) {
2748 return '"' . str_replace( '"', '""', $s ) . '"';
2749 }
2750
2751 /**
2752 * Returns if the given identifier looks quoted or not according to
2753 * the database convention for quoting identifiers .
2754 *
2755 * @note Do not use this to determine if untrusted input is safe.
2756 * A malicious user can trick this function.
2757 * @param string $name
2758 * @return bool
2759 */
2760 public function isQuotedIdentifier( $name ) {
2761 return $name[0] == '"' && substr( $name, -1, 1 ) == '"';
2762 }
2763
2764 /**
2765 * @param string $s
2766 * @param string $escapeChar
2767 * @return string
2768 */
2769 protected function escapeLikeInternal( $s, $escapeChar = '`' ) {
2770 return str_replace( [ $escapeChar, '%', '_' ],
2771 [ "{$escapeChar}{$escapeChar}", "{$escapeChar}%", "{$escapeChar}_" ],
2772 $s );
2773 }
2774
2775 public function buildLike() {
2776 $params = func_get_args();
2777
2778 if ( count( $params ) > 0 && is_array( $params[0] ) ) {
2779 $params = $params[0];
2780 }
2781
2782 $s = '';
2783
2784 // We use ` instead of \ as the default LIKE escape character, since addQuotes()
2785 // may escape backslashes, creating problems of double escaping. The `
2786 // character has good cross-DBMS compatibility, avoiding special operators
2787 // in MS SQL like ^ and %
2788 $escapeChar = '`';
2789
2790 foreach ( $params as $value ) {
2791 if ( $value instanceof LikeMatch ) {
2792 $s .= $value->toString();
2793 } else {
2794 $s .= $this->escapeLikeInternal( $value, $escapeChar );
2795 }
2796 }
2797
2798 return ' LIKE ' .
2799 $this->addQuotes( $s ) . ' ESCAPE ' . $this->addQuotes( $escapeChar ) . ' ';
2800 }
2801
2802 public function anyChar() {
2803 return new LikeMatch( '_' );
2804 }
2805
2806 public function anyString() {
2807 return new LikeMatch( '%' );
2808 }
2809
2810 public function nextSequenceValue( $seqName ) {
2811 return null;
2812 }
2813
2814 /**
2815 * USE INDEX clause. Unlikely to be useful for anything but MySQL. This
2816 * is only needed because a) MySQL must be as efficient as possible due to
2817 * its use on Wikipedia, and b) MySQL 4.0 is kind of dumb sometimes about
2818 * which index to pick. Anyway, other databases might have different
2819 * indexes on a given table. So don't bother overriding this unless you're
2820 * MySQL.
2821 * @param string $index
2822 * @return string
2823 */
2824 public function useIndexClause( $index ) {
2825 return '';
2826 }
2827
2828 /**
2829 * IGNORE INDEX clause. Unlikely to be useful for anything but MySQL. This
2830 * is only needed because a) MySQL must be as efficient as possible due to
2831 * its use on Wikipedia, and b) MySQL 4.0 is kind of dumb sometimes about
2832 * which index to pick. Anyway, other databases might have different
2833 * indexes on a given table. So don't bother overriding this unless you're
2834 * MySQL.
2835 * @param string $index
2836 * @return string
2837 */
2838 public function ignoreIndexClause( $index ) {
2839 return '';
2840 }
2841
2842 public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__ ) {
2843 if ( count( $rows ) == 0 ) {
2844 return;
2845 }
2846
2847 $uniqueIndexes = (array)$uniqueIndexes;
2848 // Single row case
2849 if ( !is_array( reset( $rows ) ) ) {
2850 $rows = [ $rows ];
2851 }
2852
2853 try {
2854 $this->startAtomic( $fname, self::ATOMIC_CANCELABLE );
2855 $affectedRowCount = 0;
2856 foreach ( $rows as $row ) {
2857 // Delete rows which collide with this one
2858 $indexWhereClauses = [];
2859 foreach ( $uniqueIndexes as $index ) {
2860 $indexColumns = (array)$index;
2861 $indexRowValues = array_intersect_key( $row, array_flip( $indexColumns ) );
2862 if ( count( $indexRowValues ) != count( $indexColumns ) ) {
2863 throw new DBUnexpectedError(
2864 $this,
2865 'New record does not provide all values for unique key (' .
2866 implode( ', ', $indexColumns ) . ')'
2867 );
2868 } elseif ( in_array( null, $indexRowValues, true ) ) {
2869 throw new DBUnexpectedError(
2870 $this,
2871 'New record has a null value for unique key (' .
2872 implode( ', ', $indexColumns ) . ')'
2873 );
2874 }
2875 $indexWhereClauses[] = $this->makeList( $indexRowValues, LIST_AND );
2876 }
2877
2878 if ( $indexWhereClauses ) {
2879 $this->delete( $table, $this->makeList( $indexWhereClauses, LIST_OR ), $fname );
2880 $affectedRowCount += $this->affectedRows();
2881 }
2882
2883 // Now insert the row
2884 $this->insert( $table, $row, $fname );
2885 $affectedRowCount += $this->affectedRows();
2886 }
2887 $this->endAtomic( $fname );
2888 $this->affectedRowCount = $affectedRowCount;
2889 } catch ( Exception $e ) {
2890 $this->cancelAtomic( $fname );
2891 throw $e;
2892 }
2893 }
2894
2895 /**
2896 * REPLACE query wrapper for MySQL and SQLite, which have a native REPLACE
2897 * statement.
2898 *
2899 * @param string $table Table name
2900 * @param array|string $rows Row(s) to insert
2901 * @param string $fname Caller function name
2902 */
2903 protected function nativeReplace( $table, $rows, $fname ) {
2904 $table = $this->tableName( $table );
2905
2906 # Single row case
2907 if ( !is_array( reset( $rows ) ) ) {
2908 $rows = [ $rows ];
2909 }
2910
2911 $sql = "REPLACE INTO $table (" . implode( ',', array_keys( $rows[0] ) ) . ') VALUES ';
2912 $first = true;
2913
2914 foreach ( $rows as $row ) {
2915 if ( $first ) {
2916 $first = false;
2917 } else {
2918 $sql .= ',';
2919 }
2920
2921 $sql .= '(' . $this->makeList( $row ) . ')';
2922 }
2923
2924 $this->query( $sql, $fname );
2925 }
2926
2927 public function upsert( $table, array $rows, $uniqueIndexes, array $set,
2928 $fname = __METHOD__
2929 ) {
2930 if ( $rows === [] ) {
2931 return true; // nothing to do
2932 }
2933
2934 $uniqueIndexes = (array)$uniqueIndexes;
2935 if ( !is_array( reset( $rows ) ) ) {
2936 $rows = [ $rows ];
2937 }
2938
2939 if ( count( $uniqueIndexes ) ) {
2940 $clauses = []; // list WHERE clauses that each identify a single row
2941 foreach ( $rows as $row ) {
2942 foreach ( $uniqueIndexes as $index ) {
2943 $index = is_array( $index ) ? $index : [ $index ]; // columns
2944 $rowKey = []; // unique key to this row
2945 foreach ( $index as $column ) {
2946 $rowKey[$column] = $row[$column];
2947 }
2948 $clauses[] = $this->makeList( $rowKey, self::LIST_AND );
2949 }
2950 }
2951 $where = [ $this->makeList( $clauses, self::LIST_OR ) ];
2952 } else {
2953 $where = false;
2954 }
2955
2956 $affectedRowCount = 0;
2957 try {
2958 $this->startAtomic( $fname, self::ATOMIC_CANCELABLE );
2959 # Update any existing conflicting row(s)
2960 if ( $where !== false ) {
2961 $this->update( $table, $set, $where, $fname );
2962 $affectedRowCount += $this->affectedRows();
2963 }
2964 # Now insert any non-conflicting row(s)
2965 $this->insert( $table, $rows, $fname, [ 'IGNORE' ] );
2966 $affectedRowCount += $this->affectedRows();
2967 $this->endAtomic( $fname );
2968 $this->affectedRowCount = $affectedRowCount;
2969 } catch ( Exception $e ) {
2970 $this->cancelAtomic( $fname );
2971 throw $e;
2972 }
2973
2974 return true;
2975 }
2976
2977 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
2978 $fname = __METHOD__
2979 ) {
2980 if ( !$conds ) {
2981 throw new DBUnexpectedError( $this, __METHOD__ . ' called with empty $conds' );
2982 }
2983
2984 $delTable = $this->tableName( $delTable );
2985 $joinTable = $this->tableName( $joinTable );
2986 $sql = "DELETE FROM $delTable WHERE $delVar IN (SELECT $joinVar FROM $joinTable ";
2987 if ( $conds != '*' ) {
2988 $sql .= 'WHERE ' . $this->makeList( $conds, self::LIST_AND );
2989 }
2990 $sql .= ')';
2991
2992 $this->query( $sql, $fname );
2993 }
2994
2995 public function textFieldSize( $table, $field ) {
2996 $table = $this->tableName( $table );
2997 $sql = "SHOW COLUMNS FROM $table LIKE \"$field\";";
2998 $res = $this->query( $sql, __METHOD__ );
2999 $row = $this->fetchObject( $res );
3000
3001 $m = [];
3002
3003 if ( preg_match( '/\((.*)\)/', $row->Type, $m ) ) {
3004 $size = $m[1];
3005 } else {
3006 $size = -1;
3007 }
3008
3009 return $size;
3010 }
3011
3012 public function delete( $table, $conds, $fname = __METHOD__ ) {
3013 if ( !$conds ) {
3014 throw new DBUnexpectedError( $this, __METHOD__ . ' called with no conditions' );
3015 }
3016
3017 $table = $this->tableName( $table );
3018 $sql = "DELETE FROM $table";
3019
3020 if ( $conds != '*' ) {
3021 if ( is_array( $conds ) ) {
3022 $conds = $this->makeList( $conds, self::LIST_AND );
3023 }
3024 $sql .= ' WHERE ' . $conds;
3025 }
3026
3027 $this->query( $sql, $fname );
3028
3029 return true;
3030 }
3031
3032 final public function insertSelect(
3033 $destTable, $srcTable, $varMap, $conds,
3034 $fname = __METHOD__, $insertOptions = [], $selectOptions = [], $selectJoinConds = []
3035 ) {
3036 static $hints = [ 'NO_AUTO_COLUMNS' ];
3037
3038 $insertOptions = (array)$insertOptions;
3039 $selectOptions = (array)$selectOptions;
3040
3041 if ( $this->cliMode && $this->isInsertSelectSafe( $insertOptions, $selectOptions ) ) {
3042 // For massive migrations with downtime, we don't want to select everything
3043 // into memory and OOM, so do all this native on the server side if possible.
3044 $this->nativeInsertSelect(
3045 $destTable,
3046 $srcTable,
3047 $varMap,
3048 $conds,
3049 $fname,
3050 array_diff( $insertOptions, $hints ),
3051 $selectOptions,
3052 $selectJoinConds
3053 );
3054 } else {
3055 $this->nonNativeInsertSelect(
3056 $destTable,
3057 $srcTable,
3058 $varMap,
3059 $conds,
3060 $fname,
3061 array_diff( $insertOptions, $hints ),
3062 $selectOptions,
3063 $selectJoinConds
3064 );
3065 }
3066
3067 return true;
3068 }
3069
3070 /**
3071 * @param array $insertOptions INSERT options
3072 * @param array $selectOptions SELECT options
3073 * @return bool Whether an INSERT SELECT with these options will be replication safe
3074 * @since 1.31
3075 */
3076 protected function isInsertSelectSafe( array $insertOptions, array $selectOptions ) {
3077 return true;
3078 }
3079
3080 /**
3081 * Implementation of insertSelect() based on select() and insert()
3082 *
3083 * @see IDatabase::insertSelect()
3084 * @since 1.30
3085 * @param string $destTable
3086 * @param string|array $srcTable
3087 * @param array $varMap
3088 * @param array $conds
3089 * @param string $fname
3090 * @param array $insertOptions
3091 * @param array $selectOptions
3092 * @param array $selectJoinConds
3093 */
3094 protected function nonNativeInsertSelect( $destTable, $srcTable, $varMap, $conds,
3095 $fname = __METHOD__,
3096 $insertOptions = [], $selectOptions = [], $selectJoinConds = []
3097 ) {
3098 // For web requests, do a locking SELECT and then INSERT. This puts the SELECT burden
3099 // on only the master (without needing row-based-replication). It also makes it easy to
3100 // know how big the INSERT is going to be.
3101 $fields = [];
3102 foreach ( $varMap as $dstColumn => $sourceColumnOrSql ) {
3103 $fields[] = $this->fieldNameWithAlias( $sourceColumnOrSql, $dstColumn );
3104 }
3105 $selectOptions[] = 'FOR UPDATE';
3106 $res = $this->select(
3107 $srcTable, implode( ',', $fields ), $conds, $fname, $selectOptions, $selectJoinConds
3108 );
3109 if ( !$res ) {
3110 return;
3111 }
3112
3113 try {
3114 $affectedRowCount = 0;
3115 $this->startAtomic( $fname, self::ATOMIC_CANCELABLE );
3116 $rows = [];
3117 $ok = true;
3118 foreach ( $res as $row ) {
3119 $rows[] = (array)$row;
3120
3121 // Avoid inserts that are too huge
3122 if ( count( $rows ) >= $this->nonNativeInsertSelectBatchSize ) {
3123 $ok = $this->insert( $destTable, $rows, $fname, $insertOptions );
3124 if ( !$ok ) {
3125 break;
3126 }
3127 $affectedRowCount += $this->affectedRows();
3128 $rows = [];
3129 }
3130 }
3131 if ( $rows && $ok ) {
3132 $ok = $this->insert( $destTable, $rows, $fname, $insertOptions );
3133 if ( $ok ) {
3134 $affectedRowCount += $this->affectedRows();
3135 }
3136 }
3137 if ( $ok ) {
3138 $this->endAtomic( $fname );
3139 $this->affectedRowCount = $affectedRowCount;
3140 } else {
3141 $this->cancelAtomic( $fname );
3142 }
3143 } catch ( Exception $e ) {
3144 $this->cancelAtomic( $fname );
3145 throw $e;
3146 }
3147 }
3148
3149 /**
3150 * Native server-side implementation of insertSelect() for situations where
3151 * we don't want to select everything into memory
3152 *
3153 * @see IDatabase::insertSelect()
3154 * @param string $destTable
3155 * @param string|array $srcTable
3156 * @param array $varMap
3157 * @param array $conds
3158 * @param string $fname
3159 * @param array $insertOptions
3160 * @param array $selectOptions
3161 * @param array $selectJoinConds
3162 */
3163 protected function nativeInsertSelect( $destTable, $srcTable, $varMap, $conds,
3164 $fname = __METHOD__,
3165 $insertOptions = [], $selectOptions = [], $selectJoinConds = []
3166 ) {
3167 $destTable = $this->tableName( $destTable );
3168
3169 if ( !is_array( $insertOptions ) ) {
3170 $insertOptions = [ $insertOptions ];
3171 }
3172
3173 $insertOptions = $this->makeInsertOptions( $insertOptions );
3174
3175 $selectSql = $this->selectSQLText(
3176 $srcTable,
3177 array_values( $varMap ),
3178 $conds,
3179 $fname,
3180 $selectOptions,
3181 $selectJoinConds
3182 );
3183
3184 $sql = "INSERT $insertOptions" .
3185 " INTO $destTable (" . implode( ',', array_keys( $varMap ) ) . ') ' .
3186 $selectSql;
3187
3188 $this->query( $sql, $fname );
3189 }
3190
3191 public function limitResult( $sql, $limit, $offset = false ) {
3192 if ( !is_numeric( $limit ) ) {
3193 throw new DBUnexpectedError( $this,
3194 "Invalid non-numeric limit passed to limitResult()\n" );
3195 }
3196 // This version works in MySQL and SQLite. It will very likely need to be
3197 // overridden for most other RDBMS subclasses.
3198 return "$sql LIMIT "
3199 . ( ( is_numeric( $offset ) && $offset != 0 ) ? "{$offset}," : "" )
3200 . "{$limit} ";
3201 }
3202
3203 public function unionSupportsOrderAndLimit() {
3204 return true; // True for almost every DB supported
3205 }
3206
3207 public function unionQueries( $sqls, $all ) {
3208 $glue = $all ? ') UNION ALL (' : ') UNION (';
3209
3210 return '(' . implode( $glue, $sqls ) . ')';
3211 }
3212
3213 public function unionConditionPermutations(
3214 $table, $vars, array $permute_conds, $extra_conds = '', $fname = __METHOD__,
3215 $options = [], $join_conds = []
3216 ) {
3217 // First, build the Cartesian product of $permute_conds
3218 $conds = [ [] ];
3219 foreach ( $permute_conds as $field => $values ) {
3220 if ( !$values ) {
3221 // Skip empty $values
3222 continue;
3223 }
3224 $values = array_unique( $values ); // For sanity
3225 $newConds = [];
3226 foreach ( $conds as $cond ) {
3227 foreach ( $values as $value ) {
3228 $cond[$field] = $value;
3229 $newConds[] = $cond; // Arrays are by-value, not by-reference, so this works
3230 }
3231 }
3232 $conds = $newConds;
3233 }
3234
3235 $extra_conds = $extra_conds === '' ? [] : (array)$extra_conds;
3236
3237 // If there's just one condition and no subordering, hand off to
3238 // selectSQLText directly.
3239 if ( count( $conds ) === 1 &&
3240 ( !isset( $options['INNER ORDER BY'] ) || !$this->unionSupportsOrderAndLimit() )
3241 ) {
3242 return $this->selectSQLText(
3243 $table, $vars, $conds[0] + $extra_conds, $fname, $options, $join_conds
3244 );
3245 }
3246
3247 // Otherwise, we need to pull out the order and limit to apply after
3248 // the union. Then build the SQL queries for each set of conditions in
3249 // $conds. Then union them together (using UNION ALL, because the
3250 // product *should* already be distinct).
3251 $orderBy = $this->makeOrderBy( $options );
3252 $limit = $options['LIMIT'] ?? null;
3253 $offset = $options['OFFSET'] ?? false;
3254 $all = empty( $options['NOTALL'] ) && !in_array( 'NOTALL', $options );
3255 if ( !$this->unionSupportsOrderAndLimit() ) {
3256 unset( $options['ORDER BY'], $options['LIMIT'], $options['OFFSET'] );
3257 } else {
3258 if ( array_key_exists( 'INNER ORDER BY', $options ) ) {
3259 $options['ORDER BY'] = $options['INNER ORDER BY'];
3260 }
3261 if ( $limit !== null && is_numeric( $offset ) && $offset != 0 ) {
3262 // We need to increase the limit by the offset rather than
3263 // using the offset directly, otherwise it'll skip incorrectly
3264 // in the subqueries.
3265 $options['LIMIT'] = $limit + $offset;
3266 unset( $options['OFFSET'] );
3267 }
3268 }
3269
3270 $sqls = [];
3271 foreach ( $conds as $cond ) {
3272 $sqls[] = $this->selectSQLText(
3273 $table, $vars, $cond + $extra_conds, $fname, $options, $join_conds
3274 );
3275 }
3276 $sql = $this->unionQueries( $sqls, $all ) . $orderBy;
3277 if ( $limit !== null ) {
3278 $sql = $this->limitResult( $sql, $limit, $offset );
3279 }
3280
3281 return $sql;
3282 }
3283
3284 public function conditional( $cond, $trueVal, $falseVal ) {
3285 if ( is_array( $cond ) ) {
3286 $cond = $this->makeList( $cond, self::LIST_AND );
3287 }
3288
3289 return " (CASE WHEN $cond THEN $trueVal ELSE $falseVal END) ";
3290 }
3291
3292 public function strreplace( $orig, $old, $new ) {
3293 return "REPLACE({$orig}, {$old}, {$new})";
3294 }
3295
3296 public function getServerUptime() {
3297 return 0;
3298 }
3299
3300 public function wasDeadlock() {
3301 return false;
3302 }
3303
3304 public function wasLockTimeout() {
3305 return false;
3306 }
3307
3308 public function wasConnectionLoss() {
3309 return $this->wasConnectionError( $this->lastErrno() );
3310 }
3311
3312 public function wasReadOnlyError() {
3313 return false;
3314 }
3315
3316 public function wasErrorReissuable() {
3317 return (
3318 $this->wasDeadlock() ||
3319 $this->wasLockTimeout() ||
3320 $this->wasConnectionLoss()
3321 );
3322 }
3323
3324 /**
3325 * Do not use this method outside of Database/DBError classes
3326 *
3327 * @param int|string $errno
3328 * @return bool Whether the given query error was a connection drop
3329 */
3330 public function wasConnectionError( $errno ) {
3331 return false;
3332 }
3333
3334 /**
3335 * @return bool Whether it is known that the last query error only caused statement rollback
3336 * @note This is for backwards compatibility for callers catching DBError exceptions in
3337 * order to ignore problems like duplicate key errors or foriegn key violations
3338 * @since 1.31
3339 */
3340 protected function wasKnownStatementRollbackError() {
3341 return false; // don't know; it could have caused a transaction rollback
3342 }
3343
3344 public function deadlockLoop() {
3345 $args = func_get_args();
3346 $function = array_shift( $args );
3347 $tries = self::DEADLOCK_TRIES;
3348
3349 $this->begin( __METHOD__ );
3350
3351 $retVal = null;
3352 /** @var Exception $e */
3353 $e = null;
3354 do {
3355 try {
3356 $retVal = $function( ...$args );
3357 break;
3358 } catch ( DBQueryError $e ) {
3359 if ( $this->wasDeadlock() ) {
3360 // Retry after a randomized delay
3361 usleep( mt_rand( self::DEADLOCK_DELAY_MIN, self::DEADLOCK_DELAY_MAX ) );
3362 } else {
3363 // Throw the error back up
3364 throw $e;
3365 }
3366 }
3367 } while ( --$tries > 0 );
3368
3369 if ( $tries <= 0 ) {
3370 // Too many deadlocks; give up
3371 $this->rollback( __METHOD__ );
3372 throw $e;
3373 } else {
3374 $this->commit( __METHOD__ );
3375
3376 return $retVal;
3377 }
3378 }
3379
3380 public function masterPosWait( DBMasterPos $pos, $timeout ) {
3381 # Real waits are implemented in the subclass.
3382 return 0;
3383 }
3384
3385 public function getReplicaPos() {
3386 # Stub
3387 return false;
3388 }
3389
3390 public function getMasterPos() {
3391 # Stub
3392 return false;
3393 }
3394
3395 public function serverIsReadOnly() {
3396 return false;
3397 }
3398
3399 final public function onTransactionResolution( callable $callback, $fname = __METHOD__ ) {
3400 if ( !$this->trxLevel ) {
3401 throw new DBUnexpectedError( $this, "No transaction is active." );
3402 }
3403 $this->trxEndCallbacks[] = [ $callback, $fname, $this->currentAtomicSectionId() ];
3404 }
3405
3406 final public function onTransactionCommitOrIdle( callable $callback, $fname = __METHOD__ ) {
3407 if ( !$this->trxLevel && $this->getTransactionRoundId() ) {
3408 // Start an implicit transaction similar to how query() does
3409 $this->begin( __METHOD__, self::TRANSACTION_INTERNAL );
3410 $this->trxAutomatic = true;
3411 }
3412
3413 $this->trxIdleCallbacks[] = [ $callback, $fname, $this->currentAtomicSectionId() ];
3414 if ( !$this->trxLevel ) {
3415 $this->runOnTransactionIdleCallbacks( self::TRIGGER_IDLE );
3416 }
3417 }
3418
3419 final public function onTransactionIdle( callable $callback, $fname = __METHOD__ ) {
3420 $this->onTransactionCommitOrIdle( $callback, $fname );
3421 }
3422
3423 final public function onTransactionPreCommitOrIdle( callable $callback, $fname = __METHOD__ ) {
3424 if ( !$this->trxLevel && $this->getTransactionRoundId() ) {
3425 // Start an implicit transaction similar to how query() does
3426 $this->begin( __METHOD__, self::TRANSACTION_INTERNAL );
3427 $this->trxAutomatic = true;
3428 }
3429
3430 if ( $this->trxLevel ) {
3431 $this->trxPreCommitCallbacks[] = [ $callback, $fname, $this->currentAtomicSectionId() ];
3432 } else {
3433 // No transaction is active nor will start implicitly, so make one for this callback
3434 $this->startAtomic( __METHOD__, self::ATOMIC_CANCELABLE );
3435 try {
3436 $callback( $this );
3437 $this->endAtomic( __METHOD__ );
3438 } catch ( Exception $e ) {
3439 $this->cancelAtomic( __METHOD__ );
3440 throw $e;
3441 }
3442 }
3443 }
3444
3445 /**
3446 * @return AtomicSectionIdentifier|null ID of the topmost atomic section level
3447 */
3448 private function currentAtomicSectionId() {
3449 if ( $this->trxLevel && $this->trxAtomicLevels ) {
3450 $levelInfo = end( $this->trxAtomicLevels );
3451
3452 return $levelInfo[1];
3453 }
3454
3455 return null;
3456 }
3457
3458 /**
3459 * @param AtomicSectionIdentifier $old
3460 * @param AtomicSectionIdentifier $new
3461 */
3462 private function reassignCallbacksForSection(
3463 AtomicSectionIdentifier $old, AtomicSectionIdentifier $new
3464 ) {
3465 foreach ( $this->trxPreCommitCallbacks as $key => $info ) {
3466 if ( $info[2] === $old ) {
3467 $this->trxPreCommitCallbacks[$key][2] = $new;
3468 }
3469 }
3470 foreach ( $this->trxIdleCallbacks as $key => $info ) {
3471 if ( $info[2] === $old ) {
3472 $this->trxIdleCallbacks[$key][2] = $new;
3473 }
3474 }
3475 foreach ( $this->trxEndCallbacks as $key => $info ) {
3476 if ( $info[2] === $old ) {
3477 $this->trxEndCallbacks[$key][2] = $new;
3478 }
3479 }
3480 }
3481
3482 /**
3483 * @param AtomicSectionIdentifier[] $sectionIds ID of an actual savepoint
3484 * @throws UnexpectedValueException
3485 */
3486 private function modifyCallbacksForCancel( array $sectionIds ) {
3487 // Cancel the "on commit" callbacks owned by this savepoint
3488 $this->trxIdleCallbacks = array_filter(
3489 $this->trxIdleCallbacks,
3490 function ( $entry ) use ( $sectionIds ) {
3491 return !in_array( $entry[2], $sectionIds, true );
3492 }
3493 );
3494 $this->trxPreCommitCallbacks = array_filter(
3495 $this->trxPreCommitCallbacks,
3496 function ( $entry ) use ( $sectionIds ) {
3497 return !in_array( $entry[2], $sectionIds, true );
3498 }
3499 );
3500 // Make "on resolution" callbacks owned by this savepoint to perceive a rollback
3501 foreach ( $this->trxEndCallbacks as $key => $entry ) {
3502 if ( in_array( $entry[2], $sectionIds, true ) ) {
3503 $callback = $entry[0];
3504 $this->trxEndCallbacks[$key][0] = function () use ( $callback ) {
3505 return $callback( self::TRIGGER_ROLLBACK, $this );
3506 };
3507 }
3508 }
3509 }
3510
3511 final public function setTransactionListener( $name, callable $callback = null ) {
3512 if ( $callback ) {
3513 $this->trxRecurringCallbacks[$name] = $callback;
3514 } else {
3515 unset( $this->trxRecurringCallbacks[$name] );
3516 }
3517 }
3518
3519 /**
3520 * Whether to disable running of post-COMMIT/ROLLBACK callbacks
3521 *
3522 * This method should not be used outside of Database/LoadBalancer
3523 *
3524 * @param bool $suppress
3525 * @since 1.28
3526 */
3527 final public function setTrxEndCallbackSuppression( $suppress ) {
3528 $this->trxEndCallbacksSuppressed = $suppress;
3529 }
3530
3531 /**
3532 * Actually consume and run any "on transaction idle/resolution" callbacks.
3533 *
3534 * This method should not be used outside of Database/LoadBalancer
3535 *
3536 * @param int $trigger IDatabase::TRIGGER_* constant
3537 * @return int Number of callbacks attempted
3538 * @since 1.20
3539 * @throws Exception
3540 */
3541 public function runOnTransactionIdleCallbacks( $trigger ) {
3542 if ( $this->trxLevel ) { // sanity
3543 throw new DBUnexpectedError( $this, __METHOD__ . ': a transaction is still open.' );
3544 }
3545
3546 if ( $this->trxEndCallbacksSuppressed ) {
3547 return 0;
3548 }
3549
3550 $count = 0;
3551 $autoTrx = $this->getFlag( self::DBO_TRX ); // automatic begin() enabled?
3552 /** @var Exception $e */
3553 $e = null; // first exception
3554 do { // callbacks may add callbacks :)
3555 $callbacks = array_merge(
3556 $this->trxIdleCallbacks,
3557 $this->trxEndCallbacks // include "transaction resolution" callbacks
3558 );
3559 $this->trxIdleCallbacks = []; // consumed (and recursion guard)
3560 $this->trxEndCallbacks = []; // consumed (recursion guard)
3561 foreach ( $callbacks as $callback ) {
3562 ++$count;
3563 list( $phpCallback ) = $callback;
3564 $this->clearFlag( self::DBO_TRX ); // make each query its own transaction
3565 try {
3566 // @phan-suppress-next-line PhanParamTooManyCallable
3567 call_user_func( $phpCallback, $trigger, $this );
3568 } catch ( Exception $ex ) {
3569 call_user_func( $this->errorLogger, $ex );
3570 $e = $e ?: $ex;
3571 // Some callbacks may use startAtomic/endAtomic, so make sure
3572 // their transactions are ended so other callbacks don't fail
3573 if ( $this->trxLevel() ) {
3574 $this->rollback( __METHOD__, self::FLUSHING_INTERNAL );
3575 }
3576 } finally {
3577 if ( $autoTrx ) {
3578 $this->setFlag( self::DBO_TRX ); // restore automatic begin()
3579 } else {
3580 $this->clearFlag( self::DBO_TRX ); // restore auto-commit
3581 }
3582 }
3583 }
3584 } while ( count( $this->trxIdleCallbacks ) );
3585
3586 if ( $e instanceof Exception ) {
3587 throw $e; // re-throw any first exception
3588 }
3589
3590 return $count;
3591 }
3592
3593 /**
3594 * Actually consume and run any "on transaction pre-commit" callbacks.
3595 *
3596 * This method should not be used outside of Database/LoadBalancer
3597 *
3598 * @since 1.22
3599 * @return int Number of callbacks attempted
3600 * @throws Exception
3601 */
3602 public function runOnTransactionPreCommitCallbacks() {
3603 $count = 0;
3604
3605 $e = null; // first exception
3606 do { // callbacks may add callbacks :)
3607 $callbacks = $this->trxPreCommitCallbacks;
3608 $this->trxPreCommitCallbacks = []; // consumed (and recursion guard)
3609 foreach ( $callbacks as $callback ) {
3610 try {
3611 ++$count;
3612 list( $phpCallback ) = $callback;
3613 $phpCallback( $this );
3614 } catch ( Exception $ex ) {
3615 ( $this->errorLogger )( $ex );
3616 $e = $e ?: $ex;
3617 }
3618 }
3619 } while ( count( $this->trxPreCommitCallbacks ) );
3620
3621 if ( $e instanceof Exception ) {
3622 throw $e; // re-throw any first exception
3623 }
3624
3625 return $count;
3626 }
3627
3628 /**
3629 * Actually run any "transaction listener" callbacks.
3630 *
3631 * This method should not be used outside of Database/LoadBalancer
3632 *
3633 * @param int $trigger IDatabase::TRIGGER_* constant
3634 * @throws Exception
3635 * @since 1.20
3636 */
3637 public function runTransactionListenerCallbacks( $trigger ) {
3638 if ( $this->trxEndCallbacksSuppressed ) {
3639 return;
3640 }
3641
3642 /** @var Exception $e */
3643 $e = null; // first exception
3644
3645 foreach ( $this->trxRecurringCallbacks as $phpCallback ) {
3646 try {
3647 $phpCallback( $trigger, $this );
3648 } catch ( Exception $ex ) {
3649 ( $this->errorLogger )( $ex );
3650 $e = $e ?: $ex;
3651 }
3652 }
3653
3654 if ( $e instanceof Exception ) {
3655 throw $e; // re-throw any first exception
3656 }
3657 }
3658
3659 /**
3660 * Create a savepoint
3661 *
3662 * This is used internally to implement atomic sections. It should not be
3663 * used otherwise.
3664 *
3665 * @since 1.31
3666 * @param string $identifier Identifier for the savepoint
3667 * @param string $fname Calling function name
3668 */
3669 protected function doSavepoint( $identifier, $fname ) {
3670 $this->query( 'SAVEPOINT ' . $this->addIdentifierQuotes( $identifier ), $fname );
3671 }
3672
3673 /**
3674 * Release a savepoint
3675 *
3676 * This is used internally to implement atomic sections. It should not be
3677 * used otherwise.
3678 *
3679 * @since 1.31
3680 * @param string $identifier Identifier for the savepoint
3681 * @param string $fname Calling function name
3682 */
3683 protected function doReleaseSavepoint( $identifier, $fname ) {
3684 $this->query( 'RELEASE SAVEPOINT ' . $this->addIdentifierQuotes( $identifier ), $fname );
3685 }
3686
3687 /**
3688 * Rollback to a savepoint
3689 *
3690 * This is used internally to implement atomic sections. It should not be
3691 * used otherwise.
3692 *
3693 * @since 1.31
3694 * @param string $identifier Identifier for the savepoint
3695 * @param string $fname Calling function name
3696 */
3697 protected function doRollbackToSavepoint( $identifier, $fname ) {
3698 $this->query( 'ROLLBACK TO SAVEPOINT ' . $this->addIdentifierQuotes( $identifier ), $fname );
3699 }
3700
3701 /**
3702 * @param string $fname
3703 * @return string
3704 */
3705 private function nextSavepointId( $fname ) {
3706 $savepointId = self::$SAVEPOINT_PREFIX . ++$this->trxAtomicCounter;
3707 if ( strlen( $savepointId ) > 30 ) {
3708 // 30 == Oracle's identifier length limit (pre 12c)
3709 // With a 22 character prefix, that puts the highest number at 99999999.
3710 throw new DBUnexpectedError(
3711 $this,
3712 'There have been an excessively large number of atomic sections in a transaction'
3713 . " started by $this->trxFname (at $fname)"
3714 );
3715 }
3716
3717 return $savepointId;
3718 }
3719
3720 final public function startAtomic(
3721 $fname = __METHOD__, $cancelable = self::ATOMIC_NOT_CANCELABLE
3722 ) {
3723 $savepointId = $cancelable === self::ATOMIC_CANCELABLE ? self::$NOT_APPLICABLE : null;
3724
3725 if ( !$this->trxLevel ) {
3726 $this->begin( $fname, self::TRANSACTION_INTERNAL ); // sets trxAutomatic
3727 // If DBO_TRX is set, a series of startAtomic/endAtomic pairs will result
3728 // in all changes being in one transaction to keep requests transactional.
3729 if ( $this->getFlag( self::DBO_TRX ) ) {
3730 // Since writes could happen in between the topmost atomic sections as part
3731 // of the transaction, those sections will need savepoints.
3732 $savepointId = $this->nextSavepointId( $fname );
3733 $this->doSavepoint( $savepointId, $fname );
3734 } else {
3735 $this->trxAutomaticAtomic = true;
3736 }
3737 } elseif ( $cancelable === self::ATOMIC_CANCELABLE ) {
3738 $savepointId = $this->nextSavepointId( $fname );
3739 $this->doSavepoint( $savepointId, $fname );
3740 }
3741
3742 $sectionId = new AtomicSectionIdentifier;
3743 $this->trxAtomicLevels[] = [ $fname, $sectionId, $savepointId ];
3744 $this->queryLogger->debug( 'startAtomic: entering level ' .
3745 ( count( $this->trxAtomicLevels ) - 1 ) . " ($fname)" );
3746
3747 return $sectionId;
3748 }
3749
3750 final public function endAtomic( $fname = __METHOD__ ) {
3751 if ( !$this->trxLevel || !$this->trxAtomicLevels ) {
3752 throw new DBUnexpectedError( $this, "No atomic section is open (got $fname)." );
3753 }
3754
3755 // Check if the current section matches $fname
3756 $pos = count( $this->trxAtomicLevels ) - 1;
3757 list( $savedFname, $sectionId, $savepointId ) = $this->trxAtomicLevels[$pos];
3758 $this->queryLogger->debug( "endAtomic: leaving level $pos ($fname)" );
3759
3760 if ( $savedFname !== $fname ) {
3761 throw new DBUnexpectedError(
3762 $this,
3763 "Invalid atomic section ended (got $fname but expected $savedFname)."
3764 );
3765 }
3766
3767 // Remove the last section (no need to re-index the array)
3768 array_pop( $this->trxAtomicLevels );
3769
3770 if ( !$this->trxAtomicLevels && $this->trxAutomaticAtomic ) {
3771 $this->commit( $fname, self::FLUSHING_INTERNAL );
3772 } elseif ( $savepointId !== null && $savepointId !== self::$NOT_APPLICABLE ) {
3773 $this->doReleaseSavepoint( $savepointId, $fname );
3774 }
3775
3776 // Hoist callback ownership for callbacks in the section that just ended;
3777 // all callbacks should have an owner that is present in trxAtomicLevels.
3778 $currentSectionId = $this->currentAtomicSectionId();
3779 if ( $currentSectionId ) {
3780 $this->reassignCallbacksForSection( $sectionId, $currentSectionId );
3781 }
3782 }
3783
3784 final public function cancelAtomic(
3785 $fname = __METHOD__, AtomicSectionIdentifier $sectionId = null
3786 ) {
3787 if ( !$this->trxLevel || !$this->trxAtomicLevels ) {
3788 throw new DBUnexpectedError( $this, "No atomic section is open (got $fname)." );
3789 }
3790
3791 $excisedFnames = [];
3792 if ( $sectionId !== null ) {
3793 // Find the (last) section with the given $sectionId
3794 $pos = -1;
3795 foreach ( $this->trxAtomicLevels as $i => list( $asFname, $asId, $spId ) ) {
3796 if ( $asId === $sectionId ) {
3797 $pos = $i;
3798 }
3799 }
3800 if ( $pos < 0 ) {
3801 throw new DBUnexpectedError( $this, "Atomic section not found (for $fname)" );
3802 }
3803 // Remove all descendant sections and re-index the array
3804 $excisedIds = [];
3805 $len = count( $this->trxAtomicLevels );
3806 for ( $i = $pos + 1; $i < $len; ++$i ) {
3807 $excisedFnames[] = $this->trxAtomicLevels[$i][0];
3808 $excisedIds[] = $this->trxAtomicLevels[$i][1];
3809 }
3810 $this->trxAtomicLevels = array_slice( $this->trxAtomicLevels, 0, $pos + 1 );
3811 $this->modifyCallbacksForCancel( $excisedIds );
3812 }
3813
3814 // Check if the current section matches $fname
3815 $pos = count( $this->trxAtomicLevels ) - 1;
3816 list( $savedFname, $savedSectionId, $savepointId ) = $this->trxAtomicLevels[$pos];
3817
3818 if ( $excisedFnames ) {
3819 $this->queryLogger->debug( "cancelAtomic: canceling level $pos ($savedFname) " .
3820 "and descendants " . implode( ', ', $excisedFnames ) );
3821 } else {
3822 $this->queryLogger->debug( "cancelAtomic: canceling level $pos ($savedFname)" );
3823 }
3824
3825 if ( $savedFname !== $fname ) {
3826 throw new DBUnexpectedError(
3827 $this,
3828 "Invalid atomic section ended (got $fname but expected $savedFname)."
3829 );
3830 }
3831
3832 // Remove the last section (no need to re-index the array)
3833 array_pop( $this->trxAtomicLevels );
3834 $this->modifyCallbacksForCancel( [ $savedSectionId ] );
3835
3836 if ( $savepointId !== null ) {
3837 // Rollback the transaction to the state just before this atomic section
3838 if ( $savepointId === self::$NOT_APPLICABLE ) {
3839 $this->rollback( $fname, self::FLUSHING_INTERNAL );
3840 } else {
3841 $this->doRollbackToSavepoint( $savepointId, $fname );
3842 $this->trxStatus = self::STATUS_TRX_OK; // no exception; recovered
3843 $this->trxStatusIgnoredCause = null;
3844 }
3845 } elseif ( $this->trxStatus > self::STATUS_TRX_ERROR ) {
3846 // Put the transaction into an error state if it's not already in one
3847 $this->trxStatus = self::STATUS_TRX_ERROR;
3848 $this->trxStatusCause = new DBUnexpectedError(
3849 $this,
3850 "Uncancelable atomic section canceled (got $fname)."
3851 );
3852 }
3853
3854 $this->affectedRowCount = 0; // for the sake of consistency
3855 }
3856
3857 final public function doAtomicSection(
3858 $fname, callable $callback, $cancelable = self::ATOMIC_NOT_CANCELABLE
3859 ) {
3860 $sectionId = $this->startAtomic( $fname, $cancelable );
3861 try {
3862 $res = $callback( $this, $fname );
3863 } catch ( Exception $e ) {
3864 $this->cancelAtomic( $fname, $sectionId );
3865
3866 throw $e;
3867 }
3868 $this->endAtomic( $fname );
3869
3870 return $res;
3871 }
3872
3873 final public function begin( $fname = __METHOD__, $mode = self::TRANSACTION_EXPLICIT ) {
3874 static $modes = [ self::TRANSACTION_EXPLICIT, self::TRANSACTION_INTERNAL ];
3875 if ( !in_array( $mode, $modes, true ) ) {
3876 throw new DBUnexpectedError( $this, "$fname: invalid mode parameter '$mode'." );
3877 }
3878
3879 // Protect against mismatched atomic section, transaction nesting, and snapshot loss
3880 if ( $this->trxLevel ) {
3881 if ( $this->trxAtomicLevels ) {
3882 $levels = $this->flatAtomicSectionList();
3883 $msg = "$fname: Got explicit BEGIN while atomic section(s) $levels are open.";
3884 throw new DBUnexpectedError( $this, $msg );
3885 } elseif ( !$this->trxAutomatic ) {
3886 $msg = "$fname: Explicit transaction already active (from {$this->trxFname}).";
3887 throw new DBUnexpectedError( $this, $msg );
3888 } else {
3889 $msg = "$fname: Implicit transaction already active (from {$this->trxFname}).";
3890 throw new DBUnexpectedError( $this, $msg );
3891 }
3892 } elseif ( $this->getFlag( self::DBO_TRX ) && $mode !== self::TRANSACTION_INTERNAL ) {
3893 $msg = "$fname: Implicit transaction expected (DBO_TRX set).";
3894 throw new DBUnexpectedError( $this, $msg );
3895 }
3896
3897 $this->assertHasConnectionHandle();
3898
3899 $this->doBegin( $fname );
3900 $this->trxStatus = self::STATUS_TRX_OK;
3901 $this->trxStatusIgnoredCause = null;
3902 $this->trxAtomicCounter = 0;
3903 $this->trxTimestamp = microtime( true );
3904 $this->trxFname = $fname;
3905 $this->trxDoneWrites = false;
3906 $this->trxAutomaticAtomic = false;
3907 $this->trxAtomicLevels = [];
3908 $this->trxShortId = sprintf( '%06x', mt_rand( 0, 0xffffff ) );
3909 $this->trxWriteDuration = 0.0;
3910 $this->trxWriteQueryCount = 0;
3911 $this->trxWriteAffectedRows = 0;
3912 $this->trxWriteAdjDuration = 0.0;
3913 $this->trxWriteAdjQueryCount = 0;
3914 $this->trxWriteCallers = [];
3915 // First SELECT after BEGIN will establish the snapshot in REPEATABLE-READ.
3916 // Get an estimate of the replication lag before any such queries.
3917 $this->trxReplicaLag = null; // clear cached value first
3918 $this->trxReplicaLag = $this->getApproximateLagStatus()['lag'];
3919 // T147697: make explicitTrxActive() return true until begin() finishes. This way, no
3920 // caller will think its OK to muck around with the transaction just because startAtomic()
3921 // has not yet completed (e.g. setting trxAtomicLevels).
3922 $this->trxAutomatic = ( $mode === self::TRANSACTION_INTERNAL );
3923 }
3924
3925 /**
3926 * Issues the BEGIN command to the database server.
3927 *
3928 * @see Database::begin()
3929 * @param string $fname
3930 */
3931 protected function doBegin( $fname ) {
3932 $this->query( 'BEGIN', $fname );
3933 $this->trxLevel = 1;
3934 }
3935
3936 final public function commit( $fname = __METHOD__, $flush = self::FLUSHING_ONE ) {
3937 static $modes = [ self::FLUSHING_ONE, self::FLUSHING_ALL_PEERS, self::FLUSHING_INTERNAL ];
3938 if ( !in_array( $flush, $modes, true ) ) {
3939 throw new DBUnexpectedError( $this, "$fname: invalid flush parameter '$flush'." );
3940 }
3941
3942 if ( $this->trxLevel && $this->trxAtomicLevels ) {
3943 // There are still atomic sections open; this cannot be ignored
3944 $levels = $this->flatAtomicSectionList();
3945 throw new DBUnexpectedError(
3946 $this,
3947 "$fname: Got COMMIT while atomic sections $levels are still open."
3948 );
3949 }
3950
3951 if ( $flush === self::FLUSHING_INTERNAL || $flush === self::FLUSHING_ALL_PEERS ) {
3952 if ( !$this->trxLevel ) {
3953 return; // nothing to do
3954 } elseif ( !$this->trxAutomatic ) {
3955 throw new DBUnexpectedError(
3956 $this,
3957 "$fname: Flushing an explicit transaction, getting out of sync."
3958 );
3959 }
3960 } elseif ( !$this->trxLevel ) {
3961 $this->queryLogger->error(
3962 "$fname: No transaction to commit, something got out of sync." );
3963 return; // nothing to do
3964 } elseif ( $this->trxAutomatic ) {
3965 throw new DBUnexpectedError(
3966 $this,
3967 "$fname: Expected mass commit of all peer transactions (DBO_TRX set)."
3968 );
3969 }
3970
3971 $this->assertHasConnectionHandle();
3972
3973 $this->runOnTransactionPreCommitCallbacks();
3974
3975 $writeTime = $this->pendingWriteQueryDuration( self::ESTIMATE_DB_APPLY );
3976 $this->doCommit( $fname );
3977 $this->trxStatus = self::STATUS_TRX_NONE;
3978
3979 if ( $this->trxDoneWrites ) {
3980 $this->lastWriteTime = microtime( true );
3981 $this->trxProfiler->transactionWritingOut(
3982 $this->server,
3983 $this->getDomainID(),
3984 $this->trxShortId,
3985 $writeTime,
3986 $this->trxWriteAffectedRows
3987 );
3988 }
3989
3990 // With FLUSHING_ALL_PEERS, callbacks will be explicitly run later
3991 if ( $flush !== self::FLUSHING_ALL_PEERS ) {
3992 $this->runOnTransactionIdleCallbacks( self::TRIGGER_COMMIT );
3993 $this->runTransactionListenerCallbacks( self::TRIGGER_COMMIT );
3994 }
3995 }
3996
3997 /**
3998 * Issues the COMMIT command to the database server.
3999 *
4000 * @see Database::commit()
4001 * @param string $fname
4002 */
4003 protected function doCommit( $fname ) {
4004 if ( $this->trxLevel ) {
4005 $this->query( 'COMMIT', $fname );
4006 $this->trxLevel = 0;
4007 }
4008 }
4009
4010 final public function rollback( $fname = __METHOD__, $flush = '' ) {
4011 $trxActive = $this->trxLevel;
4012
4013 if ( $flush !== self::FLUSHING_INTERNAL
4014 && $flush !== self::FLUSHING_ALL_PEERS
4015 && $this->getFlag( self::DBO_TRX )
4016 ) {
4017 throw new DBUnexpectedError(
4018 $this,
4019 "$fname: Expected mass rollback of all peer transactions (DBO_TRX set)."
4020 );
4021 }
4022
4023 if ( $trxActive ) {
4024 $this->assertHasConnectionHandle();
4025
4026 $this->doRollback( $fname );
4027 $this->trxStatus = self::STATUS_TRX_NONE;
4028 $this->trxAtomicLevels = [];
4029 // Estimate the RTT via a query now that trxStatus is OK
4030 $writeTime = $this->pingAndCalculateLastTrxApplyTime();
4031
4032 if ( $this->trxDoneWrites ) {
4033 $this->trxProfiler->transactionWritingOut(
4034 $this->server,
4035 $this->getDomainID(),
4036 $this->trxShortId,
4037 $writeTime,
4038 $this->trxWriteAffectedRows
4039 );
4040 }
4041 }
4042
4043 // Clear any commit-dependant callbacks. They might even be present
4044 // only due to transaction rounds, with no SQL transaction being active
4045 $this->trxIdleCallbacks = [];
4046 $this->trxPreCommitCallbacks = [];
4047
4048 // With FLUSHING_ALL_PEERS, callbacks will be explicitly run later
4049 if ( $trxActive && $flush !== self::FLUSHING_ALL_PEERS ) {
4050 try {
4051 $this->runOnTransactionIdleCallbacks( self::TRIGGER_ROLLBACK );
4052 } catch ( Exception $e ) {
4053 // already logged; finish and let LoadBalancer move on during mass-rollback
4054 }
4055 try {
4056 $this->runTransactionListenerCallbacks( self::TRIGGER_ROLLBACK );
4057 } catch ( Exception $e ) {
4058 // already logged; let LoadBalancer move on during mass-rollback
4059 }
4060
4061 $this->affectedRowCount = 0; // for the sake of consistency
4062 }
4063 }
4064
4065 /**
4066 * Issues the ROLLBACK command to the database server.
4067 *
4068 * @see Database::rollback()
4069 * @param string $fname
4070 */
4071 protected function doRollback( $fname ) {
4072 if ( $this->trxLevel ) {
4073 # Disconnects cause rollback anyway, so ignore those errors
4074 $ignoreErrors = true;
4075 $this->query( 'ROLLBACK', $fname, $ignoreErrors );
4076 $this->trxLevel = 0;
4077 }
4078 }
4079
4080 public function flushSnapshot( $fname = __METHOD__ ) {
4081 if ( $this->writesOrCallbacksPending() || $this->explicitTrxActive() ) {
4082 // This only flushes transactions to clear snapshots, not to write data
4083 $fnames = implode( ', ', $this->pendingWriteAndCallbackCallers() );
4084 throw new DBUnexpectedError(
4085 $this,
4086 "$fname: Cannot flush snapshot because writes are pending ($fnames)."
4087 );
4088 }
4089
4090 $this->commit( $fname, self::FLUSHING_INTERNAL );
4091 }
4092
4093 public function explicitTrxActive() {
4094 return $this->trxLevel && ( $this->trxAtomicLevels || !$this->trxAutomatic );
4095 }
4096
4097 public function duplicateTableStructure(
4098 $oldName, $newName, $temporary = false, $fname = __METHOD__
4099 ) {
4100 throw new RuntimeException( __METHOD__ . ' is not implemented in descendant class' );
4101 }
4102
4103 public function listTables( $prefix = null, $fname = __METHOD__ ) {
4104 throw new RuntimeException( __METHOD__ . ' is not implemented in descendant class' );
4105 }
4106
4107 public function listViews( $prefix = null, $fname = __METHOD__ ) {
4108 throw new RuntimeException( __METHOD__ . ' is not implemented in descendant class' );
4109 }
4110
4111 public function timestamp( $ts = 0 ) {
4112 $t = new ConvertibleTimestamp( $ts );
4113 // Let errors bubble up to avoid putting garbage in the DB
4114 return $t->getTimestamp( TS_MW );
4115 }
4116
4117 public function timestampOrNull( $ts = null ) {
4118 if ( is_null( $ts ) ) {
4119 return null;
4120 } else {
4121 return $this->timestamp( $ts );
4122 }
4123 }
4124
4125 public function affectedRows() {
4126 return ( $this->affectedRowCount === null )
4127 ? $this->fetchAffectedRowCount() // default to driver value
4128 : $this->affectedRowCount;
4129 }
4130
4131 /**
4132 * @return int Number of retrieved rows according to the driver
4133 */
4134 abstract protected function fetchAffectedRowCount();
4135
4136 /**
4137 * Take the result from a query, and wrap it in a ResultWrapper if
4138 * necessary. Boolean values are passed through as is, to indicate success
4139 * of write queries or failure.
4140 *
4141 * Once upon a time, Database::query() returned a bare MySQL result
4142 * resource, and it was necessary to call this function to convert it to
4143 * a wrapper. Nowadays, raw database objects are never exposed to external
4144 * callers, so this is unnecessary in external code.
4145 *
4146 * @param bool|ResultWrapper|resource $result
4147 * @return bool|ResultWrapper
4148 */
4149 protected function resultObject( $result ) {
4150 if ( !$result ) {
4151 return false;
4152 } elseif ( $result instanceof ResultWrapper ) {
4153 return $result;
4154 } elseif ( $result === true ) {
4155 // Successful write query
4156 return $result;
4157 } else {
4158 return new ResultWrapper( $this, $result );
4159 }
4160 }
4161
4162 public function ping( &$rtt = null ) {
4163 // Avoid hitting the server if it was hit recently
4164 if ( $this->isOpen() && ( microtime( true ) - $this->lastPing ) < self::PING_TTL ) {
4165 if ( !func_num_args() || $this->rttEstimate > 0 ) {
4166 $rtt = $this->rttEstimate;
4167 return true; // don't care about $rtt
4168 }
4169 }
4170
4171 // This will reconnect if possible or return false if not
4172 $this->clearFlag( self::DBO_TRX, self::REMEMBER_PRIOR );
4173 $ok = ( $this->query( self::PING_QUERY, __METHOD__, true ) !== false );
4174 $this->restoreFlags( self::RESTORE_PRIOR );
4175
4176 if ( $ok ) {
4177 $rtt = $this->rttEstimate;
4178 }
4179
4180 return $ok;
4181 }
4182
4183 /**
4184 * Close any existing (dead) database connection and open a new connection
4185 *
4186 * @param string $fname
4187 * @return bool True if new connection is opened successfully, false if error
4188 */
4189 protected function replaceLostConnection( $fname ) {
4190 $this->closeConnection();
4191 $this->opened = false;
4192 $this->conn = false;
4193
4194 $this->handleSessionLossPreconnect();
4195
4196 try {
4197 $this->open(
4198 $this->server,
4199 $this->user,
4200 $this->password,
4201 $this->getDBname(),
4202 $this->dbSchema(),
4203 $this->tablePrefix()
4204 );
4205 $this->lastPing = microtime( true );
4206 $ok = true;
4207
4208 $this->connLogger->warning(
4209 $fname . ': lost connection to {dbserver}; reconnected',
4210 [
4211 'dbserver' => $this->getServer(),
4212 'trace' => ( new RuntimeException() )->getTraceAsString()
4213 ]
4214 );
4215 } catch ( DBConnectionError $e ) {
4216 $ok = false;
4217
4218 $this->connLogger->error(
4219 $fname . ': lost connection to {dbserver} permanently',
4220 [ 'dbserver' => $this->getServer() ]
4221 );
4222 }
4223
4224 $this->handleSessionLossPostconnect();
4225
4226 return $ok;
4227 }
4228
4229 public function getSessionLagStatus() {
4230 return $this->getRecordedTransactionLagStatus() ?: $this->getApproximateLagStatus();
4231 }
4232
4233 /**
4234 * Get the replica DB lag when the current transaction started
4235 *
4236 * This is useful when transactions might use snapshot isolation
4237 * (e.g. REPEATABLE-READ in innodb), so the "real" lag of that data
4238 * is this lag plus transaction duration. If they don't, it is still
4239 * safe to be pessimistic. This returns null if there is no transaction.
4240 *
4241 * This returns null if the lag status for this transaction was not yet recorded.
4242 *
4243 * @return array|null ('lag': seconds or false on error, 'since': UNIX timestamp of BEGIN)
4244 * @since 1.27
4245 */
4246 final protected function getRecordedTransactionLagStatus() {
4247 return ( $this->trxLevel && $this->trxReplicaLag !== null )
4248 ? [ 'lag' => $this->trxReplicaLag, 'since' => $this->trxTimestamp() ]
4249 : null;
4250 }
4251
4252 /**
4253 * Get a replica DB lag estimate for this server
4254 *
4255 * @return array ('lag': seconds or false on error, 'since': UNIX timestamp of estimate)
4256 * @since 1.27
4257 */
4258 protected function getApproximateLagStatus() {
4259 return [
4260 'lag' => $this->getLBInfo( 'replica' ) ? $this->getLag() : 0,
4261 'since' => microtime( true )
4262 ];
4263 }
4264
4265 /**
4266 * Merge the result of getSessionLagStatus() for several DBs
4267 * using the most pessimistic values to estimate the lag of
4268 * any data derived from them in combination
4269 *
4270 * This is information is useful for caching modules
4271 *
4272 * @see WANObjectCache::set()
4273 * @see WANObjectCache::getWithSetCallback()
4274 *
4275 * @param IDatabase $db1
4276 * @param IDatabase|null $db2 [optional]
4277 * @return array Map of values:
4278 * - lag: highest lag of any of the DBs or false on error (e.g. replication stopped)
4279 * - since: oldest UNIX timestamp of any of the DB lag estimates
4280 * - pending: whether any of the DBs have uncommitted changes
4281 * @throws DBError
4282 * @since 1.27
4283 */
4284 public static function getCacheSetOptions( IDatabase $db1, IDatabase $db2 = null ) {
4285 $res = [ 'lag' => 0, 'since' => INF, 'pending' => false ];
4286 foreach ( func_get_args() as $db ) {
4287 /** @var IDatabase $db */
4288 $status = $db->getSessionLagStatus();
4289 if ( $status['lag'] === false ) {
4290 $res['lag'] = false;
4291 } elseif ( $res['lag'] !== false ) {
4292 $res['lag'] = max( $res['lag'], $status['lag'] );
4293 }
4294 $res['since'] = min( $res['since'], $status['since'] );
4295 $res['pending'] = $res['pending'] ?: $db->writesPending();
4296 }
4297
4298 return $res;
4299 }
4300
4301 public function getLag() {
4302 return 0;
4303 }
4304
4305 public function maxListLen() {
4306 return 0;
4307 }
4308
4309 public function encodeBlob( $b ) {
4310 return $b;
4311 }
4312
4313 public function decodeBlob( $b ) {
4314 if ( $b instanceof Blob ) {
4315 $b = $b->fetch();
4316 }
4317 return $b;
4318 }
4319
4320 public function setSessionOptions( array $options ) {
4321 }
4322
4323 public function sourceFile(
4324 $filename,
4325 callable $lineCallback = null,
4326 callable $resultCallback = null,
4327 $fname = false,
4328 callable $inputCallback = null
4329 ) {
4330 Wikimedia\suppressWarnings();
4331 $fp = fopen( $filename, 'r' );
4332 Wikimedia\restoreWarnings();
4333
4334 if ( $fp === false ) {
4335 throw new RuntimeException( "Could not open \"{$filename}\".\n" );
4336 }
4337
4338 if ( !$fname ) {
4339 $fname = __METHOD__ . "( $filename )";
4340 }
4341
4342 try {
4343 $error = $this->sourceStream(
4344 $fp, $lineCallback, $resultCallback, $fname, $inputCallback );
4345 } catch ( Exception $e ) {
4346 fclose( $fp );
4347 throw $e;
4348 }
4349
4350 fclose( $fp );
4351
4352 return $error;
4353 }
4354
4355 public function setSchemaVars( $vars ) {
4356 $this->schemaVars = $vars;
4357 }
4358
4359 public function sourceStream(
4360 $fp,
4361 callable $lineCallback = null,
4362 callable $resultCallback = null,
4363 $fname = __METHOD__,
4364 callable $inputCallback = null
4365 ) {
4366 $delimiterReset = new ScopedCallback(
4367 function ( $delimiter ) {
4368 $this->delimiter = $delimiter;
4369 },
4370 [ $this->delimiter ]
4371 );
4372 $cmd = '';
4373
4374 while ( !feof( $fp ) ) {
4375 if ( $lineCallback ) {
4376 call_user_func( $lineCallback );
4377 }
4378
4379 $line = trim( fgets( $fp ) );
4380
4381 if ( $line == '' ) {
4382 continue;
4383 }
4384
4385 if ( $line[0] == '-' && $line[1] == '-' ) {
4386 continue;
4387 }
4388
4389 if ( $cmd != '' ) {
4390 $cmd .= ' ';
4391 }
4392
4393 $done = $this->streamStatementEnd( $cmd, $line );
4394
4395 $cmd .= "$line\n";
4396
4397 if ( $done || feof( $fp ) ) {
4398 $cmd = $this->replaceVars( $cmd );
4399
4400 if ( $inputCallback ) {
4401 $callbackResult = $inputCallback( $cmd );
4402
4403 if ( is_string( $callbackResult ) || !$callbackResult ) {
4404 $cmd = $callbackResult;
4405 }
4406 }
4407
4408 if ( $cmd ) {
4409 $res = $this->query( $cmd, $fname );
4410
4411 if ( $resultCallback ) {
4412 $resultCallback( $res, $this );
4413 }
4414
4415 if ( $res === false ) {
4416 $err = $this->lastError();
4417
4418 return "Query \"{$cmd}\" failed with error code \"$err\".\n";
4419 }
4420 }
4421 $cmd = '';
4422 }
4423 }
4424
4425 ScopedCallback::consume( $delimiterReset );
4426 return true;
4427 }
4428
4429 /**
4430 * Called by sourceStream() to check if we've reached a statement end
4431 *
4432 * @param string &$sql SQL assembled so far
4433 * @param string &$newLine New line about to be added to $sql
4434 * @return bool Whether $newLine contains end of the statement
4435 */
4436 public function streamStatementEnd( &$sql, &$newLine ) {
4437 if ( $this->delimiter ) {
4438 $prev = $newLine;
4439 $newLine = preg_replace(
4440 '/' . preg_quote( $this->delimiter, '/' ) . '$/', '', $newLine );
4441 if ( $newLine != $prev ) {
4442 return true;
4443 }
4444 }
4445
4446 return false;
4447 }
4448
4449 /**
4450 * Database independent variable replacement. Replaces a set of variables
4451 * in an SQL statement with their contents as given by $this->getSchemaVars().
4452 *
4453 * Supports '{$var}' `{$var}` and / *$var* / (without the spaces) style variables.
4454 *
4455 * - '{$var}' should be used for text and is passed through the database's
4456 * addQuotes method.
4457 * - `{$var}` should be used for identifiers (e.g. table and database names).
4458 * It is passed through the database's addIdentifierQuotes method which
4459 * can be overridden if the database uses something other than backticks.
4460 * - / *_* / or / *$wgDBprefix* / passes the name that follows through the
4461 * database's tableName method.
4462 * - / *i* / passes the name that follows through the database's indexName method.
4463 * - In all other cases, / *$var* / is left unencoded. Except for table options,
4464 * its use should be avoided. In 1.24 and older, string encoding was applied.
4465 *
4466 * @param string $ins SQL statement to replace variables in
4467 * @return string The new SQL statement with variables replaced
4468 */
4469 protected function replaceVars( $ins ) {
4470 $vars = $this->getSchemaVars();
4471 return preg_replace_callback(
4472 '!
4473 /\* (\$wgDBprefix|[_i]) \*/ (\w*) | # 1-2. tableName, indexName
4474 \'\{\$ (\w+) }\' | # 3. addQuotes
4475 `\{\$ (\w+) }` | # 4. addIdentifierQuotes
4476 /\*\$ (\w+) \*/ # 5. leave unencoded
4477 !x',
4478 function ( $m ) use ( $vars ) {
4479 // Note: Because of <https://bugs.php.net/bug.php?id=51881>,
4480 // check for both nonexistent keys *and* the empty string.
4481 if ( isset( $m[1] ) && $m[1] !== '' ) {
4482 if ( $m[1] === 'i' ) {
4483 return $this->indexName( $m[2] );
4484 } else {
4485 return $this->tableName( $m[2] );
4486 }
4487 } elseif ( isset( $m[3] ) && $m[3] !== '' && array_key_exists( $m[3], $vars ) ) {
4488 return $this->addQuotes( $vars[$m[3]] );
4489 } elseif ( isset( $m[4] ) && $m[4] !== '' && array_key_exists( $m[4], $vars ) ) {
4490 return $this->addIdentifierQuotes( $vars[$m[4]] );
4491 } elseif ( isset( $m[5] ) && $m[5] !== '' && array_key_exists( $m[5], $vars ) ) {
4492 return $vars[$m[5]];
4493 } else {
4494 return $m[0];
4495 }
4496 },
4497 $ins
4498 );
4499 }
4500
4501 /**
4502 * Get schema variables. If none have been set via setSchemaVars(), then
4503 * use some defaults from the current object.
4504 *
4505 * @return array
4506 */
4507 protected function getSchemaVars() {
4508 if ( $this->schemaVars ) {
4509 return $this->schemaVars;
4510 } else {
4511 return $this->getDefaultSchemaVars();
4512 }
4513 }
4514
4515 /**
4516 * Get schema variables to use if none have been set via setSchemaVars().
4517 *
4518 * Override this in derived classes to provide variables for tables.sql
4519 * and SQL patch files.
4520 *
4521 * @return array
4522 */
4523 protected function getDefaultSchemaVars() {
4524 return [];
4525 }
4526
4527 public function lockIsFree( $lockName, $method ) {
4528 // RDBMs methods for checking named locks may or may not count this thread itself.
4529 // In MySQL, IS_FREE_LOCK() returns 0 if the thread already has the lock. This is
4530 // the behavior choosen by the interface for this method.
4531 return !isset( $this->namedLocksHeld[$lockName] );
4532 }
4533
4534 public function lock( $lockName, $method, $timeout = 5 ) {
4535 $this->namedLocksHeld[$lockName] = 1;
4536
4537 return true;
4538 }
4539
4540 public function unlock( $lockName, $method ) {
4541 unset( $this->namedLocksHeld[$lockName] );
4542
4543 return true;
4544 }
4545
4546 public function getScopedLockAndFlush( $lockKey, $fname, $timeout ) {
4547 if ( $this->writesOrCallbacksPending() ) {
4548 // This only flushes transactions to clear snapshots, not to write data
4549 $fnames = implode( ', ', $this->pendingWriteAndCallbackCallers() );
4550 throw new DBUnexpectedError(
4551 $this,
4552 "$fname: Cannot flush pre-lock snapshot because writes are pending ($fnames)."
4553 );
4554 }
4555
4556 if ( !$this->lock( $lockKey, $fname, $timeout ) ) {
4557 return null;
4558 }
4559
4560 $unlocker = new ScopedCallback( function () use ( $lockKey, $fname ) {
4561 if ( $this->trxLevel() ) {
4562 // There is a good chance an exception was thrown, causing any early return
4563 // from the caller. Let any error handler get a chance to issue rollback().
4564 // If there isn't one, let the error bubble up and trigger server-side rollback.
4565 $this->onTransactionResolution(
4566 function () use ( $lockKey, $fname ) {
4567 $this->unlock( $lockKey, $fname );
4568 },
4569 $fname
4570 );
4571 } else {
4572 $this->unlock( $lockKey, $fname );
4573 }
4574 } );
4575
4576 $this->commit( $fname, self::FLUSHING_INTERNAL );
4577
4578 return $unlocker;
4579 }
4580
4581 public function namedLocksEnqueue() {
4582 return false;
4583 }
4584
4585 public function tableLocksHaveTransactionScope() {
4586 return true;
4587 }
4588
4589 final public function lockTables( array $read, array $write, $method ) {
4590 if ( $this->writesOrCallbacksPending() ) {
4591 throw new DBUnexpectedError( $this, "Transaction writes or callbacks still pending." );
4592 }
4593
4594 if ( $this->tableLocksHaveTransactionScope() ) {
4595 $this->startAtomic( $method );
4596 }
4597
4598 return $this->doLockTables( $read, $write, $method );
4599 }
4600
4601 /**
4602 * Helper function for lockTables() that handles the actual table locking
4603 *
4604 * @param array $read Array of tables to lock for read access
4605 * @param array $write Array of tables to lock for write access
4606 * @param string $method Name of caller
4607 * @return true
4608 */
4609 protected function doLockTables( array $read, array $write, $method ) {
4610 return true;
4611 }
4612
4613 final public function unlockTables( $method ) {
4614 if ( $this->tableLocksHaveTransactionScope() ) {
4615 $this->endAtomic( $method );
4616
4617 return true; // locks released on COMMIT/ROLLBACK
4618 }
4619
4620 return $this->doUnlockTables( $method );
4621 }
4622
4623 /**
4624 * Helper function for unlockTables() that handles the actual table unlocking
4625 *
4626 * @param string $method Name of caller
4627 * @return true
4628 */
4629 protected function doUnlockTables( $method ) {
4630 return true;
4631 }
4632
4633 /**
4634 * Delete a table
4635 * @param string $tableName
4636 * @param string $fName
4637 * @return bool|ResultWrapper
4638 * @since 1.18
4639 */
4640 public function dropTable( $tableName, $fName = __METHOD__ ) {
4641 if ( !$this->tableExists( $tableName, $fName ) ) {
4642 return false;
4643 }
4644 $sql = "DROP TABLE " . $this->tableName( $tableName ) . " CASCADE";
4645
4646 return $this->query( $sql, $fName );
4647 }
4648
4649 public function getInfinity() {
4650 return 'infinity';
4651 }
4652
4653 public function encodeExpiry( $expiry ) {
4654 return ( $expiry == '' || $expiry == 'infinity' || $expiry == $this->getInfinity() )
4655 ? $this->getInfinity()
4656 : $this->timestamp( $expiry );
4657 }
4658
4659 public function decodeExpiry( $expiry, $format = TS_MW ) {
4660 if ( $expiry == '' || $expiry == 'infinity' || $expiry == $this->getInfinity() ) {
4661 return 'infinity';
4662 }
4663
4664 return ConvertibleTimestamp::convert( $format, $expiry );
4665 }
4666
4667 public function setBigSelects( $value = true ) {
4668 // no-op
4669 }
4670
4671 public function isReadOnly() {
4672 return ( $this->getReadOnlyReason() !== false );
4673 }
4674
4675 /**
4676 * @return string|bool Reason this DB is read-only or false if it is not
4677 */
4678 protected function getReadOnlyReason() {
4679 $reason = $this->getLBInfo( 'readOnlyReason' );
4680
4681 return is_string( $reason ) ? $reason : false;
4682 }
4683
4684 public function setTableAliases( array $aliases ) {
4685 $this->tableAliases = $aliases;
4686 }
4687
4688 public function setIndexAliases( array $aliases ) {
4689 $this->indexAliases = $aliases;
4690 }
4691
4692 /**
4693 * @param int $field
4694 * @param int $flags
4695 * @return bool
4696 */
4697 protected function hasFlags( $field, $flags ) {
4698 return ( ( $field & $flags ) === $flags );
4699 }
4700
4701 /**
4702 * Get the underlying binding connection handle
4703 *
4704 * Makes sure the connection resource is set (disconnects and ping() failure can unset it).
4705 * This catches broken callers than catch and ignore disconnection exceptions.
4706 * Unlike checking isOpen(), this is safe to call inside of open().
4707 *
4708 * @return mixed
4709 * @throws DBUnexpectedError
4710 * @since 1.26
4711 */
4712 protected function getBindingHandle() {
4713 if ( !$this->conn ) {
4714 throw new DBUnexpectedError(
4715 $this,
4716 'DB connection was already closed or the connection dropped.'
4717 );
4718 }
4719
4720 return $this->conn;
4721 }
4722
4723 /**
4724 * @since 1.19
4725 * @return string
4726 */
4727 public function __toString() {
4728 return (string)$this->conn;
4729 }
4730
4731 /**
4732 * Make sure that copies do not share the same client binding handle
4733 * @throws DBConnectionError
4734 */
4735 public function __clone() {
4736 $this->connLogger->warning(
4737 "Cloning " . static::class . " is not recommended; forking connection:\n" .
4738 ( new RuntimeException() )->getTraceAsString()
4739 );
4740
4741 if ( $this->isOpen() ) {
4742 // Open a new connection resource without messing with the old one
4743 $this->opened = false;
4744 $this->conn = false;
4745 $this->trxEndCallbacks = []; // don't copy
4746 $this->handleSessionLossPreconnect(); // no trx or locks anymore
4747 $this->open(
4748 $this->server,
4749 $this->user,
4750 $this->password,
4751 $this->getDBname(),
4752 $this->dbSchema(),
4753 $this->tablePrefix()
4754 );
4755 $this->lastPing = microtime( true );
4756 }
4757 }
4758
4759 /**
4760 * Called by serialize. Throw an exception when DB connection is serialized.
4761 * This causes problems on some database engines because the connection is
4762 * not restored on unserialize.
4763 */
4764 public function __sleep() {
4765 throw new RuntimeException( 'Database serialization may cause problems, since ' .
4766 'the connection is not restored on wakeup.' );
4767 }
4768
4769 /**
4770 * Run a few simple sanity checks and close dangling connections
4771 */
4772 public function __destruct() {
4773 if ( $this->trxLevel && $this->trxDoneWrites ) {
4774 trigger_error( "Uncommitted DB writes (transaction from {$this->trxFname})." );
4775 }
4776
4777 $danglingWriters = $this->pendingWriteAndCallbackCallers();
4778 if ( $danglingWriters ) {
4779 $fnames = implode( ', ', $danglingWriters );
4780 trigger_error( "DB transaction writes or callbacks still pending ($fnames)." );
4781 }
4782
4783 if ( $this->conn ) {
4784 // Avoid connection leaks for sanity. Normally, resources close at script completion.
4785 // The connection might already be closed in zend/hhvm by now, so suppress warnings.
4786 Wikimedia\suppressWarnings();
4787 $this->closeConnection();
4788 Wikimedia\restoreWarnings();
4789 $this->conn = false;
4790 $this->opened = false;
4791 }
4792 }
4793 }
4794
4795 /**
4796 * @deprecated since 1.28
4797 */
4798 class_alias( Database::class, 'DatabaseBase' );
4799
4800 /**
4801 * @deprecated since 1.29
4802 */
4803 class_alias( Database::class, 'Database' );