4 * @defgroup Database Database
6 * This file deals with database interface functions
7 * and query specifics/optimisations.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
29 * Database abstraction object
32 abstract class DatabaseBase
implements IDatabase
{
33 /** Number of times to re-try an operation in case of deadlock */
34 const DEADLOCK_TRIES
= 4;
35 /** Minimum time to wait before retry, in microseconds */
36 const DEADLOCK_DELAY_MIN
= 500000;
37 /** Maximum time to wait before retry */
38 const DEADLOCK_DELAY_MAX
= 1500000;
40 /** How long before it is worth doing a dummy query to test the connection */
43 /** @var string SQL query */
44 protected $mLastQuery = '';
46 protected $mDoneWrites = false;
47 /** @var string|bool */
48 protected $mPHPError = false;
58 /** @var BagOStuff APC cache */
61 /** @var resource Database connection */
62 protected $mConn = null;
64 protected $mOpened = false;
66 /** @var array[] List of (callable, method name) */
67 protected $mTrxIdleCallbacks = [];
68 /** @var array[] List of (callable, method name) */
69 protected $mTrxPreCommitCallbacks = [];
70 /** @var array[] List of (callable, method name) */
71 protected $mTrxEndCallbacks = [];
72 /** @var bool Whether to suppress triggering of post-commit callbacks */
73 protected $suppressPostCommitCallbacks = false;
76 protected $mTablePrefix;
84 protected $mLBInfo = [];
86 protected $mDefaultBigSelects = null;
87 /** @var array|bool */
88 protected $mSchemaVars = false;
90 protected $mSessionVars = [];
91 /** @var array|null */
92 protected $preparedArgs;
93 /** @var string|bool|null Stashed value of html_errors INI setting */
94 protected $htmlErrors;
96 protected $delimiter = ';';
99 * Either 1 if a transaction is active or 0 otherwise.
100 * The other Trx fields may not be meaningfull if this is 0.
104 protected $mTrxLevel = 0;
107 * Either a short hexidecimal string if a transaction is active or ""
110 * @see DatabaseBase::mTrxLevel
112 protected $mTrxShortId = '';
115 * The UNIX time that the transaction started. Callers can assume that if
116 * snapshot isolation is used, then the data is *at least* up to date to that
117 * point (possibly more up-to-date since the first SELECT defines the snapshot).
120 * @see DatabaseBase::mTrxLevel
122 private $mTrxTimestamp = null;
124 /** @var float Lag estimate at the time of BEGIN */
125 private $mTrxSlaveLag = null;
128 * Remembers the function name given for starting the most recent transaction via begin().
129 * Used to provide additional context for error reporting.
132 * @see DatabaseBase::mTrxLevel
134 private $mTrxFname = null;
137 * Record if possible write queries were done in the last transaction started
140 * @see DatabaseBase::mTrxLevel
142 private $mTrxDoneWrites = false;
145 * Record if the current transaction was started implicitly due to DBO_TRX being set.
148 * @see DatabaseBase::mTrxLevel
150 private $mTrxAutomatic = false;
153 * Array of levels of atomicity within transactions
157 private $mTrxAtomicLevels = [];
160 * Record if the current transaction was started implicitly by DatabaseBase::startAtomic
164 private $mTrxAutomaticAtomic = false;
167 * Track the write query callers of the current transaction
171 private $mTrxWriteCallers = [];
174 * Track the seconds spent in write queries for the current transaction
178 private $mTrxWriteDuration = 0.0;
180 /** @var array Map of (name => 1) for locks obtained via lock() */
181 private $mNamedLocksHeld = [];
183 /** @var IDatabase|null Lazy handle to the master DB this server replicates from */
184 private $lazyMasterHandle;
188 * @var resource File handle for upgrade
190 protected $fileHandle = null;
194 * @var string[] Process cache of VIEWs names in the database
196 protected $allViews = null;
198 /** @var float UNIX timestamp */
199 protected $lastPing = 0.0;
201 /** @var TransactionProfiler */
202 protected $trxProfiler;
204 public function getServerInfo() {
205 return $this->getServerVersion();
209 * @return string Command delimiter used by this database engine
211 public function getDelimiter() {
212 return $this->delimiter
;
216 * Boolean, controls output of large amounts of debug information.
217 * @param bool|null $debug
218 * - true to enable debugging
219 * - false to disable debugging
220 * - omitted or null to do nothing
222 * @return bool|null Previous value of the flag
224 public function debug( $debug = null ) {
225 return wfSetBit( $this->mFlags
, DBO_DEBUG
, $debug );
228 public function bufferResults( $buffer = null ) {
229 if ( is_null( $buffer ) ) {
230 return !(bool)( $this->mFlags
& DBO_NOBUFFER
);
232 return !wfSetBit( $this->mFlags
, DBO_NOBUFFER
, !$buffer );
237 * Turns on (false) or off (true) the automatic generation and sending
238 * of a "we're sorry, but there has been a database error" page on
239 * database errors. Default is on (false). When turned off, the
240 * code should use lastErrno() and lastError() to handle the
241 * situation as appropriate.
243 * Do not use this function outside of the Database classes.
245 * @param null|bool $ignoreErrors
246 * @return bool The previous value of the flag.
248 protected function ignoreErrors( $ignoreErrors = null ) {
249 return wfSetBit( $this->mFlags
, DBO_IGNORE
, $ignoreErrors );
252 public function trxLevel() {
253 return $this->mTrxLevel
;
256 public function trxTimestamp() {
257 return $this->mTrxLevel ?
$this->mTrxTimestamp
: null;
260 public function tablePrefix( $prefix = null ) {
261 return wfSetVar( $this->mTablePrefix
, $prefix );
264 public function dbSchema( $schema = null ) {
265 return wfSetVar( $this->mSchema
, $schema );
269 * Set the filehandle to copy write statements to.
271 * @param resource $fh File handle
273 public function setFileHandle( $fh ) {
274 $this->fileHandle
= $fh;
277 public function getLBInfo( $name = null ) {
278 if ( is_null( $name ) ) {
279 return $this->mLBInfo
;
281 if ( array_key_exists( $name, $this->mLBInfo
) ) {
282 return $this->mLBInfo
[$name];
289 public function setLBInfo( $name, $value = null ) {
290 if ( is_null( $value ) ) {
291 $this->mLBInfo
= $name;
293 $this->mLBInfo
[$name] = $value;
298 * Set a lazy-connecting DB handle to the master DB (for replication status purposes)
300 * @param IDatabase $conn
303 public function setLazyMasterHandle( IDatabase
$conn ) {
304 $this->lazyMasterHandle
= $conn;
308 * @return IDatabase|null
309 * @see setLazyMasterHandle()
312 public function getLazyMasterHandle() {
313 return $this->lazyMasterHandle
;
317 * @return TransactionProfiler
319 protected function getTransactionProfiler() {
320 if ( !$this->trxProfiler
) {
321 $this->trxProfiler
= new TransactionProfiler();
324 return $this->trxProfiler
;
328 * @param TransactionProfiler $profiler
331 public function setTransactionProfiler( TransactionProfiler
$profiler ) {
332 $this->trxProfiler
= $profiler;
336 * Returns true if this database supports (and uses) cascading deletes
340 public function cascadingDeletes() {
345 * Returns true if this database supports (and uses) triggers (e.g. on the page table)
349 public function cleanupTriggers() {
354 * Returns true if this database is strict about what can be put into an IP field.
355 * Specifically, it uses a NULL value instead of an empty string.
359 public function strictIPs() {
364 * Returns true if this database uses timestamps rather than integers
368 public function realTimestamps() {
372 public function implicitGroupby() {
376 public function implicitOrderby() {
381 * Returns true if this database can do a native search on IP columns
382 * e.g. this works as expected: .. WHERE rc_ip = '127.42.12.102/32';
386 public function searchableIPs() {
391 * Returns true if this database can use functional indexes
395 public function functionalIndexes() {
399 public function lastQuery() {
400 return $this->mLastQuery
;
403 public function doneWrites() {
404 return (bool)$this->mDoneWrites
;
407 public function lastDoneWrites() {
408 return $this->mDoneWrites ?
: false;
411 public function writesPending() {
412 return $this->mTrxLevel
&& $this->mTrxDoneWrites
;
415 public function writesOrCallbacksPending() {
416 return $this->mTrxLevel
&& (
417 $this->mTrxDoneWrites ||
$this->mTrxIdleCallbacks ||
$this->mTrxPreCommitCallbacks
421 public function pendingWriteQueryDuration() {
422 return $this->mTrxLevel ?
$this->mTrxWriteDuration
: false;
425 public function pendingWriteCallers() {
426 return $this->mTrxLevel ?
$this->mTrxWriteCallers
: [];
429 public function isOpen() {
430 return $this->mOpened
;
433 public function setFlag( $flag ) {
434 $this->mFlags |
= $flag;
437 public function clearFlag( $flag ) {
438 $this->mFlags
&= ~
$flag;
441 public function getFlag( $flag ) {
442 return !!( $this->mFlags
& $flag );
445 public function getProperty( $name ) {
449 public function getWikiID() {
450 if ( $this->mTablePrefix
) {
451 return "{$this->mDBname}-{$this->mTablePrefix}";
453 return $this->mDBname
;
458 * Return a path to the DBMS-specific SQL file if it exists,
459 * otherwise default SQL file
461 * @param string $filename
464 private function getSqlFilePath( $filename ) {
466 $dbmsSpecificFilePath = "$IP/maintenance/" . $this->getType() . "/$filename";
467 if ( file_exists( $dbmsSpecificFilePath ) ) {
468 return $dbmsSpecificFilePath;
470 return "$IP/maintenance/$filename";
475 * Return a path to the DBMS-specific schema file,
476 * otherwise default to tables.sql
480 public function getSchemaPath() {
481 return $this->getSqlFilePath( 'tables.sql' );
485 * Return a path to the DBMS-specific update key file,
486 * otherwise default to update-keys.sql
490 public function getUpdateKeysPath() {
491 return $this->getSqlFilePath( 'update-keys.sql' );
495 * Get information about an index into an object
496 * @param string $table Table name
497 * @param string $index Index name
498 * @param string $fname Calling function name
499 * @return mixed Database-specific index description class or false if the index does not exist
501 abstract function indexInfo( $table, $index, $fname = __METHOD__
);
504 * Wrapper for addslashes()
506 * @param string $s String to be slashed.
507 * @return string Slashed string.
509 abstract function strencode( $s );
514 * FIXME: It is possible to construct a Database object with no associated
515 * connection object, by specifying no parameters to __construct(). This
516 * feature is deprecated and should be removed.
518 * DatabaseBase subclasses should not be constructed directly in external
519 * code. DatabaseBase::factory() should be used instead.
521 * @param array $params Parameters passed from DatabaseBase::factory()
523 function __construct( array $params ) {
524 global $wgDBprefix, $wgDBmwschema, $wgCommandLineMode;
526 $this->srvCache
= ObjectCache
::getLocalServerInstance( 'hash' );
528 $server = $params['host'];
529 $user = $params['user'];
530 $password = $params['password'];
531 $dbName = $params['dbname'];
532 $flags = $params['flags'];
533 $tablePrefix = $params['tablePrefix'];
534 $schema = $params['schema'];
535 $foreign = $params['foreign'];
537 $this->mFlags
= $flags;
538 if ( $this->mFlags
& DBO_DEFAULT
) {
539 if ( $wgCommandLineMode ) {
540 $this->mFlags
&= ~DBO_TRX
;
542 $this->mFlags |
= DBO_TRX
;
546 $this->mSessionVars
= $params['variables'];
548 /** Get the default table prefix*/
549 if ( $tablePrefix === 'get from global' ) {
550 $this->mTablePrefix
= $wgDBprefix;
552 $this->mTablePrefix
= $tablePrefix;
555 /** Get the database schema*/
556 if ( $schema === 'get from global' ) {
557 $this->mSchema
= $wgDBmwschema;
559 $this->mSchema
= $schema;
562 $this->mForeign
= $foreign;
564 if ( isset( $params['trxProfiler'] ) ) {
565 $this->trxProfiler
= $params['trxProfiler']; // override
569 $this->open( $server, $user, $password, $dbName );
574 * Called by serialize. Throw an exception when DB connection is serialized.
575 * This causes problems on some database engines because the connection is
576 * not restored on unserialize.
578 public function __sleep() {
579 throw new MWException( 'Database serialization may cause problems, since ' .
580 'the connection is not restored on wakeup.' );
584 * Given a DB type, construct the name of the appropriate child class of
585 * DatabaseBase. This is designed to replace all of the manual stuff like:
586 * $class = 'Database' . ucfirst( strtolower( $dbType ) );
587 * as well as validate against the canonical list of DB types we have
589 * This factory function is mostly useful for when you need to connect to a
590 * database other than the MediaWiki default (such as for external auth,
591 * an extension, et cetera). Do not use this to connect to the MediaWiki
592 * database. Example uses in core:
593 * @see LoadBalancer::reallyOpenConnection()
594 * @see ForeignDBRepo::getMasterDB()
595 * @see WebInstallerDBConnect::execute()
599 * @param string $dbType A possible DB type
600 * @param array $p An array of options to pass to the constructor.
601 * Valid options are: host, user, password, dbname, flags, tablePrefix, schema, driver
602 * @throws MWException If the database driver or extension cannot be found
603 * @return DatabaseBase|null DatabaseBase subclass or null
605 final public static function factory( $dbType, $p = [] ) {
606 $canonicalDBTypes = [
607 'mysql' => [ 'mysqli', 'mysql' ],
615 $dbType = strtolower( $dbType );
616 if ( isset( $canonicalDBTypes[$dbType] ) && $canonicalDBTypes[$dbType] ) {
617 $possibleDrivers = $canonicalDBTypes[$dbType];
618 if ( !empty( $p['driver'] ) ) {
619 if ( in_array( $p['driver'], $possibleDrivers ) ) {
620 $driver = $p['driver'];
622 throw new MWException( __METHOD__
.
623 " cannot construct Database with type '$dbType' and driver '{$p['driver']}'" );
626 foreach ( $possibleDrivers as $posDriver ) {
627 if ( extension_loaded( $posDriver ) ) {
628 $driver = $posDriver;
636 if ( $driver === false ) {
637 throw new MWException( __METHOD__
.
638 " no viable database extension found for type '$dbType'" );
641 // Determine schema defaults. Currently Microsoft SQL Server uses $wgDBmwschema,
642 // and everything else doesn't use a schema (e.g. null)
643 // Although postgres and oracle support schemas, we don't use them (yet)
644 // to maintain backwards compatibility
646 'mssql' => 'get from global',
649 $class = 'Database' . ucfirst( $driver );
650 if ( class_exists( $class ) && is_subclass_of( $class, 'DatabaseBase' ) ) {
651 // Resolve some defaults for b/c
652 $p['host'] = isset( $p['host'] ) ?
$p['host'] : false;
653 $p['user'] = isset( $p['user'] ) ?
$p['user'] : false;
654 $p['password'] = isset( $p['password'] ) ?
$p['password'] : false;
655 $p['dbname'] = isset( $p['dbname'] ) ?
$p['dbname'] : false;
656 $p['flags'] = isset( $p['flags'] ) ?
$p['flags'] : 0;
657 $p['variables'] = isset( $p['variables'] ) ?
$p['variables'] : [];
658 $p['tablePrefix'] = isset( $p['tablePrefix'] ) ?
$p['tablePrefix'] : 'get from global';
659 if ( !isset( $p['schema'] ) ) {
660 $p['schema'] = isset( $defaultSchemas[$dbType] ) ?
$defaultSchemas[$dbType] : null;
662 $p['foreign'] = isset( $p['foreign'] ) ?
$p['foreign'] : false;
664 return new $class( $p );
670 protected function installErrorHandler() {
671 $this->mPHPError
= false;
672 $this->htmlErrors
= ini_set( 'html_errors', '0' );
673 set_error_handler( [ $this, 'connectionErrorHandler' ] );
677 * @return bool|string
679 protected function restoreErrorHandler() {
680 restore_error_handler();
681 if ( $this->htmlErrors
!== false ) {
682 ini_set( 'html_errors', $this->htmlErrors
);
684 if ( $this->mPHPError
) {
685 $error = preg_replace( '!\[<a.*</a>\]!', '', $this->mPHPError
);
686 $error = preg_replace( '!^.*?:\s?(.*)$!', '$1', $error );
696 * @param string $errstr
698 public function connectionErrorHandler( $errno, $errstr ) {
699 $this->mPHPError
= $errstr;
703 * Create a log context to pass to wfLogDBError or other logging functions.
705 * @param array $extras Additional data to add to context
708 protected function getLogContext( array $extras = [] ) {
711 'db_server' => $this->mServer
,
712 'db_name' => $this->mDBname
,
713 'db_user' => $this->mUser
,
719 public function close() {
720 if ( $this->mConn
) {
721 if ( $this->trxLevel() ) {
722 if ( !$this->mTrxAutomatic
) {
723 wfWarn( "Transaction still in progress (from {$this->mTrxFname}), " .
724 " performing implicit commit before closing connection!" );
727 $this->commit( __METHOD__
, self
::FLUSHING_INTERNAL
);
730 $closed = $this->closeConnection();
731 $this->mConn
= false;
732 } elseif ( $this->mTrxIdleCallbacks ||
$this->mTrxEndCallbacks
) { // sanity
733 throw new MWException( "Transaction callbacks still pending." );
737 $this->mOpened
= false;
743 * Make sure isOpen() returns true as a sanity check
745 * @throws DBUnexpectedError
747 protected function assertOpen() {
748 if ( !$this->isOpen() ) {
749 throw new DBUnexpectedError( $this, "DB connection was already closed." );
754 * Closes underlying database connection
756 * @return bool Whether connection was closed successfully
758 abstract protected function closeConnection();
760 function reportConnectionError( $error = 'Unknown error' ) {
761 $myError = $this->lastError();
767 throw new DBConnectionError( $this, $error );
771 * The DBMS-dependent part of query()
773 * @param string $sql SQL query.
774 * @return ResultWrapper|bool Result object to feed to fetchObject,
775 * fetchRow, ...; or false on failure
777 abstract protected function doQuery( $sql );
780 * Determine whether a query writes to the DB.
781 * Should return true if unsure.
786 protected function isWriteQuery( $sql ) {
787 return !preg_match( '/^(?:SELECT|BEGIN|ROLLBACK|COMMIT|SET|SHOW|EXPLAIN|\(SELECT)\b/i', $sql );
791 * Determine whether a SQL statement is sensitive to isolation level.
792 * A SQL statement is considered transactable if its result could vary
793 * depending on the transaction isolation level. Operational commands
794 * such as 'SET' and 'SHOW' are not considered to be transactable.
799 protected function isTransactableQuery( $sql ) {
800 $verb = substr( $sql, 0, strcspn( $sql, " \t\r\n" ) );
801 return !in_array( $verb, [ 'BEGIN', 'COMMIT', 'ROLLBACK', 'SHOW', 'SET' ] );
804 public function query( $sql, $fname = __METHOD__
, $tempIgnore = false ) {
807 $priorWritesPending = $this->writesOrCallbacksPending();
808 $this->mLastQuery
= $sql;
810 $isWrite = $this->isWriteQuery( $sql );
812 $reason = $this->getReadOnlyReason();
813 if ( $reason !== false ) {
814 throw new DBReadOnlyError( $this, "Database is read-only: $reason" );
816 # Set a flag indicating that writes have been done
817 $this->mDoneWrites
= microtime( true );
820 # Add a comment for easy SHOW PROCESSLIST interpretation
821 if ( is_object( $wgUser ) && $wgUser->isItemLoaded( 'name' ) ) {
822 $userName = $wgUser->getName();
823 if ( mb_strlen( $userName ) > 15 ) {
824 $userName = mb_substr( $userName, 0, 15 ) . '...';
826 $userName = str_replace( '/', '', $userName );
831 // Add trace comment to the begin of the sql string, right after the operator.
832 // Or, for one-word queries (like "BEGIN" or COMMIT") add it to the end (bug 42598)
833 $commentedSql = preg_replace( '/\s|$/', " /* $fname $userName */ ", $sql, 1 );
835 # Start implicit transactions that wrap the request if DBO_TRX is enabled
836 if ( !$this->mTrxLevel
&& $this->getFlag( DBO_TRX
)
837 && $this->isTransactableQuery( $sql )
839 $this->begin( __METHOD__
. " ($fname)", self
::TRANSACTION_INTERNAL
);
840 $this->mTrxAutomatic
= true;
843 # Keep track of whether the transaction has write queries pending
844 if ( $this->mTrxLevel
&& !$this->mTrxDoneWrites
&& $isWrite ) {
845 $this->mTrxDoneWrites
= true;
846 $this->getTransactionProfiler()->transactionWritingIn(
847 $this->mServer
, $this->mDBname
, $this->mTrxShortId
);
850 if ( $this->debug() ) {
851 wfDebugLog( 'queries', sprintf( "%s: %s", $this->mDBname
, $commentedSql ) );
854 # Avoid fatals if close() was called
857 # Send the query to the server
858 $ret = $this->doProfiledQuery( $sql, $commentedSql, $isWrite, $fname );
860 # Try reconnecting if the connection was lost
861 if ( false === $ret && $this->wasErrorReissuable() ) {
862 $recoverable = $this->canRecoverFromDisconnect( $sql, $priorWritesPending );
863 # Stash the last error values before anything might clear them
864 $lastError = $this->lastError();
865 $lastErrno = $this->lastErrno();
866 # Update state tracking to reflect transaction loss due to disconnection
867 $this->handleTransactionLoss();
868 wfDebug( "Connection lost, reconnecting...\n" );
869 if ( $this->reconnect() ) {
870 wfDebug( "Reconnected\n" );
871 $msg = __METHOD__
. ": lost connection to {$this->getServer()}; reconnected";
872 wfDebugLog( 'DBPerformance', "$msg:\n" . wfBacktrace( true ) );
874 if ( !$recoverable ) {
875 # Callers may catch the exception and continue to use the DB
876 $this->reportQueryError( $lastError, $lastErrno, $sql, $fname );
878 # Should be safe to silently retry the query
879 $ret = $this->doProfiledQuery( $sql, $commentedSql, $isWrite, $fname );
882 wfDebug( "Failed\n" );
886 if ( false === $ret ) {
887 # Deadlocks cause the entire transaction to abort, not just the statement.
888 # http://dev.mysql.com/doc/refman/5.7/en/innodb-error-handling.html
889 # https://www.postgresql.org/docs/9.1/static/explicit-locking.html
890 if ( $this->wasDeadlock() ) {
891 if ( $this->explicitTrxActive() ||
$priorWritesPending ) {
892 $tempIgnore = false; // not recoverable
894 # Update state tracking to reflect transaction loss
895 $this->handleTransactionLoss();
898 $this->reportQueryError(
899 $this->lastError(), $this->lastErrno(), $sql, $fname, $tempIgnore );
902 $res = $this->resultObject( $ret );
907 private function doProfiledQuery( $sql, $commentedSql, $isWrite, $fname ) {
908 $isMaster = !is_null( $this->getLBInfo( 'master' ) );
909 # generalizeSQL() will probably cut down the query to reasonable
910 # logging size most of the time. The substr is really just a sanity check.
912 $queryProf = 'query-m: ' . substr( DatabaseBase
::generalizeSQL( $sql ), 0, 255 );
914 $queryProf = 'query: ' . substr( DatabaseBase
::generalizeSQL( $sql ), 0, 255 );
917 # Include query transaction state
918 $queryProf .= $this->mTrxShortId ?
" [TRX#{$this->mTrxShortId}]" : "";
920 $profiler = Profiler
::instance();
921 if ( !( $profiler instanceof ProfilerStub
) ) {
922 $queryProfSection = $profiler->scopedProfileIn( $queryProf );
925 $startTime = microtime( true );
926 $ret = $this->doQuery( $commentedSql );
927 $queryRuntime = microtime( true ) - $startTime;
929 unset( $queryProfSection ); // profile out (if set)
931 if ( $ret !== false ) {
932 $this->lastPing
= $startTime;
933 if ( $isWrite && $this->mTrxLevel
) {
934 $this->mTrxWriteDuration +
= $queryRuntime;
935 $this->mTrxWriteCallers
[] = $fname;
939 $this->getTransactionProfiler()->recordQueryCompletion(
940 $queryProf, $startTime, $isWrite, $this->affectedRows()
942 MWDebug
::query( $sql, $fname, $isMaster, $queryRuntime );
947 private function canRecoverFromDisconnect( $sql, $priorWritesPending ) {
948 # Transaction dropped; this can mean lost writes, or REPEATABLE-READ snapshots.
949 # Dropped connections also mean that named locks are automatically released.
950 # Only allow error suppression in autocommit mode or when the lost transaction
951 # didn't matter anyway (aside from DBO_TRX snapshot loss).
952 if ( $this->mNamedLocksHeld
) {
953 return false; // possible critical section violation
954 } elseif ( $sql === 'COMMIT' ) {
955 return !$priorWritesPending; // nothing written anyway? (T127428)
956 } elseif ( $sql === 'ROLLBACK' ) {
957 return true; // transaction lost...which is also what was requested :)
958 } elseif ( $this->explicitTrxActive() ) {
959 return false; // don't drop atomocity
960 } elseif ( $priorWritesPending ) {
961 return false; // prior writes lost from implicit transaction
967 private function handleTransactionLoss() {
968 $this->mTrxLevel
= 0;
969 $this->mTrxIdleCallbacks
= []; // bug 65263
970 $this->mTrxPreCommitCallbacks
= []; // bug 65263
972 // Handle callbacks in mTrxEndCallbacks
973 $this->runOnTransactionIdleCallbacks( self
::TRIGGER_ROLLBACK
);
975 } catch ( Exception
$e ) {
976 // Already logged; move on...
981 public function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false ) {
982 if ( $this->ignoreErrors() ||
$tempIgnore ) {
983 wfDebug( "SQL ERROR (ignored): $error\n" );
985 $sql1line = mb_substr( str_replace( "\n", "\\n", $sql ), 0, 5 * 1024 );
987 "{fname}\t{db_server}\t{errno}\t{error}\t{sql1line}",
988 $this->getLogContext( [
989 'method' => __METHOD__
,
992 'sql1line' => $sql1line,
996 wfDebug( "SQL ERROR: " . $error . "\n" );
997 throw new DBQueryError( $this, $error, $errno, $sql, $fname );
1002 * Intended to be compatible with the PEAR::DB wrapper functions.
1003 * http://pear.php.net/manual/en/package.database.db.intro-execute.php
1005 * ? = scalar value, quoted as necessary
1006 * ! = raw SQL bit (a function for instance)
1007 * & = filename; reads the file and inserts as a blob
1008 * (we don't use this though...)
1010 * @param string $sql
1011 * @param string $func
1015 protected function prepare( $sql, $func = 'DatabaseBase::prepare' ) {
1016 /* MySQL doesn't support prepared statements (yet), so just
1017 * pack up the query for reference. We'll manually replace
1020 return [ 'query' => $sql, 'func' => $func ];
1024 * Free a prepared query, generated by prepare().
1025 * @param string $prepared
1027 protected function freePrepared( $prepared ) {
1028 /* No-op by default */
1032 * Execute a prepared query with the various arguments
1033 * @param string $prepared The prepared sql
1034 * @param mixed $args Either an array here, or put scalars as varargs
1036 * @return ResultWrapper
1038 public function execute( $prepared, $args = null ) {
1039 if ( !is_array( $args ) ) {
1041 $args = func_get_args();
1042 array_shift( $args );
1045 $sql = $this->fillPrepared( $prepared['query'], $args );
1047 return $this->query( $sql, $prepared['func'] );
1051 * For faking prepared SQL statements on DBs that don't support it directly.
1053 * @param string $preparedQuery A 'preparable' SQL statement
1054 * @param array $args Array of Arguments to fill it with
1055 * @return string Executable SQL
1057 public function fillPrepared( $preparedQuery, $args ) {
1059 $this->preparedArgs
=& $args;
1061 return preg_replace_callback( '/(\\\\[?!&]|[?!&])/',
1062 [ &$this, 'fillPreparedArg' ], $preparedQuery );
1066 * preg_callback func for fillPrepared()
1067 * The arguments should be in $this->preparedArgs and must not be touched
1068 * while we're doing this.
1070 * @param array $matches
1071 * @throws DBUnexpectedError
1074 protected function fillPreparedArg( $matches ) {
1075 switch ( $matches[1] ) {
1084 list( /* $n */, $arg ) = each( $this->preparedArgs
);
1086 switch ( $matches[1] ) {
1088 return $this->addQuotes( $arg );
1092 # return $this->addQuotes( file_get_contents( $arg ) );
1093 throw new DBUnexpectedError(
1095 '& mode is not implemented. If it\'s really needed, uncomment the line above.'
1098 throw new DBUnexpectedError(
1100 'Received invalid match. This should never happen!'
1105 public function freeResult( $res ) {
1108 public function selectField(
1109 $table, $var, $cond = '', $fname = __METHOD__
, $options = []
1111 if ( $var === '*' ) { // sanity
1112 throw new DBUnexpectedError( $this, "Cannot use a * field: got '$var'" );
1115 if ( !is_array( $options ) ) {
1116 $options = [ $options ];
1119 $options['LIMIT'] = 1;
1121 $res = $this->select( $table, $var, $cond, $fname, $options );
1122 if ( $res === false ||
!$this->numRows( $res ) ) {
1126 $row = $this->fetchRow( $res );
1128 if ( $row !== false ) {
1129 return reset( $row );
1135 public function selectFieldValues(
1136 $table, $var, $cond = '', $fname = __METHOD__
, $options = [], $join_conds = []
1138 if ( $var === '*' ) { // sanity
1139 throw new DBUnexpectedError( $this, "Cannot use a * field" );
1140 } elseif ( !is_string( $var ) ) { // sanity
1141 throw new DBUnexpectedError( $this, "Cannot use an array of fields" );
1144 if ( !is_array( $options ) ) {
1145 $options = [ $options ];
1148 $res = $this->select( $table, $var, $cond, $fname, $options, $join_conds );
1149 if ( $res === false ) {
1154 foreach ( $res as $row ) {
1155 $values[] = $row->$var;
1162 * Returns an optional USE INDEX clause to go after the table, and a
1163 * string to go at the end of the query.
1165 * @param array $options Associative array of options to be turned into
1166 * an SQL query, valid keys are listed in the function.
1168 * @see DatabaseBase::select()
1170 public function makeSelectOptions( $options ) {
1171 $preLimitTail = $postLimitTail = '';
1176 foreach ( $options as $key => $option ) {
1177 if ( is_numeric( $key ) ) {
1178 $noKeyOptions[$option] = true;
1182 $preLimitTail .= $this->makeGroupByWithHaving( $options );
1184 $preLimitTail .= $this->makeOrderBy( $options );
1186 // if (isset($options['LIMIT'])) {
1187 // $tailOpts .= $this->limitResult('', $options['LIMIT'],
1188 // isset($options['OFFSET']) ? $options['OFFSET']
1192 if ( isset( $noKeyOptions['FOR UPDATE'] ) ) {
1193 $postLimitTail .= ' FOR UPDATE';
1196 if ( isset( $noKeyOptions['LOCK IN SHARE MODE'] ) ) {
1197 $postLimitTail .= ' LOCK IN SHARE MODE';
1200 if ( isset( $noKeyOptions['DISTINCT'] ) ||
isset( $noKeyOptions['DISTINCTROW'] ) ) {
1201 $startOpts .= 'DISTINCT';
1204 # Various MySQL extensions
1205 if ( isset( $noKeyOptions['STRAIGHT_JOIN'] ) ) {
1206 $startOpts .= ' /*! STRAIGHT_JOIN */';
1209 if ( isset( $noKeyOptions['HIGH_PRIORITY'] ) ) {
1210 $startOpts .= ' HIGH_PRIORITY';
1213 if ( isset( $noKeyOptions['SQL_BIG_RESULT'] ) ) {
1214 $startOpts .= ' SQL_BIG_RESULT';
1217 if ( isset( $noKeyOptions['SQL_BUFFER_RESULT'] ) ) {
1218 $startOpts .= ' SQL_BUFFER_RESULT';
1221 if ( isset( $noKeyOptions['SQL_SMALL_RESULT'] ) ) {
1222 $startOpts .= ' SQL_SMALL_RESULT';
1225 if ( isset( $noKeyOptions['SQL_CALC_FOUND_ROWS'] ) ) {
1226 $startOpts .= ' SQL_CALC_FOUND_ROWS';
1229 if ( isset( $noKeyOptions['SQL_CACHE'] ) ) {
1230 $startOpts .= ' SQL_CACHE';
1233 if ( isset( $noKeyOptions['SQL_NO_CACHE'] ) ) {
1234 $startOpts .= ' SQL_NO_CACHE';
1237 if ( isset( $options['USE INDEX'] ) && is_string( $options['USE INDEX'] ) ) {
1238 $useIndex = $this->useIndexClause( $options['USE INDEX'] );
1243 return [ $startOpts, $useIndex, $preLimitTail, $postLimitTail ];
1247 * Returns an optional GROUP BY with an optional HAVING
1249 * @param array $options Associative array of options
1251 * @see DatabaseBase::select()
1254 public function makeGroupByWithHaving( $options ) {
1256 if ( isset( $options['GROUP BY'] ) ) {
1257 $gb = is_array( $options['GROUP BY'] )
1258 ?
implode( ',', $options['GROUP BY'] )
1259 : $options['GROUP BY'];
1260 $sql .= ' GROUP BY ' . $gb;
1262 if ( isset( $options['HAVING'] ) ) {
1263 $having = is_array( $options['HAVING'] )
1264 ?
$this->makeList( $options['HAVING'], LIST_AND
)
1265 : $options['HAVING'];
1266 $sql .= ' HAVING ' . $having;
1273 * Returns an optional ORDER BY
1275 * @param array $options Associative array of options
1277 * @see DatabaseBase::select()
1280 public function makeOrderBy( $options ) {
1281 if ( isset( $options['ORDER BY'] ) ) {
1282 $ob = is_array( $options['ORDER BY'] )
1283 ?
implode( ',', $options['ORDER BY'] )
1284 : $options['ORDER BY'];
1286 return ' ORDER BY ' . $ob;
1292 // See IDatabase::select for the docs for this function
1293 public function select( $table, $vars, $conds = '', $fname = __METHOD__
,
1294 $options = [], $join_conds = [] ) {
1295 $sql = $this->selectSQLText( $table, $vars, $conds, $fname, $options, $join_conds );
1297 return $this->query( $sql, $fname );
1300 public function selectSQLText( $table, $vars, $conds = '', $fname = __METHOD__
,
1301 $options = [], $join_conds = []
1303 if ( is_array( $vars ) ) {
1304 $vars = implode( ',', $this->fieldNamesWithAlias( $vars ) );
1307 $options = (array)$options;
1308 $useIndexes = ( isset( $options['USE INDEX'] ) && is_array( $options['USE INDEX'] ) )
1309 ?
$options['USE INDEX']
1312 if ( is_array( $table ) ) {
1314 $this->tableNamesWithUseIndexOrJOIN( $table, $useIndexes, $join_conds );
1315 } elseif ( $table != '' ) {
1316 if ( $table[0] == ' ' ) {
1317 $from = ' FROM ' . $table;
1320 $this->tableNamesWithUseIndexOrJOIN( [ $table ], $useIndexes, [] );
1326 list( $startOpts, $useIndex, $preLimitTail, $postLimitTail ) =
1327 $this->makeSelectOptions( $options );
1329 if ( !empty( $conds ) ) {
1330 if ( is_array( $conds ) ) {
1331 $conds = $this->makeList( $conds, LIST_AND
);
1333 $sql = "SELECT $startOpts $vars $from $useIndex WHERE $conds $preLimitTail";
1335 $sql = "SELECT $startOpts $vars $from $useIndex $preLimitTail";
1338 if ( isset( $options['LIMIT'] ) ) {
1339 $sql = $this->limitResult( $sql, $options['LIMIT'],
1340 isset( $options['OFFSET'] ) ?
$options['OFFSET'] : false );
1342 $sql = "$sql $postLimitTail";
1344 if ( isset( $options['EXPLAIN'] ) ) {
1345 $sql = 'EXPLAIN ' . $sql;
1351 public function selectRow( $table, $vars, $conds, $fname = __METHOD__
,
1352 $options = [], $join_conds = []
1354 $options = (array)$options;
1355 $options['LIMIT'] = 1;
1356 $res = $this->select( $table, $vars, $conds, $fname, $options, $join_conds );
1358 if ( $res === false ) {
1362 if ( !$this->numRows( $res ) ) {
1366 $obj = $this->fetchObject( $res );
1371 public function estimateRowCount(
1372 $table, $vars = '*', $conds = '', $fname = __METHOD__
, $options = []
1375 $res = $this->select( $table, [ 'rowcount' => 'COUNT(*)' ], $conds, $fname, $options );
1378 $row = $this->fetchRow( $res );
1379 $rows = ( isset( $row['rowcount'] ) ) ?
(int)$row['rowcount'] : 0;
1385 public function selectRowCount(
1386 $tables, $vars = '*', $conds = '', $fname = __METHOD__
, $options = [], $join_conds = []
1389 $sql = $this->selectSQLText( $tables, '1', $conds, $fname, $options, $join_conds );
1390 $res = $this->query( "SELECT COUNT(*) AS rowcount FROM ($sql) tmp_count", $fname );
1393 $row = $this->fetchRow( $res );
1394 $rows = ( isset( $row['rowcount'] ) ) ?
(int)$row['rowcount'] : 0;
1401 * Removes most variables from an SQL query and replaces them with X or N for numbers.
1402 * It's only slightly flawed. Don't use for anything important.
1404 * @param string $sql A SQL Query
1408 protected static function generalizeSQL( $sql ) {
1409 # This does the same as the regexp below would do, but in such a way
1410 # as to avoid crashing php on some large strings.
1411 # $sql = preg_replace( "/'([^\\\\']|\\\\.)*'|\"([^\\\\\"]|\\\\.)*\"/", "'X'", $sql );
1413 $sql = str_replace( "\\\\", '', $sql );
1414 $sql = str_replace( "\\'", '', $sql );
1415 $sql = str_replace( "\\\"", '', $sql );
1416 $sql = preg_replace( "/'.*'/s", "'X'", $sql );
1417 $sql = preg_replace( '/".*"/s', "'X'", $sql );
1419 # All newlines, tabs, etc replaced by single space
1420 $sql = preg_replace( '/\s+/', ' ', $sql );
1423 # except the ones surrounded by characters, e.g. l10n
1424 $sql = preg_replace( '/-?\d+(,-?\d+)+/s', 'N,...,N', $sql );
1425 $sql = preg_replace( '/(?<![a-zA-Z])-?\d+(?![a-zA-Z])/s', 'N', $sql );
1430 public function fieldExists( $table, $field, $fname = __METHOD__
) {
1431 $info = $this->fieldInfo( $table, $field );
1436 public function indexExists( $table, $index, $fname = __METHOD__
) {
1437 if ( !$this->tableExists( $table ) ) {
1441 $info = $this->indexInfo( $table, $index, $fname );
1442 if ( is_null( $info ) ) {
1445 return $info !== false;
1449 public function tableExists( $table, $fname = __METHOD__
) {
1450 $table = $this->tableName( $table );
1451 $old = $this->ignoreErrors( true );
1452 $res = $this->query( "SELECT 1 FROM $table LIMIT 1", $fname );
1453 $this->ignoreErrors( $old );
1458 public function indexUnique( $table, $index ) {
1459 $indexInfo = $this->indexInfo( $table, $index );
1461 if ( !$indexInfo ) {
1465 return !$indexInfo[0]->Non_unique
;
1469 * Helper for DatabaseBase::insert().
1471 * @param array $options
1474 protected function makeInsertOptions( $options ) {
1475 return implode( ' ', $options );
1478 public function insert( $table, $a, $fname = __METHOD__
, $options = [] ) {
1479 # No rows to insert, easy just return now
1480 if ( !count( $a ) ) {
1484 $table = $this->tableName( $table );
1486 if ( !is_array( $options ) ) {
1487 $options = [ $options ];
1491 if ( isset( $options['fileHandle'] ) ) {
1492 $fh = $options['fileHandle'];
1494 $options = $this->makeInsertOptions( $options );
1496 if ( isset( $a[0] ) && is_array( $a[0] ) ) {
1498 $keys = array_keys( $a[0] );
1501 $keys = array_keys( $a );
1504 $sql = 'INSERT ' . $options .
1505 " INTO $table (" . implode( ',', $keys ) . ') VALUES ';
1509 foreach ( $a as $row ) {
1515 $sql .= '(' . $this->makeList( $row ) . ')';
1518 $sql .= '(' . $this->makeList( $a ) . ')';
1521 if ( $fh !== null && false === fwrite( $fh, $sql ) ) {
1523 } elseif ( $fh !== null ) {
1527 return (bool)$this->query( $sql, $fname );
1531 * Make UPDATE options array for DatabaseBase::makeUpdateOptions
1533 * @param array $options
1536 protected function makeUpdateOptionsArray( $options ) {
1537 if ( !is_array( $options ) ) {
1538 $options = [ $options ];
1543 if ( in_array( 'LOW_PRIORITY', $options ) ) {
1544 $opts[] = $this->lowPriorityOption();
1547 if ( in_array( 'IGNORE', $options ) ) {
1555 * Make UPDATE options for the DatabaseBase::update function
1557 * @param array $options The options passed to DatabaseBase::update
1560 protected function makeUpdateOptions( $options ) {
1561 $opts = $this->makeUpdateOptionsArray( $options );
1563 return implode( ' ', $opts );
1566 function update( $table, $values, $conds, $fname = __METHOD__
, $options = [] ) {
1567 $table = $this->tableName( $table );
1568 $opts = $this->makeUpdateOptions( $options );
1569 $sql = "UPDATE $opts $table SET " . $this->makeList( $values, LIST_SET
);
1571 if ( $conds !== [] && $conds !== '*' ) {
1572 $sql .= " WHERE " . $this->makeList( $conds, LIST_AND
);
1575 return $this->query( $sql, $fname );
1578 public function makeList( $a, $mode = LIST_COMMA
) {
1579 if ( !is_array( $a ) ) {
1580 throw new DBUnexpectedError( $this, 'DatabaseBase::makeList called with incorrect parameters' );
1586 foreach ( $a as $field => $value ) {
1588 if ( $mode == LIST_AND
) {
1590 } elseif ( $mode == LIST_OR
) {
1599 if ( ( $mode == LIST_AND ||
$mode == LIST_OR
) && is_numeric( $field ) ) {
1600 $list .= "($value)";
1601 } elseif ( ( $mode == LIST_SET
) && is_numeric( $field ) ) {
1603 } elseif ( ( $mode == LIST_AND ||
$mode == LIST_OR
) && is_array( $value ) ) {
1604 // Remove null from array to be handled separately if found
1605 $includeNull = false;
1606 foreach ( array_keys( $value, null, true ) as $nullKey ) {
1607 $includeNull = true;
1608 unset( $value[$nullKey] );
1610 if ( count( $value ) == 0 && !$includeNull ) {
1611 throw new MWException( __METHOD__
. ": empty input for field $field" );
1612 } elseif ( count( $value ) == 0 ) {
1613 // only check if $field is null
1614 $list .= "$field IS NULL";
1616 // IN clause contains at least one valid element
1617 if ( $includeNull ) {
1618 // Group subconditions to ensure correct precedence
1621 if ( count( $value ) == 1 ) {
1622 // Special-case single values, as IN isn't terribly efficient
1623 // Don't necessarily assume the single key is 0; we don't
1624 // enforce linear numeric ordering on other arrays here.
1625 $value = array_values( $value )[0];
1626 $list .= $field . " = " . $this->addQuotes( $value );
1628 $list .= $field . " IN (" . $this->makeList( $value ) . ") ";
1630 // if null present in array, append IS NULL
1631 if ( $includeNull ) {
1632 $list .= " OR $field IS NULL)";
1635 } elseif ( $value === null ) {
1636 if ( $mode == LIST_AND ||
$mode == LIST_OR
) {
1637 $list .= "$field IS ";
1638 } elseif ( $mode == LIST_SET
) {
1639 $list .= "$field = ";
1643 if ( $mode == LIST_AND ||
$mode == LIST_OR ||
$mode == LIST_SET
) {
1644 $list .= "$field = ";
1646 $list .= $mode == LIST_NAMES ?
$value : $this->addQuotes( $value );
1653 public function makeWhereFrom2d( $data, $baseKey, $subKey ) {
1656 foreach ( $data as $base => $sub ) {
1657 if ( count( $sub ) ) {
1658 $conds[] = $this->makeList(
1659 [ $baseKey => $base, $subKey => array_keys( $sub ) ],
1665 return $this->makeList( $conds, LIST_OR
);
1667 // Nothing to search for...
1673 * Return aggregated value alias
1675 * @param array $valuedata
1676 * @param string $valuename
1680 public function aggregateValue( $valuedata, $valuename = 'value' ) {
1684 public function bitNot( $field ) {
1688 public function bitAnd( $fieldLeft, $fieldRight ) {
1689 return "($fieldLeft & $fieldRight)";
1692 public function bitOr( $fieldLeft, $fieldRight ) {
1693 return "($fieldLeft | $fieldRight)";
1696 public function buildConcat( $stringList ) {
1697 return 'CONCAT(' . implode( ',', $stringList ) . ')';
1700 public function buildGroupConcatField(
1701 $delim, $table, $field, $conds = '', $join_conds = []
1703 $fld = "GROUP_CONCAT($field SEPARATOR " . $this->addQuotes( $delim ) . ')';
1705 return '(' . $this->selectSQLText( $table, $fld, $conds, null, [], $join_conds ) . ')';
1708 public function selectDB( $db ) {
1709 # Stub. Shouldn't cause serious problems if it's not overridden, but
1710 # if your database engine supports a concept similar to MySQL's
1711 # databases you may as well.
1712 $this->mDBname
= $db;
1717 public function getDBname() {
1718 return $this->mDBname
;
1721 public function getServer() {
1722 return $this->mServer
;
1726 * Format a table name ready for use in constructing an SQL query
1728 * This does two important things: it quotes the table names to clean them up,
1729 * and it adds a table prefix if only given a table name with no quotes.
1731 * All functions of this object which require a table name call this function
1732 * themselves. Pass the canonical name to such functions. This is only needed
1733 * when calling query() directly.
1735 * @note This function does not sanitize user input. It is not safe to use
1736 * this function to escape user input.
1737 * @param string $name Database table name
1738 * @param string $format One of:
1739 * quoted - Automatically pass the table name through addIdentifierQuotes()
1740 * so that it can be used in a query.
1741 * raw - Do not add identifier quotes to the table name
1742 * @return string Full database name
1744 public function tableName( $name, $format = 'quoted' ) {
1745 global $wgSharedDB, $wgSharedPrefix, $wgSharedTables, $wgSharedSchema;
1746 # Skip the entire process when we have a string quoted on both ends.
1747 # Note that we check the end so that we will still quote any use of
1748 # use of `database`.table. But won't break things if someone wants
1749 # to query a database table with a dot in the name.
1750 if ( $this->isQuotedIdentifier( $name ) ) {
1754 # Lets test for any bits of text that should never show up in a table
1755 # name. Basically anything like JOIN or ON which are actually part of
1756 # SQL queries, but may end up inside of the table value to combine
1757 # sql. Such as how the API is doing.
1758 # Note that we use a whitespace test rather than a \b test to avoid
1759 # any remote case where a word like on may be inside of a table name
1760 # surrounded by symbols which may be considered word breaks.
1761 if ( preg_match( '/(^|\s)(DISTINCT|JOIN|ON|AS)(\s|$)/i', $name ) !== 0 ) {
1765 # Split database and table into proper variables.
1766 # We reverse the explode so that database.table and table both output
1767 # the correct table.
1768 $dbDetails = explode( '.', $name, 3 );
1769 if ( count( $dbDetails ) == 3 ) {
1770 list( $database, $schema, $table ) = $dbDetails;
1771 # We don't want any prefix added in this case
1773 } elseif ( count( $dbDetails ) == 2 ) {
1774 list( $database, $table ) = $dbDetails;
1775 # We don't want any prefix added in this case
1776 # In dbs that support it, $database may actually be the schema
1777 # but that doesn't affect any of the functionality here
1781 list( $table ) = $dbDetails;
1782 if ( $wgSharedDB !== null # We have a shared database
1783 && $this->mForeign
== false # We're not working on a foreign database
1784 && !$this->isQuotedIdentifier( $table ) # Prevent shared tables listing '`table`'
1785 && in_array( $table, $wgSharedTables ) # A shared table is selected
1787 $database = $wgSharedDB;
1788 $schema = $wgSharedSchema === null ?
$this->mSchema
: $wgSharedSchema;
1789 $prefix = $wgSharedPrefix === null ?
$this->mTablePrefix
: $wgSharedPrefix;
1792 $schema = $this->mSchema
; # Default schema
1793 $prefix = $this->mTablePrefix
; # Default prefix
1797 # Quote $table and apply the prefix if not quoted.
1798 # $tableName might be empty if this is called from Database::replaceVars()
1799 $tableName = "{$prefix}{$table}";
1800 if ( $format == 'quoted' && !$this->isQuotedIdentifier( $tableName ) && $tableName !== '' ) {
1801 $tableName = $this->addIdentifierQuotes( $tableName );
1804 # Quote $schema and merge it with the table name if needed
1805 if ( strlen( $schema ) ) {
1806 if ( $format == 'quoted' && !$this->isQuotedIdentifier( $schema ) ) {
1807 $schema = $this->addIdentifierQuotes( $schema );
1809 $tableName = $schema . '.' . $tableName;
1812 # Quote $database and merge it with the table name if needed
1813 if ( $database !== null ) {
1814 if ( $format == 'quoted' && !$this->isQuotedIdentifier( $database ) ) {
1815 $database = $this->addIdentifierQuotes( $database );
1817 $tableName = $database . '.' . $tableName;
1824 * Fetch a number of table names into an array
1825 * This is handy when you need to construct SQL for joins
1828 * extract( $dbr->tableNames( 'user', 'watchlist' ) );
1829 * $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user
1830 * WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
1834 public function tableNames() {
1835 $inArray = func_get_args();
1838 foreach ( $inArray as $name ) {
1839 $retVal[$name] = $this->tableName( $name );
1846 * Fetch a number of table names into an zero-indexed numerical array
1847 * This is handy when you need to construct SQL for joins
1850 * list( $user, $watchlist ) = $dbr->tableNamesN( 'user', 'watchlist' );
1851 * $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user
1852 * WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
1856 public function tableNamesN() {
1857 $inArray = func_get_args();
1860 foreach ( $inArray as $name ) {
1861 $retVal[] = $this->tableName( $name );
1868 * Get an aliased table name
1869 * e.g. tableName AS newTableName
1871 * @param string $name Table name, see tableName()
1872 * @param string|bool $alias Alias (optional)
1873 * @return string SQL name for aliased table. Will not alias a table to its own name
1875 public function tableNameWithAlias( $name, $alias = false ) {
1876 if ( !$alias ||
$alias == $name ) {
1877 return $this->tableName( $name );
1879 return $this->tableName( $name ) . ' ' . $this->addIdentifierQuotes( $alias );
1884 * Gets an array of aliased table names
1886 * @param array $tables [ [alias] => table ]
1887 * @return string[] See tableNameWithAlias()
1889 public function tableNamesWithAlias( $tables ) {
1891 foreach ( $tables as $alias => $table ) {
1892 if ( is_numeric( $alias ) ) {
1895 $retval[] = $this->tableNameWithAlias( $table, $alias );
1902 * Get an aliased field name
1903 * e.g. fieldName AS newFieldName
1905 * @param string $name Field name
1906 * @param string|bool $alias Alias (optional)
1907 * @return string SQL name for aliased field. Will not alias a field to its own name
1909 public function fieldNameWithAlias( $name, $alias = false ) {
1910 if ( !$alias ||
(string)$alias === (string)$name ) {
1913 return $name . ' AS ' . $this->addIdentifierQuotes( $alias ); // PostgreSQL needs AS
1918 * Gets an array of aliased field names
1920 * @param array $fields [ [alias] => field ]
1921 * @return string[] See fieldNameWithAlias()
1923 public function fieldNamesWithAlias( $fields ) {
1925 foreach ( $fields as $alias => $field ) {
1926 if ( is_numeric( $alias ) ) {
1929 $retval[] = $this->fieldNameWithAlias( $field, $alias );
1936 * Get the aliased table name clause for a FROM clause
1937 * which might have a JOIN and/or USE INDEX clause
1939 * @param array $tables ( [alias] => table )
1940 * @param array $use_index Same as for select()
1941 * @param array $join_conds Same as for select()
1944 protected function tableNamesWithUseIndexOrJOIN(
1945 $tables, $use_index = [], $join_conds = []
1949 $use_index = (array)$use_index;
1950 $join_conds = (array)$join_conds;
1952 foreach ( $tables as $alias => $table ) {
1953 if ( !is_string( $alias ) ) {
1954 // No alias? Set it equal to the table name
1957 // Is there a JOIN clause for this table?
1958 if ( isset( $join_conds[$alias] ) ) {
1959 list( $joinType, $conds ) = $join_conds[$alias];
1960 $tableClause = $joinType;
1961 $tableClause .= ' ' . $this->tableNameWithAlias( $table, $alias );
1962 if ( isset( $use_index[$alias] ) ) { // has USE INDEX?
1963 $use = $this->useIndexClause( implode( ',', (array)$use_index[$alias] ) );
1965 $tableClause .= ' ' . $use;
1968 $on = $this->makeList( (array)$conds, LIST_AND
);
1970 $tableClause .= ' ON (' . $on . ')';
1973 $retJOIN[] = $tableClause;
1974 } elseif ( isset( $use_index[$alias] ) ) {
1975 // Is there an INDEX clause for this table?
1976 $tableClause = $this->tableNameWithAlias( $table, $alias );
1977 $tableClause .= ' ' . $this->useIndexClause(
1978 implode( ',', (array)$use_index[$alias] )
1981 $ret[] = $tableClause;
1983 $tableClause = $this->tableNameWithAlias( $table, $alias );
1985 $ret[] = $tableClause;
1989 // We can't separate explicit JOIN clauses with ',', use ' ' for those
1990 $implicitJoins = !empty( $ret ) ?
implode( ',', $ret ) : "";
1991 $explicitJoins = !empty( $retJOIN ) ?
implode( ' ', $retJOIN ) : "";
1993 // Compile our final table clause
1994 return implode( ' ', [ $implicitJoins, $explicitJoins ] );
1998 * Get the name of an index in a given table.
2000 * @param string $index
2003 protected function indexName( $index ) {
2004 // Backwards-compatibility hack
2006 'ar_usertext_timestamp' => 'usertext_timestamp',
2007 'un_user_id' => 'user_id',
2008 'un_user_ip' => 'user_ip',
2011 if ( isset( $renamed[$index] ) ) {
2012 return $renamed[$index];
2018 public function addQuotes( $s ) {
2019 if ( $s instanceof Blob
) {
2022 if ( $s === null ) {
2025 # This will also quote numeric values. This should be harmless,
2026 # and protects against weird problems that occur when they really
2027 # _are_ strings such as article titles and string->number->string
2028 # conversion is not 1:1.
2029 return "'" . $this->strencode( $s ) . "'";
2034 * Quotes an identifier using `backticks` or "double quotes" depending on the database type.
2035 * MySQL uses `backticks` while basically everything else uses double quotes.
2036 * Since MySQL is the odd one out here the double quotes are our generic
2037 * and we implement backticks in DatabaseMysql.
2042 public function addIdentifierQuotes( $s ) {
2043 return '"' . str_replace( '"', '""', $s ) . '"';
2047 * Returns if the given identifier looks quoted or not according to
2048 * the database convention for quoting identifiers .
2050 * @note Do not use this to determine if untrusted input is safe.
2051 * A malicious user can trick this function.
2052 * @param string $name
2055 public function isQuotedIdentifier( $name ) {
2056 return $name[0] == '"' && substr( $name, -1, 1 ) == '"';
2063 protected function escapeLikeInternal( $s ) {
2064 return addcslashes( $s, '\%_' );
2067 public function buildLike() {
2068 $params = func_get_args();
2070 if ( count( $params ) > 0 && is_array( $params[0] ) ) {
2071 $params = $params[0];
2076 foreach ( $params as $value ) {
2077 if ( $value instanceof LikeMatch
) {
2078 $s .= $value->toString();
2080 $s .= $this->escapeLikeInternal( $value );
2084 return " LIKE {$this->addQuotes( $s )} ";
2087 public function anyChar() {
2088 return new LikeMatch( '_' );
2091 public function anyString() {
2092 return new LikeMatch( '%' );
2095 public function nextSequenceValue( $seqName ) {
2100 * USE INDEX clause. Unlikely to be useful for anything but MySQL. This
2101 * is only needed because a) MySQL must be as efficient as possible due to
2102 * its use on Wikipedia, and b) MySQL 4.0 is kind of dumb sometimes about
2103 * which index to pick. Anyway, other databases might have different
2104 * indexes on a given table. So don't bother overriding this unless you're
2106 * @param string $index
2109 public function useIndexClause( $index ) {
2113 public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__
) {
2114 $quotedTable = $this->tableName( $table );
2116 if ( count( $rows ) == 0 ) {
2121 if ( !is_array( reset( $rows ) ) ) {
2125 // @FXIME: this is not atomic, but a trx would break affectedRows()
2126 foreach ( $rows as $row ) {
2127 # Delete rows which collide
2128 if ( $uniqueIndexes ) {
2129 $sql = "DELETE FROM $quotedTable WHERE ";
2131 foreach ( $uniqueIndexes as $index ) {
2138 if ( is_array( $index ) ) {
2140 foreach ( $index as $col ) {
2146 $sql .= $col . '=' . $this->addQuotes( $row[$col] );
2149 $sql .= $index . '=' . $this->addQuotes( $row[$index] );
2153 $this->query( $sql, $fname );
2156 # Now insert the row
2157 $this->insert( $table, $row, $fname );
2162 * REPLACE query wrapper for MySQL and SQLite, which have a native REPLACE
2165 * @param string $table Table name
2166 * @param array|string $rows Row(s) to insert
2167 * @param string $fname Caller function name
2169 * @return ResultWrapper
2171 protected function nativeReplace( $table, $rows, $fname ) {
2172 $table = $this->tableName( $table );
2175 if ( !is_array( reset( $rows ) ) ) {
2179 $sql = "REPLACE INTO $table (" . implode( ',', array_keys( $rows[0] ) ) . ') VALUES ';
2182 foreach ( $rows as $row ) {
2189 $sql .= '(' . $this->makeList( $row ) . ')';
2192 return $this->query( $sql, $fname );
2195 public function upsert( $table, array $rows, array $uniqueIndexes, array $set,
2198 if ( !count( $rows ) ) {
2199 return true; // nothing to do
2202 if ( !is_array( reset( $rows ) ) ) {
2206 if ( count( $uniqueIndexes ) ) {
2207 $clauses = []; // list WHERE clauses that each identify a single row
2208 foreach ( $rows as $row ) {
2209 foreach ( $uniqueIndexes as $index ) {
2210 $index = is_array( $index ) ?
$index : [ $index ]; // columns
2211 $rowKey = []; // unique key to this row
2212 foreach ( $index as $column ) {
2213 $rowKey[$column] = $row[$column];
2215 $clauses[] = $this->makeList( $rowKey, LIST_AND
);
2218 $where = [ $this->makeList( $clauses, LIST_OR
) ];
2223 $useTrx = !$this->mTrxLevel
;
2225 $this->begin( $fname, self
::TRANSACTION_INTERNAL
);
2228 # Update any existing conflicting row(s)
2229 if ( $where !== false ) {
2230 $ok = $this->update( $table, $set, $where, $fname );
2234 # Now insert any non-conflicting row(s)
2235 $ok = $this->insert( $table, $rows, $fname, [ 'IGNORE' ] ) && $ok;
2236 } catch ( Exception
$e ) {
2238 $this->rollback( $fname );
2243 $this->commit( $fname, self
::TRANSACTION_INTERNAL
);
2249 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
2253 throw new DBUnexpectedError( $this,
2254 'DatabaseBase::deleteJoin() called with empty $conds' );
2257 $delTable = $this->tableName( $delTable );
2258 $joinTable = $this->tableName( $joinTable );
2259 $sql = "DELETE FROM $delTable WHERE $delVar IN (SELECT $joinVar FROM $joinTable ";
2260 if ( $conds != '*' ) {
2261 $sql .= 'WHERE ' . $this->makeList( $conds, LIST_AND
);
2265 $this->query( $sql, $fname );
2269 * Returns the size of a text field, or -1 for "unlimited"
2271 * @param string $table
2272 * @param string $field
2275 public function textFieldSize( $table, $field ) {
2276 $table = $this->tableName( $table );
2277 $sql = "SHOW COLUMNS FROM $table LIKE \"$field\";";
2278 $res = $this->query( $sql, 'DatabaseBase::textFieldSize' );
2279 $row = $this->fetchObject( $res );
2283 if ( preg_match( '/\((.*)\)/', $row->Type
, $m ) ) {
2293 * A string to insert into queries to show that they're low-priority, like
2294 * MySQL's LOW_PRIORITY. If no such feature exists, return an empty
2295 * string and nothing bad should happen.
2297 * @return string Returns the text of the low priority option if it is
2298 * supported, or a blank string otherwise
2300 public function lowPriorityOption() {
2304 public function delete( $table, $conds, $fname = __METHOD__
) {
2306 throw new DBUnexpectedError( $this, 'DatabaseBase::delete() called with no conditions' );
2309 $table = $this->tableName( $table );
2310 $sql = "DELETE FROM $table";
2312 if ( $conds != '*' ) {
2313 if ( is_array( $conds ) ) {
2314 $conds = $this->makeList( $conds, LIST_AND
);
2316 $sql .= ' WHERE ' . $conds;
2319 return $this->query( $sql, $fname );
2322 public function insertSelect( $destTable, $srcTable, $varMap, $conds,
2323 $fname = __METHOD__
,
2324 $insertOptions = [], $selectOptions = []
2326 $destTable = $this->tableName( $destTable );
2328 if ( !is_array( $insertOptions ) ) {
2329 $insertOptions = [ $insertOptions ];
2332 $insertOptions = $this->makeInsertOptions( $insertOptions );
2334 if ( !is_array( $selectOptions ) ) {
2335 $selectOptions = [ $selectOptions ];
2338 list( $startOpts, $useIndex, $tailOpts ) = $this->makeSelectOptions( $selectOptions );
2340 if ( is_array( $srcTable ) ) {
2341 $srcTable = implode( ',', array_map( [ &$this, 'tableName' ], $srcTable ) );
2343 $srcTable = $this->tableName( $srcTable );
2346 $sql = "INSERT $insertOptions INTO $destTable (" . implode( ',', array_keys( $varMap ) ) . ')' .
2347 " SELECT $startOpts " . implode( ',', $varMap ) .
2348 " FROM $srcTable $useIndex ";
2350 if ( $conds != '*' ) {
2351 if ( is_array( $conds ) ) {
2352 $conds = $this->makeList( $conds, LIST_AND
);
2354 $sql .= " WHERE $conds";
2357 $sql .= " $tailOpts";
2359 return $this->query( $sql, $fname );
2363 * Construct a LIMIT query with optional offset. This is used for query
2364 * pages. The SQL should be adjusted so that only the first $limit rows
2365 * are returned. If $offset is provided as well, then the first $offset
2366 * rows should be discarded, and the next $limit rows should be returned.
2367 * If the result of the query is not ordered, then the rows to be returned
2368 * are theoretically arbitrary.
2370 * $sql is expected to be a SELECT, if that makes a difference.
2372 * The version provided by default works in MySQL and SQLite. It will very
2373 * likely need to be overridden for most other DBMSes.
2375 * @param string $sql SQL query we will append the limit too
2376 * @param int $limit The SQL limit
2377 * @param int|bool $offset The SQL offset (default false)
2378 * @throws DBUnexpectedError
2381 public function limitResult( $sql, $limit, $offset = false ) {
2382 if ( !is_numeric( $limit ) ) {
2383 throw new DBUnexpectedError( $this, "Invalid non-numeric limit passed to limitResult()\n" );
2386 return "$sql LIMIT "
2387 . ( ( is_numeric( $offset ) && $offset != 0 ) ?
"{$offset}," : "" )
2391 public function unionSupportsOrderAndLimit() {
2392 return true; // True for almost every DB supported
2395 public function unionQueries( $sqls, $all ) {
2396 $glue = $all ?
') UNION ALL (' : ') UNION (';
2398 return '(' . implode( $glue, $sqls ) . ')';
2401 public function conditional( $cond, $trueVal, $falseVal ) {
2402 if ( is_array( $cond ) ) {
2403 $cond = $this->makeList( $cond, LIST_AND
);
2406 return " (CASE WHEN $cond THEN $trueVal ELSE $falseVal END) ";
2409 public function strreplace( $orig, $old, $new ) {
2410 return "REPLACE({$orig}, {$old}, {$new})";
2413 public function getServerUptime() {
2417 public function wasDeadlock() {
2421 public function wasLockTimeout() {
2425 public function wasErrorReissuable() {
2429 public function wasReadOnlyError() {
2434 * Determines if the given query error was a connection drop
2437 * @param integer|string $errno
2440 public function wasConnectionError( $errno ) {
2445 * Perform a deadlock-prone transaction.
2447 * This function invokes a callback function to perform a set of write
2448 * queries. If a deadlock occurs during the processing, the transaction
2449 * will be rolled back and the callback function will be called again.
2451 * Avoid using this method outside of Job or Maintenance classes.
2454 * $dbw->deadlockLoop( callback, ... );
2456 * Extra arguments are passed through to the specified callback function.
2457 * This method requires that no transactions are already active to avoid
2458 * causing premature commits or exceptions.
2460 * Returns whatever the callback function returned on its successful,
2461 * iteration, or false on error, for example if the retry limit was
2465 * @throws DBUnexpectedError
2468 public function deadlockLoop() {
2469 $args = func_get_args();
2470 $function = array_shift( $args );
2471 $tries = self
::DEADLOCK_TRIES
;
2473 $this->begin( __METHOD__
);
2476 /** @var Exception $e */
2480 $retVal = call_user_func_array( $function, $args );
2482 } catch ( DBQueryError
$e ) {
2483 if ( $this->wasDeadlock() ) {
2484 // Retry after a randomized delay
2485 usleep( mt_rand( self
::DEADLOCK_DELAY_MIN
, self
::DEADLOCK_DELAY_MAX
) );
2487 // Throw the error back up
2491 } while ( --$tries > 0 );
2493 if ( $tries <= 0 ) {
2494 // Too many deadlocks; give up
2495 $this->rollback( __METHOD__
);
2498 $this->commit( __METHOD__
);
2504 public function masterPosWait( DBMasterPos
$pos, $timeout ) {
2505 # Real waits are implemented in the subclass.
2509 public function getSlavePos() {
2514 public function getMasterPos() {
2519 public function serverIsReadOnly() {
2523 final public function onTransactionResolution( callable
$callback ) {
2524 if ( !$this->mTrxLevel
) {
2525 throw new DBUnexpectedError( $this, "No transaction is active." );
2527 $this->mTrxEndCallbacks
[] = [ $callback, wfGetCaller() ];
2530 final public function onTransactionIdle( callable
$callback ) {
2531 $this->mTrxIdleCallbacks
[] = [ $callback, wfGetCaller() ];
2532 if ( !$this->mTrxLevel
) {
2533 $this->runOnTransactionIdleCallbacks( self
::TRIGGER_IDLE
);
2537 final public function onTransactionPreCommitOrIdle( callable
$callback ) {
2538 if ( $this->mTrxLevel
) {
2539 $this->mTrxPreCommitCallbacks
[] = [ $callback, wfGetCaller() ];
2541 // If no transaction is active, then make one for this callback
2542 $this->begin( __METHOD__
, self
::TRANSACTION_INTERNAL
);
2544 call_user_func( $callback );
2545 $this->commit( __METHOD__
);
2546 } catch ( Exception
$e ) {
2547 $this->rollback( __METHOD__
);
2554 * Whether to disable running of post-commit callbacks
2556 * This method should not be used outside of Database/LoadBalancer
2558 * @param bool $suppress
2561 final public function setPostCommitCallbackSupression( $suppress ) {
2562 $this->suppressPostCommitCallbacks
= $suppress;
2566 * Actually run and consume any "on transaction idle/resolution" callbacks.
2568 * This method should not be used outside of Database/LoadBalancer
2570 * @param integer $trigger IDatabase::TRIGGER_* constant
2574 public function runOnTransactionIdleCallbacks( $trigger ) {
2575 if ( $this->suppressPostCommitCallbacks
) {
2579 $autoTrx = $this->getFlag( DBO_TRX
); // automatic begin() enabled?
2580 /** @var Exception $e */
2581 $e = null; // first exception
2582 do { // callbacks may add callbacks :)
2583 $callbacks = array_merge(
2584 $this->mTrxIdleCallbacks
,
2585 $this->mTrxEndCallbacks
// include "transaction resolution" callbacks
2587 $this->mTrxIdleCallbacks
= []; // consumed (and recursion guard)
2588 $this->mTrxEndCallbacks
= []; // consumed (recursion guard)
2589 foreach ( $callbacks as $callback ) {
2591 list( $phpCallback ) = $callback;
2592 $this->clearFlag( DBO_TRX
); // make each query its own transaction
2593 call_user_func_array( $phpCallback, [ $trigger ] );
2595 $this->setFlag( DBO_TRX
); // restore automatic begin()
2597 $this->clearFlag( DBO_TRX
); // restore auto-commit
2599 } catch ( Exception
$ex ) {
2600 MWExceptionHandler
::logException( $ex );
2602 // Some callbacks may use startAtomic/endAtomic, so make sure
2603 // their transactions are ended so other callbacks don't fail
2604 if ( $this->trxLevel() ) {
2605 $this->rollback( __METHOD__
);
2609 } while ( count( $this->mTrxIdleCallbacks
) );
2611 if ( $e instanceof Exception
) {
2612 throw $e; // re-throw any first exception
2617 * Actually run and consume any "on transaction pre-commit" callbacks.
2619 * This method should not be used outside of Database/LoadBalancer
2624 public function runOnTransactionPreCommitCallbacks() {
2625 $e = null; // first exception
2626 do { // callbacks may add callbacks :)
2627 $callbacks = $this->mTrxPreCommitCallbacks
;
2628 $this->mTrxPreCommitCallbacks
= []; // consumed (and recursion guard)
2629 foreach ( $callbacks as $callback ) {
2631 list( $phpCallback ) = $callback;
2632 call_user_func( $phpCallback );
2633 } catch ( Exception
$ex ) {
2634 MWExceptionHandler
::logException( $ex );
2638 } while ( count( $this->mTrxPreCommitCallbacks
) );
2640 if ( $e instanceof Exception
) {
2641 throw $e; // re-throw any first exception
2645 final public function startAtomic( $fname = __METHOD__
) {
2646 if ( !$this->mTrxLevel
) {
2647 $this->begin( $fname, self
::TRANSACTION_INTERNAL
);
2648 $this->mTrxAutomatic
= true;
2649 // If DBO_TRX is set, a series of startAtomic/endAtomic pairs will result
2650 // in all changes being in one transaction to keep requests transactional.
2651 if ( !$this->getFlag( DBO_TRX
) ) {
2652 $this->mTrxAutomaticAtomic
= true;
2656 $this->mTrxAtomicLevels
[] = $fname;
2659 final public function endAtomic( $fname = __METHOD__
) {
2660 if ( !$this->mTrxLevel
) {
2661 throw new DBUnexpectedError( $this, "No atomic transaction is open (got $fname)." );
2663 if ( !$this->mTrxAtomicLevels ||
2664 array_pop( $this->mTrxAtomicLevels
) !== $fname
2666 throw new DBUnexpectedError( $this, "Invalid atomic section ended (got $fname)." );
2669 if ( !$this->mTrxAtomicLevels
&& $this->mTrxAutomaticAtomic
) {
2670 $this->commit( $fname, self
::FLUSHING_INTERNAL
);
2674 final public function doAtomicSection( $fname, callable
$callback ) {
2675 $this->startAtomic( $fname );
2677 $res = call_user_func_array( $callback, [ $this, $fname ] );
2678 } catch ( Exception
$e ) {
2679 $this->rollback( $fname );
2682 $this->endAtomic( $fname );
2687 final public function begin( $fname = __METHOD__
, $mode = self
::TRANSACTION_EXPLICIT
) {
2688 // Protect against mismatched atomic section, transaction nesting, and snapshot loss
2689 if ( $this->mTrxLevel
) {
2690 if ( $this->mTrxAtomicLevels
) {
2691 $levels = implode( ', ', $this->mTrxAtomicLevels
);
2692 $msg = "$fname: Got explicit BEGIN while atomic section(s) $levels are open.";
2693 throw new DBUnexpectedError( $this, $msg );
2694 } elseif ( !$this->mTrxAutomatic
) {
2695 $msg = "$fname: Explicit transaction already active (from {$this->mTrxFname}).";
2696 throw new DBUnexpectedError( $this, $msg );
2698 // @TODO: make this an exception at some point
2699 $msg = "$fname: Implicit transaction already active (from {$this->mTrxFname}).";
2700 wfLogDBError( $msg );
2701 return; // join the main transaction set
2703 } elseif ( $this->getFlag( DBO_TRX
) && $mode !== self
::TRANSACTION_INTERNAL
) {
2704 // @TODO: make this an exception at some point
2705 wfLogDBError( "$fname: Implicit transaction expected (DBO_TRX set)." );
2706 return; // let any writes be in the main transaction
2709 // Avoid fatals if close() was called
2710 $this->assertOpen();
2712 $this->doBegin( $fname );
2713 $this->mTrxTimestamp
= microtime( true );
2714 $this->mTrxFname
= $fname;
2715 $this->mTrxDoneWrites
= false;
2716 $this->mTrxAutomatic
= false;
2717 $this->mTrxAutomaticAtomic
= false;
2718 $this->mTrxAtomicLevels
= [];
2719 $this->mTrxShortId
= wfRandomString( 12 );
2720 $this->mTrxWriteDuration
= 0.0;
2721 $this->mTrxWriteCallers
= [];
2722 // First SELECT after BEGIN will establish the snapshot in REPEATABLE-READ.
2723 // Get an estimate of the slave lag before then, treating estimate staleness
2724 // as lag itself just to be safe
2725 $status = $this->getApproximateLagStatus();
2726 $this->mTrxSlaveLag
= $status['lag'] +
( microtime( true ) - $status['since'] );
2730 * Issues the BEGIN command to the database server.
2732 * @see DatabaseBase::begin()
2733 * @param string $fname
2735 protected function doBegin( $fname ) {
2736 $this->query( 'BEGIN', $fname );
2737 $this->mTrxLevel
= 1;
2740 final public function commit( $fname = __METHOD__
, $flush = '' ) {
2741 if ( $this->mTrxLevel
&& $this->mTrxAtomicLevels
) {
2742 // There are still atomic sections open. This cannot be ignored
2743 $levels = implode( ', ', $this->mTrxAtomicLevels
);
2744 throw new DBUnexpectedError(
2746 "$fname: Got COMMIT while atomic sections $levels are still open."
2750 if ( $flush === self
::FLUSHING_INTERNAL ||
$flush === self
::FLUSHING_ALL_PEERS
) {
2751 if ( !$this->mTrxLevel
) {
2752 return; // nothing to do
2753 } elseif ( !$this->mTrxAutomatic
) {
2754 throw new DBUnexpectedError(
2756 "$fname: Flushing an explicit transaction, getting out of sync."
2760 if ( !$this->mTrxLevel
) {
2761 wfWarn( "$fname: No transaction to commit, something got out of sync." );
2762 return; // nothing to do
2763 } elseif ( $this->mTrxAutomatic
) {
2764 // @TODO: make this an exception at some point
2765 wfLogDBError( "$fname: Explicit commit of implicit transaction." );
2766 return; // wait for the main transaction set commit round
2770 // Avoid fatals if close() was called
2771 $this->assertOpen();
2773 $this->runOnTransactionPreCommitCallbacks();
2774 $writeTime = $this->pendingWriteQueryDuration();
2775 $this->doCommit( $fname );
2776 if ( $this->mTrxDoneWrites
) {
2777 $this->mDoneWrites
= microtime( true );
2778 $this->getTransactionProfiler()->transactionWritingOut(
2779 $this->mServer
, $this->mDBname
, $this->mTrxShortId
, $writeTime );
2782 $this->runOnTransactionIdleCallbacks( self
::TRIGGER_COMMIT
);
2786 * Issues the COMMIT command to the database server.
2788 * @see DatabaseBase::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 wfWarn( "$fname: No transaction to rollback, something got out of sync." );
2806 return; // nothing to do
2807 } elseif ( $this->getFlag( DBO_TRX
) ) {
2808 throw new DBUnexpectedError(
2810 "$fname: Expected mass rollback of all peer databases (DBO_TRX set)."
2815 // Avoid fatals if close() was called
2816 $this->assertOpen();
2818 $this->doRollback( $fname );
2819 $this->mTrxAtomicLevels
= [];
2820 if ( $this->mTrxDoneWrites
) {
2821 $this->getTransactionProfiler()->transactionWritingOut(
2822 $this->mServer
, $this->mDBname
, $this->mTrxShortId
);
2825 $this->mTrxIdleCallbacks
= []; // clear
2826 $this->mTrxPreCommitCallbacks
= []; // clear
2827 $this->runOnTransactionIdleCallbacks( self
::TRIGGER_ROLLBACK
);
2831 * Issues the ROLLBACK command to the database server.
2833 * @see DatabaseBase::rollback()
2834 * @param string $fname
2836 protected function doRollback( $fname ) {
2837 if ( $this->mTrxLevel
) {
2838 # Disconnects cause rollback anyway, so ignore those errors
2839 $ignoreErrors = true;
2840 $this->query( 'ROLLBACK', $fname, $ignoreErrors );
2841 $this->mTrxLevel
= 0;
2845 public function explicitTrxActive() {
2846 return $this->mTrxLevel
&& ( $this->mTrxAtomicLevels ||
!$this->mTrxAutomatic
);
2850 * Creates a new table with structure copied from existing table
2851 * Note that unlike most database abstraction functions, this function does not
2852 * automatically append database prefix, because it works at a lower
2853 * abstraction level.
2854 * The table names passed to this function shall not be quoted (this
2855 * function calls addIdentifierQuotes when needed).
2857 * @param string $oldName Name of table whose structure should be copied
2858 * @param string $newName Name of table to be created
2859 * @param bool $temporary Whether the new table should be temporary
2860 * @param string $fname Calling function name
2861 * @throws MWException
2862 * @return bool True if operation was successful
2864 public function duplicateTableStructure( $oldName, $newName, $temporary = false,
2867 throw new MWException(
2868 'DatabaseBase::duplicateTableStructure is not implemented in descendant class' );
2871 function listTables( $prefix = null, $fname = __METHOD__
) {
2872 throw new MWException( 'DatabaseBase::listTables is not implemented in descendant class' );
2876 * Reset the views process cache set by listViews()
2879 final public function clearViewsCache() {
2880 $this->allViews
= null;
2884 * Lists all the VIEWs in the database
2886 * For caching purposes the list of all views should be stored in
2887 * $this->allViews. The process cache can be cleared with clearViewsCache()
2889 * @param string $prefix Only show VIEWs with this prefix, eg. unit_test_
2890 * @param string $fname Name of calling function
2891 * @throws MWException
2895 public function listViews( $prefix = null, $fname = __METHOD__
) {
2896 throw new MWException( 'DatabaseBase::listViews is not implemented in descendant class' );
2900 * Differentiates between a TABLE and a VIEW
2902 * @param string $name Name of the database-structure to test.
2903 * @throws MWException
2907 public function isView( $name ) {
2908 throw new MWException( 'DatabaseBase::isView is not implemented in descendant class' );
2911 public function timestamp( $ts = 0 ) {
2912 return wfTimestamp( TS_MW
, $ts );
2915 public function timestampOrNull( $ts = null ) {
2916 if ( is_null( $ts ) ) {
2919 return $this->timestamp( $ts );
2924 * Take the result from a query, and wrap it in a ResultWrapper if
2925 * necessary. Boolean values are passed through as is, to indicate success
2926 * of write queries or failure.
2928 * Once upon a time, DatabaseBase::query() returned a bare MySQL result
2929 * resource, and it was necessary to call this function to convert it to
2930 * a wrapper. Nowadays, raw database objects are never exposed to external
2931 * callers, so this is unnecessary in external code.
2933 * @param bool|ResultWrapper|resource|object $result
2934 * @return bool|ResultWrapper
2936 protected function resultObject( $result ) {
2939 } elseif ( $result instanceof ResultWrapper
) {
2941 } elseif ( $result === true ) {
2942 // Successful write query
2945 return new ResultWrapper( $this, $result );
2949 public function ping() {
2950 if ( $this->isOpen() && ( microtime( true ) - $this->lastPing
) < self
::PING_TTL
) {
2954 // This will reconnect if possible, or error out if not
2955 $this->query( "SELECT 1 AS ping", __METHOD__
);
2957 } catch ( DBError
$e ) {
2965 protected function reconnect() {
2966 $this->closeConnection();
2967 $this->mOpened
= false;
2968 $this->mConn
= false;
2970 $this->open( $this->mServer
, $this->mUser
, $this->mPassword
, $this->mDBname
);
2971 $this->lastPing
= microtime( true );
2973 } catch ( DBConnectionError
$e ) {
2980 public function getSessionLagStatus() {
2981 return $this->getTransactionLagStatus() ?
: $this->getApproximateLagStatus();
2985 * Get the slave lag when the current transaction started
2987 * This is useful when transactions might use snapshot isolation
2988 * (e.g. REPEATABLE-READ in innodb), so the "real" lag of that data
2989 * is this lag plus transaction duration. If they don't, it is still
2990 * safe to be pessimistic. This returns null if there is no transaction.
2992 * @return array|null ('lag': seconds or false on error, 'since': UNIX timestamp of BEGIN)
2995 public function getTransactionLagStatus() {
2996 return $this->mTrxLevel
2997 ?
[ 'lag' => $this->mTrxSlaveLag
, 'since' => $this->trxTimestamp() ]
3002 * Get a slave lag estimate for this server
3004 * @return array ('lag': seconds or false on error, 'since': UNIX timestamp of estimate)
3007 public function getApproximateLagStatus() {
3009 'lag' => $this->getLBInfo( 'slave' ) ?
$this->getLag() : 0,
3010 'since' => microtime( true )
3015 * Merge the result of getSessionLagStatus() for several DBs
3016 * using the most pessimistic values to estimate the lag of
3017 * any data derived from them in combination
3019 * This is information is useful for caching modules
3021 * @see WANObjectCache::set()
3022 * @see WANObjectCache::getWithSetCallback()
3024 * @param IDatabase $db1
3025 * @param IDatabase ...
3026 * @return array Map of values:
3027 * - lag: highest lag of any of the DBs or false on error (e.g. replication stopped)
3028 * - since: oldest UNIX timestamp of any of the DB lag estimates
3029 * - pending: whether any of the DBs have uncommitted changes
3032 public static function getCacheSetOptions( IDatabase
$db1 ) {
3033 $res = [ 'lag' => 0, 'since' => INF
, 'pending' => false ];
3034 foreach ( func_get_args() as $db ) {
3035 /** @var IDatabase $db */
3036 $status = $db->getSessionLagStatus();
3037 if ( $status['lag'] === false ) {
3038 $res['lag'] = false;
3039 } elseif ( $res['lag'] !== false ) {
3040 $res['lag'] = max( $res['lag'], $status['lag'] );
3042 $res['since'] = min( $res['since'], $status['since'] );
3043 $res['pending'] = $res['pending'] ?
: $db->writesPending();
3049 public function getLag() {
3053 function maxListLen() {
3057 public function encodeBlob( $b ) {
3061 public function decodeBlob( $b ) {
3062 if ( $b instanceof Blob
) {
3068 public function setSessionOptions( array $options ) {
3072 * Read and execute SQL commands from a file.
3074 * Returns true on success, error string or exception on failure (depending
3075 * on object's error ignore settings).
3077 * @param string $filename File name to open
3078 * @param bool|callable $lineCallback Optional function called before reading each line
3079 * @param bool|callable $resultCallback Optional function called for each MySQL result
3080 * @param bool|string $fname Calling function name or false if name should be
3081 * generated dynamically using $filename
3082 * @param bool|callable $inputCallback Optional function called for each
3083 * complete line sent
3084 * @throws Exception|MWException
3085 * @return bool|string
3087 public function sourceFile(
3088 $filename, $lineCallback = false, $resultCallback = false, $fname = false, $inputCallback = false
3090 MediaWiki\
suppressWarnings();
3091 $fp = fopen( $filename, 'r' );
3092 MediaWiki\restoreWarnings
();
3094 if ( false === $fp ) {
3095 throw new MWException( "Could not open \"{$filename}\".\n" );
3099 $fname = __METHOD__
. "( $filename )";
3103 $error = $this->sourceStream( $fp, $lineCallback, $resultCallback, $fname, $inputCallback );
3104 } catch ( Exception
$e ) {
3115 * Get the full path of a patch file. Originally based on archive()
3116 * from updaters.inc. Keep in mind this always returns a patch, as
3117 * it fails back to MySQL if no DB-specific patch can be found
3119 * @param string $patch The name of the patch, like patch-something.sql
3120 * @return string Full path to patch file
3122 public function patchPath( $patch ) {
3125 $dbType = $this->getType();
3126 if ( file_exists( "$IP/maintenance/$dbType/archives/$patch" ) ) {
3127 return "$IP/maintenance/$dbType/archives/$patch";
3129 return "$IP/maintenance/archives/$patch";
3133 public function setSchemaVars( $vars ) {
3134 $this->mSchemaVars
= $vars;
3138 * Read and execute commands from an open file handle.
3140 * Returns true on success, error string or exception on failure (depending
3141 * on object's error ignore settings).
3143 * @param resource $fp File handle
3144 * @param bool|callable $lineCallback Optional function called before reading each query
3145 * @param bool|callable $resultCallback Optional function called for each MySQL result
3146 * @param string $fname Calling function name
3147 * @param bool|callable $inputCallback Optional function called for each complete query sent
3148 * @return bool|string
3150 public function sourceStream( $fp, $lineCallback = false, $resultCallback = false,
3151 $fname = __METHOD__
, $inputCallback = false
3155 while ( !feof( $fp ) ) {
3156 if ( $lineCallback ) {
3157 call_user_func( $lineCallback );
3160 $line = trim( fgets( $fp ) );
3162 if ( $line == '' ) {
3166 if ( '-' == $line[0] && '-' == $line[1] ) {
3174 $done = $this->streamStatementEnd( $cmd, $line );
3178 if ( $done ||
feof( $fp ) ) {
3179 $cmd = $this->replaceVars( $cmd );
3181 if ( ( $inputCallback && call_user_func( $inputCallback, $cmd ) ) ||
!$inputCallback ) {
3182 $res = $this->query( $cmd, $fname );
3184 if ( $resultCallback ) {
3185 call_user_func( $resultCallback, $res, $this );
3188 if ( false === $res ) {
3189 $err = $this->lastError();
3191 return "Query \"{$cmd}\" failed with error code \"$err\".\n";
3202 * Called by sourceStream() to check if we've reached a statement end
3204 * @param string $sql SQL assembled so far
3205 * @param string $newLine New line about to be added to $sql
3206 * @return bool Whether $newLine contains end of the statement
3208 public function streamStatementEnd( &$sql, &$newLine ) {
3209 if ( $this->delimiter
) {
3211 $newLine = preg_replace( '/' . preg_quote( $this->delimiter
, '/' ) . '$/', '', $newLine );
3212 if ( $newLine != $prev ) {
3221 * Database independent variable replacement. Replaces a set of variables
3222 * in an SQL statement with their contents as given by $this->getSchemaVars().
3224 * Supports '{$var}' `{$var}` and / *$var* / (without the spaces) style variables.
3226 * - '{$var}' should be used for text and is passed through the database's
3228 * - `{$var}` should be used for identifiers (e.g. table and database names).
3229 * It is passed through the database's addIdentifierQuotes method which
3230 * can be overridden if the database uses something other than backticks.
3231 * - / *_* / or / *$wgDBprefix* / passes the name that follows through the
3232 * database's tableName method.
3233 * - / *i* / passes the name that follows through the database's indexName method.
3234 * - In all other cases, / *$var* / is left unencoded. Except for table options,
3235 * its use should be avoided. In 1.24 and older, string encoding was applied.
3237 * @param string $ins SQL statement to replace variables in
3238 * @return string The new SQL statement with variables replaced
3240 protected function replaceVars( $ins ) {
3241 $vars = $this->getSchemaVars();
3242 return preg_replace_callback(
3244 /\* (\$wgDBprefix|[_i]) \*/ (\w*) | # 1-2. tableName, indexName
3245 \'\{\$ (\w+) }\' | # 3. addQuotes
3246 `\{\$ (\w+) }` | # 4. addIdentifierQuotes
3247 /\*\$ (\w+) \*/ # 5. leave unencoded
3249 function ( $m ) use ( $vars ) {
3250 // Note: Because of <https://bugs.php.net/bug.php?id=51881>,
3251 // check for both nonexistent keys *and* the empty string.
3252 if ( isset( $m[1] ) && $m[1] !== '' ) {
3253 if ( $m[1] === 'i' ) {
3254 return $this->indexName( $m[2] );
3256 return $this->tableName( $m[2] );
3258 } elseif ( isset( $m[3] ) && $m[3] !== '' && array_key_exists( $m[3], $vars ) ) {
3259 return $this->addQuotes( $vars[$m[3]] );
3260 } elseif ( isset( $m[4] ) && $m[4] !== '' && array_key_exists( $m[4], $vars ) ) {
3261 return $this->addIdentifierQuotes( $vars[$m[4]] );
3262 } elseif ( isset( $m[5] ) && $m[5] !== '' && array_key_exists( $m[5], $vars ) ) {
3263 return $vars[$m[5]];
3273 * Get schema variables. If none have been set via setSchemaVars(), then
3274 * use some defaults from the current object.
3278 protected function getSchemaVars() {
3279 if ( $this->mSchemaVars
) {
3280 return $this->mSchemaVars
;
3282 return $this->getDefaultSchemaVars();
3287 * Get schema variables to use if none have been set via setSchemaVars().
3289 * Override this in derived classes to provide variables for tables.sql
3290 * and SQL patch files.
3294 protected function getDefaultSchemaVars() {
3298 public function lockIsFree( $lockName, $method ) {
3302 public function lock( $lockName, $method, $timeout = 5 ) {
3303 $this->mNamedLocksHeld
[$lockName] = 1;
3308 public function unlock( $lockName, $method ) {
3309 unset( $this->mNamedLocksHeld
[$lockName] );
3314 public function getScopedLockAndFlush( $lockKey, $fname, $timeout ) {
3315 if ( $this->writesOrCallbacksPending() ) {
3316 // This only flushes transactions to clear snapshots, not to write data
3317 throw new DBUnexpectedError(
3319 "$fname: Cannot COMMIT to clear snapshot because writes are pending."
3323 if ( !$this->lock( $lockKey, $fname, $timeout ) ) {
3327 $unlocker = new ScopedCallback( function () use ( $lockKey, $fname ) {
3328 if ( $this->trxLevel() ) {
3329 // There is a good chance an exception was thrown, causing any early return
3330 // from the caller. Let any error handler get a chance to issue rollback().
3331 // If there isn't one, let the error bubble up and trigger server-side rollback.
3332 $this->onTransactionResolution( function () use ( $lockKey, $fname ) {
3333 $this->unlock( $lockKey, $fname );
3336 $this->unlock( $lockKey, $fname );
3340 $this->commit( __METHOD__
, self
::FLUSHING_INTERNAL
);
3345 public function namedLocksEnqueue() {
3350 * Lock specific tables
3352 * @param array $read Array of tables to lock for read access
3353 * @param array $write Array of tables to lock for write access
3354 * @param string $method Name of caller
3355 * @param bool $lowPriority Whether to indicate writes to be LOW PRIORITY
3358 public function lockTables( $read, $write, $method, $lowPriority = true ) {
3363 * Unlock specific tables
3365 * @param string $method The caller
3368 public function unlockTables( $method ) {
3374 * @param string $tableName
3375 * @param string $fName
3376 * @return bool|ResultWrapper
3379 public function dropTable( $tableName, $fName = __METHOD__
) {
3380 if ( !$this->tableExists( $tableName, $fName ) ) {
3383 $sql = "DROP TABLE " . $this->tableName( $tableName );
3384 if ( $this->cascadingDeletes() ) {
3388 return $this->query( $sql, $fName );
3392 * Get search engine class. All subclasses of this need to implement this
3393 * if they wish to use searching.
3397 public function getSearchEngine() {
3398 return 'SearchEngineDummy';
3401 public function getInfinity() {
3405 public function encodeExpiry( $expiry ) {
3406 return ( $expiry == '' ||
$expiry == 'infinity' ||
$expiry == $this->getInfinity() )
3407 ?
$this->getInfinity()
3408 : $this->timestamp( $expiry );
3411 public function decodeExpiry( $expiry, $format = TS_MW
) {
3412 return ( $expiry == '' ||
$expiry == 'infinity' ||
$expiry == $this->getInfinity() )
3414 : wfTimestamp( $format, $expiry );
3417 public function setBigSelects( $value = true ) {
3421 public function isReadOnly() {
3422 return ( $this->getReadOnlyReason() !== false );
3426 * @return string|bool Reason this DB is read-only or false if it is not
3428 protected function getReadOnlyReason() {
3429 $reason = $this->getLBInfo( 'readOnlyReason' );
3431 return is_string( $reason ) ?
$reason : false;
3438 public function __toString() {
3439 return (string)$this->mConn
;
3443 * Run a few simple sanity checks
3445 public function __destruct() {
3446 if ( $this->mTrxLevel
&& $this->mTrxDoneWrites
) {
3447 trigger_error( "Uncommitted DB writes (transaction from {$this->mTrxFname})." );
3449 $danglingCallbacks = array_merge(
3450 $this->mTrxIdleCallbacks
,
3451 $this->mTrxPreCommitCallbacks
,
3452 $this->mTrxEndCallbacks
3454 if ( $danglingCallbacks ) {
3456 foreach ( $danglingCallbacks as $callbackInfo ) {
3457 $callers[] = $callbackInfo[1];
3459 $callers = implode( ', ', $callers );
3460 trigger_error( "DB transaction callbacks still pending (from $callers)." );
3468 abstract class Database
extends DatabaseBase
{
3469 // B/C until nothing type hints for DatabaseBase
3470 // @TODO: finish renaming DatabaseBase => Database