Remove taint support
[lhc/web/wiklou.git] / includes / db / Database.php
1 <?php
2 /**
3 * @defgroup Database Database
4 *
5 * This file deals with database interface functions
6 * and query specifics/optimisations.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 * @ingroup Database
25 */
26
27 /** Number of times to re-try an operation in case of deadlock */
28 define( 'DEADLOCK_TRIES', 4 );
29 /** Minimum time to wait before retry, in microseconds */
30 define( 'DEADLOCK_DELAY_MIN', 500000 );
31 /** Maximum time to wait before retry */
32 define( 'DEADLOCK_DELAY_MAX', 1500000 );
33
34 /**
35 * Base interface for all DBMS-specific code. At a bare minimum, all of the
36 * following must be implemented to support MediaWiki
37 *
38 * @file
39 * @ingroup Database
40 */
41 interface DatabaseType {
42 /**
43 * Get the type of the DBMS, as it appears in $wgDBtype.
44 *
45 * @return string
46 */
47 function getType();
48
49 /**
50 * Open a connection to the database. Usually aborts on failure
51 *
52 * @param string $server database server host
53 * @param string $user database user name
54 * @param string $password database user password
55 * @param string $dbName database name
56 * @return bool
57 * @throws DBConnectionError
58 */
59 function open( $server, $user, $password, $dbName );
60
61 /**
62 * Fetch the next row from the given result object, in object form.
63 * Fields can be retrieved with $row->fieldname, with fields acting like
64 * member variables.
65 * If no more rows are available, false is returned.
66 *
67 * @param $res ResultWrapper|object as returned from DatabaseBase::query(), etc.
68 * @return object|bool
69 * @throws DBUnexpectedError Thrown if the database returns an error
70 */
71 function fetchObject( $res );
72
73 /**
74 * Fetch the next row from the given result object, in associative array
75 * form. Fields are retrieved with $row['fieldname'].
76 * If no more rows are available, false is returned.
77 *
78 * @param $res ResultWrapper result object as returned from DatabaseBase::query(), etc.
79 * @return array|bool
80 * @throws DBUnexpectedError Thrown if the database returns an error
81 */
82 function fetchRow( $res );
83
84 /**
85 * Get the number of rows in a result object
86 *
87 * @param $res Mixed: A SQL result
88 * @return int
89 */
90 function numRows( $res );
91
92 /**
93 * Get the number of fields in a result object
94 * @see http://www.php.net/mysql_num_fields
95 *
96 * @param $res Mixed: A SQL result
97 * @return int
98 */
99 function numFields( $res );
100
101 /**
102 * Get a field name in a result object
103 * @see http://www.php.net/mysql_field_name
104 *
105 * @param $res Mixed: A SQL result
106 * @param $n Integer
107 * @return string
108 */
109 function fieldName( $res, $n );
110
111 /**
112 * Get the inserted value of an auto-increment row
113 *
114 * The value inserted should be fetched from nextSequenceValue()
115 *
116 * Example:
117 * $id = $dbw->nextSequenceValue( 'page_page_id_seq' );
118 * $dbw->insert( 'page', array( 'page_id' => $id ) );
119 * $id = $dbw->insertId();
120 *
121 * @return int
122 */
123 function insertId();
124
125 /**
126 * Change the position of the cursor in a result object
127 * @see http://www.php.net/mysql_data_seek
128 *
129 * @param $res Mixed: A SQL result
130 * @param $row Mixed: Either MySQL row or ResultWrapper
131 */
132 function dataSeek( $res, $row );
133
134 /**
135 * Get the last error number
136 * @see http://www.php.net/mysql_errno
137 *
138 * @return int
139 */
140 function lastErrno();
141
142 /**
143 * Get a description of the last error
144 * @see http://www.php.net/mysql_error
145 *
146 * @return string
147 */
148 function lastError();
149
150 /**
151 * mysql_fetch_field() wrapper
152 * Returns false if the field doesn't exist
153 *
154 * @param string $table table name
155 * @param string $field field name
156 *
157 * @return Field
158 */
159 function fieldInfo( $table, $field );
160
161 /**
162 * Get information about an index into an object
163 * @param string $table Table name
164 * @param string $index Index name
165 * @param string $fname Calling function name
166 * @return Mixed: Database-specific index description class or false if the index does not exist
167 */
168 function indexInfo( $table, $index, $fname = 'Database::indexInfo' );
169
170 /**
171 * Get the number of rows affected by the last write query
172 * @see http://www.php.net/mysql_affected_rows
173 *
174 * @return int
175 */
176 function affectedRows();
177
178 /**
179 * Wrapper for addslashes()
180 *
181 * @param string $s to be slashed.
182 * @return string: slashed string.
183 */
184 function strencode( $s );
185
186 /**
187 * Returns a wikitext link to the DB's website, e.g.,
188 * return "[http://www.mysql.com/ MySQL]";
189 * Should at least contain plain text, if for some reason
190 * your database has no website.
191 *
192 * @return string: wikitext of a link to the server software's web site
193 */
194 static function getSoftwareLink();
195
196 /**
197 * A string describing the current software version, like from
198 * mysql_get_server_info().
199 *
200 * @return string: Version information from the database server.
201 */
202 function getServerVersion();
203
204 /**
205 * A string describing the current software version, and possibly
206 * other details in a user-friendly way. Will be listed on Special:Version, etc.
207 * Use getServerVersion() to get machine-friendly information.
208 *
209 * @return string: Version information from the database server
210 */
211 function getServerInfo();
212 }
213
214 /**
215 * Database abstraction object
216 * @ingroup Database
217 */
218 abstract class DatabaseBase implements DatabaseType {
219
220 # ------------------------------------------------------------------------------
221 # Variables
222 # ------------------------------------------------------------------------------
223
224 protected $mLastQuery = '';
225 protected $mDoneWrites = false;
226 protected $mPHPError = false;
227
228 protected $mServer, $mUser, $mPassword, $mDBname;
229
230 protected $mConn = null;
231 protected $mOpened = false;
232
233 /** @var array of Closure */
234 protected $mTrxIdleCallbacks = array();
235 /** @var array of Closure */
236 protected $mTrxPreCommitCallbacks = array();
237
238 protected $mTablePrefix;
239 protected $mFlags;
240 protected $mTrxLevel = 0;
241 protected $mErrorCount = 0;
242 protected $mLBInfo = array();
243 protected $mFakeSlaveLag = null, $mFakeMaster = false;
244 protected $mDefaultBigSelects = null;
245 protected $mSchemaVars = false;
246
247 protected $preparedArgs;
248
249 protected $htmlErrors;
250
251 protected $delimiter = ';';
252
253 /**
254 * Remembers the function name given for starting the most recent transaction via begin().
255 * Used to provide additional context for error reporting.
256 *
257 * @var String
258 * @see DatabaseBase::mTrxLevel
259 */
260 private $mTrxFname = null;
261
262 /**
263 * Record if possible write queries were done in the last transaction started
264 *
265 * @var Bool
266 * @see DatabaseBase::mTrxLevel
267 */
268 private $mTrxDoneWrites = false;
269
270 /**
271 * Record if the current transaction was started implicitly due to DBO_TRX being set.
272 *
273 * @var Bool
274 * @see DatabaseBase::mTrxLevel
275 */
276 private $mTrxAutomatic = false;
277
278 /**
279 * @since 1.21
280 * @var file handle for upgrade
281 */
282 protected $fileHandle = null;
283
284 # ------------------------------------------------------------------------------
285 # Accessors
286 # ------------------------------------------------------------------------------
287 # These optionally set a variable and return the previous state
288
289 /**
290 * A string describing the current software version, and possibly
291 * other details in a user-friendly way. Will be listed on Special:Version, etc.
292 * Use getServerVersion() to get machine-friendly information.
293 *
294 * @return string: Version information from the database server
295 */
296 public function getServerInfo() {
297 return $this->getServerVersion();
298 }
299
300 /**
301 * @return string: command delimiter used by this database engine
302 */
303 public function getDelimiter() {
304 return $this->delimiter;
305 }
306
307 /**
308 * Boolean, controls output of large amounts of debug information.
309 * @param $debug bool|null
310 * - true to enable debugging
311 * - false to disable debugging
312 * - omitted or null to do nothing
313 *
314 * @return bool|null previous value of the flag
315 */
316 public function debug( $debug = null ) {
317 return wfSetBit( $this->mFlags, DBO_DEBUG, $debug );
318 }
319
320 /**
321 * Turns buffering of SQL result sets on (true) or off (false). Default is
322 * "on".
323 *
324 * Unbuffered queries are very troublesome in MySQL:
325 *
326 * - If another query is executed while the first query is being read
327 * out, the first query is killed. This means you can't call normal
328 * MediaWiki functions while you are reading an unbuffered query result
329 * from a normal wfGetDB() connection.
330 *
331 * - Unbuffered queries cause the MySQL server to use large amounts of
332 * memory and to hold broad locks which block other queries.
333 *
334 * If you want to limit client-side memory, it's almost always better to
335 * split up queries into batches using a LIMIT clause than to switch off
336 * buffering.
337 *
338 * @param $buffer null|bool
339 *
340 * @return null|bool The previous value of the flag
341 */
342 public function bufferResults( $buffer = null ) {
343 if ( is_null( $buffer ) ) {
344 return !(bool)( $this->mFlags & DBO_NOBUFFER );
345 } else {
346 return !wfSetBit( $this->mFlags, DBO_NOBUFFER, !$buffer );
347 }
348 }
349
350 /**
351 * Turns on (false) or off (true) the automatic generation and sending
352 * of a "we're sorry, but there has been a database error" page on
353 * database errors. Default is on (false). When turned off, the
354 * code should use lastErrno() and lastError() to handle the
355 * situation as appropriate.
356 *
357 * @param $ignoreErrors bool|null
358 *
359 * @return bool The previous value of the flag.
360 */
361 public function ignoreErrors( $ignoreErrors = null ) {
362 return wfSetBit( $this->mFlags, DBO_IGNORE, $ignoreErrors );
363 }
364
365 /**
366 * Gets or sets the current transaction level.
367 *
368 * Historically, transactions were allowed to be "nested". This is no
369 * longer supported, so this function really only returns a boolean.
370 *
371 * @param int $level An integer (0 or 1), or omitted to leave it unchanged.
372 * @return int The previous value
373 */
374 public function trxLevel( $level = null ) {
375 return wfSetVar( $this->mTrxLevel, $level );
376 }
377
378 /**
379 * Get/set the number of errors logged. Only useful when errors are ignored
380 * @param int $count The count to set, or omitted to leave it unchanged.
381 * @return int The error count
382 */
383 public function errorCount( $count = null ) {
384 return wfSetVar( $this->mErrorCount, $count );
385 }
386
387 /**
388 * Get/set the table prefix.
389 * @param string $prefix The table prefix to set, or omitted to leave it unchanged.
390 * @return string The previous table prefix.
391 */
392 public function tablePrefix( $prefix = null ) {
393 return wfSetVar( $this->mTablePrefix, $prefix );
394 }
395
396 /**
397 * Set the filehandle to copy write statements to.
398 *
399 * @param $fh filehandle
400 */
401 public function setFileHandle( $fh ) {
402 $this->fileHandle = $fh;
403 }
404
405 /**
406 * Get properties passed down from the server info array of the load
407 * balancer.
408 *
409 * @param string $name The entry of the info array to get, or null to get the
410 * whole array
411 *
412 * @return LoadBalancer|null
413 */
414 public function getLBInfo( $name = null ) {
415 if ( is_null( $name ) ) {
416 return $this->mLBInfo;
417 } else {
418 if ( array_key_exists( $name, $this->mLBInfo ) ) {
419 return $this->mLBInfo[$name];
420 } else {
421 return null;
422 }
423 }
424 }
425
426 /**
427 * Set the LB info array, or a member of it. If called with one parameter,
428 * the LB info array is set to that parameter. If it is called with two
429 * parameters, the member with the given name is set to the given value.
430 *
431 * @param $name
432 * @param $value
433 */
434 public function setLBInfo( $name, $value = null ) {
435 if ( is_null( $value ) ) {
436 $this->mLBInfo = $name;
437 } else {
438 $this->mLBInfo[$name] = $value;
439 }
440 }
441
442 /**
443 * Set lag time in seconds for a fake slave
444 *
445 * @param $lag int
446 */
447 public function setFakeSlaveLag( $lag ) {
448 $this->mFakeSlaveLag = $lag;
449 }
450
451 /**
452 * Make this connection a fake master
453 *
454 * @param $enabled bool
455 */
456 public function setFakeMaster( $enabled = true ) {
457 $this->mFakeMaster = $enabled;
458 }
459
460 /**
461 * Returns true if this database supports (and uses) cascading deletes
462 *
463 * @return bool
464 */
465 public function cascadingDeletes() {
466 return false;
467 }
468
469 /**
470 * Returns true if this database supports (and uses) triggers (e.g. on the page table)
471 *
472 * @return bool
473 */
474 public function cleanupTriggers() {
475 return false;
476 }
477
478 /**
479 * Returns true if this database is strict about what can be put into an IP field.
480 * Specifically, it uses a NULL value instead of an empty string.
481 *
482 * @return bool
483 */
484 public function strictIPs() {
485 return false;
486 }
487
488 /**
489 * Returns true if this database uses timestamps rather than integers
490 *
491 * @return bool
492 */
493 public function realTimestamps() {
494 return false;
495 }
496
497 /**
498 * Returns true if this database does an implicit sort when doing GROUP BY
499 *
500 * @return bool
501 */
502 public function implicitGroupby() {
503 return true;
504 }
505
506 /**
507 * Returns true if this database does an implicit order by when the column has an index
508 * For example: SELECT page_title FROM page LIMIT 1
509 *
510 * @return bool
511 */
512 public function implicitOrderby() {
513 return true;
514 }
515
516 /**
517 * Returns true if this database can do a native search on IP columns
518 * e.g. this works as expected: .. WHERE rc_ip = '127.42.12.102/32';
519 *
520 * @return bool
521 */
522 public function searchableIPs() {
523 return false;
524 }
525
526 /**
527 * Returns true if this database can use functional indexes
528 *
529 * @return bool
530 */
531 public function functionalIndexes() {
532 return false;
533 }
534
535 /**
536 * Return the last query that went through DatabaseBase::query()
537 * @return String
538 */
539 public function lastQuery() {
540 return $this->mLastQuery;
541 }
542
543 /**
544 * Returns true if the connection may have been used for write queries.
545 * Should return true if unsure.
546 *
547 * @return bool
548 */
549 public function doneWrites() {
550 return $this->mDoneWrites;
551 }
552
553 /**
554 * Returns true if there is a transaction open with possible write
555 * queries or transaction pre-commit/idle callbacks waiting on it to finish.
556 *
557 * @return bool
558 */
559 public function writesOrCallbacksPending() {
560 return $this->mTrxLevel && (
561 $this->mTrxDoneWrites || $this->mTrxIdleCallbacks || $this->mTrxPreCommitCallbacks
562 );
563 }
564
565 /**
566 * Is a connection to the database open?
567 * @return Boolean
568 */
569 public function isOpen() {
570 return $this->mOpened;
571 }
572
573 /**
574 * Set a flag for this connection
575 *
576 * @param $flag Integer: DBO_* constants from Defines.php:
577 * - DBO_DEBUG: output some debug info (same as debug())
578 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
579 * - DBO_IGNORE: ignore errors (same as ignoreErrors())
580 * - DBO_TRX: automatically start transactions
581 * - DBO_DEFAULT: automatically sets DBO_TRX if not in command line mode
582 * and removes it in command line mode
583 * - DBO_PERSISTENT: use persistant database connection
584 */
585 public function setFlag( $flag ) {
586 global $wgDebugDBTransactions;
587 $this->mFlags |= $flag;
588 if ( ( $flag & DBO_TRX ) & $wgDebugDBTransactions ) {
589 wfDebug( "Implicit transactions are now disabled.\n" );
590 }
591 }
592
593 /**
594 * Clear a flag for this connection
595 *
596 * @param $flag: same as setFlag()'s $flag param
597 */
598 public function clearFlag( $flag ) {
599 global $wgDebugDBTransactions;
600 $this->mFlags &= ~$flag;
601 if ( ( $flag & DBO_TRX ) && $wgDebugDBTransactions ) {
602 wfDebug( "Implicit transactions are now disabled.\n" );
603 }
604 }
605
606 /**
607 * Returns a boolean whether the flag $flag is set for this connection
608 *
609 * @param $flag: same as setFlag()'s $flag param
610 * @return Boolean
611 */
612 public function getFlag( $flag ) {
613 return !!( $this->mFlags & $flag );
614 }
615
616 /**
617 * General read-only accessor
618 *
619 * @param $name string
620 *
621 * @return string
622 */
623 public function getProperty( $name ) {
624 return $this->$name;
625 }
626
627 /**
628 * @return string
629 */
630 public function getWikiID() {
631 if ( $this->mTablePrefix ) {
632 return "{$this->mDBname}-{$this->mTablePrefix}";
633 } else {
634 return $this->mDBname;
635 }
636 }
637
638 /**
639 * Return a path to the DBMS-specific schema file, otherwise default to tables.sql
640 *
641 * @return string
642 */
643 public function getSchemaPath() {
644 global $IP;
645 if ( file_exists( "$IP/maintenance/" . $this->getType() . "/tables.sql" ) ) {
646 return "$IP/maintenance/" . $this->getType() . "/tables.sql";
647 } else {
648 return "$IP/maintenance/tables.sql";
649 }
650 }
651
652 # ------------------------------------------------------------------------------
653 # Other functions
654 # ------------------------------------------------------------------------------
655
656 /**
657 * Constructor.
658 * @param string $server database server host
659 * @param string $user database user name
660 * @param string $password database user password
661 * @param string $dbName database name
662 * @param $flags
663 * @param string $tablePrefix database table prefixes. By default use the prefix gave in LocalSettings.php
664 */
665 function __construct( $server = false, $user = false, $password = false, $dbName = false,
666 $flags = 0, $tablePrefix = 'get from global'
667 ) {
668 global $wgDBprefix, $wgCommandLineMode, $wgDebugDBTransactions;
669
670 $this->mFlags = $flags;
671
672 if ( $this->mFlags & DBO_DEFAULT ) {
673 if ( $wgCommandLineMode ) {
674 $this->mFlags &= ~DBO_TRX;
675 if ( $wgDebugDBTransactions ) {
676 wfDebug( "Implicit transaction open disabled.\n" );
677 }
678 } else {
679 $this->mFlags |= DBO_TRX;
680 if ( $wgDebugDBTransactions ) {
681 wfDebug( "Implicit transaction open enabled.\n" );
682 }
683 }
684 }
685
686 /** Get the default table prefix*/
687 if ( $tablePrefix == 'get from global' ) {
688 $this->mTablePrefix = $wgDBprefix;
689 } else {
690 $this->mTablePrefix = $tablePrefix;
691 }
692
693 if ( $user ) {
694 $this->open( $server, $user, $password, $dbName );
695 }
696 }
697
698 /**
699 * Called by serialize. Throw an exception when DB connection is serialized.
700 * This causes problems on some database engines because the connection is
701 * not restored on unserialize.
702 */
703 public function __sleep() {
704 throw new MWException( 'Database serialization may cause problems, since the connection is not restored on wakeup.' );
705 }
706
707 /**
708 * Given a DB type, construct the name of the appropriate child class of
709 * DatabaseBase. This is designed to replace all of the manual stuff like:
710 * $class = 'Database' . ucfirst( strtolower( $type ) );
711 * as well as validate against the canonical list of DB types we have
712 *
713 * This factory function is mostly useful for when you need to connect to a
714 * database other than the MediaWiki default (such as for external auth,
715 * an extension, et cetera). Do not use this to connect to the MediaWiki
716 * database. Example uses in core:
717 * @see LoadBalancer::reallyOpenConnection()
718 * @see ForeignDBRepo::getMasterDB()
719 * @see WebInstaller_DBConnect::execute()
720 *
721 * @since 1.18
722 *
723 * @param string $dbType A possible DB type
724 * @param array $p An array of options to pass to the constructor.
725 * Valid options are: host, user, password, dbname, flags, tablePrefix
726 * @return DatabaseBase subclass or null
727 */
728 final public static function factory( $dbType, $p = array() ) {
729 $canonicalDBTypes = array(
730 'mysql', 'postgres', 'sqlite', 'oracle', 'mssql'
731 );
732 $dbType = strtolower( $dbType );
733 $class = 'Database' . ucfirst( $dbType );
734
735 if ( in_array( $dbType, $canonicalDBTypes ) || ( class_exists( $class ) && is_subclass_of( $class, 'DatabaseBase' ) ) ) {
736 return new $class(
737 isset( $p['host'] ) ? $p['host'] : false,
738 isset( $p['user'] ) ? $p['user'] : false,
739 isset( $p['password'] ) ? $p['password'] : false,
740 isset( $p['dbname'] ) ? $p['dbname'] : false,
741 isset( $p['flags'] ) ? $p['flags'] : 0,
742 isset( $p['tablePrefix'] ) ? $p['tablePrefix'] : 'get from global'
743 );
744 } else {
745 return null;
746 }
747 }
748
749 protected function installErrorHandler() {
750 $this->mPHPError = false;
751 $this->htmlErrors = ini_set( 'html_errors', '0' );
752 set_error_handler( array( $this, 'connectionErrorHandler' ) );
753 }
754
755 /**
756 * @return bool|string
757 */
758 protected function restoreErrorHandler() {
759 restore_error_handler();
760 if ( $this->htmlErrors !== false ) {
761 ini_set( 'html_errors', $this->htmlErrors );
762 }
763 if ( $this->mPHPError ) {
764 $error = preg_replace( '!\[<a.*</a>\]!', '', $this->mPHPError );
765 $error = preg_replace( '!^.*?:\s?(.*)$!', '$1', $error );
766 return $error;
767 } else {
768 return false;
769 }
770 }
771
772 /**
773 * @param $errno
774 * @param $errstr
775 * @access private
776 */
777 public function connectionErrorHandler( $errno, $errstr ) {
778 $this->mPHPError = $errstr;
779 }
780
781 /**
782 * Closes a database connection.
783 * if it is open : commits any open transactions
784 *
785 * @throws MWException
786 * @return Bool operation success. true if already closed.
787 */
788 public function close() {
789 if ( count( $this->mTrxIdleCallbacks ) ) { // sanity
790 throw new MWException( "Transaction idle callbacks still pending." );
791 }
792 $this->mOpened = false;
793 if ( $this->mConn ) {
794 if ( $this->trxLevel() ) {
795 if ( !$this->mTrxAutomatic ) {
796 wfWarn( "Transaction still in progress (from {$this->mTrxFname}), " .
797 " performing implicit commit before closing connection!" );
798 }
799
800 $this->commit( __METHOD__, 'flush' );
801 }
802
803 $ret = $this->closeConnection();
804 $this->mConn = false;
805 return $ret;
806 } else {
807 return true;
808 }
809 }
810
811 /**
812 * Closes underlying database connection
813 * @since 1.20
814 * @return bool: Whether connection was closed successfully
815 */
816 abstract protected function closeConnection();
817
818 /**
819 * @param string $error fallback error message, used if none is given by DB
820 * @throws DBConnectionError
821 */
822 function reportConnectionError( $error = 'Unknown error' ) {
823 $myError = $this->lastError();
824 if ( $myError ) {
825 $error = $myError;
826 }
827
828 # New method
829 throw new DBConnectionError( $this, $error );
830 }
831
832 /**
833 * The DBMS-dependent part of query()
834 *
835 * @param $sql String: SQL query.
836 * @return ResultWrapper Result object to feed to fetchObject, fetchRow, ...; or false on failure
837 */
838 abstract protected function doQuery( $sql );
839
840 /**
841 * Determine whether a query writes to the DB.
842 * Should return true if unsure.
843 *
844 * @param $sql string
845 *
846 * @return bool
847 */
848 public function isWriteQuery( $sql ) {
849 return !preg_match( '/^(?:SELECT|BEGIN|ROLLBACK|COMMIT|SET|SHOW|EXPLAIN|\(SELECT)\b/i', $sql );
850 }
851
852 /**
853 * Run an SQL query and return the result. Normally throws a DBQueryError
854 * on failure. If errors are ignored, returns false instead.
855 *
856 * In new code, the query wrappers select(), insert(), update(), delete(),
857 * etc. should be used where possible, since they give much better DBMS
858 * independence and automatically quote or validate user input in a variety
859 * of contexts. This function is generally only useful for queries which are
860 * explicitly DBMS-dependent and are unsupported by the query wrappers, such
861 * as CREATE TABLE.
862 *
863 * However, the query wrappers themselves should call this function.
864 *
865 * @param $sql String: SQL query
866 * @param $fname String: Name of the calling function, for profiling/SHOW PROCESSLIST
867 * comment (you can use __METHOD__ or add some extra info)
868 * @param $tempIgnore Boolean: Whether to avoid throwing an exception on errors...
869 * maybe best to catch the exception instead?
870 * @throws MWException
871 * @return boolean|ResultWrapper. true for a successful write query, ResultWrapper object
872 * for a successful read query, or false on failure if $tempIgnore set
873 */
874 public function query( $sql, $fname = '', $tempIgnore = false ) {
875 $isMaster = !is_null( $this->getLBInfo( 'master' ) );
876 if ( !Profiler::instance()->isStub() ) {
877 # generalizeSQL will probably cut down the query to reasonable
878 # logging size most of the time. The substr is really just a sanity check.
879
880 if ( $isMaster ) {
881 $queryProf = 'query-m: ' . substr( DatabaseBase::generalizeSQL( $sql ), 0, 255 );
882 $totalProf = 'DatabaseBase::query-master';
883 } else {
884 $queryProf = 'query: ' . substr( DatabaseBase::generalizeSQL( $sql ), 0, 255 );
885 $totalProf = 'DatabaseBase::query';
886 }
887
888 wfProfileIn( $totalProf );
889 wfProfileIn( $queryProf );
890 }
891
892 $this->mLastQuery = $sql;
893 if ( !$this->mDoneWrites && $this->isWriteQuery( $sql ) ) {
894 # Set a flag indicating that writes have been done
895 wfDebug( __METHOD__ . ": Writes done: $sql\n" );
896 $this->mDoneWrites = true;
897 }
898
899 # Add a comment for easy SHOW PROCESSLIST interpretation
900 global $wgUser;
901 if ( is_object( $wgUser ) && $wgUser->isItemLoaded( 'name' ) ) {
902 $userName = $wgUser->getName();
903 if ( mb_strlen( $userName ) > 15 ) {
904 $userName = mb_substr( $userName, 0, 15 ) . '...';
905 }
906 $userName = str_replace( '/', '', $userName );
907 } else {
908 $userName = '';
909 }
910
911 // Add trace comment to the begin of the sql string, right after the operator.
912 // Or, for one-word queries (like "BEGIN" or COMMIT") add it to the end (bug 42598)
913 $commentedSql = preg_replace( '/\s|$/', " /* $fname $userName */ ", $sql, 1 );
914
915 # If DBO_TRX is set, start a transaction
916 if ( ( $this->mFlags & DBO_TRX ) && !$this->mTrxLevel &&
917 $sql != 'BEGIN' && $sql != 'COMMIT' && $sql != 'ROLLBACK' )
918 {
919 # Avoid establishing transactions for SHOW and SET statements too -
920 # that would delay transaction initializations to once connection
921 # is really used by application
922 $sqlstart = substr( $sql, 0, 10 ); // very much worth it, benchmark certified(tm)
923 if ( strpos( $sqlstart, "SHOW " ) !== 0 && strpos( $sqlstart, "SET " ) !== 0 ) {
924 global $wgDebugDBTransactions;
925 if ( $wgDebugDBTransactions ) {
926 wfDebug( "Implicit transaction start.\n" );
927 }
928 $this->begin( __METHOD__ . " ($fname)" );
929 $this->mTrxAutomatic = true;
930 }
931 }
932
933 # Keep track of whether the transaction has write queries pending
934 if ( $this->mTrxLevel && !$this->mTrxDoneWrites && $this->isWriteQuery( $sql ) ) {
935 $this->mTrxDoneWrites = true;
936 }
937
938 if ( $this->debug() ) {
939 static $cnt = 0;
940
941 $cnt++;
942 $sqlx = substr( $commentedSql, 0, 500 );
943 $sqlx = strtr( $sqlx, "\t\n", ' ' );
944
945 $master = $isMaster ? 'master' : 'slave';
946 wfDebug( "Query {$this->mDBname} ($cnt) ($master): $sqlx\n" );
947 }
948
949 $queryId = MWDebug::query( $sql, $fname, $isMaster );
950
951 # Do the query and handle errors
952 $ret = $this->doQuery( $commentedSql );
953
954 MWDebug::queryTime( $queryId );
955
956 # Try reconnecting if the connection was lost
957 if ( false === $ret && $this->wasErrorReissuable() ) {
958 # Transaction is gone, like it or not
959 $this->mTrxLevel = 0;
960 $this->mTrxIdleCallbacks = array(); // cancel
961 $this->mTrxPreCommitCallbacks = array(); // cancel
962 wfDebug( "Connection lost, reconnecting...\n" );
963
964 if ( $this->ping() ) {
965 wfDebug( "Reconnected\n" );
966 $sqlx = substr( $commentedSql, 0, 500 );
967 $sqlx = strtr( $sqlx, "\t\n", ' ' );
968 global $wgRequestTime;
969 $elapsed = round( microtime( true ) - $wgRequestTime, 3 );
970 if ( $elapsed < 300 ) {
971 # Not a database error to lose a transaction after a minute or two
972 wfLogDBError( "Connection lost and reconnected after {$elapsed}s, query: $sqlx\n" );
973 }
974 $ret = $this->doQuery( $commentedSql );
975 } else {
976 wfDebug( "Failed\n" );
977 }
978 }
979
980 if ( false === $ret ) {
981 $this->reportQueryError( $this->lastError(), $this->lastErrno(), $sql, $fname, $tempIgnore );
982 }
983
984 if ( !Profiler::instance()->isStub() ) {
985 wfProfileOut( $queryProf );
986 wfProfileOut( $totalProf );
987 }
988
989 return $this->resultObject( $ret );
990 }
991
992 /**
993 * Report a query error. Log the error, and if neither the object ignore
994 * flag nor the $tempIgnore flag is set, throw a DBQueryError.
995 *
996 * @param $error String
997 * @param $errno Integer
998 * @param $sql String
999 * @param $fname String
1000 * @param $tempIgnore Boolean
1001 * @throws DBQueryError
1002 */
1003 public function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false ) {
1004 # Ignore errors during error handling to avoid infinite recursion
1005 $ignore = $this->ignoreErrors( true );
1006 ++$this->mErrorCount;
1007
1008 if ( $ignore || $tempIgnore ) {
1009 wfDebug( "SQL ERROR (ignored): $error\n" );
1010 $this->ignoreErrors( $ignore );
1011 } else {
1012 $sql1line = str_replace( "\n", "\\n", $sql );
1013 wfLogDBError( "$fname\t{$this->mServer}\t$errno\t$error\t$sql1line\n" );
1014 wfDebug( "SQL ERROR: " . $error . "\n" );
1015 throw new DBQueryError( $this, $error, $errno, $sql, $fname );
1016 }
1017 }
1018
1019 /**
1020 * Intended to be compatible with the PEAR::DB wrapper functions.
1021 * http://pear.php.net/manual/en/package.database.db.intro-execute.php
1022 *
1023 * ? = scalar value, quoted as necessary
1024 * ! = raw SQL bit (a function for instance)
1025 * & = filename; reads the file and inserts as a blob
1026 * (we don't use this though...)
1027 *
1028 * @param $sql string
1029 * @param $func string
1030 *
1031 * @return array
1032 */
1033 protected function prepare( $sql, $func = 'DatabaseBase::prepare' ) {
1034 /* MySQL doesn't support prepared statements (yet), so just
1035 pack up the query for reference. We'll manually replace
1036 the bits later. */
1037 return array( 'query' => $sql, 'func' => $func );
1038 }
1039
1040 /**
1041 * Free a prepared query, generated by prepare().
1042 * @param $prepared
1043 */
1044 protected function freePrepared( $prepared ) {
1045 /* No-op by default */
1046 }
1047
1048 /**
1049 * Execute a prepared query with the various arguments
1050 * @param string $prepared the prepared sql
1051 * @param $args Mixed: Either an array here, or put scalars as varargs
1052 *
1053 * @return ResultWrapper
1054 */
1055 public function execute( $prepared, $args = null ) {
1056 if ( !is_array( $args ) ) {
1057 # Pull the var args
1058 $args = func_get_args();
1059 array_shift( $args );
1060 }
1061
1062 $sql = $this->fillPrepared( $prepared['query'], $args );
1063
1064 return $this->query( $sql, $prepared['func'] );
1065 }
1066
1067 /**
1068 * For faking prepared SQL statements on DBs that don't support it directly.
1069 *
1070 * @param string $preparedQuery a 'preparable' SQL statement
1071 * @param array $args of arguments to fill it with
1072 * @return string executable SQL
1073 */
1074 public function fillPrepared( $preparedQuery, $args ) {
1075 reset( $args );
1076 $this->preparedArgs =& $args;
1077
1078 return preg_replace_callback( '/(\\\\[?!&]|[?!&])/',
1079 array( &$this, 'fillPreparedArg' ), $preparedQuery );
1080 }
1081
1082 /**
1083 * preg_callback func for fillPrepared()
1084 * The arguments should be in $this->preparedArgs and must not be touched
1085 * while we're doing this.
1086 *
1087 * @param $matches Array
1088 * @throws DBUnexpectedError
1089 * @return String
1090 */
1091 protected function fillPreparedArg( $matches ) {
1092 switch ( $matches[1] ) {
1093 case '\\?':
1094 return '?';
1095 case '\\!':
1096 return '!';
1097 case '\\&':
1098 return '&';
1099 }
1100
1101 list( /* $n */, $arg ) = each( $this->preparedArgs );
1102
1103 switch ( $matches[1] ) {
1104 case '?':
1105 return $this->addQuotes( $arg );
1106 case '!':
1107 return $arg;
1108 case '&':
1109 # return $this->addQuotes( file_get_contents( $arg ) );
1110 throw new DBUnexpectedError( $this, '& mode is not implemented. If it\'s really needed, uncomment the line above.' );
1111 default:
1112 throw new DBUnexpectedError( $this, 'Received invalid match. This should never happen!' );
1113 }
1114 }
1115
1116 /**
1117 * Free a result object returned by query() or select(). It's usually not
1118 * necessary to call this, just use unset() or let the variable holding
1119 * the result object go out of scope.
1120 *
1121 * @param $res Mixed: A SQL result
1122 */
1123 public function freeResult( $res ) {
1124 }
1125
1126 /**
1127 * A SELECT wrapper which returns a single field from a single result row.
1128 *
1129 * Usually throws a DBQueryError on failure. If errors are explicitly
1130 * ignored, returns false on failure.
1131 *
1132 * If no result rows are returned from the query, false is returned.
1133 *
1134 * @param string|array $table Table name. See DatabaseBase::select() for details.
1135 * @param string $var The field name to select. This must be a valid SQL
1136 * fragment: do not use unvalidated user input.
1137 * @param string|array $cond The condition array. See DatabaseBase::select() for details.
1138 * @param string $fname The function name of the caller.
1139 * @param string|array $options The query options. See DatabaseBase::select() for details.
1140 *
1141 * @return bool|mixed The value from the field, or false on failure.
1142 */
1143 public function selectField( $table, $var, $cond = '', $fname = 'DatabaseBase::selectField',
1144 $options = array()
1145 ) {
1146 if ( !is_array( $options ) ) {
1147 $options = array( $options );
1148 }
1149
1150 $options['LIMIT'] = 1;
1151
1152 $res = $this->select( $table, $var, $cond, $fname, $options );
1153
1154 if ( $res === false || !$this->numRows( $res ) ) {
1155 return false;
1156 }
1157
1158 $row = $this->fetchRow( $res );
1159
1160 if ( $row !== false ) {
1161 return reset( $row );
1162 } else {
1163 return false;
1164 }
1165 }
1166
1167 /**
1168 * Returns an optional USE INDEX clause to go after the table, and a
1169 * string to go at the end of the query.
1170 *
1171 * @param array $options associative array of options to be turned into
1172 * an SQL query, valid keys are listed in the function.
1173 * @return Array
1174 * @see DatabaseBase::select()
1175 */
1176 public function makeSelectOptions( $options ) {
1177 $preLimitTail = $postLimitTail = '';
1178 $startOpts = '';
1179
1180 $noKeyOptions = array();
1181
1182 foreach ( $options as $key => $option ) {
1183 if ( is_numeric( $key ) ) {
1184 $noKeyOptions[$option] = true;
1185 }
1186 }
1187
1188 $preLimitTail .= $this->makeGroupByWithHaving( $options );
1189
1190 $preLimitTail .= $this->makeOrderBy( $options );
1191
1192 // if (isset($options['LIMIT'])) {
1193 // $tailOpts .= $this->limitResult('', $options['LIMIT'],
1194 // isset($options['OFFSET']) ? $options['OFFSET']
1195 // : false);
1196 // }
1197
1198 if ( isset( $noKeyOptions['FOR UPDATE'] ) ) {
1199 $postLimitTail .= ' FOR UPDATE';
1200 }
1201
1202 if ( isset( $noKeyOptions['LOCK IN SHARE MODE'] ) ) {
1203 $postLimitTail .= ' LOCK IN SHARE MODE';
1204 }
1205
1206 if ( isset( $noKeyOptions['DISTINCT'] ) || isset( $noKeyOptions['DISTINCTROW'] ) ) {
1207 $startOpts .= 'DISTINCT';
1208 }
1209
1210 # Various MySQL extensions
1211 if ( isset( $noKeyOptions['STRAIGHT_JOIN'] ) ) {
1212 $startOpts .= ' /*! STRAIGHT_JOIN */';
1213 }
1214
1215 if ( isset( $noKeyOptions['HIGH_PRIORITY'] ) ) {
1216 $startOpts .= ' HIGH_PRIORITY';
1217 }
1218
1219 if ( isset( $noKeyOptions['SQL_BIG_RESULT'] ) ) {
1220 $startOpts .= ' SQL_BIG_RESULT';
1221 }
1222
1223 if ( isset( $noKeyOptions['SQL_BUFFER_RESULT'] ) ) {
1224 $startOpts .= ' SQL_BUFFER_RESULT';
1225 }
1226
1227 if ( isset( $noKeyOptions['SQL_SMALL_RESULT'] ) ) {
1228 $startOpts .= ' SQL_SMALL_RESULT';
1229 }
1230
1231 if ( isset( $noKeyOptions['SQL_CALC_FOUND_ROWS'] ) ) {
1232 $startOpts .= ' SQL_CALC_FOUND_ROWS';
1233 }
1234
1235 if ( isset( $noKeyOptions['SQL_CACHE'] ) ) {
1236 $startOpts .= ' SQL_CACHE';
1237 }
1238
1239 if ( isset( $noKeyOptions['SQL_NO_CACHE'] ) ) {
1240 $startOpts .= ' SQL_NO_CACHE';
1241 }
1242
1243 if ( isset( $options['USE INDEX'] ) && ! is_array( $options['USE INDEX'] ) ) {
1244 $useIndex = $this->useIndexClause( $options['USE INDEX'] );
1245 } else {
1246 $useIndex = '';
1247 }
1248
1249 return array( $startOpts, $useIndex, $preLimitTail, $postLimitTail );
1250 }
1251
1252 /**
1253 * Returns an optional GROUP BY with an optional HAVING
1254 *
1255 * @param array $options associative array of options
1256 * @return string
1257 * @see DatabaseBase::select()
1258 * @since 1.21
1259 */
1260 public function makeGroupByWithHaving( $options ) {
1261 $sql = '';
1262 if ( isset( $options['GROUP BY'] ) ) {
1263 $gb = is_array( $options['GROUP BY'] )
1264 ? implode( ',', $options['GROUP BY'] )
1265 : $options['GROUP BY'];
1266 $sql .= ' GROUP BY ' . $gb;
1267 }
1268 if ( isset( $options['HAVING'] ) ) {
1269 $having = is_array( $options['HAVING'] )
1270 ? $this->makeList( $options['HAVING'], LIST_AND )
1271 : $options['HAVING'];
1272 $sql .= ' HAVING ' . $having;
1273 }
1274 return $sql;
1275 }
1276
1277 /**
1278 * Returns an optional ORDER BY
1279 *
1280 * @param array $options associative array of options
1281 * @return string
1282 * @see DatabaseBase::select()
1283 * @since 1.21
1284 */
1285 public function makeOrderBy( $options ) {
1286 if ( isset( $options['ORDER BY'] ) ) {
1287 $ob = is_array( $options['ORDER BY'] )
1288 ? implode( ',', $options['ORDER BY'] )
1289 : $options['ORDER BY'];
1290 return ' ORDER BY ' . $ob;
1291 }
1292 return '';
1293 }
1294
1295 /**
1296 * Execute a SELECT query constructed using the various parameters provided.
1297 * See below for full details of the parameters.
1298 *
1299 * @param string|array $table Table name
1300 * @param string|array $vars Field names
1301 * @param string|array $conds Conditions
1302 * @param string $fname Caller function name
1303 * @param array $options Query options
1304 * @param $join_conds Array Join conditions
1305 *
1306 * @param $table string|array
1307 *
1308 * May be either an array of table names, or a single string holding a table
1309 * name. If an array is given, table aliases can be specified, for example:
1310 *
1311 * array( 'a' => 'user' )
1312 *
1313 * This includes the user table in the query, with the alias "a" available
1314 * for use in field names (e.g. a.user_name).
1315 *
1316 * All of the table names given here are automatically run through
1317 * DatabaseBase::tableName(), which causes the table prefix (if any) to be
1318 * added, and various other table name mappings to be performed.
1319 *
1320 *
1321 * @param $vars string|array
1322 *
1323 * May be either a field name or an array of field names. The field names
1324 * can be complete fragments of SQL, for direct inclusion into the SELECT
1325 * query. If an array is given, field aliases can be specified, for example:
1326 *
1327 * array( 'maxrev' => 'MAX(rev_id)' )
1328 *
1329 * This includes an expression with the alias "maxrev" in the query.
1330 *
1331 * If an expression is given, care must be taken to ensure that it is
1332 * DBMS-independent.
1333 *
1334 *
1335 * @param $conds string|array
1336 *
1337 * May be either a string containing a single condition, or an array of
1338 * conditions. If an array is given, the conditions constructed from each
1339 * element are combined with AND.
1340 *
1341 * Array elements may take one of two forms:
1342 *
1343 * - Elements with a numeric key are interpreted as raw SQL fragments.
1344 * - Elements with a string key are interpreted as equality conditions,
1345 * where the key is the field name.
1346 * - If the value of such an array element is a scalar (such as a
1347 * string), it will be treated as data and thus quoted appropriately.
1348 * If it is null, an IS NULL clause will be added.
1349 * - If the value is an array, an IN(...) clause will be constructed,
1350 * such that the field name may match any of the elements in the
1351 * array. The elements of the array will be quoted.
1352 *
1353 * Note that expressions are often DBMS-dependent in their syntax.
1354 * DBMS-independent wrappers are provided for constructing several types of
1355 * expression commonly used in condition queries. See:
1356 * - DatabaseBase::buildLike()
1357 * - DatabaseBase::conditional()
1358 *
1359 *
1360 * @param $options string|array
1361 *
1362 * Optional: Array of query options. Boolean options are specified by
1363 * including them in the array as a string value with a numeric key, for
1364 * example:
1365 *
1366 * array( 'FOR UPDATE' )
1367 *
1368 * The supported options are:
1369 *
1370 * - OFFSET: Skip this many rows at the start of the result set. OFFSET
1371 * with LIMIT can theoretically be used for paging through a result set,
1372 * but this is discouraged in MediaWiki for performance reasons.
1373 *
1374 * - LIMIT: Integer: return at most this many rows. The rows are sorted
1375 * and then the first rows are taken until the limit is reached. LIMIT
1376 * is applied to a result set after OFFSET.
1377 *
1378 * - FOR UPDATE: Boolean: lock the returned rows so that they can't be
1379 * changed until the next COMMIT.
1380 *
1381 * - DISTINCT: Boolean: return only unique result rows.
1382 *
1383 * - GROUP BY: May be either an SQL fragment string naming a field or
1384 * expression to group by, or an array of such SQL fragments.
1385 *
1386 * - HAVING: May be either an string containing a HAVING clause or an array of
1387 * conditions building the HAVING clause. If an array is given, the conditions
1388 * constructed from each element are combined with AND.
1389 *
1390 * - ORDER BY: May be either an SQL fragment giving a field name or
1391 * expression to order by, or an array of such SQL fragments.
1392 *
1393 * - USE INDEX: This may be either a string giving the index name to use
1394 * for the query, or an array. If it is an associative array, each key
1395 * gives the table name (or alias), each value gives the index name to
1396 * use for that table. All strings are SQL fragments and so should be
1397 * validated by the caller.
1398 *
1399 * - EXPLAIN: In MySQL, this causes an EXPLAIN SELECT query to be run,
1400 * instead of SELECT.
1401 *
1402 * And also the following boolean MySQL extensions, see the MySQL manual
1403 * for documentation:
1404 *
1405 * - LOCK IN SHARE MODE
1406 * - STRAIGHT_JOIN
1407 * - HIGH_PRIORITY
1408 * - SQL_BIG_RESULT
1409 * - SQL_BUFFER_RESULT
1410 * - SQL_SMALL_RESULT
1411 * - SQL_CALC_FOUND_ROWS
1412 * - SQL_CACHE
1413 * - SQL_NO_CACHE
1414 *
1415 *
1416 * @param $join_conds string|array
1417 *
1418 * Optional associative array of table-specific join conditions. In the
1419 * most common case, this is unnecessary, since the join condition can be
1420 * in $conds. However, it is useful for doing a LEFT JOIN.
1421 *
1422 * The key of the array contains the table name or alias. The value is an
1423 * array with two elements, numbered 0 and 1. The first gives the type of
1424 * join, the second is an SQL fragment giving the join condition for that
1425 * table. For example:
1426 *
1427 * array( 'page' => array( 'LEFT JOIN', 'page_latest=rev_id' ) )
1428 *
1429 * @return ResultWrapper. If the query returned no rows, a ResultWrapper
1430 * with no rows in it will be returned. If there was a query error, a
1431 * DBQueryError exception will be thrown, except if the "ignore errors"
1432 * option was set, in which case false will be returned.
1433 */
1434 public function select( $table, $vars, $conds = '', $fname = 'DatabaseBase::select',
1435 $options = array(), $join_conds = array() ) {
1436 $sql = $this->selectSQLText( $table, $vars, $conds, $fname, $options, $join_conds );
1437
1438 return $this->query( $sql, $fname );
1439 }
1440
1441 /**
1442 * The equivalent of DatabaseBase::select() except that the constructed SQL
1443 * is returned, instead of being immediately executed. This can be useful for
1444 * doing UNION queries, where the SQL text of each query is needed. In general,
1445 * however, callers outside of Database classes should just use select().
1446 *
1447 * @param string|array $table Table name
1448 * @param string|array $vars Field names
1449 * @param string|array $conds Conditions
1450 * @param string $fname Caller function name
1451 * @param string|array $options Query options
1452 * @param $join_conds string|array Join conditions
1453 *
1454 * @return string SQL query string.
1455 * @see DatabaseBase::select()
1456 */
1457 public function selectSQLText( $table, $vars, $conds = '', $fname = 'DatabaseBase::select',
1458 $options = array(), $join_conds = array() )
1459 {
1460 if ( is_array( $vars ) ) {
1461 $vars = implode( ',', $this->fieldNamesWithAlias( $vars ) );
1462 }
1463
1464 $options = (array)$options;
1465
1466 if ( is_array( $table ) ) {
1467 $useIndex = ( isset( $options['USE INDEX'] ) && is_array( $options['USE INDEX'] ) )
1468 ? $options['USE INDEX']
1469 : array();
1470 if ( count( $join_conds ) || count( $useIndex ) ) {
1471 $from = ' FROM ' .
1472 $this->tableNamesWithUseIndexOrJOIN( $table, $useIndex, $join_conds );
1473 } else {
1474 $from = ' FROM ' . implode( ',', $this->tableNamesWithAlias( $table ) );
1475 }
1476 } elseif ( $table != '' ) {
1477 if ( $table[0] == ' ' ) {
1478 $from = ' FROM ' . $table;
1479 } else {
1480 $from = ' FROM ' . $this->tableName( $table );
1481 }
1482 } else {
1483 $from = '';
1484 }
1485
1486 list( $startOpts, $useIndex, $preLimitTail, $postLimitTail ) = $this->makeSelectOptions( $options );
1487
1488 if ( !empty( $conds ) ) {
1489 if ( is_array( $conds ) ) {
1490 $conds = $this->makeList( $conds, LIST_AND );
1491 }
1492 $sql = "SELECT $startOpts $vars $from $useIndex WHERE $conds $preLimitTail";
1493 } else {
1494 $sql = "SELECT $startOpts $vars $from $useIndex $preLimitTail";
1495 }
1496
1497 if ( isset( $options['LIMIT'] ) ) {
1498 $sql = $this->limitResult( $sql, $options['LIMIT'],
1499 isset( $options['OFFSET'] ) ? $options['OFFSET'] : false );
1500 }
1501 $sql = "$sql $postLimitTail";
1502
1503 if ( isset( $options['EXPLAIN'] ) ) {
1504 $sql = 'EXPLAIN ' . $sql;
1505 }
1506
1507 return $sql;
1508 }
1509
1510 /**
1511 * Single row SELECT wrapper. Equivalent to DatabaseBase::select(), except
1512 * that a single row object is returned. If the query returns no rows,
1513 * false is returned.
1514 *
1515 * @param string|array $table Table name
1516 * @param string|array $vars Field names
1517 * @param array $conds Conditions
1518 * @param string $fname Caller function name
1519 * @param string|array $options Query options
1520 * @param $join_conds array|string Join conditions
1521 *
1522 * @return object|bool
1523 */
1524 public function selectRow( $table, $vars, $conds, $fname = 'DatabaseBase::selectRow',
1525 $options = array(), $join_conds = array() )
1526 {
1527 $options = (array)$options;
1528 $options['LIMIT'] = 1;
1529 $res = $this->select( $table, $vars, $conds, $fname, $options, $join_conds );
1530
1531 if ( $res === false ) {
1532 return false;
1533 }
1534
1535 if ( !$this->numRows( $res ) ) {
1536 return false;
1537 }
1538
1539 $obj = $this->fetchObject( $res );
1540
1541 return $obj;
1542 }
1543
1544 /**
1545 * Estimate rows in dataset.
1546 *
1547 * MySQL allows you to estimate the number of rows that would be returned
1548 * by a SELECT query, using EXPLAIN SELECT. The estimate is provided using
1549 * index cardinality statistics, and is notoriously inaccurate, especially
1550 * when large numbers of rows have recently been added or deleted.
1551 *
1552 * For DBMSs that don't support fast result size estimation, this function
1553 * will actually perform the SELECT COUNT(*).
1554 *
1555 * Takes the same arguments as DatabaseBase::select().
1556 *
1557 * @param string $table table name
1558 * @param array|string $vars : unused
1559 * @param array|string $conds : filters on the table
1560 * @param string $fname function name for profiling
1561 * @param array $options options for select
1562 * @return Integer: row count
1563 */
1564 public function estimateRowCount( $table, $vars = '*', $conds = '',
1565 $fname = 'DatabaseBase::estimateRowCount', $options = array() )
1566 {
1567 $rows = 0;
1568 $res = $this->select( $table, array( 'rowcount' => 'COUNT(*)' ), $conds, $fname, $options );
1569
1570 if ( $res ) {
1571 $row = $this->fetchRow( $res );
1572 $rows = ( isset( $row['rowcount'] ) ) ? $row['rowcount'] : 0;
1573 }
1574
1575 return $rows;
1576 }
1577
1578 /**
1579 * Removes most variables from an SQL query and replaces them with X or N for numbers.
1580 * It's only slightly flawed. Don't use for anything important.
1581 *
1582 * @param string $sql A SQL Query
1583 *
1584 * @return string
1585 */
1586 static function generalizeSQL( $sql ) {
1587 # This does the same as the regexp below would do, but in such a way
1588 # as to avoid crashing php on some large strings.
1589 # $sql = preg_replace( "/'([^\\\\']|\\\\.)*'|\"([^\\\\\"]|\\\\.)*\"/", "'X'", $sql );
1590
1591 $sql = str_replace( "\\\\", '', $sql );
1592 $sql = str_replace( "\\'", '', $sql );
1593 $sql = str_replace( "\\\"", '', $sql );
1594 $sql = preg_replace( "/'.*'/s", "'X'", $sql );
1595 $sql = preg_replace( '/".*"/s', "'X'", $sql );
1596
1597 # All newlines, tabs, etc replaced by single space
1598 $sql = preg_replace( '/\s+/', ' ', $sql );
1599
1600 # All numbers => N
1601 $sql = preg_replace( '/-?[0-9]+/s', 'N', $sql );
1602
1603 return $sql;
1604 }
1605
1606 /**
1607 * Determines whether a field exists in a table
1608 *
1609 * @param string $table table name
1610 * @param string $field filed to check on that table
1611 * @param string $fname calling function name (optional)
1612 * @return Boolean: whether $table has filed $field
1613 */
1614 public function fieldExists( $table, $field, $fname = 'DatabaseBase::fieldExists' ) {
1615 $info = $this->fieldInfo( $table, $field );
1616
1617 return (bool)$info;
1618 }
1619
1620 /**
1621 * Determines whether an index exists
1622 * Usually throws a DBQueryError on failure
1623 * If errors are explicitly ignored, returns NULL on failure
1624 *
1625 * @param $table
1626 * @param $index
1627 * @param $fname string
1628 *
1629 * @return bool|null
1630 */
1631 public function indexExists( $table, $index, $fname = 'DatabaseBase::indexExists' ) {
1632 if ( !$this->tableExists( $table ) ) {
1633 return null;
1634 }
1635
1636 $info = $this->indexInfo( $table, $index, $fname );
1637 if ( is_null( $info ) ) {
1638 return null;
1639 } else {
1640 return $info !== false;
1641 }
1642 }
1643
1644 /**
1645 * Query whether a given table exists
1646 *
1647 * @param $table string
1648 * @param $fname string
1649 *
1650 * @return bool
1651 */
1652 public function tableExists( $table, $fname = __METHOD__ ) {
1653 $table = $this->tableName( $table );
1654 $old = $this->ignoreErrors( true );
1655 $res = $this->query( "SELECT 1 FROM $table LIMIT 1", $fname );
1656 $this->ignoreErrors( $old );
1657
1658 return (bool)$res;
1659 }
1660
1661 /**
1662 * mysql_field_type() wrapper
1663 * @param $res
1664 * @param $index
1665 * @return string
1666 */
1667 public function fieldType( $res, $index ) {
1668 if ( $res instanceof ResultWrapper ) {
1669 $res = $res->result;
1670 }
1671
1672 return mysql_field_type( $res, $index );
1673 }
1674
1675 /**
1676 * Determines if a given index is unique
1677 *
1678 * @param $table string
1679 * @param $index string
1680 *
1681 * @return bool
1682 */
1683 public function indexUnique( $table, $index ) {
1684 $indexInfo = $this->indexInfo( $table, $index );
1685
1686 if ( !$indexInfo ) {
1687 return null;
1688 }
1689
1690 return !$indexInfo[0]->Non_unique;
1691 }
1692
1693 /**
1694 * Helper for DatabaseBase::insert().
1695 *
1696 * @param $options array
1697 * @return string
1698 */
1699 protected function makeInsertOptions( $options ) {
1700 return implode( ' ', $options );
1701 }
1702
1703 /**
1704 * INSERT wrapper, inserts an array into a table.
1705 *
1706 * $a may be either:
1707 *
1708 * - A single associative array. The array keys are the field names, and
1709 * the values are the values to insert. The values are treated as data
1710 * and will be quoted appropriately. If NULL is inserted, this will be
1711 * converted to a database NULL.
1712 * - An array with numeric keys, holding a list of associative arrays.
1713 * This causes a multi-row INSERT on DBMSs that support it. The keys in
1714 * each subarray must be identical to each other, and in the same order.
1715 *
1716 * Usually throws a DBQueryError on failure. If errors are explicitly ignored,
1717 * returns success.
1718 *
1719 * $options is an array of options, with boolean options encoded as values
1720 * with numeric keys, in the same style as $options in
1721 * DatabaseBase::select(). Supported options are:
1722 *
1723 * - IGNORE: Boolean: if present, duplicate key errors are ignored, and
1724 * any rows which cause duplicate key errors are not inserted. It's
1725 * possible to determine how many rows were successfully inserted using
1726 * DatabaseBase::affectedRows().
1727 *
1728 * @param $table String Table name. This will be passed through
1729 * DatabaseBase::tableName().
1730 * @param $a Array of rows to insert
1731 * @param $fname String Calling function name (use __METHOD__) for logs/profiling
1732 * @param array $options of options
1733 *
1734 * @return bool
1735 */
1736 public function insert( $table, $a, $fname = 'DatabaseBase::insert', $options = array() ) {
1737 # No rows to insert, easy just return now
1738 if ( !count( $a ) ) {
1739 return true;
1740 }
1741
1742 $table = $this->tableName( $table );
1743
1744 if ( !is_array( $options ) ) {
1745 $options = array( $options );
1746 }
1747
1748 $fh = null;
1749 if ( isset( $options['fileHandle'] ) ) {
1750 $fh = $options['fileHandle'];
1751 }
1752 $options = $this->makeInsertOptions( $options );
1753
1754 if ( isset( $a[0] ) && is_array( $a[0] ) ) {
1755 $multi = true;
1756 $keys = array_keys( $a[0] );
1757 } else {
1758 $multi = false;
1759 $keys = array_keys( $a );
1760 }
1761
1762 $sql = 'INSERT ' . $options .
1763 " INTO $table (" . implode( ',', $keys ) . ') VALUES ';
1764
1765 if ( $multi ) {
1766 $first = true;
1767 foreach ( $a as $row ) {
1768 if ( $first ) {
1769 $first = false;
1770 } else {
1771 $sql .= ',';
1772 }
1773 $sql .= '(' . $this->makeList( $row ) . ')';
1774 }
1775 } else {
1776 $sql .= '(' . $this->makeList( $a ) . ')';
1777 }
1778
1779 if ( $fh !== null && false === fwrite( $fh, $sql ) ) {
1780 return false;
1781 } elseif ( $fh !== null ) {
1782 return true;
1783 }
1784
1785 return (bool)$this->query( $sql, $fname );
1786 }
1787
1788 /**
1789 * Make UPDATE options for the DatabaseBase::update function
1790 *
1791 * @param array $options The options passed to DatabaseBase::update
1792 * @return string
1793 */
1794 protected function makeUpdateOptions( $options ) {
1795 if ( !is_array( $options ) ) {
1796 $options = array( $options );
1797 }
1798
1799 $opts = array();
1800
1801 if ( in_array( 'LOW_PRIORITY', $options ) ) {
1802 $opts[] = $this->lowPriorityOption();
1803 }
1804
1805 if ( in_array( 'IGNORE', $options ) ) {
1806 $opts[] = 'IGNORE';
1807 }
1808
1809 return implode( ' ', $opts );
1810 }
1811
1812 /**
1813 * UPDATE wrapper. Takes a condition array and a SET array.
1814 *
1815 * @param $table String name of the table to UPDATE. This will be passed through
1816 * DatabaseBase::tableName().
1817 *
1818 * @param array $values An array of values to SET. For each array element,
1819 * the key gives the field name, and the value gives the data
1820 * to set that field to. The data will be quoted by
1821 * DatabaseBase::addQuotes().
1822 *
1823 * @param $conds Array: An array of conditions (WHERE). See
1824 * DatabaseBase::select() for the details of the format of
1825 * condition arrays. Use '*' to update all rows.
1826 *
1827 * @param $fname String: The function name of the caller (from __METHOD__),
1828 * for logging and profiling.
1829 *
1830 * @param array $options An array of UPDATE options, can be:
1831 * - IGNORE: Ignore unique key conflicts
1832 * - LOW_PRIORITY: MySQL-specific, see MySQL manual.
1833 * @return Boolean
1834 */
1835 function update( $table, $values, $conds, $fname = 'DatabaseBase::update', $options = array() ) {
1836 $table = $this->tableName( $table );
1837 $opts = $this->makeUpdateOptions( $options );
1838 $sql = "UPDATE $opts $table SET " . $this->makeList( $values, LIST_SET );
1839
1840 if ( $conds !== array() && $conds !== '*' ) {
1841 $sql .= " WHERE " . $this->makeList( $conds, LIST_AND );
1842 }
1843
1844 return $this->query( $sql, $fname );
1845 }
1846
1847 /**
1848 * Makes an encoded list of strings from an array
1849 * @param array $a containing the data
1850 * @param int $mode Constant
1851 * - LIST_COMMA: comma separated, no field names
1852 * - LIST_AND: ANDed WHERE clause (without the WHERE). See
1853 * the documentation for $conds in DatabaseBase::select().
1854 * - LIST_OR: ORed WHERE clause (without the WHERE)
1855 * - LIST_SET: comma separated with field names, like a SET clause
1856 * - LIST_NAMES: comma separated field names
1857 *
1858 * @throws MWException|DBUnexpectedError
1859 * @return string
1860 */
1861 public function makeList( $a, $mode = LIST_COMMA ) {
1862 if ( !is_array( $a ) ) {
1863 throw new DBUnexpectedError( $this, 'DatabaseBase::makeList called with incorrect parameters' );
1864 }
1865
1866 $first = true;
1867 $list = '';
1868
1869 foreach ( $a as $field => $value ) {
1870 if ( !$first ) {
1871 if ( $mode == LIST_AND ) {
1872 $list .= ' AND ';
1873 } elseif ( $mode == LIST_OR ) {
1874 $list .= ' OR ';
1875 } else {
1876 $list .= ',';
1877 }
1878 } else {
1879 $first = false;
1880 }
1881
1882 if ( ( $mode == LIST_AND || $mode == LIST_OR ) && is_numeric( $field ) ) {
1883 $list .= "($value)";
1884 } elseif ( ( $mode == LIST_SET ) && is_numeric( $field ) ) {
1885 $list .= "$value";
1886 } elseif ( ( $mode == LIST_AND || $mode == LIST_OR ) && is_array( $value ) ) {
1887 if ( count( $value ) == 0 ) {
1888 throw new MWException( __METHOD__ . ": empty input for field $field" );
1889 } elseif ( count( $value ) == 1 ) {
1890 // Special-case single values, as IN isn't terribly efficient
1891 // Don't necessarily assume the single key is 0; we don't
1892 // enforce linear numeric ordering on other arrays here.
1893 $value = array_values( $value );
1894 $list .= $field . " = " . $this->addQuotes( $value[0] );
1895 } else {
1896 $list .= $field . " IN (" . $this->makeList( $value ) . ") ";
1897 }
1898 } elseif ( $value === null ) {
1899 if ( $mode == LIST_AND || $mode == LIST_OR ) {
1900 $list .= "$field IS ";
1901 } elseif ( $mode == LIST_SET ) {
1902 $list .= "$field = ";
1903 }
1904 $list .= 'NULL';
1905 } else {
1906 if ( $mode == LIST_AND || $mode == LIST_OR || $mode == LIST_SET ) {
1907 $list .= "$field = ";
1908 }
1909 $list .= $mode == LIST_NAMES ? $value : $this->addQuotes( $value );
1910 }
1911 }
1912
1913 return $list;
1914 }
1915
1916 /**
1917 * Build a partial where clause from a 2-d array such as used for LinkBatch.
1918 * The keys on each level may be either integers or strings.
1919 *
1920 * @param array $data organized as 2-d
1921 * array(baseKeyVal => array(subKeyVal => [ignored], ...), ...)
1922 * @param string $baseKey field name to match the base-level keys to (eg 'pl_namespace')
1923 * @param string $subKey field name to match the sub-level keys to (eg 'pl_title')
1924 * @return Mixed: string SQL fragment, or false if no items in array.
1925 */
1926 public function makeWhereFrom2d( $data, $baseKey, $subKey ) {
1927 $conds = array();
1928
1929 foreach ( $data as $base => $sub ) {
1930 if ( count( $sub ) ) {
1931 $conds[] = $this->makeList(
1932 array( $baseKey => $base, $subKey => array_keys( $sub ) ),
1933 LIST_AND );
1934 }
1935 }
1936
1937 if ( $conds ) {
1938 return $this->makeList( $conds, LIST_OR );
1939 } else {
1940 // Nothing to search for...
1941 return false;
1942 }
1943 }
1944
1945 /**
1946 * Return aggregated value alias
1947 *
1948 * @param $valuedata
1949 * @param $valuename string
1950 *
1951 * @return string
1952 */
1953 public function aggregateValue( $valuedata, $valuename = 'value' ) {
1954 return $valuename;
1955 }
1956
1957 /**
1958 * @param $field
1959 * @return string
1960 */
1961 public function bitNot( $field ) {
1962 return "(~$field)";
1963 }
1964
1965 /**
1966 * @param $fieldLeft
1967 * @param $fieldRight
1968 * @return string
1969 */
1970 public function bitAnd( $fieldLeft, $fieldRight ) {
1971 return "($fieldLeft & $fieldRight)";
1972 }
1973
1974 /**
1975 * @param $fieldLeft
1976 * @param $fieldRight
1977 * @return string
1978 */
1979 public function bitOr( $fieldLeft, $fieldRight ) {
1980 return "($fieldLeft | $fieldRight)";
1981 }
1982
1983 /**
1984 * Build a concatenation list to feed into a SQL query
1985 * @param array $stringList list of raw SQL expressions; caller is responsible for any quoting
1986 * @return String
1987 */
1988 public function buildConcat( $stringList ) {
1989 return 'CONCAT(' . implode( ',', $stringList ) . ')';
1990 }
1991
1992 /**
1993 * Change the current database
1994 *
1995 * @todo Explain what exactly will fail if this is not overridden.
1996 *
1997 * @param $db
1998 *
1999 * @return bool Success or failure
2000 */
2001 public function selectDB( $db ) {
2002 # Stub. Shouldn't cause serious problems if it's not overridden, but
2003 # if your database engine supports a concept similar to MySQL's
2004 # databases you may as well.
2005 $this->mDBname = $db;
2006 return true;
2007 }
2008
2009 /**
2010 * Get the current DB name
2011 */
2012 public function getDBname() {
2013 return $this->mDBname;
2014 }
2015
2016 /**
2017 * Get the server hostname or IP address
2018 */
2019 public function getServer() {
2020 return $this->mServer;
2021 }
2022
2023 /**
2024 * Format a table name ready for use in constructing an SQL query
2025 *
2026 * This does two important things: it quotes the table names to clean them up,
2027 * and it adds a table prefix if only given a table name with no quotes.
2028 *
2029 * All functions of this object which require a table name call this function
2030 * themselves. Pass the canonical name to such functions. This is only needed
2031 * when calling query() directly.
2032 *
2033 * @param string $name database table name
2034 * @param string $format One of:
2035 * quoted - Automatically pass the table name through addIdentifierQuotes()
2036 * so that it can be used in a query.
2037 * raw - Do not add identifier quotes to the table name
2038 * @return String: full database name
2039 */
2040 public function tableName( $name, $format = 'quoted' ) {
2041 global $wgSharedDB, $wgSharedPrefix, $wgSharedTables;
2042 # Skip the entire process when we have a string quoted on both ends.
2043 # Note that we check the end so that we will still quote any use of
2044 # use of `database`.table. But won't break things if someone wants
2045 # to query a database table with a dot in the name.
2046 if ( $this->isQuotedIdentifier( $name ) ) {
2047 return $name;
2048 }
2049
2050 # Lets test for any bits of text that should never show up in a table
2051 # name. Basically anything like JOIN or ON which are actually part of
2052 # SQL queries, but may end up inside of the table value to combine
2053 # sql. Such as how the API is doing.
2054 # Note that we use a whitespace test rather than a \b test to avoid
2055 # any remote case where a word like on may be inside of a table name
2056 # surrounded by symbols which may be considered word breaks.
2057 if ( preg_match( '/(^|\s)(DISTINCT|JOIN|ON|AS)(\s|$)/i', $name ) !== 0 ) {
2058 return $name;
2059 }
2060
2061 # Split database and table into proper variables.
2062 # We reverse the explode so that database.table and table both output
2063 # the correct table.
2064 $dbDetails = explode( '.', $name, 2 );
2065 if ( count( $dbDetails ) == 2 ) {
2066 list( $database, $table ) = $dbDetails;
2067 # We don't want any prefix added in this case
2068 $prefix = '';
2069 } else {
2070 list( $table ) = $dbDetails;
2071 if ( $wgSharedDB !== null # We have a shared database
2072 && !$this->isQuotedIdentifier( $table ) # Paranoia check to prevent shared tables listing '`table`'
2073 && in_array( $table, $wgSharedTables ) # A shared table is selected
2074 ) {
2075 $database = $wgSharedDB;
2076 $prefix = $wgSharedPrefix === null ? $this->mTablePrefix : $wgSharedPrefix;
2077 } else {
2078 $database = null;
2079 $prefix = $this->mTablePrefix; # Default prefix
2080 }
2081 }
2082
2083 # Quote $table and apply the prefix if not quoted.
2084 $tableName = "{$prefix}{$table}";
2085 if ( $format == 'quoted' && !$this->isQuotedIdentifier( $tableName ) ) {
2086 $tableName = $this->addIdentifierQuotes( $tableName );
2087 }
2088
2089 # Quote $database and merge it with the table name if needed
2090 if ( $database !== null ) {
2091 if ( $format == 'quoted' && !$this->isQuotedIdentifier( $database ) ) {
2092 $database = $this->addIdentifierQuotes( $database );
2093 }
2094 $tableName = $database . '.' . $tableName;
2095 }
2096
2097 return $tableName;
2098 }
2099
2100 /**
2101 * Fetch a number of table names into an array
2102 * This is handy when you need to construct SQL for joins
2103 *
2104 * Example:
2105 * extract( $dbr->tableNames( 'user', 'watchlist' ) );
2106 * $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user
2107 * WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
2108 *
2109 * @return array
2110 */
2111 public function tableNames() {
2112 $inArray = func_get_args();
2113 $retVal = array();
2114
2115 foreach ( $inArray as $name ) {
2116 $retVal[$name] = $this->tableName( $name );
2117 }
2118
2119 return $retVal;
2120 }
2121
2122 /**
2123 * Fetch a number of table names into an zero-indexed numerical array
2124 * This is handy when you need to construct SQL for joins
2125 *
2126 * Example:
2127 * list( $user, $watchlist ) = $dbr->tableNamesN( 'user', 'watchlist' );
2128 * $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user
2129 * WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
2130 *
2131 * @return array
2132 */
2133 public function tableNamesN() {
2134 $inArray = func_get_args();
2135 $retVal = array();
2136
2137 foreach ( $inArray as $name ) {
2138 $retVal[] = $this->tableName( $name );
2139 }
2140
2141 return $retVal;
2142 }
2143
2144 /**
2145 * Get an aliased table name
2146 * e.g. tableName AS newTableName
2147 *
2148 * @param string $name Table name, see tableName()
2149 * @param string|bool $alias Alias (optional)
2150 * @return string SQL name for aliased table. Will not alias a table to its own name
2151 */
2152 public function tableNameWithAlias( $name, $alias = false ) {
2153 if ( !$alias || $alias == $name ) {
2154 return $this->tableName( $name );
2155 } else {
2156 return $this->tableName( $name ) . ' ' . $this->addIdentifierQuotes( $alias );
2157 }
2158 }
2159
2160 /**
2161 * Gets an array of aliased table names
2162 *
2163 * @param $tables array( [alias] => table )
2164 * @return array of strings, see tableNameWithAlias()
2165 */
2166 public function tableNamesWithAlias( $tables ) {
2167 $retval = array();
2168 foreach ( $tables as $alias => $table ) {
2169 if ( is_numeric( $alias ) ) {
2170 $alias = $table;
2171 }
2172 $retval[] = $this->tableNameWithAlias( $table, $alias );
2173 }
2174 return $retval;
2175 }
2176
2177 /**
2178 * Get an aliased field name
2179 * e.g. fieldName AS newFieldName
2180 *
2181 * @param string $name Field name
2182 * @param string|bool $alias Alias (optional)
2183 * @return string SQL name for aliased field. Will not alias a field to its own name
2184 */
2185 public function fieldNameWithAlias( $name, $alias = false ) {
2186 if ( !$alias || (string)$alias === (string)$name ) {
2187 return $name;
2188 } else {
2189 return $name . ' AS ' . $alias; //PostgreSQL needs AS
2190 }
2191 }
2192
2193 /**
2194 * Gets an array of aliased field names
2195 *
2196 * @param $fields array( [alias] => field )
2197 * @return array of strings, see fieldNameWithAlias()
2198 */
2199 public function fieldNamesWithAlias( $fields ) {
2200 $retval = array();
2201 foreach ( $fields as $alias => $field ) {
2202 if ( is_numeric( $alias ) ) {
2203 $alias = $field;
2204 }
2205 $retval[] = $this->fieldNameWithAlias( $field, $alias );
2206 }
2207 return $retval;
2208 }
2209
2210 /**
2211 * Get the aliased table name clause for a FROM clause
2212 * which might have a JOIN and/or USE INDEX clause
2213 *
2214 * @param array $tables ( [alias] => table )
2215 * @param $use_index array Same as for select()
2216 * @param $join_conds array Same as for select()
2217 * @return string
2218 */
2219 protected function tableNamesWithUseIndexOrJOIN(
2220 $tables, $use_index = array(), $join_conds = array()
2221 ) {
2222 $ret = array();
2223 $retJOIN = array();
2224 $use_index = (array)$use_index;
2225 $join_conds = (array)$join_conds;
2226
2227 foreach ( $tables as $alias => $table ) {
2228 if ( !is_string( $alias ) ) {
2229 // No alias? Set it equal to the table name
2230 $alias = $table;
2231 }
2232 // Is there a JOIN clause for this table?
2233 if ( isset( $join_conds[$alias] ) ) {
2234 list( $joinType, $conds ) = $join_conds[$alias];
2235 $tableClause = $joinType;
2236 $tableClause .= ' ' . $this->tableNameWithAlias( $table, $alias );
2237 if ( isset( $use_index[$alias] ) ) { // has USE INDEX?
2238 $use = $this->useIndexClause( implode( ',', (array)$use_index[$alias] ) );
2239 if ( $use != '' ) {
2240 $tableClause .= ' ' . $use;
2241 }
2242 }
2243 $on = $this->makeList( (array)$conds, LIST_AND );
2244 if ( $on != '' ) {
2245 $tableClause .= ' ON (' . $on . ')';
2246 }
2247
2248 $retJOIN[] = $tableClause;
2249 // Is there an INDEX clause for this table?
2250 } elseif ( isset( $use_index[$alias] ) ) {
2251 $tableClause = $this->tableNameWithAlias( $table, $alias );
2252 $tableClause .= ' ' . $this->useIndexClause(
2253 implode( ',', (array)$use_index[$alias] ) );
2254
2255 $ret[] = $tableClause;
2256 } else {
2257 $tableClause = $this->tableNameWithAlias( $table, $alias );
2258
2259 $ret[] = $tableClause;
2260 }
2261 }
2262
2263 // We can't separate explicit JOIN clauses with ',', use ' ' for those
2264 $straightJoins = !empty( $ret ) ? implode( ',', $ret ) : "";
2265 $otherJoins = !empty( $retJOIN ) ? implode( ' ', $retJOIN ) : "";
2266
2267 // Compile our final table clause
2268 return implode( ' ', array( $straightJoins, $otherJoins ) );
2269 }
2270
2271 /**
2272 * Get the name of an index in a given table
2273 *
2274 * @param $index
2275 *
2276 * @return string
2277 */
2278 protected function indexName( $index ) {
2279 // Backwards-compatibility hack
2280 $renamed = array(
2281 'ar_usertext_timestamp' => 'usertext_timestamp',
2282 'un_user_id' => 'user_id',
2283 'un_user_ip' => 'user_ip',
2284 );
2285
2286 if ( isset( $renamed[$index] ) ) {
2287 return $renamed[$index];
2288 } else {
2289 return $index;
2290 }
2291 }
2292
2293 /**
2294 * If it's a string, adds quotes and backslashes
2295 * Otherwise returns as-is
2296 *
2297 * @param $s string
2298 *
2299 * @return string
2300 */
2301 public function addQuotes( $s ) {
2302 if ( $s === null ) {
2303 return 'NULL';
2304 } else {
2305 # This will also quote numeric values. This should be harmless,
2306 # and protects against weird problems that occur when they really
2307 # _are_ strings such as article titles and string->number->string
2308 # conversion is not 1:1.
2309 return "'" . $this->strencode( $s ) . "'";
2310 }
2311 }
2312
2313 /**
2314 * Quotes an identifier using `backticks` or "double quotes" depending on the database type.
2315 * MySQL uses `backticks` while basically everything else uses double quotes.
2316 * Since MySQL is the odd one out here the double quotes are our generic
2317 * and we implement backticks in DatabaseMysql.
2318 *
2319 * @param $s string
2320 *
2321 * @return string
2322 */
2323 public function addIdentifierQuotes( $s ) {
2324 return '"' . str_replace( '"', '""', $s ) . '"';
2325 }
2326
2327 /**
2328 * Returns if the given identifier looks quoted or not according to
2329 * the database convention for quoting identifiers .
2330 *
2331 * @param $name string
2332 *
2333 * @return boolean
2334 */
2335 public function isQuotedIdentifier( $name ) {
2336 return $name[0] == '"' && substr( $name, -1, 1 ) == '"';
2337 }
2338
2339 /**
2340 * @param $s string
2341 * @return string
2342 */
2343 protected function escapeLikeInternal( $s ) {
2344 $s = str_replace( '\\', '\\\\', $s );
2345 $s = $this->strencode( $s );
2346 $s = str_replace( array( '%', '_' ), array( '\%', '\_' ), $s );
2347
2348 return $s;
2349 }
2350
2351 /**
2352 * LIKE statement wrapper, receives a variable-length argument list with parts of pattern to match
2353 * containing either string literals that will be escaped or tokens returned by anyChar() or anyString().
2354 * Alternatively, the function could be provided with an array of aforementioned parameters.
2355 *
2356 * Example: $dbr->buildLike( 'My_page_title/', $dbr->anyString() ) returns a LIKE clause that searches
2357 * for subpages of 'My page title'.
2358 * Alternatively: $pattern = array( 'My_page_title/', $dbr->anyString() ); $query .= $dbr->buildLike( $pattern );
2359 *
2360 * @since 1.16
2361 * @return String: fully built LIKE statement
2362 */
2363 public function buildLike() {
2364 $params = func_get_args();
2365
2366 if ( count( $params ) > 0 && is_array( $params[0] ) ) {
2367 $params = $params[0];
2368 }
2369
2370 $s = '';
2371
2372 foreach ( $params as $value ) {
2373 if ( $value instanceof LikeMatch ) {
2374 $s .= $value->toString();
2375 } else {
2376 $s .= $this->escapeLikeInternal( $value );
2377 }
2378 }
2379
2380 return " LIKE '" . $s . "' ";
2381 }
2382
2383 /**
2384 * Returns a token for buildLike() that denotes a '_' to be used in a LIKE query
2385 *
2386 * @return LikeMatch
2387 */
2388 public function anyChar() {
2389 return new LikeMatch( '_' );
2390 }
2391
2392 /**
2393 * Returns a token for buildLike() that denotes a '%' to be used in a LIKE query
2394 *
2395 * @return LikeMatch
2396 */
2397 public function anyString() {
2398 return new LikeMatch( '%' );
2399 }
2400
2401 /**
2402 * Returns an appropriately quoted sequence value for inserting a new row.
2403 * MySQL has autoincrement fields, so this is just NULL. But the PostgreSQL
2404 * subclass will return an integer, and save the value for insertId()
2405 *
2406 * Any implementation of this function should *not* involve reusing
2407 * sequence numbers created for rolled-back transactions.
2408 * See http://bugs.mysql.com/bug.php?id=30767 for details.
2409 * @param $seqName string
2410 * @return null
2411 */
2412 public function nextSequenceValue( $seqName ) {
2413 return null;
2414 }
2415
2416 /**
2417 * USE INDEX clause. Unlikely to be useful for anything but MySQL. This
2418 * is only needed because a) MySQL must be as efficient as possible due to
2419 * its use on Wikipedia, and b) MySQL 4.0 is kind of dumb sometimes about
2420 * which index to pick. Anyway, other databases might have different
2421 * indexes on a given table. So don't bother overriding this unless you're
2422 * MySQL.
2423 * @param $index
2424 * @return string
2425 */
2426 public function useIndexClause( $index ) {
2427 return '';
2428 }
2429
2430 /**
2431 * REPLACE query wrapper.
2432 *
2433 * REPLACE is a very handy MySQL extension, which functions like an INSERT
2434 * except that when there is a duplicate key error, the old row is deleted
2435 * and the new row is inserted in its place.
2436 *
2437 * We simulate this with standard SQL with a DELETE followed by INSERT. To
2438 * perform the delete, we need to know what the unique indexes are so that
2439 * we know how to find the conflicting rows.
2440 *
2441 * It may be more efficient to leave off unique indexes which are unlikely
2442 * to collide. However if you do this, you run the risk of encountering
2443 * errors which wouldn't have occurred in MySQL.
2444 *
2445 * @param string $table The table to replace the row(s) in.
2446 * @param array $rows Can be either a single row to insert, or multiple rows,
2447 * in the same format as for DatabaseBase::insert()
2448 * @param array $uniqueIndexes is an array of indexes. Each element may be either
2449 * a field name or an array of field names
2450 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
2451 */
2452 public function replace( $table, $uniqueIndexes, $rows, $fname = 'DatabaseBase::replace' ) {
2453 $quotedTable = $this->tableName( $table );
2454
2455 if ( count( $rows ) == 0 ) {
2456 return;
2457 }
2458
2459 # Single row case
2460 if ( !is_array( reset( $rows ) ) ) {
2461 $rows = array( $rows );
2462 }
2463
2464 foreach ( $rows as $row ) {
2465 # Delete rows which collide
2466 if ( $uniqueIndexes ) {
2467 $sql = "DELETE FROM $quotedTable WHERE ";
2468 $first = true;
2469 foreach ( $uniqueIndexes as $index ) {
2470 if ( $first ) {
2471 $first = false;
2472 $sql .= '( ';
2473 } else {
2474 $sql .= ' ) OR ( ';
2475 }
2476 if ( is_array( $index ) ) {
2477 $first2 = true;
2478 foreach ( $index as $col ) {
2479 if ( $first2 ) {
2480 $first2 = false;
2481 } else {
2482 $sql .= ' AND ';
2483 }
2484 $sql .= $col . '=' . $this->addQuotes( $row[$col] );
2485 }
2486 } else {
2487 $sql .= $index . '=' . $this->addQuotes( $row[$index] );
2488 }
2489 }
2490 $sql .= ' )';
2491 $this->query( $sql, $fname );
2492 }
2493
2494 # Now insert the row
2495 $this->insert( $table, $row, $fname );
2496 }
2497 }
2498
2499 /**
2500 * REPLACE query wrapper for MySQL and SQLite, which have a native REPLACE
2501 * statement.
2502 *
2503 * @param string $table Table name
2504 * @param array $rows Rows to insert
2505 * @param string $fname Caller function name
2506 *
2507 * @return ResultWrapper
2508 */
2509 protected function nativeReplace( $table, $rows, $fname ) {
2510 $table = $this->tableName( $table );
2511
2512 # Single row case
2513 if ( !is_array( reset( $rows ) ) ) {
2514 $rows = array( $rows );
2515 }
2516
2517 $sql = "REPLACE INTO $table (" . implode( ',', array_keys( $rows[0] ) ) . ') VALUES ';
2518 $first = true;
2519
2520 foreach ( $rows as $row ) {
2521 if ( $first ) {
2522 $first = false;
2523 } else {
2524 $sql .= ',';
2525 }
2526
2527 $sql .= '(' . $this->makeList( $row ) . ')';
2528 }
2529
2530 return $this->query( $sql, $fname );
2531 }
2532
2533 /**
2534 * DELETE where the condition is a join.
2535 *
2536 * MySQL overrides this to use a multi-table DELETE syntax, in other databases
2537 * we use sub-selects
2538 *
2539 * For safety, an empty $conds will not delete everything. If you want to
2540 * delete all rows where the join condition matches, set $conds='*'.
2541 *
2542 * DO NOT put the join condition in $conds.
2543 *
2544 * @param $delTable String: The table to delete from.
2545 * @param $joinTable String: The other table.
2546 * @param $delVar String: The variable to join on, in the first table.
2547 * @param $joinVar String: The variable to join on, in the second table.
2548 * @param $conds Array: Condition array of field names mapped to variables,
2549 * ANDed together in the WHERE clause
2550 * @param $fname String: Calling function name (use __METHOD__) for
2551 * logs/profiling
2552 * @throws DBUnexpectedError
2553 */
2554 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
2555 $fname = 'DatabaseBase::deleteJoin' )
2556 {
2557 if ( !$conds ) {
2558 throw new DBUnexpectedError( $this,
2559 'DatabaseBase::deleteJoin() called with empty $conds' );
2560 }
2561
2562 $delTable = $this->tableName( $delTable );
2563 $joinTable = $this->tableName( $joinTable );
2564 $sql = "DELETE FROM $delTable WHERE $delVar IN (SELECT $joinVar FROM $joinTable ";
2565 if ( $conds != '*' ) {
2566 $sql .= 'WHERE ' . $this->makeList( $conds, LIST_AND );
2567 }
2568 $sql .= ')';
2569
2570 $this->query( $sql, $fname );
2571 }
2572
2573 /**
2574 * Returns the size of a text field, or -1 for "unlimited"
2575 *
2576 * @param $table string
2577 * @param $field string
2578 *
2579 * @return int
2580 */
2581 public function textFieldSize( $table, $field ) {
2582 $table = $this->tableName( $table );
2583 $sql = "SHOW COLUMNS FROM $table LIKE \"$field\";";
2584 $res = $this->query( $sql, 'DatabaseBase::textFieldSize' );
2585 $row = $this->fetchObject( $res );
2586
2587 $m = array();
2588
2589 if ( preg_match( '/\((.*)\)/', $row->Type, $m ) ) {
2590 $size = $m[1];
2591 } else {
2592 $size = -1;
2593 }
2594
2595 return $size;
2596 }
2597
2598 /**
2599 * A string to insert into queries to show that they're low-priority, like
2600 * MySQL's LOW_PRIORITY. If no such feature exists, return an empty
2601 * string and nothing bad should happen.
2602 *
2603 * @return string Returns the text of the low priority option if it is
2604 * supported, or a blank string otherwise
2605 */
2606 public function lowPriorityOption() {
2607 return '';
2608 }
2609
2610 /**
2611 * DELETE query wrapper.
2612 *
2613 * @param array $table Table name
2614 * @param string|array $conds of conditions. See $conds in DatabaseBase::select() for
2615 * the format. Use $conds == "*" to delete all rows
2616 * @param string $fname name of the calling function
2617 *
2618 * @throws DBUnexpectedError
2619 * @return bool|ResultWrapper
2620 */
2621 public function delete( $table, $conds, $fname = 'DatabaseBase::delete' ) {
2622 if ( !$conds ) {
2623 throw new DBUnexpectedError( $this, 'DatabaseBase::delete() called with no conditions' );
2624 }
2625
2626 $table = $this->tableName( $table );
2627 $sql = "DELETE FROM $table";
2628
2629 if ( $conds != '*' ) {
2630 $sql .= ' WHERE ' . $this->makeList( $conds, LIST_AND );
2631 }
2632
2633 return $this->query( $sql, $fname );
2634 }
2635
2636 /**
2637 * INSERT SELECT wrapper. Takes data from a SELECT query and inserts it
2638 * into another table.
2639 *
2640 * @param string $destTable The table name to insert into
2641 * @param string|array $srcTable May be either a table name, or an array of table names
2642 * to include in a join.
2643 *
2644 * @param array $varMap must be an associative array of the form
2645 * array( 'dest1' => 'source1', ...). Source items may be literals
2646 * rather than field names, but strings should be quoted with
2647 * DatabaseBase::addQuotes()
2648 *
2649 * @param array $conds Condition array. See $conds in DatabaseBase::select() for
2650 * the details of the format of condition arrays. May be "*" to copy the
2651 * whole table.
2652 *
2653 * @param string $fname The function name of the caller, from __METHOD__
2654 *
2655 * @param array $insertOptions Options for the INSERT part of the query, see
2656 * DatabaseBase::insert() for details.
2657 * @param array $selectOptions Options for the SELECT part of the query, see
2658 * DatabaseBase::select() for details.
2659 *
2660 * @return ResultWrapper
2661 */
2662 public function insertSelect( $destTable, $srcTable, $varMap, $conds,
2663 $fname = 'DatabaseBase::insertSelect',
2664 $insertOptions = array(), $selectOptions = array() )
2665 {
2666 $destTable = $this->tableName( $destTable );
2667
2668 if ( is_array( $insertOptions ) ) {
2669 $insertOptions = implode( ' ', $insertOptions );
2670 }
2671
2672 if ( !is_array( $selectOptions ) ) {
2673 $selectOptions = array( $selectOptions );
2674 }
2675
2676 list( $startOpts, $useIndex, $tailOpts ) = $this->makeSelectOptions( $selectOptions );
2677
2678 if ( is_array( $srcTable ) ) {
2679 $srcTable = implode( ',', array_map( array( &$this, 'tableName' ), $srcTable ) );
2680 } else {
2681 $srcTable = $this->tableName( $srcTable );
2682 }
2683
2684 $sql = "INSERT $insertOptions INTO $destTable (" . implode( ',', array_keys( $varMap ) ) . ')' .
2685 " SELECT $startOpts " . implode( ',', $varMap ) .
2686 " FROM $srcTable $useIndex ";
2687
2688 if ( $conds != '*' ) {
2689 if ( is_array( $conds ) ) {
2690 $conds = $this->makeList( $conds, LIST_AND );
2691 }
2692 $sql .= " WHERE $conds";
2693 }
2694
2695 $sql .= " $tailOpts";
2696
2697 return $this->query( $sql, $fname );
2698 }
2699
2700 /**
2701 * Construct a LIMIT query with optional offset. This is used for query
2702 * pages. The SQL should be adjusted so that only the first $limit rows
2703 * are returned. If $offset is provided as well, then the first $offset
2704 * rows should be discarded, and the next $limit rows should be returned.
2705 * If the result of the query is not ordered, then the rows to be returned
2706 * are theoretically arbitrary.
2707 *
2708 * $sql is expected to be a SELECT, if that makes a difference.
2709 *
2710 * The version provided by default works in MySQL and SQLite. It will very
2711 * likely need to be overridden for most other DBMSes.
2712 *
2713 * @param string $sql SQL query we will append the limit too
2714 * @param $limit Integer the SQL limit
2715 * @param $offset Integer|bool the SQL offset (default false)
2716 *
2717 * @throws DBUnexpectedError
2718 * @return string
2719 */
2720 public function limitResult( $sql, $limit, $offset = false ) {
2721 if ( !is_numeric( $limit ) ) {
2722 throw new DBUnexpectedError( $this, "Invalid non-numeric limit passed to limitResult()\n" );
2723 }
2724 return "$sql LIMIT "
2725 . ( ( is_numeric( $offset ) && $offset != 0 ) ? "{$offset}," : "" )
2726 . "{$limit} ";
2727 }
2728
2729 /**
2730 * Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries
2731 * within the UNION construct.
2732 * @return Boolean
2733 */
2734 public function unionSupportsOrderAndLimit() {
2735 return true; // True for almost every DB supported
2736 }
2737
2738 /**
2739 * Construct a UNION query
2740 * This is used for providing overload point for other DB abstractions
2741 * not compatible with the MySQL syntax.
2742 * @param array $sqls SQL statements to combine
2743 * @param $all Boolean: use UNION ALL
2744 * @return String: SQL fragment
2745 */
2746 public function unionQueries( $sqls, $all ) {
2747 $glue = $all ? ') UNION ALL (' : ') UNION (';
2748 return '(' . implode( $glue, $sqls ) . ')';
2749 }
2750
2751 /**
2752 * Returns an SQL expression for a simple conditional. This doesn't need
2753 * to be overridden unless CASE isn't supported in your DBMS.
2754 *
2755 * @param string|array $cond SQL expression which will result in a boolean value
2756 * @param string $trueVal SQL expression to return if true
2757 * @param string $falseVal SQL expression to return if false
2758 * @return String: SQL fragment
2759 */
2760 public function conditional( $cond, $trueVal, $falseVal ) {
2761 if ( is_array( $cond ) ) {
2762 $cond = $this->makeList( $cond, LIST_AND );
2763 }
2764 return " (CASE WHEN $cond THEN $trueVal ELSE $falseVal END) ";
2765 }
2766
2767 /**
2768 * Returns a comand for str_replace function in SQL query.
2769 * Uses REPLACE() in MySQL
2770 *
2771 * @param string $orig column to modify
2772 * @param string $old column to seek
2773 * @param string $new column to replace with
2774 *
2775 * @return string
2776 */
2777 public function strreplace( $orig, $old, $new ) {
2778 return "REPLACE({$orig}, {$old}, {$new})";
2779 }
2780
2781 /**
2782 * Determines how long the server has been up
2783 * STUB
2784 *
2785 * @return int
2786 */
2787 public function getServerUptime() {
2788 return 0;
2789 }
2790
2791 /**
2792 * Determines if the last failure was due to a deadlock
2793 * STUB
2794 *
2795 * @return bool
2796 */
2797 public function wasDeadlock() {
2798 return false;
2799 }
2800
2801 /**
2802 * Determines if the last failure was due to a lock timeout
2803 * STUB
2804 *
2805 * @return bool
2806 */
2807 public function wasLockTimeout() {
2808 return false;
2809 }
2810
2811 /**
2812 * Determines if the last query error was something that should be dealt
2813 * with by pinging the connection and reissuing the query.
2814 * STUB
2815 *
2816 * @return bool
2817 */
2818 public function wasErrorReissuable() {
2819 return false;
2820 }
2821
2822 /**
2823 * Determines if the last failure was due to the database being read-only.
2824 * STUB
2825 *
2826 * @return bool
2827 */
2828 public function wasReadOnlyError() {
2829 return false;
2830 }
2831
2832 /**
2833 * Perform a deadlock-prone transaction.
2834 *
2835 * This function invokes a callback function to perform a set of write
2836 * queries. If a deadlock occurs during the processing, the transaction
2837 * will be rolled back and the callback function will be called again.
2838 *
2839 * Usage:
2840 * $dbw->deadlockLoop( callback, ... );
2841 *
2842 * Extra arguments are passed through to the specified callback function.
2843 *
2844 * Returns whatever the callback function returned on its successful,
2845 * iteration, or false on error, for example if the retry limit was
2846 * reached.
2847 *
2848 * @return bool
2849 */
2850 public function deadlockLoop() {
2851 $this->begin( __METHOD__ );
2852 $args = func_get_args();
2853 $function = array_shift( $args );
2854 $oldIgnore = $this->ignoreErrors( true );
2855 $tries = DEADLOCK_TRIES;
2856
2857 if ( is_array( $function ) ) {
2858 $fname = $function[0];
2859 } else {
2860 $fname = $function;
2861 }
2862
2863 do {
2864 $retVal = call_user_func_array( $function, $args );
2865 $error = $this->lastError();
2866 $errno = $this->lastErrno();
2867 $sql = $this->lastQuery();
2868
2869 if ( $errno ) {
2870 if ( $this->wasDeadlock() ) {
2871 # Retry
2872 usleep( mt_rand( DEADLOCK_DELAY_MIN, DEADLOCK_DELAY_MAX ) );
2873 } else {
2874 $this->reportQueryError( $error, $errno, $sql, $fname );
2875 }
2876 }
2877 } while ( $this->wasDeadlock() && --$tries > 0 );
2878
2879 $this->ignoreErrors( $oldIgnore );
2880
2881 if ( $tries <= 0 ) {
2882 $this->rollback( __METHOD__ );
2883 $this->reportQueryError( $error, $errno, $sql, $fname );
2884 return false;
2885 } else {
2886 $this->commit( __METHOD__ );
2887 return $retVal;
2888 }
2889 }
2890
2891 /**
2892 * Wait for the slave to catch up to a given master position.
2893 *
2894 * @param $pos DBMasterPos object
2895 * @param $timeout Integer: the maximum number of seconds to wait for
2896 * synchronisation
2897 *
2898 * @return integer: zero if the slave was past that position already,
2899 * greater than zero if we waited for some period of time, less than
2900 * zero if we timed out.
2901 */
2902 public function masterPosWait( DBMasterPos $pos, $timeout ) {
2903 wfProfileIn( __METHOD__ );
2904
2905 if ( !is_null( $this->mFakeSlaveLag ) ) {
2906 $wait = intval( ( $pos->pos - microtime( true ) + $this->mFakeSlaveLag ) * 1e6 );
2907
2908 if ( $wait > $timeout * 1e6 ) {
2909 wfDebug( "Fake slave timed out waiting for $pos ($wait us)\n" );
2910 wfProfileOut( __METHOD__ );
2911 return -1;
2912 } elseif ( $wait > 0 ) {
2913 wfDebug( "Fake slave waiting $wait us\n" );
2914 usleep( $wait );
2915 wfProfileOut( __METHOD__ );
2916 return 1;
2917 } else {
2918 wfDebug( "Fake slave up to date ($wait us)\n" );
2919 wfProfileOut( __METHOD__ );
2920 return 0;
2921 }
2922 }
2923
2924 wfProfileOut( __METHOD__ );
2925
2926 # Real waits are implemented in the subclass.
2927 return 0;
2928 }
2929
2930 /**
2931 * Get the replication position of this slave
2932 *
2933 * @return DBMasterPos, or false if this is not a slave.
2934 */
2935 public function getSlavePos() {
2936 if ( !is_null( $this->mFakeSlaveLag ) ) {
2937 $pos = new MySQLMasterPos( 'fake', microtime( true ) - $this->mFakeSlaveLag );
2938 wfDebug( __METHOD__ . ": fake slave pos = $pos\n" );
2939 return $pos;
2940 } else {
2941 # Stub
2942 return false;
2943 }
2944 }
2945
2946 /**
2947 * Get the position of this master
2948 *
2949 * @return DBMasterPos, or false if this is not a master
2950 */
2951 public function getMasterPos() {
2952 if ( $this->mFakeMaster ) {
2953 return new MySQLMasterPos( 'fake', microtime( true ) );
2954 } else {
2955 return false;
2956 }
2957 }
2958
2959 /**
2960 * Run an anonymous function as soon as there is no transaction pending.
2961 * If there is a transaction and it is rolled back, then the callback is cancelled.
2962 * Queries in the function will run in AUTO-COMMIT mode unless there are begin() calls.
2963 * Callbacks must commit any transactions that they begin.
2964 *
2965 * This is useful for updates to different systems or when separate transactions are needed.
2966 * For example, one might want to enqueue jobs into a system outside the database, but only
2967 * after the database is updated so that the jobs will see the data when they actually run.
2968 * It can also be used for updates that easily cause deadlocks if locks are held too long.
2969 *
2970 * @param Closure $callback
2971 * @since 1.20
2972 */
2973 final public function onTransactionIdle( Closure $callback ) {
2974 $this->mTrxIdleCallbacks[] = $callback;
2975 if ( !$this->mTrxLevel ) {
2976 $this->runOnTransactionIdleCallbacks();
2977 }
2978 }
2979
2980 /**
2981 * Run an anonymous function before the current transaction commits or now if there is none.
2982 * If there is a transaction and it is rolled back, then the callback is cancelled.
2983 * Callbacks must not start nor commit any transactions.
2984 *
2985 * This is useful for updates that easily cause deadlocks if locks are held too long
2986 * but where atomicity is strongly desired for these updates and some related updates.
2987 *
2988 * @param Closure $callback
2989 * @since 1.22
2990 */
2991 final public function onTransactionPreCommitOrIdle( Closure $callback ) {
2992 if ( $this->mTrxLevel ) {
2993 $this->mTrxPreCommitCallbacks[] = $callback;
2994 } else {
2995 $this->onTransactionIdle( $callback ); // this will trigger immediately
2996 }
2997 }
2998
2999 /**
3000 * Actually any "on transaction idle" callbacks.
3001 *
3002 * @since 1.20
3003 */
3004 protected function runOnTransactionIdleCallbacks() {
3005 $autoTrx = $this->getFlag( DBO_TRX ); // automatic begin() enabled?
3006
3007 $e = null; // last exception
3008 do { // callbacks may add callbacks :)
3009 $callbacks = $this->mTrxIdleCallbacks;
3010 $this->mTrxIdleCallbacks = array(); // recursion guard
3011 foreach ( $callbacks as $callback ) {
3012 try {
3013 $this->clearFlag( DBO_TRX ); // make each query its own transaction
3014 $callback();
3015 $this->setFlag( $autoTrx ? DBO_TRX : 0 ); // restore automatic begin()
3016 } catch ( Exception $e ) {
3017 }
3018 }
3019 } while ( count( $this->mTrxIdleCallbacks ) );
3020
3021 if ( $e instanceof Exception ) {
3022 throw $e; // re-throw any last exception
3023 }
3024 }
3025
3026 /**
3027 * Actually any "on transaction pre-commit" callbacks.
3028 *
3029 * @since 1.22
3030 */
3031 protected function runOnTransactionPreCommitCallbacks() {
3032 $e = null; // last exception
3033 do { // callbacks may add callbacks :)
3034 $callbacks = $this->mTrxPreCommitCallbacks;
3035 $this->mTrxPreCommitCallbacks = array(); // recursion guard
3036 foreach ( $callbacks as $callback ) {
3037 try {
3038 $callback();
3039 } catch ( Exception $e ) {}
3040 }
3041 } while ( count( $this->mTrxPreCommitCallbacks ) );
3042
3043 if ( $e instanceof Exception ) {
3044 throw $e; // re-throw any last exception
3045 }
3046 }
3047
3048 /**
3049 * Begin a transaction. If a transaction is already in progress, that transaction will be committed before the
3050 * new transaction is started.
3051 *
3052 * Note that when the DBO_TRX flag is set (which is usually the case for web requests, but not for maintenance scripts),
3053 * any previous database query will have started a transaction automatically.
3054 *
3055 * Nesting of transactions is not supported. Attempts to nest transactions will cause a warning, unless the current
3056 * transaction was started automatically because of the DBO_TRX flag.
3057 *
3058 * @param $fname string
3059 */
3060 final public function begin( $fname = 'DatabaseBase::begin' ) {
3061 global $wgDebugDBTransactions;
3062
3063 if ( $this->mTrxLevel ) { // implicit commit
3064 if ( !$this->mTrxAutomatic ) {
3065 // We want to warn about inadvertently nested begin/commit pairs, but not about
3066 // auto-committing implicit transactions that were started by query() via DBO_TRX
3067 $msg = "$fname: Transaction already in progress (from {$this->mTrxFname}), " .
3068 " performing implicit commit!";
3069 wfWarn( $msg );
3070 wfLogDBError( $msg );
3071 } else {
3072 // if the transaction was automatic and has done write operations,
3073 // log it if $wgDebugDBTransactions is enabled.
3074 if ( $this->mTrxDoneWrites && $wgDebugDBTransactions ) {
3075 wfDebug( "$fname: Automatic transaction with writes in progress" .
3076 " (from {$this->mTrxFname}), performing implicit commit!\n"
3077 );
3078 }
3079 }
3080
3081 $this->runOnTransactionPreCommitCallbacks();
3082 $this->doCommit( $fname );
3083 $this->runOnTransactionIdleCallbacks();
3084 }
3085
3086 $this->doBegin( $fname );
3087 $this->mTrxFname = $fname;
3088 $this->mTrxDoneWrites = false;
3089 $this->mTrxAutomatic = false;
3090 }
3091
3092 /**
3093 * Issues the BEGIN command to the database server.
3094 *
3095 * @see DatabaseBase::begin()
3096 * @param type $fname
3097 */
3098 protected function doBegin( $fname ) {
3099 $this->query( 'BEGIN', $fname );
3100 $this->mTrxLevel = 1;
3101 }
3102
3103 /**
3104 * Commits a transaction previously started using begin().
3105 * If no transaction is in progress, a warning is issued.
3106 *
3107 * Nesting of transactions is not supported.
3108 *
3109 * @param $fname string
3110 * @param string $flush Flush flag, set to 'flush' to disable warnings about explicitly committing implicit
3111 * transactions, or calling commit when no transaction is in progress.
3112 * This will silently break any ongoing explicit transaction. Only set the flush flag if you are sure
3113 * that it is safe to ignore these warnings in your context.
3114 */
3115 final public function commit( $fname = 'DatabaseBase::commit', $flush = '' ) {
3116 if ( $flush != 'flush' ) {
3117 if ( !$this->mTrxLevel ) {
3118 wfWarn( "$fname: No transaction to commit, something got out of sync!" );
3119 } elseif ( $this->mTrxAutomatic ) {
3120 wfWarn( "$fname: Explicit commit of implicit transaction. Something may be out of sync!" );
3121 }
3122 } else {
3123 if ( !$this->mTrxLevel ) {
3124 return; // nothing to do
3125 } elseif ( !$this->mTrxAutomatic ) {
3126 wfWarn( "$fname: Flushing an explicit transaction, getting out of sync!" );
3127 }
3128 }
3129
3130 $this->runOnTransactionPreCommitCallbacks();
3131 $this->doCommit( $fname );
3132 $this->runOnTransactionIdleCallbacks();
3133 }
3134
3135 /**
3136 * Issues the COMMIT command to the database server.
3137 *
3138 * @see DatabaseBase::commit()
3139 * @param type $fname
3140 */
3141 protected function doCommit( $fname ) {
3142 if ( $this->mTrxLevel ) {
3143 $this->query( 'COMMIT', $fname );
3144 $this->mTrxLevel = 0;
3145 }
3146 }
3147
3148 /**
3149 * Rollback a transaction previously started using begin().
3150 * If no transaction is in progress, a warning is issued.
3151 *
3152 * No-op on non-transactional databases.
3153 *
3154 * @param $fname string
3155 */
3156 final public function rollback( $fname = 'DatabaseBase::rollback' ) {
3157 if ( !$this->mTrxLevel ) {
3158 wfWarn( "$fname: No transaction to rollback, something got out of sync!" );
3159 }
3160 $this->doRollback( $fname );
3161 $this->mTrxIdleCallbacks = array(); // cancel
3162 $this->mTrxPreCommitCallbacks = array(); // cancel
3163 }
3164
3165 /**
3166 * Issues the ROLLBACK command to the database server.
3167 *
3168 * @see DatabaseBase::rollback()
3169 * @param type $fname
3170 */
3171 protected function doRollback( $fname ) {
3172 if ( $this->mTrxLevel ) {
3173 $this->query( 'ROLLBACK', $fname, true );
3174 $this->mTrxLevel = 0;
3175 }
3176 }
3177
3178 /**
3179 * Creates a new table with structure copied from existing table
3180 * Note that unlike most database abstraction functions, this function does not
3181 * automatically append database prefix, because it works at a lower
3182 * abstraction level.
3183 * The table names passed to this function shall not be quoted (this
3184 * function calls addIdentifierQuotes when needed).
3185 *
3186 * @param string $oldName name of table whose structure should be copied
3187 * @param string $newName name of table to be created
3188 * @param $temporary Boolean: whether the new table should be temporary
3189 * @param string $fname calling function name
3190 * @throws MWException
3191 * @return Boolean: true if operation was successful
3192 */
3193 public function duplicateTableStructure( $oldName, $newName, $temporary = false,
3194 $fname = 'DatabaseBase::duplicateTableStructure'
3195 ) {
3196 throw new MWException(
3197 'DatabaseBase::duplicateTableStructure is not implemented in descendant class' );
3198 }
3199
3200 /**
3201 * List all tables on the database
3202 *
3203 * @param string $prefix Only show tables with this prefix, e.g. mw_
3204 * @param string $fname calling function name
3205 * @throws MWException
3206 */
3207 function listTables( $prefix = null, $fname = 'DatabaseBase::listTables' ) {
3208 throw new MWException( 'DatabaseBase::listTables is not implemented in descendant class' );
3209 }
3210
3211 /**
3212 * Convert a timestamp in one of the formats accepted by wfTimestamp()
3213 * to the format used for inserting into timestamp fields in this DBMS.
3214 *
3215 * The result is unquoted, and needs to be passed through addQuotes()
3216 * before it can be included in raw SQL.
3217 *
3218 * @param $ts string|int
3219 *
3220 * @return string
3221 */
3222 public function timestamp( $ts = 0 ) {
3223 return wfTimestamp( TS_MW, $ts );
3224 }
3225
3226 /**
3227 * Convert a timestamp in one of the formats accepted by wfTimestamp()
3228 * to the format used for inserting into timestamp fields in this DBMS. If
3229 * NULL is input, it is passed through, allowing NULL values to be inserted
3230 * into timestamp fields.
3231 *
3232 * The result is unquoted, and needs to be passed through addQuotes()
3233 * before it can be included in raw SQL.
3234 *
3235 * @param $ts string|int
3236 *
3237 * @return string
3238 */
3239 public function timestampOrNull( $ts = null ) {
3240 if ( is_null( $ts ) ) {
3241 return null;
3242 } else {
3243 return $this->timestamp( $ts );
3244 }
3245 }
3246
3247 /**
3248 * Take the result from a query, and wrap it in a ResultWrapper if
3249 * necessary. Boolean values are passed through as is, to indicate success
3250 * of write queries or failure.
3251 *
3252 * Once upon a time, DatabaseBase::query() returned a bare MySQL result
3253 * resource, and it was necessary to call this function to convert it to
3254 * a wrapper. Nowadays, raw database objects are never exposed to external
3255 * callers, so this is unnecessary in external code. For compatibility with
3256 * old code, ResultWrapper objects are passed through unaltered.
3257 *
3258 * @param $result bool|ResultWrapper
3259 *
3260 * @return bool|ResultWrapper
3261 */
3262 public function resultObject( $result ) {
3263 if ( empty( $result ) ) {
3264 return false;
3265 } elseif ( $result instanceof ResultWrapper ) {
3266 return $result;
3267 } elseif ( $result === true ) {
3268 // Successful write query
3269 return $result;
3270 } else {
3271 return new ResultWrapper( $this, $result );
3272 }
3273 }
3274
3275 /**
3276 * Ping the server and try to reconnect if it there is no connection
3277 *
3278 * @return bool Success or failure
3279 */
3280 public function ping() {
3281 # Stub. Not essential to override.
3282 return true;
3283 }
3284
3285 /**
3286 * Get slave lag. Currently supported only by MySQL.
3287 *
3288 * Note that this function will generate a fatal error on many
3289 * installations. Most callers should use LoadBalancer::safeGetLag()
3290 * instead.
3291 *
3292 * @return int Database replication lag in seconds
3293 */
3294 public function getLag() {
3295 return intval( $this->mFakeSlaveLag );
3296 }
3297
3298 /**
3299 * Return the maximum number of items allowed in a list, or 0 for unlimited.
3300 *
3301 * @return int
3302 */
3303 function maxListLen() {
3304 return 0;
3305 }
3306
3307 /**
3308 * Some DBMSs have a special format for inserting into blob fields, they
3309 * don't allow simple quoted strings to be inserted. To insert into such
3310 * a field, pass the data through this function before passing it to
3311 * DatabaseBase::insert().
3312 * @param $b string
3313 * @return string
3314 */
3315 public function encodeBlob( $b ) {
3316 return $b;
3317 }
3318
3319 /**
3320 * Some DBMSs return a special placeholder object representing blob fields
3321 * in result objects. Pass the object through this function to return the
3322 * original string.
3323 * @param $b string
3324 * @return string
3325 */
3326 public function decodeBlob( $b ) {
3327 return $b;
3328 }
3329
3330 /**
3331 * Override database's default behavior. $options include:
3332 * 'connTimeout' : Set the connection timeout value in seconds.
3333 * May be useful for very long batch queries such as
3334 * full-wiki dumps, where a single query reads out over
3335 * hours or days.
3336 *
3337 * @param $options Array
3338 * @return void
3339 */
3340 public function setSessionOptions( array $options ) {
3341 }
3342
3343 /**
3344 * Read and execute SQL commands from a file.
3345 *
3346 * Returns true on success, error string or exception on failure (depending
3347 * on object's error ignore settings).
3348 *
3349 * @param string $filename File name to open
3350 * @param bool|callable $lineCallback Optional function called before reading each line
3351 * @param bool|callable $resultCallback Optional function called for each MySQL result
3352 * @param bool|string $fname Calling function name or false if name should be
3353 * generated dynamically using $filename
3354 * @param bool|callable $inputCallback Callback: Optional function called for each complete line sent
3355 * @throws MWException
3356 * @throws Exception|MWException
3357 * @return bool|string
3358 */
3359 public function sourceFile(
3360 $filename, $lineCallback = false, $resultCallback = false, $fname = false, $inputCallback = false
3361 ) {
3362 wfSuppressWarnings();
3363 $fp = fopen( $filename, 'r' );
3364 wfRestoreWarnings();
3365
3366 if ( false === $fp ) {
3367 throw new MWException( "Could not open \"{$filename}\".\n" );
3368 }
3369
3370 if ( !$fname ) {
3371 $fname = __METHOD__ . "( $filename )";
3372 }
3373
3374 try {
3375 $error = $this->sourceStream( $fp, $lineCallback, $resultCallback, $fname, $inputCallback );
3376 }
3377 catch ( MWException $e ) {
3378 fclose( $fp );
3379 throw $e;
3380 }
3381
3382 fclose( $fp );
3383
3384 return $error;
3385 }
3386
3387 /**
3388 * Get the full path of a patch file. Originally based on archive()
3389 * from updaters.inc. Keep in mind this always returns a patch, as
3390 * it fails back to MySQL if no DB-specific patch can be found
3391 *
3392 * @param string $patch The name of the patch, like patch-something.sql
3393 * @return String Full path to patch file
3394 */
3395 public function patchPath( $patch ) {
3396 global $IP;
3397
3398 $dbType = $this->getType();
3399 if ( file_exists( "$IP/maintenance/$dbType/archives/$patch" ) ) {
3400 return "$IP/maintenance/$dbType/archives/$patch";
3401 } else {
3402 return "$IP/maintenance/archives/$patch";
3403 }
3404 }
3405
3406 /**
3407 * Set variables to be used in sourceFile/sourceStream, in preference to the
3408 * ones in $GLOBALS. If an array is set here, $GLOBALS will not be used at
3409 * all. If it's set to false, $GLOBALS will be used.
3410 *
3411 * @param bool|array $vars mapping variable name to value.
3412 */
3413 public function setSchemaVars( $vars ) {
3414 $this->mSchemaVars = $vars;
3415 }
3416
3417 /**
3418 * Read and execute commands from an open file handle.
3419 *
3420 * Returns true on success, error string or exception on failure (depending
3421 * on object's error ignore settings).
3422 *
3423 * @param $fp Resource: File handle
3424 * @param $lineCallback Callback: Optional function called before reading each query
3425 * @param $resultCallback Callback: Optional function called for each MySQL result
3426 * @param string $fname Calling function name
3427 * @param $inputCallback Callback: Optional function called for each complete query sent
3428 * @return bool|string
3429 */
3430 public function sourceStream( $fp, $lineCallback = false, $resultCallback = false,
3431 $fname = 'DatabaseBase::sourceStream', $inputCallback = false )
3432 {
3433 $cmd = '';
3434
3435 while ( !feof( $fp ) ) {
3436 if ( $lineCallback ) {
3437 call_user_func( $lineCallback );
3438 }
3439
3440 $line = trim( fgets( $fp ) );
3441
3442 if ( $line == '' ) {
3443 continue;
3444 }
3445
3446 if ( '-' == $line[0] && '-' == $line[1] ) {
3447 continue;
3448 }
3449
3450 if ( $cmd != '' ) {
3451 $cmd .= ' ';
3452 }
3453
3454 $done = $this->streamStatementEnd( $cmd, $line );
3455
3456 $cmd .= "$line\n";
3457
3458 if ( $done || feof( $fp ) ) {
3459 $cmd = $this->replaceVars( $cmd );
3460
3461 if ( ( $inputCallback && call_user_func( $inputCallback, $cmd ) ) || !$inputCallback ) {
3462 $res = $this->query( $cmd, $fname );
3463
3464 if ( $resultCallback ) {
3465 call_user_func( $resultCallback, $res, $this );
3466 }
3467
3468 if ( false === $res ) {
3469 $err = $this->lastError();
3470 return "Query \"{$cmd}\" failed with error code \"$err\".\n";
3471 }
3472 }
3473 $cmd = '';
3474 }
3475 }
3476
3477 return true;
3478 }
3479
3480 /**
3481 * Called by sourceStream() to check if we've reached a statement end
3482 *
3483 * @param string $sql SQL assembled so far
3484 * @param string $newLine New line about to be added to $sql
3485 * @return Bool Whether $newLine contains end of the statement
3486 */
3487 public function streamStatementEnd( &$sql, &$newLine ) {
3488 if ( $this->delimiter ) {
3489 $prev = $newLine;
3490 $newLine = preg_replace( '/' . preg_quote( $this->delimiter, '/' ) . '$/', '', $newLine );
3491 if ( $newLine != $prev ) {
3492 return true;
3493 }
3494 }
3495 return false;
3496 }
3497
3498 /**
3499 * Database independent variable replacement. Replaces a set of variables
3500 * in an SQL statement with their contents as given by $this->getSchemaVars().
3501 *
3502 * Supports '{$var}' `{$var}` and / *$var* / (without the spaces) style variables.
3503 *
3504 * - '{$var}' should be used for text and is passed through the database's
3505 * addQuotes method.
3506 * - `{$var}` should be used for identifiers (eg: table and database names),
3507 * it is passed through the database's addIdentifierQuotes method which
3508 * can be overridden if the database uses something other than backticks.
3509 * - / *$var* / is just encoded, besides traditional table prefix and
3510 * table options its use should be avoided.
3511 *
3512 * @param string $ins SQL statement to replace variables in
3513 * @return String The new SQL statement with variables replaced
3514 */
3515 protected function replaceSchemaVars( $ins ) {
3516 $vars = $this->getSchemaVars();
3517 foreach ( $vars as $var => $value ) {
3518 // replace '{$var}'
3519 $ins = str_replace( '\'{$' . $var . '}\'', $this->addQuotes( $value ), $ins );
3520 // replace `{$var}`
3521 $ins = str_replace( '`{$' . $var . '}`', $this->addIdentifierQuotes( $value ), $ins );
3522 // replace /*$var*/
3523 $ins = str_replace( '/*$' . $var . '*/', $this->strencode( $value ), $ins );
3524 }
3525 return $ins;
3526 }
3527
3528 /**
3529 * Replace variables in sourced SQL
3530 *
3531 * @param $ins string
3532 *
3533 * @return string
3534 */
3535 protected function replaceVars( $ins ) {
3536 $ins = $this->replaceSchemaVars( $ins );
3537
3538 // Table prefixes
3539 $ins = preg_replace_callback( '!/\*(?:\$wgDBprefix|_)\*/([a-zA-Z_0-9]*)!',
3540 array( $this, 'tableNameCallback' ), $ins );
3541
3542 // Index names
3543 $ins = preg_replace_callback( '!/\*i\*/([a-zA-Z_0-9]*)!',
3544 array( $this, 'indexNameCallback' ), $ins );
3545
3546 return $ins;
3547 }
3548
3549 /**
3550 * Get schema variables. If none have been set via setSchemaVars(), then
3551 * use some defaults from the current object.
3552 *
3553 * @return array
3554 */
3555 protected function getSchemaVars() {
3556 if ( $this->mSchemaVars ) {
3557 return $this->mSchemaVars;
3558 } else {
3559 return $this->getDefaultSchemaVars();
3560 }
3561 }
3562
3563 /**
3564 * Get schema variables to use if none have been set via setSchemaVars().
3565 *
3566 * Override this in derived classes to provide variables for tables.sql
3567 * and SQL patch files.
3568 *
3569 * @return array
3570 */
3571 protected function getDefaultSchemaVars() {
3572 return array();
3573 }
3574
3575 /**
3576 * Table name callback
3577 *
3578 * @param $matches array
3579 *
3580 * @return string
3581 */
3582 protected function tableNameCallback( $matches ) {
3583 return $this->tableName( $matches[1] );
3584 }
3585
3586 /**
3587 * Index name callback
3588 *
3589 * @param $matches array
3590 *
3591 * @return string
3592 */
3593 protected function indexNameCallback( $matches ) {
3594 return $this->indexName( $matches[1] );
3595 }
3596
3597 /**
3598 * Check to see if a named lock is available. This is non-blocking.
3599 *
3600 * @param string $lockName name of lock to poll
3601 * @param string $method name of method calling us
3602 * @return Boolean
3603 * @since 1.20
3604 */
3605 public function lockIsFree( $lockName, $method ) {
3606 return true;
3607 }
3608
3609 /**
3610 * Acquire a named lock
3611 *
3612 * Abstracted from Filestore::lock() so child classes can implement for
3613 * their own needs.
3614 *
3615 * @param string $lockName name of lock to aquire
3616 * @param string $method name of method calling us
3617 * @param $timeout Integer: timeout
3618 * @return Boolean
3619 */
3620 public function lock( $lockName, $method, $timeout = 5 ) {
3621 return true;
3622 }
3623
3624 /**
3625 * Release a lock.
3626 *
3627 * @param string $lockName Name of lock to release
3628 * @param string $method Name of method calling us
3629 *
3630 * @return int Returns 1 if the lock was released, 0 if the lock was not established
3631 * by this thread (in which case the lock is not released), and NULL if the named
3632 * lock did not exist
3633 */
3634 public function unlock( $lockName, $method ) {
3635 return true;
3636 }
3637
3638 /**
3639 * Lock specific tables
3640 *
3641 * @param array $read of tables to lock for read access
3642 * @param array $write of tables to lock for write access
3643 * @param string $method name of caller
3644 * @param bool $lowPriority Whether to indicate writes to be LOW PRIORITY
3645 *
3646 * @return bool
3647 */
3648 public function lockTables( $read, $write, $method, $lowPriority = true ) {
3649 return true;
3650 }
3651
3652 /**
3653 * Unlock specific tables
3654 *
3655 * @param string $method the caller
3656 *
3657 * @return bool
3658 */
3659 public function unlockTables( $method ) {
3660 return true;
3661 }
3662
3663 /**
3664 * Delete a table
3665 * @param $tableName string
3666 * @param $fName string
3667 * @return bool|ResultWrapper
3668 * @since 1.18
3669 */
3670 public function dropTable( $tableName, $fName = 'DatabaseBase::dropTable' ) {
3671 if ( !$this->tableExists( $tableName, $fName ) ) {
3672 return false;
3673 }
3674 $sql = "DROP TABLE " . $this->tableName( $tableName );
3675 if ( $this->cascadingDeletes() ) {
3676 $sql .= " CASCADE";
3677 }
3678 return $this->query( $sql, $fName );
3679 }
3680
3681 /**
3682 * Get search engine class. All subclasses of this need to implement this
3683 * if they wish to use searching.
3684 *
3685 * @return String
3686 */
3687 public function getSearchEngine() {
3688 return 'SearchEngineDummy';
3689 }
3690
3691 /**
3692 * Find out when 'infinity' is. Most DBMSes support this. This is a special
3693 * keyword for timestamps in PostgreSQL, and works with CHAR(14) as well
3694 * because "i" sorts after all numbers.
3695 *
3696 * @return String
3697 */
3698 public function getInfinity() {
3699 return 'infinity';
3700 }
3701
3702 /**
3703 * Encode an expiry time into the DBMS dependent format
3704 *
3705 * @param string $expiry timestamp for expiry, or the 'infinity' string
3706 * @return String
3707 */
3708 public function encodeExpiry( $expiry ) {
3709 return ( $expiry == '' || $expiry == 'infinity' || $expiry == $this->getInfinity() )
3710 ? $this->getInfinity()
3711 : $this->timestamp( $expiry );
3712 }
3713
3714 /**
3715 * Decode an expiry time into a DBMS independent format
3716 *
3717 * @param string $expiry DB timestamp field value for expiry
3718 * @param $format integer: TS_* constant, defaults to TS_MW
3719 * @return String
3720 */
3721 public function decodeExpiry( $expiry, $format = TS_MW ) {
3722 return ( $expiry == '' || $expiry == $this->getInfinity() )
3723 ? 'infinity'
3724 : wfTimestamp( $format, $expiry );
3725 }
3726
3727 /**
3728 * Allow or deny "big selects" for this session only. This is done by setting
3729 * the sql_big_selects session variable.
3730 *
3731 * This is a MySQL-specific feature.
3732 *
3733 * @param $value Mixed: true for allow, false for deny, or "default" to
3734 * restore the initial value
3735 */
3736 public function setBigSelects( $value = true ) {
3737 // no-op
3738 }
3739
3740 /**
3741 * @since 1.19
3742 */
3743 public function __toString() {
3744 return (string)$this->mConn;
3745 }
3746
3747 public function __destruct() {
3748 if ( count( $this->mTrxIdleCallbacks ) || count( $this->mTrxPreCommitCallbacks ) ) {
3749 trigger_error( "Transaction idle or pre-commit callbacks still pending." ); // sanity
3750 }
3751 }
3752 }