* (bug 8539 Enable PLURAL option for another message of Recentchanges
[lhc/web/wiklou.git] / includes / Database.php
1 <?php
2 /**
3 * This file deals with MySQL interface functions
4 * and query specifics/optimisations
5 */
6
7 /** Number of times to re-try an operation in case of deadlock */
8 define( 'DEADLOCK_TRIES', 4 );
9 /** Minimum time to wait before retry, in microseconds */
10 define( 'DEADLOCK_DELAY_MIN', 500000 );
11 /** Maximum time to wait before retry */
12 define( 'DEADLOCK_DELAY_MAX', 1500000 );
13
14 /******************************************************************************
15 * Utility classes
16 *****************************************************************************/
17
18 class DBObject {
19 public $mData;
20
21 function DBObject($data) {
22 $this->mData = $data;
23 }
24
25 function isLOB() {
26 return false;
27 }
28
29 function data() {
30 return $this->mData;
31 }
32 };
33
34 /******************************************************************************
35 * Error classes
36 *****************************************************************************/
37
38 /**
39 * Database error base class
40 */
41 class DBError extends MWException {
42 public $db;
43
44 /**
45 * Construct a database error
46 * @param Database $db The database object which threw the error
47 * @param string $error A simple error message to be used for debugging
48 */
49 function __construct( Database &$db, $error ) {
50 $this->db =& $db;
51 parent::__construct( $error );
52 }
53 }
54
55 class DBConnectionError extends DBError {
56 public $error;
57
58 function __construct( Database &$db, $error = 'unknown error' ) {
59 $msg = 'DB connection error';
60 if ( trim( $error ) != '' ) {
61 $msg .= ": $error";
62 }
63 $this->error = $error;
64 parent::__construct( $db, $msg );
65 }
66
67 function useOutputPage() {
68 // Not likely to work
69 return false;
70 }
71
72 function useMessageCache() {
73 // Not likely to work
74 return false;
75 }
76
77 function getText() {
78 return $this->getMessage() . "\n";
79 }
80
81 function getLogMessage() {
82 # Don't send to the exception log
83 return false;
84 }
85
86 function getPageTitle() {
87 global $wgSitename;
88 return "$wgSitename has a problem";
89 }
90
91 function getHTML() {
92 global $wgTitle, $wgUseFileCache, $title, $wgInputEncoding;
93 global $wgSitename, $wgServer, $wgMessageCache;
94
95 # I give up, Brion is right. Getting the message cache to work when there is no DB is tricky.
96 # Hard coding strings instead.
97
98 $noconnect = "<p><strong>Sorry! This site is experiencing technical difficulties.</strong></p><p>Try waiting a few minutes and reloading.</p><p><small>(Can't contact the database server: $1)</small></p>";
99 $mainpage = 'Main Page';
100 $searchdisabled = <<<EOT
101 <p style="margin: 1.5em 2em 1em">$wgSitename search is disabled for performance reasons. You can search via Google in the meantime.
102 <span style="font-size: 89%; display: block; margin-left: .2em">Note that their indexes of $wgSitename content may be out of date.</span></p>',
103 EOT;
104
105 $googlesearch = "
106 <!-- SiteSearch Google -->
107 <FORM method=GET action=\"http://www.google.com/search\">
108 <TABLE bgcolor=\"#FFFFFF\"><tr><td>
109 <A HREF=\"http://www.google.com/\">
110 <IMG SRC=\"http://www.google.com/logos/Logo_40wht.gif\"
111 border=\"0\" ALT=\"Google\"></A>
112 </td>
113 <td>
114 <INPUT TYPE=text name=q size=31 maxlength=255 value=\"$1\">
115 <INPUT type=submit name=btnG VALUE=\"Google Search\">
116 <font size=-1>
117 <input type=hidden name=domains value=\"$wgServer\"><br /><input type=radio name=sitesearch value=\"\"> WWW <input type=radio name=sitesearch value=\"$wgServer\" checked> $wgServer <br />
118 <input type='hidden' name='ie' value='$2'>
119 <input type='hidden' name='oe' value='$2'>
120 </font>
121 </td></tr></TABLE>
122 </FORM>
123 <!-- SiteSearch Google -->";
124 $cachederror = "The following is a cached copy of the requested page, and may not be up to date. ";
125
126 # No database access
127 if ( is_object( $wgMessageCache ) ) {
128 $wgMessageCache->disable();
129 }
130
131 if ( trim( $this->error ) == '' ) {
132 $this->error = $this->db->getProperty('mServer');
133 }
134
135 $text = str_replace( '$1', $this->error, $noconnect );
136 $text .= wfGetSiteNotice();
137
138 if($wgUseFileCache) {
139 if($wgTitle) {
140 $t =& $wgTitle;
141 } else {
142 if($title) {
143 $t = Title::newFromURL( $title );
144 } elseif (@/**/$_REQUEST['search']) {
145 $search = $_REQUEST['search'];
146 return $searchdisabled .
147 str_replace( array( '$1', '$2' ), array( htmlspecialchars( $search ),
148 $wgInputEncoding ), $googlesearch );
149 } else {
150 $t = Title::newFromText( $mainpage );
151 }
152 }
153
154 $cache = new HTMLFileCache( $t );
155 if( $cache->isFileCached() ) {
156 // FIXME: $msg is not defined on the next line.
157 $msg = '<p style="color: red"><b>'.$msg."<br />\n" .
158 $cachederror . "</b></p>\n";
159
160 $tag = '<div id="article">';
161 $text = str_replace(
162 $tag,
163 $tag . $msg,
164 $cache->fetchPageText() );
165 }
166 }
167
168 return $text;
169 }
170 }
171
172 class DBQueryError extends DBError {
173 public $error, $errno, $sql, $fname;
174
175 function __construct( Database &$db, $error, $errno, $sql, $fname ) {
176 $message = "A database error has occurred\n" .
177 "Query: $sql\n" .
178 "Function: $fname\n" .
179 "Error: $errno $error\n";
180
181 parent::__construct( $db, $message );
182 $this->error = $error;
183 $this->errno = $errno;
184 $this->sql = $sql;
185 $this->fname = $fname;
186 }
187
188 function getText() {
189 if ( $this->useMessageCache() ) {
190 return wfMsg( 'dberrortextcl', htmlspecialchars( $this->getSQL() ),
191 htmlspecialchars( $this->fname ), $this->errno, htmlspecialchars( $this->error ) ) . "\n";
192 } else {
193 return $this->getMessage();
194 }
195 }
196
197 function getSQL() {
198 global $wgShowSQLErrors;
199 if( !$wgShowSQLErrors ) {
200 return $this->msg( 'sqlhidden', 'SQL hidden' );
201 } else {
202 return $this->sql;
203 }
204 }
205
206 function getLogMessage() {
207 # Don't send to the exception log
208 return false;
209 }
210
211 function getPageTitle() {
212 return $this->msg( 'databaseerror', 'Database error' );
213 }
214
215 function getHTML() {
216 if ( $this->useMessageCache() ) {
217 return wfMsgNoDB( 'dberrortext', htmlspecialchars( $this->getSQL() ),
218 htmlspecialchars( $this->fname ), $this->errno, htmlspecialchars( $this->error ) );
219 } else {
220 return nl2br( htmlspecialchars( $this->getMessage() ) );
221 }
222 }
223 }
224
225 class DBUnexpectedError extends DBError {}
226
227 /******************************************************************************/
228
229 /**
230 * Database abstraction object
231 */
232 class Database {
233
234 #------------------------------------------------------------------------------
235 # Variables
236 #------------------------------------------------------------------------------
237
238 protected $mLastQuery = '';
239
240 protected $mServer, $mUser, $mPassword, $mConn = null, $mDBname;
241 protected $mOut, $mOpened = false;
242
243 protected $mFailFunction;
244 protected $mTablePrefix;
245 protected $mFlags;
246 protected $mTrxLevel = 0;
247 protected $mErrorCount = 0;
248 protected $mLBInfo = array();
249 protected $mCascadingDeletes = false;
250 protected $mCleanupTriggers = false;
251 protected $mStrictIPs = false;
252
253 #------------------------------------------------------------------------------
254 # Accessors
255 #------------------------------------------------------------------------------
256 # These optionally set a variable and return the previous state
257
258 /**
259 * Fail function, takes a Database as a parameter
260 * Set to false for default, 1 for ignore errors
261 */
262 function failFunction( $function = NULL ) {
263 return wfSetVar( $this->mFailFunction, $function );
264 }
265
266 /**
267 * Output page, used for reporting errors
268 * FALSE means discard output
269 */
270 function setOutputPage( $out ) {
271 $this->mOut = $out;
272 }
273
274 /**
275 * Boolean, controls output of large amounts of debug information
276 */
277 function debug( $debug = NULL ) {
278 return wfSetBit( $this->mFlags, DBO_DEBUG, $debug );
279 }
280
281 /**
282 * Turns buffering of SQL result sets on (true) or off (false).
283 * Default is "on" and it should not be changed without good reasons.
284 */
285 function bufferResults( $buffer = NULL ) {
286 if ( is_null( $buffer ) ) {
287 return !(bool)( $this->mFlags & DBO_NOBUFFER );
288 } else {
289 return !wfSetBit( $this->mFlags, DBO_NOBUFFER, !$buffer );
290 }
291 }
292
293 /**
294 * Turns on (false) or off (true) the automatic generation and sending
295 * of a "we're sorry, but there has been a database error" page on
296 * database errors. Default is on (false). When turned off, the
297 * code should use lastErrno() and lastError() to handle the
298 * situation as appropriate.
299 */
300 function ignoreErrors( $ignoreErrors = NULL ) {
301 return wfSetBit( $this->mFlags, DBO_IGNORE, $ignoreErrors );
302 }
303
304 /**
305 * The current depth of nested transactions
306 * @param $level Integer: , default NULL.
307 */
308 function trxLevel( $level = NULL ) {
309 return wfSetVar( $this->mTrxLevel, $level );
310 }
311
312 /**
313 * Number of errors logged, only useful when errors are ignored
314 */
315 function errorCount( $count = NULL ) {
316 return wfSetVar( $this->mErrorCount, $count );
317 }
318
319 /**
320 * Properties passed down from the server info array of the load balancer
321 */
322 function getLBInfo( $name = NULL ) {
323 if ( is_null( $name ) ) {
324 return $this->mLBInfo;
325 } else {
326 if ( array_key_exists( $name, $this->mLBInfo ) ) {
327 return $this->mLBInfo[$name];
328 } else {
329 return NULL;
330 }
331 }
332 }
333
334 function setLBInfo( $name, $value = NULL ) {
335 if ( is_null( $value ) ) {
336 $this->mLBInfo = $name;
337 } else {
338 $this->mLBInfo[$name] = $value;
339 }
340 }
341
342 /**
343 * Returns true if this database supports (and uses) cascading deletes
344 */
345 function cascadingDeletes() {
346 return $this->mCascadingDeletes;
347 }
348
349 /**
350 * Returns true if this database supports (and uses) triggers (e.g. on the page table)
351 */
352 function cleanupTriggers() {
353 return $this->mCleanupTriggers;
354 }
355
356 /**
357 * Returns true if this database is strict about what can be put into an IP field.
358 * Specifically, it uses a NULL value instead of an empty string.
359 */
360 function strictIPs() {
361 return $this->mStrictIPs;
362 }
363
364 /**
365 * Returns true if this database uses timestamps rather than integers
366 */
367 function realTimestamps() {
368 return false;
369 }
370
371 /**
372 * Returns true if this database does an implicit sort when doing GROUP BY
373 */
374 function implicitGroupby() {
375 return true;
376 }
377
378 /**
379 * Returns true if this database can do a native search on IP columns
380 * e.g. this works as expected: .. WHERE rc_ip = '127.42.12.102/32';
381 */
382 function searchableIPs() {
383 return false;
384 }
385
386 /**#@+
387 * Get function
388 */
389 function lastQuery() { return $this->mLastQuery; }
390 function isOpen() { return $this->mOpened; }
391 /**#@-*/
392
393 function setFlag( $flag ) {
394 $this->mFlags |= $flag;
395 }
396
397 function clearFlag( $flag ) {
398 $this->mFlags &= ~$flag;
399 }
400
401 function getFlag( $flag ) {
402 return !!($this->mFlags & $flag);
403 }
404
405 /**
406 * General read-only accessor
407 */
408 function getProperty( $name ) {
409 return $this->$name;
410 }
411
412 #------------------------------------------------------------------------------
413 # Other functions
414 #------------------------------------------------------------------------------
415
416 /**@{{
417 * @param string $server database server host
418 * @param string $user database user name
419 * @param string $password database user password
420 * @param string $dbname database name
421 */
422
423 /**
424 * @param failFunction
425 * @param $flags
426 * @param $tablePrefix String: database table prefixes. By default use the prefix gave in LocalSettings.php
427 */
428 function __construct( $server = false, $user = false, $password = false, $dbName = false,
429 $failFunction = false, $flags = 0, $tablePrefix = 'get from global' ) {
430
431 global $wgOut, $wgDBprefix, $wgCommandLineMode;
432 # Can't get a reference if it hasn't been set yet
433 if ( !isset( $wgOut ) ) {
434 $wgOut = NULL;
435 }
436 $this->mOut =& $wgOut;
437
438 $this->mFailFunction = $failFunction;
439 $this->mFlags = $flags;
440
441 if ( $this->mFlags & DBO_DEFAULT ) {
442 if ( $wgCommandLineMode ) {
443 $this->mFlags &= ~DBO_TRX;
444 } else {
445 $this->mFlags |= DBO_TRX;
446 }
447 }
448
449 /*
450 // Faster read-only access
451 if ( wfReadOnly() ) {
452 $this->mFlags |= DBO_PERSISTENT;
453 $this->mFlags &= ~DBO_TRX;
454 }*/
455
456 /** Get the default table prefix*/
457 if ( $tablePrefix == 'get from global' ) {
458 $this->mTablePrefix = $wgDBprefix;
459 } else {
460 $this->mTablePrefix = $tablePrefix;
461 }
462
463 if ( $server ) {
464 $this->open( $server, $user, $password, $dbName );
465 }
466 }
467
468 /**
469 * @static
470 * @param failFunction
471 * @param $flags
472 */
473 static function newFromParams( $server, $user, $password, $dbName,
474 $failFunction = false, $flags = 0 )
475 {
476 return new Database( $server, $user, $password, $dbName, $failFunction, $flags );
477 }
478
479 /**
480 * Usually aborts on failure
481 * If the failFunction is set to a non-zero integer, returns success
482 */
483 function open( $server, $user, $password, $dbName ) {
484 global $wguname;
485 wfProfileIn( __METHOD__ );
486
487 # Test for missing mysql.so
488 # First try to load it
489 if (!@extension_loaded('mysql')) {
490 @dl('mysql.so');
491 }
492
493 # Fail now
494 # Otherwise we get a suppressed fatal error, which is very hard to track down
495 if ( !function_exists( 'mysql_connect' ) ) {
496 throw new DBConnectionError( $this, "MySQL functions missing, have you compiled PHP with the --with-mysql option?\n" );
497 }
498
499 $this->close();
500 $this->mServer = $server;
501 $this->mUser = $user;
502 $this->mPassword = $password;
503 $this->mDBname = $dbName;
504
505 $success = false;
506
507 wfProfileIn("dbconnect-$server");
508
509 # LIVE PATCH by Tim, ask Domas for why: retry loop
510 $this->mConn = false;
511 $max = 3;
512 for ( $i = 0; $i < $max && !$this->mConn; $i++ ) {
513 if ( $i > 1 ) {
514 usleep( 1000 );
515 }
516 if ( $this->mFlags & DBO_PERSISTENT ) {
517 @/**/$this->mConn = mysql_pconnect( $server, $user, $password );
518 } else {
519 # Create a new connection...
520 @/**/$this->mConn = mysql_connect( $server, $user, $password, true );
521 }
522 if ($this->mConn === false) {
523 $iplus = $i + 1;
524 #wfLogDBError("Connect loop error $iplus of $max ($server): " . mysql_errno() . " - " . mysql_error()."\n");
525 }
526 }
527
528 wfProfileOut("dbconnect-$server");
529
530 if ( $dbName != '' ) {
531 if ( $this->mConn !== false ) {
532 $success = @/**/mysql_select_db( $dbName, $this->mConn );
533 if ( !$success ) {
534 $error = "Error selecting database $dbName on server {$this->mServer} " .
535 "from client host {$wguname['nodename']}\n";
536 wfLogDBError(" Error selecting database $dbName on server {$this->mServer} \n");
537 wfDebug( $error );
538 }
539 } else {
540 wfDebug( "DB connection error\n" );
541 wfDebug( "Server: $server, User: $user, Password: " .
542 substr( $password, 0, 3 ) . "..., error: " . mysql_error() . "\n" );
543 $success = false;
544 }
545 } else {
546 # Delay USE query
547 $success = (bool)$this->mConn;
548 }
549
550 if ( $success ) {
551 global $wgDBmysql5;
552 if( $wgDBmysql5 ) {
553 // Tell the server we're communicating with it in UTF-8.
554 // This may engage various charset conversions.
555 $this->query( 'SET NAMES utf8' );
556 }
557 } else {
558 $this->reportConnectionError();
559 }
560
561 $this->mOpened = $success;
562 wfProfileOut( __METHOD__ );
563 return $success;
564 }
565 /**@}}*/
566
567 /**
568 * Closes a database connection.
569 * if it is open : commits any open transactions
570 *
571 * @return bool operation success. true if already closed.
572 */
573 function close()
574 {
575 $this->mOpened = false;
576 if ( $this->mConn ) {
577 if ( $this->trxLevel() ) {
578 $this->immediateCommit();
579 }
580 return mysql_close( $this->mConn );
581 } else {
582 return true;
583 }
584 }
585
586 /**
587 * @param string $error fallback error message, used if none is given by MySQL
588 */
589 function reportConnectionError( $error = 'Unknown error' ) {
590 $myError = $this->lastError();
591 if ( $myError ) {
592 $error = $myError;
593 }
594
595 if ( $this->mFailFunction ) {
596 # Legacy error handling method
597 if ( !is_int( $this->mFailFunction ) ) {
598 $ff = $this->mFailFunction;
599 $ff( $this, $error );
600 }
601 } else {
602 # New method
603 wfLogDBError( "Connection error: $error\n" );
604 throw new DBConnectionError( $this, $error );
605 }
606 }
607
608 /**
609 * Usually aborts on failure
610 * If errors are explicitly ignored, returns success
611 */
612 function query( $sql, $fname = '', $tempIgnore = false ) {
613 global $wgProfiling;
614
615 if ( $wgProfiling ) {
616 # generalizeSQL will probably cut down the query to reasonable
617 # logging size most of the time. The substr is really just a sanity check.
618
619 # Who's been wasting my precious column space? -- TS
620 #$profName = 'query: ' . $fname . ' ' . substr( Database::generalizeSQL( $sql ), 0, 255 );
621
622 if ( is_null( $this->getLBInfo( 'master' ) ) ) {
623 $queryProf = 'query: ' . substr( Database::generalizeSQL( $sql ), 0, 255 );
624 $totalProf = 'Database::query';
625 } else {
626 $queryProf = 'query-m: ' . substr( Database::generalizeSQL( $sql ), 0, 255 );
627 $totalProf = 'Database::query-master';
628 }
629 wfProfileIn( $totalProf );
630 wfProfileIn( $queryProf );
631 }
632
633 $this->mLastQuery = $sql;
634
635 # Add a comment for easy SHOW PROCESSLIST interpretation
636 if ( $fname ) {
637 $commentedSql = preg_replace('/\s/', " /* $fname */ ", $sql, 1);
638 } else {
639 $commentedSql = $sql;
640 }
641
642 # If DBO_TRX is set, start a transaction
643 if ( ( $this->mFlags & DBO_TRX ) && !$this->trxLevel() &&
644 $sql != 'BEGIN' && $sql != 'COMMIT' && $sql != 'ROLLBACK'
645 ) {
646 $this->begin();
647 }
648
649 if ( $this->debug() ) {
650 $sqlx = substr( $commentedSql, 0, 500 );
651 $sqlx = strtr( $sqlx, "\t\n", ' ' );
652 wfDebug( "SQL: $sqlx\n" );
653 }
654
655 # Do the query and handle errors
656 $ret = $this->doQuery( $commentedSql );
657
658 # Try reconnecting if the connection was lost
659 if ( false === $ret && ( $this->lastErrno() == 2013 || $this->lastErrno() == 2006 ) ) {
660 # Transaction is gone, like it or not
661 $this->mTrxLevel = 0;
662 wfDebug( "Connection lost, reconnecting...\n" );
663 if ( $this->ping() ) {
664 wfDebug( "Reconnected\n" );
665 $sqlx = substr( $commentedSql, 0, 500 );
666 $sqlx = strtr( $sqlx, "\t\n", ' ' );
667 global $wgRequestTime;
668 $elapsed = round( microtime(true) - $wgRequestTime, 3 );
669 wfLogDBError( "Connection lost and reconnected after {$elapsed}s, query: $sqlx\n" );
670 $ret = $this->doQuery( $commentedSql );
671 } else {
672 wfDebug( "Failed\n" );
673 }
674 }
675
676 if ( false === $ret ) {
677 $this->reportQueryError( $this->lastError(), $this->lastErrno(), $sql, $fname, $tempIgnore );
678 }
679
680 if ( $wgProfiling ) {
681 wfProfileOut( $queryProf );
682 wfProfileOut( $totalProf );
683 }
684 return $ret;
685 }
686
687 /**
688 * The DBMS-dependent part of query()
689 * @param string $sql SQL query.
690 */
691 function doQuery( $sql ) {
692 if( $this->bufferResults() ) {
693 $ret = mysql_query( $sql, $this->mConn );
694 } else {
695 $ret = mysql_unbuffered_query( $sql, $this->mConn );
696 }
697 return $ret;
698 }
699
700 /**
701 * @param $error
702 * @param $errno
703 * @param $sql
704 * @param string $fname
705 * @param bool $tempIgnore
706 */
707 function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false ) {
708 global $wgCommandLineMode;
709 # Ignore errors during error handling to avoid infinite recursion
710 $ignore = $this->ignoreErrors( true );
711 ++$this->mErrorCount;
712
713 if( $ignore || $tempIgnore ) {
714 wfDebug("SQL ERROR (ignored): $error\n");
715 $this->ignoreErrors( $ignore );
716 } else {
717 $sql1line = str_replace( "\n", "\\n", $sql );
718 wfLogDBError("$fname\t{$this->mServer}\t$errno\t$error\t$sql1line\n");
719 wfDebug("SQL ERROR: " . $error . "\n");
720 throw new DBQueryError( $this, $error, $errno, $sql, $fname );
721 }
722 }
723
724
725 /**
726 * Intended to be compatible with the PEAR::DB wrapper functions.
727 * http://pear.php.net/manual/en/package.database.db.intro-execute.php
728 *
729 * ? = scalar value, quoted as necessary
730 * ! = raw SQL bit (a function for instance)
731 * & = filename; reads the file and inserts as a blob
732 * (we don't use this though...)
733 */
734 function prepare( $sql, $func = 'Database::prepare' ) {
735 /* MySQL doesn't support prepared statements (yet), so just
736 pack up the query for reference. We'll manually replace
737 the bits later. */
738 return array( 'query' => $sql, 'func' => $func );
739 }
740
741 function freePrepared( $prepared ) {
742 /* No-op for MySQL */
743 }
744
745 /**
746 * Execute a prepared query with the various arguments
747 * @param string $prepared the prepared sql
748 * @param mixed $args Either an array here, or put scalars as varargs
749 */
750 function execute( $prepared, $args = null ) {
751 if( !is_array( $args ) ) {
752 # Pull the var args
753 $args = func_get_args();
754 array_shift( $args );
755 }
756 $sql = $this->fillPrepared( $prepared['query'], $args );
757 return $this->query( $sql, $prepared['func'] );
758 }
759
760 /**
761 * Prepare & execute an SQL statement, quoting and inserting arguments
762 * in the appropriate places.
763 * @param string $query
764 * @param string $args ...
765 */
766 function safeQuery( $query, $args = null ) {
767 $prepared = $this->prepare( $query, 'Database::safeQuery' );
768 if( !is_array( $args ) ) {
769 # Pull the var args
770 $args = func_get_args();
771 array_shift( $args );
772 }
773 $retval = $this->execute( $prepared, $args );
774 $this->freePrepared( $prepared );
775 return $retval;
776 }
777
778 /**
779 * For faking prepared SQL statements on DBs that don't support
780 * it directly.
781 * @param string $preparedSql - a 'preparable' SQL statement
782 * @param array $args - array of arguments to fill it with
783 * @return string executable SQL
784 */
785 function fillPrepared( $preparedQuery, $args ) {
786 reset( $args );
787 $this->preparedArgs =& $args;
788 return preg_replace_callback( '/(\\\\[?!&]|[?!&])/',
789 array( &$this, 'fillPreparedArg' ), $preparedQuery );
790 }
791
792 /**
793 * preg_callback func for fillPrepared()
794 * The arguments should be in $this->preparedArgs and must not be touched
795 * while we're doing this.
796 *
797 * @param array $matches
798 * @return string
799 * @private
800 */
801 function fillPreparedArg( $matches ) {
802 switch( $matches[1] ) {
803 case '\\?': return '?';
804 case '\\!': return '!';
805 case '\\&': return '&';
806 }
807 list( /* $n */ , $arg ) = each( $this->preparedArgs );
808 switch( $matches[1] ) {
809 case '?': return $this->addQuotes( $arg );
810 case '!': return $arg;
811 case '&':
812 # return $this->addQuotes( file_get_contents( $arg ) );
813 throw new DBUnexpectedError( $this, '& mode is not implemented. If it\'s really needed, uncomment the line above.' );
814 default:
815 throw new DBUnexpectedError( $this, 'Received invalid match. This should never happen!' );
816 }
817 }
818
819 /**#@+
820 * @param mixed $res A SQL result
821 */
822 /**
823 * Free a result object
824 */
825 function freeResult( $res ) {
826 if ( !@/**/mysql_free_result( $res ) ) {
827 throw new DBUnexpectedError( $this, "Unable to free MySQL result" );
828 }
829 }
830
831 /**
832 * Fetch the next row from the given result object, in object form
833 */
834 function fetchObject( $res ) {
835 @/**/$row = mysql_fetch_object( $res );
836 if( $this->lastErrno() ) {
837 throw new DBUnexpectedError( $this, 'Error in fetchObject(): ' . htmlspecialchars( $this->lastError() ) );
838 }
839 return $row;
840 }
841
842 /**
843 * Fetch the next row from the given result object
844 * Returns an array
845 */
846 function fetchRow( $res ) {
847 @/**/$row = mysql_fetch_array( $res );
848 if ( $this->lastErrno() ) {
849 throw new DBUnexpectedError( $this, 'Error in fetchRow(): ' . htmlspecialchars( $this->lastError() ) );
850 }
851 return $row;
852 }
853
854 /**
855 * Get the number of rows in a result object
856 */
857 function numRows( $res ) {
858 @/**/$n = mysql_num_rows( $res );
859 if( $this->lastErrno() ) {
860 throw new DBUnexpectedError( $this, 'Error in numRows(): ' . htmlspecialchars( $this->lastError() ) );
861 }
862 return $n;
863 }
864
865 /**
866 * Get the number of fields in a result object
867 * See documentation for mysql_num_fields()
868 */
869 function numFields( $res ) { return mysql_num_fields( $res ); }
870
871 /**
872 * Get a field name in a result object
873 * See documentation for mysql_field_name():
874 * http://www.php.net/mysql_field_name
875 */
876 function fieldName( $res, $n ) { return mysql_field_name( $res, $n ); }
877
878 /**
879 * Get the inserted value of an auto-increment row
880 *
881 * The value inserted should be fetched from nextSequenceValue()
882 *
883 * Example:
884 * $id = $dbw->nextSequenceValue('page_page_id_seq');
885 * $dbw->insert('page',array('page_id' => $id));
886 * $id = $dbw->insertId();
887 */
888 function insertId() { return mysql_insert_id( $this->mConn ); }
889
890 /**
891 * Change the position of the cursor in a result object
892 * See mysql_data_seek()
893 */
894 function dataSeek( $res, $row ) { return mysql_data_seek( $res, $row ); }
895
896 /**
897 * Get the last error number
898 * See mysql_errno()
899 */
900 function lastErrno() {
901 if ( $this->mConn ) {
902 return mysql_errno( $this->mConn );
903 } else {
904 return mysql_errno();
905 }
906 }
907
908 /**
909 * Get a description of the last error
910 * See mysql_error() for more details
911 */
912 function lastError() {
913 if ( $this->mConn ) {
914 # Even if it's non-zero, it can still be invalid
915 wfSuppressWarnings();
916 $error = mysql_error( $this->mConn );
917 if ( !$error ) {
918 $error = mysql_error();
919 }
920 wfRestoreWarnings();
921 } else {
922 $error = mysql_error();
923 }
924 if( $error ) {
925 $error .= ' (' . $this->mServer . ')';
926 }
927 return $error;
928 }
929 /**
930 * Get the number of rows affected by the last write query
931 * See mysql_affected_rows() for more details
932 */
933 function affectedRows() { return mysql_affected_rows( $this->mConn ); }
934 /**#@-*/ // end of template : @param $result
935
936 /**
937 * Simple UPDATE wrapper
938 * Usually aborts on failure
939 * If errors are explicitly ignored, returns success
940 *
941 * This function exists for historical reasons, Database::update() has a more standard
942 * calling convention and feature set
943 */
944 function set( $table, $var, $value, $cond, $fname = 'Database::set' )
945 {
946 $table = $this->tableName( $table );
947 $sql = "UPDATE $table SET $var = '" .
948 $this->strencode( $value ) . "' WHERE ($cond)";
949 return (bool)$this->query( $sql, $fname );
950 }
951
952 /**
953 * Simple SELECT wrapper, returns a single field, input must be encoded
954 * Usually aborts on failure
955 * If errors are explicitly ignored, returns FALSE on failure
956 */
957 function selectField( $table, $var, $cond='', $fname = 'Database::selectField', $options = array() ) {
958 if ( !is_array( $options ) ) {
959 $options = array( $options );
960 }
961 $options['LIMIT'] = 1;
962
963 $res = $this->select( $table, $var, $cond, $fname, $options );
964 if ( $res === false || !$this->numRows( $res ) ) {
965 return false;
966 }
967 $row = $this->fetchRow( $res );
968 if ( $row !== false ) {
969 $this->freeResult( $res );
970 return $row[0];
971 } else {
972 return false;
973 }
974 }
975
976 /**
977 * Returns an optional USE INDEX clause to go after the table, and a
978 * string to go at the end of the query
979 *
980 * @private
981 *
982 * @param array $options an associative array of options to be turned into
983 * an SQL query, valid keys are listed in the function.
984 * @return array
985 */
986 function makeSelectOptions( $options ) {
987 $tailOpts = '';
988 $startOpts = '';
989
990 $noKeyOptions = array();
991 foreach ( $options as $key => $option ) {
992 if ( is_numeric( $key ) ) {
993 $noKeyOptions[$option] = true;
994 }
995 }
996
997 if ( isset( $options['GROUP BY'] ) ) $tailOpts .= " GROUP BY {$options['GROUP BY']}";
998 if ( isset( $options['ORDER BY'] ) ) $tailOpts .= " ORDER BY {$options['ORDER BY']}";
999
1000 if (isset($options['LIMIT'])) {
1001 $tailOpts .= $this->limitResult('', $options['LIMIT'],
1002 isset($options['OFFSET']) ? $options['OFFSET'] : false);
1003 }
1004
1005 if ( isset( $noKeyOptions['FOR UPDATE'] ) ) $tailOpts .= ' FOR UPDATE';
1006 if ( isset( $noKeyOptions['LOCK IN SHARE MODE'] ) ) $tailOpts .= ' LOCK IN SHARE MODE';
1007 if ( isset( $noKeyOptions['DISTINCT'] ) && isset( $noKeyOptions['DISTINCTROW'] ) ) $startOpts .= 'DISTINCT';
1008
1009 # Various MySQL extensions
1010 if ( isset( $noKeyOptions['STRAIGHT_JOIN'] ) ) $startOpts .= ' /*! STRAIGHT_JOIN */';
1011 if ( isset( $noKeyOptions['HIGH_PRIORITY'] ) ) $startOpts .= ' HIGH_PRIORITY';
1012 if ( isset( $noKeyOptions['SQL_BIG_RESULT'] ) ) $startOpts .= ' SQL_BIG_RESULT';
1013 if ( isset( $noKeyOptions['SQL_BUFFER_RESULT'] ) ) $startOpts .= ' SQL_BUFFER_RESULT';
1014 if ( isset( $noKeyOptions['SQL_SMALL_RESULT'] ) ) $startOpts .= ' SQL_SMALL_RESULT';
1015 if ( isset( $noKeyOptions['SQL_CALC_FOUND_ROWS'] ) ) $startOpts .= ' SQL_CALC_FOUND_ROWS';
1016 if ( isset( $noKeyOptions['SQL_CACHE'] ) ) $startOpts .= ' SQL_CACHE';
1017 if ( isset( $noKeyOptions['SQL_NO_CACHE'] ) ) $startOpts .= ' SQL_NO_CACHE';
1018
1019 if ( isset( $options['USE INDEX'] ) && ! is_array( $options['USE INDEX'] ) ) {
1020 $useIndex = $this->useIndexClause( $options['USE INDEX'] );
1021 } else {
1022 $useIndex = '';
1023 }
1024
1025 return array( $startOpts, $useIndex, $tailOpts );
1026 }
1027
1028 /**
1029 * SELECT wrapper
1030 *
1031 * @param mixed $table Array or string, table name(s) (prefix auto-added)
1032 * @param mixed $vars Array or string, field name(s) to be retrieved
1033 * @param mixed $conds Array or string, condition(s) for WHERE
1034 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1035 * @param array $options Associative array of options (e.g. array('GROUP BY' => 'page_title')),
1036 * see Database::makeSelectOptions code for list of supported stuff
1037 * @return mixed Database result resource (feed to Database::fetchObject or whatever), or false on failure
1038 */
1039 function select( $table, $vars, $conds='', $fname = 'Database::select', $options = array() )
1040 {
1041 if( is_array( $vars ) ) {
1042 $vars = implode( ',', $vars );
1043 }
1044 if( !is_array( $options ) ) {
1045 $options = array( $options );
1046 }
1047 if( is_array( $table ) ) {
1048 if ( isset( $options['USE INDEX'] ) && is_array( $options['USE INDEX'] ) )
1049 $from = ' FROM ' . $this->tableNamesWithUseIndex( $table, $options['USE INDEX'] );
1050 else
1051 $from = ' FROM ' . implode( ',', array_map( array( &$this, 'tableName' ), $table ) );
1052 } elseif ($table!='') {
1053 if ($table{0}==' ') {
1054 $from = ' FROM ' . $table;
1055 } else {
1056 $from = ' FROM ' . $this->tableName( $table );
1057 }
1058 } else {
1059 $from = '';
1060 }
1061
1062 list( $startOpts, $useIndex, $tailOpts ) = $this->makeSelectOptions( $options );
1063
1064 if( !empty( $conds ) ) {
1065 if ( is_array( $conds ) ) {
1066 $conds = $this->makeList( $conds, LIST_AND );
1067 }
1068 $sql = "SELECT $startOpts $vars $from $useIndex WHERE $conds $tailOpts";
1069 } else {
1070 $sql = "SELECT $startOpts $vars $from $useIndex $tailOpts";
1071 }
1072
1073 return $this->query( $sql, $fname );
1074 }
1075
1076 /**
1077 * Single row SELECT wrapper
1078 * Aborts or returns FALSE on error
1079 *
1080 * $vars: the selected variables
1081 * $conds: a condition map, terms are ANDed together.
1082 * Items with numeric keys are taken to be literal conditions
1083 * Takes an array of selected variables, and a condition map, which is ANDed
1084 * e.g: selectRow( "page", array( "page_id" ), array( "page_namespace" =>
1085 * NS_MAIN, "page_title" => "Astronomy" ) ) would return an object where
1086 * $obj- >page_id is the ID of the Astronomy article
1087 *
1088 * @todo migrate documentation to phpdocumentor format
1089 */
1090 function selectRow( $table, $vars, $conds, $fname = 'Database::selectRow', $options = array() ) {
1091 $options['LIMIT'] = 1;
1092 $res = $this->select( $table, $vars, $conds, $fname, $options );
1093 if ( $res === false )
1094 return false;
1095 if ( !$this->numRows($res) ) {
1096 $this->freeResult($res);
1097 return false;
1098 }
1099 $obj = $this->fetchObject( $res );
1100 $this->freeResult( $res );
1101 return $obj;
1102
1103 }
1104
1105 /**
1106 * Removes most variables from an SQL query and replaces them with X or N for numbers.
1107 * It's only slightly flawed. Don't use for anything important.
1108 *
1109 * @param string $sql A SQL Query
1110 * @static
1111 */
1112 static function generalizeSQL( $sql ) {
1113 # This does the same as the regexp below would do, but in such a way
1114 # as to avoid crashing php on some large strings.
1115 # $sql = preg_replace ( "/'([^\\\\']|\\\\.)*'|\"([^\\\\\"]|\\\\.)*\"/", "'X'", $sql);
1116
1117 $sql = str_replace ( "\\\\", '', $sql);
1118 $sql = str_replace ( "\\'", '', $sql);
1119 $sql = str_replace ( "\\\"", '', $sql);
1120 $sql = preg_replace ("/'.*'/s", "'X'", $sql);
1121 $sql = preg_replace ('/".*"/s', "'X'", $sql);
1122
1123 # All newlines, tabs, etc replaced by single space
1124 $sql = preg_replace ( '/\s+/', ' ', $sql);
1125
1126 # All numbers => N
1127 $sql = preg_replace ('/-?[0-9]+/s', 'N', $sql);
1128
1129 return $sql;
1130 }
1131
1132 /**
1133 * Determines whether a field exists in a table
1134 * Usually aborts on failure
1135 * If errors are explicitly ignored, returns NULL on failure
1136 */
1137 function fieldExists( $table, $field, $fname = 'Database::fieldExists' ) {
1138 $table = $this->tableName( $table );
1139 $res = $this->query( 'DESCRIBE '.$table, $fname );
1140 if ( !$res ) {
1141 return NULL;
1142 }
1143
1144 $found = false;
1145
1146 while ( $row = $this->fetchObject( $res ) ) {
1147 if ( $row->Field == $field ) {
1148 $found = true;
1149 break;
1150 }
1151 }
1152 return $found;
1153 }
1154
1155 /**
1156 * Determines whether an index exists
1157 * Usually aborts on failure
1158 * If errors are explicitly ignored, returns NULL on failure
1159 */
1160 function indexExists( $table, $index, $fname = 'Database::indexExists' ) {
1161 $info = $this->indexInfo( $table, $index, $fname );
1162 if ( is_null( $info ) ) {
1163 return NULL;
1164 } else {
1165 return $info !== false;
1166 }
1167 }
1168
1169
1170 /**
1171 * Get information about an index into an object
1172 * Returns false if the index does not exist
1173 */
1174 function indexInfo( $table, $index, $fname = 'Database::indexInfo' ) {
1175 # SHOW INDEX works in MySQL 3.23.58, but SHOW INDEXES does not.
1176 # SHOW INDEX should work for 3.x and up:
1177 # http://dev.mysql.com/doc/mysql/en/SHOW_INDEX.html
1178 $table = $this->tableName( $table );
1179 $sql = 'SHOW INDEX FROM '.$table;
1180 $res = $this->query( $sql, $fname );
1181 if ( !$res ) {
1182 return NULL;
1183 }
1184
1185 $result = array();
1186 while ( $row = $this->fetchObject( $res ) ) {
1187 if ( $row->Key_name == $index ) {
1188 $result[] = $row;
1189 }
1190 }
1191 $this->freeResult($res);
1192
1193 return empty($result) ? false : $result;
1194 }
1195
1196 /**
1197 * Query whether a given table exists
1198 */
1199 function tableExists( $table ) {
1200 $table = $this->tableName( $table );
1201 $old = $this->ignoreErrors( true );
1202 $res = $this->query( "SELECT 1 FROM $table LIMIT 1" );
1203 $this->ignoreErrors( $old );
1204 if( $res ) {
1205 $this->freeResult( $res );
1206 return true;
1207 } else {
1208 return false;
1209 }
1210 }
1211
1212 /**
1213 * mysql_fetch_field() wrapper
1214 * Returns false if the field doesn't exist
1215 *
1216 * @param $table
1217 * @param $field
1218 */
1219 function fieldInfo( $table, $field ) {
1220 $table = $this->tableName( $table );
1221 $res = $this->query( "SELECT * FROM $table LIMIT 1" );
1222 $n = mysql_num_fields( $res );
1223 for( $i = 0; $i < $n; $i++ ) {
1224 $meta = mysql_fetch_field( $res, $i );
1225 if( $field == $meta->name ) {
1226 return $meta;
1227 }
1228 }
1229 return false;
1230 }
1231
1232 /**
1233 * mysql_field_type() wrapper
1234 */
1235 function fieldType( $res, $index ) {
1236 return mysql_field_type( $res, $index );
1237 }
1238
1239 /**
1240 * Determines if a given index is unique
1241 */
1242 function indexUnique( $table, $index ) {
1243 $indexInfo = $this->indexInfo( $table, $index );
1244 if ( !$indexInfo ) {
1245 return NULL;
1246 }
1247 return !$indexInfo[0]->Non_unique;
1248 }
1249
1250 /**
1251 * INSERT wrapper, inserts an array into a table
1252 *
1253 * $a may be a single associative array, or an array of these with numeric keys, for
1254 * multi-row insert.
1255 *
1256 * Usually aborts on failure
1257 * If errors are explicitly ignored, returns success
1258 */
1259 function insert( $table, $a, $fname = 'Database::insert', $options = array() ) {
1260 # No rows to insert, easy just return now
1261 if ( !count( $a ) ) {
1262 return true;
1263 }
1264
1265 $table = $this->tableName( $table );
1266 if ( !is_array( $options ) ) {
1267 $options = array( $options );
1268 }
1269 if ( isset( $a[0] ) && is_array( $a[0] ) ) {
1270 $multi = true;
1271 $keys = array_keys( $a[0] );
1272 } else {
1273 $multi = false;
1274 $keys = array_keys( $a );
1275 }
1276
1277 $sql = 'INSERT ' . implode( ' ', $options ) .
1278 " INTO $table (" . implode( ',', $keys ) . ') VALUES ';
1279
1280 if ( $multi ) {
1281 $first = true;
1282 foreach ( $a as $row ) {
1283 if ( $first ) {
1284 $first = false;
1285 } else {
1286 $sql .= ',';
1287 }
1288 $sql .= '(' . $this->makeList( $row ) . ')';
1289 }
1290 } else {
1291 $sql .= '(' . $this->makeList( $a ) . ')';
1292 }
1293 return (bool)$this->query( $sql, $fname );
1294 }
1295
1296 /**
1297 * Make UPDATE options for the Database::update function
1298 *
1299 * @private
1300 * @param array $options The options passed to Database::update
1301 * @return string
1302 */
1303 function makeUpdateOptions( $options ) {
1304 if( !is_array( $options ) ) {
1305 $options = array( $options );
1306 }
1307 $opts = array();
1308 if ( in_array( 'LOW_PRIORITY', $options ) )
1309 $opts[] = $this->lowPriorityOption();
1310 if ( in_array( 'IGNORE', $options ) )
1311 $opts[] = 'IGNORE';
1312 return implode(' ', $opts);
1313 }
1314
1315 /**
1316 * UPDATE wrapper, takes a condition array and a SET array
1317 *
1318 * @param string $table The table to UPDATE
1319 * @param array $values An array of values to SET
1320 * @param array $conds An array of conditions (WHERE). Use '*' to update all rows.
1321 * @param string $fname The Class::Function calling this function
1322 * (for the log)
1323 * @param array $options An array of UPDATE options, can be one or
1324 * more of IGNORE, LOW_PRIORITY
1325 */
1326 function update( $table, $values, $conds, $fname = 'Database::update', $options = array() ) {
1327 $table = $this->tableName( $table );
1328 $opts = $this->makeUpdateOptions( $options );
1329 $sql = "UPDATE $opts $table SET " . $this->makeList( $values, LIST_SET );
1330 if ( $conds != '*' ) {
1331 $sql .= " WHERE " . $this->makeList( $conds, LIST_AND );
1332 }
1333 $this->query( $sql, $fname );
1334 }
1335
1336 /**
1337 * Makes an encoded list of strings from an array
1338 * $mode:
1339 * LIST_COMMA - comma separated, no field names
1340 * LIST_AND - ANDed WHERE clause (without the WHERE)
1341 * LIST_OR - ORed WHERE clause (without the WHERE)
1342 * LIST_SET - comma separated with field names, like a SET clause
1343 * LIST_NAMES - comma separated field names
1344 */
1345 function makeList( $a, $mode = LIST_COMMA ) {
1346 if ( !is_array( $a ) ) {
1347 throw new DBUnexpectedError( $this, 'Database::makeList called with incorrect parameters' );
1348 }
1349
1350 $first = true;
1351 $list = '';
1352 foreach ( $a as $field => $value ) {
1353 if ( !$first ) {
1354 if ( $mode == LIST_AND ) {
1355 $list .= ' AND ';
1356 } elseif($mode == LIST_OR) {
1357 $list .= ' OR ';
1358 } else {
1359 $list .= ',';
1360 }
1361 } else {
1362 $first = false;
1363 }
1364 if ( ($mode == LIST_AND || $mode == LIST_OR) && is_numeric( $field ) ) {
1365 $list .= "($value)";
1366 } elseif ( ($mode == LIST_SET) && is_numeric( $field ) ) {
1367 $list .= "$value";
1368 } elseif ( ($mode == LIST_AND || $mode == LIST_OR) && is_array ($value) ) {
1369 $list .= $field." IN (".$this->makeList($value).") ";
1370 } else {
1371 if ( $mode == LIST_AND || $mode == LIST_OR || $mode == LIST_SET ) {
1372 $list .= "$field = ";
1373 }
1374 $list .= $mode == LIST_NAMES ? $value : $this->addQuotes( $value );
1375 }
1376 }
1377 return $list;
1378 }
1379
1380 /**
1381 * Change the current database
1382 */
1383 function selectDB( $db ) {
1384 $this->mDBname = $db;
1385 return mysql_select_db( $db, $this->mConn );
1386 }
1387
1388 /**
1389 * Format a table name ready for use in constructing an SQL query
1390 *
1391 * This does two important things: it quotes table names which as necessary,
1392 * and it adds a table prefix if there is one.
1393 *
1394 * All functions of this object which require a table name call this function
1395 * themselves. Pass the canonical name to such functions. This is only needed
1396 * when calling query() directly.
1397 *
1398 * @param string $name database table name
1399 */
1400 function tableName( $name ) {
1401 global $wgSharedDB;
1402 # Skip quoted literals
1403 if ( $name{0} != '`' ) {
1404 if ( $this->mTablePrefix !== '' && strpos( '.', $name ) === false ) {
1405 $name = "{$this->mTablePrefix}$name";
1406 }
1407 if ( isset( $wgSharedDB ) && "{$this->mTablePrefix}user" == $name ) {
1408 $name = "`$wgSharedDB`.`$name`";
1409 } else {
1410 # Standard quoting
1411 $name = "`$name`";
1412 }
1413 }
1414 return $name;
1415 }
1416
1417 /**
1418 * Fetch a number of table names into an array
1419 * This is handy when you need to construct SQL for joins
1420 *
1421 * Example:
1422 * extract($dbr->tableNames('user','watchlist'));
1423 * $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user
1424 * WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
1425 */
1426 public function tableNames() {
1427 $inArray = func_get_args();
1428 $retVal = array();
1429 foreach ( $inArray as $name ) {
1430 $retVal[$name] = $this->tableName( $name );
1431 }
1432 return $retVal;
1433 }
1434
1435 /**
1436 * @desc: Fetch a number of table names into an zero-indexed numerical array
1437 * This is handy when you need to construct SQL for joins
1438 *
1439 * Example:
1440 * list( $user, $watchlist ) = $dbr->tableNames('user','watchlist');
1441 * $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user
1442 * WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
1443 */
1444 public function tableNamesN() {
1445 $inArray = func_get_args();
1446 $retVal = array();
1447 foreach ( $inArray as $name ) {
1448 $retVal[] = $this->tableName( $name );
1449 }
1450 return $retVal;
1451 }
1452
1453 /**
1454 * @private
1455 */
1456 function tableNamesWithUseIndex( $tables, $use_index ) {
1457 $ret = array();
1458
1459 foreach ( $tables as $table )
1460 if ( @$use_index[$table] !== null )
1461 $ret[] = $this->tableName( $table ) . ' ' . $this->useIndexClause( implode( ',', (array)$use_index[$table] ) );
1462 else
1463 $ret[] = $this->tableName( $table );
1464
1465 return implode( ',', $ret );
1466 }
1467
1468 /**
1469 * Wrapper for addslashes()
1470 * @param string $s String to be slashed.
1471 * @return string slashed string.
1472 */
1473 function strencode( $s ) {
1474 return mysql_real_escape_string( $s, $this->mConn );
1475 }
1476
1477 /**
1478 * If it's a string, adds quotes and backslashes
1479 * Otherwise returns as-is
1480 */
1481 function addQuotes( $s ) {
1482 if ( is_null( $s ) ) {
1483 return 'NULL';
1484 } else {
1485 # This will also quote numeric values. This should be harmless,
1486 # and protects against weird problems that occur when they really
1487 # _are_ strings such as article titles and string->number->string
1488 # conversion is not 1:1.
1489 return "'" . $this->strencode( $s ) . "'";
1490 }
1491 }
1492
1493 /**
1494 * Escape string for safe LIKE usage
1495 */
1496 function escapeLike( $s ) {
1497 $s=$this->strencode( $s );
1498 $s=str_replace(array('%','_'),array('\%','\_'),$s);
1499 return $s;
1500 }
1501
1502 /**
1503 * Returns an appropriately quoted sequence value for inserting a new row.
1504 * MySQL has autoincrement fields, so this is just NULL. But the PostgreSQL
1505 * subclass will return an integer, and save the value for insertId()
1506 */
1507 function nextSequenceValue( $seqName ) {
1508 return NULL;
1509 }
1510
1511 /**
1512 * USE INDEX clause
1513 * PostgreSQL doesn't have them and returns ""
1514 */
1515 function useIndexClause( $index ) {
1516 return "FORCE INDEX ($index)";
1517 }
1518
1519 /**
1520 * REPLACE query wrapper
1521 * PostgreSQL simulates this with a DELETE followed by INSERT
1522 * $row is the row to insert, an associative array
1523 * $uniqueIndexes is an array of indexes. Each element may be either a
1524 * field name or an array of field names
1525 *
1526 * It may be more efficient to leave off unique indexes which are unlikely to collide.
1527 * However if you do this, you run the risk of encountering errors which wouldn't have
1528 * occurred in MySQL
1529 *
1530 * @todo migrate comment to phodocumentor format
1531 */
1532 function replace( $table, $uniqueIndexes, $rows, $fname = 'Database::replace' ) {
1533 $table = $this->tableName( $table );
1534
1535 # Single row case
1536 if ( !is_array( reset( $rows ) ) ) {
1537 $rows = array( $rows );
1538 }
1539
1540 $sql = "REPLACE INTO $table (" . implode( ',', array_keys( $rows[0] ) ) .') VALUES ';
1541 $first = true;
1542 foreach ( $rows as $row ) {
1543 if ( $first ) {
1544 $first = false;
1545 } else {
1546 $sql .= ',';
1547 }
1548 $sql .= '(' . $this->makeList( $row ) . ')';
1549 }
1550 return $this->query( $sql, $fname );
1551 }
1552
1553 /**
1554 * DELETE where the condition is a join
1555 * MySQL does this with a multi-table DELETE syntax, PostgreSQL does it with sub-selects
1556 *
1557 * For safety, an empty $conds will not delete everything. If you want to delete all rows where the
1558 * join condition matches, set $conds='*'
1559 *
1560 * DO NOT put the join condition in $conds
1561 *
1562 * @param string $delTable The table to delete from.
1563 * @param string $joinTable The other table.
1564 * @param string $delVar The variable to join on, in the first table.
1565 * @param string $joinVar The variable to join on, in the second table.
1566 * @param array $conds Condition array of field names mapped to variables, ANDed together in the WHERE clause
1567 */
1568 function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds, $fname = 'Database::deleteJoin' ) {
1569 if ( !$conds ) {
1570 throw new DBUnexpectedError( $this, 'Database::deleteJoin() called with empty $conds' );
1571 }
1572
1573 $delTable = $this->tableName( $delTable );
1574 $joinTable = $this->tableName( $joinTable );
1575 $sql = "DELETE $delTable FROM $delTable, $joinTable WHERE $delVar=$joinVar ";
1576 if ( $conds != '*' ) {
1577 $sql .= ' AND ' . $this->makeList( $conds, LIST_AND );
1578 }
1579
1580 return $this->query( $sql, $fname );
1581 }
1582
1583 /**
1584 * Returns the size of a text field, or -1 for "unlimited"
1585 */
1586 function textFieldSize( $table, $field ) {
1587 $table = $this->tableName( $table );
1588 $sql = "SHOW COLUMNS FROM $table LIKE \"$field\";";
1589 $res = $this->query( $sql, 'Database::textFieldSize' );
1590 $row = $this->fetchObject( $res );
1591 $this->freeResult( $res );
1592
1593 $m = array();
1594 if ( preg_match( '/\((.*)\)/', $row->Type, $m ) ) {
1595 $size = $m[1];
1596 } else {
1597 $size = -1;
1598 }
1599 return $size;
1600 }
1601
1602 /**
1603 * @return string Returns the text of the low priority option if it is supported, or a blank string otherwise
1604 */
1605 function lowPriorityOption() {
1606 return 'LOW_PRIORITY';
1607 }
1608
1609 /**
1610 * DELETE query wrapper
1611 *
1612 * Use $conds == "*" to delete all rows
1613 */
1614 function delete( $table, $conds, $fname = 'Database::delete' ) {
1615 if ( !$conds ) {
1616 throw new DBUnexpectedError( $this, 'Database::delete() called with no conditions' );
1617 }
1618 $table = $this->tableName( $table );
1619 $sql = "DELETE FROM $table";
1620 if ( $conds != '*' ) {
1621 $sql .= ' WHERE ' . $this->makeList( $conds, LIST_AND );
1622 }
1623 return $this->query( $sql, $fname );
1624 }
1625
1626 /**
1627 * INSERT SELECT wrapper
1628 * $varMap must be an associative array of the form array( 'dest1' => 'source1', ...)
1629 * Source items may be literals rather than field names, but strings should be quoted with Database::addQuotes()
1630 * $conds may be "*" to copy the whole table
1631 * srcTable may be an array of tables.
1632 */
1633 function insertSelect( $destTable, $srcTable, $varMap, $conds, $fname = 'Database::insertSelect',
1634 $insertOptions = array(), $selectOptions = array() )
1635 {
1636 $destTable = $this->tableName( $destTable );
1637 if ( is_array( $insertOptions ) ) {
1638 $insertOptions = implode( ' ', $insertOptions );
1639 }
1640 if( !is_array( $selectOptions ) ) {
1641 $selectOptions = array( $selectOptions );
1642 }
1643 list( $startOpts, $useIndex, $tailOpts ) = $this->makeSelectOptions( $selectOptions );
1644 if( is_array( $srcTable ) ) {
1645 $srcTable = implode( ',', array_map( array( &$this, 'tableName' ), $srcTable ) );
1646 } else {
1647 $srcTable = $this->tableName( $srcTable );
1648 }
1649 $sql = "INSERT $insertOptions INTO $destTable (" . implode( ',', array_keys( $varMap ) ) . ')' .
1650 " SELECT $startOpts " . implode( ',', $varMap ) .
1651 " FROM $srcTable $useIndex ";
1652 if ( $conds != '*' ) {
1653 $sql .= ' WHERE ' . $this->makeList( $conds, LIST_AND );
1654 }
1655 $sql .= " $tailOpts";
1656 return $this->query( $sql, $fname );
1657 }
1658
1659 /**
1660 * Construct a LIMIT query with optional offset
1661 * This is used for query pages
1662 * $sql string SQL query we will append the limit too
1663 * $limit integer the SQL limit
1664 * $offset integer the SQL offset (default false)
1665 */
1666 function limitResult($sql, $limit, $offset=false) {
1667 if( !is_numeric($limit) ) {
1668 throw new DBUnexpectedError( $this, "Invalid non-numeric limit passed to limitResult()\n" );
1669 }
1670 return " $sql LIMIT "
1671 . ( (is_numeric($offset) && $offset != 0) ? "{$offset}," : "" )
1672 . "{$limit} ";
1673 }
1674 function limitResultForUpdate($sql, $num) {
1675 return $this->limitResult($sql, $num, 0);
1676 }
1677
1678 /**
1679 * Returns an SQL expression for a simple conditional.
1680 * Uses IF on MySQL.
1681 *
1682 * @param string $cond SQL expression which will result in a boolean value
1683 * @param string $trueVal SQL expression to return if true
1684 * @param string $falseVal SQL expression to return if false
1685 * @return string SQL fragment
1686 */
1687 function conditional( $cond, $trueVal, $falseVal ) {
1688 return " IF($cond, $trueVal, $falseVal) ";
1689 }
1690
1691 /**
1692 * Determines if the last failure was due to a deadlock
1693 */
1694 function wasDeadlock() {
1695 return $this->lastErrno() == 1213;
1696 }
1697
1698 /**
1699 * Perform a deadlock-prone transaction.
1700 *
1701 * This function invokes a callback function to perform a set of write
1702 * queries. If a deadlock occurs during the processing, the transaction
1703 * will be rolled back and the callback function will be called again.
1704 *
1705 * Usage:
1706 * $dbw->deadlockLoop( callback, ... );
1707 *
1708 * Extra arguments are passed through to the specified callback function.
1709 *
1710 * Returns whatever the callback function returned on its successful,
1711 * iteration, or false on error, for example if the retry limit was
1712 * reached.
1713 */
1714 function deadlockLoop() {
1715 $myFname = 'Database::deadlockLoop';
1716
1717 $this->begin();
1718 $args = func_get_args();
1719 $function = array_shift( $args );
1720 $oldIgnore = $this->ignoreErrors( true );
1721 $tries = DEADLOCK_TRIES;
1722 if ( is_array( $function ) ) {
1723 $fname = $function[0];
1724 } else {
1725 $fname = $function;
1726 }
1727 do {
1728 $retVal = call_user_func_array( $function, $args );
1729 $error = $this->lastError();
1730 $errno = $this->lastErrno();
1731 $sql = $this->lastQuery();
1732
1733 if ( $errno ) {
1734 if ( $this->wasDeadlock() ) {
1735 # Retry
1736 usleep( mt_rand( DEADLOCK_DELAY_MIN, DEADLOCK_DELAY_MAX ) );
1737 } else {
1738 $this->reportQueryError( $error, $errno, $sql, $fname );
1739 }
1740 }
1741 } while( $this->wasDeadlock() && --$tries > 0 );
1742 $this->ignoreErrors( $oldIgnore );
1743 if ( $tries <= 0 ) {
1744 $this->query( 'ROLLBACK', $myFname );
1745 $this->reportQueryError( $error, $errno, $sql, $fname );
1746 return false;
1747 } else {
1748 $this->query( 'COMMIT', $myFname );
1749 return $retVal;
1750 }
1751 }
1752
1753 /**
1754 * Do a SELECT MASTER_POS_WAIT()
1755 *
1756 * @param string $file the binlog file
1757 * @param string $pos the binlog position
1758 * @param integer $timeout the maximum number of seconds to wait for synchronisation
1759 */
1760 function masterPosWait( $file, $pos, $timeout ) {
1761 $fname = 'Database::masterPosWait';
1762 wfProfileIn( $fname );
1763
1764
1765 # Commit any open transactions
1766 $this->immediateCommit();
1767
1768 # Call doQuery() directly, to avoid opening a transaction if DBO_TRX is set
1769 $encFile = $this->strencode( $file );
1770 $sql = "SELECT MASTER_POS_WAIT('$encFile', $pos, $timeout)";
1771 $res = $this->doQuery( $sql );
1772 if ( $res && $row = $this->fetchRow( $res ) ) {
1773 $this->freeResult( $res );
1774 wfProfileOut( $fname );
1775 return $row[0];
1776 } else {
1777 wfProfileOut( $fname );
1778 return false;
1779 }
1780 }
1781
1782 /**
1783 * Get the position of the master from SHOW SLAVE STATUS
1784 */
1785 function getSlavePos() {
1786 $res = $this->query( 'SHOW SLAVE STATUS', 'Database::getSlavePos' );
1787 $row = $this->fetchObject( $res );
1788 if ( $row ) {
1789 return array( $row->Master_Log_File, $row->Read_Master_Log_Pos );
1790 } else {
1791 return array( false, false );
1792 }
1793 }
1794
1795 /**
1796 * Get the position of the master from SHOW MASTER STATUS
1797 */
1798 function getMasterPos() {
1799 $res = $this->query( 'SHOW MASTER STATUS', 'Database::getMasterPos' );
1800 $row = $this->fetchObject( $res );
1801 if ( $row ) {
1802 return array( $row->File, $row->Position );
1803 } else {
1804 return array( false, false );
1805 }
1806 }
1807
1808 /**
1809 * Begin a transaction, committing any previously open transaction
1810 */
1811 function begin( $fname = 'Database::begin' ) {
1812 $this->query( 'BEGIN', $fname );
1813 $this->mTrxLevel = 1;
1814 }
1815
1816 /**
1817 * End a transaction
1818 */
1819 function commit( $fname = 'Database::commit' ) {
1820 $this->query( 'COMMIT', $fname );
1821 $this->mTrxLevel = 0;
1822 }
1823
1824 /**
1825 * Rollback a transaction
1826 */
1827 function rollback( $fname = 'Database::rollback' ) {
1828 $this->query( 'ROLLBACK', $fname );
1829 $this->mTrxLevel = 0;
1830 }
1831
1832 /**
1833 * Begin a transaction, committing any previously open transaction
1834 * @deprecated use begin()
1835 */
1836 function immediateBegin( $fname = 'Database::immediateBegin' ) {
1837 $this->begin();
1838 }
1839
1840 /**
1841 * Commit transaction, if one is open
1842 * @deprecated use commit()
1843 */
1844 function immediateCommit( $fname = 'Database::immediateCommit' ) {
1845 $this->commit();
1846 }
1847
1848 /**
1849 * Return MW-style timestamp used for MySQL schema
1850 */
1851 function timestamp( $ts=0 ) {
1852 return wfTimestamp(TS_MW,$ts);
1853 }
1854
1855 /**
1856 * Local database timestamp format or null
1857 */
1858 function timestampOrNull( $ts = null ) {
1859 if( is_null( $ts ) ) {
1860 return null;
1861 } else {
1862 return $this->timestamp( $ts );
1863 }
1864 }
1865
1866 /**
1867 * @todo document
1868 */
1869 function resultObject( $result ) {
1870 if( empty( $result ) ) {
1871 return NULL;
1872 } else {
1873 return new ResultWrapper( $this, $result );
1874 }
1875 }
1876
1877 /**
1878 * Return aggregated value alias
1879 */
1880 function aggregateValue ($valuedata,$valuename='value') {
1881 return $valuename;
1882 }
1883
1884 /**
1885 * @return string wikitext of a link to the server software's web site
1886 */
1887 function getSoftwareLink() {
1888 return "[http://www.mysql.com/ MySQL]";
1889 }
1890
1891 /**
1892 * @return string Version information from the database
1893 */
1894 function getServerVersion() {
1895 return mysql_get_server_info( $this->mConn );
1896 }
1897
1898 /**
1899 * Ping the server and try to reconnect if it there is no connection
1900 */
1901 function ping() {
1902 if( function_exists( 'mysql_ping' ) ) {
1903 return mysql_ping( $this->mConn );
1904 } else {
1905 wfDebug( "Tried to call mysql_ping but this is ancient PHP version. Faking it!\n" );
1906 return true;
1907 }
1908 }
1909
1910 /**
1911 * Get slave lag.
1912 * At the moment, this will only work if the DB user has the PROCESS privilege
1913 */
1914 function getLag() {
1915 $res = $this->query( 'SHOW PROCESSLIST' );
1916 # Find slave SQL thread. Assumed to be the second one running, which is a bit
1917 # dubious, but unfortunately there's no easy rigorous way
1918 while ( $row = $this->fetchObject( $res ) ) {
1919 /* This should work for most situations - when default db
1920 * for thread is not specified, it had no events executed,
1921 * and therefore it doesn't know yet how lagged it is.
1922 *
1923 * Relay log I/O thread does not select databases.
1924 */
1925 if ( $row->User == 'system user' &&
1926 $row->State != 'Waiting for master to send event' &&
1927 $row->State != 'Connecting to master' &&
1928 $row->State != 'Queueing master event to the relay log' &&
1929 $row->State != 'Waiting for master update' &&
1930 $row->State != 'Requesting binlog dump'
1931 ) {
1932 # This is it, return the time (except -ve)
1933 if ( $row->Time > 0x7fffffff ) {
1934 return false;
1935 } else {
1936 return $row->Time;
1937 }
1938 }
1939 }
1940 return false;
1941 }
1942
1943 /**
1944 * Get status information from SHOW STATUS in an associative array
1945 */
1946 function getStatus($which="%") {
1947 $res = $this->query( "SHOW STATUS LIKE '{$which}'" );
1948 $status = array();
1949 while ( $row = $this->fetchObject( $res ) ) {
1950 $status[$row->Variable_name] = $row->Value;
1951 }
1952 return $status;
1953 }
1954
1955 /**
1956 * Return the maximum number of items allowed in a list, or 0 for unlimited.
1957 */
1958 function maxListLen() {
1959 return 0;
1960 }
1961
1962 function encodeBlob($b) {
1963 return $b;
1964 }
1965
1966 function decodeBlob($b) {
1967 return $b;
1968 }
1969
1970 /**
1971 * Read and execute SQL commands from a file.
1972 * Returns true on success, error string on failure
1973 */
1974 function sourceFile( $filename ) {
1975 $fp = fopen( $filename, 'r' );
1976 if ( false === $fp ) {
1977 return "Could not open \"{$filename}\".\n";
1978 }
1979
1980 $cmd = "";
1981 $done = false;
1982 $dollarquote = false;
1983
1984 while ( ! feof( $fp ) ) {
1985 $line = trim( fgets( $fp, 1024 ) );
1986 $sl = strlen( $line ) - 1;
1987
1988 if ( $sl < 0 ) { continue; }
1989 if ( '-' == $line{0} && '-' == $line{1} ) { continue; }
1990
1991 ## Allow dollar quoting for function declarations
1992 if (substr($line,0,4) == '$mw$') {
1993 if ($dollarquote) {
1994 $dollarquote = false;
1995 $done = true;
1996 }
1997 else {
1998 $dollarquote = true;
1999 }
2000 }
2001 else if (!$dollarquote) {
2002 if ( ';' == $line{$sl} && ($sl < 2 || ';' != $line{$sl - 1})) {
2003 $done = true;
2004 $line = substr( $line, 0, $sl );
2005 }
2006 }
2007
2008 if ( '' != $cmd ) { $cmd .= ' '; }
2009 $cmd .= "$line\n";
2010
2011 if ( $done ) {
2012 $cmd = str_replace(';;', ";", $cmd);
2013 $cmd = $this->replaceVars( $cmd );
2014 $res = $this->query( $cmd, 'dbsource', true );
2015
2016 if ( false === $res ) {
2017 $err = $this->lastError();
2018 return "Query \"{$cmd}\" failed with error code \"$err\".\n";
2019 }
2020
2021 $cmd = '';
2022 $done = false;
2023 }
2024 }
2025 fclose( $fp );
2026 return true;
2027 }
2028
2029 /**
2030 * Replace variables in sourced SQL
2031 */
2032 protected function replaceVars( $ins ) {
2033 $varnames = array(
2034 'wgDBserver', 'wgDBname', 'wgDBintlname', 'wgDBuser',
2035 'wgDBpassword', 'wgDBsqluser', 'wgDBsqlpassword',
2036 'wgDBadminuser', 'wgDBadminpassword',
2037 );
2038
2039 // Ordinary variables
2040 foreach ( $varnames as $var ) {
2041 if( isset( $GLOBALS[$var] ) ) {
2042 $val = addslashes( $GLOBALS[$var] ); // FIXME: safety check?
2043 $ins = str_replace( '{$' . $var . '}', $val, $ins );
2044 $ins = str_replace( '/*$' . $var . '*/`', '`' . $val, $ins );
2045 $ins = str_replace( '/*$' . $var . '*/', $val, $ins );
2046 }
2047 }
2048
2049 // Table prefixes
2050 $ins = preg_replace_callback( '/\/\*(?:\$wgDBprefix|_)\*\/([a-z_]*)/',
2051 array( &$this, 'tableNameCallback' ), $ins );
2052 return $ins;
2053 }
2054
2055 /**
2056 * Table name callback
2057 * @private
2058 */
2059 protected function tableNameCallback( $matches ) {
2060 return $this->tableName( $matches[1] );
2061 }
2062
2063 }
2064
2065 /**
2066 * Database abstraction object for mySQL
2067 * Inherit all methods and properties of Database::Database()
2068 *
2069 * @see Database
2070 */
2071 class DatabaseMysql extends Database {
2072 # Inherit all
2073 }
2074
2075
2076 /**
2077 * Result wrapper for grabbing data queried by someone else
2078 *
2079 */
2080 class ResultWrapper {
2081 var $db, $result;
2082
2083 /**
2084 * @todo document
2085 */
2086 function ResultWrapper( &$database, $result ) {
2087 $this->db =& $database;
2088 $this->result =& $result;
2089 }
2090
2091 /**
2092 * @todo document
2093 */
2094 function numRows() {
2095 return $this->db->numRows( $this->result );
2096 }
2097
2098 /**
2099 * @todo document
2100 */
2101 function fetchObject() {
2102 return $this->db->fetchObject( $this->result );
2103 }
2104
2105 /**
2106 * @todo document
2107 */
2108 function fetchRow() {
2109 return $this->db->fetchRow( $this->result );
2110 }
2111
2112 /**
2113 * @todo document
2114 */
2115 function free() {
2116 $this->db->freeResult( $this->result );
2117 unset( $this->result );
2118 unset( $this->db );
2119 }
2120
2121 function seek( $row ) {
2122 $this->db->dataSeek( $this->result, $row );
2123 }
2124
2125 function rewind() {
2126 if ($this->numRows()) {
2127 $this->db->dataSeek($this->result, 0);
2128 }
2129 }
2130
2131 }
2132
2133 ?>