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