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