Merge "Add curly braces to while"
[mediawiki.git] / includes / db / DatabaseMysqlBase.php
blob907cdbf2482a48152a0a17999e9fd7e2449e29fb
1 <?php
2 /**
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
20 * @file
21 * @ingroup Database
24 /**
25 * Database abstraction object for MySQL.
26 * Defines methods independent on used MySQL extension.
28 * @ingroup Database
29 * @since 1.22
30 * @see Database
32 abstract class DatabaseMysqlBase extends Database {
33 /** @var MysqlMasterPos */
34 protected $lastKnownSlavePos;
35 /** @var string Method to detect slave lag */
36 protected $lagDetectionMethod;
38 /** @var string|null */
39 private $serverVersion = null;
41 /**
42 * Additional $params include:
43 * - lagDetectionMethod : set to one of (Seconds_Behind_Master,pt-heartbeat).
44 * pt-heartbeat assumes the table is at heartbeat.heartbeat
45 * and uses UTC timestamps in the heartbeat.ts column.
46 * (https://www.percona.com/doc/percona-toolkit/2.2/pt-heartbeat.html)
47 * @param array $params
49 function __construct( array $params ) {
50 parent::__construct( $params );
52 $this->lagDetectionMethod = isset( $params['lagDetectionMethod'] )
53 ? $params['lagDetectionMethod']
54 : 'Seconds_Behind_Master';
57 /**
58 * @return string
60 function getType() {
61 return 'mysql';
64 /**
65 * @param string $server
66 * @param string $user
67 * @param string $password
68 * @param string $dbName
69 * @throws Exception|DBConnectionError
70 * @return bool
72 function open( $server, $user, $password, $dbName ) {
73 global $wgAllDBsAreLocalhost, $wgSQLMode;
75 # Close/unset connection handle
76 $this->close();
78 # Debugging hack -- fake cluster
79 $realServer = $wgAllDBsAreLocalhost ? 'localhost' : $server;
80 $this->mServer = $server;
81 $this->mUser = $user;
82 $this->mPassword = $password;
83 $this->mDBname = $dbName;
85 $this->installErrorHandler();
86 try {
87 $this->mConn = $this->mysqlConnect( $realServer );
88 } catch ( Exception $ex ) {
89 $this->restoreErrorHandler();
90 throw $ex;
92 $error = $this->restoreErrorHandler();
94 # Always log connection errors
95 if ( !$this->mConn ) {
96 if ( !$error ) {
97 $error = $this->lastError();
99 wfLogDBError(
100 "Error connecting to {db_server}: {error}",
101 $this->getLogContext( array(
102 'method' => __METHOD__,
103 'error' => $error,
106 wfDebug( "DB connection error\n" .
107 "Server: $server, User: $user, Password: " .
108 substr( $password, 0, 3 ) . "..., error: " . $error . "\n" );
110 $this->reportConnectionError( $error );
113 if ( $dbName != '' ) {
114 MediaWiki\suppressWarnings();
115 $success = $this->selectDB( $dbName );
116 MediaWiki\restoreWarnings();
117 if ( !$success ) {
118 wfLogDBError(
119 "Error selecting database {db_name} on server {db_server}",
120 $this->getLogContext( array(
121 'method' => __METHOD__,
124 wfDebug( "Error selecting database $dbName on server {$this->mServer} " .
125 "from client host " . wfHostname() . "\n" );
127 $this->reportConnectionError( "Error selecting database $dbName" );
131 // Tell the server what we're communicating with
132 if ( !$this->connectInitCharset() ) {
133 $this->reportConnectionError( "Error setting character set" );
136 // Abstract over any insane MySQL defaults
137 $set = array( 'group_concat_max_len = 262144' );
138 // Set SQL mode, default is turning them all off, can be overridden or skipped with null
139 if ( is_string( $wgSQLMode ) ) {
140 $set[] = 'sql_mode = ' . $this->addQuotes( $wgSQLMode );
142 // Set any custom settings defined by site config
143 // (e.g. https://dev.mysql.com/doc/refman/4.1/en/innodb-parameters.html)
144 foreach ( $this->mSessionVars as $var => $val ) {
145 // Escape strings but not numbers to avoid MySQL complaining
146 if ( !is_int( $val ) && !is_float( $val ) ) {
147 $val = $this->addQuotes( $val );
149 $set[] = $this->addIdentifierQuotes( $var ) . ' = ' . $val;
152 if ( $set ) {
153 // Use doQuery() to avoid opening implicit transactions (DBO_TRX)
154 $success = $this->doQuery( 'SET ' . implode( ', ', $set ) );
155 if ( !$success ) {
156 wfLogDBError(
157 'Error setting MySQL variables on server {db_server} (check $wgSQLMode)',
158 $this->getLogContext( array(
159 'method' => __METHOD__,
162 $this->reportConnectionError(
163 'Error setting MySQL variables on server {db_server} (check $wgSQLMode)' );
167 $this->mOpened = true;
169 return true;
173 * Set the character set information right after connection
174 * @return bool
176 protected function connectInitCharset() {
177 global $wgDBmysql5;
179 if ( $wgDBmysql5 ) {
180 // Tell the server we're communicating with it in UTF-8.
181 // This may engage various charset conversions.
182 return $this->mysqlSetCharset( 'utf8' );
183 } else {
184 return $this->mysqlSetCharset( 'binary' );
189 * Open a connection to a MySQL server
191 * @param string $realServer
192 * @return mixed Raw connection
193 * @throws DBConnectionError
195 abstract protected function mysqlConnect( $realServer );
198 * Set the character set of the MySQL link
200 * @param string $charset
201 * @return bool
203 abstract protected function mysqlSetCharset( $charset );
206 * @param ResultWrapper|resource $res
207 * @throws DBUnexpectedError
209 function freeResult( $res ) {
210 if ( $res instanceof ResultWrapper ) {
211 $res = $res->result;
213 MediaWiki\suppressWarnings();
214 $ok = $this->mysqlFreeResult( $res );
215 MediaWiki\restoreWarnings();
216 if ( !$ok ) {
217 throw new DBUnexpectedError( $this, "Unable to free MySQL result" );
222 * Free result memory
224 * @param resource $res Raw result
225 * @return bool
227 abstract protected function mysqlFreeResult( $res );
230 * @param ResultWrapper|resource $res
231 * @return stdClass|bool
232 * @throws DBUnexpectedError
234 function fetchObject( $res ) {
235 if ( $res instanceof ResultWrapper ) {
236 $res = $res->result;
238 MediaWiki\suppressWarnings();
239 $row = $this->mysqlFetchObject( $res );
240 MediaWiki\restoreWarnings();
242 $errno = $this->lastErrno();
243 // Unfortunately, mysql_fetch_object does not reset the last errno.
244 // Only check for CR_SERVER_LOST and CR_UNKNOWN_ERROR, as
245 // these are the only errors mysql_fetch_object can cause.
246 // See http://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html.
247 if ( $errno == 2000 || $errno == 2013 ) {
248 throw new DBUnexpectedError(
249 $this,
250 'Error in fetchObject(): ' . htmlspecialchars( $this->lastError() )
254 return $row;
258 * Fetch a result row as an object
260 * @param resource $res Raw result
261 * @return stdClass
263 abstract protected function mysqlFetchObject( $res );
266 * @param ResultWrapper|resource $res
267 * @return array|bool
268 * @throws DBUnexpectedError
270 function fetchRow( $res ) {
271 if ( $res instanceof ResultWrapper ) {
272 $res = $res->result;
274 MediaWiki\suppressWarnings();
275 $row = $this->mysqlFetchArray( $res );
276 MediaWiki\restoreWarnings();
278 $errno = $this->lastErrno();
279 // Unfortunately, mysql_fetch_array does not reset the last errno.
280 // Only check for CR_SERVER_LOST and CR_UNKNOWN_ERROR, as
281 // these are the only errors mysql_fetch_array can cause.
282 // See http://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html.
283 if ( $errno == 2000 || $errno == 2013 ) {
284 throw new DBUnexpectedError(
285 $this,
286 'Error in fetchRow(): ' . htmlspecialchars( $this->lastError() )
290 return $row;
294 * Fetch a result row as an associative and numeric array
296 * @param resource $res Raw result
297 * @return array
299 abstract protected function mysqlFetchArray( $res );
302 * @throws DBUnexpectedError
303 * @param ResultWrapper|resource $res
304 * @return int
306 function numRows( $res ) {
307 if ( $res instanceof ResultWrapper ) {
308 $res = $res->result;
310 MediaWiki\suppressWarnings();
311 $n = $this->mysqlNumRows( $res );
312 MediaWiki\restoreWarnings();
314 // Unfortunately, mysql_num_rows does not reset the last errno.
315 // We are not checking for any errors here, since
316 // these are no errors mysql_num_rows can cause.
317 // See http://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html.
318 // See https://phabricator.wikimedia.org/T44430
319 return $n;
323 * Get number of rows in result
325 * @param resource $res Raw result
326 * @return int
328 abstract protected function mysqlNumRows( $res );
331 * @param ResultWrapper|resource $res
332 * @return int
334 function numFields( $res ) {
335 if ( $res instanceof ResultWrapper ) {
336 $res = $res->result;
339 return $this->mysqlNumFields( $res );
343 * Get number of fields in result
345 * @param resource $res Raw result
346 * @return int
348 abstract protected function mysqlNumFields( $res );
351 * @param ResultWrapper|resource $res
352 * @param int $n
353 * @return string
355 function fieldName( $res, $n ) {
356 if ( $res instanceof ResultWrapper ) {
357 $res = $res->result;
360 return $this->mysqlFieldName( $res, $n );
364 * Get the name of the specified field in a result
366 * @param ResultWrapper|resource $res
367 * @param int $n
368 * @return string
370 abstract protected function mysqlFieldName( $res, $n );
373 * mysql_field_type() wrapper
374 * @param ResultWrapper|resource $res
375 * @param int $n
376 * @return string
378 public function fieldType( $res, $n ) {
379 if ( $res instanceof ResultWrapper ) {
380 $res = $res->result;
383 return $this->mysqlFieldType( $res, $n );
387 * Get the type of the specified field in a result
389 * @param ResultWrapper|resource $res
390 * @param int $n
391 * @return string
393 abstract protected function mysqlFieldType( $res, $n );
396 * @param ResultWrapper|resource $res
397 * @param int $row
398 * @return bool
400 function dataSeek( $res, $row ) {
401 if ( $res instanceof ResultWrapper ) {
402 $res = $res->result;
405 return $this->mysqlDataSeek( $res, $row );
409 * Move internal result pointer
411 * @param ResultWrapper|resource $res
412 * @param int $row
413 * @return bool
415 abstract protected function mysqlDataSeek( $res, $row );
418 * @return string
420 function lastError() {
421 if ( $this->mConn ) {
422 # Even if it's non-zero, it can still be invalid
423 MediaWiki\suppressWarnings();
424 $error = $this->mysqlError( $this->mConn );
425 if ( !$error ) {
426 $error = $this->mysqlError();
428 MediaWiki\restoreWarnings();
429 } else {
430 $error = $this->mysqlError();
432 if ( $error ) {
433 $error .= ' (' . $this->mServer . ')';
436 return $error;
440 * Returns the text of the error message from previous MySQL operation
442 * @param resource $conn Raw connection
443 * @return string
445 abstract protected function mysqlError( $conn = null );
448 * @param string $table
449 * @param array $uniqueIndexes
450 * @param array $rows
451 * @param string $fname
452 * @return ResultWrapper
454 function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__ ) {
455 return $this->nativeReplace( $table, $rows, $fname );
459 * Estimate rows in dataset
460 * Returns estimated count, based on EXPLAIN output
461 * Takes same arguments as Database::select()
463 * @param string|array $table
464 * @param string|array $vars
465 * @param string|array $conds
466 * @param string $fname
467 * @param string|array $options
468 * @return bool|int
470 public function estimateRowCount( $table, $vars = '*', $conds = '',
471 $fname = __METHOD__, $options = array()
473 $options['EXPLAIN'] = true;
474 $res = $this->select( $table, $vars, $conds, $fname, $options );
475 if ( $res === false ) {
476 return false;
478 if ( !$this->numRows( $res ) ) {
479 return 0;
482 $rows = 1;
483 foreach ( $res as $plan ) {
484 $rows *= $plan->rows > 0 ? $plan->rows : 1; // avoid resetting to zero
487 return (int)$rows;
491 * @param string $table
492 * @param string $field
493 * @return bool|MySQLField
495 function fieldInfo( $table, $field ) {
496 $table = $this->tableName( $table );
497 $res = $this->query( "SELECT * FROM $table LIMIT 1", __METHOD__, true );
498 if ( !$res ) {
499 return false;
501 $n = $this->mysqlNumFields( $res->result );
502 for ( $i = 0; $i < $n; $i++ ) {
503 $meta = $this->mysqlFetchField( $res->result, $i );
504 if ( $field == $meta->name ) {
505 return new MySQLField( $meta );
509 return false;
513 * Get column information from a result
515 * @param resource $res Raw result
516 * @param int $n
517 * @return stdClass
519 abstract protected function mysqlFetchField( $res, $n );
522 * Get information about an index into an object
523 * Returns false if the index does not exist
525 * @param string $table
526 * @param string $index
527 * @param string $fname
528 * @return bool|array|null False or null on failure
530 function indexInfo( $table, $index, $fname = __METHOD__ ) {
531 # SHOW INDEX works in MySQL 3.23.58, but SHOW INDEXES does not.
532 # SHOW INDEX should work for 3.x and up:
533 # http://dev.mysql.com/doc/mysql/en/SHOW_INDEX.html
534 $table = $this->tableName( $table );
535 $index = $this->indexName( $index );
537 $sql = 'SHOW INDEX FROM ' . $table;
538 $res = $this->query( $sql, $fname );
540 if ( !$res ) {
541 return null;
544 $result = array();
546 foreach ( $res as $row ) {
547 if ( $row->Key_name == $index ) {
548 $result[] = $row;
552 return empty( $result ) ? false : $result;
556 * @param string $s
557 * @return string
559 function strencode( $s ) {
560 $sQuoted = $this->mysqlRealEscapeString( $s );
562 if ( $sQuoted === false ) {
563 $this->ping();
564 $sQuoted = $this->mysqlRealEscapeString( $s );
567 return $sQuoted;
571 * @param string $s
572 * @return mixed
574 abstract protected function mysqlRealEscapeString( $s );
577 * MySQL uses `backticks` for identifier quoting instead of the sql standard "double quotes".
579 * @param string $s
580 * @return string
582 public function addIdentifierQuotes( $s ) {
583 // Characters in the range \u0001-\uFFFF are valid in a quoted identifier
584 // Remove NUL bytes and escape backticks by doubling
585 return '`' . str_replace( array( "\0", '`' ), array( '', '``' ), $s ) . '`';
589 * @param string $name
590 * @return bool
592 public function isQuotedIdentifier( $name ) {
593 return strlen( $name ) && $name[0] == '`' && substr( $name, -1, 1 ) == '`';
597 * @return bool
599 function ping() {
600 $ping = $this->mysqlPing();
601 if ( $ping ) {
602 // Connection was good or lost but reconnected...
603 // @note: mysqlnd (php 5.6+) does not support this (PHP bug 52561)
604 return true;
607 // Try a full disconnect/reconnect cycle if ping() failed
608 $this->closeConnection();
609 $this->mOpened = false;
610 $this->mConn = false;
611 $this->open( $this->mServer, $this->mUser, $this->mPassword, $this->mDBname );
613 return true;
617 * Ping a server connection or reconnect if there is no connection
619 * @return bool
621 abstract protected function mysqlPing();
624 * Returns slave lag.
626 * This will do a SHOW SLAVE STATUS
628 * @return int
630 function getLag() {
631 if ( $this->lagDetectionMethod === 'pt-heartbeat' ) {
632 return $this->getLagFromPtHeartbeat();
633 } else {
634 return $this->getLagFromSlaveStatus();
639 * @return bool|int
641 protected function getLagFromSlaveStatus() {
642 $res = $this->query( 'SHOW SLAVE STATUS', __METHOD__ );
643 $row = $res ? $res->fetchObject() : false;
644 if ( $row && strval( $row->Seconds_Behind_Master ) !== '' ) {
645 return intval( $row->Seconds_Behind_Master );
648 return false;
652 * @return bool|float
654 protected function getLagFromPtHeartbeat() {
655 $key = wfMemcKey( 'mysql', 'master-server-id', $this->getServer() );
656 $masterId = intval( $this->srvCache->get( $key ) );
657 if ( !$masterId ) {
658 $res = $this->query( 'SHOW SLAVE STATUS', __METHOD__ );
659 $row = $res ? $res->fetchObject() : false;
660 if ( $row && strval( $row->Master_Server_Id ) !== '' ) {
661 $masterId = intval( $row->Master_Server_Id );
662 $this->srvCache->set( $key, $masterId, 30 );
666 if ( !$masterId ) {
667 return false;
670 $res = $this->query(
671 "SELECT TIMESTAMPDIFF(MICROSECOND,ts,UTC_TIMESTAMP(6)) AS Lag " .
672 "FROM heartbeat.heartbeat WHERE server_id = $masterId"
674 $row = $res ? $res->fetchObject() : false;
675 if ( $row ) {
676 return max( floatval( $row->Lag ) / 1e6, 0.0 );
679 return false;
682 public function getApproximateLagStatus() {
683 if ( $this->lagDetectionMethod === 'pt-heartbeat' ) {
684 // Disable caching since this is fast enough and we don't wan't
685 // to be *too* pessimistic by having both the cache TTL and the
686 // pt-heartbeat interval count as lag in getSessionLagStatus()
687 return parent::getApproximateLagStatus();
690 $key = wfGlobalCacheKey( 'mysql-lag', $this->getServer() );
691 $approxLag = $this->srvCache->get( $key );
692 if ( !$approxLag ) {
693 $approxLag = parent::getApproximateLagStatus();
694 $this->srvCache->set( $key, $approxLag, 1 );
697 return $approxLag;
701 * Wait for the slave to catch up to a given master position.
702 * @todo Return values for this and base class are rubbish
704 * @param DBMasterPos|MySQLMasterPos $pos
705 * @param int $timeout The maximum number of seconds to wait for synchronisation
706 * @return int Zero if the slave was past that position already,
707 * greater than zero if we waited for some period of time, less than
708 * zero if we timed out.
710 function masterPosWait( DBMasterPos $pos, $timeout ) {
711 if ( $this->lastKnownSlavePos && $this->lastKnownSlavePos->hasReached( $pos ) ) {
712 return '0'; // http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html
715 # Commit any open transactions
716 $this->commit( __METHOD__, 'flush' );
718 # Call doQuery() directly, to avoid opening a transaction if DBO_TRX is set
719 $encFile = $this->addQuotes( $pos->file );
720 $encPos = intval( $pos->pos );
721 $sql = "SELECT MASTER_POS_WAIT($encFile, $encPos, $timeout)";
722 $res = $this->doQuery( $sql );
724 $status = false;
725 if ( $res && $row = $this->fetchRow( $res ) ) {
726 $status = $row[0]; // can be NULL, -1, or 0+ per the MySQL manual
727 if ( ctype_digit( $status ) ) { // success
728 $this->lastKnownSlavePos = $pos;
732 return $status;
736 * Get the position of the master from SHOW SLAVE STATUS
738 * @return MySQLMasterPos|bool
740 function getSlavePos() {
741 $res = $this->query( 'SHOW SLAVE STATUS', 'DatabaseBase::getSlavePos' );
742 $row = $this->fetchObject( $res );
744 if ( $row ) {
745 $pos = isset( $row->Exec_master_log_pos )
746 ? $row->Exec_master_log_pos
747 : $row->Exec_Master_Log_Pos;
749 return new MySQLMasterPos( $row->Relay_Master_Log_File, $pos );
750 } else {
751 return false;
756 * Get the position of the master from SHOW MASTER STATUS
758 * @return MySQLMasterPos|bool
760 function getMasterPos() {
761 $res = $this->query( 'SHOW MASTER STATUS', 'DatabaseBase::getMasterPos' );
762 $row = $this->fetchObject( $res );
764 if ( $row ) {
765 return new MySQLMasterPos( $row->File, $row->Position );
766 } else {
767 return false;
772 * @param string $index
773 * @return string
775 function useIndexClause( $index ) {
776 return "FORCE INDEX (" . $this->indexName( $index ) . ")";
780 * @return string
782 function lowPriorityOption() {
783 return 'LOW_PRIORITY';
787 * @return string
789 public function getSoftwareLink() {
790 // MariaDB includes its name in its version string; this is how MariaDB's version of
791 // the mysql command-line client identifies MariaDB servers (see mariadb_connection()
792 // in libmysql/libmysql.c).
793 $version = $this->getServerVersion();
794 if ( strpos( $version, 'MariaDB' ) !== false || strpos( $version, '-maria-' ) !== false ) {
795 return '[{{int:version-db-mariadb-url}} MariaDB]';
798 // Percona Server's version suffix is not very distinctive, and @@version_comment
799 // doesn't give the necessary info for source builds, so assume the server is MySQL.
800 // (Even Percona's version of mysql doesn't try to make the distinction.)
801 return '[{{int:version-db-mysql-url}} MySQL]';
805 * @return string
807 public function getServerVersion() {
808 // Not using mysql_get_server_info() or similar for consistency: in the handshake,
809 // MariaDB 10 adds the prefix "5.5.5-", and only some newer client libraries strip
810 // it off (see RPL_VERSION_HACK in include/mysql_com.h).
811 if ( $this->serverVersion === null ) {
812 $this->serverVersion = $this->selectField( '', 'VERSION()', '', __METHOD__ );
814 return $this->serverVersion;
818 * @param array $options
820 public function setSessionOptions( array $options ) {
821 if ( isset( $options['connTimeout'] ) ) {
822 $timeout = (int)$options['connTimeout'];
823 $this->query( "SET net_read_timeout=$timeout" );
824 $this->query( "SET net_write_timeout=$timeout" );
829 * @param string $sql
830 * @param string $newLine
831 * @return bool
833 public function streamStatementEnd( &$sql, &$newLine ) {
834 if ( strtoupper( substr( $newLine, 0, 9 ) ) == 'DELIMITER' ) {
835 preg_match( '/^DELIMITER\s+(\S+)/', $newLine, $m );
836 $this->delimiter = $m[1];
837 $newLine = '';
840 return parent::streamStatementEnd( $sql, $newLine );
844 * Check to see if a named lock is available. This is non-blocking.
846 * @param string $lockName Name of lock to poll
847 * @param string $method Name of method calling us
848 * @return bool
849 * @since 1.20
851 public function lockIsFree( $lockName, $method ) {
852 $lockName = $this->addQuotes( $lockName );
853 $result = $this->query( "SELECT IS_FREE_LOCK($lockName) AS lockstatus", $method );
854 $row = $this->fetchObject( $result );
856 return ( $row->lockstatus == 1 );
860 * @param string $lockName
861 * @param string $method
862 * @param int $timeout
863 * @return bool
865 public function lock( $lockName, $method, $timeout = 5 ) {
866 $lockName = $this->addQuotes( $lockName );
867 $result = $this->query( "SELECT GET_LOCK($lockName, $timeout) AS lockstatus", $method );
868 $row = $this->fetchObject( $result );
870 if ( $row->lockstatus == 1 ) {
871 return true;
872 } else {
873 wfDebug( __METHOD__ . " failed to acquire lock\n" );
875 return false;
880 * FROM MYSQL DOCS:
881 * http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html#function_release-lock
882 * @param string $lockName
883 * @param string $method
884 * @return bool
886 public function unlock( $lockName, $method ) {
887 $lockName = $this->addQuotes( $lockName );
888 $result = $this->query( "SELECT RELEASE_LOCK($lockName) as lockstatus", $method );
889 $row = $this->fetchObject( $result );
891 return ( $row->lockstatus == 1 );
894 public function namedLocksEnqueue() {
895 return true;
899 * @param array $read
900 * @param array $write
901 * @param string $method
902 * @param bool $lowPriority
903 * @return bool
905 public function lockTables( $read, $write, $method, $lowPriority = true ) {
906 $items = array();
908 foreach ( $write as $table ) {
909 $tbl = $this->tableName( $table ) .
910 ( $lowPriority ? ' LOW_PRIORITY' : '' ) .
911 ' WRITE';
912 $items[] = $tbl;
914 foreach ( $read as $table ) {
915 $items[] = $this->tableName( $table ) . ' READ';
917 $sql = "LOCK TABLES " . implode( ',', $items );
918 $this->query( $sql, $method );
920 return true;
924 * @param string $method
925 * @return bool
927 public function unlockTables( $method ) {
928 $this->query( "UNLOCK TABLES", $method );
930 return true;
934 * Get search engine class. All subclasses of this
935 * need to implement this if they wish to use searching.
937 * @return string
939 public function getSearchEngine() {
940 return 'SearchMySQL';
944 * @param bool $value
946 public function setBigSelects( $value = true ) {
947 if ( $value === 'default' ) {
948 if ( $this->mDefaultBigSelects === null ) {
949 # Function hasn't been called before so it must already be set to the default
950 return;
951 } else {
952 $value = $this->mDefaultBigSelects;
954 } elseif ( $this->mDefaultBigSelects === null ) {
955 $this->mDefaultBigSelects =
956 (bool)$this->selectField( false, '@@sql_big_selects', '', __METHOD__ );
958 $encValue = $value ? '1' : '0';
959 $this->query( "SET sql_big_selects=$encValue", __METHOD__ );
963 * DELETE where the condition is a join. MySql uses multi-table deletes.
964 * @param string $delTable
965 * @param string $joinTable
966 * @param string $delVar
967 * @param string $joinVar
968 * @param array|string $conds
969 * @param bool|string $fname
970 * @throws DBUnexpectedError
971 * @return bool|ResultWrapper
973 function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds, $fname = __METHOD__ ) {
974 if ( !$conds ) {
975 throw new DBUnexpectedError( $this, 'DatabaseBase::deleteJoin() called with empty $conds' );
978 $delTable = $this->tableName( $delTable );
979 $joinTable = $this->tableName( $joinTable );
980 $sql = "DELETE $delTable FROM $delTable, $joinTable WHERE $delVar=$joinVar ";
982 if ( $conds != '*' ) {
983 $sql .= ' AND ' . $this->makeList( $conds, LIST_AND );
986 return $this->query( $sql, $fname );
990 * @param string $table
991 * @param array $rows
992 * @param array $uniqueIndexes
993 * @param array $set
994 * @param string $fname
995 * @return bool
997 public function upsert( $table, array $rows, array $uniqueIndexes,
998 array $set, $fname = __METHOD__
1000 if ( !count( $rows ) ) {
1001 return true; // nothing to do
1004 if ( !is_array( reset( $rows ) ) ) {
1005 $rows = array( $rows );
1008 $table = $this->tableName( $table );
1009 $columns = array_keys( $rows[0] );
1011 $sql = "INSERT INTO $table (" . implode( ',', $columns ) . ') VALUES ';
1012 $rowTuples = array();
1013 foreach ( $rows as $row ) {
1014 $rowTuples[] = '(' . $this->makeList( $row ) . ')';
1016 $sql .= implode( ',', $rowTuples );
1017 $sql .= " ON DUPLICATE KEY UPDATE " . $this->makeList( $set, LIST_SET );
1019 return (bool)$this->query( $sql, $fname );
1023 * Determines how long the server has been up
1025 * @return int
1027 function getServerUptime() {
1028 $vars = $this->getMysqlStatus( 'Uptime' );
1030 return (int)$vars['Uptime'];
1034 * Determines if the last failure was due to a deadlock
1036 * @return bool
1038 function wasDeadlock() {
1039 return $this->lastErrno() == 1213;
1043 * Determines if the last failure was due to a lock timeout
1045 * @return bool
1047 function wasLockTimeout() {
1048 return $this->lastErrno() == 1205;
1052 * Determines if the last query error was something that should be dealt
1053 * with by pinging the connection and reissuing the query
1055 * @return bool
1057 function wasErrorReissuable() {
1058 return $this->lastErrno() == 2013 || $this->lastErrno() == 2006;
1062 * Determines if the last failure was due to the database being read-only.
1064 * @return bool
1066 function wasReadOnlyError() {
1067 return $this->lastErrno() == 1223 ||
1068 ( $this->lastErrno() == 1290 && strpos( $this->lastError(), '--read-only' ) !== false );
1071 function wasConnectionError( $errno ) {
1072 return $errno == 2013 || $errno == 2006;
1076 * Get the underlying binding handle, mConn
1078 * Makes sure that mConn is set (disconnects and ping() failure can unset it).
1079 * This catches broken callers than catch and ignore disconnection exceptions.
1080 * Unlike checking isOpen(), this is safe to call inside of open().
1082 * @return resource|object
1083 * @throws DBUnexpectedError
1084 * @since 1.26
1086 protected function getBindingHandle() {
1087 if ( !$this->mConn ) {
1088 throw new DBUnexpectedError(
1089 $this,
1090 'DB connection was already closed or the connection dropped.'
1094 return $this->mConn;
1098 * @param string $oldName
1099 * @param string $newName
1100 * @param bool $temporary
1101 * @param string $fname
1102 * @return bool
1104 function duplicateTableStructure( $oldName, $newName, $temporary = false, $fname = __METHOD__ ) {
1105 $tmp = $temporary ? 'TEMPORARY ' : '';
1106 $newName = $this->addIdentifierQuotes( $newName );
1107 $oldName = $this->addIdentifierQuotes( $oldName );
1108 $query = "CREATE $tmp TABLE $newName (LIKE $oldName)";
1110 return $this->query( $query, $fname );
1114 * List all tables on the database
1116 * @param string $prefix Only show tables with this prefix, e.g. mw_
1117 * @param string $fname Calling function name
1118 * @return array
1120 function listTables( $prefix = null, $fname = __METHOD__ ) {
1121 $result = $this->query( "SHOW TABLES", $fname );
1123 $endArray = array();
1125 foreach ( $result as $table ) {
1126 $vars = get_object_vars( $table );
1127 $table = array_pop( $vars );
1129 if ( !$prefix || strpos( $table, $prefix ) === 0 ) {
1130 $endArray[] = $table;
1134 return $endArray;
1138 * @param string $tableName
1139 * @param string $fName
1140 * @return bool|ResultWrapper
1142 public function dropTable( $tableName, $fName = __METHOD__ ) {
1143 if ( !$this->tableExists( $tableName, $fName ) ) {
1144 return false;
1147 return $this->query( "DROP TABLE IF EXISTS " . $this->tableName( $tableName ), $fName );
1151 * @return array
1153 protected function getDefaultSchemaVars() {
1154 $vars = parent::getDefaultSchemaVars();
1155 $vars['wgDBTableOptions'] = str_replace( 'TYPE', 'ENGINE', $GLOBALS['wgDBTableOptions'] );
1156 $vars['wgDBTableOptions'] = str_replace(
1157 'CHARSET=mysql4',
1158 'CHARSET=binary',
1159 $vars['wgDBTableOptions']
1162 return $vars;
1166 * Get status information from SHOW STATUS in an associative array
1168 * @param string $which
1169 * @return array
1171 function getMysqlStatus( $which = "%" ) {
1172 $res = $this->query( "SHOW STATUS LIKE '{$which}'" );
1173 $status = array();
1175 foreach ( $res as $row ) {
1176 $status[$row->Variable_name] = $row->Value;
1179 return $status;
1183 * Lists VIEWs in the database
1185 * @param string $prefix Only show VIEWs with this prefix, eg.
1186 * unit_test_, or $wgDBprefix. Default: null, would return all views.
1187 * @param string $fname Name of calling function
1188 * @return array
1189 * @since 1.22
1191 public function listViews( $prefix = null, $fname = __METHOD__ ) {
1193 if ( !isset( $this->allViews ) ) {
1195 // The name of the column containing the name of the VIEW
1196 $propertyName = 'Tables_in_' . $this->mDBname;
1198 // Query for the VIEWS
1199 $result = $this->query( 'SHOW FULL TABLES WHERE TABLE_TYPE = "VIEW"' );
1200 $this->allViews = array();
1201 while ( ( $row = $this->fetchRow( $result ) ) !== false ) {
1202 array_push( $this->allViews, $row[$propertyName] );
1206 if ( is_null( $prefix ) || $prefix === '' ) {
1207 return $this->allViews;
1210 $filteredViews = array();
1211 foreach ( $this->allViews as $viewName ) {
1212 // Does the name of this VIEW start with the table-prefix?
1213 if ( strpos( $viewName, $prefix ) === 0 ) {
1214 array_push( $filteredViews, $viewName );
1218 return $filteredViews;
1222 * Differentiates between a TABLE and a VIEW.
1224 * @param string $name Name of the TABLE/VIEW to test
1225 * @param string $prefix
1226 * @return bool
1227 * @since 1.22
1229 public function isView( $name, $prefix = null ) {
1230 return in_array( $name, $this->listViews( $prefix ) );
1235 * Utility class.
1236 * @ingroup Database
1238 class MySQLField implements Field {
1239 private $name, $tablename, $default, $max_length, $nullable,
1240 $is_pk, $is_unique, $is_multiple, $is_key, $type, $binary,
1241 $is_numeric, $is_blob, $is_unsigned, $is_zerofill;
1243 function __construct( $info ) {
1244 $this->name = $info->name;
1245 $this->tablename = $info->table;
1246 $this->default = $info->def;
1247 $this->max_length = $info->max_length;
1248 $this->nullable = !$info->not_null;
1249 $this->is_pk = $info->primary_key;
1250 $this->is_unique = $info->unique_key;
1251 $this->is_multiple = $info->multiple_key;
1252 $this->is_key = ( $this->is_pk || $this->is_unique || $this->is_multiple );
1253 $this->type = $info->type;
1254 $this->binary = isset( $info->binary ) ? $info->binary : false;
1255 $this->is_numeric = isset( $info->numeric ) ? $info->numeric : false;
1256 $this->is_blob = isset( $info->blob ) ? $info->blob : false;
1257 $this->is_unsigned = isset( $info->unsigned ) ? $info->unsigned : false;
1258 $this->is_zerofill = isset( $info->zerofill ) ? $info->zerofill : false;
1262 * @return string
1264 function name() {
1265 return $this->name;
1269 * @return string
1271 function tableName() {
1272 return $this->tablename;
1276 * @return string
1278 function type() {
1279 return $this->type;
1283 * @return bool
1285 function isNullable() {
1286 return $this->nullable;
1289 function defaultValue() {
1290 return $this->default;
1294 * @return bool
1296 function isKey() {
1297 return $this->is_key;
1301 * @return bool
1303 function isMultipleKey() {
1304 return $this->is_multiple;
1308 * @return bool
1310 function isBinary() {
1311 return $this->binary;
1315 * @return bool
1317 function isNumeric() {
1318 return $this->is_numeric;
1322 * @return bool
1324 function isBlob() {
1325 return $this->is_blob;
1329 * @return bool
1331 function isUnsigned() {
1332 return $this->is_unsigned;
1336 * @return bool
1338 function isZerofill() {
1339 return $this->is_zerofill;
1343 class MySQLMasterPos implements DBMasterPos {
1344 /** @var string */
1345 public $file;
1346 /** @var int Position */
1347 public $pos;
1348 /** @var float UNIX timestamp */
1349 public $asOfTime = 0.0;
1351 function __construct( $file, $pos ) {
1352 $this->file = $file;
1353 $this->pos = $pos;
1354 $this->asOfTime = microtime( true );
1357 function __toString() {
1358 // e.g db1034-bin.000976/843431247
1359 return "{$this->file}/{$this->pos}";
1363 * @return array|bool (int, int)
1365 protected function getCoordinates() {
1366 $m = array();
1367 if ( preg_match( '!\.(\d+)/(\d+)$!', (string)$this, $m ) ) {
1368 return array( (int)$m[1], (int)$m[2] );
1371 return false;
1374 function hasReached( MySQLMasterPos $pos ) {
1375 $thisPos = $this->getCoordinates();
1376 $thatPos = $pos->getCoordinates();
1378 return ( $thisPos && $thatPos && $thisPos >= $thatPos );
1381 function asOfTime() {
1382 return $this->asOfTime;