3 * @defgroup Database Database
5 * This file deals with database interface functions
6 * and query specifics/optimisations.
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.
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.
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
26 use Psr\Log\LoggerAwareInterface
;
27 use Psr\Log\LoggerInterface
;
28 use Wikimedia\ScopedCallback
;
31 * Relational database abstraction object
36 abstract class Database
implements IDatabase
, IMaintainableDatabase
, LoggerAwareInterface
{
37 /** Number of times to re-try an operation in case of deadlock */
38 const DEADLOCK_TRIES
= 4;
39 /** Minimum time to wait before retry, in microseconds */
40 const DEADLOCK_DELAY_MIN
= 500000;
41 /** Maximum time to wait before retry */
42 const DEADLOCK_DELAY_MAX
= 1500000;
44 /** How long before it is worth doing a dummy query to test the connection */
46 const PING_QUERY
= 'SELECT 1 AS ping';
48 const TINY_WRITE_SEC
= .010;
49 const SLOW_WRITE_SEC
= .500;
50 const SMALL_WRITE_ROWS
= 100;
52 /** @var string SQL query */
53 protected $mLastQuery = '';
54 /** @var float|bool UNIX timestamp of last write query */
55 protected $mLastWriteTime = false;
56 /** @var string|bool */
57 protected $mPHPError = false;
66 /** @var array[] $aliases Map of (table => (dbname, schema, prefix) map) */
67 protected $tableAliases = [];
68 /** @var bool Whether this PHP instance is for a CLI script */
70 /** @var string Agent name for query profiling */
73 /** @var BagOStuff APC cache */
75 /** @var LoggerInterface */
76 protected $connLogger;
77 /** @var LoggerInterface */
78 protected $queryLogger;
79 /** @var callback Error logging callback */
80 protected $errorLogger;
82 /** @var resource|null Database connection */
83 protected $mConn = null;
85 protected $mOpened = false;
87 /** @var array[] List of (callable, method name) */
88 protected $mTrxIdleCallbacks = [];
89 /** @var array[] List of (callable, method name) */
90 protected $mTrxPreCommitCallbacks = [];
91 /** @var array[] List of (callable, method name) */
92 protected $mTrxEndCallbacks = [];
93 /** @var callable[] Map of (name => callable) */
94 protected $mTrxRecurringCallbacks = [];
95 /** @var bool Whether to suppress triggering of transaction end callbacks */
96 protected $mTrxEndCallbacksSuppressed = false;
99 protected $mTablePrefix = '';
101 protected $mSchema = '';
105 protected $mLBInfo = [];
106 /** @var bool|null */
107 protected $mDefaultBigSelects = null;
108 /** @var array|bool */
109 protected $mSchemaVars = false;
111 protected $mSessionVars = [];
112 /** @var array|null */
113 protected $preparedArgs;
114 /** @var string|bool|null Stashed value of html_errors INI setting */
115 protected $htmlErrors;
117 protected $delimiter = ';';
118 /** @var DatabaseDomain */
119 protected $currentDomain;
122 * Either 1 if a transaction is active or 0 otherwise.
123 * The other Trx fields may not be meaningfull if this is 0.
127 protected $mTrxLevel = 0;
129 * Either a short hexidecimal string if a transaction is active or ""
132 * @see Database::mTrxLevel
134 protected $mTrxShortId = '';
136 * The UNIX time that the transaction started. Callers can assume that if
137 * snapshot isolation is used, then the data is *at least* up to date to that
138 * point (possibly more up-to-date since the first SELECT defines the snapshot).
141 * @see Database::mTrxLevel
143 private $mTrxTimestamp = null;
144 /** @var float Lag estimate at the time of BEGIN */
145 private $mTrxReplicaLag = null;
147 * Remembers the function name given for starting the most recent transaction via begin().
148 * Used to provide additional context for error reporting.
151 * @see Database::mTrxLevel
153 private $mTrxFname = null;
155 * Record if possible write queries were done in the last transaction started
158 * @see Database::mTrxLevel
160 private $mTrxDoneWrites = false;
162 * Record if the current transaction was started implicitly due to DBO_TRX being set.
165 * @see Database::mTrxLevel
167 private $mTrxAutomatic = false;
169 * Array of levels of atomicity within transactions
173 private $mTrxAtomicLevels = [];
175 * Record if the current transaction was started implicitly by Database::startAtomic
179 private $mTrxAutomaticAtomic = false;
181 * Track the write query callers of the current transaction
185 private $mTrxWriteCallers = [];
187 * @var float Seconds spent in write queries for the current transaction
189 private $mTrxWriteDuration = 0.0;
191 * @var integer Number of write queries for the current transaction
193 private $mTrxWriteQueryCount = 0;
195 * @var float Like mTrxWriteQueryCount but excludes lock-bound, easy to replicate, queries
197 private $mTrxWriteAdjDuration = 0.0;
199 * @var integer Number of write queries counted in mTrxWriteAdjDuration
201 private $mTrxWriteAdjQueryCount = 0;
203 * @var float RTT time estimate
205 private $mRTTEstimate = 0.0;
207 /** @var array Map of (name => 1) for locks obtained via lock() */
208 private $mNamedLocksHeld = [];
209 /** @var array Map of (table name => 1) for TEMPORARY tables */
210 protected $mSessionTempTables = [];
212 /** @var IDatabase|null Lazy handle to the master DB this server replicates from */
213 private $lazyMasterHandle;
215 /** @var float UNIX timestamp */
216 protected $lastPing = 0.0;
218 /** @var int[] Prior mFlags values */
219 private $priorFlags = [];
221 /** @var object|string Class name or object With profileIn/profileOut methods */
223 /** @var TransactionProfiler */
224 protected $trxProfiler;
227 * Constructor and database handle and attempt to connect to the DB server
229 * IDatabase classes should not be constructed directly in external
230 * code. Database::factory() should be used instead.
232 * @param array $params Parameters passed from Database::factory()
234 function __construct( array $params ) {
235 $server = $params['host'];
236 $user = $params['user'];
237 $password = $params['password'];
238 $dbName = $params['dbname'];
240 $this->mSchema
= $params['schema'];
241 $this->mTablePrefix
= $params['tablePrefix'];
243 $this->cliMode
= $params['cliMode'];
244 // Agent name is added to SQL queries in a comment, so make sure it can't break out
245 $this->agent
= str_replace( '/', '-', $params['agent'] );
247 $this->mFlags
= $params['flags'];
248 if ( $this->mFlags
& self
::DBO_DEFAULT
) {
249 if ( $this->cliMode
) {
250 $this->mFlags
&= ~self
::DBO_TRX
;
252 $this->mFlags |
= self
::DBO_TRX
;
256 $this->mSessionVars
= $params['variables'];
258 $this->srvCache
= isset( $params['srvCache'] )
259 ?
$params['srvCache']
260 : new HashBagOStuff();
262 $this->profiler
= $params['profiler'];
263 $this->trxProfiler
= $params['trxProfiler'];
264 $this->connLogger
= $params['connLogger'];
265 $this->queryLogger
= $params['queryLogger'];
266 $this->errorLogger
= $params['errorLogger'];
268 // Set initial dummy domain until open() sets the final DB/prefix
269 $this->currentDomain
= DatabaseDomain
::newUnspecified();
272 $this->open( $server, $user, $password, $dbName );
273 } elseif ( $this->requiresDatabaseUser() ) {
274 throw new InvalidArgumentException( "No database user provided." );
277 // Set the domain object after open() sets the relevant fields
278 if ( $this->mDBname
!= '' ) {
279 // Domains with server scope but a table prefix are not used by IDatabase classes
280 $this->currentDomain
= new DatabaseDomain( $this->mDBname
, null, $this->mTablePrefix
);
285 * Construct a Database subclass instance given a database type and parameters
287 * This also connects to the database immediately upon object construction
289 * @param string $dbType A possible DB type (sqlite, mysql, postgres)
290 * @param array $p Parameter map with keys:
291 * - host : The hostname of the DB server
292 * - user : The name of the database user the client operates under
293 * - password : The password for the database user
294 * - dbname : The name of the database to use where queries do not specify one.
295 * The database must exist or an error might be thrown. Setting this to the empty string
296 * will avoid any such errors and make the handle have no implicit database scope. This is
297 * useful for queries like SHOW STATUS, CREATE DATABASE, or DROP DATABASE. Note that a
298 * "database" in Postgres is rougly equivalent to an entire MySQL server. This the domain
299 * in which user names and such are defined, e.g. users are database-specific in Postgres.
300 * - schema : The database schema to use (if supported). A "schema" in Postgres is roughly
301 * equivalent to a "database" in MySQL. Note that MySQL and SQLite do not use schemas.
302 * - tablePrefix : Optional table prefix that is implicitly added on to all table names
303 * recognized in queries. This can be used in place of schemas for handle site farms.
304 * - flags : Optional bitfield of DBO_* constants that define connection, protocol,
305 * buffering, and transaction behavior. It is STRONGLY adviced to leave the DBO_DEFAULT
306 * flag in place UNLESS this this database simply acts as a key/value store.
307 * - driver: Optional name of a specific DB client driver. For MySQL, there is the old
308 * 'mysql' driver and the newer 'mysqli' driver.
309 * - variables: Optional map of session variables to set after connecting. This can be
310 * used to adjust lock timeouts or encoding modes and the like.
311 * - connLogger: Optional PSR-3 logger interface instance.
312 * - queryLogger: Optional PSR-3 logger interface instance.
313 * - profiler: Optional class name or object with profileIn()/profileOut() methods.
314 * These will be called in query(), using a simplified version of the SQL that also
315 * includes the agent as a SQL comment.
316 * - trxProfiler: Optional TransactionProfiler instance.
317 * - errorLogger: Optional callback that takes an Exception and logs it.
318 * - cliMode: Whether to consider the execution context that of a CLI script.
319 * - agent: Optional name used to identify the end-user in query profiling/logging.
320 * - srvCache: Optional BagOStuff instance to an APC-style cache.
321 * @return Database|null If the database driver or extension cannot be found
322 * @throws InvalidArgumentException If the database driver or extension cannot be found
325 final public static function factory( $dbType, $p = [] ) {
326 static $canonicalDBTypes = [
327 'mysql' => [ 'mysqli', 'mysql' ],
335 $dbType = strtolower( $dbType );
336 if ( isset( $canonicalDBTypes[$dbType] ) && $canonicalDBTypes[$dbType] ) {
337 $possibleDrivers = $canonicalDBTypes[$dbType];
338 if ( !empty( $p['driver'] ) ) {
339 if ( in_array( $p['driver'], $possibleDrivers ) ) {
340 $driver = $p['driver'];
342 throw new InvalidArgumentException( __METHOD__
.
343 " type '$dbType' does not support driver '{$p['driver']}'" );
346 foreach ( $possibleDrivers as $posDriver ) {
347 if ( extension_loaded( $posDriver ) ) {
348 $driver = $posDriver;
356 if ( $driver === false ||
$driver === '' ) {
357 throw new InvalidArgumentException( __METHOD__
.
358 " no viable database extension found for type '$dbType'" );
361 $class = 'Database' . ucfirst( $driver );
362 if ( class_exists( $class ) && is_subclass_of( $class, 'IDatabase' ) ) {
363 // Resolve some defaults for b/c
364 $p['host'] = isset( $p['host'] ) ?
$p['host'] : false;
365 $p['user'] = isset( $p['user'] ) ?
$p['user'] : false;
366 $p['password'] = isset( $p['password'] ) ?
$p['password'] : false;
367 $p['dbname'] = isset( $p['dbname'] ) ?
$p['dbname'] : false;
368 $p['flags'] = isset( $p['flags'] ) ?
$p['flags'] : 0;
369 $p['variables'] = isset( $p['variables'] ) ?
$p['variables'] : [];
370 $p['tablePrefix'] = isset( $p['tablePrefix'] ) ?
$p['tablePrefix'] : '';
371 $p['schema'] = isset( $p['schema'] ) ?
$p['schema'] : '';
372 $p['cliMode'] = isset( $p['cliMode'] ) ?
$p['cliMode'] : ( PHP_SAPI
=== 'cli' );
373 $p['agent'] = isset( $p['agent'] ) ?
$p['agent'] : '';
374 if ( !isset( $p['connLogger'] ) ) {
375 $p['connLogger'] = new \Psr\Log\
NullLogger();
377 if ( !isset( $p['queryLogger'] ) ) {
378 $p['queryLogger'] = new \Psr\Log\
NullLogger();
380 $p['profiler'] = isset( $p['profiler'] ) ?
$p['profiler'] : null;
381 if ( !isset( $p['trxProfiler'] ) ) {
382 $p['trxProfiler'] = new TransactionProfiler();
384 if ( !isset( $p['errorLogger'] ) ) {
385 $p['errorLogger'] = function ( Exception
$e ) {
386 trigger_error( get_class( $e ) . ': ' . $e->getMessage(), E_USER_WARNING
);
390 $conn = new $class( $p );
398 public function setLogger( LoggerInterface
$logger ) {
399 $this->queryLogger
= $logger;
402 public function getServerInfo() {
403 return $this->getServerVersion();
406 public function bufferResults( $buffer = null ) {
407 $res = !$this->getFlag( self
::DBO_NOBUFFER
);
408 if ( $buffer !== null ) {
410 ?
$this->clearFlag( self
::DBO_NOBUFFER
)
411 : $this->setFlag( self
::DBO_NOBUFFER
);
418 * Turns on (false) or off (true) the automatic generation and sending
419 * of a "we're sorry, but there has been a database error" page on
420 * database errors. Default is on (false). When turned off, the
421 * code should use lastErrno() and lastError() to handle the
422 * situation as appropriate.
424 * Do not use this function outside of the Database classes.
426 * @param null|bool $ignoreErrors
427 * @return bool The previous value of the flag.
429 protected function ignoreErrors( $ignoreErrors = null ) {
430 $res = $this->getFlag( self
::DBO_IGNORE
);
431 if ( $ignoreErrors !== null ) {
433 ?
$this->setFlag( self
::DBO_IGNORE
)
434 : $this->clearFlag( self
::DBO_IGNORE
);
440 public function trxLevel() {
441 return $this->mTrxLevel
;
444 public function trxTimestamp() {
445 return $this->mTrxLevel ?
$this->mTrxTimestamp
: null;
448 public function tablePrefix( $prefix = null ) {
449 $old = $this->mTablePrefix
;
450 if ( $prefix !== null ) {
451 $this->mTablePrefix
= $prefix;
452 $this->currentDomain
= ( $this->mDBname
!= '' )
453 ?
new DatabaseDomain( $this->mDBname
, null, $this->mTablePrefix
)
454 : DatabaseDomain
::newUnspecified();
460 public function dbSchema( $schema = null ) {
461 $old = $this->mSchema
;
462 if ( $schema !== null ) {
463 $this->mSchema
= $schema;
469 public function getLBInfo( $name = null ) {
470 if ( is_null( $name ) ) {
471 return $this->mLBInfo
;
473 if ( array_key_exists( $name, $this->mLBInfo
) ) {
474 return $this->mLBInfo
[$name];
481 public function setLBInfo( $name, $value = null ) {
482 if ( is_null( $value ) ) {
483 $this->mLBInfo
= $name;
485 $this->mLBInfo
[$name] = $value;
489 public function setLazyMasterHandle( IDatabase
$conn ) {
490 $this->lazyMasterHandle
= $conn;
494 * @return IDatabase|null
495 * @see setLazyMasterHandle()
498 protected function getLazyMasterHandle() {
499 return $this->lazyMasterHandle
;
502 public function implicitGroupby() {
506 public function implicitOrderby() {
510 public function lastQuery() {
511 return $this->mLastQuery
;
514 public function doneWrites() {
515 return (bool)$this->mLastWriteTime
;
518 public function lastDoneWrites() {
519 return $this->mLastWriteTime ?
: false;
522 public function writesPending() {
523 return $this->mTrxLevel
&& $this->mTrxDoneWrites
;
526 public function writesOrCallbacksPending() {
527 return $this->mTrxLevel
&& (
528 $this->mTrxDoneWrites ||
$this->mTrxIdleCallbacks ||
$this->mTrxPreCommitCallbacks
532 public function pendingWriteQueryDuration( $type = self
::ESTIMATE_TOTAL
) {
533 if ( !$this->mTrxLevel
) {
535 } elseif ( !$this->mTrxDoneWrites
) {
540 case self
::ESTIMATE_DB_APPLY
:
542 $rttAdjTotal = $this->mTrxWriteAdjQueryCount
* $rtt;
543 $applyTime = max( $this->mTrxWriteAdjDuration
- $rttAdjTotal, 0 );
544 // For omitted queries, make them count as something at least
545 $omitted = $this->mTrxWriteQueryCount
- $this->mTrxWriteAdjQueryCount
;
546 $applyTime +
= self
::TINY_WRITE_SEC
* $omitted;
549 default: // everything
550 return $this->mTrxWriteDuration
;
554 public function pendingWriteCallers() {
555 return $this->mTrxLevel ?
$this->mTrxWriteCallers
: [];
558 protected function pendingWriteAndCallbackCallers() {
559 if ( !$this->mTrxLevel
) {
563 $fnames = $this->mTrxWriteCallers
;
565 $this->mTrxIdleCallbacks
,
566 $this->mTrxPreCommitCallbacks
,
567 $this->mTrxEndCallbacks
569 foreach ( $callbacks as $callback ) {
570 $fnames[] = $callback[1];
577 public function isOpen() {
578 return $this->mOpened
;
581 public function setFlag( $flag, $remember = self
::REMEMBER_NOTHING
) {
582 if ( $remember === self
::REMEMBER_PRIOR
) {
583 array_push( $this->priorFlags
, $this->mFlags
);
585 $this->mFlags |
= $flag;
588 public function clearFlag( $flag, $remember = self
::REMEMBER_NOTHING
) {
589 if ( $remember === self
::REMEMBER_PRIOR
) {
590 array_push( $this->priorFlags
, $this->mFlags
);
592 $this->mFlags
&= ~
$flag;
595 public function restoreFlags( $state = self
::RESTORE_PRIOR
) {
596 if ( !$this->priorFlags
) {
600 if ( $state === self
::RESTORE_INITIAL
) {
601 $this->mFlags
= reset( $this->priorFlags
);
602 $this->priorFlags
= [];
604 $this->mFlags
= array_pop( $this->priorFlags
);
608 public function getFlag( $flag ) {
609 return !!( $this->mFlags
& $flag );
613 * @param string $name Class field name
615 * @deprecated Since 1.28
617 public function getProperty( $name ) {
621 public function getDomainID() {
622 return $this->currentDomain
->getId();
625 final public function getWikiID() {
626 return $this->getDomainID();
630 * Get information about an index into an object
631 * @param string $table Table name
632 * @param string $index Index name
633 * @param string $fname Calling function name
634 * @return mixed Database-specific index description class or false if the index does not exist
636 abstract function indexInfo( $table, $index, $fname = __METHOD__
);
639 * Wrapper for addslashes()
641 * @param string $s String to be slashed.
642 * @return string Slashed string.
644 abstract function strencode( $s );
646 protected function installErrorHandler() {
647 $this->mPHPError
= false;
648 $this->htmlErrors
= ini_set( 'html_errors', '0' );
649 set_error_handler( [ $this, 'connectionErrorLogger' ] );
653 * @return bool|string
655 protected function restoreErrorHandler() {
656 restore_error_handler();
657 if ( $this->htmlErrors
!== false ) {
658 ini_set( 'html_errors', $this->htmlErrors
);
661 return $this->getLastPHPError();
665 * @return string|bool Last PHP error for this DB (typically connection errors)
667 protected function getLastPHPError() {
668 if ( $this->mPHPError
) {
669 $error = preg_replace( '!\[<a.*</a>\]!', '', $this->mPHPError
);
670 $error = preg_replace( '!^.*?:\s?(.*)$!', '$1', $error );
679 * This method should not be used outside of Database classes
682 * @param string $errstr
684 public function connectionErrorLogger( $errno, $errstr ) {
685 $this->mPHPError
= $errstr;
689 * Create a log context to pass to PSR-3 logger functions.
691 * @param array $extras Additional data to add to context
694 protected function getLogContext( array $extras = [] ) {
697 'db_server' => $this->mServer
,
698 'db_name' => $this->mDBname
,
699 'db_user' => $this->mUser
,
705 public function close() {
706 if ( $this->mConn
) {
707 if ( $this->trxLevel() ) {
708 $this->commit( __METHOD__
, self
::FLUSHING_INTERNAL
);
711 $closed = $this->closeConnection();
712 $this->mConn
= false;
713 } elseif ( $this->mTrxIdleCallbacks ||
$this->mTrxEndCallbacks
) { // sanity
714 throw new RuntimeException( "Transaction callbacks still pending." );
718 $this->mOpened
= false;
724 * Make sure isOpen() returns true as a sanity check
726 * @throws DBUnexpectedError
728 protected function assertOpen() {
729 if ( !$this->isOpen() ) {
730 throw new DBUnexpectedError( $this, "DB connection was already closed." );
735 * Closes underlying database connection
737 * @return bool Whether connection was closed successfully
739 abstract protected function closeConnection();
741 public function reportConnectionError( $error = 'Unknown error' ) {
742 $myError = $this->lastError();
748 throw new DBConnectionError( $this, $error );
752 * The DBMS-dependent part of query()
754 * @param string $sql SQL query.
755 * @return ResultWrapper|bool Result object to feed to fetchObject,
756 * fetchRow, ...; or false on failure
758 abstract protected function doQuery( $sql );
761 * Determine whether a query writes to the DB.
762 * Should return true if unsure.
767 protected function isWriteQuery( $sql ) {
769 '/^(?:SELECT|BEGIN|ROLLBACK|COMMIT|SET|SHOW|EXPLAIN|\(SELECT)\b/i', $sql );
774 * @return string|null
776 protected function getQueryVerb( $sql ) {
777 return preg_match( '/^\s*([a-z]+)/i', $sql, $m ) ?
strtoupper( $m[1] ) : null;
781 * Determine whether a SQL statement is sensitive to isolation level.
782 * A SQL statement is considered transactable if its result could vary
783 * depending on the transaction isolation level. Operational commands
784 * such as 'SET' and 'SHOW' are not considered to be transactable.
789 protected function isTransactableQuery( $sql ) {
791 $this->getQueryVerb( $sql ),
792 [ 'BEGIN', 'COMMIT', 'ROLLBACK', 'SHOW', 'SET', 'CREATE', 'ALTER' ],
798 * @param string $sql A SQL query
799 * @return bool Whether $sql is SQL for creating/dropping a new TEMPORARY table
801 protected function registerTempTableOperation( $sql ) {
803 '/^CREATE\s+TEMPORARY\s+TABLE\s+(?:IF\s+NOT\s+EXISTS\s+)?[`"\']?(\w+)[`"\']?/i',
807 $this->mSessionTempTables
[$matches[1]] = 1;
810 } elseif ( preg_match(
811 '/^DROP\s+(?:TEMPORARY\s+)?TABLE\s+(?:IF\s+EXISTS\s+)?[`"\']?(\w+)[`"\']?/i',
815 unset( $this->mSessionTempTables
[$matches[1]] );
818 } elseif ( preg_match(
819 '/^(?:INSERT\s+(?:\w+\s+)?INTO|UPDATE|DELETE\s+FROM)\s+[`"\']?(\w+)[`"\']?/i',
823 return isset( $this->mSessionTempTables
[$matches[1]] );
829 public function query( $sql, $fname = __METHOD__
, $tempIgnore = false ) {
830 $priorWritesPending = $this->writesOrCallbacksPending();
831 $this->mLastQuery
= $sql;
833 $isWrite = $this->isWriteQuery( $sql ) && !$this->registerTempTableOperation( $sql );
835 $reason = $this->getReadOnlyReason();
836 if ( $reason !== false ) {
837 throw new DBReadOnlyError( $this, "Database is read-only: $reason" );
839 # Set a flag indicating that writes have been done
840 $this->mLastWriteTime
= microtime( true );
843 // Add trace comment to the begin of the sql string, right after the operator.
844 // Or, for one-word queries (like "BEGIN" or COMMIT") add it to the end (bug 42598)
845 $commentedSql = preg_replace( '/\s|$/', " /* $fname {$this->agent} */ ", $sql, 1 );
847 # Start implicit transactions that wrap the request if DBO_TRX is enabled
848 if ( !$this->mTrxLevel
&& $this->getFlag( self
::DBO_TRX
)
849 && $this->isTransactableQuery( $sql )
851 $this->begin( __METHOD__
. " ($fname)", self
::TRANSACTION_INTERNAL
);
852 $this->mTrxAutomatic
= true;
855 # Keep track of whether the transaction has write queries pending
856 if ( $this->mTrxLevel
&& !$this->mTrxDoneWrites
&& $isWrite ) {
857 $this->mTrxDoneWrites
= true;
858 $this->trxProfiler
->transactionWritingIn(
859 $this->mServer
, $this->mDBname
, $this->mTrxShortId
);
862 if ( $this->getFlag( self
::DBO_DEBUG
) ) {
863 $this->queryLogger
->debug( "{$this->mDBname} {$commentedSql}" );
866 # Avoid fatals if close() was called
869 # Send the query to the server
870 $ret = $this->doProfiledQuery( $sql, $commentedSql, $isWrite, $fname );
872 # Try reconnecting if the connection was lost
873 if ( false === $ret && $this->wasErrorReissuable() ) {
874 $recoverable = $this->canRecoverFromDisconnect( $sql, $priorWritesPending );
875 # Stash the last error values before anything might clear them
876 $lastError = $this->lastError();
877 $lastErrno = $this->lastErrno();
878 # Update state tracking to reflect transaction loss due to disconnection
879 $this->handleSessionLoss();
880 if ( $this->reconnect() ) {
881 $msg = __METHOD__
. ": lost connection to {$this->getServer()}; reconnected";
882 $this->connLogger
->warning( $msg );
883 $this->queryLogger
->warning(
884 "$msg:\n" . ( new RuntimeException() )->getTraceAsString() );
886 if ( !$recoverable ) {
887 # Callers may catch the exception and continue to use the DB
888 $this->reportQueryError( $lastError, $lastErrno, $sql, $fname );
890 # Should be safe to silently retry the query
891 $ret = $this->doProfiledQuery( $sql, $commentedSql, $isWrite, $fname );
894 $msg = __METHOD__
. ": lost connection to {$this->getServer()} permanently";
895 $this->connLogger
->error( $msg );
899 if ( false === $ret ) {
900 # Deadlocks cause the entire transaction to abort, not just the statement.
901 # https://dev.mysql.com/doc/refman/5.7/en/innodb-error-handling.html
902 # https://www.postgresql.org/docs/9.1/static/explicit-locking.html
903 if ( $this->wasDeadlock() ) {
904 if ( $this->explicitTrxActive() ||
$priorWritesPending ) {
905 $tempIgnore = false; // not recoverable
907 # Update state tracking to reflect transaction loss
908 $this->handleSessionLoss();
911 $this->reportQueryError(
912 $this->lastError(), $this->lastErrno(), $sql, $fname, $tempIgnore );
915 $res = $this->resultObject( $ret );
920 private function doProfiledQuery( $sql, $commentedSql, $isWrite, $fname ) {
921 $isMaster = !is_null( $this->getLBInfo( 'master' ) );
922 # generalizeSQL() will probably cut down the query to reasonable
923 # logging size most of the time. The substr is really just a sanity check.
925 $queryProf = 'query-m: ' . substr( self
::generalizeSQL( $sql ), 0, 255 );
927 $queryProf = 'query: ' . substr( self
::generalizeSQL( $sql ), 0, 255 );
930 # Include query transaction state
931 $queryProf .= $this->mTrxShortId ?
" [TRX#{$this->mTrxShortId}]" : "";
933 $startTime = microtime( true );
934 if ( $this->profiler
) {
935 call_user_func( [ $this->profiler
, 'profileIn' ], $queryProf );
937 $ret = $this->doQuery( $commentedSql );
938 if ( $this->profiler
) {
939 call_user_func( [ $this->profiler
, 'profileOut' ], $queryProf );
941 $queryRuntime = max( microtime( true ) - $startTime, 0.0 );
943 unset( $queryProfSection ); // profile out (if set)
945 if ( $ret !== false ) {
946 $this->lastPing
= $startTime;
947 if ( $isWrite && $this->mTrxLevel
) {
948 $this->updateTrxWriteQueryTime( $sql, $queryRuntime );
949 $this->mTrxWriteCallers
[] = $fname;
953 if ( $sql === self
::PING_QUERY
) {
954 $this->mRTTEstimate
= $queryRuntime;
957 $this->trxProfiler
->recordQueryCompletion(
958 $queryProf, $startTime, $isWrite, $this->affectedRows()
960 $this->queryLogger
->debug( $sql, [
962 'master' => $isMaster,
963 'runtime' => $queryRuntime,
970 * Update the estimated run-time of a query, not counting large row lock times
972 * LoadBalancer can be set to rollback transactions that will create huge replication
973 * lag. It bases this estimate off of pendingWriteQueryDuration(). Certain simple
974 * queries, like inserting a row can take a long time due to row locking. This method
975 * uses some simple heuristics to discount those cases.
977 * @param string $sql A SQL write query
978 * @param float $runtime Total runtime, including RTT
980 private function updateTrxWriteQueryTime( $sql, $runtime ) {
981 // Whether this is indicative of replica DB runtime (except for RBR or ws_repl)
982 $indicativeOfReplicaRuntime = true;
983 if ( $runtime > self
::SLOW_WRITE_SEC
) {
984 $verb = $this->getQueryVerb( $sql );
985 // insert(), upsert(), replace() are fast unless bulky in size or blocked on locks
986 if ( $verb === 'INSERT' ) {
987 $indicativeOfReplicaRuntime = $this->affectedRows() > self
::SMALL_WRITE_ROWS
;
988 } elseif ( $verb === 'REPLACE' ) {
989 $indicativeOfReplicaRuntime = $this->affectedRows() > self
::SMALL_WRITE_ROWS
/ 2;
993 $this->mTrxWriteDuration +
= $runtime;
994 $this->mTrxWriteQueryCount +
= 1;
995 if ( $indicativeOfReplicaRuntime ) {
996 $this->mTrxWriteAdjDuration +
= $runtime;
997 $this->mTrxWriteAdjQueryCount +
= 1;
1001 private function canRecoverFromDisconnect( $sql, $priorWritesPending ) {
1002 # Transaction dropped; this can mean lost writes, or REPEATABLE-READ snapshots.
1003 # Dropped connections also mean that named locks are automatically released.
1004 # Only allow error suppression in autocommit mode or when the lost transaction
1005 # didn't matter anyway (aside from DBO_TRX snapshot loss).
1006 if ( $this->mNamedLocksHeld
) {
1007 return false; // possible critical section violation
1008 } elseif ( $sql === 'COMMIT' ) {
1009 return !$priorWritesPending; // nothing written anyway? (T127428)
1010 } elseif ( $sql === 'ROLLBACK' ) {
1011 return true; // transaction lost...which is also what was requested :)
1012 } elseif ( $this->explicitTrxActive() ) {
1013 return false; // don't drop atomocity
1014 } elseif ( $priorWritesPending ) {
1015 return false; // prior writes lost from implicit transaction
1021 private function handleSessionLoss() {
1022 $this->mTrxLevel
= 0;
1023 $this->mTrxIdleCallbacks
= []; // bug 65263
1024 $this->mTrxPreCommitCallbacks
= []; // bug 65263
1025 $this->mSessionTempTables
= [];
1026 $this->mNamedLocksHeld
= [];
1028 // Handle callbacks in mTrxEndCallbacks
1029 $this->runOnTransactionIdleCallbacks( self
::TRIGGER_ROLLBACK
);
1030 $this->runTransactionListenerCallbacks( self
::TRIGGER_ROLLBACK
);
1032 } catch ( Exception
$e ) {
1033 // Already logged; move on...
1038 public function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false ) {
1039 if ( $this->ignoreErrors() ||
$tempIgnore ) {
1040 $this->queryLogger
->debug( "SQL ERROR (ignored): $error\n" );
1042 $sql1line = mb_substr( str_replace( "\n", "\\n", $sql ), 0, 5 * 1024 );
1043 $this->queryLogger
->error(
1044 "{fname}\t{db_server}\t{errno}\t{error}\t{sql1line}",
1045 $this->getLogContext( [
1046 'method' => __METHOD__
,
1049 'sql1line' => $sql1line,
1053 $this->queryLogger
->debug( "SQL ERROR: " . $error . "\n" );
1054 throw new DBQueryError( $this, $error, $errno, $sql, $fname );
1058 public function freeResult( $res ) {
1061 public function selectField(
1062 $table, $var, $cond = '', $fname = __METHOD__
, $options = []
1064 if ( $var === '*' ) { // sanity
1065 throw new DBUnexpectedError( $this, "Cannot use a * field: got '$var'" );
1068 if ( !is_array( $options ) ) {
1069 $options = [ $options ];
1072 $options['LIMIT'] = 1;
1074 $res = $this->select( $table, $var, $cond, $fname, $options );
1075 if ( $res === false ||
!$this->numRows( $res ) ) {
1079 $row = $this->fetchRow( $res );
1081 if ( $row !== false ) {
1082 return reset( $row );
1088 public function selectFieldValues(
1089 $table, $var, $cond = '', $fname = __METHOD__
, $options = [], $join_conds = []
1091 if ( $var === '*' ) { // sanity
1092 throw new DBUnexpectedError( $this, "Cannot use a * field" );
1093 } elseif ( !is_string( $var ) ) { // sanity
1094 throw new DBUnexpectedError( $this, "Cannot use an array of fields" );
1097 if ( !is_array( $options ) ) {
1098 $options = [ $options ];
1101 $res = $this->select( $table, $var, $cond, $fname, $options, $join_conds );
1102 if ( $res === false ) {
1107 foreach ( $res as $row ) {
1108 $values[] = $row->$var;
1115 * Returns an optional USE INDEX clause to go after the table, and a
1116 * string to go at the end of the query.
1118 * @param array $options Associative array of options to be turned into
1119 * an SQL query, valid keys are listed in the function.
1121 * @see Database::select()
1123 protected function makeSelectOptions( $options ) {
1124 $preLimitTail = $postLimitTail = '';
1129 foreach ( $options as $key => $option ) {
1130 if ( is_numeric( $key ) ) {
1131 $noKeyOptions[$option] = true;
1135 $preLimitTail .= $this->makeGroupByWithHaving( $options );
1137 $preLimitTail .= $this->makeOrderBy( $options );
1139 // if (isset($options['LIMIT'])) {
1140 // $tailOpts .= $this->limitResult('', $options['LIMIT'],
1141 // isset($options['OFFSET']) ? $options['OFFSET']
1145 if ( isset( $noKeyOptions['FOR UPDATE'] ) ) {
1146 $postLimitTail .= ' FOR UPDATE';
1149 if ( isset( $noKeyOptions['LOCK IN SHARE MODE'] ) ) {
1150 $postLimitTail .= ' LOCK IN SHARE MODE';
1153 if ( isset( $noKeyOptions['DISTINCT'] ) ||
isset( $noKeyOptions['DISTINCTROW'] ) ) {
1154 $startOpts .= 'DISTINCT';
1157 # Various MySQL extensions
1158 if ( isset( $noKeyOptions['STRAIGHT_JOIN'] ) ) {
1159 $startOpts .= ' /*! STRAIGHT_JOIN */';
1162 if ( isset( $noKeyOptions['HIGH_PRIORITY'] ) ) {
1163 $startOpts .= ' HIGH_PRIORITY';
1166 if ( isset( $noKeyOptions['SQL_BIG_RESULT'] ) ) {
1167 $startOpts .= ' SQL_BIG_RESULT';
1170 if ( isset( $noKeyOptions['SQL_BUFFER_RESULT'] ) ) {
1171 $startOpts .= ' SQL_BUFFER_RESULT';
1174 if ( isset( $noKeyOptions['SQL_SMALL_RESULT'] ) ) {
1175 $startOpts .= ' SQL_SMALL_RESULT';
1178 if ( isset( $noKeyOptions['SQL_CALC_FOUND_ROWS'] ) ) {
1179 $startOpts .= ' SQL_CALC_FOUND_ROWS';
1182 if ( isset( $noKeyOptions['SQL_CACHE'] ) ) {
1183 $startOpts .= ' SQL_CACHE';
1186 if ( isset( $noKeyOptions['SQL_NO_CACHE'] ) ) {
1187 $startOpts .= ' SQL_NO_CACHE';
1190 if ( isset( $options['USE INDEX'] ) && is_string( $options['USE INDEX'] ) ) {
1191 $useIndex = $this->useIndexClause( $options['USE INDEX'] );
1195 if ( isset( $options['IGNORE INDEX'] ) && is_string( $options['IGNORE INDEX'] ) ) {
1196 $ignoreIndex = $this->ignoreIndexClause( $options['IGNORE INDEX'] );
1201 return [ $startOpts, $useIndex, $preLimitTail, $postLimitTail, $ignoreIndex ];
1205 * Returns an optional GROUP BY with an optional HAVING
1207 * @param array $options Associative array of options
1209 * @see Database::select()
1212 protected function makeGroupByWithHaving( $options ) {
1214 if ( isset( $options['GROUP BY'] ) ) {
1215 $gb = is_array( $options['GROUP BY'] )
1216 ?
implode( ',', $options['GROUP BY'] )
1217 : $options['GROUP BY'];
1218 $sql .= ' GROUP BY ' . $gb;
1220 if ( isset( $options['HAVING'] ) ) {
1221 $having = is_array( $options['HAVING'] )
1222 ?
$this->makeList( $options['HAVING'], self
::LIST_AND
)
1223 : $options['HAVING'];
1224 $sql .= ' HAVING ' . $having;
1231 * Returns an optional ORDER BY
1233 * @param array $options Associative array of options
1235 * @see Database::select()
1238 protected function makeOrderBy( $options ) {
1239 if ( isset( $options['ORDER BY'] ) ) {
1240 $ob = is_array( $options['ORDER BY'] )
1241 ?
implode( ',', $options['ORDER BY'] )
1242 : $options['ORDER BY'];
1244 return ' ORDER BY ' . $ob;
1250 public function select( $table, $vars, $conds = '', $fname = __METHOD__
,
1251 $options = [], $join_conds = [] ) {
1252 $sql = $this->selectSQLText( $table, $vars, $conds, $fname, $options, $join_conds );
1254 return $this->query( $sql, $fname );
1257 public function selectSQLText( $table, $vars, $conds = '', $fname = __METHOD__
,
1258 $options = [], $join_conds = []
1260 if ( is_array( $vars ) ) {
1261 $vars = implode( ',', $this->fieldNamesWithAlias( $vars ) );
1264 $options = (array)$options;
1265 $useIndexes = ( isset( $options['USE INDEX'] ) && is_array( $options['USE INDEX'] ) )
1266 ?
$options['USE INDEX']
1269 isset( $options['IGNORE INDEX'] ) &&
1270 is_array( $options['IGNORE INDEX'] )
1272 ?
$options['IGNORE INDEX']
1275 if ( is_array( $table ) ) {
1277 $this->tableNamesWithIndexClauseOrJOIN(
1278 $table, $useIndexes, $ignoreIndexes, $join_conds );
1279 } elseif ( $table != '' ) {
1280 if ( $table[0] == ' ' ) {
1281 $from = ' FROM ' . $table;
1284 $this->tableNamesWithIndexClauseOrJOIN(
1285 [ $table ], $useIndexes, $ignoreIndexes, [] );
1291 list( $startOpts, $useIndex, $preLimitTail, $postLimitTail, $ignoreIndex ) =
1292 $this->makeSelectOptions( $options );
1294 if ( !empty( $conds ) ) {
1295 if ( is_array( $conds ) ) {
1296 $conds = $this->makeList( $conds, self
::LIST_AND
);
1298 $sql = "SELECT $startOpts $vars $from $useIndex $ignoreIndex " .
1299 "WHERE $conds $preLimitTail";
1301 $sql = "SELECT $startOpts $vars $from $useIndex $ignoreIndex $preLimitTail";
1304 if ( isset( $options['LIMIT'] ) ) {
1305 $sql = $this->limitResult( $sql, $options['LIMIT'],
1306 isset( $options['OFFSET'] ) ?
$options['OFFSET'] : false );
1308 $sql = "$sql $postLimitTail";
1310 if ( isset( $options['EXPLAIN'] ) ) {
1311 $sql = 'EXPLAIN ' . $sql;
1317 public function selectRow( $table, $vars, $conds, $fname = __METHOD__
,
1318 $options = [], $join_conds = []
1320 $options = (array)$options;
1321 $options['LIMIT'] = 1;
1322 $res = $this->select( $table, $vars, $conds, $fname, $options, $join_conds );
1324 if ( $res === false ) {
1328 if ( !$this->numRows( $res ) ) {
1332 $obj = $this->fetchObject( $res );
1337 public function estimateRowCount(
1338 $table, $vars = '*', $conds = '', $fname = __METHOD__
, $options = []
1341 $res = $this->select( $table, [ 'rowcount' => 'COUNT(*)' ], $conds, $fname, $options );
1344 $row = $this->fetchRow( $res );
1345 $rows = ( isset( $row['rowcount'] ) ) ?
(int)$row['rowcount'] : 0;
1351 public function selectRowCount(
1352 $tables, $vars = '*', $conds = '', $fname = __METHOD__
, $options = [], $join_conds = []
1355 $sql = $this->selectSQLText( $tables, '1', $conds, $fname, $options, $join_conds );
1356 $res = $this->query( "SELECT COUNT(*) AS rowcount FROM ($sql) tmp_count", $fname );
1359 $row = $this->fetchRow( $res );
1360 $rows = ( isset( $row['rowcount'] ) ) ?
(int)$row['rowcount'] : 0;
1367 * Removes most variables from an SQL query and replaces them with X or N for numbers.
1368 * It's only slightly flawed. Don't use for anything important.
1370 * @param string $sql A SQL Query
1374 protected static function generalizeSQL( $sql ) {
1375 # This does the same as the regexp below would do, but in such a way
1376 # as to avoid crashing php on some large strings.
1377 # $sql = preg_replace( "/'([^\\\\']|\\\\.)*'|\"([^\\\\\"]|\\\\.)*\"/", "'X'", $sql );
1379 $sql = str_replace( "\\\\", '', $sql );
1380 $sql = str_replace( "\\'", '', $sql );
1381 $sql = str_replace( "\\\"", '', $sql );
1382 $sql = preg_replace( "/'.*'/s", "'X'", $sql );
1383 $sql = preg_replace( '/".*"/s', "'X'", $sql );
1385 # All newlines, tabs, etc replaced by single space
1386 $sql = preg_replace( '/\s+/', ' ', $sql );
1389 # except the ones surrounded by characters, e.g. l10n
1390 $sql = preg_replace( '/-?\d+(,-?\d+)+/s', 'N,...,N', $sql );
1391 $sql = preg_replace( '/(?<![a-zA-Z])-?\d+(?![a-zA-Z])/s', 'N', $sql );
1396 public function fieldExists( $table, $field, $fname = __METHOD__
) {
1397 $info = $this->fieldInfo( $table, $field );
1402 public function indexExists( $table, $index, $fname = __METHOD__
) {
1403 if ( !$this->tableExists( $table ) ) {
1407 $info = $this->indexInfo( $table, $index, $fname );
1408 if ( is_null( $info ) ) {
1411 return $info !== false;
1415 public function tableExists( $table, $fname = __METHOD__
) {
1416 $tableRaw = $this->tableName( $table, 'raw' );
1417 if ( isset( $this->mSessionTempTables
[$tableRaw] ) ) {
1418 return true; // already known to exist
1421 $table = $this->tableName( $table );
1422 $ignoreErrors = true;
1423 $res = $this->query( "SELECT 1 FROM $table LIMIT 1", $fname, $ignoreErrors );
1428 public function indexUnique( $table, $index ) {
1429 $indexInfo = $this->indexInfo( $table, $index );
1431 if ( !$indexInfo ) {
1435 return !$indexInfo[0]->Non_unique
;
1439 * Helper for Database::insert().
1441 * @param array $options
1444 protected function makeInsertOptions( $options ) {
1445 return implode( ' ', $options );
1448 public function insert( $table, $a, $fname = __METHOD__
, $options = [] ) {
1449 # No rows to insert, easy just return now
1450 if ( !count( $a ) ) {
1454 $table = $this->tableName( $table );
1456 if ( !is_array( $options ) ) {
1457 $options = [ $options ];
1461 if ( isset( $options['fileHandle'] ) ) {
1462 $fh = $options['fileHandle'];
1464 $options = $this->makeInsertOptions( $options );
1466 if ( isset( $a[0] ) && is_array( $a[0] ) ) {
1468 $keys = array_keys( $a[0] );
1471 $keys = array_keys( $a );
1474 $sql = 'INSERT ' . $options .
1475 " INTO $table (" . implode( ',', $keys ) . ') VALUES ';
1479 foreach ( $a as $row ) {
1485 $sql .= '(' . $this->makeList( $row ) . ')';
1488 $sql .= '(' . $this->makeList( $a ) . ')';
1491 if ( $fh !== null && false === fwrite( $fh, $sql ) ) {
1493 } elseif ( $fh !== null ) {
1497 return (bool)$this->query( $sql, $fname );
1501 * Make UPDATE options array for Database::makeUpdateOptions
1503 * @param array $options
1506 protected function makeUpdateOptionsArray( $options ) {
1507 if ( !is_array( $options ) ) {
1508 $options = [ $options ];
1513 if ( in_array( 'IGNORE', $options ) ) {
1521 * Make UPDATE options for the Database::update function
1523 * @param array $options The options passed to Database::update
1526 protected function makeUpdateOptions( $options ) {
1527 $opts = $this->makeUpdateOptionsArray( $options );
1529 return implode( ' ', $opts );
1532 public function update( $table, $values, $conds, $fname = __METHOD__
, $options = [] ) {
1533 $table = $this->tableName( $table );
1534 $opts = $this->makeUpdateOptions( $options );
1535 $sql = "UPDATE $opts $table SET " . $this->makeList( $values, self
::LIST_SET
);
1537 if ( $conds !== [] && $conds !== '*' ) {
1538 $sql .= " WHERE " . $this->makeList( $conds, self
::LIST_AND
);
1541 return $this->query( $sql, $fname );
1544 public function makeList( $a, $mode = self
::LIST_COMMA
) {
1545 if ( !is_array( $a ) ) {
1546 throw new DBUnexpectedError( $this, __METHOD__
. ' called with incorrect parameters' );
1552 foreach ( $a as $field => $value ) {
1554 if ( $mode == self
::LIST_AND
) {
1556 } elseif ( $mode == self
::LIST_OR
) {
1565 if ( ( $mode == self
::LIST_AND ||
$mode == self
::LIST_OR
) && is_numeric( $field ) ) {
1566 $list .= "($value)";
1567 } elseif ( $mode == self
::LIST_SET
&& is_numeric( $field ) ) {
1570 ( $mode == self
::LIST_AND ||
$mode == self
::LIST_OR
) && is_array( $value )
1572 // Remove null from array to be handled separately if found
1573 $includeNull = false;
1574 foreach ( array_keys( $value, null, true ) as $nullKey ) {
1575 $includeNull = true;
1576 unset( $value[$nullKey] );
1578 if ( count( $value ) == 0 && !$includeNull ) {
1579 throw new InvalidArgumentException(
1580 __METHOD__
. ": empty input for field $field" );
1581 } elseif ( count( $value ) == 0 ) {
1582 // only check if $field is null
1583 $list .= "$field IS NULL";
1585 // IN clause contains at least one valid element
1586 if ( $includeNull ) {
1587 // Group subconditions to ensure correct precedence
1590 if ( count( $value ) == 1 ) {
1591 // Special-case single values, as IN isn't terribly efficient
1592 // Don't necessarily assume the single key is 0; we don't
1593 // enforce linear numeric ordering on other arrays here.
1594 $value = array_values( $value )[0];
1595 $list .= $field . " = " . $this->addQuotes( $value );
1597 $list .= $field . " IN (" . $this->makeList( $value ) . ") ";
1599 // if null present in array, append IS NULL
1600 if ( $includeNull ) {
1601 $list .= " OR $field IS NULL)";
1604 } elseif ( $value === null ) {
1605 if ( $mode == self
::LIST_AND ||
$mode == self
::LIST_OR
) {
1606 $list .= "$field IS ";
1607 } elseif ( $mode == self
::LIST_SET
) {
1608 $list .= "$field = ";
1613 $mode == self
::LIST_AND ||
$mode == self
::LIST_OR ||
$mode == self
::LIST_SET
1615 $list .= "$field = ";
1617 $list .= $mode == self
::LIST_NAMES ?
$value : $this->addQuotes( $value );
1624 public function makeWhereFrom2d( $data, $baseKey, $subKey ) {
1627 foreach ( $data as $base => $sub ) {
1628 if ( count( $sub ) ) {
1629 $conds[] = $this->makeList(
1630 [ $baseKey => $base, $subKey => array_keys( $sub ) ],
1636 return $this->makeList( $conds, self
::LIST_OR
);
1638 // Nothing to search for...
1643 public function aggregateValue( $valuedata, $valuename = 'value' ) {
1647 public function bitNot( $field ) {
1651 public function bitAnd( $fieldLeft, $fieldRight ) {
1652 return "($fieldLeft & $fieldRight)";
1655 public function bitOr( $fieldLeft, $fieldRight ) {
1656 return "($fieldLeft | $fieldRight)";
1659 public function buildConcat( $stringList ) {
1660 return 'CONCAT(' . implode( ',', $stringList ) . ')';
1663 public function buildGroupConcatField(
1664 $delim, $table, $field, $conds = '', $join_conds = []
1666 $fld = "GROUP_CONCAT($field SEPARATOR " . $this->addQuotes( $delim ) . ')';
1668 return '(' . $this->selectSQLText( $table, $fld, $conds, null, [], $join_conds ) . ')';
1671 public function buildStringCast( $field ) {
1675 public function selectDB( $db ) {
1676 # Stub. Shouldn't cause serious problems if it's not overridden, but
1677 # if your database engine supports a concept similar to MySQL's
1678 # databases you may as well.
1679 $this->mDBname
= $db;
1684 public function getDBname() {
1685 return $this->mDBname
;
1688 public function getServer() {
1689 return $this->mServer
;
1692 public function tableName( $name, $format = 'quoted' ) {
1693 # Skip the entire process when we have a string quoted on both ends.
1694 # Note that we check the end so that we will still quote any use of
1695 # use of `database`.table. But won't break things if someone wants
1696 # to query a database table with a dot in the name.
1697 if ( $this->isQuotedIdentifier( $name ) ) {
1701 # Lets test for any bits of text that should never show up in a table
1702 # name. Basically anything like JOIN or ON which are actually part of
1703 # SQL queries, but may end up inside of the table value to combine
1704 # sql. Such as how the API is doing.
1705 # Note that we use a whitespace test rather than a \b test to avoid
1706 # any remote case where a word like on may be inside of a table name
1707 # surrounded by symbols which may be considered word breaks.
1708 if ( preg_match( '/(^|\s)(DISTINCT|JOIN|ON|AS)(\s|$)/i', $name ) !== 0 ) {
1712 # Split database and table into proper variables.
1713 # We reverse the explode so that database.table and table both output
1714 # the correct table.
1715 $dbDetails = explode( '.', $name, 3 );
1716 if ( count( $dbDetails ) == 3 ) {
1717 list( $database, $schema, $table ) = $dbDetails;
1718 # We don't want any prefix added in this case
1720 } elseif ( count( $dbDetails ) == 2 ) {
1721 list( $database, $table ) = $dbDetails;
1722 # We don't want any prefix added in this case
1724 # In dbs that support it, $database may actually be the schema
1725 # but that doesn't affect any of the functionality here
1728 list( $table ) = $dbDetails;
1729 if ( isset( $this->tableAliases
[$table] ) ) {
1730 $database = $this->tableAliases
[$table]['dbname'];
1731 $schema = is_string( $this->tableAliases
[$table]['schema'] )
1732 ?
$this->tableAliases
[$table]['schema']
1734 $prefix = is_string( $this->tableAliases
[$table]['prefix'] )
1735 ?
$this->tableAliases
[$table]['prefix']
1736 : $this->mTablePrefix
;
1739 $schema = $this->mSchema
; # Default schema
1740 $prefix = $this->mTablePrefix
; # Default prefix
1744 # Quote $table and apply the prefix if not quoted.
1745 # $tableName might be empty if this is called from Database::replaceVars()
1746 $tableName = "{$prefix}{$table}";
1747 if ( $format === 'quoted'
1748 && !$this->isQuotedIdentifier( $tableName )
1749 && $tableName !== ''
1751 $tableName = $this->addIdentifierQuotes( $tableName );
1754 # Quote $schema and $database and merge them with the table name if needed
1755 $tableName = $this->prependDatabaseOrSchema( $schema, $tableName, $format );
1756 $tableName = $this->prependDatabaseOrSchema( $database, $tableName, $format );
1762 * @param string|null $namespace Database or schema
1763 * @param string $relation Name of table, view, sequence, etc...
1764 * @param string $format One of (raw, quoted)
1765 * @return string Relation name with quoted and merged $namespace as needed
1767 private function prependDatabaseOrSchema( $namespace, $relation, $format ) {
1768 if ( strlen( $namespace ) ) {
1769 if ( $format === 'quoted' && !$this->isQuotedIdentifier( $namespace ) ) {
1770 $namespace = $this->addIdentifierQuotes( $namespace );
1772 $relation = $namespace . '.' . $relation;
1778 public function tableNames() {
1779 $inArray = func_get_args();
1782 foreach ( $inArray as $name ) {
1783 $retVal[$name] = $this->tableName( $name );
1789 public function tableNamesN() {
1790 $inArray = func_get_args();
1793 foreach ( $inArray as $name ) {
1794 $retVal[] = $this->tableName( $name );
1801 * Get an aliased table name
1802 * e.g. tableName AS newTableName
1804 * @param string $name Table name, see tableName()
1805 * @param string|bool $alias Alias (optional)
1806 * @return string SQL name for aliased table. Will not alias a table to its own name
1808 protected function tableNameWithAlias( $name, $alias = false ) {
1809 if ( !$alias ||
$alias == $name ) {
1810 return $this->tableName( $name );
1812 return $this->tableName( $name ) . ' ' . $this->addIdentifierQuotes( $alias );
1817 * Gets an array of aliased table names
1819 * @param array $tables [ [alias] => table ]
1820 * @return string[] See tableNameWithAlias()
1822 protected function tableNamesWithAlias( $tables ) {
1824 foreach ( $tables as $alias => $table ) {
1825 if ( is_numeric( $alias ) ) {
1828 $retval[] = $this->tableNameWithAlias( $table, $alias );
1835 * Get an aliased field name
1836 * e.g. fieldName AS newFieldName
1838 * @param string $name Field name
1839 * @param string|bool $alias Alias (optional)
1840 * @return string SQL name for aliased field. Will not alias a field to its own name
1842 protected function fieldNameWithAlias( $name, $alias = false ) {
1843 if ( !$alias ||
(string)$alias === (string)$name ) {
1846 return $name . ' AS ' . $this->addIdentifierQuotes( $alias ); // PostgreSQL needs AS
1851 * Gets an array of aliased field names
1853 * @param array $fields [ [alias] => field ]
1854 * @return string[] See fieldNameWithAlias()
1856 protected function fieldNamesWithAlias( $fields ) {
1858 foreach ( $fields as $alias => $field ) {
1859 if ( is_numeric( $alias ) ) {
1862 $retval[] = $this->fieldNameWithAlias( $field, $alias );
1869 * Get the aliased table name clause for a FROM clause
1870 * which might have a JOIN and/or USE INDEX or IGNORE INDEX clause
1872 * @param array $tables ( [alias] => table )
1873 * @param array $use_index Same as for select()
1874 * @param array $ignore_index Same as for select()
1875 * @param array $join_conds Same as for select()
1878 protected function tableNamesWithIndexClauseOrJOIN(
1879 $tables, $use_index = [], $ignore_index = [], $join_conds = []
1883 $use_index = (array)$use_index;
1884 $ignore_index = (array)$ignore_index;
1885 $join_conds = (array)$join_conds;
1887 foreach ( $tables as $alias => $table ) {
1888 if ( !is_string( $alias ) ) {
1889 // No alias? Set it equal to the table name
1892 // Is there a JOIN clause for this table?
1893 if ( isset( $join_conds[$alias] ) ) {
1894 list( $joinType, $conds ) = $join_conds[$alias];
1895 $tableClause = $joinType;
1896 $tableClause .= ' ' . $this->tableNameWithAlias( $table, $alias );
1897 if ( isset( $use_index[$alias] ) ) { // has USE INDEX?
1898 $use = $this->useIndexClause( implode( ',', (array)$use_index[$alias] ) );
1900 $tableClause .= ' ' . $use;
1903 if ( isset( $ignore_index[$alias] ) ) { // has IGNORE INDEX?
1904 $ignore = $this->ignoreIndexClause(
1905 implode( ',', (array)$ignore_index[$alias] ) );
1906 if ( $ignore != '' ) {
1907 $tableClause .= ' ' . $ignore;
1910 $on = $this->makeList( (array)$conds, self
::LIST_AND
);
1912 $tableClause .= ' ON (' . $on . ')';
1915 $retJOIN[] = $tableClause;
1916 } elseif ( isset( $use_index[$alias] ) ) {
1917 // Is there an INDEX clause for this table?
1918 $tableClause = $this->tableNameWithAlias( $table, $alias );
1919 $tableClause .= ' ' . $this->useIndexClause(
1920 implode( ',', (array)$use_index[$alias] )
1923 $ret[] = $tableClause;
1924 } elseif ( isset( $ignore_index[$alias] ) ) {
1925 // Is there an INDEX clause for this table?
1926 $tableClause = $this->tableNameWithAlias( $table, $alias );
1927 $tableClause .= ' ' . $this->ignoreIndexClause(
1928 implode( ',', (array)$ignore_index[$alias] )
1931 $ret[] = $tableClause;
1933 $tableClause = $this->tableNameWithAlias( $table, $alias );
1935 $ret[] = $tableClause;
1939 // We can't separate explicit JOIN clauses with ',', use ' ' for those
1940 $implicitJoins = !empty( $ret ) ?
implode( ',', $ret ) : "";
1941 $explicitJoins = !empty( $retJOIN ) ?
implode( ' ', $retJOIN ) : "";
1943 // Compile our final table clause
1944 return implode( ' ', [ $implicitJoins, $explicitJoins ] );
1948 * Get the name of an index in a given table.
1950 * @param string $index
1953 protected function indexName( $index ) {
1957 public function addQuotes( $s ) {
1958 if ( $s instanceof Blob
) {
1961 if ( $s === null ) {
1963 } elseif ( is_bool( $s ) ) {
1966 # This will also quote numeric values. This should be harmless,
1967 # and protects against weird problems that occur when they really
1968 # _are_ strings such as article titles and string->number->string
1969 # conversion is not 1:1.
1970 return "'" . $this->strencode( $s ) . "'";
1975 * Quotes an identifier using `backticks` or "double quotes" depending on the database type.
1976 * MySQL uses `backticks` while basically everything else uses double quotes.
1977 * Since MySQL is the odd one out here the double quotes are our generic
1978 * and we implement backticks in DatabaseMysql.
1983 public function addIdentifierQuotes( $s ) {
1984 return '"' . str_replace( '"', '""', $s ) . '"';
1988 * Returns if the given identifier looks quoted or not according to
1989 * the database convention for quoting identifiers .
1991 * @note Do not use this to determine if untrusted input is safe.
1992 * A malicious user can trick this function.
1993 * @param string $name
1996 public function isQuotedIdentifier( $name ) {
1997 return $name[0] == '"' && substr( $name, -1, 1 ) == '"';
2004 protected function escapeLikeInternal( $s ) {
2005 return addcslashes( $s, '\%_' );
2008 public function buildLike() {
2009 $params = func_get_args();
2011 if ( count( $params ) > 0 && is_array( $params[0] ) ) {
2012 $params = $params[0];
2017 foreach ( $params as $value ) {
2018 if ( $value instanceof LikeMatch
) {
2019 $s .= $value->toString();
2021 $s .= $this->escapeLikeInternal( $value );
2025 return " LIKE {$this->addQuotes( $s )} ";
2028 public function anyChar() {
2029 return new LikeMatch( '_' );
2032 public function anyString() {
2033 return new LikeMatch( '%' );
2036 public function nextSequenceValue( $seqName ) {
2041 * USE INDEX clause. Unlikely to be useful for anything but MySQL. This
2042 * is only needed because a) MySQL must be as efficient as possible due to
2043 * its use on Wikipedia, and b) MySQL 4.0 is kind of dumb sometimes about
2044 * which index to pick. Anyway, other databases might have different
2045 * indexes on a given table. So don't bother overriding this unless you're
2047 * @param string $index
2050 public function useIndexClause( $index ) {
2055 * IGNORE INDEX clause. Unlikely to be useful for anything but MySQL. This
2056 * is only needed because a) MySQL must be as efficient as possible due to
2057 * its use on Wikipedia, and b) MySQL 4.0 is kind of dumb sometimes about
2058 * which index to pick. Anyway, other databases might have different
2059 * indexes on a given table. So don't bother overriding this unless you're
2061 * @param string $index
2064 public function ignoreIndexClause( $index ) {
2068 public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__
) {
2069 $quotedTable = $this->tableName( $table );
2071 if ( count( $rows ) == 0 ) {
2076 if ( !is_array( reset( $rows ) ) ) {
2080 // @FXIME: this is not atomic, but a trx would break affectedRows()
2081 foreach ( $rows as $row ) {
2082 # Delete rows which collide
2083 if ( $uniqueIndexes ) {
2084 $sql = "DELETE FROM $quotedTable WHERE ";
2086 foreach ( $uniqueIndexes as $index ) {
2093 if ( is_array( $index ) ) {
2095 foreach ( $index as $col ) {
2101 $sql .= $col . '=' . $this->addQuotes( $row[$col] );
2104 $sql .= $index . '=' . $this->addQuotes( $row[$index] );
2108 $this->query( $sql, $fname );
2111 # Now insert the row
2112 $this->insert( $table, $row, $fname );
2117 * REPLACE query wrapper for MySQL and SQLite, which have a native REPLACE
2120 * @param string $table Table name
2121 * @param array|string $rows Row(s) to insert
2122 * @param string $fname Caller function name
2124 * @return ResultWrapper
2126 protected function nativeReplace( $table, $rows, $fname ) {
2127 $table = $this->tableName( $table );
2130 if ( !is_array( reset( $rows ) ) ) {
2134 $sql = "REPLACE INTO $table (" . implode( ',', array_keys( $rows[0] ) ) . ') VALUES ';
2137 foreach ( $rows as $row ) {
2144 $sql .= '(' . $this->makeList( $row ) . ')';
2147 return $this->query( $sql, $fname );
2150 public function upsert( $table, array $rows, array $uniqueIndexes, array $set,
2153 if ( !count( $rows ) ) {
2154 return true; // nothing to do
2157 if ( !is_array( reset( $rows ) ) ) {
2161 if ( count( $uniqueIndexes ) ) {
2162 $clauses = []; // list WHERE clauses that each identify a single row
2163 foreach ( $rows as $row ) {
2164 foreach ( $uniqueIndexes as $index ) {
2165 $index = is_array( $index ) ?
$index : [ $index ]; // columns
2166 $rowKey = []; // unique key to this row
2167 foreach ( $index as $column ) {
2168 $rowKey[$column] = $row[$column];
2170 $clauses[] = $this->makeList( $rowKey, self
::LIST_AND
);
2173 $where = [ $this->makeList( $clauses, self
::LIST_OR
) ];
2178 $useTrx = !$this->mTrxLevel
;
2180 $this->begin( $fname, self
::TRANSACTION_INTERNAL
);
2183 # Update any existing conflicting row(s)
2184 if ( $where !== false ) {
2185 $ok = $this->update( $table, $set, $where, $fname );
2189 # Now insert any non-conflicting row(s)
2190 $ok = $this->insert( $table, $rows, $fname, [ 'IGNORE' ] ) && $ok;
2191 } catch ( Exception
$e ) {
2193 $this->rollback( $fname, self
::FLUSHING_INTERNAL
);
2198 $this->commit( $fname, self
::FLUSHING_INTERNAL
);
2204 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
2208 throw new DBUnexpectedError( $this, __METHOD__
. ' called with empty $conds' );
2211 $delTable = $this->tableName( $delTable );
2212 $joinTable = $this->tableName( $joinTable );
2213 $sql = "DELETE FROM $delTable WHERE $delVar IN (SELECT $joinVar FROM $joinTable ";
2214 if ( $conds != '*' ) {
2215 $sql .= 'WHERE ' . $this->makeList( $conds, self
::LIST_AND
);
2219 $this->query( $sql, $fname );
2222 public function textFieldSize( $table, $field ) {
2223 $table = $this->tableName( $table );
2224 $sql = "SHOW COLUMNS FROM $table LIKE \"$field\";";
2225 $res = $this->query( $sql, __METHOD__
);
2226 $row = $this->fetchObject( $res );
2230 if ( preg_match( '/\((.*)\)/', $row->Type
, $m ) ) {
2239 public function delete( $table, $conds, $fname = __METHOD__
) {
2241 throw new DBUnexpectedError( $this, __METHOD__
. ' called with no conditions' );
2244 $table = $this->tableName( $table );
2245 $sql = "DELETE FROM $table";
2247 if ( $conds != '*' ) {
2248 if ( is_array( $conds ) ) {
2249 $conds = $this->makeList( $conds, self
::LIST_AND
);
2251 $sql .= ' WHERE ' . $conds;
2254 return $this->query( $sql, $fname );
2257 public function insertSelect(
2258 $destTable, $srcTable, $varMap, $conds,
2259 $fname = __METHOD__
, $insertOptions = [], $selectOptions = []
2261 if ( $this->cliMode
) {
2262 // For massive migrations with downtime, we don't want to select everything
2263 // into memory and OOM, so do all this native on the server side if possible.
2264 return $this->nativeInsertSelect(
2275 // For web requests, do a locking SELECT and then INSERT. This puts the SELECT burden
2276 // on only the master (without needing row-based-replication). It also makes it easy to
2277 // know how big the INSERT is going to be.
2279 foreach ( $varMap as $dstColumn => $sourceColumnOrSql ) {
2280 $fields[] = $this->fieldNameWithAlias( $sourceColumnOrSql, $dstColumn );
2282 $selectOptions[] = 'FOR UPDATE';
2283 $res = $this->select( $srcTable, implode( ',', $fields ), $conds, $fname, $selectOptions );
2289 foreach ( $res as $row ) {
2290 $rows[] = (array)$row;
2293 return $this->insert( $destTable, $rows, $fname, $insertOptions );
2296 protected function nativeInsertSelect( $destTable, $srcTable, $varMap, $conds,
2297 $fname = __METHOD__
,
2298 $insertOptions = [], $selectOptions = []
2300 $destTable = $this->tableName( $destTable );
2302 if ( !is_array( $insertOptions ) ) {
2303 $insertOptions = [ $insertOptions ];
2306 $insertOptions = $this->makeInsertOptions( $insertOptions );
2308 if ( !is_array( $selectOptions ) ) {
2309 $selectOptions = [ $selectOptions ];
2312 list( $startOpts, $useIndex, $tailOpts, $ignoreIndex ) = $this->makeSelectOptions(
2315 if ( is_array( $srcTable ) ) {
2316 $srcTable = implode( ',', array_map( [ &$this, 'tableName' ], $srcTable ) );
2318 $srcTable = $this->tableName( $srcTable );
2321 $sql = "INSERT $insertOptions" .
2322 " INTO $destTable (" . implode( ',', array_keys( $varMap ) ) . ')' .
2323 " SELECT $startOpts " . implode( ',', $varMap ) .
2324 " FROM $srcTable $useIndex $ignoreIndex ";
2326 if ( $conds != '*' ) {
2327 if ( is_array( $conds ) ) {
2328 $conds = $this->makeList( $conds, self
::LIST_AND
);
2330 $sql .= " WHERE $conds";
2333 $sql .= " $tailOpts";
2335 return $this->query( $sql, $fname );
2339 * Construct a LIMIT query with optional offset. This is used for query
2340 * pages. The SQL should be adjusted so that only the first $limit rows
2341 * are returned. If $offset is provided as well, then the first $offset
2342 * rows should be discarded, and the next $limit rows should be returned.
2343 * If the result of the query is not ordered, then the rows to be returned
2344 * are theoretically arbitrary.
2346 * $sql is expected to be a SELECT, if that makes a difference.
2348 * The version provided by default works in MySQL and SQLite. It will very
2349 * likely need to be overridden for most other DBMSes.
2351 * @param string $sql SQL query we will append the limit too
2352 * @param int $limit The SQL limit
2353 * @param int|bool $offset The SQL offset (default false)
2354 * @throws DBUnexpectedError
2357 public function limitResult( $sql, $limit, $offset = false ) {
2358 if ( !is_numeric( $limit ) ) {
2359 throw new DBUnexpectedError( $this,
2360 "Invalid non-numeric limit passed to limitResult()\n" );
2363 return "$sql LIMIT "
2364 . ( ( is_numeric( $offset ) && $offset != 0 ) ?
"{$offset}," : "" )
2368 public function unionSupportsOrderAndLimit() {
2369 return true; // True for almost every DB supported
2372 public function unionQueries( $sqls, $all ) {
2373 $glue = $all ?
') UNION ALL (' : ') UNION (';
2375 return '(' . implode( $glue, $sqls ) . ')';
2378 public function conditional( $cond, $trueVal, $falseVal ) {
2379 if ( is_array( $cond ) ) {
2380 $cond = $this->makeList( $cond, self
::LIST_AND
);
2383 return " (CASE WHEN $cond THEN $trueVal ELSE $falseVal END) ";
2386 public function strreplace( $orig, $old, $new ) {
2387 return "REPLACE({$orig}, {$old}, {$new})";
2390 public function getServerUptime() {
2394 public function wasDeadlock() {
2398 public function wasLockTimeout() {
2402 public function wasErrorReissuable() {
2406 public function wasReadOnlyError() {
2411 * Do not use this method outside of Database/DBError classes
2413 * @param integer|string $errno
2414 * @return bool Whether the given query error was a connection drop
2416 public function wasConnectionError( $errno ) {
2420 public function deadlockLoop() {
2421 $args = func_get_args();
2422 $function = array_shift( $args );
2423 $tries = self
::DEADLOCK_TRIES
;
2425 $this->begin( __METHOD__
);
2428 /** @var Exception $e */
2432 $retVal = call_user_func_array( $function, $args );
2434 } catch ( DBQueryError
$e ) {
2435 if ( $this->wasDeadlock() ) {
2436 // Retry after a randomized delay
2437 usleep( mt_rand( self
::DEADLOCK_DELAY_MIN
, self
::DEADLOCK_DELAY_MAX
) );
2439 // Throw the error back up
2443 } while ( --$tries > 0 );
2445 if ( $tries <= 0 ) {
2446 // Too many deadlocks; give up
2447 $this->rollback( __METHOD__
);
2450 $this->commit( __METHOD__
);
2456 public function masterPosWait( DBMasterPos
$pos, $timeout ) {
2457 # Real waits are implemented in the subclass.
2461 public function getReplicaPos() {
2466 public function getMasterPos() {
2471 public function serverIsReadOnly() {
2475 final public function onTransactionResolution( callable
$callback, $fname = __METHOD__
) {
2476 if ( !$this->mTrxLevel
) {
2477 throw new DBUnexpectedError( $this, "No transaction is active." );
2479 $this->mTrxEndCallbacks
[] = [ $callback, $fname ];
2482 final public function onTransactionIdle( callable
$callback, $fname = __METHOD__
) {
2483 $this->mTrxIdleCallbacks
[] = [ $callback, $fname ];
2484 if ( !$this->mTrxLevel
) {
2485 $this->runOnTransactionIdleCallbacks( self
::TRIGGER_IDLE
);
2489 final public function onTransactionPreCommitOrIdle( callable
$callback, $fname = __METHOD__
) {
2490 if ( $this->mTrxLevel
) {
2491 $this->mTrxPreCommitCallbacks
[] = [ $callback, $fname ];
2493 // If no transaction is active, then make one for this callback
2494 $this->startAtomic( __METHOD__
);
2496 call_user_func( $callback );
2497 $this->endAtomic( __METHOD__
);
2498 } catch ( Exception
$e ) {
2499 $this->rollback( __METHOD__
, self
::FLUSHING_INTERNAL
);
2505 final public function setTransactionListener( $name, callable
$callback = null ) {
2507 $this->mTrxRecurringCallbacks
[$name] = $callback;
2509 unset( $this->mTrxRecurringCallbacks
[$name] );
2514 * Whether to disable running of post-COMMIT/ROLLBACK callbacks
2516 * This method should not be used outside of Database/LoadBalancer
2518 * @param bool $suppress
2521 final public function setTrxEndCallbackSuppression( $suppress ) {
2522 $this->mTrxEndCallbacksSuppressed
= $suppress;
2526 * Actually run and consume any "on transaction idle/resolution" callbacks.
2528 * This method should not be used outside of Database/LoadBalancer
2530 * @param integer $trigger IDatabase::TRIGGER_* constant
2534 public function runOnTransactionIdleCallbacks( $trigger ) {
2535 if ( $this->mTrxEndCallbacksSuppressed
) {
2539 $autoTrx = $this->getFlag( self
::DBO_TRX
); // automatic begin() enabled?
2540 /** @var Exception $e */
2541 $e = null; // first exception
2542 do { // callbacks may add callbacks :)
2543 $callbacks = array_merge(
2544 $this->mTrxIdleCallbacks
,
2545 $this->mTrxEndCallbacks
// include "transaction resolution" callbacks
2547 $this->mTrxIdleCallbacks
= []; // consumed (and recursion guard)
2548 $this->mTrxEndCallbacks
= []; // consumed (recursion guard)
2549 foreach ( $callbacks as $callback ) {
2551 list( $phpCallback ) = $callback;
2552 $this->clearFlag( self
::DBO_TRX
); // make each query its own transaction
2553 call_user_func_array( $phpCallback, [ $trigger ] );
2555 $this->setFlag( self
::DBO_TRX
); // restore automatic begin()
2557 $this->clearFlag( self
::DBO_TRX
); // restore auto-commit
2559 } catch ( Exception
$ex ) {
2560 call_user_func( $this->errorLogger
, $ex );
2562 // Some callbacks may use startAtomic/endAtomic, so make sure
2563 // their transactions are ended so other callbacks don't fail
2564 if ( $this->trxLevel() ) {
2565 $this->rollback( __METHOD__
, self
::FLUSHING_INTERNAL
);
2569 } while ( count( $this->mTrxIdleCallbacks
) );
2571 if ( $e instanceof Exception
) {
2572 throw $e; // re-throw any first exception
2577 * Actually run and consume any "on transaction pre-commit" callbacks.
2579 * This method should not be used outside of Database/LoadBalancer
2584 public function runOnTransactionPreCommitCallbacks() {
2585 $e = null; // first exception
2586 do { // callbacks may add callbacks :)
2587 $callbacks = $this->mTrxPreCommitCallbacks
;
2588 $this->mTrxPreCommitCallbacks
= []; // consumed (and recursion guard)
2589 foreach ( $callbacks as $callback ) {
2591 list( $phpCallback ) = $callback;
2592 call_user_func( $phpCallback );
2593 } catch ( Exception
$ex ) {
2594 call_user_func( $this->errorLogger
, $ex );
2598 } while ( count( $this->mTrxPreCommitCallbacks
) );
2600 if ( $e instanceof Exception
) {
2601 throw $e; // re-throw any first exception
2606 * Actually run any "transaction listener" callbacks.
2608 * This method should not be used outside of Database/LoadBalancer
2610 * @param integer $trigger IDatabase::TRIGGER_* constant
2614 public function runTransactionListenerCallbacks( $trigger ) {
2615 if ( $this->mTrxEndCallbacksSuppressed
) {
2619 /** @var Exception $e */
2620 $e = null; // first exception
2622 foreach ( $this->mTrxRecurringCallbacks
as $phpCallback ) {
2624 $phpCallback( $trigger, $this );
2625 } catch ( Exception
$ex ) {
2626 call_user_func( $this->errorLogger
, $ex );
2631 if ( $e instanceof Exception
) {
2632 throw $e; // re-throw any first exception
2636 final public function startAtomic( $fname = __METHOD__
) {
2637 if ( !$this->mTrxLevel
) {
2638 $this->begin( $fname, self
::TRANSACTION_INTERNAL
);
2639 // If DBO_TRX is set, a series of startAtomic/endAtomic pairs will result
2640 // in all changes being in one transaction to keep requests transactional.
2641 if ( !$this->getFlag( self
::DBO_TRX
) ) {
2642 $this->mTrxAutomaticAtomic
= true;
2646 $this->mTrxAtomicLevels
[] = $fname;
2649 final public function endAtomic( $fname = __METHOD__
) {
2650 if ( !$this->mTrxLevel
) {
2651 throw new DBUnexpectedError( $this, "No atomic transaction is open (got $fname)." );
2653 if ( !$this->mTrxAtomicLevels ||
2654 array_pop( $this->mTrxAtomicLevels
) !== $fname
2656 throw new DBUnexpectedError( $this, "Invalid atomic section ended (got $fname)." );
2659 if ( !$this->mTrxAtomicLevels
&& $this->mTrxAutomaticAtomic
) {
2660 $this->commit( $fname, self
::FLUSHING_INTERNAL
);
2664 final public function doAtomicSection( $fname, callable
$callback ) {
2665 $this->startAtomic( $fname );
2667 $res = call_user_func_array( $callback, [ $this, $fname ] );
2668 } catch ( Exception
$e ) {
2669 $this->rollback( $fname, self
::FLUSHING_INTERNAL
);
2672 $this->endAtomic( $fname );
2677 final public function begin( $fname = __METHOD__
, $mode = self
::TRANSACTION_EXPLICIT
) {
2678 // Protect against mismatched atomic section, transaction nesting, and snapshot loss
2679 if ( $this->mTrxLevel
) {
2680 if ( $this->mTrxAtomicLevels
) {
2681 $levels = implode( ', ', $this->mTrxAtomicLevels
);
2682 $msg = "$fname: Got explicit BEGIN while atomic section(s) $levels are open.";
2683 throw new DBUnexpectedError( $this, $msg );
2684 } elseif ( !$this->mTrxAutomatic
) {
2685 $msg = "$fname: Explicit transaction already active (from {$this->mTrxFname}).";
2686 throw new DBUnexpectedError( $this, $msg );
2688 // @TODO: make this an exception at some point
2689 $msg = "$fname: Implicit transaction already active (from {$this->mTrxFname}).";
2690 $this->queryLogger
->error( $msg );
2691 return; // join the main transaction set
2693 } elseif ( $this->getFlag( self
::DBO_TRX
) && $mode !== self
::TRANSACTION_INTERNAL
) {
2694 // @TODO: make this an exception at some point
2695 $msg = "$fname: Implicit transaction expected (DBO_TRX set).";
2696 $this->queryLogger
->error( $msg );
2697 return; // let any writes be in the main transaction
2700 // Avoid fatals if close() was called
2701 $this->assertOpen();
2703 $this->doBegin( $fname );
2704 $this->mTrxTimestamp
= microtime( true );
2705 $this->mTrxFname
= $fname;
2706 $this->mTrxDoneWrites
= false;
2707 $this->mTrxAutomaticAtomic
= false;
2708 $this->mTrxAtomicLevels
= [];
2709 $this->mTrxShortId
= sprintf( '%06x', mt_rand( 0, 0xffffff ) );
2710 $this->mTrxWriteDuration
= 0.0;
2711 $this->mTrxWriteQueryCount
= 0;
2712 $this->mTrxWriteAdjDuration
= 0.0;
2713 $this->mTrxWriteAdjQueryCount
= 0;
2714 $this->mTrxWriteCallers
= [];
2715 // First SELECT after BEGIN will establish the snapshot in REPEATABLE-READ.
2716 // Get an estimate of the replica DB lag before then, treating estimate staleness
2717 // as lag itself just to be safe
2718 $status = $this->getApproximateLagStatus();
2719 $this->mTrxReplicaLag
= $status['lag'] +
( microtime( true ) - $status['since'] );
2720 // T147697: make explicitTrxActive() return true until begin() finishes. This way, no
2721 // caller will think its OK to muck around with the transaction just because startAtomic()
2722 // has not yet completed (e.g. setting mTrxAtomicLevels).
2723 $this->mTrxAutomatic
= ( $mode === self
::TRANSACTION_INTERNAL
);
2727 * Issues the BEGIN command to the database server.
2729 * @see Database::begin()
2730 * @param string $fname
2732 protected function doBegin( $fname ) {
2733 $this->query( 'BEGIN', $fname );
2734 $this->mTrxLevel
= 1;
2737 final public function commit( $fname = __METHOD__
, $flush = '' ) {
2738 if ( $this->mTrxLevel
&& $this->mTrxAtomicLevels
) {
2739 // There are still atomic sections open. This cannot be ignored
2740 $levels = implode( ', ', $this->mTrxAtomicLevels
);
2741 throw new DBUnexpectedError(
2743 "$fname: Got COMMIT while atomic sections $levels are still open."
2747 if ( $flush === self
::FLUSHING_INTERNAL ||
$flush === self
::FLUSHING_ALL_PEERS
) {
2748 if ( !$this->mTrxLevel
) {
2749 return; // nothing to do
2750 } elseif ( !$this->mTrxAutomatic
) {
2751 throw new DBUnexpectedError(
2753 "$fname: Flushing an explicit transaction, getting out of sync."
2757 if ( !$this->mTrxLevel
) {
2758 $this->queryLogger
->error(
2759 "$fname: No transaction to commit, something got out of sync." );
2760 return; // nothing to do
2761 } elseif ( $this->mTrxAutomatic
) {
2762 // @TODO: make this an exception at some point
2763 $msg = "$fname: Explicit commit of implicit transaction.";
2764 $this->queryLogger
->error( $msg );
2765 return; // wait for the main transaction set commit round
2769 // Avoid fatals if close() was called
2770 $this->assertOpen();
2772 $this->runOnTransactionPreCommitCallbacks();
2773 $writeTime = $this->pendingWriteQueryDuration( self
::ESTIMATE_DB_APPLY
);
2774 $this->doCommit( $fname );
2775 if ( $this->mTrxDoneWrites
) {
2776 $this->mLastWriteTime
= microtime( true );
2777 $this->trxProfiler
->transactionWritingOut(
2778 $this->mServer
, $this->mDBname
, $this->mTrxShortId
, $writeTime );
2781 $this->runOnTransactionIdleCallbacks( self
::TRIGGER_COMMIT
);
2782 $this->runTransactionListenerCallbacks( self
::TRIGGER_COMMIT
);
2786 * Issues the COMMIT command to the database server.
2788 * @see Database::commit()
2789 * @param string $fname
2791 protected function doCommit( $fname ) {
2792 if ( $this->mTrxLevel
) {
2793 $this->query( 'COMMIT', $fname );
2794 $this->mTrxLevel
= 0;
2798 final public function rollback( $fname = __METHOD__
, $flush = '' ) {
2799 if ( $flush === self
::FLUSHING_INTERNAL ||
$flush === self
::FLUSHING_ALL_PEERS
) {
2800 if ( !$this->mTrxLevel
) {
2801 return; // nothing to do
2804 if ( !$this->mTrxLevel
) {
2805 $this->queryLogger
->error(
2806 "$fname: No transaction to rollback, something got out of sync." );
2807 return; // nothing to do
2808 } elseif ( $this->getFlag( self
::DBO_TRX
) ) {
2809 throw new DBUnexpectedError(
2811 "$fname: Expected mass rollback of all peer databases (DBO_TRX set)."
2816 // Avoid fatals if close() was called
2817 $this->assertOpen();
2819 $this->doRollback( $fname );
2820 $this->mTrxAtomicLevels
= [];
2821 if ( $this->mTrxDoneWrites
) {
2822 $this->trxProfiler
->transactionWritingOut(
2823 $this->mServer
, $this->mDBname
, $this->mTrxShortId
);
2826 $this->mTrxIdleCallbacks
= []; // clear
2827 $this->mTrxPreCommitCallbacks
= []; // clear
2828 $this->runOnTransactionIdleCallbacks( self
::TRIGGER_ROLLBACK
);
2829 $this->runTransactionListenerCallbacks( self
::TRIGGER_ROLLBACK
);
2833 * Issues the ROLLBACK command to the database server.
2835 * @see Database::rollback()
2836 * @param string $fname
2838 protected function doRollback( $fname ) {
2839 if ( $this->mTrxLevel
) {
2840 # Disconnects cause rollback anyway, so ignore those errors
2841 $ignoreErrors = true;
2842 $this->query( 'ROLLBACK', $fname, $ignoreErrors );
2843 $this->mTrxLevel
= 0;
2847 public function flushSnapshot( $fname = __METHOD__
) {
2848 if ( $this->writesOrCallbacksPending() ||
$this->explicitTrxActive() ) {
2849 // This only flushes transactions to clear snapshots, not to write data
2850 $fnames = implode( ', ', $this->pendingWriteAndCallbackCallers() );
2851 throw new DBUnexpectedError(
2853 "$fname: Cannot flush snapshot because writes are pending ($fnames)."
2857 $this->commit( $fname, self
::FLUSHING_INTERNAL
);
2860 public function explicitTrxActive() {
2861 return $this->mTrxLevel
&& ( $this->mTrxAtomicLevels ||
!$this->mTrxAutomatic
);
2864 public function duplicateTableStructure(
2865 $oldName, $newName, $temporary = false, $fname = __METHOD__
2867 throw new RuntimeException( __METHOD__
. ' is not implemented in descendant class' );
2870 public function listTables( $prefix = null, $fname = __METHOD__
) {
2871 throw new RuntimeException( __METHOD__
. ' is not implemented in descendant class' );
2874 public function listViews( $prefix = null, $fname = __METHOD__
) {
2875 throw new RuntimeException( __METHOD__
. ' is not implemented in descendant class' );
2878 public function timestamp( $ts = 0 ) {
2879 $t = new ConvertibleTimestamp( $ts );
2880 // Let errors bubble up to avoid putting garbage in the DB
2881 return $t->getTimestamp( TS_MW
);
2884 public function timestampOrNull( $ts = null ) {
2885 if ( is_null( $ts ) ) {
2888 return $this->timestamp( $ts );
2893 * Take the result from a query, and wrap it in a ResultWrapper if
2894 * necessary. Boolean values are passed through as is, to indicate success
2895 * of write queries or failure.
2897 * Once upon a time, Database::query() returned a bare MySQL result
2898 * resource, and it was necessary to call this function to convert it to
2899 * a wrapper. Nowadays, raw database objects are never exposed to external
2900 * callers, so this is unnecessary in external code.
2902 * @param bool|ResultWrapper|resource|object $result
2903 * @return bool|ResultWrapper
2905 protected function resultObject( $result ) {
2908 } elseif ( $result instanceof ResultWrapper
) {
2910 } elseif ( $result === true ) {
2911 // Successful write query
2914 return new ResultWrapper( $this, $result );
2918 public function ping( &$rtt = null ) {
2919 // Avoid hitting the server if it was hit recently
2920 if ( $this->isOpen() && ( microtime( true ) - $this->lastPing
) < self
::PING_TTL
) {
2921 if ( !func_num_args() ||
$this->mRTTEstimate
> 0 ) {
2922 $rtt = $this->mRTTEstimate
;
2923 return true; // don't care about $rtt
2927 // This will reconnect if possible or return false if not
2928 $this->clearFlag( self
::DBO_TRX
, self
::REMEMBER_PRIOR
);
2929 $ok = ( $this->query( self
::PING_QUERY
, __METHOD__
, true ) !== false );
2930 $this->restoreFlags( self
::RESTORE_PRIOR
);
2933 $rtt = $this->mRTTEstimate
;
2942 protected function reconnect() {
2943 $this->closeConnection();
2944 $this->mOpened
= false;
2945 $this->mConn
= false;
2947 $this->open( $this->mServer
, $this->mUser
, $this->mPassword
, $this->mDBname
);
2948 $this->lastPing
= microtime( true );
2950 } catch ( DBConnectionError
$e ) {
2957 public function getSessionLagStatus() {
2958 return $this->getTransactionLagStatus() ?
: $this->getApproximateLagStatus();
2962 * Get the replica DB lag when the current transaction started
2964 * This is useful when transactions might use snapshot isolation
2965 * (e.g. REPEATABLE-READ in innodb), so the "real" lag of that data
2966 * is this lag plus transaction duration. If they don't, it is still
2967 * safe to be pessimistic. This returns null if there is no transaction.
2969 * @return array|null ('lag': seconds or false on error, 'since': UNIX timestamp of BEGIN)
2972 protected function getTransactionLagStatus() {
2973 return $this->mTrxLevel
2974 ?
[ 'lag' => $this->mTrxReplicaLag
, 'since' => $this->trxTimestamp() ]
2979 * Get a replica DB lag estimate for this server
2981 * @return array ('lag': seconds or false on error, 'since': UNIX timestamp of estimate)
2984 protected function getApproximateLagStatus() {
2986 'lag' => $this->getLBInfo( 'replica' ) ?
$this->getLag() : 0,
2987 'since' => microtime( true )
2992 * Merge the result of getSessionLagStatus() for several DBs
2993 * using the most pessimistic values to estimate the lag of
2994 * any data derived from them in combination
2996 * This is information is useful for caching modules
2998 * @see WANObjectCache::set()
2999 * @see WANObjectCache::getWithSetCallback()
3001 * @param IDatabase $db1
3002 * @param IDatabase ...
3003 * @return array Map of values:
3004 * - lag: highest lag of any of the DBs or false on error (e.g. replication stopped)
3005 * - since: oldest UNIX timestamp of any of the DB lag estimates
3006 * - pending: whether any of the DBs have uncommitted changes
3009 public static function getCacheSetOptions( IDatabase
$db1 ) {
3010 $res = [ 'lag' => 0, 'since' => INF
, 'pending' => false ];
3011 foreach ( func_get_args() as $db ) {
3012 /** @var IDatabase $db */
3013 $status = $db->getSessionLagStatus();
3014 if ( $status['lag'] === false ) {
3015 $res['lag'] = false;
3016 } elseif ( $res['lag'] !== false ) {
3017 $res['lag'] = max( $res['lag'], $status['lag'] );
3019 $res['since'] = min( $res['since'], $status['since'] );
3020 $res['pending'] = $res['pending'] ?
: $db->writesPending();
3026 public function getLag() {
3030 public function maxListLen() {
3034 public function encodeBlob( $b ) {
3038 public function decodeBlob( $b ) {
3039 if ( $b instanceof Blob
) {
3045 public function setSessionOptions( array $options ) {
3048 public function sourceFile(
3050 callable
$lineCallback = null,
3051 callable
$resultCallback = null,
3053 callable
$inputCallback = null
3055 MediaWiki\
suppressWarnings();
3056 $fp = fopen( $filename, 'r' );
3057 MediaWiki\restoreWarnings
();
3059 if ( false === $fp ) {
3060 throw new RuntimeException( "Could not open \"{$filename}\".\n" );
3064 $fname = __METHOD__
. "( $filename )";
3068 $error = $this->sourceStream(
3069 $fp, $lineCallback, $resultCallback, $fname, $inputCallback );
3070 } catch ( Exception
$e ) {
3080 public function setSchemaVars( $vars ) {
3081 $this->mSchemaVars
= $vars;
3084 public function sourceStream(
3086 callable
$lineCallback = null,
3087 callable
$resultCallback = null,
3088 $fname = __METHOD__
,
3089 callable
$inputCallback = null
3093 while ( !feof( $fp ) ) {
3094 if ( $lineCallback ) {
3095 call_user_func( $lineCallback );
3098 $line = trim( fgets( $fp ) );
3100 if ( $line == '' ) {
3104 if ( '-' == $line[0] && '-' == $line[1] ) {
3112 $done = $this->streamStatementEnd( $cmd, $line );
3116 if ( $done ||
feof( $fp ) ) {
3117 $cmd = $this->replaceVars( $cmd );
3119 if ( !$inputCallback ||
call_user_func( $inputCallback, $cmd ) ) {
3120 $res = $this->query( $cmd, $fname );
3122 if ( $resultCallback ) {
3123 call_user_func( $resultCallback, $res, $this );
3126 if ( false === $res ) {
3127 $err = $this->lastError();
3129 return "Query \"{$cmd}\" failed with error code \"$err\".\n";
3140 * Called by sourceStream() to check if we've reached a statement end
3142 * @param string &$sql SQL assembled so far
3143 * @param string &$newLine New line about to be added to $sql
3144 * @return bool Whether $newLine contains end of the statement
3146 public function streamStatementEnd( &$sql, &$newLine ) {
3147 if ( $this->delimiter
) {
3149 $newLine = preg_replace(
3150 '/' . preg_quote( $this->delimiter
, '/' ) . '$/', '', $newLine );
3151 if ( $newLine != $prev ) {
3160 * Database independent variable replacement. Replaces a set of variables
3161 * in an SQL statement with their contents as given by $this->getSchemaVars().
3163 * Supports '{$var}' `{$var}` and / *$var* / (without the spaces) style variables.
3165 * - '{$var}' should be used for text and is passed through the database's
3167 * - `{$var}` should be used for identifiers (e.g. table and database names).
3168 * It is passed through the database's addIdentifierQuotes method which
3169 * can be overridden if the database uses something other than backticks.
3170 * - / *_* / or / *$wgDBprefix* / passes the name that follows through the
3171 * database's tableName method.
3172 * - / *i* / passes the name that follows through the database's indexName method.
3173 * - In all other cases, / *$var* / is left unencoded. Except for table options,
3174 * its use should be avoided. In 1.24 and older, string encoding was applied.
3176 * @param string $ins SQL statement to replace variables in
3177 * @return string The new SQL statement with variables replaced
3179 protected function replaceVars( $ins ) {
3180 $vars = $this->getSchemaVars();
3181 return preg_replace_callback(
3183 /\* (\$wgDBprefix|[_i]) \*/ (\w*) | # 1-2. tableName, indexName
3184 \'\{\$ (\w+) }\' | # 3. addQuotes
3185 `\{\$ (\w+) }` | # 4. addIdentifierQuotes
3186 /\*\$ (\w+) \*/ # 5. leave unencoded
3188 function ( $m ) use ( $vars ) {
3189 // Note: Because of <https://bugs.php.net/bug.php?id=51881>,
3190 // check for both nonexistent keys *and* the empty string.
3191 if ( isset( $m[1] ) && $m[1] !== '' ) {
3192 if ( $m[1] === 'i' ) {
3193 return $this->indexName( $m[2] );
3195 return $this->tableName( $m[2] );
3197 } elseif ( isset( $m[3] ) && $m[3] !== '' && array_key_exists( $m[3], $vars ) ) {
3198 return $this->addQuotes( $vars[$m[3]] );
3199 } elseif ( isset( $m[4] ) && $m[4] !== '' && array_key_exists( $m[4], $vars ) ) {
3200 return $this->addIdentifierQuotes( $vars[$m[4]] );
3201 } elseif ( isset( $m[5] ) && $m[5] !== '' && array_key_exists( $m[5], $vars ) ) {
3202 return $vars[$m[5]];
3212 * Get schema variables. If none have been set via setSchemaVars(), then
3213 * use some defaults from the current object.
3217 protected function getSchemaVars() {
3218 if ( $this->mSchemaVars
) {
3219 return $this->mSchemaVars
;
3221 return $this->getDefaultSchemaVars();
3226 * Get schema variables to use if none have been set via setSchemaVars().
3228 * Override this in derived classes to provide variables for tables.sql
3229 * and SQL patch files.
3233 protected function getDefaultSchemaVars() {
3237 public function lockIsFree( $lockName, $method ) {
3241 public function lock( $lockName, $method, $timeout = 5 ) {
3242 $this->mNamedLocksHeld
[$lockName] = 1;
3247 public function unlock( $lockName, $method ) {
3248 unset( $this->mNamedLocksHeld
[$lockName] );
3253 public function getScopedLockAndFlush( $lockKey, $fname, $timeout ) {
3254 if ( $this->writesOrCallbacksPending() ) {
3255 // This only flushes transactions to clear snapshots, not to write data
3256 $fnames = implode( ', ', $this->pendingWriteAndCallbackCallers() );
3257 throw new DBUnexpectedError(
3259 "$fname: Cannot flush pre-lock snapshot because writes are pending ($fnames)."
3263 if ( !$this->lock( $lockKey, $fname, $timeout ) ) {
3267 $unlocker = new ScopedCallback( function () use ( $lockKey, $fname ) {
3268 if ( $this->trxLevel() ) {
3269 // There is a good chance an exception was thrown, causing any early return
3270 // from the caller. Let any error handler get a chance to issue rollback().
3271 // If there isn't one, let the error bubble up and trigger server-side rollback.
3272 $this->onTransactionResolution(
3273 function () use ( $lockKey, $fname ) {
3274 $this->unlock( $lockKey, $fname );
3279 $this->unlock( $lockKey, $fname );
3283 $this->commit( $fname, self
::FLUSHING_INTERNAL
);
3288 public function namedLocksEnqueue() {
3293 * Lock specific tables
3295 * @param array $read Array of tables to lock for read access
3296 * @param array $write Array of tables to lock for write access
3297 * @param string $method Name of caller
3298 * @param bool $lowPriority Whether to indicate writes to be LOW PRIORITY
3301 public function lockTables( $read, $write, $method, $lowPriority = true ) {
3306 * Unlock specific tables
3308 * @param string $method The caller
3311 public function unlockTables( $method ) {
3317 * @param string $tableName
3318 * @param string $fName
3319 * @return bool|ResultWrapper
3322 public function dropTable( $tableName, $fName = __METHOD__
) {
3323 if ( !$this->tableExists( $tableName, $fName ) ) {
3326 $sql = "DROP TABLE " . $this->tableName( $tableName ) . " CASCADE";
3328 return $this->query( $sql, $fName );
3331 public function getInfinity() {
3335 public function encodeExpiry( $expiry ) {
3336 return ( $expiry == '' ||
$expiry == 'infinity' ||
$expiry == $this->getInfinity() )
3337 ?
$this->getInfinity()
3338 : $this->timestamp( $expiry );
3341 public function decodeExpiry( $expiry, $format = TS_MW
) {
3342 if ( $expiry == '' ||
$expiry == 'infinity' ||
$expiry == $this->getInfinity() ) {
3346 return ConvertibleTimestamp
::convert( $format, $expiry );
3349 public function setBigSelects( $value = true ) {
3353 public function isReadOnly() {
3354 return ( $this->getReadOnlyReason() !== false );
3358 * @return string|bool Reason this DB is read-only or false if it is not
3360 protected function getReadOnlyReason() {
3361 $reason = $this->getLBInfo( 'readOnlyReason' );
3363 return is_string( $reason ) ?
$reason : false;
3366 public function setTableAliases( array $aliases ) {
3367 $this->tableAliases
= $aliases;
3371 * @return bool Whether a DB user is required to access the DB
3374 protected function requiresDatabaseUser() {
3379 * Get the underlying binding handle, mConn
3381 * Makes sure that mConn is set (disconnects and ping() failure can unset it).
3382 * This catches broken callers than catch and ignore disconnection exceptions.
3383 * Unlike checking isOpen(), this is safe to call inside of open().
3385 * @return resource|object
3386 * @throws DBUnexpectedError
3389 protected function getBindingHandle() {
3390 if ( !$this->mConn
) {
3391 throw new DBUnexpectedError(
3393 'DB connection was already closed or the connection dropped.'
3397 return $this->mConn
;
3404 public function __toString() {
3405 return (string)$this->mConn
;
3409 * Make sure that copies do not share the same client binding handle
3410 * @throws DBConnectionError
3412 public function __clone() {
3413 $this->connLogger
->warning(
3414 "Cloning " . get_class( $this ) . " is not recomended; forking connection:\n" .
3415 ( new RuntimeException() )->getTraceAsString()
3418 if ( $this->isOpen() ) {
3419 // Open a new connection resource without messing with the old one
3420 $this->mOpened
= false;
3421 $this->mConn
= false;
3422 $this->mTrxEndCallbacks
= []; // don't copy
3423 $this->handleSessionLoss(); // no trx or locks anymore
3424 $this->open( $this->mServer
, $this->mUser
, $this->mPassword
, $this->mDBname
);
3425 $this->lastPing
= microtime( true );
3430 * Called by serialize. Throw an exception when DB connection is serialized.
3431 * This causes problems on some database engines because the connection is
3432 * not restored on unserialize.
3434 public function __sleep() {
3435 throw new RuntimeException( 'Database serialization may cause problems, since ' .
3436 'the connection is not restored on wakeup.' );
3440 * Run a few simple sanity checks and close dangling connections
3442 public function __destruct() {
3443 if ( $this->mTrxLevel
&& $this->mTrxDoneWrites
) {
3444 trigger_error( "Uncommitted DB writes (transaction from {$this->mTrxFname})." );
3447 $danglingWriters = $this->pendingWriteAndCallbackCallers();
3448 if ( $danglingWriters ) {
3449 $fnames = implode( ', ', $danglingWriters );
3450 trigger_error( "DB transaction writes or callbacks still pending ($fnames)." );
3453 if ( $this->mConn
) {
3454 // Avoid connection leaks for sanity. Normally, resources close at script completion.
3455 // The connection might already be closed in zend/hhvm by now, so suppress warnings.
3456 \MediaWiki\
suppressWarnings();
3457 $this->closeConnection();
3458 \MediaWiki\restoreWarnings
();
3459 $this->mConn
= false;
3460 $this->mOpened
= false;
3465 class_alias( 'Database', 'DatabaseBase' );