Merge "rdbms: Add ATOMIC_CANCELABLE flag for micro-optimization"
[lhc/web/wiklou.git] / includes / libs / rdbms / database / IDatabase.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20 namespace Wikimedia\Rdbms;
21
22 use InvalidArgumentException;
23 use Wikimedia\ScopedCallback;
24 use RuntimeException;
25 use UnexpectedValueException;
26 use stdClass;
27
28 /**
29 * @defgroup Database Database
30 * This group deals with database interface functions
31 * and query specifics/optimisations.
32 */
33 /**
34 * Basic database interface for live and lazy-loaded relation database handles
35 *
36 * @note: IDatabase and DBConnRef should be updated to reflect any changes
37 * @ingroup Database
38 */
39 interface IDatabase {
40 /** @var int Callback triggered immediately due to no active transaction */
41 const TRIGGER_IDLE = 1;
42 /** @var int Callback triggered by COMMIT */
43 const TRIGGER_COMMIT = 2;
44 /** @var int Callback triggered by ROLLBACK */
45 const TRIGGER_ROLLBACK = 3;
46
47 /** @var string Transaction is requested by regular caller outside of the DB layer */
48 const TRANSACTION_EXPLICIT = '';
49 /** @var string Transaction is requested internally via DBO_TRX/startAtomic() */
50 const TRANSACTION_INTERNAL = 'implicit';
51
52 /** @var string Atomic section is not cancelable */
53 const ATOMIC_NOT_CANCELABLE = '';
54 /** @var string Atomic section is cancelable */
55 const ATOMIC_CANCELABLE = 'cancelable';
56
57 /** @var string Transaction operation comes from service managing all DBs */
58 const FLUSHING_ALL_PEERS = 'flush';
59 /** @var string Transaction operation comes from the database class internally */
60 const FLUSHING_INTERNAL = 'flush';
61
62 /** @var string Do not remember the prior flags */
63 const REMEMBER_NOTHING = '';
64 /** @var string Remember the prior flags */
65 const REMEMBER_PRIOR = 'remember';
66 /** @var string Restore to the prior flag state */
67 const RESTORE_PRIOR = 'prior';
68 /** @var string Restore to the initial flag state */
69 const RESTORE_INITIAL = 'initial';
70
71 /** @var string Estimate total time (RTT, scanning, waiting on locks, applying) */
72 const ESTIMATE_TOTAL = 'total';
73 /** @var string Estimate time to apply (scanning, applying) */
74 const ESTIMATE_DB_APPLY = 'apply';
75
76 /** @var int Combine list with comma delimeters */
77 const LIST_COMMA = 0;
78 /** @var int Combine list with AND clauses */
79 const LIST_AND = 1;
80 /** @var int Convert map into a SET clause */
81 const LIST_SET = 2;
82 /** @var int Treat as field name and do not apply value escaping */
83 const LIST_NAMES = 3;
84 /** @var int Combine list with OR clauses */
85 const LIST_OR = 4;
86
87 /** @var int Enable debug logging */
88 const DBO_DEBUG = 1;
89 /** @var int Disable query buffering (only one result set can be iterated at a time) */
90 const DBO_NOBUFFER = 2;
91 /** @var int Ignore query errors (internal use only!) */
92 const DBO_IGNORE = 4;
93 /** @var int Autoatically start transaction on first query (work with ILoadBalancer rounds) */
94 const DBO_TRX = 8;
95 /** @var int Use DBO_TRX in non-CLI mode */
96 const DBO_DEFAULT = 16;
97 /** @var int Use DB persistent connections if possible */
98 const DBO_PERSISTENT = 32;
99 /** @var int DBA session mode; mostly for Oracle */
100 const DBO_SYSDBA = 64;
101 /** @var int Schema file mode; mostly for Oracle */
102 const DBO_DDLMODE = 128;
103 /** @var int Enable SSL/TLS in connection protocol */
104 const DBO_SSL = 256;
105 /** @var int Enable compression in connection protocol */
106 const DBO_COMPRESS = 512;
107
108 /**
109 * A string describing the current software version, and possibly
110 * other details in a user-friendly way. Will be listed on Special:Version, etc.
111 * Use getServerVersion() to get machine-friendly information.
112 *
113 * @return string Version information from the database server
114 */
115 public function getServerInfo();
116
117 /**
118 * Turns buffering of SQL result sets on (true) or off (false). Default is "on".
119 *
120 * Unbuffered queries are very troublesome in MySQL:
121 *
122 * - If another query is executed while the first query is being read
123 * out, the first query is killed. This means you can't call normal
124 * Database functions while you are reading an unbuffered query result
125 * from a normal Database connection.
126 *
127 * - Unbuffered queries cause the MySQL server to use large amounts of
128 * memory and to hold broad locks which block other queries.
129 *
130 * If you want to limit client-side memory, it's almost always better to
131 * split up queries into batches using a LIMIT clause than to switch off
132 * buffering.
133 *
134 * @param null|bool $buffer
135 * @return null|bool The previous value of the flag
136 */
137 public function bufferResults( $buffer = null );
138
139 /**
140 * Gets the current transaction level.
141 *
142 * Historically, transactions were allowed to be "nested". This is no
143 * longer supported, so this function really only returns a boolean.
144 *
145 * @return int The previous value
146 */
147 public function trxLevel();
148
149 /**
150 * Get the UNIX timestamp of the time that the transaction was established
151 *
152 * This can be used to reason about the staleness of SELECT data
153 * in REPEATABLE-READ transaction isolation level.
154 *
155 * @return float|null Returns null if there is not active transaction
156 * @since 1.25
157 */
158 public function trxTimestamp();
159
160 /**
161 * @return bool Whether an explicit transaction or atomic sections are still open
162 * @since 1.28
163 */
164 public function explicitTrxActive();
165
166 /**
167 * Get/set the table prefix.
168 * @param string $prefix The table prefix to set, or omitted to leave it unchanged.
169 * @return string The previous table prefix.
170 */
171 public function tablePrefix( $prefix = null );
172
173 /**
174 * Get/set the db schema.
175 * @param string $schema The database schema to set, or omitted to leave it unchanged.
176 * @return string The previous db schema.
177 */
178 public function dbSchema( $schema = null );
179
180 /**
181 * Get properties passed down from the server info array of the load
182 * balancer.
183 *
184 * @param string $name The entry of the info array to get, or null to get the
185 * whole array
186 *
187 * @return array|mixed|null
188 */
189 public function getLBInfo( $name = null );
190
191 /**
192 * Set the LB info array, or a member of it. If called with one parameter,
193 * the LB info array is set to that parameter. If it is called with two
194 * parameters, the member with the given name is set to the given value.
195 *
196 * @param string $name
197 * @param array $value
198 */
199 public function setLBInfo( $name, $value = null );
200
201 /**
202 * Set a lazy-connecting DB handle to the master DB (for replication status purposes)
203 *
204 * @param IDatabase $conn
205 * @since 1.27
206 */
207 public function setLazyMasterHandle( IDatabase $conn );
208
209 /**
210 * Returns true if this database does an implicit sort when doing GROUP BY
211 *
212 * @return bool
213 * @deprecated Since 1.30; only use grouped or aggregated fields in the SELECT
214 */
215 public function implicitGroupby();
216
217 /**
218 * Returns true if this database does an implicit order by when the column has an index
219 * For example: SELECT page_title FROM page LIMIT 1
220 *
221 * @return bool
222 */
223 public function implicitOrderby();
224
225 /**
226 * Return the last query that went through IDatabase::query()
227 * @return string
228 */
229 public function lastQuery();
230
231 /**
232 * Returns true if the connection may have been used for write queries.
233 * Should return true if unsure.
234 *
235 * @return bool
236 */
237 public function doneWrites();
238
239 /**
240 * Returns the last time the connection may have been used for write queries.
241 * Should return a timestamp if unsure.
242 *
243 * @return int|float UNIX timestamp or false
244 * @since 1.24
245 */
246 public function lastDoneWrites();
247
248 /**
249 * @return bool Whether there is a transaction open with possible write queries
250 * @since 1.27
251 */
252 public function writesPending();
253
254 /**
255 * Returns true if there is a transaction open with possible write
256 * queries or transaction pre-commit/idle callbacks waiting on it to finish.
257 * This does *not* count recurring callbacks, e.g. from setTransactionListener().
258 *
259 * @return bool
260 */
261 public function writesOrCallbacksPending();
262
263 /**
264 * Get the time spend running write queries for this transaction
265 *
266 * High times could be due to scanning, updates, locking, and such
267 *
268 * @param string $type IDatabase::ESTIMATE_* constant [default: ESTIMATE_ALL]
269 * @return float|bool Returns false if not transaction is active
270 * @since 1.26
271 */
272 public function pendingWriteQueryDuration( $type = self::ESTIMATE_TOTAL );
273
274 /**
275 * Get the list of method names that did write queries for this transaction
276 *
277 * @return array
278 * @since 1.27
279 */
280 public function pendingWriteCallers();
281
282 /**
283 * Get the number of affected rows from pending write queries
284 *
285 * @return int
286 * @since 1.30
287 */
288 public function pendingWriteRowsAffected();
289
290 /**
291 * Is a connection to the database open?
292 * @return bool
293 */
294 public function isOpen();
295
296 /**
297 * Set a flag for this connection
298 *
299 * @param int $flag DBO_* constants from Defines.php:
300 * - DBO_DEBUG: output some debug info (same as debug())
301 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
302 * - DBO_TRX: automatically start transactions
303 * - DBO_DEFAULT: automatically sets DBO_TRX if not in command line mode
304 * and removes it in command line mode
305 * - DBO_PERSISTENT: use persistant database connection
306 * @param string $remember IDatabase::REMEMBER_* constant [default: REMEMBER_NOTHING]
307 */
308 public function setFlag( $flag, $remember = self::REMEMBER_NOTHING );
309
310 /**
311 * Clear a flag for this connection
312 *
313 * @param int $flag DBO_* constants from Defines.php:
314 * - DBO_DEBUG: output some debug info (same as debug())
315 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
316 * - DBO_TRX: automatically start transactions
317 * - DBO_DEFAULT: automatically sets DBO_TRX if not in command line mode
318 * and removes it in command line mode
319 * - DBO_PERSISTENT: use persistant database connection
320 * @param string $remember IDatabase::REMEMBER_* constant [default: REMEMBER_NOTHING]
321 */
322 public function clearFlag( $flag, $remember = self::REMEMBER_NOTHING );
323
324 /**
325 * Restore the flags to their prior state before the last setFlag/clearFlag call
326 *
327 * @param string $state IDatabase::RESTORE_* constant. [default: RESTORE_PRIOR]
328 * @since 1.28
329 */
330 public function restoreFlags( $state = self::RESTORE_PRIOR );
331
332 /**
333 * Returns a boolean whether the flag $flag is set for this connection
334 *
335 * @param int $flag DBO_* constants from Defines.php:
336 * - DBO_DEBUG: output some debug info (same as debug())
337 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
338 * - DBO_TRX: automatically start transactions
339 * - DBO_PERSISTENT: use persistant database connection
340 * @return bool
341 */
342 public function getFlag( $flag );
343
344 /**
345 * @return string
346 */
347 public function getDomainID();
348
349 /**
350 * Alias for getDomainID()
351 *
352 * @return string
353 * @deprecated 1.30
354 */
355 public function getWikiID();
356
357 /**
358 * Get the type of the DBMS, as it appears in $wgDBtype.
359 *
360 * @return string
361 */
362 public function getType();
363
364 /**
365 * Open a new connection to the database (closing any existing one)
366 *
367 * @param string $server Database server host
368 * @param string $user Database user name
369 * @param string $password Database user password
370 * @param string $dbName Database name
371 * @return bool
372 * @throws DBConnectionError
373 */
374 public function open( $server, $user, $password, $dbName );
375
376 /**
377 * Fetch the next row from the given result object, in object form.
378 * Fields can be retrieved with $row->fieldname, with fields acting like
379 * member variables.
380 * If no more rows are available, false is returned.
381 *
382 * @param IResultWrapper|stdClass $res Object as returned from IDatabase::query(), etc.
383 * @return stdClass|bool
384 * @throws DBUnexpectedError Thrown if the database returns an error
385 */
386 public function fetchObject( $res );
387
388 /**
389 * Fetch the next row from the given result object, in associative array
390 * form. Fields are retrieved with $row['fieldname'].
391 * If no more rows are available, false is returned.
392 *
393 * @param IResultWrapper $res Result object as returned from IDatabase::query(), etc.
394 * @return array|bool
395 * @throws DBUnexpectedError Thrown if the database returns an error
396 */
397 public function fetchRow( $res );
398
399 /**
400 * Get the number of rows in a result object
401 *
402 * @param mixed $res A SQL result
403 * @return int
404 */
405 public function numRows( $res );
406
407 /**
408 * Get the number of fields in a result object
409 * @see https://secure.php.net/mysql_num_fields
410 *
411 * @param mixed $res A SQL result
412 * @return int
413 */
414 public function numFields( $res );
415
416 /**
417 * Get a field name in a result object
418 * @see https://secure.php.net/mysql_field_name
419 *
420 * @param mixed $res A SQL result
421 * @param int $n
422 * @return string
423 */
424 public function fieldName( $res, $n );
425
426 /**
427 * Get the inserted value of an auto-increment row
428 *
429 * This should only be called after an insert that used an auto-incremented
430 * value. If no such insert was previously done in the current database
431 * session, the return value is undefined.
432 *
433 * @return int
434 */
435 public function insertId();
436
437 /**
438 * Change the position of the cursor in a result object
439 * @see https://secure.php.net/mysql_data_seek
440 *
441 * @param mixed $res A SQL result
442 * @param int $row
443 */
444 public function dataSeek( $res, $row );
445
446 /**
447 * Get the last error number
448 * @see https://secure.php.net/mysql_errno
449 *
450 * @return int
451 */
452 public function lastErrno();
453
454 /**
455 * Get a description of the last error
456 * @see https://secure.php.net/mysql_error
457 *
458 * @return string
459 */
460 public function lastError();
461
462 /**
463 * mysql_fetch_field() wrapper
464 * Returns false if the field doesn't exist
465 *
466 * @param string $table Table name
467 * @param string $field Field name
468 *
469 * @return Field
470 */
471 public function fieldInfo( $table, $field );
472
473 /**
474 * Get the number of rows affected by the last write query
475 * @see https://secure.php.net/mysql_affected_rows
476 *
477 * @return int
478 */
479 public function affectedRows();
480
481 /**
482 * Returns a wikitext link to the DB's website, e.g.,
483 * return "[https://www.mysql.com/ MySQL]";
484 * Should at least contain plain text, if for some reason
485 * your database has no website.
486 *
487 * @return string Wikitext of a link to the server software's web site
488 */
489 public function getSoftwareLink();
490
491 /**
492 * A string describing the current software version, like from
493 * mysql_get_server_info().
494 *
495 * @return string Version information from the database server.
496 */
497 public function getServerVersion();
498
499 /**
500 * Close the database connection
501 *
502 * This should only be called after any transactions have been resolved,
503 * aside from read-only transactions (assuming no callbacks are registered).
504 * If a transaction is still open anyway, it will be committed if possible.
505 *
506 * @throws DBError
507 * @return bool Operation success. true if already closed.
508 */
509 public function close();
510
511 /**
512 * @param string $error Fallback error message, used if none is given by DB
513 * @throws DBConnectionError
514 */
515 public function reportConnectionError( $error = 'Unknown error' );
516
517 /**
518 * Run an SQL query and return the result. Normally throws a DBQueryError
519 * on failure. If errors are ignored, returns false instead.
520 *
521 * If a connection loss is detected, then an attempt to reconnect will be made.
522 * For queries that involve no larger transactions or locks, they will be re-issued
523 * for convenience, provided the connection was re-established.
524 *
525 * In new code, the query wrappers select(), insert(), update(), delete(),
526 * etc. should be used where possible, since they give much better DBMS
527 * independence and automatically quote or validate user input in a variety
528 * of contexts. This function is generally only useful for queries which are
529 * explicitly DBMS-dependent and are unsupported by the query wrappers, such
530 * as CREATE TABLE.
531 *
532 * However, the query wrappers themselves should call this function.
533 *
534 * @param string $sql SQL query
535 * @param string $fname Name of the calling function, for profiling/SHOW PROCESSLIST
536 * comment (you can use __METHOD__ or add some extra info)
537 * @param bool $tempIgnore Whether to avoid throwing an exception on errors...
538 * maybe best to catch the exception instead?
539 * @return bool|IResultWrapper True for a successful write query, IResultWrapper object
540 * for a successful read query, or false on failure if $tempIgnore set
541 * @throws DBError
542 */
543 public function query( $sql, $fname = __METHOD__, $tempIgnore = false );
544
545 /**
546 * Report a query error. Log the error, and if neither the object ignore
547 * flag nor the $tempIgnore flag is set, throw a DBQueryError.
548 *
549 * @param string $error
550 * @param int $errno
551 * @param string $sql
552 * @param string $fname
553 * @param bool $tempIgnore
554 * @throws DBQueryError
555 */
556 public function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false );
557
558 /**
559 * Free a result object returned by query() or select(). It's usually not
560 * necessary to call this, just use unset() or let the variable holding
561 * the result object go out of scope.
562 *
563 * @param mixed $res A SQL result
564 */
565 public function freeResult( $res );
566
567 /**
568 * A SELECT wrapper which returns a single field from a single result row.
569 *
570 * Usually throws a DBQueryError on failure. If errors are explicitly
571 * ignored, returns false on failure.
572 *
573 * If no result rows are returned from the query, false is returned.
574 *
575 * @param string|array $table Table name. See IDatabase::select() for details.
576 * @param string $var The field name to select. This must be a valid SQL
577 * fragment: do not use unvalidated user input.
578 * @param string|array $cond The condition array. See IDatabase::select() for details.
579 * @param string $fname The function name of the caller.
580 * @param string|array $options The query options. See IDatabase::select() for details.
581 * @param string|array $join_conds The query join conditions. See IDatabase::select() for details.
582 *
583 * @return mixed The value from the field
584 * @throws DBError
585 */
586 public function selectField(
587 $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
588 );
589
590 /**
591 * A SELECT wrapper which returns a list of single field values from result rows.
592 *
593 * Usually throws a DBQueryError on failure. If errors are explicitly
594 * ignored, returns false on failure.
595 *
596 * If no result rows are returned from the query, false is returned.
597 *
598 * @param string|array $table Table name. See IDatabase::select() for details.
599 * @param string $var The field name to select. This must be a valid SQL
600 * fragment: do not use unvalidated user input.
601 * @param string|array $cond The condition array. See IDatabase::select() for details.
602 * @param string $fname The function name of the caller.
603 * @param string|array $options The query options. See IDatabase::select() for details.
604 * @param string|array $join_conds The query join conditions. See IDatabase::select() for details.
605 *
606 * @return array The values from the field
607 * @throws DBError
608 * @since 1.25
609 */
610 public function selectFieldValues(
611 $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
612 );
613
614 /**
615 * Execute a SELECT query constructed using the various parameters provided.
616 * See below for full details of the parameters.
617 *
618 * @param string|array $table Table name
619 * @param string|array $vars Field names
620 * @param string|array $conds Conditions
621 * @param string $fname Caller function name
622 * @param array $options Query options
623 * @param array $join_conds Join conditions
624 *
625 *
626 * @param string|array $table
627 *
628 * May be either an array of table names, or a single string holding a table
629 * name. If an array is given, table aliases can be specified, for example:
630 *
631 * [ 'a' => 'user' ]
632 *
633 * This includes the user table in the query, with the alias "a" available
634 * for use in field names (e.g. a.user_name).
635 *
636 * A derived table, defined by the result of selectSQLText(), requires an alias
637 * key and a Subquery instance value which wraps the SQL query, for example:
638 *
639 * [ 'c' => new Subquery( 'SELECT ...' ) ]
640 *
641 * Joins using parentheses for grouping (since MediaWiki 1.31) may be
642 * constructed using nested arrays. For example,
643 *
644 * [ 'tableA', 'nestedB' => [ 'tableB', 'b2' => 'tableB2' ] ]
645 *
646 * along with `$join_conds` like
647 *
648 * [ 'b2' => [ 'JOIN', 'b_id = b2_id' ], 'nestedB' => [ 'LEFT JOIN', 'b_a = a_id' ] ]
649 *
650 * will produce SQL something like
651 *
652 * FROM tableA LEFT JOIN (tableB JOIN tableB2 AS b2 ON (b_id = b2_id)) ON (b_a = a_id)
653 *
654 * All of the table names given here are automatically run through
655 * Database::tableName(), which causes the table prefix (if any) to be
656 * added, and various other table name mappings to be performed.
657 *
658 * Do not use untrusted user input as a table name. Alias names should
659 * not have characters outside of the Basic multilingual plane.
660 *
661 * @param string|array $vars
662 *
663 * May be either a field name or an array of field names. The field names
664 * can be complete fragments of SQL, for direct inclusion into the SELECT
665 * query. If an array is given, field aliases can be specified, for example:
666 *
667 * [ 'maxrev' => 'MAX(rev_id)' ]
668 *
669 * This includes an expression with the alias "maxrev" in the query.
670 *
671 * If an expression is given, care must be taken to ensure that it is
672 * DBMS-independent.
673 *
674 * Untrusted user input must not be passed to this parameter.
675 *
676 * @param string|array $conds
677 *
678 * May be either a string containing a single condition, or an array of
679 * conditions. If an array is given, the conditions constructed from each
680 * element are combined with AND.
681 *
682 * Array elements may take one of two forms:
683 *
684 * - Elements with a numeric key are interpreted as raw SQL fragments.
685 * - Elements with a string key are interpreted as equality conditions,
686 * where the key is the field name.
687 * - If the value of such an array element is a scalar (such as a
688 * string), it will be treated as data and thus quoted appropriately.
689 * If it is null, an IS NULL clause will be added.
690 * - If the value is an array, an IN (...) clause will be constructed
691 * from its non-null elements, and an IS NULL clause will be added
692 * if null is present, such that the field may match any of the
693 * elements in the array. The non-null elements will be quoted.
694 *
695 * Note that expressions are often DBMS-dependent in their syntax.
696 * DBMS-independent wrappers are provided for constructing several types of
697 * expression commonly used in condition queries. See:
698 * - IDatabase::buildLike()
699 * - IDatabase::conditional()
700 *
701 * Untrusted user input is safe in the values of string keys, however untrusted
702 * input must not be used in the array key names or in the values of numeric keys.
703 * Escaping of untrusted input used in values of numeric keys should be done via
704 * IDatabase::addQuotes()
705 *
706 * @param string|array $options
707 *
708 * Optional: Array of query options. Boolean options are specified by
709 * including them in the array as a string value with a numeric key, for
710 * example:
711 *
712 * [ 'FOR UPDATE' ]
713 *
714 * The supported options are:
715 *
716 * - OFFSET: Skip this many rows at the start of the result set. OFFSET
717 * with LIMIT can theoretically be used for paging through a result set,
718 * but this is discouraged for performance reasons.
719 *
720 * - LIMIT: Integer: return at most this many rows. The rows are sorted
721 * and then the first rows are taken until the limit is reached. LIMIT
722 * is applied to a result set after OFFSET.
723 *
724 * - FOR UPDATE: Boolean: lock the returned rows so that they can't be
725 * changed until the next COMMIT.
726 *
727 * - DISTINCT: Boolean: return only unique result rows.
728 *
729 * - GROUP BY: May be either an SQL fragment string naming a field or
730 * expression to group by, or an array of such SQL fragments.
731 *
732 * - HAVING: May be either an string containing a HAVING clause or an array of
733 * conditions building the HAVING clause. If an array is given, the conditions
734 * constructed from each element are combined with AND.
735 *
736 * - ORDER BY: May be either an SQL fragment giving a field name or
737 * expression to order by, or an array of such SQL fragments.
738 *
739 * - USE INDEX: This may be either a string giving the index name to use
740 * for the query, or an array. If it is an associative array, each key
741 * gives the table name (or alias), each value gives the index name to
742 * use for that table. All strings are SQL fragments and so should be
743 * validated by the caller.
744 *
745 * - EXPLAIN: In MySQL, this causes an EXPLAIN SELECT query to be run,
746 * instead of SELECT.
747 *
748 * And also the following boolean MySQL extensions, see the MySQL manual
749 * for documentation:
750 *
751 * - LOCK IN SHARE MODE
752 * - STRAIGHT_JOIN
753 * - HIGH_PRIORITY
754 * - SQL_BIG_RESULT
755 * - SQL_BUFFER_RESULT
756 * - SQL_SMALL_RESULT
757 * - SQL_CALC_FOUND_ROWS
758 * - SQL_CACHE
759 * - SQL_NO_CACHE
760 *
761 *
762 * @param string|array $join_conds
763 *
764 * Optional associative array of table-specific join conditions. In the
765 * most common case, this is unnecessary, since the join condition can be
766 * in $conds. However, it is useful for doing a LEFT JOIN.
767 *
768 * The key of the array contains the table name or alias. The value is an
769 * array with two elements, numbered 0 and 1. The first gives the type of
770 * join, the second is the same as the $conds parameter. Thus it can be
771 * an SQL fragment, or an array where the string keys are equality and the
772 * numeric keys are SQL fragments all AND'd together. For example:
773 *
774 * [ 'page' => [ 'LEFT JOIN', 'page_latest=rev_id' ] ]
775 *
776 * @return IResultWrapper Resulting rows
777 * @throws DBError
778 */
779 public function select(
780 $table, $vars, $conds = '', $fname = __METHOD__,
781 $options = [], $join_conds = []
782 );
783
784 /**
785 * The equivalent of IDatabase::select() except that the constructed SQL
786 * is returned, instead of being immediately executed. This can be useful for
787 * doing UNION queries, where the SQL text of each query is needed. In general,
788 * however, callers outside of Database classes should just use select().
789 *
790 * @see IDatabase::select()
791 *
792 * @param string|array $table Table name
793 * @param string|array $vars Field names
794 * @param string|array $conds Conditions
795 * @param string $fname Caller function name
796 * @param string|array $options Query options
797 * @param string|array $join_conds Join conditions
798 * @return string SQL query string
799 */
800 public function selectSQLText(
801 $table, $vars, $conds = '', $fname = __METHOD__,
802 $options = [], $join_conds = []
803 );
804
805 /**
806 * Single row SELECT wrapper. Equivalent to IDatabase::select(), except
807 * that a single row object is returned. If the query returns no rows,
808 * false is returned.
809 *
810 * @param string|array $table Table name
811 * @param string|array $vars Field names
812 * @param array $conds Conditions
813 * @param string $fname Caller function name
814 * @param string|array $options Query options
815 * @param array|string $join_conds Join conditions
816 *
817 * @return stdClass|bool
818 * @throws DBError
819 */
820 public function selectRow( $table, $vars, $conds, $fname = __METHOD__,
821 $options = [], $join_conds = []
822 );
823
824 /**
825 * Estimate the number of rows in dataset
826 *
827 * MySQL allows you to estimate the number of rows that would be returned
828 * by a SELECT query, using EXPLAIN SELECT. The estimate is provided using
829 * index cardinality statistics, and is notoriously inaccurate, especially
830 * when large numbers of rows have recently been added or deleted.
831 *
832 * For DBMSs that don't support fast result size estimation, this function
833 * will actually perform the SELECT COUNT(*).
834 *
835 * Takes the same arguments as IDatabase::select().
836 *
837 * @param string $table Table name
838 * @param string $var Column for which NULL values are not counted [default "*"]
839 * @param array|string $conds Filters on the table
840 * @param string $fname Function name for profiling
841 * @param array $options Options for select
842 * @param array|string $join_conds Join conditions
843 * @return int Row count
844 * @throws DBError
845 */
846 public function estimateRowCount(
847 $table, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
848 );
849
850 /**
851 * Get the number of rows in dataset
852 *
853 * This is useful when trying to do COUNT(*) but with a LIMIT for performance.
854 *
855 * Takes the same arguments as IDatabase::select().
856 *
857 * @since 1.27 Added $join_conds parameter
858 *
859 * @param array|string $tables Table names
860 * @param string $var Column for which NULL values are not counted [default "*"]
861 * @param array|string $conds Filters on the table
862 * @param string $fname Function name for profiling
863 * @param array $options Options for select
864 * @param array $join_conds Join conditions (since 1.27)
865 * @return int Row count
866 * @throws DBError
867 */
868 public function selectRowCount(
869 $tables, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
870 );
871
872 /**
873 * Determines whether a field exists in a table
874 *
875 * @param string $table Table name
876 * @param string $field Filed to check on that table
877 * @param string $fname Calling function name (optional)
878 * @return bool Whether $table has filed $field
879 * @throws DBError
880 */
881 public function fieldExists( $table, $field, $fname = __METHOD__ );
882
883 /**
884 * Determines whether an index exists
885 * Usually throws a DBQueryError on failure
886 * If errors are explicitly ignored, returns NULL on failure
887 *
888 * @param string $table
889 * @param string $index
890 * @param string $fname
891 * @return bool|null
892 * @throws DBError
893 */
894 public function indexExists( $table, $index, $fname = __METHOD__ );
895
896 /**
897 * Query whether a given table exists
898 *
899 * @param string $table
900 * @param string $fname
901 * @return bool
902 * @throws DBError
903 */
904 public function tableExists( $table, $fname = __METHOD__ );
905
906 /**
907 * Determines if a given index is unique
908 *
909 * @param string $table
910 * @param string $index
911 *
912 * @return bool
913 */
914 public function indexUnique( $table, $index );
915
916 /**
917 * INSERT wrapper, inserts an array into a table.
918 *
919 * $a may be either:
920 *
921 * - A single associative array. The array keys are the field names, and
922 * the values are the values to insert. The values are treated as data
923 * and will be quoted appropriately. If NULL is inserted, this will be
924 * converted to a database NULL.
925 * - An array with numeric keys, holding a list of associative arrays.
926 * This causes a multi-row INSERT on DBMSs that support it. The keys in
927 * each subarray must be identical to each other, and in the same order.
928 *
929 * Usually throws a DBQueryError on failure. If errors are explicitly ignored,
930 * returns success.
931 *
932 * $options is an array of options, with boolean options encoded as values
933 * with numeric keys, in the same style as $options in
934 * IDatabase::select(). Supported options are:
935 *
936 * - IGNORE: Boolean: if present, duplicate key errors are ignored, and
937 * any rows which cause duplicate key errors are not inserted. It's
938 * possible to determine how many rows were successfully inserted using
939 * IDatabase::affectedRows().
940 *
941 * @param string $table Table name. This will be passed through
942 * Database::tableName().
943 * @param array $a Array of rows to insert
944 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
945 * @param array $options Array of options
946 *
947 * @return bool
948 * @throws DBError
949 */
950 public function insert( $table, $a, $fname = __METHOD__, $options = [] );
951
952 /**
953 * UPDATE wrapper. Takes a condition array and a SET array.
954 *
955 * @param string $table Name of the table to UPDATE. This will be passed through
956 * Database::tableName().
957 * @param array $values An array of values to SET. For each array element,
958 * the key gives the field name, and the value gives the data to set
959 * that field to. The data will be quoted by IDatabase::addQuotes().
960 * Values with integer keys form unquoted SET statements, which can be used for
961 * things like "field = field + 1" or similar computed values.
962 * @param array $conds An array of conditions (WHERE). See
963 * IDatabase::select() for the details of the format of condition
964 * arrays. Use '*' to update all rows.
965 * @param string $fname The function name of the caller (from __METHOD__),
966 * for logging and profiling.
967 * @param array $options An array of UPDATE options, can be:
968 * - IGNORE: Ignore unique key conflicts
969 * - LOW_PRIORITY: MySQL-specific, see MySQL manual.
970 * @return bool
971 * @throws DBError
972 */
973 public function update( $table, $values, $conds, $fname = __METHOD__, $options = [] );
974
975 /**
976 * Makes an encoded list of strings from an array
977 *
978 * These can be used to make conjunctions or disjunctions on SQL condition strings
979 * derived from an array (see IDatabase::select() $conds documentation).
980 *
981 * Example usage:
982 * @code
983 * $sql = $db->makeList( [
984 * 'rev_page' => $id,
985 * $db->makeList( [ 'rev_minor' => 1, 'rev_len' < 500 ], $db::LIST_OR ] )
986 * ], $db::LIST_AND );
987 * @endcode
988 * This would set $sql to "rev_page = '$id' AND (rev_minor = '1' OR rev_len < '500')"
989 *
990 * @param array $a Containing the data
991 * @param int $mode IDatabase class constant:
992 * - IDatabase::LIST_COMMA: Comma separated, no field names
993 * - IDatabase::LIST_AND: ANDed WHERE clause (without the WHERE).
994 * - IDatabase::LIST_OR: ORed WHERE clause (without the WHERE)
995 * - IDatabase::LIST_SET: Comma separated with field names, like a SET clause
996 * - IDatabase::LIST_NAMES: Comma separated field names
997 * @throws DBError
998 * @return string
999 */
1000 public function makeList( $a, $mode = self::LIST_COMMA );
1001
1002 /**
1003 * Build a partial where clause from a 2-d array such as used for LinkBatch.
1004 * The keys on each level may be either integers or strings.
1005 *
1006 * @param array $data Organized as 2-d
1007 * [ baseKeyVal => [ subKeyVal => [ignored], ... ], ... ]
1008 * @param string $baseKey Field name to match the base-level keys to (eg 'pl_namespace')
1009 * @param string $subKey Field name to match the sub-level keys to (eg 'pl_title')
1010 * @return string|bool SQL fragment, or false if no items in array
1011 */
1012 public function makeWhereFrom2d( $data, $baseKey, $subKey );
1013
1014 /**
1015 * Return aggregated value alias
1016 *
1017 * @param array $valuedata
1018 * @param string $valuename
1019 *
1020 * @return string
1021 */
1022 public function aggregateValue( $valuedata, $valuename = 'value' );
1023
1024 /**
1025 * @param string $field
1026 * @return string
1027 */
1028 public function bitNot( $field );
1029
1030 /**
1031 * @param string $fieldLeft
1032 * @param string $fieldRight
1033 * @return string
1034 */
1035 public function bitAnd( $fieldLeft, $fieldRight );
1036
1037 /**
1038 * @param string $fieldLeft
1039 * @param string $fieldRight
1040 * @return string
1041 */
1042 public function bitOr( $fieldLeft, $fieldRight );
1043
1044 /**
1045 * Build a concatenation list to feed into a SQL query
1046 * @param array $stringList List of raw SQL expressions; caller is
1047 * responsible for any quoting
1048 * @return string
1049 */
1050 public function buildConcat( $stringList );
1051
1052 /**
1053 * Build a GROUP_CONCAT or equivalent statement for a query.
1054 *
1055 * This is useful for combining a field for several rows into a single string.
1056 * NULL values will not appear in the output, duplicated values will appear,
1057 * and the resulting delimiter-separated values have no defined sort order.
1058 * Code using the results may need to use the PHP unique() or sort() methods.
1059 *
1060 * @param string $delim Glue to bind the results together
1061 * @param string|array $table Table name
1062 * @param string $field Field name
1063 * @param string|array $conds Conditions
1064 * @param string|array $join_conds Join conditions
1065 * @return string SQL text
1066 * @since 1.23
1067 */
1068 public function buildGroupConcatField(
1069 $delim, $table, $field, $conds = '', $join_conds = []
1070 );
1071
1072 /**
1073 * Build a SUBSTRING function.
1074 *
1075 * Behavior for non-ASCII values is undefined.
1076 *
1077 * @param string $input Field name
1078 * @param int $startPosition Positive integer
1079 * @param int|null $length Non-negative integer length or null for no limit
1080 * @throws InvalidArgumentException
1081 * @return string SQL text
1082 * @since 1.31
1083 */
1084 public function buildSubString( $input, $startPosition, $length = null );
1085
1086 /**
1087 * @param string $field Field or column to cast
1088 * @return string
1089 * @since 1.28
1090 */
1091 public function buildStringCast( $field );
1092
1093 /**
1094 * @param string $field Field or column to cast
1095 * @return string
1096 * @since 1.31
1097 */
1098 public function buildIntegerCast( $field );
1099
1100 /**
1101 * Equivalent to IDatabase::selectSQLText() except wraps the result in Subqyery
1102 *
1103 * @see IDatabase::selectSQLText()
1104 *
1105 * @param string|array $table Table name
1106 * @param string|array $vars Field names
1107 * @param string|array $conds Conditions
1108 * @param string $fname Caller function name
1109 * @param string|array $options Query options
1110 * @param string|array $join_conds Join conditions
1111 * @return Subquery
1112 * @since 1.31
1113 */
1114 public function buildSelectSubquery(
1115 $table, $vars, $conds = '', $fname = __METHOD__,
1116 $options = [], $join_conds = []
1117 );
1118
1119 /**
1120 * Returns true if DBs are assumed to be on potentially different servers
1121 *
1122 * In systems like mysql/mariadb, different databases can easily be referenced on a single
1123 * connection merely by name, even in a single query via JOIN. On the other hand, Postgres
1124 * treats databases as fully separate, only allowing mechanisms like postgres_fdw to
1125 * effectively "mount" foreign DBs. This is true even among DBs on the same server.
1126 *
1127 * @return bool
1128 * @since 1.29
1129 */
1130 public function databasesAreIndependent();
1131
1132 /**
1133 * Change the current database
1134 *
1135 * @param string $db
1136 * @return bool Success or failure
1137 * @throws DBConnectionError If databasesAreIndependent() is true and an error occurs
1138 */
1139 public function selectDB( $db );
1140
1141 /**
1142 * Get the current DB name
1143 * @return string
1144 */
1145 public function getDBname();
1146
1147 /**
1148 * Get the server hostname or IP address
1149 * @return string
1150 */
1151 public function getServer();
1152
1153 /**
1154 * Adds quotes and backslashes.
1155 *
1156 * @param string|int|null|bool|Blob $s
1157 * @return string|int
1158 */
1159 public function addQuotes( $s );
1160
1161 /**
1162 * LIKE statement wrapper, receives a variable-length argument list with
1163 * parts of pattern to match containing either string literals that will be
1164 * escaped or tokens returned by anyChar() or anyString(). Alternatively,
1165 * the function could be provided with an array of aforementioned
1166 * parameters.
1167 *
1168 * Example: $dbr->buildLike( 'My_page_title/', $dbr->anyString() ) returns
1169 * a LIKE clause that searches for subpages of 'My page title'.
1170 * Alternatively:
1171 * $pattern = [ 'My_page_title/', $dbr->anyString() ];
1172 * $query .= $dbr->buildLike( $pattern );
1173 *
1174 * @since 1.16
1175 * @return string Fully built LIKE statement
1176 */
1177 public function buildLike();
1178
1179 /**
1180 * Returns a token for buildLike() that denotes a '_' to be used in a LIKE query
1181 *
1182 * @return LikeMatch
1183 */
1184 public function anyChar();
1185
1186 /**
1187 * Returns a token for buildLike() that denotes a '%' to be used in a LIKE query
1188 *
1189 * @return LikeMatch
1190 */
1191 public function anyString();
1192
1193 /**
1194 * Deprecated method, calls should be removed.
1195 *
1196 * This was formerly used for PostgreSQL and Oracle to handle
1197 * self::insertId() auto-incrementing fields. It is no longer necessary
1198 * since DatabasePostgres::insertId() has been reimplemented using
1199 * `lastval()` and Oracle has been reimplemented using triggers.
1200 *
1201 * Implementations should return null if inserting `NULL` into an
1202 * auto-incrementing field works, otherwise it should return an instance of
1203 * NextSequenceValue and filter it on calls to relevant methods.
1204 *
1205 * @deprecated since 1.30, no longer needed
1206 * @param string $seqName
1207 * @return null|NextSequenceValue
1208 */
1209 public function nextSequenceValue( $seqName );
1210
1211 /**
1212 * REPLACE query wrapper.
1213 *
1214 * REPLACE is a very handy MySQL extension, which functions like an INSERT
1215 * except that when there is a duplicate key error, the old row is deleted
1216 * and the new row is inserted in its place.
1217 *
1218 * We simulate this with standard SQL with a DELETE followed by INSERT. To
1219 * perform the delete, we need to know what the unique indexes are so that
1220 * we know how to find the conflicting rows.
1221 *
1222 * It may be more efficient to leave off unique indexes which are unlikely
1223 * to collide. However if you do this, you run the risk of encountering
1224 * errors which wouldn't have occurred in MySQL.
1225 *
1226 * @param string $table The table to replace the row(s) in.
1227 * @param array $uniqueIndexes Is an array of indexes. Each element may be either
1228 * a field name or an array of field names
1229 * @param array $rows Can be either a single row to insert, or multiple rows,
1230 * in the same format as for IDatabase::insert()
1231 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1232 * @throws DBError
1233 */
1234 public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__ );
1235
1236 /**
1237 * INSERT ON DUPLICATE KEY UPDATE wrapper, upserts an array into a table.
1238 *
1239 * This updates any conflicting rows (according to the unique indexes) using
1240 * the provided SET clause and inserts any remaining (non-conflicted) rows.
1241 *
1242 * $rows may be either:
1243 * - A single associative array. The array keys are the field names, and
1244 * the values are the values to insert. The values are treated as data
1245 * and will be quoted appropriately. If NULL is inserted, this will be
1246 * converted to a database NULL.
1247 * - An array with numeric keys, holding a list of associative arrays.
1248 * This causes a multi-row INSERT on DBMSs that support it. The keys in
1249 * each subarray must be identical to each other, and in the same order.
1250 *
1251 * It may be more efficient to leave off unique indexes which are unlikely
1252 * to collide. However if you do this, you run the risk of encountering
1253 * errors which wouldn't have occurred in MySQL.
1254 *
1255 * Usually throws a DBQueryError on failure. If errors are explicitly ignored,
1256 * returns success.
1257 *
1258 * @since 1.22
1259 *
1260 * @param string $table Table name. This will be passed through Database::tableName().
1261 * @param array $rows A single row or list of rows to insert
1262 * @param array $uniqueIndexes List of single field names or field name tuples
1263 * @param array $set An array of values to SET. For each array element, the
1264 * key gives the field name, and the value gives the data to set that
1265 * field to. The data will be quoted by IDatabase::addQuotes().
1266 * Values with integer keys form unquoted SET statements, which can be used for
1267 * things like "field = field + 1" or similar computed values.
1268 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1269 * @throws DBError
1270 * @return bool
1271 */
1272 public function upsert(
1273 $table, array $rows, array $uniqueIndexes, array $set, $fname = __METHOD__
1274 );
1275
1276 /**
1277 * DELETE where the condition is a join.
1278 *
1279 * MySQL overrides this to use a multi-table DELETE syntax, in other databases
1280 * we use sub-selects
1281 *
1282 * For safety, an empty $conds will not delete everything. If you want to
1283 * delete all rows where the join condition matches, set $conds='*'.
1284 *
1285 * DO NOT put the join condition in $conds.
1286 *
1287 * @param string $delTable The table to delete from.
1288 * @param string $joinTable The other table.
1289 * @param string $delVar The variable to join on, in the first table.
1290 * @param string $joinVar The variable to join on, in the second table.
1291 * @param array $conds Condition array of field names mapped to variables,
1292 * ANDed together in the WHERE clause
1293 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1294 * @throws DBError
1295 */
1296 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
1297 $fname = __METHOD__
1298 );
1299
1300 /**
1301 * DELETE query wrapper.
1302 *
1303 * @param string $table Table name
1304 * @param string|array $conds Array of conditions. See $conds in IDatabase::select()
1305 * for the format. Use $conds == "*" to delete all rows
1306 * @param string $fname Name of the calling function
1307 * @throws DBUnexpectedError
1308 * @return bool|IResultWrapper
1309 * @throws DBError
1310 */
1311 public function delete( $table, $conds, $fname = __METHOD__ );
1312
1313 /**
1314 * INSERT SELECT wrapper. Takes data from a SELECT query and inserts it
1315 * into another table.
1316 *
1317 * @warning If the insert will use an auto-increment or sequence to
1318 * determine the value of a column, this may break replication on
1319 * databases using statement-based replication if the SELECT is not
1320 * deterministically ordered.
1321 *
1322 * @param string $destTable The table name to insert into
1323 * @param string|array $srcTable May be either a table name, or an array of table names
1324 * to include in a join.
1325 *
1326 * @param array $varMap Must be an associative array of the form
1327 * [ 'dest1' => 'source1', ... ]. Source items may be literals
1328 * rather than field names, but strings should be quoted with
1329 * IDatabase::addQuotes()
1330 *
1331 * @param array $conds Condition array. See $conds in IDatabase::select() for
1332 * the details of the format of condition arrays. May be "*" to copy the
1333 * whole table.
1334 *
1335 * @param string $fname The function name of the caller, from __METHOD__
1336 *
1337 * @param array $insertOptions Options for the INSERT part of the query, see
1338 * IDatabase::insert() for details. Also, one additional option is
1339 * available: pass 'NO_AUTO_COLUMNS' to hint that the query does not use
1340 * an auto-increment or sequence to determine any column values.
1341 * @param array $selectOptions Options for the SELECT part of the query, see
1342 * IDatabase::select() for details.
1343 * @param array $selectJoinConds Join conditions for the SELECT part of the query, see
1344 * IDatabase::select() for details.
1345 *
1346 * @return bool
1347 * @throws DBError
1348 */
1349 public function insertSelect( $destTable, $srcTable, $varMap, $conds,
1350 $fname = __METHOD__,
1351 $insertOptions = [], $selectOptions = [], $selectJoinConds = []
1352 );
1353
1354 /**
1355 * Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries
1356 * within the UNION construct.
1357 * @return bool
1358 */
1359 public function unionSupportsOrderAndLimit();
1360
1361 /**
1362 * Construct a UNION query
1363 * This is used for providing overload point for other DB abstractions
1364 * not compatible with the MySQL syntax.
1365 * @param array $sqls SQL statements to combine
1366 * @param bool $all Use UNION ALL
1367 * @return string SQL fragment
1368 */
1369 public function unionQueries( $sqls, $all );
1370
1371 /**
1372 * Construct a UNION query for permutations of conditions
1373 *
1374 * Databases sometimes have trouble with queries that have multiple values
1375 * for multiple condition parameters combined with limits and ordering.
1376 * This method constructs queries for the Cartesian product of the
1377 * conditions and unions them all together.
1378 *
1379 * @see IDatabase::select()
1380 * @since 1.30
1381 * @param string|array $table Table name
1382 * @param string|array $vars Field names
1383 * @param array $permute_conds Conditions for the Cartesian product. Keys
1384 * are field names, values are arrays of the possible values for that
1385 * field.
1386 * @param string|array $extra_conds Additional conditions to include in the
1387 * query.
1388 * @param string $fname Caller function name
1389 * @param string|array $options Query options. In addition to the options
1390 * recognized by IDatabase::select(), the following may be used:
1391 * - NOTALL: Set to use UNION instead of UNION ALL.
1392 * - INNER ORDER BY: If specified and supported, subqueries will use this
1393 * instead of ORDER BY.
1394 * @param string|array $join_conds Join conditions
1395 * @return string SQL query string.
1396 */
1397 public function unionConditionPermutations(
1398 $table, $vars, array $permute_conds, $extra_conds = '', $fname = __METHOD__,
1399 $options = [], $join_conds = []
1400 );
1401
1402 /**
1403 * Returns an SQL expression for a simple conditional. This doesn't need
1404 * to be overridden unless CASE isn't supported in your DBMS.
1405 *
1406 * @param string|array $cond SQL expression which will result in a boolean value
1407 * @param string $trueVal SQL expression to return if true
1408 * @param string $falseVal SQL expression to return if false
1409 * @return string SQL fragment
1410 */
1411 public function conditional( $cond, $trueVal, $falseVal );
1412
1413 /**
1414 * Returns a command for str_replace function in SQL query.
1415 * Uses REPLACE() in MySQL
1416 *
1417 * @param string $orig Column to modify
1418 * @param string $old Column to seek
1419 * @param string $new Column to replace with
1420 *
1421 * @return string
1422 */
1423 public function strreplace( $orig, $old, $new );
1424
1425 /**
1426 * Determines how long the server has been up
1427 *
1428 * @return int
1429 * @throws DBError
1430 */
1431 public function getServerUptime();
1432
1433 /**
1434 * Determines if the last failure was due to a deadlock
1435 *
1436 * Note that during a deadlock, the prior transaction will have been lost
1437 *
1438 * @return bool
1439 */
1440 public function wasDeadlock();
1441
1442 /**
1443 * Determines if the last failure was due to a lock timeout
1444 *
1445 * Note that during a lock wait timeout, the prior transaction will have been lost
1446 *
1447 * @return bool
1448 */
1449 public function wasLockTimeout();
1450
1451 /**
1452 * Determines if the last query error was due to a dropped connection
1453 *
1454 * Note that during a connection loss, the prior transaction will have been lost
1455 *
1456 * @return bool
1457 * @since 1.31
1458 */
1459 public function wasConnectionLoss();
1460
1461 /**
1462 * Determines if the last failure was due to the database being read-only.
1463 *
1464 * @return bool
1465 */
1466 public function wasReadOnlyError();
1467
1468 /**
1469 * Determines if the last query error was due to something outside of the query itself
1470 *
1471 * Note that the transaction may have been lost, discarding prior writes and results
1472 *
1473 * @return bool
1474 */
1475 public function wasErrorReissuable();
1476
1477 /**
1478 * Wait for the replica DB to catch up to a given master position
1479 *
1480 * @param DBMasterPos $pos
1481 * @param int $timeout The maximum number of seconds to wait for synchronisation
1482 * @return int|null Zero if the replica DB was past that position already,
1483 * greater than zero if we waited for some period of time, less than
1484 * zero if it timed out, and null on error
1485 * @throws DBError
1486 */
1487 public function masterPosWait( DBMasterPos $pos, $timeout );
1488
1489 /**
1490 * Get the replication position of this replica DB
1491 *
1492 * @return DBMasterPos|bool False if this is not a replica DB
1493 * @throws DBError
1494 */
1495 public function getReplicaPos();
1496
1497 /**
1498 * Get the position of this master
1499 *
1500 * @return DBMasterPos|bool False if this is not a master
1501 * @throws DBError
1502 */
1503 public function getMasterPos();
1504
1505 /**
1506 * @return bool Whether the DB is marked as read-only server-side
1507 * @since 1.28
1508 */
1509 public function serverIsReadOnly();
1510
1511 /**
1512 * Run a callback as soon as the current transaction commits or rolls back.
1513 * An error is thrown if no transaction is pending. Queries in the function will run in
1514 * AUTO-COMMIT mode unless there are begin() calls. Callbacks must commit any transactions
1515 * that they begin.
1516 *
1517 * This is useful for combining cooperative locks and DB transactions.
1518 *
1519 * The callback takes one argument:
1520 * - How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_ROLLBACK)
1521 *
1522 * @param callable $callback
1523 * @param string $fname Caller name
1524 * @return mixed
1525 * @since 1.28
1526 */
1527 public function onTransactionResolution( callable $callback, $fname = __METHOD__ );
1528
1529 /**
1530 * Run a callback as soon as there is no transaction pending.
1531 * If there is a transaction and it is rolled back, then the callback is cancelled.
1532 * Queries in the function will run in AUTO-COMMIT mode unless there are begin() calls.
1533 * Callbacks must commit any transactions that they begin.
1534 *
1535 * This is useful for updates to different systems or when separate transactions are needed.
1536 * For example, one might want to enqueue jobs into a system outside the database, but only
1537 * after the database is updated so that the jobs will see the data when they actually run.
1538 * It can also be used for updates that easily cause deadlocks if locks are held too long.
1539 *
1540 * Updates will execute in the order they were enqueued.
1541 *
1542 * The callback takes one argument:
1543 * - How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_IDLE)
1544 *
1545 * @param callable $callback
1546 * @param string $fname Caller name
1547 * @since 1.20
1548 */
1549 public function onTransactionIdle( callable $callback, $fname = __METHOD__ );
1550
1551 /**
1552 * Run a callback before the current transaction commits or now if there is none.
1553 * If there is a transaction and it is rolled back, then the callback is cancelled.
1554 * Callbacks must not start nor commit any transactions. If no transaction is active,
1555 * then a transaction will wrap the callback.
1556 *
1557 * This is useful for updates that easily cause deadlocks if locks are held too long
1558 * but where atomicity is strongly desired for these updates and some related updates.
1559 *
1560 * Updates will execute in the order they were enqueued.
1561 *
1562 * @param callable $callback
1563 * @param string $fname Caller name
1564 * @since 1.22
1565 */
1566 public function onTransactionPreCommitOrIdle( callable $callback, $fname = __METHOD__ );
1567
1568 /**
1569 * Run a callback each time any transaction commits or rolls back
1570 *
1571 * The callback takes two arguments:
1572 * - IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_ROLLBACK
1573 * - This IDatabase object
1574 * Callbacks must commit any transactions that they begin.
1575 *
1576 * Registering a callback here will not affect writesOrCallbacks() pending
1577 *
1578 * @param string $name Callback name
1579 * @param callable|null $callback Use null to unset a listener
1580 * @return mixed
1581 * @since 1.28
1582 */
1583 public function setTransactionListener( $name, callable $callback = null );
1584
1585 /**
1586 * Begin an atomic section of statements
1587 *
1588 * If a transaction has been started already, (optionally) sets a savepoint
1589 * and tracks the given section name to make sure the transaction is not
1590 * committed pre-maturely. This function can be used in layers (with
1591 * sub-sections), so use a stack to keep track of the different atomic
1592 * sections. If there is no transaction, one is started implicitly.
1593 *
1594 * The goal of this function is to create an atomic section of SQL queries
1595 * without having to start a new transaction if it already exists.
1596 *
1597 * All atomic levels *must* be explicitly closed using IDatabase::endAtomic()
1598 * or IDatabase::cancelAtomic(), and any database transactions cannot be
1599 * began or committed until all atomic levels are closed. There is no such
1600 * thing as implicitly opening or closing an atomic section.
1601 *
1602 * @since 1.23
1603 * @param string $fname
1604 * @param string $cancelable Pass self::ATOMIC_CANCELABLE to use a
1605 * savepoint and enable self::cancelAtomic() for this section.
1606 * @throws DBError
1607 */
1608 public function startAtomic( $fname = __METHOD__, $cancelable = self::ATOMIC_NOT_CANCELABLE );
1609
1610 /**
1611 * Ends an atomic section of SQL statements
1612 *
1613 * Ends the next section of atomic SQL statements and commits the transaction
1614 * if necessary.
1615 *
1616 * @since 1.23
1617 * @see IDatabase::startAtomic
1618 * @param string $fname
1619 * @throws DBError
1620 */
1621 public function endAtomic( $fname = __METHOD__ );
1622
1623 /**
1624 * Cancel an atomic section of SQL statements
1625 *
1626 * This will roll back only the statements executed since the start of the
1627 * most recent atomic section, and close that section. If a transaction was
1628 * open before the corresponding startAtomic() call, any statements before
1629 * that call are *not* rolled back and the transaction remains open. If the
1630 * corresponding startAtomic() implicitly started a transaction, that
1631 * transaction is rolled back.
1632 *
1633 * Note that a call to IDatabase::rollback() will also roll back any open
1634 * atomic sections.
1635 *
1636 * @note As a micro-optimization to save a few DB calls, this method may only
1637 * be called when startAtomic() was called with the ATOMIC_CANCELABLE flag.
1638 * @since 1.31
1639 * @see IDatabase::startAtomic
1640 * @param string $fname
1641 * @throws DBError
1642 */
1643 public function cancelAtomic( $fname = __METHOD__ );
1644
1645 /**
1646 * Run a callback to do an atomic set of updates for this database
1647 *
1648 * The $callback takes the following arguments:
1649 * - This database object
1650 * - The value of $fname
1651 *
1652 * If any exception occurs in the callback, then cancelAtomic() will be
1653 * called to back out any statements executed by the callback and the error
1654 * will be re-thrown. It may also be that the cancel itself fails with an
1655 * exception before then. In any case, such errors are expected to
1656 * terminate the request, without any outside caller attempting to catch
1657 * errors and commit anyway.
1658 *
1659 * This can be an alternative to explicit startAtomic()/endAtomic()/cancelAtomic() calls.
1660 *
1661 * @see Database::startAtomic
1662 * @see Database::endAtomic
1663 * @see Database::cancelAtomic
1664 *
1665 * @param string $fname Caller name (usually __METHOD__)
1666 * @param callable $callback Callback that issues DB updates
1667 * @return mixed $res Result of the callback (since 1.28)
1668 * @throws DBError
1669 * @throws RuntimeException
1670 * @throws UnexpectedValueException
1671 * @since 1.27; prior to 1.31 this did a rollback() instead of
1672 * cancelAtomic(), and assumed no callers up the stack would ever try to
1673 * catch the exception.
1674 */
1675 public function doAtomicSection( $fname, callable $callback );
1676
1677 /**
1678 * Begin a transaction. If a transaction is already in progress,
1679 * that transaction will be committed before the new transaction is started.
1680 *
1681 * Only call this from code with outer transcation scope.
1682 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1683 * Nesting of transactions is not supported.
1684 *
1685 * Note that when the DBO_TRX flag is set (which is usually the case for web
1686 * requests, but not for maintenance scripts), any previous database query
1687 * will have started a transaction automatically.
1688 *
1689 * Nesting of transactions is not supported. Attempts to nest transactions
1690 * will cause a warning, unless the current transaction was started
1691 * automatically because of the DBO_TRX flag.
1692 *
1693 * @param string $fname Calling function name
1694 * @param string $mode A situationally valid IDatabase::TRANSACTION_* constant [optional]
1695 * @throws DBError
1696 */
1697 public function begin( $fname = __METHOD__, $mode = self::TRANSACTION_EXPLICIT );
1698
1699 /**
1700 * Commits a transaction previously started using begin().
1701 * If no transaction is in progress, a warning is issued.
1702 *
1703 * Only call this from code with outer transcation scope.
1704 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1705 * Nesting of transactions is not supported.
1706 *
1707 * @param string $fname
1708 * @param string $flush Flush flag, set to situationally valid IDatabase::FLUSHING_*
1709 * constant to disable warnings about explicitly committing implicit transactions,
1710 * or calling commit when no transaction is in progress.
1711 *
1712 * This will trigger an exception if there is an ongoing explicit transaction.
1713 *
1714 * Only set the flush flag if you are sure that these warnings are not applicable,
1715 * and no explicit transactions are open.
1716 *
1717 * @throws DBError
1718 */
1719 public function commit( $fname = __METHOD__, $flush = '' );
1720
1721 /**
1722 * Rollback a transaction previously started using begin().
1723 * If no transaction is in progress, a warning is issued.
1724 *
1725 * Only call this from code with outer transcation scope.
1726 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1727 * Nesting of transactions is not supported. If a serious unexpected error occurs,
1728 * throwing an Exception is preferrable, using a pre-installed error handler to trigger
1729 * rollback (in any case, failure to issue COMMIT will cause rollback server-side).
1730 *
1731 * Query, connection, and onTransaction* callback errors will be suppressed and logged.
1732 *
1733 * @param string $fname Calling function name
1734 * @param string $flush Flush flag, set to a situationally valid IDatabase::FLUSHING_*
1735 * constant to disable warnings about calling rollback when no transaction is in
1736 * progress. This will silently break any ongoing explicit transaction. Only set the
1737 * flush flag if you are sure that it is safe to ignore these warnings in your context.
1738 * @throws DBError
1739 * @since 1.23 Added $flush parameter
1740 */
1741 public function rollback( $fname = __METHOD__, $flush = '' );
1742
1743 /**
1744 * Commit any transaction but error out if writes or callbacks are pending
1745 *
1746 * This is intended for clearing out REPEATABLE-READ snapshots so that callers can
1747 * see a new point-in-time of the database. This is useful when one of many transaction
1748 * rounds finished and significant time will pass in the script's lifetime. It is also
1749 * useful to call on a replica DB after waiting on replication to catch up to the master.
1750 *
1751 * @param string $fname Calling function name
1752 * @throws DBError
1753 * @since 1.28
1754 */
1755 public function flushSnapshot( $fname = __METHOD__ );
1756
1757 /**
1758 * List all tables on the database
1759 *
1760 * @param string $prefix Only show tables with this prefix, e.g. mw_
1761 * @param string $fname Calling function name
1762 * @throws DBError
1763 * @return array
1764 */
1765 public function listTables( $prefix = null, $fname = __METHOD__ );
1766
1767 /**
1768 * Convert a timestamp in one of the formats accepted by wfTimestamp()
1769 * to the format used for inserting into timestamp fields in this DBMS.
1770 *
1771 * The result is unquoted, and needs to be passed through addQuotes()
1772 * before it can be included in raw SQL.
1773 *
1774 * @param string|int $ts
1775 *
1776 * @return string
1777 */
1778 public function timestamp( $ts = 0 );
1779
1780 /**
1781 * Convert a timestamp in one of the formats accepted by wfTimestamp()
1782 * to the format used for inserting into timestamp fields in this DBMS. If
1783 * NULL is input, it is passed through, allowing NULL values to be inserted
1784 * into timestamp fields.
1785 *
1786 * The result is unquoted, and needs to be passed through addQuotes()
1787 * before it can be included in raw SQL.
1788 *
1789 * @param string|int $ts
1790 *
1791 * @return string
1792 */
1793 public function timestampOrNull( $ts = null );
1794
1795 /**
1796 * Ping the server and try to reconnect if it there is no connection
1797 *
1798 * @param float|null &$rtt Value to store the estimated RTT [optional]
1799 * @return bool Success or failure
1800 */
1801 public function ping( &$rtt = null );
1802
1803 /**
1804 * Get replica DB lag. Currently supported only by MySQL.
1805 *
1806 * Note that this function will generate a fatal error on many
1807 * installations. Most callers should use LoadBalancer::safeGetLag()
1808 * instead.
1809 *
1810 * @return int|bool Database replication lag in seconds or false on error
1811 * @throws DBError
1812 */
1813 public function getLag();
1814
1815 /**
1816 * Get the replica DB lag when the current transaction started
1817 * or a general lag estimate if not transaction is active
1818 *
1819 * This is useful when transactions might use snapshot isolation
1820 * (e.g. REPEATABLE-READ in innodb), so the "real" lag of that data
1821 * is this lag plus transaction duration. If they don't, it is still
1822 * safe to be pessimistic. In AUTO-COMMIT mode, this still gives an
1823 * indication of the staleness of subsequent reads.
1824 *
1825 * @return array ('lag': seconds or false on error, 'since': UNIX timestamp of BEGIN)
1826 * @throws DBError
1827 * @since 1.27
1828 */
1829 public function getSessionLagStatus();
1830
1831 /**
1832 * Return the maximum number of items allowed in a list, or 0 for unlimited.
1833 *
1834 * @return int
1835 */
1836 public function maxListLen();
1837
1838 /**
1839 * Some DBMSs have a special format for inserting into blob fields, they
1840 * don't allow simple quoted strings to be inserted. To insert into such
1841 * a field, pass the data through this function before passing it to
1842 * IDatabase::insert().
1843 *
1844 * @param string $b
1845 * @return string|Blob
1846 */
1847 public function encodeBlob( $b );
1848
1849 /**
1850 * Some DBMSs return a special placeholder object representing blob fields
1851 * in result objects. Pass the object through this function to return the
1852 * original string.
1853 *
1854 * @param string|Blob $b
1855 * @return string
1856 */
1857 public function decodeBlob( $b );
1858
1859 /**
1860 * Override database's default behavior. $options include:
1861 * 'connTimeout' : Set the connection timeout value in seconds.
1862 * May be useful for very long batch queries such as
1863 * full-wiki dumps, where a single query reads out over
1864 * hours or days.
1865 *
1866 * @param array $options
1867 * @return void
1868 * @throws DBError
1869 */
1870 public function setSessionOptions( array $options );
1871
1872 /**
1873 * Set variables to be used in sourceFile/sourceStream, in preference to the
1874 * ones in $GLOBALS. If an array is set here, $GLOBALS will not be used at
1875 * all. If it's set to false, $GLOBALS will be used.
1876 *
1877 * @param bool|array $vars Mapping variable name to value.
1878 */
1879 public function setSchemaVars( $vars );
1880
1881 /**
1882 * Check to see if a named lock is not locked by any thread (non-blocking)
1883 *
1884 * @param string $lockName Name of lock to poll
1885 * @param string $method Name of method calling us
1886 * @return bool
1887 * @throws DBError
1888 * @since 1.20
1889 */
1890 public function lockIsFree( $lockName, $method );
1891
1892 /**
1893 * Acquire a named lock
1894 *
1895 * Named locks are not related to transactions
1896 *
1897 * @param string $lockName Name of lock to aquire
1898 * @param string $method Name of the calling method
1899 * @param int $timeout Acquisition timeout in seconds
1900 * @return bool
1901 * @throws DBError
1902 */
1903 public function lock( $lockName, $method, $timeout = 5 );
1904
1905 /**
1906 * Release a lock
1907 *
1908 * Named locks are not related to transactions
1909 *
1910 * @param string $lockName Name of lock to release
1911 * @param string $method Name of the calling method
1912 *
1913 * @return int Returns 1 if the lock was released, 0 if the lock was not established
1914 * by this thread (in which case the lock is not released), and NULL if the named lock
1915 * did not exist
1916 *
1917 * @throws DBError
1918 */
1919 public function unlock( $lockName, $method );
1920
1921 /**
1922 * Acquire a named lock, flush any transaction, and return an RAII style unlocker object
1923 *
1924 * Only call this from outer transcation scope and when only one DB will be affected.
1925 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1926 *
1927 * This is suitiable for transactions that need to be serialized using cooperative locks,
1928 * where each transaction can see each others' changes. Any transaction is flushed to clear
1929 * out stale REPEATABLE-READ snapshot data. Once the returned object falls out of PHP scope,
1930 * the lock will be released unless a transaction is active. If one is active, then the lock
1931 * will be released when it either commits or rolls back.
1932 *
1933 * If the lock acquisition failed, then no transaction flush happens, and null is returned.
1934 *
1935 * @param string $lockKey Name of lock to release
1936 * @param string $fname Name of the calling method
1937 * @param int $timeout Acquisition timeout in seconds
1938 * @return ScopedCallback|null
1939 * @throws DBError
1940 * @since 1.27
1941 */
1942 public function getScopedLockAndFlush( $lockKey, $fname, $timeout );
1943
1944 /**
1945 * Check to see if a named lock used by lock() use blocking queues
1946 *
1947 * @return bool
1948 * @since 1.26
1949 */
1950 public function namedLocksEnqueue();
1951
1952 /**
1953 * Find out when 'infinity' is. Most DBMSes support this. This is a special
1954 * keyword for timestamps in PostgreSQL, and works with CHAR(14) as well
1955 * because "i" sorts after all numbers.
1956 *
1957 * @return string
1958 */
1959 public function getInfinity();
1960
1961 /**
1962 * Encode an expiry time into the DBMS dependent format
1963 *
1964 * @param string $expiry Timestamp for expiry, or the 'infinity' string
1965 * @return string
1966 */
1967 public function encodeExpiry( $expiry );
1968
1969 /**
1970 * Decode an expiry time into a DBMS independent format
1971 *
1972 * @param string $expiry DB timestamp field value for expiry
1973 * @param int $format TS_* constant, defaults to TS_MW
1974 * @return string
1975 */
1976 public function decodeExpiry( $expiry, $format = TS_MW );
1977
1978 /**
1979 * Allow or deny "big selects" for this session only. This is done by setting
1980 * the sql_big_selects session variable.
1981 *
1982 * This is a MySQL-specific feature.
1983 *
1984 * @param bool|string $value True for allow, false for deny, or "default" to
1985 * restore the initial value
1986 */
1987 public function setBigSelects( $value = true );
1988
1989 /**
1990 * @return bool Whether this DB is read-only
1991 * @since 1.27
1992 */
1993 public function isReadOnly();
1994
1995 /**
1996 * Make certain table names use their own database, schema, and table prefix
1997 * when passed into SQL queries pre-escaped and without a qualified database name
1998 *
1999 * For example, "user" can be converted to "myschema.mydbname.user" for convenience.
2000 * Appearances like `user`, somedb.user, somedb.someschema.user will used literally.
2001 *
2002 * Calling this twice will completely clear any old table aliases. Also, note that
2003 * callers are responsible for making sure the schemas and databases actually exist.
2004 *
2005 * @param array[] $aliases Map of (table => (dbname, schema, prefix) map)
2006 * @since 1.28
2007 */
2008 public function setTableAliases( array $aliases );
2009
2010 /**
2011 * Convert certain index names to alternative names before querying the DB
2012 *
2013 * Note that this applies to indexes regardless of the table they belong to.
2014 *
2015 * This can be employed when an index was renamed X => Y in code, but the new Y-named
2016 * indexes were not yet built on all DBs. After all the Y-named ones are added by the DBA,
2017 * the aliases can be removed, and then the old X-named indexes dropped.
2018 *
2019 * @param string[] $aliases
2020 * @return mixed
2021 * @since 1.31
2022 */
2023 public function setIndexAliases( array $aliases );
2024 }
2025
2026 class_alias( IDatabase::class, 'IDatabase' );