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