Per MaxSem CR on r77597, make $alias paramater optional, as per the documentation
[mediawiki.git] / includes / db / Database.php
blob1543489874a38aa954de27e6eb8782e8707cfb9e
1 <?php
2 /**
3 * @defgroup Database Database
5 * @file
6 * @ingroup Database
7 * This file deals with database interface functions
8 * and query specifics/optimisations
9 */
11 /** Number of times to re-try an operation in case of deadlock */
12 define( 'DEADLOCK_TRIES', 4 );
13 /** Minimum time to wait before retry, in microseconds */
14 define( 'DEADLOCK_DELAY_MIN', 500000 );
15 /** Maximum time to wait before retry */
16 define( 'DEADLOCK_DELAY_MAX', 1500000 );
18 /**
19 * Base interface for all DBMS-specific code. At a bare minimum, all of the
20 * following must be implemented to support MediaWiki
22 * @file
23 * @ingroup Database
25 interface DatabaseType {
26 /**
27 * Get the type of the DBMS, as it appears in $wgDBtype.
29 * @return string
31 public function getType();
33 /**
34 * Open a connection to the database. Usually aborts on failure
36 * @param $server String: database server host
37 * @param $user String: database user name
38 * @param $password String: database user password
39 * @param $dbName String: database name
40 * @return bool
41 * @throws DBConnectionError
43 public function open( $server, $user, $password, $dbName );
45 /**
46 * The DBMS-dependent part of query()
47 * @todo Fixme: Make this private someday
49 * @param $sql String: SQL query.
50 * @return Result object to feed to fetchObject, fetchRow, ...; or false on failure
51 * @private
53 /*private*/ function doQuery( $sql );
55 /**
56 * Fetch the next row from the given result object, in object form.
57 * Fields can be retrieved with $row->fieldname, with fields acting like
58 * member variables.
60 * @param $res SQL result object as returned from DatabaseBase::query(), etc.
61 * @return Row object
62 * @throws DBUnexpectedError Thrown if the database returns an error
64 public function fetchObject( $res );
66 /**
67 * Fetch the next row from the given result object, in associative array
68 * form. Fields are retrieved with $row['fieldname'].
70 * @param $res SQL result object as returned from DatabaseBase::query(), etc.
71 * @return Row object
72 * @throws DBUnexpectedError Thrown if the database returns an error
74 public function fetchRow( $res );
76 /**
77 * Get the number of rows in a result object
79 * @param $res Mixed: A SQL result
80 * @return int
82 public function numRows( $res );
84 /**
85 * Get the number of fields in a result object
86 * @see http://www.php.net/mysql_num_fields
88 * @param $res Mixed: A SQL result
89 * @return int
91 public function numFields( $res );
93 /**
94 * Get a field name in a result object
95 * @see http://www.php.net/mysql_field_name
97 * @param $res Mixed: A SQL result
98 * @param $n Integer
99 * @return string
101 public function fieldName( $res, $n );
104 * Get the inserted value of an auto-increment row
106 * The value inserted should be fetched from nextSequenceValue()
108 * Example:
109 * $id = $dbw->nextSequenceValue('page_page_id_seq');
110 * $dbw->insert('page',array('page_id' => $id));
111 * $id = $dbw->insertId();
113 * @return int
115 public function insertId();
118 * Change the position of the cursor in a result object
119 * @see http://www.php.net/mysql_data_seek
121 * @param $res Mixed: A SQL result
122 * @param $row Mixed: Either MySQL row or ResultWrapper
124 public function dataSeek( $res, $row );
127 * Get the last error number
128 * @see http://www.php.net/mysql_errno
130 * @return int
132 public function lastErrno();
135 * Get a description of the last error
136 * @see http://www.php.net/mysql_error
138 * @return string
140 public function lastError();
143 * mysql_fetch_field() wrapper
144 * Returns false if the field doesn't exist
146 * @param $table string: table name
147 * @param $field string: field name
149 public function fieldInfo( $table, $field );
152 * Get information about an index into an object
153 * @param $table string: Table name
154 * @param $index string: Index name
155 * @param $fname string: Calling function name
156 * @return Mixed: Database-specific index description class or false if the index does not exist
158 function indexInfo( $table, $index, $fname = 'Database::indexInfo' );
161 * Get the number of rows affected by the last write query
162 * @see http://www.php.net/mysql_affected_rows
164 * @return int
166 public function affectedRows();
169 * Wrapper for addslashes()
171 * @param $s string: to be slashed.
172 * @return string: slashed string.
174 public function strencode( $s );
177 * Returns a wikitext link to the DB's website, e.g.,
178 * return "[http://www.mysql.com/ MySQL]";
179 * Should at least contain plain text, if for some reason
180 * your database has no website.
182 * @return string: wikitext of a link to the server software's web site
184 public static function getSoftwareLink();
187 * A string describing the current software version, like from
188 * mysql_get_server_info().
190 * @return string: Version information from the database server.
192 public function getServerVersion();
195 * A string describing the current software version, and possibly
196 * other details in a user-friendly way. Will be listed on Special:Version, etc.
197 * Use getServerVersion() to get machine-friendly information.
199 * @return string: Version information from the database server
201 public function getServerInfo();
205 * Database abstraction object
206 * @ingroup Database
208 abstract class DatabaseBase implements DatabaseType {
210 # ------------------------------------------------------------------------------
211 # Variables
212 # ------------------------------------------------------------------------------
214 protected $mLastQuery = '';
215 protected $mDoneWrites = false;
216 protected $mPHPError = false;
218 protected $mServer, $mUser, $mPassword, $mConn = null, $mDBname;
219 protected $mOpened = false;
221 protected $mTablePrefix;
222 protected $mFlags;
223 protected $mTrxLevel = 0;
224 protected $mErrorCount = 0;
225 protected $mLBInfo = array();
226 protected $mFakeSlaveLag = null, $mFakeMaster = false;
227 protected $mDefaultBigSelects = null;
229 # ------------------------------------------------------------------------------
230 # Accessors
231 # ------------------------------------------------------------------------------
232 # These optionally set a variable and return the previous state
235 * A string describing the current software version, and possibly
236 * other details in a user-friendly way. Will be listed on Special:Version, etc.
237 * Use getServerVersion() to get machine-friendly information.
239 * @return string: Version information from the database server
241 public function getServerInfo() {
242 return $this->getServerVersion();
246 * Boolean, controls output of large amounts of debug information
248 function debug( $debug = null ) {
249 return wfSetBit( $this->mFlags, DBO_DEBUG, $debug );
253 * Turns buffering of SQL result sets on (true) or off (false).
254 * Default is "on" and it should not be changed without good reasons.
256 function bufferResults( $buffer = null ) {
257 if ( is_null( $buffer ) ) {
258 return !(bool)( $this->mFlags & DBO_NOBUFFER );
259 } else {
260 return !wfSetBit( $this->mFlags, DBO_NOBUFFER, !$buffer );
265 * Turns on (false) or off (true) the automatic generation and sending
266 * of a "we're sorry, but there has been a database error" page on
267 * database errors. Default is on (false). When turned off, the
268 * code should use lastErrno() and lastError() to handle the
269 * situation as appropriate.
271 function ignoreErrors( $ignoreErrors = null ) {
272 return wfSetBit( $this->mFlags, DBO_IGNORE, $ignoreErrors );
276 * The current depth of nested transactions
277 * @param $level Integer: , default NULL.
279 function trxLevel( $level = null ) {
280 return wfSetVar( $this->mTrxLevel, $level );
284 * Number of errors logged, only useful when errors are ignored
286 function errorCount( $count = null ) {
287 return wfSetVar( $this->mErrorCount, $count );
290 function tablePrefix( $prefix = null ) {
291 return wfSetVar( $this->mTablePrefix, $prefix );
295 * Properties passed down from the server info array of the load balancer
297 function getLBInfo( $name = null ) {
298 if ( is_null( $name ) ) {
299 return $this->mLBInfo;
300 } else {
301 if ( array_key_exists( $name, $this->mLBInfo ) ) {
302 return $this->mLBInfo[$name];
303 } else {
304 return null;
309 function setLBInfo( $name, $value = null ) {
310 if ( is_null( $value ) ) {
311 $this->mLBInfo = $name;
312 } else {
313 $this->mLBInfo[$name] = $value;
318 * Set lag time in seconds for a fake slave
320 function setFakeSlaveLag( $lag ) {
321 $this->mFakeSlaveLag = $lag;
325 * Make this connection a fake master
327 function setFakeMaster( $enabled = true ) {
328 $this->mFakeMaster = $enabled;
332 * Returns true if this database supports (and uses) cascading deletes
334 function cascadingDeletes() {
335 return false;
339 * Returns true if this database supports (and uses) triggers (e.g. on the page table)
341 function cleanupTriggers() {
342 return false;
346 * Returns true if this database is strict about what can be put into an IP field.
347 * Specifically, it uses a NULL value instead of an empty string.
349 function strictIPs() {
350 return false;
354 * Returns true if this database uses timestamps rather than integers
356 function realTimestamps() {
357 return false;
361 * Returns true if this database does an implicit sort when doing GROUP BY
363 function implicitGroupby() {
364 return true;
368 * Returns true if this database does an implicit order by when the column has an index
369 * For example: SELECT page_title FROM page LIMIT 1
371 function implicitOrderby() {
372 return true;
376 * Returns true if this database requires that SELECT DISTINCT queries require that all
377 ORDER BY expressions occur in the SELECT list per the SQL92 standard
379 function standardSelectDistinct() {
380 return true;
384 * Returns true if this database can do a native search on IP columns
385 * e.g. this works as expected: .. WHERE rc_ip = '127.42.12.102/32';
387 function searchableIPs() {
388 return false;
392 * Returns true if this database can use functional indexes
394 function functionalIndexes() {
395 return false;
399 * Return the last query that went through DatabaseBase::query()
400 * @return String
402 function lastQuery() { return $this->mLastQuery; }
406 * Returns true if the connection may have been used for write queries.
407 * Should return true if unsure.
409 function doneWrites() { return $this->mDoneWrites; }
412 * Is a connection to the database open?
413 * @return Boolean
415 function isOpen() { return $this->mOpened; }
418 * Set a flag for this connection
420 * @param $flag Integer: DBO_* constants from Defines.php:
421 * - DBO_DEBUG: output some debug info (same as debug())
422 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
423 * - DBO_IGNORE: ignore errors (same as ignoreErrors())
424 * - DBO_TRX: automatically start transactions
425 * - DBO_DEFAULT: automatically sets DBO_TRX if not in command line mode
426 * and removes it in command line mode
427 * - DBO_PERSISTENT: use persistant database connection
429 function setFlag( $flag ) {
430 $this->mFlags |= $flag;
434 * Clear a flag for this connection
436 * @param $flag: same as setFlag()'s $flag param
438 function clearFlag( $flag ) {
439 $this->mFlags &= ~$flag;
443 * Returns a boolean whether the flag $flag is set for this connection
445 * @param $flag: same as setFlag()'s $flag param
446 * @return Boolean
448 function getFlag( $flag ) {
449 return !!( $this->mFlags & $flag );
453 * General read-only accessor
455 function getProperty( $name ) {
456 return $this->$name;
459 function getWikiID() {
460 if ( $this->mTablePrefix ) {
461 return "{$this->mDBname}-{$this->mTablePrefix}";
462 } else {
463 return $this->mDBname;
468 * Return a path to the DBMS-specific schema, otherwise default to tables.sql
470 public function getSchema() {
471 global $IP;
472 if ( file_exists( "$IP/maintenance/" . $this->getType() . "/tables.sql" ) ) {
473 return "$IP/maintenance/" . $this->getType() . "/tables.sql";
474 } else {
475 return "$IP/maintenance/tables.sql";
479 # ------------------------------------------------------------------------------
480 # Other functions
481 # ------------------------------------------------------------------------------
484 * Constructor.
485 * @param $server String: database server host
486 * @param $user String: database user name
487 * @param $password String: database user password
488 * @param $dbName String: database name
489 * @param $flags
490 * @param $tablePrefix String: database table prefixes. By default use the prefix gave in LocalSettings.php
492 function __construct( $server = false, $user = false, $password = false, $dbName = false,
493 $flags = 0, $tablePrefix = 'get from global'
495 global $wgOut, $wgDBprefix, $wgCommandLineMode;
497 # Can't get a reference if it hasn't been set yet
498 if ( !isset( $wgOut ) ) {
499 $wgOut = null;
501 $this->mFlags = $flags;
503 if ( $this->mFlags & DBO_DEFAULT ) {
504 if ( $wgCommandLineMode ) {
505 $this->mFlags &= ~DBO_TRX;
506 } else {
507 $this->mFlags |= DBO_TRX;
512 // Faster read-only access
513 if ( wfReadOnly() ) {
514 $this->mFlags |= DBO_PERSISTENT;
515 $this->mFlags &= ~DBO_TRX;
518 /** Get the default table prefix*/
519 if ( $tablePrefix == 'get from global' ) {
520 $this->mTablePrefix = $wgDBprefix;
521 } else {
522 $this->mTablePrefix = $tablePrefix;
525 if ( $server ) {
526 $this->open( $server, $user, $password, $dbName );
531 * Same as new DatabaseMysql( ... ), kept for backward compatibility
532 * @param $server String: database server host
533 * @param $user String: database user name
534 * @param $password String: database user password
535 * @param $dbName String: database name
536 * @param $flags
538 static function newFromParams( $server, $user, $password, $dbName, $flags = 0 ) {
539 wfDeprecated( __METHOD__ );
540 return new DatabaseMysql( $server, $user, $password, $dbName, $flags );
543 protected function installErrorHandler() {
544 $this->mPHPError = false;
545 $this->htmlErrors = ini_set( 'html_errors', '0' );
546 set_error_handler( array( $this, 'connectionErrorHandler' ) );
549 protected function restoreErrorHandler() {
550 restore_error_handler();
551 if ( $this->htmlErrors !== false ) {
552 ini_set( 'html_errors', $this->htmlErrors );
554 if ( $this->mPHPError ) {
555 $error = preg_replace( '!\[<a.*</a>\]!', '', $this->mPHPError );
556 $error = preg_replace( '!^.*?:(.*)$!', '$1', $error );
557 return $error;
558 } else {
559 return false;
563 protected function connectionErrorHandler( $errno, $errstr ) {
564 $this->mPHPError = $errstr;
568 * Closes a database connection.
569 * if it is open : commits any open transactions
571 * @return Bool operation success. true if already closed.
573 function close() {
574 # Stub, should probably be overridden
575 return true;
579 * @param $error String: fallback error message, used if none is given by DB
581 function reportConnectionError( $error = 'Unknown error' ) {
582 $myError = $this->lastError();
583 if ( $myError ) {
584 $error = $myError;
587 # New method
588 throw new DBConnectionError( $this, $error );
592 * Determine whether a query writes to the DB.
593 * Should return true if unsure.
595 function isWriteQuery( $sql ) {
596 return !preg_match( '/^(?:SELECT|BEGIN|COMMIT|SET|SHOW|\(SELECT)\b/i', $sql );
600 * Usually aborts on failure. If errors are explicitly ignored, returns success.
602 * @param $sql String: SQL query
603 * @param $fname String: Name of the calling function, for profiling/SHOW PROCESSLIST
604 * comment (you can use __METHOD__ or add some extra info)
605 * @param $tempIgnore Boolean: Whether to avoid throwing an exception on errors...
606 * maybe best to catch the exception instead?
607 * @return boolean or ResultWrapper. true for a successful write query, ResultWrapper object for a successful read query,
608 * or false on failure if $tempIgnore set
609 * @throws DBQueryError Thrown when the database returns an error of any kind
611 public function query( $sql, $fname = '', $tempIgnore = false ) {
612 global $wgProfiler;
614 $isMaster = !is_null( $this->getLBInfo( 'master' ) );
615 if ( isset( $wgProfiler ) ) {
616 # generalizeSQL will probably cut down the query to reasonable
617 # logging size most of the time. The substr is really just a sanity check.
619 # Who's been wasting my precious column space? -- TS
620 # $profName = 'query: ' . $fname . ' ' . substr( DatabaseBase::generalizeSQL( $sql ), 0, 255 );
622 if ( $isMaster ) {
623 $queryProf = 'query-m: ' . substr( DatabaseBase::generalizeSQL( $sql ), 0, 255 );
624 $totalProf = 'DatabaseBase::query-master';
625 } else {
626 $queryProf = 'query: ' . substr( DatabaseBase::generalizeSQL( $sql ), 0, 255 );
627 $totalProf = 'DatabaseBase::query';
630 wfProfileIn( $totalProf );
631 wfProfileIn( $queryProf );
634 $this->mLastQuery = $sql;
635 if ( !$this->mDoneWrites && $this->isWriteQuery( $sql ) ) {
636 // Set a flag indicating that writes have been done
637 wfDebug( __METHOD__ . ": Writes done: $sql\n" );
638 $this->mDoneWrites = true;
641 # Add a comment for easy SHOW PROCESSLIST interpretation
642 # if ( $fname ) {
643 global $wgUser;
644 if ( is_object( $wgUser ) && $wgUser->mDataLoaded ) {
645 $userName = $wgUser->getName();
646 if ( mb_strlen( $userName ) > 15 ) {
647 $userName = mb_substr( $userName, 0, 15 ) . '...';
649 $userName = str_replace( '/', '', $userName );
650 } else {
651 $userName = '';
653 $commentedSql = preg_replace( '/\s/', " /* $fname $userName */ ", $sql, 1 );
654 # } else {
655 # $commentedSql = $sql;
658 # If DBO_TRX is set, start a transaction
659 if ( ( $this->mFlags & DBO_TRX ) && !$this->trxLevel() &&
660 $sql != 'BEGIN' && $sql != 'COMMIT' && $sql != 'ROLLBACK' ) {
661 // avoid establishing transactions for SHOW and SET statements too -
662 // that would delay transaction initializations to once connection
663 // is really used by application
664 $sqlstart = substr( $sql, 0, 10 ); // very much worth it, benchmark certified(tm)
665 if ( strpos( $sqlstart, "SHOW " ) !== 0 and strpos( $sqlstart, "SET " ) !== 0 )
666 $this->begin();
669 if ( $this->debug() ) {
670 static $cnt = 0;
672 $cnt++;
673 $sqlx = substr( $commentedSql, 0, 500 );
674 $sqlx = strtr( $sqlx, "\t\n", ' ' );
676 if ( $isMaster ) {
677 wfDebug( "Query $cnt (master): $sqlx\n" );
678 } else {
679 wfDebug( "Query $cnt (slave): $sqlx\n" );
683 if ( istainted( $sql ) & TC_MYSQL ) {
684 throw new MWException( 'Tainted query found' );
687 # Do the query and handle errors
688 $ret = $this->doQuery( $commentedSql );
690 # Try reconnecting if the connection was lost
691 if ( false === $ret && $this->wasErrorReissuable() ) {
692 # Transaction is gone, like it or not
693 $this->mTrxLevel = 0;
694 wfDebug( "Connection lost, reconnecting...\n" );
696 if ( $this->ping() ) {
697 wfDebug( "Reconnected\n" );
698 $sqlx = substr( $commentedSql, 0, 500 );
699 $sqlx = strtr( $sqlx, "\t\n", ' ' );
700 global $wgRequestTime;
701 $elapsed = round( microtime( true ) - $wgRequestTime, 3 );
702 wfLogDBError( "Connection lost and reconnected after {$elapsed}s, query: $sqlx\n" );
703 $ret = $this->doQuery( $commentedSql );
704 } else {
705 wfDebug( "Failed\n" );
709 if ( false === $ret ) {
710 $this->reportQueryError( $this->lastError(), $this->lastErrno(), $sql, $fname, $tempIgnore );
713 if ( isset( $wgProfiler ) ) {
714 wfProfileOut( $queryProf );
715 wfProfileOut( $totalProf );
718 return $this->resultObject( $ret );
722 * @param $error String
723 * @param $errno Integer
724 * @param $sql String
725 * @param $fname String
726 * @param $tempIgnore Boolean
728 function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false ) {
729 # Ignore errors during error handling to avoid infinite recursion
730 $ignore = $this->ignoreErrors( true );
731 ++$this->mErrorCount;
733 if ( $ignore || $tempIgnore ) {
734 wfDebug( "SQL ERROR (ignored): $error\n" );
735 $this->ignoreErrors( $ignore );
736 } else {
737 $sql1line = str_replace( "\n", "\\n", $sql );
738 wfLogDBError( "$fname\t{$this->mServer}\t$errno\t$error\t$sql1line\n" );
739 wfDebug( "SQL ERROR: " . $error . "\n" );
740 throw new DBQueryError( $this, $error, $errno, $sql, $fname );
746 * Intended to be compatible with the PEAR::DB wrapper functions.
747 * http://pear.php.net/manual/en/package.database.db.intro-execute.php
749 * ? = scalar value, quoted as necessary
750 * ! = raw SQL bit (a function for instance)
751 * & = filename; reads the file and inserts as a blob
752 * (we don't use this though...)
754 function prepare( $sql, $func = 'DatabaseBase::prepare' ) {
755 /* MySQL doesn't support prepared statements (yet), so just
756 pack up the query for reference. We'll manually replace
757 the bits later. */
758 return array( 'query' => $sql, 'func' => $func );
761 function freePrepared( $prepared ) {
762 /* No-op by default */
766 * Execute a prepared query with the various arguments
767 * @param $prepared String: the prepared sql
768 * @param $args Mixed: Either an array here, or put scalars as varargs
770 function execute( $prepared, $args = null ) {
771 if ( !is_array( $args ) ) {
772 # Pull the var args
773 $args = func_get_args();
774 array_shift( $args );
777 $sql = $this->fillPrepared( $prepared['query'], $args );
779 return $this->query( $sql, $prepared['func'] );
783 * Prepare & execute an SQL statement, quoting and inserting arguments
784 * in the appropriate places.
785 * @param $query String
786 * @param $args ...
788 function safeQuery( $query, $args = null ) {
789 $prepared = $this->prepare( $query, 'DatabaseBase::safeQuery' );
791 if ( !is_array( $args ) ) {
792 # Pull the var args
793 $args = func_get_args();
794 array_shift( $args );
797 $retval = $this->execute( $prepared, $args );
798 $this->freePrepared( $prepared );
800 return $retval;
804 * For faking prepared SQL statements on DBs that don't support
805 * it directly.
806 * @param $preparedQuery String: a 'preparable' SQL statement
807 * @param $args Array of arguments to fill it with
808 * @return string executable SQL
810 function fillPrepared( $preparedQuery, $args ) {
811 reset( $args );
812 $this->preparedArgs =& $args;
814 return preg_replace_callback( '/(\\\\[?!&]|[?!&])/',
815 array( &$this, 'fillPreparedArg' ), $preparedQuery );
819 * preg_callback func for fillPrepared()
820 * The arguments should be in $this->preparedArgs and must not be touched
821 * while we're doing this.
823 * @param $matches Array
824 * @return String
825 * @private
827 function fillPreparedArg( $matches ) {
828 switch( $matches[1] ) {
829 case '\\?': return '?';
830 case '\\!': return '!';
831 case '\\&': return '&';
834 list( /* $n */ , $arg ) = each( $this->preparedArgs );
836 switch( $matches[1] ) {
837 case '?': return $this->addQuotes( $arg );
838 case '!': return $arg;
839 case '&':
840 # return $this->addQuotes( file_get_contents( $arg ) );
841 throw new DBUnexpectedError( $this, '& mode is not implemented. If it\'s really needed, uncomment the line above.' );
842 default:
843 throw new DBUnexpectedError( $this, 'Received invalid match. This should never happen!' );
848 * Free a result object
849 * @param $res Mixed: A SQL result
851 function freeResult( $res ) {
852 # Stub. Might not really need to be overridden, since results should
853 # be freed by PHP when the variable goes out of scope anyway.
857 * Simple UPDATE wrapper
858 * Usually aborts on failure
859 * If errors are explicitly ignored, returns success
861 * This function exists for historical reasons, DatabaseBase::update() has a more standard
862 * calling convention and feature set
864 function set( $table, $var, $value, $cond, $fname = 'DatabaseBase::set' ) {
865 $table = $this->tableName( $table );
866 $sql = "UPDATE $table SET $var = '" .
867 $this->strencode( $value ) . "' WHERE ($cond)";
869 return (bool)$this->query( $sql, $fname );
873 * Simple SELECT wrapper, returns a single field, input must be encoded
874 * Usually aborts on failure
875 * If errors are explicitly ignored, returns FALSE on failure
877 function selectField( $table, $var, $cond = '', $fname = 'DatabaseBase::selectField', $options = array() ) {
878 if ( !is_array( $options ) ) {
879 $options = array( $options );
882 $options['LIMIT'] = 1;
884 $res = $this->select( $table, $var, $cond, $fname, $options );
886 if ( $res === false || !$this->numRows( $res ) ) {
887 return false;
890 $row = $this->fetchRow( $res );
892 if ( $row !== false ) {
893 return reset( $row );
894 } else {
895 return false;
900 * Returns an optional USE INDEX clause to go after the table, and a
901 * string to go at the end of the query
903 * @private
905 * @param $options Array: associative array of options to be turned into
906 * an SQL query, valid keys are listed in the function.
907 * @return Array
909 function makeSelectOptions( $options ) {
910 $preLimitTail = $postLimitTail = '';
911 $startOpts = '';
913 $noKeyOptions = array();
915 foreach ( $options as $key => $option ) {
916 if ( is_numeric( $key ) ) {
917 $noKeyOptions[$option] = true;
921 if ( isset( $options['GROUP BY'] ) ) {
922 $preLimitTail .= " GROUP BY {$options['GROUP BY']}";
925 if ( isset( $options['HAVING'] ) ) {
926 $preLimitTail .= " HAVING {$options['HAVING']}";
929 if ( isset( $options['ORDER BY'] ) ) {
930 $preLimitTail .= " ORDER BY {$options['ORDER BY']}";
933 // if (isset($options['LIMIT'])) {
934 // $tailOpts .= $this->limitResult('', $options['LIMIT'],
935 // isset($options['OFFSET']) ? $options['OFFSET']
936 // : false);
937 // }
939 if ( isset( $noKeyOptions['FOR UPDATE'] ) ) {
940 $postLimitTail .= ' FOR UPDATE';
943 if ( isset( $noKeyOptions['LOCK IN SHARE MODE'] ) ) {
944 $postLimitTail .= ' LOCK IN SHARE MODE';
947 if ( isset( $noKeyOptions['DISTINCT'] ) || isset( $noKeyOptions['DISTINCTROW'] ) ) {
948 $startOpts .= 'DISTINCT';
951 # Various MySQL extensions
952 if ( isset( $noKeyOptions['STRAIGHT_JOIN'] ) ) {
953 $startOpts .= ' /*! STRAIGHT_JOIN */';
956 if ( isset( $noKeyOptions['HIGH_PRIORITY'] ) ) {
957 $startOpts .= ' HIGH_PRIORITY';
960 if ( isset( $noKeyOptions['SQL_BIG_RESULT'] ) ) {
961 $startOpts .= ' SQL_BIG_RESULT';
964 if ( isset( $noKeyOptions['SQL_BUFFER_RESULT'] ) ) {
965 $startOpts .= ' SQL_BUFFER_RESULT';
968 if ( isset( $noKeyOptions['SQL_SMALL_RESULT'] ) ) {
969 $startOpts .= ' SQL_SMALL_RESULT';
972 if ( isset( $noKeyOptions['SQL_CALC_FOUND_ROWS'] ) ) {
973 $startOpts .= ' SQL_CALC_FOUND_ROWS';
976 if ( isset( $noKeyOptions['SQL_CACHE'] ) ) {
977 $startOpts .= ' SQL_CACHE';
980 if ( isset( $noKeyOptions['SQL_NO_CACHE'] ) ) {
981 $startOpts .= ' SQL_NO_CACHE';
984 if ( isset( $options['USE INDEX'] ) && ! is_array( $options['USE INDEX'] ) ) {
985 $useIndex = $this->useIndexClause( $options['USE INDEX'] );
986 } else {
987 $useIndex = '';
990 return array( $startOpts, $useIndex, $preLimitTail, $postLimitTail );
994 * SELECT wrapper
996 * @param $table Mixed: Array or string, table name(s) (prefix auto-added)
997 * @param $vars Mixed: Array or string, field name(s) to be retrieved
998 * @param $conds Mixed: Array or string, condition(s) for WHERE
999 * @param $fname String: Calling function name (use __METHOD__) for logs/profiling
1000 * @param $options Array: Associative array of options (e.g. array('GROUP BY' => 'page_title')),
1001 * see DatabaseBase::makeSelectOptions code for list of supported stuff
1002 * @param $join_conds Array: Associative array of table join conditions (optional)
1003 * (e.g. array( 'page' => array('LEFT JOIN','page_latest=rev_id') )
1004 * @return mixed Database result resource (feed to DatabaseBase::fetchObject or whatever), or false on failure
1006 function select( $table, $vars, $conds = '', $fname = 'DatabaseBase::select', $options = array(), $join_conds = array() ) {
1007 $sql = $this->selectSQLText( $table, $vars, $conds, $fname, $options, $join_conds );
1009 return $this->query( $sql, $fname );
1013 * SELECT wrapper
1015 * @param $table Mixed: Array or string, table name(s) (prefix auto-added). Array keys are table aliases (optional)
1016 * @param $vars Mixed: Array or string, field name(s) to be retrieved
1017 * @param $conds Mixed: Array or string, condition(s) for WHERE
1018 * @param $fname String: Calling function name (use __METHOD__) for logs/profiling
1019 * @param $options Array: Associative array of options (e.g. array('GROUP BY' => 'page_title')),
1020 * see DatabaseBase::makeSelectOptions code for list of supported stuff
1021 * @param $join_conds Array: Associative array of table join conditions (optional)
1022 * (e.g. array( 'page' => array('LEFT JOIN','page_latest=rev_id') )
1023 * @return string, the SQL text
1025 function selectSQLText( $table, $vars, $conds = '', $fname = 'DatabaseBase::select', $options = array(), $join_conds = array() ) {
1026 if ( is_array( $vars ) ) {
1027 $vars = implode( ',', $vars );
1030 if ( !is_array( $options ) ) {
1031 $options = array( $options );
1034 if ( is_array( $table ) ) {
1035 if ( !empty( $join_conds ) || ( isset( $options['USE INDEX'] ) && is_array( @$options['USE INDEX'] ) ) ) {
1036 $from = ' FROM ' . $this->tableNamesWithUseIndexOrJOIN( $table, @$options['USE INDEX'], $join_conds );
1037 } else {
1038 $from = ' FROM ' . implode( ',', $this->tableNamesWithAlias( $table ) );
1040 } elseif ( $table != '' ) {
1041 if ( $table { 0 } == ' ' ) {
1042 $from = ' FROM ' . $table;
1043 } else {
1044 $from = ' FROM ' . $this->tableName( $table );
1046 } else {
1047 $from = '';
1050 list( $startOpts, $useIndex, $preLimitTail, $postLimitTail ) = $this->makeSelectOptions( $options );
1052 if ( !empty( $conds ) ) {
1053 if ( is_array( $conds ) ) {
1054 $conds = $this->makeList( $conds, LIST_AND );
1056 $sql = "SELECT $startOpts $vars $from $useIndex WHERE $conds $preLimitTail";
1057 } else {
1058 $sql = "SELECT $startOpts $vars $from $useIndex $preLimitTail";
1061 if ( isset( $options['LIMIT'] ) )
1062 $sql = $this->limitResult( $sql, $options['LIMIT'],
1063 isset( $options['OFFSET'] ) ? $options['OFFSET'] : false );
1064 $sql = "$sql $postLimitTail";
1066 if ( isset( $options['EXPLAIN'] ) ) {
1067 $sql = 'EXPLAIN ' . $sql;
1070 return $sql;
1074 * Single row SELECT wrapper
1075 * Aborts or returns FALSE on error
1077 * @param $table String: table name
1078 * @param $vars String: the selected variables
1079 * @param $conds Array: a condition map, terms are ANDed together.
1080 * Items with numeric keys are taken to be literal conditions
1081 * Takes an array of selected variables, and a condition map, which is ANDed
1082 * e.g: selectRow( "page", array( "page_id" ), array( "page_namespace" =>
1083 * NS_MAIN, "page_title" => "Astronomy" ) ) would return an object where
1084 * $obj- >page_id is the ID of the Astronomy article
1085 * @param $fname String: Calling function name
1086 * @param $options Array
1087 * @param $join_conds Array
1089 * @todo migrate documentation to phpdocumentor format
1091 function selectRow( $table, $vars, $conds, $fname = 'DatabaseBase::selectRow', $options = array(), $join_conds = array() ) {
1092 $options['LIMIT'] = 1;
1093 $res = $this->select( $table, $vars, $conds, $fname, $options, $join_conds );
1095 if ( $res === false ) {
1096 return false;
1099 if ( !$this->numRows( $res ) ) {
1100 return false;
1103 $obj = $this->fetchObject( $res );
1105 return $obj;
1109 * Estimate rows in dataset
1110 * Returns estimated count - not necessarily an accurate estimate across different databases,
1111 * so use sparingly
1112 * Takes same arguments as DatabaseBase::select()
1114 * @param $table String: table name
1115 * @param $vars Array: unused
1116 * @param $conds Array: filters on the table
1117 * @param $fname String: function name for profiling
1118 * @param $options Array: options for select
1119 * @return Integer: row count
1121 public function estimateRowCount( $table, $vars = '*', $conds = '', $fname = 'DatabaseBase::estimateRowCount', $options = array() ) {
1122 $rows = 0;
1123 $res = $this->select ( $table, 'COUNT(*) AS rowcount', $conds, $fname, $options );
1125 if ( $res ) {
1126 $row = $this->fetchRow( $res );
1127 $rows = ( isset( $row['rowcount'] ) ) ? $row['rowcount'] : 0;
1130 return $rows;
1134 * Removes most variables from an SQL query and replaces them with X or N for numbers.
1135 * It's only slightly flawed. Don't use for anything important.
1137 * @param $sql String: A SQL Query
1139 static function generalizeSQL( $sql ) {
1140 # This does the same as the regexp below would do, but in such a way
1141 # as to avoid crashing php on some large strings.
1142 # $sql = preg_replace ( "/'([^\\\\']|\\\\.)*'|\"([^\\\\\"]|\\\\.)*\"/", "'X'", $sql);
1144 $sql = str_replace ( "\\\\", '', $sql );
1145 $sql = str_replace ( "\\'", '', $sql );
1146 $sql = str_replace ( "\\\"", '', $sql );
1147 $sql = preg_replace ( "/'.*'/s", "'X'", $sql );
1148 $sql = preg_replace ( '/".*"/s', "'X'", $sql );
1150 # All newlines, tabs, etc replaced by single space
1151 $sql = preg_replace ( '/\s+/', ' ', $sql );
1153 # All numbers => N
1154 $sql = preg_replace ( '/-?[0-9]+/s', 'N', $sql );
1156 return $sql;
1160 * Determines whether a field exists in a table
1162 * @param $table String: table name
1163 * @param $field String: filed to check on that table
1164 * @param $fname String: calling function name (optional)
1165 * @return Boolean: whether $table has filed $field
1167 function fieldExists( $table, $field, $fname = 'DatabaseBase::fieldExists' ) {
1168 $info = $this->fieldInfo( $table, $field );
1170 return (bool)$info;
1174 * Determines whether an index exists
1175 * Usually aborts on failure
1176 * If errors are explicitly ignored, returns NULL on failure
1178 function indexExists( $table, $index, $fname = 'DatabaseBase::indexExists' ) {
1179 $info = $this->indexInfo( $table, $index, $fname );
1180 if ( is_null( $info ) ) {
1181 return null;
1182 } else {
1183 return $info !== false;
1188 * Query whether a given table exists
1190 function tableExists( $table ) {
1191 $table = $this->tableName( $table );
1192 $old = $this->ignoreErrors( true );
1193 $res = $this->query( "SELECT 1 FROM $table LIMIT 1", __METHOD__ );
1194 $this->ignoreErrors( $old );
1196 return (bool)$res;
1200 * mysql_field_type() wrapper
1202 function fieldType( $res, $index ) {
1203 if ( $res instanceof ResultWrapper ) {
1204 $res = $res->result;
1207 return mysql_field_type( $res, $index );
1211 * Determines if a given index is unique
1213 function indexUnique( $table, $index ) {
1214 $indexInfo = $this->indexInfo( $table, $index );
1216 if ( !$indexInfo ) {
1217 return null;
1220 return !$indexInfo[0]->Non_unique;
1224 * INSERT wrapper, inserts an array into a table
1226 * $a may be a single associative array, or an array of these with numeric keys, for
1227 * multi-row insert.
1229 * Usually aborts on failure
1230 * If errors are explicitly ignored, returns success
1232 * @param $table String: table name (prefix auto-added)
1233 * @param $a Array: Array of rows to insert
1234 * @param $fname String: Calling function name (use __METHOD__) for logs/profiling
1235 * @param $options Mixed: Associative array of options
1237 * @return bool
1239 function insert( $table, $a, $fname = 'DatabaseBase::insert', $options = array() ) {
1240 # No rows to insert, easy just return now
1241 if ( !count( $a ) ) {
1242 return true;
1245 $table = $this->tableName( $table );
1247 if ( !is_array( $options ) ) {
1248 $options = array( $options );
1251 if ( isset( $a[0] ) && is_array( $a[0] ) ) {
1252 $multi = true;
1253 $keys = array_keys( $a[0] );
1254 } else {
1255 $multi = false;
1256 $keys = array_keys( $a );
1259 $sql = 'INSERT ' . implode( ' ', $options ) .
1260 " INTO $table (" . implode( ',', $keys ) . ') VALUES ';
1262 if ( $multi ) {
1263 $first = true;
1264 foreach ( $a as $row ) {
1265 if ( $first ) {
1266 $first = false;
1267 } else {
1268 $sql .= ',';
1270 $sql .= '(' . $this->makeList( $row ) . ')';
1272 } else {
1273 $sql .= '(' . $this->makeList( $a ) . ')';
1276 return (bool)$this->query( $sql, $fname );
1280 * Make UPDATE options for the DatabaseBase::update function
1282 * @private
1283 * @param $options Array: The options passed to DatabaseBase::update
1284 * @return string
1286 function makeUpdateOptions( $options ) {
1287 if ( !is_array( $options ) ) {
1288 $options = array( $options );
1291 $opts = array();
1293 if ( in_array( 'LOW_PRIORITY', $options ) ) {
1294 $opts[] = $this->lowPriorityOption();
1297 if ( in_array( 'IGNORE', $options ) ) {
1298 $opts[] = 'IGNORE';
1301 return implode( ' ', $opts );
1305 * UPDATE wrapper, takes a condition array and a SET array
1307 * @param $table String: The table to UPDATE
1308 * @param $values Array: An array of values to SET
1309 * @param $conds Array: An array of conditions (WHERE). Use '*' to update all rows.
1310 * @param $fname String: The Class::Function calling this function
1311 * (for the log)
1312 * @param $options Array: An array of UPDATE options, can be one or
1313 * more of IGNORE, LOW_PRIORITY
1314 * @return Boolean
1316 function update( $table, $values, $conds, $fname = 'DatabaseBase::update', $options = array() ) {
1317 $table = $this->tableName( $table );
1318 $opts = $this->makeUpdateOptions( $options );
1319 $sql = "UPDATE $opts $table SET " . $this->makeList( $values, LIST_SET );
1321 if ( $conds != '*' ) {
1322 $sql .= " WHERE " . $this->makeList( $conds, LIST_AND );
1325 return $this->query( $sql, $fname );
1329 * Makes an encoded list of strings from an array
1330 * $mode:
1331 * LIST_COMMA - comma separated, no field names
1332 * LIST_AND - ANDed WHERE clause (without the WHERE)
1333 * LIST_OR - ORed WHERE clause (without the WHERE)
1334 * LIST_SET - comma separated with field names, like a SET clause
1335 * LIST_NAMES - comma separated field names
1337 function makeList( $a, $mode = LIST_COMMA ) {
1338 if ( !is_array( $a ) ) {
1339 throw new DBUnexpectedError( $this, 'DatabaseBase::makeList called with incorrect parameters' );
1342 $first = true;
1343 $list = '';
1345 foreach ( $a as $field => $value ) {
1346 if ( !$first ) {
1347 if ( $mode == LIST_AND ) {
1348 $list .= ' AND ';
1349 } elseif ( $mode == LIST_OR ) {
1350 $list .= ' OR ';
1351 } else {
1352 $list .= ',';
1354 } else {
1355 $first = false;
1358 if ( ( $mode == LIST_AND || $mode == LIST_OR ) && is_numeric( $field ) ) {
1359 $list .= "($value)";
1360 } elseif ( ( $mode == LIST_SET ) && is_numeric( $field ) ) {
1361 $list .= "$value";
1362 } elseif ( ( $mode == LIST_AND || $mode == LIST_OR ) && is_array( $value ) ) {
1363 if ( count( $value ) == 0 ) {
1364 throw new MWException( __METHOD__ . ': empty input' );
1365 } elseif ( count( $value ) == 1 ) {
1366 // Special-case single values, as IN isn't terribly efficient
1367 // Don't necessarily assume the single key is 0; we don't
1368 // enforce linear numeric ordering on other arrays here.
1369 $value = array_values( $value );
1370 $list .= $field . " = " . $this->addQuotes( $value[0] );
1371 } else {
1372 $list .= $field . " IN (" . $this->makeList( $value ) . ") ";
1374 } elseif ( $value === null ) {
1375 if ( $mode == LIST_AND || $mode == LIST_OR ) {
1376 $list .= "$field IS ";
1377 } elseif ( $mode == LIST_SET ) {
1378 $list .= "$field = ";
1380 $list .= 'NULL';
1381 } else {
1382 if ( $mode == LIST_AND || $mode == LIST_OR || $mode == LIST_SET ) {
1383 $list .= "$field = ";
1385 $list .= $mode == LIST_NAMES ? $value : $this->addQuotes( $value );
1389 return $list;
1393 * Build a partial where clause from a 2-d array such as used for LinkBatch.
1394 * The keys on each level may be either integers or strings.
1396 * @param $data Array: organized as 2-d array(baseKeyVal => array(subKeyVal => <ignored>, ...), ...)
1397 * @param $baseKey String: field name to match the base-level keys to (eg 'pl_namespace')
1398 * @param $subKey String: field name to match the sub-level keys to (eg 'pl_title')
1399 * @return Mixed: string SQL fragment, or false if no items in array.
1401 function makeWhereFrom2d( $data, $baseKey, $subKey ) {
1402 $conds = array();
1404 foreach ( $data as $base => $sub ) {
1405 if ( count( $sub ) ) {
1406 $conds[] = $this->makeList(
1407 array( $baseKey => $base, $subKey => array_keys( $sub ) ),
1408 LIST_AND );
1412 if ( $conds ) {
1413 return $this->makeList( $conds, LIST_OR );
1414 } else {
1415 // Nothing to search for...
1416 return false;
1421 * Bitwise operations
1424 function bitNot( $field ) {
1425 return "(~$field)";
1428 function bitAnd( $fieldLeft, $fieldRight ) {
1429 return "($fieldLeft & $fieldRight)";
1432 function bitOr( $fieldLeft, $fieldRight ) {
1433 return "($fieldLeft | $fieldRight)";
1437 * Change the current database
1439 * @todo Explain what exactly will fail if this is not overridden.
1440 * @return bool Success or failure
1442 function selectDB( $db ) {
1443 # Stub. Shouldn't cause serious problems if it's not overridden, but
1444 # if your database engine supports a concept similar to MySQL's
1445 # databases you may as well.
1446 return true;
1450 * Get the current DB name
1452 function getDBname() {
1453 return $this->mDBname;
1457 * Get the server hostname or IP address
1459 function getServer() {
1460 return $this->mServer;
1464 * Format a table name ready for use in constructing an SQL query
1466 * This does two important things: it quotes the table names to clean them up,
1467 * and it adds a table prefix if only given a table name with no quotes.
1469 * All functions of this object which require a table name call this function
1470 * themselves. Pass the canonical name to such functions. This is only needed
1471 * when calling query() directly.
1473 * @param $name String: database table name
1474 * @return String: full database name
1476 function tableName( $name ) {
1477 global $wgSharedDB, $wgSharedPrefix, $wgSharedTables;
1478 # Skip the entire process when we have a string quoted on both ends.
1479 # Note that we check the end so that we will still quote any use of
1480 # use of `database`.table. But won't break things if someone wants
1481 # to query a database table with a dot in the name.
1482 if ( $name[0] == '`' && substr( $name, -1, 1 ) == '`' ) {
1483 return $name;
1486 # Lets test for any bits of text that should never show up in a table
1487 # name. Basically anything like JOIN or ON which are actually part of
1488 # SQL queries, but may end up inside of the table value to combine
1489 # sql. Such as how the API is doing.
1490 # Note that we use a whitespace test rather than a \b test to avoid
1491 # any remote case where a word like on may be inside of a table name
1492 # surrounded by symbols which may be considered word breaks.
1493 if ( preg_match( '/(^|\s)(DISTINCT|JOIN|ON|AS)(\s|$)/i', $name ) !== 0 ) {
1494 return $name;
1497 # Split database and table into proper variables.
1498 # We reverse the explode so that database.table and table both output
1499 # the correct table.
1500 $dbDetails = array_reverse( explode( '.', $name, 2 ) );
1501 if ( isset( $dbDetails[1] ) ) {
1502 @list( $table, $database ) = $dbDetails;
1503 } else {
1504 @list( $table ) = $dbDetails;
1506 $prefix = $this->mTablePrefix; # Default prefix
1508 # A database name has been specified in input. Quote the table name
1509 # because we don't want any prefixes added.
1510 if ( isset( $database ) ) {
1511 $table = ( $table[0] == '`' ? $table : "`{$table}`" );
1514 # Note that we use the long format because php will complain in in_array if
1515 # the input is not an array, and will complain in is_array if it is not set.
1516 if ( !isset( $database ) # Don't use shared database if pre selected.
1517 && isset( $wgSharedDB ) # We have a shared database
1518 && $table[0] != '`' # Paranoia check to prevent shared tables listing '`table`'
1519 && isset( $wgSharedTables )
1520 && is_array( $wgSharedTables )
1521 && in_array( $table, $wgSharedTables ) ) { # A shared table is selected
1522 $database = $wgSharedDB;
1523 $prefix = isset( $wgSharedPrefix ) ? $wgSharedPrefix : $prefix;
1526 # Quote the $database and $table and apply the prefix if not quoted.
1527 if ( isset( $database ) ) {
1528 $database = ( $database[0] == '`' ? $database : "`{$database}`" );
1530 $table = ( $table[0] == '`' ? $table : "`{$prefix}{$table}`" );
1532 # Merge our database and table into our final table name.
1533 $tableName = ( isset( $database ) ? "{$database}.{$table}" : "{$table}" );
1535 return $tableName;
1539 * Fetch a number of table names into an array
1540 * This is handy when you need to construct SQL for joins
1542 * Example:
1543 * extract($dbr->tableNames('user','watchlist'));
1544 * $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user
1545 * WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
1547 public function tableNames() {
1548 $inArray = func_get_args();
1549 $retVal = array();
1551 foreach ( $inArray as $name ) {
1552 $retVal[$name] = $this->tableName( $name );
1555 return $retVal;
1559 * Fetch a number of table names into an zero-indexed numerical array
1560 * This is handy when you need to construct SQL for joins
1562 * Example:
1563 * list( $user, $watchlist ) = $dbr->tableNamesN('user','watchlist');
1564 * $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user
1565 * WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
1567 public function tableNamesN() {
1568 $inArray = func_get_args();
1569 $retVal = array();
1571 foreach ( $inArray as $name ) {
1572 $retVal[] = $this->tableName( $name );
1575 return $retVal;
1579 * Get an aliased table name.
1580 * @param $name string Table name, see tableName()
1581 * @param $alias string Alias (optional)
1582 * @return string SQL name for aliased table. Will not alias a table to its own name
1584 public function tableNameWithAlias( $name, $alias = false ) {
1585 if ( !$alias || $alias == $name ) {
1586 return $this->tableName( $name );
1587 } else {
1588 return $this->tableName( $name ) . ' `' . $alias . '`';
1593 * @param $tables array( [alias] => table )
1594 * @return array of strings, see tableNameWithAlias()
1596 public function tableNamesWithAlias( $tables ) {
1597 $retval = array();
1598 foreach ( $tables as $alias => $table ) {
1599 if ( is_numeric( $alias ) ) {
1600 $alias = $table;
1602 $retval[] = $this->tableNameWithAlias( $table, $alias );
1604 return $retval;
1608 * @private
1610 function tableNamesWithUseIndexOrJOIN( $tables, $use_index = array(), $join_conds = array() ) {
1611 $ret = array();
1612 $retJOIN = array();
1613 $use_index_safe = is_array( $use_index ) ? $use_index : array();
1614 $join_conds_safe = is_array( $join_conds ) ? $join_conds : array();
1616 foreach ( $tables as $alias => $table ) {
1617 if ( !is_string( $alias ) ) {
1618 // No alias? Set it equal to the table name
1619 $alias = $table;
1621 // Is there a JOIN and INDEX clause for this table?
1622 if ( isset( $join_conds_safe[$alias] ) && isset( $use_index_safe[$alias] ) ) {
1623 $tableClause = $join_conds_safe[$alias][0] . ' ' . $this->tableNameWithAlias( $table, $alias );
1624 $tableClause .= ' ' . $this->useIndexClause( implode( ',', (array)$use_index_safe[$alias] ) );
1625 $on = $this->makeList( (array)$join_conds_safe[$alias][1], LIST_AND );
1626 if ( $on != '' ) {
1627 $tableClause .= ' ON (' . $on . ')';
1630 $retJOIN[] = $tableClause;
1631 // Is there an INDEX clause?
1632 } else if ( isset( $use_index_safe[$alias] ) ) {
1633 $tableClause = $this->tableNameWithAlias( $table, $alias );
1634 $tableClause .= ' ' . $this->useIndexClause( implode( ',', (array)$use_index_safe[$alias] ) );
1635 $ret[] = $tableClause;
1636 // Is there a JOIN clause?
1637 } else if ( isset( $join_conds_safe[$alias] ) ) {
1638 $tableClause = $join_conds_safe[$alias][0] . ' ' . $this->tableNameWithAlias( $table, $alias );
1639 $on = $this->makeList( (array)$join_conds_safe[$alias][1], LIST_AND );
1640 if ( $on != '' ) {
1641 $tableClause .= ' ON (' . $on . ')';
1644 $retJOIN[] = $tableClause;
1645 } else {
1646 $tableClause = $this->tableNameWithAlias( $table, $alias );
1647 $ret[] = $tableClause;
1651 // We can't separate explicit JOIN clauses with ',', use ' ' for those
1652 $straightJoins = !empty( $ret ) ? implode( ',', $ret ) : "";
1653 $otherJoins = !empty( $retJOIN ) ? implode( ' ', $retJOIN ) : "";
1655 // Compile our final table clause
1656 return implode( ' ', array( $straightJoins, $otherJoins ) );
1660 * Get the name of an index in a given table
1662 function indexName( $index ) {
1663 // Backwards-compatibility hack
1664 $renamed = array(
1665 'ar_usertext_timestamp' => 'usertext_timestamp',
1666 'un_user_id' => 'user_id',
1667 'un_user_ip' => 'user_ip',
1670 if ( isset( $renamed[$index] ) ) {
1671 return $renamed[$index];
1672 } else {
1673 return $index;
1678 * If it's a string, adds quotes and backslashes
1679 * Otherwise returns as-is
1681 function addQuotes( $s ) {
1682 if ( $s === null ) {
1683 return 'NULL';
1684 } else {
1685 # This will also quote numeric values. This should be harmless,
1686 # and protects against weird problems that occur when they really
1687 # _are_ strings such as article titles and string->number->string
1688 # conversion is not 1:1.
1689 return "'" . $this->strencode( $s ) . "'";
1694 * Escape string for safe LIKE usage.
1695 * WARNING: you should almost never use this function directly,
1696 * instead use buildLike() that escapes everything automatically
1697 * Deprecated in 1.17, warnings in 1.17, removed in ???
1699 public function escapeLike( $s ) {
1700 wfDeprecated( __METHOD__ );
1701 return $this->escapeLikeInternal( $s );
1704 protected function escapeLikeInternal( $s ) {
1705 $s = str_replace( '\\', '\\\\', $s );
1706 $s = $this->strencode( $s );
1707 $s = str_replace( array( '%', '_' ), array( '\%', '\_' ), $s );
1709 return $s;
1713 * LIKE statement wrapper, receives a variable-length argument list with parts of pattern to match
1714 * containing either string literals that will be escaped or tokens returned by anyChar() or anyString().
1715 * Alternatively, the function could be provided with an array of aforementioned parameters.
1717 * Example: $dbr->buildLike( 'My_page_title/', $dbr->anyString() ) returns a LIKE clause that searches
1718 * for subpages of 'My page title'.
1719 * Alternatively: $pattern = array( 'My_page_title/', $dbr->anyString() ); $query .= $dbr->buildLike( $pattern );
1721 * @since 1.16
1722 * @return String: fully built LIKE statement
1724 function buildLike() {
1725 $params = func_get_args();
1727 if ( count( $params ) > 0 && is_array( $params[0] ) ) {
1728 $params = $params[0];
1731 $s = '';
1733 foreach ( $params as $value ) {
1734 if ( $value instanceof LikeMatch ) {
1735 $s .= $value->toString();
1736 } else {
1737 $s .= $this->escapeLikeInternal( $value );
1741 return " LIKE '" . $s . "' ";
1745 * Returns a token for buildLike() that denotes a '_' to be used in a LIKE query
1747 function anyChar() {
1748 return new LikeMatch( '_' );
1752 * Returns a token for buildLike() that denotes a '%' to be used in a LIKE query
1754 function anyString() {
1755 return new LikeMatch( '%' );
1759 * Returns an appropriately quoted sequence value for inserting a new row.
1760 * MySQL has autoincrement fields, so this is just NULL. But the PostgreSQL
1761 * subclass will return an integer, and save the value for insertId()
1763 function nextSequenceValue( $seqName ) {
1764 return null;
1768 * USE INDEX clause. Unlikely to be useful for anything but MySQL. This
1769 * is only needed because a) MySQL must be as efficient as possible due to
1770 * its use on Wikipedia, and b) MySQL 4.0 is kind of dumb sometimes about
1771 * which index to pick. Anyway, other databases might have different
1772 * indexes on a given table. So don't bother overriding this unless you're
1773 * MySQL.
1775 function useIndexClause( $index ) {
1776 return '';
1780 * REPLACE query wrapper
1781 * PostgreSQL simulates this with a DELETE followed by INSERT
1782 * $row is the row to insert, an associative array
1783 * $uniqueIndexes is an array of indexes. Each element may be either a
1784 * field name or an array of field names
1786 * It may be more efficient to leave off unique indexes which are unlikely to collide.
1787 * However if you do this, you run the risk of encountering errors which wouldn't have
1788 * occurred in MySQL
1790 * @param $table String: The table to replace the row(s) in.
1791 * @param $uniqueIndexes Array: An associative array of indexes
1792 * @param $rows Array: Array of rows to replace
1793 * @param $fname String: Calling function name (use __METHOD__) for logs/profiling
1795 function replace( $table, $uniqueIndexes, $rows, $fname = 'DatabaseBase::replace' ) {
1796 $table = $this->tableName( $table );
1798 # Single row case
1799 if ( !is_array( reset( $rows ) ) ) {
1800 $rows = array( $rows );
1803 $sql = "REPLACE INTO $table (" . implode( ',', array_keys( $rows[0] ) ) . ') VALUES ';
1804 $first = true;
1806 foreach ( $rows as $row ) {
1807 if ( $first ) {
1808 $first = false;
1809 } else {
1810 $sql .= ',';
1813 $sql .= '(' . $this->makeList( $row ) . ')';
1816 return $this->query( $sql, $fname );
1820 * DELETE where the condition is a join
1821 * MySQL does this with a multi-table DELETE syntax, PostgreSQL does it with sub-selects
1823 * For safety, an empty $conds will not delete everything. If you want to delete all rows where the
1824 * join condition matches, set $conds='*'
1826 * DO NOT put the join condition in $conds
1828 * @param $delTable String: The table to delete from.
1829 * @param $joinTable String: The other table.
1830 * @param $delVar String: The variable to join on, in the first table.
1831 * @param $joinVar String: The variable to join on, in the second table.
1832 * @param $conds Array: Condition array of field names mapped to variables, ANDed together in the WHERE clause
1833 * @param $fname String: Calling function name (use __METHOD__) for logs/profiling
1835 function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds, $fname = 'DatabaseBase::deleteJoin' ) {
1836 if ( !$conds ) {
1837 throw new DBUnexpectedError( $this, 'DatabaseBase::deleteJoin() called with empty $conds' );
1840 $delTable = $this->tableName( $delTable );
1841 $joinTable = $this->tableName( $joinTable );
1842 $sql = "DELETE $delTable FROM $delTable, $joinTable WHERE $delVar=$joinVar ";
1844 if ( $conds != '*' ) {
1845 $sql .= ' AND ' . $this->makeList( $conds, LIST_AND );
1848 return $this->query( $sql, $fname );
1852 * Returns the size of a text field, or -1 for "unlimited"
1854 function textFieldSize( $table, $field ) {
1855 $table = $this->tableName( $table );
1856 $sql = "SHOW COLUMNS FROM $table LIKE \"$field\";";
1857 $res = $this->query( $sql, 'DatabaseBase::textFieldSize' );
1858 $row = $this->fetchObject( $res );
1860 $m = array();
1862 if ( preg_match( '/\((.*)\)/', $row->Type, $m ) ) {
1863 $size = $m[1];
1864 } else {
1865 $size = -1;
1868 return $size;
1872 * A string to insert into queries to show that they're low-priority, like
1873 * MySQL's LOW_PRIORITY. If no such feature exists, return an empty
1874 * string and nothing bad should happen.
1876 * @return string Returns the text of the low priority option if it is supported, or a blank string otherwise
1878 function lowPriorityOption() {
1879 return '';
1883 * DELETE query wrapper
1885 * Use $conds == "*" to delete all rows
1887 function delete( $table, $conds, $fname = 'DatabaseBase::delete' ) {
1888 if ( !$conds ) {
1889 throw new DBUnexpectedError( $this, 'DatabaseBase::delete() called with no conditions' );
1892 $table = $this->tableName( $table );
1893 $sql = "DELETE FROM $table";
1895 if ( $conds != '*' ) {
1896 $sql .= ' WHERE ' . $this->makeList( $conds, LIST_AND );
1899 return $this->query( $sql, $fname );
1903 * INSERT SELECT wrapper
1904 * $varMap must be an associative array of the form array( 'dest1' => 'source1', ...)
1905 * Source items may be literals rather than field names, but strings should be quoted with DatabaseBase::addQuotes()
1906 * $conds may be "*" to copy the whole table
1907 * srcTable may be an array of tables.
1909 function insertSelect( $destTable, $srcTable, $varMap, $conds, $fname = 'DatabaseBase::insertSelect',
1910 $insertOptions = array(), $selectOptions = array() )
1912 $destTable = $this->tableName( $destTable );
1914 if ( is_array( $insertOptions ) ) {
1915 $insertOptions = implode( ' ', $insertOptions );
1918 if ( !is_array( $selectOptions ) ) {
1919 $selectOptions = array( $selectOptions );
1922 list( $startOpts, $useIndex, $tailOpts ) = $this->makeSelectOptions( $selectOptions );
1924 if ( is_array( $srcTable ) ) {
1925 $srcTable = implode( ',', array_map( array( &$this, 'tableName' ), $srcTable ) );
1926 } else {
1927 $srcTable = $this->tableName( $srcTable );
1930 $sql = "INSERT $insertOptions INTO $destTable (" . implode( ',', array_keys( $varMap ) ) . ')' .
1931 " SELECT $startOpts " . implode( ',', $varMap ) .
1932 " FROM $srcTable $useIndex ";
1934 if ( $conds != '*' ) {
1935 $sql .= ' WHERE ' . $this->makeList( $conds, LIST_AND );
1938 $sql .= " $tailOpts";
1940 return $this->query( $sql, $fname );
1944 * Construct a LIMIT query with optional offset. This is used for query
1945 * pages. The SQL should be adjusted so that only the first $limit rows
1946 * are returned. If $offset is provided as well, then the first $offset
1947 * rows should be discarded, and the next $limit rows should be returned.
1948 * If the result of the query is not ordered, then the rows to be returned
1949 * are theoretically arbitrary.
1951 * $sql is expected to be a SELECT, if that makes a difference. For
1952 * UPDATE, limitResultForUpdate should be used.
1954 * The version provided by default works in MySQL and SQLite. It will very
1955 * likely need to be overridden for most other DBMSes.
1957 * @param $sql String: SQL query we will append the limit too
1958 * @param $limit Integer: the SQL limit
1959 * @param $offset Integer the SQL offset (default false)
1961 function limitResult( $sql, $limit, $offset = false ) {
1962 if ( !is_numeric( $limit ) ) {
1963 throw new DBUnexpectedError( $this, "Invalid non-numeric limit passed to limitResult()\n" );
1966 return "$sql LIMIT "
1967 . ( ( is_numeric( $offset ) && $offset != 0 ) ? "{$offset}," : "" )
1968 . "{$limit} ";
1971 function limitResultForUpdate( $sql, $num ) {
1972 return $this->limitResult( $sql, $num, 0 );
1976 * Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries
1977 * within the UNION construct.
1978 * @return Boolean
1980 function unionSupportsOrderAndLimit() {
1981 return true; // True for almost every DB supported
1985 * Construct a UNION query
1986 * This is used for providing overload point for other DB abstractions
1987 * not compatible with the MySQL syntax.
1988 * @param $sqls Array: SQL statements to combine
1989 * @param $all Boolean: use UNION ALL
1990 * @return String: SQL fragment
1992 function unionQueries( $sqls, $all ) {
1993 $glue = $all ? ') UNION ALL (' : ') UNION (';
1994 return '(' . implode( $glue, $sqls ) . ')';
1998 * Returns an SQL expression for a simple conditional. This doesn't need
1999 * to be overridden unless CASE isn't supported in your DBMS.
2001 * @param $cond String: SQL expression which will result in a boolean value
2002 * @param $trueVal String: SQL expression to return if true
2003 * @param $falseVal String: SQL expression to return if false
2004 * @return String: SQL fragment
2006 function conditional( $cond, $trueVal, $falseVal ) {
2007 return " (CASE WHEN $cond THEN $trueVal ELSE $falseVal END) ";
2011 * Returns a comand for str_replace function in SQL query.
2012 * Uses REPLACE() in MySQL
2014 * @param $orig String: column to modify
2015 * @param $old String: column to seek
2016 * @param $new String: column to replace with
2018 function strreplace( $orig, $old, $new ) {
2019 return "REPLACE({$orig}, {$old}, {$new})";
2023 * Convert a field to an unix timestamp
2025 * @param $field String: field name
2026 * @return String: SQL statement
2028 public function unixTimestamp( $field ) {
2029 return "EXTRACT(epoch FROM $field)";
2033 * Determines if the last failure was due to a deadlock
2034 * STUB
2036 function wasDeadlock() {
2037 return false;
2041 * Determines if the last query error was something that should be dealt
2042 * with by pinging the connection and reissuing the query.
2043 * STUB
2045 function wasErrorReissuable() {
2046 return false;
2050 * Determines if the last failure was due to the database being read-only.
2051 * STUB
2053 function wasReadOnlyError() {
2054 return false;
2058 * Perform a deadlock-prone transaction.
2060 * This function invokes a callback function to perform a set of write
2061 * queries. If a deadlock occurs during the processing, the transaction
2062 * will be rolled back and the callback function will be called again.
2064 * Usage:
2065 * $dbw->deadlockLoop( callback, ... );
2067 * Extra arguments are passed through to the specified callback function.
2069 * Returns whatever the callback function returned on its successful,
2070 * iteration, or false on error, for example if the retry limit was
2071 * reached.
2073 function deadlockLoop() {
2074 $myFname = 'DatabaseBase::deadlockLoop';
2076 $this->begin();
2077 $args = func_get_args();
2078 $function = array_shift( $args );
2079 $oldIgnore = $this->ignoreErrors( true );
2080 $tries = DEADLOCK_TRIES;
2082 if ( is_array( $function ) ) {
2083 $fname = $function[0];
2084 } else {
2085 $fname = $function;
2088 do {
2089 $retVal = call_user_func_array( $function, $args );
2090 $error = $this->lastError();
2091 $errno = $this->lastErrno();
2092 $sql = $this->lastQuery();
2094 if ( $errno ) {
2095 if ( $this->wasDeadlock() ) {
2096 # Retry
2097 usleep( mt_rand( DEADLOCK_DELAY_MIN, DEADLOCK_DELAY_MAX ) );
2098 } else {
2099 $this->reportQueryError( $error, $errno, $sql, $fname );
2102 } while ( $this->wasDeadlock() && --$tries > 0 );
2104 $this->ignoreErrors( $oldIgnore );
2106 if ( $tries <= 0 ) {
2107 $this->rollback( $myFname );
2108 $this->reportQueryError( $error, $errno, $sql, $fname );
2109 return false;
2110 } else {
2111 $this->commit( $myFname );
2112 return $retVal;
2117 * Do a SELECT MASTER_POS_WAIT()
2119 * @param $pos MySQLMasterPos object
2120 * @param $timeout Integer: the maximum number of seconds to wait for synchronisation
2122 function masterPosWait( MySQLMasterPos $pos, $timeout ) {
2123 $fname = 'DatabaseBase::masterPosWait';
2124 wfProfileIn( $fname );
2126 # Commit any open transactions
2127 if ( $this->mTrxLevel ) {
2128 $this->commit();
2131 if ( !is_null( $this->mFakeSlaveLag ) ) {
2132 $wait = intval( ( $pos->pos - microtime( true ) + $this->mFakeSlaveLag ) * 1e6 );
2134 if ( $wait > $timeout * 1e6 ) {
2135 wfDebug( "Fake slave timed out waiting for $pos ($wait us)\n" );
2136 wfProfileOut( $fname );
2137 return -1;
2138 } elseif ( $wait > 0 ) {
2139 wfDebug( "Fake slave waiting $wait us\n" );
2140 usleep( $wait );
2141 wfProfileOut( $fname );
2142 return 1;
2143 } else {
2144 wfDebug( "Fake slave up to date ($wait us)\n" );
2145 wfProfileOut( $fname );
2146 return 0;
2150 # Call doQuery() directly, to avoid opening a transaction if DBO_TRX is set
2151 $encFile = $this->addQuotes( $pos->file );
2152 $encPos = intval( $pos->pos );
2153 $sql = "SELECT MASTER_POS_WAIT($encFile, $encPos, $timeout)";
2154 $res = $this->doQuery( $sql );
2156 if ( $res && $row = $this->fetchRow( $res ) ) {
2157 wfProfileOut( $fname );
2158 return $row[0];
2159 } else {
2160 wfProfileOut( $fname );
2161 return false;
2166 * Get the position of the master from SHOW SLAVE STATUS
2168 function getSlavePos() {
2169 if ( !is_null( $this->mFakeSlaveLag ) ) {
2170 $pos = new MySQLMasterPos( 'fake', microtime( true ) - $this->mFakeSlaveLag );
2171 wfDebug( __METHOD__ . ": fake slave pos = $pos\n" );
2172 return $pos;
2175 $res = $this->query( 'SHOW SLAVE STATUS', 'DatabaseBase::getSlavePos' );
2176 $row = $this->fetchObject( $res );
2178 if ( $row ) {
2179 $pos = isset( $row->Exec_master_log_pos ) ? $row->Exec_master_log_pos : $row->Exec_Master_Log_Pos;
2180 return new MySQLMasterPos( $row->Relay_Master_Log_File, $pos );
2181 } else {
2182 return false;
2187 * Get the position of the master from SHOW MASTER STATUS
2189 function getMasterPos() {
2190 if ( $this->mFakeMaster ) {
2191 return new MySQLMasterPos( 'fake', microtime( true ) );
2194 $res = $this->query( 'SHOW MASTER STATUS', 'DatabaseBase::getMasterPos' );
2195 $row = $this->fetchObject( $res );
2197 if ( $row ) {
2198 return new MySQLMasterPos( $row->File, $row->Position );
2199 } else {
2200 return false;
2205 * Begin a transaction, committing any previously open transaction
2207 function begin( $fname = 'DatabaseBase::begin' ) {
2208 $this->query( 'BEGIN', $fname );
2209 $this->mTrxLevel = 1;
2213 * End a transaction
2215 function commit( $fname = 'DatabaseBase::commit' ) {
2216 if ( $this->mTrxLevel ) {
2217 $this->query( 'COMMIT', $fname );
2218 $this->mTrxLevel = 0;
2223 * Rollback a transaction.
2224 * No-op on non-transactional databases.
2226 function rollback( $fname = 'DatabaseBase::rollback' ) {
2227 if ( $this->mTrxLevel ) {
2228 $this->query( 'ROLLBACK', $fname, true );
2229 $this->mTrxLevel = 0;
2234 * Begin a transaction, committing any previously open transaction
2235 * @deprecated use begin()
2237 function immediateBegin( $fname = 'DatabaseBase::immediateBegin' ) {
2238 wfDeprecated( __METHOD__ );
2239 $this->begin();
2243 * Commit transaction, if one is open
2244 * @deprecated use commit()
2246 function immediateCommit( $fname = 'DatabaseBase::immediateCommit' ) {
2247 wfDeprecated( __METHOD__ );
2248 $this->commit();
2252 * Creates a new table with structure copied from existing table
2253 * Note that unlike most database abstraction functions, this function does not
2254 * automatically append database prefix, because it works at a lower
2255 * abstraction level.
2257 * @param $oldName String: name of table whose structure should be copied
2258 * @param $newName String: name of table to be created
2259 * @param $temporary Boolean: whether the new table should be temporary
2260 * @param $fname String: calling function name
2261 * @return Boolean: true if operation was successful
2263 function duplicateTableStructure( $oldName, $newName, $temporary = false, $fname = 'DatabaseBase::duplicateTableStructure' ) {
2264 throw new MWException( 'DatabaseBase::duplicateTableStructure is not implemented in descendant class' );
2268 * Return MW-style timestamp used for MySQL schema
2270 function timestamp( $ts = 0 ) {
2271 return wfTimestamp( TS_MW, $ts );
2275 * Local database timestamp format or null
2277 function timestampOrNull( $ts = null ) {
2278 if ( is_null( $ts ) ) {
2279 return null;
2280 } else {
2281 return $this->timestamp( $ts );
2286 * @todo document
2288 function resultObject( $result ) {
2289 if ( empty( $result ) ) {
2290 return false;
2291 } elseif ( $result instanceof ResultWrapper ) {
2292 return $result;
2293 } elseif ( $result === true ) {
2294 // Successful write query
2295 return $result;
2296 } else {
2297 return new ResultWrapper( $this, $result );
2302 * Return aggregated value alias
2304 function aggregateValue ( $valuedata, $valuename = 'value' ) {
2305 return $valuename;
2309 * Ping the server and try to reconnect if it there is no connection
2311 * @return bool Success or failure
2313 function ping() {
2314 # Stub. Not essential to override.
2315 return true;
2319 * Get slave lag.
2320 * Currently supported only by MySQL
2321 * @return Database replication lag in seconds
2323 function getLag() {
2324 return intval( $this->mFakeSlaveLag );
2328 * Get status information from SHOW STATUS in an associative array
2330 function getStatus( $which = "%" ) {
2331 $res = $this->query( "SHOW STATUS LIKE '{$which}'" );
2332 $status = array();
2334 foreach ( $res as $row ) {
2335 $status[$row->Variable_name] = $row->Value;
2338 return $status;
2342 * Return the maximum number of items allowed in a list, or 0 for unlimited.
2344 function maxListLen() {
2345 return 0;
2348 function encodeBlob( $b ) {
2349 return $b;
2352 function decodeBlob( $b ) {
2353 return $b;
2357 * Override database's default connection timeout. May be useful for very
2358 * long batch queries such as full-wiki dumps, where a single query reads
2359 * out over hours or days. May or may not be necessary for non-MySQL
2360 * databases. For most purposes, leaving it as a no-op should be fine.
2362 * @param $timeout Integer in seconds
2364 public function setTimeout( $timeout ) {}
2367 * Read and execute SQL commands from a file.
2368 * Returns true on success, error string or exception on failure (depending on object's error ignore settings)
2369 * @param $filename String: File name to open
2370 * @param $lineCallback Callback: Optional function called before reading each line
2371 * @param $resultCallback Callback: Optional function called for each MySQL result
2372 * @param $fname String: Calling function name or false if name should be generated dynamically
2373 * using $filename
2375 function sourceFile( $filename, $lineCallback = false, $resultCallback = false, $fname = false ) {
2376 $fp = fopen( $filename, 'r' );
2378 if ( false === $fp ) {
2379 if ( !defined( "MEDIAWIKI_INSTALL" ) )
2380 throw new MWException( "Could not open \"{$filename}\".\n" );
2381 else
2382 return "Could not open \"{$filename}\".\n";
2385 if ( !$fname ) {
2386 $fname = __METHOD__ . "( $filename )";
2389 try {
2390 $error = $this->sourceStream( $fp, $lineCallback, $resultCallback, $fname );
2392 catch ( MWException $e ) {
2393 if ( defined( "MEDIAWIKI_INSTALL" ) ) {
2394 $error = $e->getMessage();
2395 } else {
2396 fclose( $fp );
2397 throw $e;
2401 fclose( $fp );
2403 return $error;
2407 * Get the full path of a patch file. Originally based on archive()
2408 * from updaters.inc. Keep in mind this always returns a patch, as
2409 * it fails back to MySQL if no DB-specific patch can be found
2411 * @param $patch String The name of the patch, like patch-something.sql
2412 * @return String Full path to patch file
2414 public function patchPath( $patch ) {
2415 global $IP;
2417 $dbType = $this->getType();
2418 if ( file_exists( "$IP/maintenance/$dbType/archives/$patch" ) ) {
2419 return "$IP/maintenance/$dbType/archives/$patch";
2420 } else {
2421 return "$IP/maintenance/archives/$patch";
2426 * Read and execute commands from an open file handle
2427 * Returns true on success, error string or exception on failure (depending on object's error ignore settings)
2428 * @param $fp String: File handle
2429 * @param $lineCallback Callback: Optional function called before reading each line
2430 * @param $resultCallback Callback: Optional function called for each MySQL result
2431 * @param $fname String: Calling function name
2433 function sourceStream( $fp, $lineCallback = false, $resultCallback = false, $fname = 'DatabaseBase::sourceStream' ) {
2434 $cmd = "";
2435 $done = false;
2436 $dollarquote = false;
2438 while ( ! feof( $fp ) ) {
2439 if ( $lineCallback ) {
2440 call_user_func( $lineCallback );
2443 $line = trim( fgets( $fp, 1024 ) );
2444 $sl = strlen( $line ) - 1;
2446 if ( $sl < 0 ) {
2447 continue;
2450 if ( '-' == $line { 0 } && '-' == $line { 1 } ) {
2451 continue;
2454 # # Allow dollar quoting for function declarations
2455 if ( substr( $line, 0, 4 ) == '$mw$' ) {
2456 if ( $dollarquote ) {
2457 $dollarquote = false;
2458 $done = true;
2460 else {
2461 $dollarquote = true;
2464 else if ( !$dollarquote ) {
2465 if ( ';' == $line { $sl } && ( $sl < 2 || ';' != $line { $sl - 1 } ) ) {
2466 $done = true;
2467 $line = substr( $line, 0, $sl );
2471 if ( $cmd != '' ) {
2472 $cmd .= ' ';
2475 $cmd .= "$line\n";
2477 if ( $done ) {
2478 $cmd = str_replace( ';;', ";", $cmd );
2479 $cmd = $this->replaceVars( $cmd );
2480 $res = $this->query( $cmd, $fname );
2482 if ( $resultCallback ) {
2483 call_user_func( $resultCallback, $res, $this );
2486 if ( false === $res ) {
2487 $err = $this->lastError();
2488 return "Query \"{$cmd}\" failed with error code \"$err\".\n";
2491 $cmd = '';
2492 $done = false;
2496 return true;
2500 * Replace variables in sourced SQL
2502 protected function replaceVars( $ins ) {
2503 $varnames = array(
2504 'wgDBserver', 'wgDBname', 'wgDBintlname', 'wgDBuser',
2505 'wgDBpassword', 'wgDBsqluser', 'wgDBsqlpassword',
2506 'wgDBadminuser', 'wgDBadminpassword', 'wgDBTableOptions',
2509 // Ordinary variables
2510 foreach ( $varnames as $var ) {
2511 if ( isset( $GLOBALS[$var] ) ) {
2512 $val = $this->addQuotes( $GLOBALS[$var] ); // FIXME: safety check?
2513 $ins = str_replace( '{$' . $var . '}', $val, $ins );
2514 $ins = str_replace( '/*$' . $var . '*/`', '`' . $val, $ins );
2515 $ins = str_replace( '/*$' . $var . '*/', $val, $ins );
2519 // Table prefixes
2520 $ins = preg_replace_callback( '!/\*(?:\$wgDBprefix|_)\*/([a-zA-Z_0-9]*)!',
2521 array( $this, 'tableNameCallback' ), $ins );
2523 // Index names
2524 $ins = preg_replace_callback( '!/\*i\*/([a-zA-Z_0-9]*)!',
2525 array( $this, 'indexNameCallback' ), $ins );
2527 return $ins;
2531 * Table name callback
2532 * @private
2534 protected function tableNameCallback( $matches ) {
2535 return $this->tableName( $matches[1] );
2539 * Index name callback
2541 protected function indexNameCallback( $matches ) {
2542 return $this->indexName( $matches[1] );
2546 * Build a concatenation list to feed into a SQL query
2547 * @param $stringList Array: list of raw SQL expressions; caller is responsible for any quoting
2548 * @return String
2550 function buildConcat( $stringList ) {
2551 return 'CONCAT(' . implode( ',', $stringList ) . ')';
2555 * Acquire a named lock
2557 * Abstracted from Filestore::lock() so child classes can implement for
2558 * their own needs.
2560 * @param $lockName String: name of lock to aquire
2561 * @param $method String: name of method calling us
2562 * @param $timeout Integer: timeout
2563 * @return Boolean
2565 public function lock( $lockName, $method, $timeout = 5 ) {
2566 return true;
2570 * Release a lock.
2572 * @param $lockName String: Name of lock to release
2573 * @param $method String: Name of method calling us
2575 * @return Returns 1 if the lock was released, 0 if the lock was not established
2576 * by this thread (in which case the lock is not released), and NULL if the named
2577 * lock did not exist
2579 public function unlock( $lockName, $method ) {
2580 return true;
2584 * Lock specific tables
2586 * @param $read Array of tables to lock for read access
2587 * @param $write Array of tables to lock for write access
2588 * @param $method String name of caller
2589 * @param $lowPriority bool Whether to indicate writes to be LOW PRIORITY
2591 public function lockTables( $read, $write, $method, $lowPriority = true ) {
2592 return true;
2596 * Unlock specific tables
2598 * @param $method String the caller
2600 public function unlockTables( $method ) {
2601 return true;
2605 * Get search engine class. All subclasses of this need to implement this
2606 * if they wish to use searching.
2608 * @return String
2610 public function getSearchEngine() {
2611 return 'SearchEngineDummy';
2615 * Allow or deny "big selects" for this session only. This is done by setting
2616 * the sql_big_selects session variable.
2618 * This is a MySQL-specific feature.
2620 * @param $value Mixed: true for allow, false for deny, or "default" to restore the initial value
2622 public function setBigSelects( $value = true ) {
2623 // no-op
2627 /******************************************************************************
2628 * Utility classes
2629 *****************************************************************************/
2632 * Utility class.
2633 * @ingroup Database
2635 class DBObject {
2636 public $mData;
2638 function __construct( $data ) {
2639 $this->mData = $data;
2642 function isLOB() {
2643 return false;
2646 function data() {
2647 return $this->mData;
2652 * Utility class
2653 * @ingroup Database
2655 * This allows us to distinguish a blob from a normal string and an array of strings
2657 class Blob {
2658 private $mData;
2660 function __construct( $data ) {
2661 $this->mData = $data;
2664 function fetch() {
2665 return $this->mData;
2670 * Base for all database-specific classes representing information about database fields
2671 * @ingroup Database
2673 interface Field {
2675 * Field name
2676 * @return string
2678 function name();
2681 * Name of table this field belongs to
2682 * @return string
2684 function tableName();
2687 * Database type
2688 * @return string
2690 function type();
2693 * Whether this field can store NULL values
2694 * @return bool
2696 function isNullable();
2699 /******************************************************************************
2700 * Error classes
2701 *****************************************************************************/
2704 * Database error base class
2705 * @ingroup Database
2707 class DBError extends MWException {
2708 public $db;
2711 * Construct a database error
2712 * @param $db Database object which threw the error
2713 * @param $error A simple error message to be used for debugging
2715 function __construct( DatabaseBase &$db, $error ) {
2716 $this->db =& $db;
2717 parent::__construct( $error );
2720 function getText() {
2721 global $wgShowDBErrorBacktrace;
2723 $s = $this->getMessage() . "\n";
2725 if ( $wgShowDBErrorBacktrace ) {
2726 $s .= "Backtrace:\n" . $this->getTraceAsString() . "\n";
2729 return $s;
2734 * @ingroup Database
2736 class DBConnectionError extends DBError {
2737 public $error;
2739 function __construct( DatabaseBase &$db, $error = 'unknown error' ) {
2740 $msg = 'DB connection error';
2742 if ( trim( $error ) != '' ) {
2743 $msg .= ": $error";
2746 $this->error = $error;
2748 parent::__construct( $db, $msg );
2751 function useOutputPage() {
2752 // Not likely to work
2753 return false;
2756 function useMessageCache() {
2757 // Not likely to work
2758 return false;
2761 function getLogMessage() {
2762 # Don't send to the exception log
2763 return false;
2766 function getPageTitle() {
2767 global $wgSitename, $wgLang;
2769 $header = "$wgSitename has a problem";
2771 if ( $wgLang instanceof Language ) {
2772 $header = htmlspecialchars( $wgLang->getMessage( 'dberr-header' ) );
2775 return $header;
2778 function getHTML() {
2779 global $wgLang, $wgMessageCache, $wgUseFileCache, $wgShowDBErrorBacktrace;
2781 $sorry = 'Sorry! This site is experiencing technical difficulties.';
2782 $again = 'Try waiting a few minutes and reloading.';
2783 $info = '(Can\'t contact the database server: $1)';
2785 if ( $wgLang instanceof Language ) {
2786 $sorry = htmlspecialchars( $wgLang->getMessage( 'dberr-problems' ) );
2787 $again = htmlspecialchars( $wgLang->getMessage( 'dberr-again' ) );
2788 $info = htmlspecialchars( $wgLang->getMessage( 'dberr-info' ) );
2791 # No database access
2792 if ( is_object( $wgMessageCache ) ) {
2793 $wgMessageCache->disable();
2796 if ( trim( $this->error ) == '' ) {
2797 $this->error = $this->db->getProperty( 'mServer' );
2800 $noconnect = "<p><strong>$sorry</strong><br />$again</p><p><small>$info</small></p>";
2801 $text = str_replace( '$1', $this->error, $noconnect );
2803 if ( $wgShowDBErrorBacktrace ) {
2804 $text .= '<p>Backtrace:</p><p>' . nl2br( htmlspecialchars( $this->getTraceAsString() ) );
2807 $extra = $this->searchForm();
2809 if ( $wgUseFileCache ) {
2810 try {
2811 $cache = $this->fileCachedPage();
2812 # Cached version on file system?
2813 if ( $cache !== null ) {
2814 # Hack: extend the body for error messages
2815 $cache = str_replace( array( '</html>', '</body>' ), '', $cache );
2816 # Add cache notice...
2817 $cachederror = "This is a cached copy of the requested page, and may not be up to date. ";
2819 # Localize it if possible...
2820 if ( $wgLang instanceof Language ) {
2821 $cachederror = htmlspecialchars( $wgLang->getMessage( 'dberr-cachederror' ) );
2824 $warning = "<div style='color:red;font-size:150%;font-weight:bold;'>$cachederror</div>";
2826 # Output cached page with notices on bottom and re-close body
2827 return "{$cache}{$warning}<hr />$text<hr />$extra</body></html>";
2829 } catch ( MWException $e ) {
2830 // Do nothing, just use the default page
2834 # Headers needed here - output is just the error message
2835 return $this->htmlHeader() . "$text<hr />$extra" . $this->htmlFooter();
2838 function searchForm() {
2839 global $wgSitename, $wgServer, $wgLang;
2841 $usegoogle = "You can try searching via Google in the meantime.";
2842 $outofdate = "Note that their indexes of our content may be out of date.";
2843 $googlesearch = "Search";
2845 if ( $wgLang instanceof Language ) {
2846 $usegoogle = htmlspecialchars( $wgLang->getMessage( 'dberr-usegoogle' ) );
2847 $outofdate = htmlspecialchars( $wgLang->getMessage( 'dberr-outofdate' ) );
2848 $googlesearch = htmlspecialchars( $wgLang->getMessage( 'searchbutton' ) );
2851 $search = htmlspecialchars( @$_REQUEST['search'] );
2853 $server = htmlspecialchars( $wgServer );
2854 $sitename = htmlspecialchars( $wgSitename );
2856 $trygoogle = <<<EOT
2857 <div style="margin: 1.5em">$usegoogle<br />
2858 <small>$outofdate</small></div>
2859 <!-- SiteSearch Google -->
2860 <form method="get" action="http://www.google.com/search" id="googlesearch">
2861 <input type="hidden" name="domains" value="$server" />
2862 <input type="hidden" name="num" value="50" />
2863 <input type="hidden" name="ie" value="UTF-8" />
2864 <input type="hidden" name="oe" value="UTF-8" />
2866 <input type="text" name="q" size="31" maxlength="255" value="$search" />
2867 <input type="submit" name="btnG" value="$googlesearch" />
2868 <div>
2869 <input type="radio" name="sitesearch" id="gwiki" value="$server" checked="checked" /><label for="gwiki">$sitename</label>
2870 <input type="radio" name="sitesearch" id="gWWW" value="" /><label for="gWWW">WWW</label>
2871 </div>
2872 </form>
2873 <!-- SiteSearch Google -->
2874 EOT;
2875 return $trygoogle;
2878 function fileCachedPage() {
2879 global $wgTitle, $title, $wgLang, $wgOut;
2881 if ( $wgOut->isDisabled() ) {
2882 return; // Done already?
2885 $mainpage = 'Main Page';
2887 if ( $wgLang instanceof Language ) {
2888 $mainpage = htmlspecialchars( $wgLang->getMessage( 'mainpage' ) );
2891 if ( $wgTitle ) {
2892 $t =& $wgTitle;
2893 } elseif ( $title ) {
2894 $t = Title::newFromURL( $title );
2895 } else {
2896 $t = Title::newFromText( $mainpage );
2899 $cache = new HTMLFileCache( $t );
2900 if ( $cache->isFileCached() ) {
2901 return $cache->fetchPageText();
2902 } else {
2903 return '';
2907 function htmlBodyOnly() {
2908 return true;
2913 * @ingroup Database
2915 class DBQueryError extends DBError {
2916 public $error, $errno, $sql, $fname;
2918 function __construct( DatabaseBase &$db, $error, $errno, $sql, $fname ) {
2919 $message = "A database error has occurred. Did you forget to run maintenance/update.php after upgrading? See: http://www.mediawiki.org/wiki/Manual:Upgrading#Run_the_update_script\n" .
2920 "Query: $sql\n" .
2921 "Function: $fname\n" .
2922 "Error: $errno $error\n";
2924 parent::__construct( $db, $message );
2926 $this->error = $error;
2927 $this->errno = $errno;
2928 $this->sql = $sql;
2929 $this->fname = $fname;
2932 function getText() {
2933 global $wgShowDBErrorBacktrace;
2935 if ( $this->useMessageCache() ) {
2936 $s = wfMsg( 'dberrortextcl', htmlspecialchars( $this->getSQL() ),
2937 htmlspecialchars( $this->fname ), $this->errno, htmlspecialchars( $this->error ) ) . "\n";
2939 if ( $wgShowDBErrorBacktrace ) {
2940 $s .= "Backtrace:\n" . $this->getTraceAsString() . "\n";
2943 return $s;
2944 } else {
2945 return parent::getText();
2949 function getSQL() {
2950 global $wgShowSQLErrors;
2952 if ( !$wgShowSQLErrors ) {
2953 return $this->msg( 'sqlhidden', 'SQL hidden' );
2954 } else {
2955 return $this->sql;
2959 function getLogMessage() {
2960 # Don't send to the exception log
2961 return false;
2964 function getPageTitle() {
2965 return $this->msg( 'databaseerror', 'Database error' );
2968 function getHTML() {
2969 global $wgShowDBErrorBacktrace;
2971 if ( $this->useMessageCache() ) {
2972 $s = wfMsgNoDB( 'dberrortext', htmlspecialchars( $this->getSQL() ),
2973 htmlspecialchars( $this->fname ), $this->errno, htmlspecialchars( $this->error ) );
2974 } else {
2975 $s = nl2br( htmlspecialchars( $this->getMessage() ) );
2978 if ( $wgShowDBErrorBacktrace ) {
2979 $s .= '<p>Backtrace:</p><p>' . nl2br( htmlspecialchars( $this->getTraceAsString() ) );
2982 return $s;
2987 * @ingroup Database
2989 class DBUnexpectedError extends DBError {}
2993 * Result wrapper for grabbing data queried by someone else
2994 * @ingroup Database
2996 class ResultWrapper implements Iterator {
2997 var $db, $result, $pos = 0, $currentRow = null;
3000 * Create a new result object from a result resource and a Database object
3002 function __construct( $database, $result ) {
3003 $this->db = $database;
3005 if ( $result instanceof ResultWrapper ) {
3006 $this->result = $result->result;
3007 } else {
3008 $this->result = $result;
3013 * Get the number of rows in a result object
3015 function numRows() {
3016 return $this->db->numRows( $this );
3020 * Fetch the next row from the given result object, in object form.
3021 * Fields can be retrieved with $row->fieldname, with fields acting like
3022 * member variables.
3024 * @return MySQL row object
3025 * @throws DBUnexpectedError Thrown if the database returns an error
3027 function fetchObject() {
3028 return $this->db->fetchObject( $this );
3032 * Fetch the next row from the given result object, in associative array
3033 * form. Fields are retrieved with $row['fieldname'].
3035 * @return MySQL row object
3036 * @throws DBUnexpectedError Thrown if the database returns an error
3038 function fetchRow() {
3039 return $this->db->fetchRow( $this );
3043 * Free a result object
3045 function free() {
3046 $this->db->freeResult( $this );
3047 unset( $this->result );
3048 unset( $this->db );
3052 * Change the position of the cursor in a result object
3053 * See mysql_data_seek()
3055 function seek( $row ) {
3056 $this->db->dataSeek( $this, $row );
3059 /*********************
3060 * Iterator functions
3061 * Note that using these in combination with the non-iterator functions
3062 * above may cause rows to be skipped or repeated.
3065 function rewind() {
3066 if ( $this->numRows() ) {
3067 $this->db->dataSeek( $this, 0 );
3069 $this->pos = 0;
3070 $this->currentRow = null;
3073 function current() {
3074 if ( is_null( $this->currentRow ) ) {
3075 $this->next();
3077 return $this->currentRow;
3080 function key() {
3081 return $this->pos;
3084 function next() {
3085 $this->pos++;
3086 $this->currentRow = $this->fetchObject();
3087 return $this->currentRow;
3090 function valid() {
3091 return $this->current() !== false;
3096 * Overloads the relevant methods of the real ResultsWrapper so it
3097 * doesn't go anywhere near an actual database.
3099 class FakeResultWrapper extends ResultWrapper {
3100 var $result = array();
3101 var $db = null; // And it's going to stay that way :D
3102 var $pos = 0;
3103 var $currentRow = null;
3105 function __construct( $array ) {
3106 $this->result = $array;
3109 function numRows() {
3110 return count( $this->result );
3113 function fetchRow() {
3114 $this->currentRow = $this->result[$this->pos++];
3115 return $this->currentRow;
3118 function seek( $row ) {
3119 $this->pos = $row;
3122 function free() {}
3124 // Callers want to be able to access fields with $this->fieldName
3125 function fetchObject() {
3126 $this->currentRow = $this->result[$this->pos++];
3127 return (object)$this->currentRow;
3130 function rewind() {
3131 $this->pos = 0;
3132 $this->currentRow = null;
3137 * Used by DatabaseBase::buildLike() to represent characters that have special meaning in SQL LIKE clauses
3138 * and thus need no escaping. Don't instantiate it manually, use DatabaseBase::anyChar() and anyString() instead.
3140 class LikeMatch {
3141 private $str;
3143 public function __construct( $s ) {
3144 $this->str = $s;
3147 public function toString() {
3148 return $this->str;