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