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