3 * This is the MySQL database abstraction layer.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * Database abstraction object for MySQL.
26 * Defines methods independent on used MySQL extension.
32 abstract class DatabaseMysqlBase
extends Database
{
33 /** @var MysqlMasterPos */
34 protected $lastKnownSlavePos;
35 /** @var string Method to detect slave lag */
36 protected $lagDetectionMethod;
37 /** @var array Method to detect slave lag */
38 protected $lagDetectionOptions = [];
40 /** @var string|null */
41 private $serverVersion = null;
44 * Additional $params include:
45 * - lagDetectionMethod : set to one of (Seconds_Behind_Master,pt-heartbeat).
46 * pt-heartbeat assumes the table is at heartbeat.heartbeat
47 * and uses UTC timestamps in the heartbeat.ts column.
48 * (https://www.percona.com/doc/percona-toolkit/2.2/pt-heartbeat.html)
49 * - lagDetectionOptions : if using pt-heartbeat, this can be set to an array map to change
50 * the default behavior. Normally, the heartbeat row with the server
51 * ID of this server's master will be used. Set the "conds" field to
52 * override the query conditions, e.g. ['shard' => 's1'].
53 * @param array $params
55 function __construct( array $params ) {
56 parent
::__construct( $params );
58 $this->lagDetectionMethod
= isset( $params['lagDetectionMethod'] )
59 ?
$params['lagDetectionMethod']
60 : 'Seconds_Behind_Master';
61 $this->lagDetectionOptions
= isset( $params['lagDetectionOptions'] )
62 ?
$params['lagDetectionOptions']
74 * @param string $server
76 * @param string $password
77 * @param string $dbName
78 * @throws Exception|DBConnectionError
81 function open( $server, $user, $password, $dbName ) {
82 global $wgAllDBsAreLocalhost, $wgSQLMode;
84 # Close/unset connection handle
87 # Debugging hack -- fake cluster
88 $realServer = $wgAllDBsAreLocalhost ?
'localhost' : $server;
89 $this->mServer
= $server;
91 $this->mPassword
= $password;
92 $this->mDBname
= $dbName;
94 $this->installErrorHandler();
96 $this->mConn
= $this->mysqlConnect( $realServer );
97 } catch ( Exception
$ex ) {
98 $this->restoreErrorHandler();
101 $error = $this->restoreErrorHandler();
103 # Always log connection errors
104 if ( !$this->mConn
) {
106 $error = $this->lastError();
109 "Error connecting to {db_server}: {error}",
110 $this->getLogContext( [
111 'method' => __METHOD__
,
115 wfDebug( "DB connection error\n" .
116 "Server: $server, User: $user, Password: " .
117 substr( $password, 0, 3 ) . "..., error: " . $error . "\n" );
119 $this->reportConnectionError( $error );
122 if ( $dbName != '' ) {
123 MediaWiki\
suppressWarnings();
124 $success = $this->selectDB( $dbName );
125 MediaWiki\restoreWarnings
();
128 "Error selecting database {db_name} on server {db_server}",
129 $this->getLogContext( [
130 'method' => __METHOD__
,
133 wfDebug( "Error selecting database $dbName on server {$this->mServer} " .
134 "from client host " . wfHostname() . "\n" );
136 $this->reportConnectionError( "Error selecting database $dbName" );
140 // Tell the server what we're communicating with
141 if ( !$this->connectInitCharset() ) {
142 $this->reportConnectionError( "Error setting character set" );
145 // Abstract over any insane MySQL defaults
146 $set = [ 'group_concat_max_len = 262144' ];
147 // Set SQL mode, default is turning them all off, can be overridden or skipped with null
148 if ( is_string( $wgSQLMode ) ) {
149 $set[] = 'sql_mode = ' . $this->addQuotes( $wgSQLMode );
151 // Set any custom settings defined by site config
152 // (e.g. https://dev.mysql.com/doc/refman/4.1/en/innodb-parameters.html)
153 foreach ( $this->mSessionVars
as $var => $val ) {
154 // Escape strings but not numbers to avoid MySQL complaining
155 if ( !is_int( $val ) && !is_float( $val ) ) {
156 $val = $this->addQuotes( $val );
158 $set[] = $this->addIdentifierQuotes( $var ) . ' = ' . $val;
162 // Use doQuery() to avoid opening implicit transactions (DBO_TRX)
163 $success = $this->doQuery( 'SET ' . implode( ', ', $set ) );
166 'Error setting MySQL variables on server {db_server} (check $wgSQLMode)',
167 $this->getLogContext( [
168 'method' => __METHOD__
,
171 $this->reportConnectionError(
172 'Error setting MySQL variables on server {db_server} (check $wgSQLMode)' );
176 $this->mOpened
= true;
182 * Set the character set information right after connection
185 protected function connectInitCharset() {
189 // Tell the server we're communicating with it in UTF-8.
190 // This may engage various charset conversions.
191 return $this->mysqlSetCharset( 'utf8' );
193 return $this->mysqlSetCharset( 'binary' );
198 * Open a connection to a MySQL server
200 * @param string $realServer
201 * @return mixed Raw connection
202 * @throws DBConnectionError
204 abstract protected function mysqlConnect( $realServer );
207 * Set the character set of the MySQL link
209 * @param string $charset
212 abstract protected function mysqlSetCharset( $charset );
215 * @param ResultWrapper|resource $res
216 * @throws DBUnexpectedError
218 function freeResult( $res ) {
219 if ( $res instanceof ResultWrapper
) {
222 MediaWiki\
suppressWarnings();
223 $ok = $this->mysqlFreeResult( $res );
224 MediaWiki\restoreWarnings
();
226 throw new DBUnexpectedError( $this, "Unable to free MySQL result" );
233 * @param resource $res Raw result
236 abstract protected function mysqlFreeResult( $res );
239 * @param ResultWrapper|resource $res
240 * @return stdClass|bool
241 * @throws DBUnexpectedError
243 function fetchObject( $res ) {
244 if ( $res instanceof ResultWrapper
) {
247 MediaWiki\
suppressWarnings();
248 $row = $this->mysqlFetchObject( $res );
249 MediaWiki\restoreWarnings
();
251 $errno = $this->lastErrno();
252 // Unfortunately, mysql_fetch_object does not reset the last errno.
253 // Only check for CR_SERVER_LOST and CR_UNKNOWN_ERROR, as
254 // these are the only errors mysql_fetch_object can cause.
255 // See http://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html.
256 if ( $errno == 2000 ||
$errno == 2013 ) {
257 throw new DBUnexpectedError(
259 'Error in fetchObject(): ' . htmlspecialchars( $this->lastError() )
267 * Fetch a result row as an object
269 * @param resource $res Raw result
272 abstract protected function mysqlFetchObject( $res );
275 * @param ResultWrapper|resource $res
277 * @throws DBUnexpectedError
279 function fetchRow( $res ) {
280 if ( $res instanceof ResultWrapper
) {
283 MediaWiki\
suppressWarnings();
284 $row = $this->mysqlFetchArray( $res );
285 MediaWiki\restoreWarnings
();
287 $errno = $this->lastErrno();
288 // Unfortunately, mysql_fetch_array does not reset the last errno.
289 // Only check for CR_SERVER_LOST and CR_UNKNOWN_ERROR, as
290 // these are the only errors mysql_fetch_array can cause.
291 // See http://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html.
292 if ( $errno == 2000 ||
$errno == 2013 ) {
293 throw new DBUnexpectedError(
295 'Error in fetchRow(): ' . htmlspecialchars( $this->lastError() )
303 * Fetch a result row as an associative and numeric array
305 * @param resource $res Raw result
308 abstract protected function mysqlFetchArray( $res );
311 * @throws DBUnexpectedError
312 * @param ResultWrapper|resource $res
315 function numRows( $res ) {
316 if ( $res instanceof ResultWrapper
) {
319 MediaWiki\
suppressWarnings();
320 $n = $this->mysqlNumRows( $res );
321 MediaWiki\restoreWarnings
();
323 // Unfortunately, mysql_num_rows does not reset the last errno.
324 // We are not checking for any errors here, since
325 // these are no errors mysql_num_rows can cause.
326 // See http://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html.
327 // See https://phabricator.wikimedia.org/T44430
332 * Get number of rows in result
334 * @param resource $res Raw result
337 abstract protected function mysqlNumRows( $res );
340 * @param ResultWrapper|resource $res
343 function numFields( $res ) {
344 if ( $res instanceof ResultWrapper
) {
348 return $this->mysqlNumFields( $res );
352 * Get number of fields in result
354 * @param resource $res Raw result
357 abstract protected function mysqlNumFields( $res );
360 * @param ResultWrapper|resource $res
364 function fieldName( $res, $n ) {
365 if ( $res instanceof ResultWrapper
) {
369 return $this->mysqlFieldName( $res, $n );
373 * Get the name of the specified field in a result
375 * @param ResultWrapper|resource $res
379 abstract protected function mysqlFieldName( $res, $n );
382 * mysql_field_type() wrapper
383 * @param ResultWrapper|resource $res
387 public function fieldType( $res, $n ) {
388 if ( $res instanceof ResultWrapper
) {
392 return $this->mysqlFieldType( $res, $n );
396 * Get the type of the specified field in a result
398 * @param ResultWrapper|resource $res
402 abstract protected function mysqlFieldType( $res, $n );
405 * @param ResultWrapper|resource $res
409 function dataSeek( $res, $row ) {
410 if ( $res instanceof ResultWrapper
) {
414 return $this->mysqlDataSeek( $res, $row );
418 * Move internal result pointer
420 * @param ResultWrapper|resource $res
424 abstract protected function mysqlDataSeek( $res, $row );
429 function lastError() {
430 if ( $this->mConn
) {
431 # Even if it's non-zero, it can still be invalid
432 MediaWiki\
suppressWarnings();
433 $error = $this->mysqlError( $this->mConn
);
435 $error = $this->mysqlError();
437 MediaWiki\restoreWarnings
();
439 $error = $this->mysqlError();
442 $error .= ' (' . $this->mServer
. ')';
449 * Returns the text of the error message from previous MySQL operation
451 * @param resource $conn Raw connection
454 abstract protected function mysqlError( $conn = null );
457 * @param string $table
458 * @param array $uniqueIndexes
460 * @param string $fname
461 * @return ResultWrapper
463 function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__
) {
464 return $this->nativeReplace( $table, $rows, $fname );
468 * Estimate rows in dataset
469 * Returns estimated count, based on EXPLAIN output
470 * Takes same arguments as Database::select()
472 * @param string|array $table
473 * @param string|array $vars
474 * @param string|array $conds
475 * @param string $fname
476 * @param string|array $options
479 public function estimateRowCount( $table, $vars = '*', $conds = '',
480 $fname = __METHOD__
, $options = []
482 $options['EXPLAIN'] = true;
483 $res = $this->select( $table, $vars, $conds, $fname, $options );
484 if ( $res === false ) {
487 if ( !$this->numRows( $res ) ) {
492 foreach ( $res as $plan ) {
493 $rows *= $plan->rows
> 0 ?
$plan->rows
: 1; // avoid resetting to zero
500 * @param string $table
501 * @param string $field
502 * @return bool|MySQLField
504 function fieldInfo( $table, $field ) {
505 $table = $this->tableName( $table );
506 $res = $this->query( "SELECT * FROM $table LIMIT 1", __METHOD__
, true );
510 $n = $this->mysqlNumFields( $res->result
);
511 for ( $i = 0; $i < $n; $i++
) {
512 $meta = $this->mysqlFetchField( $res->result
, $i );
513 if ( $field == $meta->name
) {
514 return new MySQLField( $meta );
522 * Get column information from a result
524 * @param resource $res Raw result
528 abstract protected function mysqlFetchField( $res, $n );
531 * Get information about an index into an object
532 * Returns false if the index does not exist
534 * @param string $table
535 * @param string $index
536 * @param string $fname
537 * @return bool|array|null False or null on failure
539 function indexInfo( $table, $index, $fname = __METHOD__
) {
540 # SHOW INDEX works in MySQL 3.23.58, but SHOW INDEXES does not.
541 # SHOW INDEX should work for 3.x and up:
542 # http://dev.mysql.com/doc/mysql/en/SHOW_INDEX.html
543 $table = $this->tableName( $table );
544 $index = $this->indexName( $index );
546 $sql = 'SHOW INDEX FROM ' . $table;
547 $res = $this->query( $sql, $fname );
555 foreach ( $res as $row ) {
556 if ( $row->Key_name
== $index ) {
561 return empty( $result ) ?
false : $result;
568 function strencode( $s ) {
569 $sQuoted = $this->mysqlRealEscapeString( $s );
571 if ( $sQuoted === false ) {
573 $sQuoted = $this->mysqlRealEscapeString( $s );
583 abstract protected function mysqlRealEscapeString( $s );
586 * MySQL uses `backticks` for identifier quoting instead of the sql standard "double quotes".
591 public function addIdentifierQuotes( $s ) {
592 // Characters in the range \u0001-\uFFFF are valid in a quoted identifier
593 // Remove NUL bytes and escape backticks by doubling
594 return '`' . str_replace( [ "\0", '`' ], [ '', '``' ], $s ) . '`';
598 * @param string $name
601 public function isQuotedIdentifier( $name ) {
602 return strlen( $name ) && $name[0] == '`' && substr( $name, -1, 1 ) == '`';
609 $ping = $this->mysqlPing();
611 // Connection was good or lost but reconnected...
612 // @note: mysqlnd (php 5.6+) does not support this (PHP bug 52561)
616 // Try a full disconnect/reconnect cycle if ping() failed
617 $this->closeConnection();
618 $this->mOpened
= false;
619 $this->mConn
= false;
620 $this->open( $this->mServer
, $this->mUser
, $this->mPassword
, $this->mDBname
);
626 * Ping a server connection or reconnect if there is no connection
630 abstract protected function mysqlPing();
633 if ( $this->getLagDetectionMethod() === 'pt-heartbeat' ) {
634 return $this->getLagFromPtHeartbeat();
636 return $this->getLagFromSlaveStatus();
643 protected function getLagDetectionMethod() {
644 return $this->lagDetectionMethod
;
650 protected function getLagFromSlaveStatus() {
651 $res = $this->query( 'SHOW SLAVE STATUS', __METHOD__
);
652 $row = $res ?
$res->fetchObject() : false;
653 if ( $row && strval( $row->Seconds_Behind_Master
) !== '' ) {
654 return intval( $row->Seconds_Behind_Master
);
663 protected function getLagFromPtHeartbeat() {
664 $options = $this->lagDetectionOptions
;
666 if ( isset( $options['conds'] ) ) {
667 // Best method for multi-DC setups: use logical channel names
668 $data = $this->getHeartbeatData( $options['conds'] );
670 // Standard method: use master server ID (works with stock pt-heartbeat)
671 $masterInfo = $this->getMasterServerInfo();
672 if ( !$masterInfo ) {
674 "Unable to query master of {db_server} for server ID",
675 $this->getLogContext( [
676 'method' => __METHOD__
680 return false; // could not get master server ID
683 $conds = [ 'server_id' => intval( $masterInfo['serverId'] ) ];
684 $data = $this->getHeartbeatData( $conds );
687 list( $time, $nowUnix ) = $data;
688 if ( $time !== null ) {
689 // @time is in ISO format like "2015-09-25T16:48:10.000510"
690 $dateTime = new DateTime( $time, new DateTimeZone( 'UTC' ) );
691 $timeUnix = (int)$dateTime->format( 'U' ) +
$dateTime->format( 'u' ) / 1e6
;
693 return max( $nowUnix - $timeUnix, 0.0 );
697 "Unable to find pt-heartbeat row for {db_server}",
698 $this->getLogContext( [
699 'method' => __METHOD__
706 protected function getMasterServerInfo() {
707 $cache = $this->srvCache
;
708 $key = $cache->makeGlobalKey(
711 // Using one key for all cluster slaves is preferable
712 $this->getLBInfo( 'clusterMasterHost' ) ?
: $this->getServer()
715 return $cache->getWithSetCallback(
717 $cache::TTL_INDEFINITE
,
718 function () use ( $cache, $key ) {
719 // Get and leave a lock key in place for a short period
720 if ( !$cache->lock( $key, 0, 10 ) ) {
721 return false; // avoid master connection spike slams
724 $conn = $this->getLazyMasterHandle();
726 return false; // something is misconfigured
729 // Connect to and query the master; catch errors to avoid outages
731 $res = $conn->query( 'SELECT @@server_id AS id', __METHOD__
);
732 $row = $res ?
$res->fetchObject() : false;
733 $id = $row ?
(int)$row->id
: 0;
734 } catch ( DBError
$e ) {
738 // Cache the ID if it was retrieved
739 return $id ?
[ 'serverId' => $id, 'asOf' => time() ] : false;
745 * @param array $conds WHERE clause conditions to find a row
746 * @return array (heartbeat `ts` column value or null, UNIX timestamp) for the newest beat
747 * @see https://www.percona.com/doc/percona-toolkit/2.1/pt-heartbeat.html
749 protected function getHeartbeatData( array $conds ) {
750 $whereSQL = $this->makeList( $conds, LIST_AND
);
751 // Use ORDER BY for channel based queries since that field might not be UNIQUE.
752 // Note: this would use "TIMESTAMPDIFF(MICROSECOND,ts,UTC_TIMESTAMP(6))" but the
753 // percision field is not supported in MySQL <= 5.5.
755 "SELECT ts FROM heartbeat.heartbeat WHERE $whereSQL ORDER BY ts DESC LIMIT 1"
757 $row = $res ?
$res->fetchObject() : false;
759 return [ $row ?
$row->ts
: null, microtime( true ) ];
762 public function getApproximateLagStatus() {
763 if ( $this->getLagDetectionMethod() === 'pt-heartbeat' ) {
764 // Disable caching since this is fast enough and we don't wan't
765 // to be *too* pessimistic by having both the cache TTL and the
766 // pt-heartbeat interval count as lag in getSessionLagStatus()
767 return parent
::getApproximateLagStatus();
770 $key = $this->srvCache
->makeGlobalKey( 'mysql-lag', $this->getServer() );
771 $approxLag = $this->srvCache
->get( $key );
773 $approxLag = parent
::getApproximateLagStatus();
774 $this->srvCache
->set( $key, $approxLag, 1 );
780 function masterPosWait( DBMasterPos
$pos, $timeout ) {
781 if ( !( $pos instanceof MySQLMasterPos
) ) {
782 throw new InvalidArgumentException( "Position not an instance of MySQLMasterPos" );
785 if ( $this->lastKnownSlavePos
&& $this->lastKnownSlavePos
->hasReached( $pos ) ) {
789 # Commit any open transactions
790 $this->commit( __METHOD__
, 'flush' );
792 # Call doQuery() directly, to avoid opening a transaction if DBO_TRX is set
793 $encFile = $this->addQuotes( $pos->file
);
794 $encPos = intval( $pos->pos
);
795 $res = $this->doQuery( "SELECT MASTER_POS_WAIT($encFile, $encPos, $timeout)" );
797 $row = $res ?
$this->fetchRow( $res ) : false;
799 throw new DBExpectedError( $this, "Failed to query MASTER_POS_WAIT()" );
802 // Result can be NULL (error), -1 (timeout), or 0+ per the MySQL manual
803 $status = ( $row[0] !== null ) ?
intval( $row[0] ) : null;
804 if ( $status === null ) {
805 // T126436: jobs programmed to wait on master positions might be referencing binlogs
806 // with an old master hostname. Such calls make MASTER_POS_WAIT() return null. Try
807 // to detect this and treat the slave as having reached the position; a proper master
808 // switchover already requires that the new master be caught up before the switch.
809 $slavePos = $this->getSlavePos();
810 if ( $slavePos && !$slavePos->channelsMatch( $pos ) ) {
811 $this->lastKnownSlavePos
= $slavePos;
814 } elseif ( $status >= 0 ) {
815 // Remember that this position was reached to save queries next time
816 $this->lastKnownSlavePos
= $pos;
823 * Get the position of the master from SHOW SLAVE STATUS
825 * @return MySQLMasterPos|bool
827 function getSlavePos() {
828 $res = $this->query( 'SHOW SLAVE STATUS', 'DatabaseBase::getSlavePos' );
829 $row = $this->fetchObject( $res );
832 $pos = isset( $row->Exec_master_log_pos
)
833 ?
$row->Exec_master_log_pos
834 : $row->Exec_Master_Log_Pos
;
836 return new MySQLMasterPos( $row->Relay_Master_Log_File
, $pos );
843 * Get the position of the master from SHOW MASTER STATUS
845 * @return MySQLMasterPos|bool
847 function getMasterPos() {
848 $res = $this->query( 'SHOW MASTER STATUS', 'DatabaseBase::getMasterPos' );
849 $row = $this->fetchObject( $res );
852 return new MySQLMasterPos( $row->File
, $row->Position
);
859 * @param string $index
862 function useIndexClause( $index ) {
863 return "FORCE INDEX (" . $this->indexName( $index ) . ")";
869 function lowPriorityOption() {
870 return 'LOW_PRIORITY';
876 public function getSoftwareLink() {
877 // MariaDB includes its name in its version string; this is how MariaDB's version of
878 // the mysql command-line client identifies MariaDB servers (see mariadb_connection()
879 // in libmysql/libmysql.c).
880 $version = $this->getServerVersion();
881 if ( strpos( $version, 'MariaDB' ) !== false ||
strpos( $version, '-maria-' ) !== false ) {
882 return '[{{int:version-db-mariadb-url}} MariaDB]';
885 // Percona Server's version suffix is not very distinctive, and @@version_comment
886 // doesn't give the necessary info for source builds, so assume the server is MySQL.
887 // (Even Percona's version of mysql doesn't try to make the distinction.)
888 return '[{{int:version-db-mysql-url}} MySQL]';
894 public function getServerVersion() {
895 // Not using mysql_get_server_info() or similar for consistency: in the handshake,
896 // MariaDB 10 adds the prefix "5.5.5-", and only some newer client libraries strip
897 // it off (see RPL_VERSION_HACK in include/mysql_com.h).
898 if ( $this->serverVersion
=== null ) {
899 $this->serverVersion
= $this->selectField( '', 'VERSION()', '', __METHOD__
);
901 return $this->serverVersion
;
905 * @param array $options
907 public function setSessionOptions( array $options ) {
908 if ( isset( $options['connTimeout'] ) ) {
909 $timeout = (int)$options['connTimeout'];
910 $this->query( "SET net_read_timeout=$timeout" );
911 $this->query( "SET net_write_timeout=$timeout" );
917 * @param string $newLine
920 public function streamStatementEnd( &$sql, &$newLine ) {
921 if ( strtoupper( substr( $newLine, 0, 9 ) ) == 'DELIMITER' ) {
922 preg_match( '/^DELIMITER\s+(\S+)/', $newLine, $m );
923 $this->delimiter
= $m[1];
927 return parent
::streamStatementEnd( $sql, $newLine );
931 * Check to see if a named lock is available. This is non-blocking.
933 * @param string $lockName Name of lock to poll
934 * @param string $method Name of method calling us
938 public function lockIsFree( $lockName, $method ) {
939 $lockName = $this->addQuotes( $this->makeLockName( $lockName ) );
940 $result = $this->query( "SELECT IS_FREE_LOCK($lockName) AS lockstatus", $method );
941 $row = $this->fetchObject( $result );
943 return ( $row->lockstatus
== 1 );
947 * @param string $lockName
948 * @param string $method
949 * @param int $timeout
952 public function lock( $lockName, $method, $timeout = 5 ) {
953 $lockName = $this->addQuotes( $this->makeLockName( $lockName ) );
954 $result = $this->query( "SELECT GET_LOCK($lockName, $timeout) AS lockstatus", $method );
955 $row = $this->fetchObject( $result );
957 if ( $row->lockstatus
== 1 ) {
958 parent
::lock( $lockName, $method, $timeout ); // record
962 wfDebug( __METHOD__
. " failed to acquire lock\n" );
969 * http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html#function_release-lock
970 * @param string $lockName
971 * @param string $method
974 public function unlock( $lockName, $method ) {
975 $lockName = $this->addQuotes( $this->makeLockName( $lockName ) );
976 $result = $this->query( "SELECT RELEASE_LOCK($lockName) as lockstatus", $method );
977 $row = $this->fetchObject( $result );
979 if ( $row->lockstatus
== 1 ) {
980 parent
::unlock( $lockName, $method ); // record
984 wfDebug( __METHOD__
. " failed to release lock\n" );
989 private function makeLockName( $lockName ) {
990 // http://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html#function_get-lock
991 // Newer version enforce a 64 char length limit.
992 return ( strlen( $lockName ) > 64 ) ?
sha1( $lockName ) : $lockName;
995 public function namedLocksEnqueue() {
1000 * @param array $read
1001 * @param array $write
1002 * @param string $method
1003 * @param bool $lowPriority
1006 public function lockTables( $read, $write, $method, $lowPriority = true ) {
1009 foreach ( $write as $table ) {
1010 $tbl = $this->tableName( $table ) .
1011 ( $lowPriority ?
' LOW_PRIORITY' : '' ) .
1015 foreach ( $read as $table ) {
1016 $items[] = $this->tableName( $table ) . ' READ';
1018 $sql = "LOCK TABLES " . implode( ',', $items );
1019 $this->query( $sql, $method );
1025 * @param string $method
1028 public function unlockTables( $method ) {
1029 $this->query( "UNLOCK TABLES", $method );
1035 * Get search engine class. All subclasses of this
1036 * need to implement this if they wish to use searching.
1040 public function getSearchEngine() {
1041 return 'SearchMySQL';
1045 * @param bool $value
1047 public function setBigSelects( $value = true ) {
1048 if ( $value === 'default' ) {
1049 if ( $this->mDefaultBigSelects
=== null ) {
1050 # Function hasn't been called before so it must already be set to the default
1053 $value = $this->mDefaultBigSelects
;
1055 } elseif ( $this->mDefaultBigSelects
=== null ) {
1056 $this->mDefaultBigSelects
=
1057 (bool)$this->selectField( false, '@@sql_big_selects', '', __METHOD__
);
1059 $encValue = $value ?
'1' : '0';
1060 $this->query( "SET sql_big_selects=$encValue", __METHOD__
);
1064 * DELETE where the condition is a join. MySql uses multi-table deletes.
1065 * @param string $delTable
1066 * @param string $joinTable
1067 * @param string $delVar
1068 * @param string $joinVar
1069 * @param array|string $conds
1070 * @param bool|string $fname
1071 * @throws DBUnexpectedError
1072 * @return bool|ResultWrapper
1074 function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds, $fname = __METHOD__
) {
1076 throw new DBUnexpectedError( $this, 'DatabaseBase::deleteJoin() called with empty $conds' );
1079 $delTable = $this->tableName( $delTable );
1080 $joinTable = $this->tableName( $joinTable );
1081 $sql = "DELETE $delTable FROM $delTable, $joinTable WHERE $delVar=$joinVar ";
1083 if ( $conds != '*' ) {
1084 $sql .= ' AND ' . $this->makeList( $conds, LIST_AND
);
1087 return $this->query( $sql, $fname );
1091 * @param string $table
1092 * @param array $rows
1093 * @param array $uniqueIndexes
1095 * @param string $fname
1098 public function upsert( $table, array $rows, array $uniqueIndexes,
1099 array $set, $fname = __METHOD__
1101 if ( !count( $rows ) ) {
1102 return true; // nothing to do
1105 if ( !is_array( reset( $rows ) ) ) {
1109 $table = $this->tableName( $table );
1110 $columns = array_keys( $rows[0] );
1112 $sql = "INSERT INTO $table (" . implode( ',', $columns ) . ') VALUES ';
1114 foreach ( $rows as $row ) {
1115 $rowTuples[] = '(' . $this->makeList( $row ) . ')';
1117 $sql .= implode( ',', $rowTuples );
1118 $sql .= " ON DUPLICATE KEY UPDATE " . $this->makeList( $set, LIST_SET
);
1120 return (bool)$this->query( $sql, $fname );
1124 * Determines how long the server has been up
1128 function getServerUptime() {
1129 $vars = $this->getMysqlStatus( 'Uptime' );
1131 return (int)$vars['Uptime'];
1135 * Determines if the last failure was due to a deadlock
1139 function wasDeadlock() {
1140 return $this->lastErrno() == 1213;
1144 * Determines if the last failure was due to a lock timeout
1148 function wasLockTimeout() {
1149 return $this->lastErrno() == 1205;
1153 * Determines if the last query error was something that should be dealt
1154 * with by pinging the connection and reissuing the query
1158 function wasErrorReissuable() {
1159 return $this->lastErrno() == 2013 ||
$this->lastErrno() == 2006;
1163 * Determines if the last failure was due to the database being read-only.
1167 function wasReadOnlyError() {
1168 return $this->lastErrno() == 1223 ||
1169 ( $this->lastErrno() == 1290 && strpos( $this->lastError(), '--read-only' ) !== false );
1172 function wasConnectionError( $errno ) {
1173 return $errno == 2013 ||
$errno == 2006;
1177 * Get the underlying binding handle, mConn
1179 * Makes sure that mConn is set (disconnects and ping() failure can unset it).
1180 * This catches broken callers than catch and ignore disconnection exceptions.
1181 * Unlike checking isOpen(), this is safe to call inside of open().
1183 * @return resource|object
1184 * @throws DBUnexpectedError
1187 protected function getBindingHandle() {
1188 if ( !$this->mConn
) {
1189 throw new DBUnexpectedError(
1191 'DB connection was already closed or the connection dropped.'
1195 return $this->mConn
;
1199 * @param string $oldName
1200 * @param string $newName
1201 * @param bool $temporary
1202 * @param string $fname
1205 function duplicateTableStructure( $oldName, $newName, $temporary = false, $fname = __METHOD__
) {
1206 $tmp = $temporary ?
'TEMPORARY ' : '';
1207 $newName = $this->addIdentifierQuotes( $newName );
1208 $oldName = $this->addIdentifierQuotes( $oldName );
1209 $query = "CREATE $tmp TABLE $newName (LIKE $oldName)";
1211 return $this->query( $query, $fname );
1215 * List all tables on the database
1217 * @param string $prefix Only show tables with this prefix, e.g. mw_
1218 * @param string $fname Calling function name
1221 function listTables( $prefix = null, $fname = __METHOD__
) {
1222 $result = $this->query( "SHOW TABLES", $fname );
1226 foreach ( $result as $table ) {
1227 $vars = get_object_vars( $table );
1228 $table = array_pop( $vars );
1230 if ( !$prefix ||
strpos( $table, $prefix ) === 0 ) {
1231 $endArray[] = $table;
1239 * @param string $tableName
1240 * @param string $fName
1241 * @return bool|ResultWrapper
1243 public function dropTable( $tableName, $fName = __METHOD__
) {
1244 if ( !$this->tableExists( $tableName, $fName ) ) {
1248 return $this->query( "DROP TABLE IF EXISTS " . $this->tableName( $tableName ), $fName );
1254 protected function getDefaultSchemaVars() {
1255 $vars = parent
::getDefaultSchemaVars();
1256 $vars['wgDBTableOptions'] = str_replace( 'TYPE', 'ENGINE', $GLOBALS['wgDBTableOptions'] );
1257 $vars['wgDBTableOptions'] = str_replace(
1260 $vars['wgDBTableOptions']
1267 * Get status information from SHOW STATUS in an associative array
1269 * @param string $which
1272 function getMysqlStatus( $which = "%" ) {
1273 $res = $this->query( "SHOW STATUS LIKE '{$which}'" );
1276 foreach ( $res as $row ) {
1277 $status[$row->Variable_name
] = $row->Value
;
1284 * Lists VIEWs in the database
1286 * @param string $prefix Only show VIEWs with this prefix, eg.
1287 * unit_test_, or $wgDBprefix. Default: null, would return all views.
1288 * @param string $fname Name of calling function
1292 public function listViews( $prefix = null, $fname = __METHOD__
) {
1294 if ( !isset( $this->allViews
) ) {
1296 // The name of the column containing the name of the VIEW
1297 $propertyName = 'Tables_in_' . $this->mDBname
;
1299 // Query for the VIEWS
1300 $result = $this->query( 'SHOW FULL TABLES WHERE TABLE_TYPE = "VIEW"' );
1301 $this->allViews
= [];
1302 while ( ( $row = $this->fetchRow( $result ) ) !== false ) {
1303 array_push( $this->allViews
, $row[$propertyName] );
1307 if ( is_null( $prefix ) ||
$prefix === '' ) {
1308 return $this->allViews
;
1311 $filteredViews = [];
1312 foreach ( $this->allViews
as $viewName ) {
1313 // Does the name of this VIEW start with the table-prefix?
1314 if ( strpos( $viewName, $prefix ) === 0 ) {
1315 array_push( $filteredViews, $viewName );
1319 return $filteredViews;
1323 * Differentiates between a TABLE and a VIEW.
1325 * @param string $name Name of the TABLE/VIEW to test
1326 * @param string $prefix
1330 public function isView( $name, $prefix = null ) {
1331 return in_array( $name, $this->listViews( $prefix ) );
1339 class MySQLField
implements Field
{
1340 private $name, $tablename, $default, $max_length, $nullable,
1341 $is_pk, $is_unique, $is_multiple, $is_key, $type, $binary,
1342 $is_numeric, $is_blob, $is_unsigned, $is_zerofill;
1344 function __construct( $info ) {
1345 $this->name
= $info->name
;
1346 $this->tablename
= $info->table
;
1347 $this->default = $info->def
;
1348 $this->max_length
= $info->max_length
;
1349 $this->nullable
= !$info->not_null
;
1350 $this->is_pk
= $info->primary_key
;
1351 $this->is_unique
= $info->unique_key
;
1352 $this->is_multiple
= $info->multiple_key
;
1353 $this->is_key
= ( $this->is_pk ||
$this->is_unique ||
$this->is_multiple
);
1354 $this->type
= $info->type
;
1355 $this->binary
= isset( $info->binary
) ?
$info->binary
: false;
1356 $this->is_numeric
= isset( $info->numeric ) ?
$info->numeric : false;
1357 $this->is_blob
= isset( $info->blob
) ?
$info->blob
: false;
1358 $this->is_unsigned
= isset( $info->unsigned
) ?
$info->unsigned
: false;
1359 $this->is_zerofill
= isset( $info->zerofill
) ?
$info->zerofill
: false;
1372 function tableName() {
1373 return $this->tablename
;
1386 function isNullable() {
1387 return $this->nullable
;
1390 function defaultValue() {
1391 return $this->default;
1398 return $this->is_key
;
1404 function isMultipleKey() {
1405 return $this->is_multiple
;
1411 function isBinary() {
1412 return $this->binary
;
1418 function isNumeric() {
1419 return $this->is_numeric
;
1426 return $this->is_blob
;
1432 function isUnsigned() {
1433 return $this->is_unsigned
;
1439 function isZerofill() {
1440 return $this->is_zerofill
;
1444 class MySQLMasterPos
implements DBMasterPos
{
1447 /** @var int Position */
1449 /** @var float UNIX timestamp */
1450 public $asOfTime = 0.0;
1452 function __construct( $file, $pos ) {
1453 $this->file
= $file;
1455 $this->asOfTime
= microtime( true );
1458 function asOfTime() {
1459 return $this->asOfTime
;
1462 function hasReached( DBMasterPos
$pos ) {
1463 if ( !( $pos instanceof self
) ) {
1464 throw new InvalidArgumentException( "Position not an instance of " . __CLASS__
);
1467 $thisPos = $this->getCoordinates();
1468 $thatPos = $pos->getCoordinates();
1470 return ( $thisPos && $thatPos && $thisPos >= $thatPos );
1473 function channelsMatch( DBMasterPos
$pos ) {
1474 if ( !( $pos instanceof self
) ) {
1475 throw new InvalidArgumentException( "Position not an instance of " . __CLASS__
);
1478 $thisBinlog = $this->getBinlogName();
1479 $thatBinlog = $pos->getBinlogName();
1481 return ( $thisBinlog !== false && $thisBinlog === $thatBinlog );
1484 function __toString() {
1485 // e.g db1034-bin.000976/843431247
1486 return "{$this->file}/{$this->pos}";
1490 * @return string|bool
1492 protected function getBinlogName() {
1494 if ( preg_match( '!^(.+)\.(\d+)/(\d+)$!', (string)$this, $m ) ) {
1502 * @return array|bool (int, int)
1504 protected function getCoordinates() {
1506 if ( preg_match( '!\.(\d+)/(\d+)$!', (string)$this, $m ) ) {
1507 return [ (int)$m[1], (int)$m[2] ];