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