MediaWiki  1.32.0
Database.php
Go to the documentation of this file.
1 <?php
26 namespace Wikimedia\Rdbms;
27 
28 use Psr\Log\LoggerAwareInterface;
29 use Psr\Log\LoggerInterface;
30 use Psr\Log\NullLogger;
31 use Wikimedia\ScopedCallback;
32 use Wikimedia\Timestamp\ConvertibleTimestamp;
36 use LogicException;
37 use InvalidArgumentException;
38 use UnexpectedValueException;
39 use Exception;
40 use RuntimeException;
41 
48 abstract class Database implements IDatabase, IMaintainableDatabase, LoggerAwareInterface {
50  const DEADLOCK_TRIES = 4;
52  const DEADLOCK_DELAY_MIN = 500000;
54  const DEADLOCK_DELAY_MAX = 1500000;
55 
57  const PING_TTL = 1.0;
58  const PING_QUERY = 'SELECT 1 AS ping';
59 
60  const TINY_WRITE_SEC = 0.010;
61  const SLOW_WRITE_SEC = 0.500;
62  const SMALL_WRITE_ROWS = 100;
63 
65  const ATTR_DB_LEVEL_LOCKING = 'db-level-locking';
66 
68  const NEW_UNCONNECTED = 0;
70  const NEW_CONNECTED = 1;
71 
73  protected $lastQuery = '';
75  protected $lastWriteTime = false;
77  protected $phpError = false;
79  protected $server;
81  protected $user;
83  protected $password;
85  protected $tableAliases = [];
87  protected $indexAliases = [];
89  protected $cliMode;
91  protected $agent;
93  protected $connectionParams = [];
95  protected $srvCache;
97  protected $connLogger;
99  protected $queryLogger;
101  protected $errorLogger;
104 
106  protected $conn = null;
108  protected $opened = false;
109 
111  protected $trxIdleCallbacks = [];
113  protected $trxPreCommitCallbacks = [];
115  protected $trxEndCallbacks = [];
117  protected $trxRecurringCallbacks = [];
119  protected $trxEndCallbacksSuppressed = false;
120 
122  protected $flags;
124  protected $lbInfo = [];
126  protected $schemaVars = false;
128  protected $sessionVars = [];
130  protected $preparedArgs;
132  protected $htmlErrors;
134  protected $delimiter = ';';
136  protected $currentDomain;
138  protected $affectedRowCount;
139 
143  protected $trxStatus = self::STATUS_TRX_NONE;
147  protected $trxStatusCause;
159  protected $trxLevel = 0;
166  protected $trxShortId = '';
175  private $trxTimestamp = null;
177  private $trxReplicaLag = null;
185  private $trxFname = null;
192  private $trxDoneWrites = false;
199  private $trxAutomatic = false;
205  private $trxAtomicCounter = 0;
211  private $trxAtomicLevels = [];
217  private $trxAutomaticAtomic = false;
223  private $trxWriteCallers = [];
227  private $trxWriteDuration = 0.0;
231  private $trxWriteQueryCount = 0;
239  private $trxWriteAdjDuration = 0.0;
247  private $rttEstimate = 0.0;
248 
250  private $namedLocksHeld = [];
252  protected $sessionTempTables = [];
253 
256 
258  protected $lastPing = 0.0;
259 
261  private $priorFlags = [];
262 
264  protected $profiler;
266  protected $trxProfiler;
267 
270 
272  private static $NOT_APPLICABLE = 'n/a';
274  private static $SAVEPOINT_PREFIX = 'wikimedia_rdbms_atomic';
275 
277  const STATUS_TRX_ERROR = 1;
279  const STATUS_TRX_OK = 2;
281  const STATUS_TRX_NONE = 3;
282 
287  protected function __construct( array $params ) {
288  foreach ( [ 'host', 'user', 'password', 'dbname', 'schema', 'tablePrefix' ] as $name ) {
289  $this->connectionParams[$name] = $params[$name];
290  }
291 
292  $this->cliMode = $params['cliMode'];
293  // Agent name is added to SQL queries in a comment, so make sure it can't break out
294  $this->agent = str_replace( '/', '-', $params['agent'] );
295 
296  $this->flags = $params['flags'];
297  if ( $this->flags & self::DBO_DEFAULT ) {
298  if ( $this->cliMode ) {
299  $this->flags &= ~self::DBO_TRX;
300  } else {
301  $this->flags |= self::DBO_TRX;
302  }
303  }
304  // Disregard deprecated DBO_IGNORE flag (T189999)
305  $this->flags &= ~self::DBO_IGNORE;
306 
307  $this->sessionVars = $params['variables'];
308 
309  $this->srvCache = $params['srvCache'] ?? new HashBagOStuff();
310 
311  $this->profiler = $params['profiler'];
312  $this->trxProfiler = $params['trxProfiler'];
313  $this->connLogger = $params['connLogger'];
314  $this->queryLogger = $params['queryLogger'];
315  $this->errorLogger = $params['errorLogger'];
316  $this->deprecationLogger = $params['deprecationLogger'];
317 
318  if ( isset( $params['nonNativeInsertSelectBatchSize'] ) ) {
319  $this->nonNativeInsertSelectBatchSize = $params['nonNativeInsertSelectBatchSize'];
320  }
321 
322  // Set initial dummy domain until open() sets the final DB/prefix
323  $this->currentDomain = new DatabaseDomain(
324  $params['dbname'] != '' ? $params['dbname'] : null,
325  $params['schema'] != '' ? $params['schema'] : null,
326  $params['tablePrefix']
327  );
328  }
329 
338  final public function initConnection() {
339  if ( $this->isOpen() ) {
340  throw new LogicException( __METHOD__ . ': already connected.' );
341  }
342  // Establish the connection
343  $this->doInitConnection();
344  }
345 
353  protected function doInitConnection() {
354  if ( strlen( $this->connectionParams['user'] ) ) {
355  $this->open(
356  $this->connectionParams['host'],
357  $this->connectionParams['user'],
358  $this->connectionParams['password'],
359  $this->connectionParams['dbname'],
360  $this->connectionParams['schema'],
361  $this->connectionParams['tablePrefix']
362  );
363  } else {
364  throw new InvalidArgumentException( "No database user provided." );
365  }
366  }
367 
380  abstract protected function open( $server, $user, $password, $dbName, $schema, $tablePrefix );
381 
426  final public static function factory( $dbType, $p = [], $connect = self::NEW_CONNECTED ) {
427  $class = self::getClass( $dbType, $p['driver'] ?? null );
428 
429  if ( class_exists( $class ) && is_subclass_of( $class, IDatabase::class ) ) {
430  // Resolve some defaults for b/c
431  $p['host'] = $p['host'] ?? false;
432  $p['user'] = $p['user'] ?? false;
433  $p['password'] = $p['password'] ?? false;
434  $p['dbname'] = $p['dbname'] ?? false;
435  $p['flags'] = $p['flags'] ?? 0;
436  $p['variables'] = $p['variables'] ?? [];
437  $p['tablePrefix'] = $p['tablePrefix'] ?? '';
438  $p['schema'] = $p['schema'] ?? null;
439  $p['cliMode'] = $p['cliMode'] ?? ( PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg' );
440  $p['agent'] = $p['agent'] ?? '';
441  if ( !isset( $p['connLogger'] ) ) {
442  $p['connLogger'] = new NullLogger();
443  }
444  if ( !isset( $p['queryLogger'] ) ) {
445  $p['queryLogger'] = new NullLogger();
446  }
447  $p['profiler'] = $p['profiler'] ?? null;
448  if ( !isset( $p['trxProfiler'] ) ) {
449  $p['trxProfiler'] = new TransactionProfiler();
450  }
451  if ( !isset( $p['errorLogger'] ) ) {
452  $p['errorLogger'] = function ( Exception $e ) {
453  trigger_error( get_class( $e ) . ': ' . $e->getMessage(), E_USER_WARNING );
454  };
455  }
456  if ( !isset( $p['deprecationLogger'] ) ) {
457  $p['deprecationLogger'] = function ( $msg ) {
458  trigger_error( $msg, E_USER_DEPRECATED );
459  };
460  }
461 
463  $conn = new $class( $p );
464  if ( $connect == self::NEW_CONNECTED ) {
465  $conn->initConnection();
466  }
467  } else {
468  $conn = null;
469  }
470 
471  return $conn;
472  }
473 
481  final public static function attributesFromType( $dbType, $driver = null ) {
482  static $defaults = [ self::ATTR_DB_LEVEL_LOCKING => false ];
483 
484  $class = self::getClass( $dbType, $driver );
485 
486  return call_user_func( [ $class, 'getAttributes' ] ) + $defaults;
487  }
488 
495  private static function getClass( $dbType, $driver = null ) {
496  // For database types with built-in support, the below maps type to IDatabase
497  // implementations. For types with multipe driver implementations (PHP extensions),
498  // an array can be used, keyed by extension name. In case of an array, the
499  // optional 'driver' parameter can be used to force a specific driver. Otherwise,
500  // we auto-detect the first available driver. For types without built-in support,
501  // an class named "Database<Type>" us used, eg. DatabaseFoo for type 'foo'.
502  static $builtinTypes = [
503  'mssql' => DatabaseMssql::class,
504  'mysql' => [ 'mysqli' => DatabaseMysqli::class ],
505  'sqlite' => DatabaseSqlite::class,
506  'postgres' => DatabasePostgres::class,
507  ];
508 
509  $dbType = strtolower( $dbType );
510  $class = false;
511 
512  if ( isset( $builtinTypes[$dbType] ) ) {
513  $possibleDrivers = $builtinTypes[$dbType];
514  if ( is_string( $possibleDrivers ) ) {
515  $class = $possibleDrivers;
516  } else {
517  if ( (string)$driver !== '' ) {
518  if ( !isset( $possibleDrivers[$driver] ) ) {
519  throw new InvalidArgumentException( __METHOD__ .
520  " type '$dbType' does not support driver '{$driver}'" );
521  } else {
522  $class = $possibleDrivers[$driver];
523  }
524  } else {
525  foreach ( $possibleDrivers as $posDriver => $possibleClass ) {
526  if ( extension_loaded( $posDriver ) ) {
527  $class = $possibleClass;
528  break;
529  }
530  }
531  }
532  }
533  } else {
534  $class = 'Database' . ucfirst( $dbType );
535  }
536 
537  if ( $class === false ) {
538  throw new InvalidArgumentException( __METHOD__ .
539  " no viable database extension found for type '$dbType'" );
540  }
541 
542  return $class;
543  }
544 
549  protected static function getAttributes() {
550  return [];
551  }
552 
560  public function setLogger( LoggerInterface $logger ) {
561  $this->queryLogger = $logger;
562  }
563 
564  public function getServerInfo() {
565  return $this->getServerVersion();
566  }
567 
568  public function bufferResults( $buffer = null ) {
569  $res = !$this->getFlag( self::DBO_NOBUFFER );
570  if ( $buffer !== null ) {
571  $buffer
572  ? $this->clearFlag( self::DBO_NOBUFFER )
573  : $this->setFlag( self::DBO_NOBUFFER );
574  }
575 
576  return $res;
577  }
578 
579  public function trxLevel() {
580  return $this->trxLevel;
581  }
582 
583  public function trxTimestamp() {
584  return $this->trxLevel ? $this->trxTimestamp : null;
585  }
586 
591  public function trxStatus() {
592  return $this->trxStatus;
593  }
594 
595  public function tablePrefix( $prefix = null ) {
596  $old = $this->currentDomain->getTablePrefix();
597  if ( $prefix !== null ) {
598  $this->currentDomain = new DatabaseDomain(
599  $this->currentDomain->getDatabase(),
600  $this->currentDomain->getSchema(),
601  $prefix
602  );
603  }
604 
605  return $old;
606  }
607 
608  public function dbSchema( $schema = null ) {
609  $old = $this->currentDomain->getSchema();
610  if ( $schema !== null ) {
611  $this->currentDomain = new DatabaseDomain(
612  $this->currentDomain->getDatabase(),
613  // DatabaseDomain uses null for unspecified schemas
614  strlen( $schema ) ? $schema : null,
615  $this->currentDomain->getTablePrefix()
616  );
617  }
618 
619  return (string)$old;
620  }
621 
625  protected function relationSchemaQualifier() {
626  return $this->dbSchema();
627  }
628 
629  public function getLBInfo( $name = null ) {
630  if ( is_null( $name ) ) {
631  return $this->lbInfo;
632  } else {
633  if ( array_key_exists( $name, $this->lbInfo ) ) {
634  return $this->lbInfo[$name];
635  } else {
636  return null;
637  }
638  }
639  }
640 
641  public function setLBInfo( $name, $value = null ) {
642  if ( is_null( $value ) ) {
643  $this->lbInfo = $name;
644  } else {
645  $this->lbInfo[$name] = $value;
646  }
647  }
648 
649  public function setLazyMasterHandle( IDatabase $conn ) {
650  $this->lazyMasterHandle = $conn;
651  }
652 
658  protected function getLazyMasterHandle() {
660  }
661 
662  public function implicitGroupby() {
663  return true;
664  }
665 
666  public function implicitOrderby() {
667  return true;
668  }
669 
670  public function lastQuery() {
671  return $this->lastQuery;
672  }
673 
674  public function doneWrites() {
675  return (bool)$this->lastWriteTime;
676  }
677 
678  public function lastDoneWrites() {
679  return $this->lastWriteTime ?: false;
680  }
681 
682  public function writesPending() {
683  return $this->trxLevel && $this->trxDoneWrites;
684  }
685 
686  public function writesOrCallbacksPending() {
687  return $this->trxLevel && (
688  $this->trxDoneWrites ||
689  $this->trxIdleCallbacks ||
690  $this->trxPreCommitCallbacks ||
692  );
693  }
694 
695  public function preCommitCallbacksPending() {
696  return $this->trxLevel && $this->trxPreCommitCallbacks;
697  }
698 
702  final protected function getTransactionRoundId() {
703  // If transaction round participation is enabled, see if one is active
704  if ( $this->getFlag( self::DBO_TRX ) ) {
705  $id = $this->getLBInfo( 'trxRoundId' );
706 
707  return is_string( $id ) ? $id : null;
708  }
709 
710  return null;
711  }
712 
713  public function pendingWriteQueryDuration( $type = self::ESTIMATE_TOTAL ) {
714  if ( !$this->trxLevel ) {
715  return false;
716  } elseif ( !$this->trxDoneWrites ) {
717  return 0.0;
718  }
719 
720  switch ( $type ) {
721  case self::ESTIMATE_DB_APPLY:
722  $this->ping( $rtt );
723  $rttAdjTotal = $this->trxWriteAdjQueryCount * $rtt;
724  $applyTime = max( $this->trxWriteAdjDuration - $rttAdjTotal, 0 );
725  // For omitted queries, make them count as something at least
726  $omitted = $this->trxWriteQueryCount - $this->trxWriteAdjQueryCount;
727  $applyTime += self::TINY_WRITE_SEC * $omitted;
728 
729  return $applyTime;
730  default: // everything
732  }
733  }
734 
735  public function pendingWriteCallers() {
736  return $this->trxLevel ? $this->trxWriteCallers : [];
737  }
738 
739  public function pendingWriteRowsAffected() {
741  }
742 
751  public function pendingWriteAndCallbackCallers() {
752  $fnames = $this->pendingWriteCallers();
753  foreach ( [
754  $this->trxIdleCallbacks,
755  $this->trxPreCommitCallbacks,
756  $this->trxEndCallbacks
757  ] as $callbacks ) {
758  foreach ( $callbacks as $callback ) {
759  $fnames[] = $callback[1];
760  }
761  }
762 
763  return $fnames;
764  }
765 
769  private function flatAtomicSectionList() {
770  return array_reduce( $this->trxAtomicLevels, function ( $accum, $v ) {
771  return $accum === null ? $v[0] : "$accum, " . $v[0];
772  } );
773  }
774 
775  public function isOpen() {
776  return $this->opened;
777  }
778 
779  public function setFlag( $flag, $remember = self::REMEMBER_NOTHING ) {
780  if ( ( $flag & self::DBO_IGNORE ) ) {
781  throw new UnexpectedValueException( "Modifying DBO_IGNORE is not allowed." );
782  }
783 
784  if ( $remember === self::REMEMBER_PRIOR ) {
785  array_push( $this->priorFlags, $this->flags );
786  }
787  $this->flags |= $flag;
788  }
789 
790  public function clearFlag( $flag, $remember = self::REMEMBER_NOTHING ) {
791  if ( ( $flag & self::DBO_IGNORE ) ) {
792  throw new UnexpectedValueException( "Modifying DBO_IGNORE is not allowed." );
793  }
794 
795  if ( $remember === self::REMEMBER_PRIOR ) {
796  array_push( $this->priorFlags, $this->flags );
797  }
798  $this->flags &= ~$flag;
799  }
800 
801  public function restoreFlags( $state = self::RESTORE_PRIOR ) {
802  if ( !$this->priorFlags ) {
803  return;
804  }
805 
806  if ( $state === self::RESTORE_INITIAL ) {
807  $this->flags = reset( $this->priorFlags );
808  $this->priorFlags = [];
809  } else {
810  $this->flags = array_pop( $this->priorFlags );
811  }
812  }
813 
814  public function getFlag( $flag ) {
815  return !!( $this->flags & $flag );
816  }
817 
823  public function getProperty( $name ) {
824  return $this->$name;
825  }
826 
827  public function getDomainID() {
828  return $this->currentDomain->getId();
829  }
830 
831  final public function getWikiID() {
832  return $this->getDomainID();
833  }
834 
842  abstract function indexInfo( $table, $index, $fname = __METHOD__ );
843 
850  abstract function strencode( $s );
851 
855  protected function installErrorHandler() {
856  $this->phpError = false;
857  $this->htmlErrors = ini_set( 'html_errors', '0' );
858  set_error_handler( [ $this, 'connectionErrorLogger' ] );
859  }
860 
866  protected function restoreErrorHandler() {
867  restore_error_handler();
868  if ( $this->htmlErrors !== false ) {
869  ini_set( 'html_errors', $this->htmlErrors );
870  }
871 
872  return $this->getLastPHPError();
873  }
874 
878  protected function getLastPHPError() {
879  if ( $this->phpError ) {
880  $error = preg_replace( '!\[<a.*</a>\]!', '', $this->phpError );
881  $error = preg_replace( '!^.*?:\s?(.*)$!', '$1', $error );
882 
883  return $error;
884  }
885 
886  return false;
887  }
888 
896  public function connectionErrorLogger( $errno, $errstr ) {
897  $this->phpError = $errstr;
898  }
899 
906  protected function getLogContext( array $extras = [] ) {
907  return array_merge(
908  [
909  'db_server' => $this->server,
910  'db_name' => $this->getDBname(),
911  'db_user' => $this->user,
912  ],
913  $extras
914  );
915  }
916 
917  final public function close() {
918  $exception = null; // error to throw after disconnecting
919 
920  if ( $this->conn ) {
921  // Roll back any dangling transaction first
922  if ( $this->trxLevel ) {
923  if ( $this->trxAtomicLevels ) {
924  // Cannot let incomplete atomic sections be committed
925  $levels = $this->flatAtomicSectionList();
926  $exception = new DBUnexpectedError(
927  $this,
928  __METHOD__ . ": atomic sections $levels are still open."
929  );
930  } elseif ( $this->trxAutomatic ) {
931  // Only the connection manager can commit non-empty DBO_TRX transactions
932  // (empty ones we can silently roll back)
933  if ( $this->writesOrCallbacksPending() ) {
934  $exception = new DBUnexpectedError(
935  $this,
936  __METHOD__ .
937  ": mass commit/rollback of peer transaction required (DBO_TRX set)."
938  );
939  }
940  } else {
941  // Manual transactions should have been committed or rolled
942  // back, even if empty.
943  $exception = new DBUnexpectedError(
944  $this,
945  __METHOD__ . ": transaction is still open (from {$this->trxFname})."
946  );
947  }
948 
949  if ( $this->trxEndCallbacksSuppressed ) {
950  $exception = $exception ?: new DBUnexpectedError(
951  $this,
952  __METHOD__ . ': callbacks are suppressed; cannot properly commit.'
953  );
954  }
955 
956  // Rollback the changes and run any callbacks as needed
957  $this->rollback( __METHOD__, self::FLUSHING_INTERNAL );
958  }
959 
960  // Close the actual connection in the binding handle
961  $closed = $this->closeConnection();
962  $this->conn = false;
963  } else {
964  $closed = true; // already closed; nothing to do
965  }
966 
967  $this->opened = false;
968 
969  // Throw any unexpected errors after having disconnected
970  if ( $exception instanceof Exception ) {
971  throw $exception;
972  }
973 
974  // Sanity check that no callbacks are dangling
975  $fnames = $this->pendingWriteAndCallbackCallers();
976  if ( $fnames ) {
977  throw new RuntimeException(
978  "Transaction callbacks are still pending:\n" . implode( ', ', $fnames )
979  );
980  }
981 
982  return $closed;
983  }
984 
990  protected function assertOpen() {
991  if ( !$this->isOpen() ) {
992  throw new DBUnexpectedError( $this, "DB connection was already closed." );
993  }
994  }
995 
1001  abstract protected function closeConnection();
1002 
1008  public function reportConnectionError( $error = 'Unknown error' ) {
1009  call_user_func( $this->deprecationLogger, 'Use of ' . __METHOD__ . ' is deprecated.' );
1010  throw new DBConnectionError( $this, $this->lastError() ?: $error );
1011  }
1012 
1022  abstract protected function doQuery( $sql );
1023 
1040  protected function isWriteQuery( $sql ) {
1041  // BEGIN and COMMIT queries are considered read queries here.
1042  // Database backends and drivers (MySQL, MariaDB, php-mysqli) generally
1043  // treat these as write queries, in that their results have "affected rows"
1044  // as meta data as from writes, instead of "num rows" as from reads.
1045  // But, we treat them as read queries because when reading data (from
1046  // either replica or master) we use transactions to enable repeatable-read
1047  // snapshots, which ensures we get consistent results from the same snapshot
1048  // for all queries within a request. Use cases:
1049  // - Treating these as writes would trigger ChronologyProtector (see method doc).
1050  // - We use this method to reject writes to replicas, but we need to allow
1051  // use of transactions on replicas for read snapshots. This fine given
1052  // that transactions by themselves don't make changes, only actual writes
1053  // within the transaction matter, which we still detect.
1054  return !preg_match(
1055  '/^(?:SELECT|BEGIN|ROLLBACK|COMMIT|SET|SHOW|EXPLAIN|\(SELECT)\b/i', $sql );
1056  }
1057 
1062  protected function getQueryVerb( $sql ) {
1063  return preg_match( '/^\s*([a-z]+)/i', $sql, $m ) ? strtoupper( $m[1] ) : null;
1064  }
1065 
1079  protected function isTransactableQuery( $sql ) {
1080  return !in_array(
1081  $this->getQueryVerb( $sql ),
1082  [ 'BEGIN', 'ROLLBACK', 'COMMIT', 'SET', 'SHOW', 'CREATE', 'ALTER' ],
1083  true
1084  );
1085  }
1086 
1091  protected function registerTempTableOperation( $sql ) {
1092  if ( preg_match(
1093  '/^CREATE\s+TEMPORARY\s+TABLE\s+(?:IF\s+NOT\s+EXISTS\s+)?[`"\']?(\w+)[`"\']?/i',
1094  $sql,
1095  $matches
1096  ) ) {
1097  $this->sessionTempTables[$matches[1]] = 1;
1098 
1099  return true;
1100  } elseif ( preg_match(
1101  '/^DROP\s+(?:TEMPORARY\s+)?TABLE\s+(?:IF\s+EXISTS\s+)?[`"\']?(\w+)[`"\']?/i',
1102  $sql,
1103  $matches
1104  ) ) {
1105  $isTemp = isset( $this->sessionTempTables[$matches[1]] );
1106  unset( $this->sessionTempTables[$matches[1]] );
1107 
1108  return $isTemp;
1109  } elseif ( preg_match(
1110  '/^TRUNCATE\s+(?:TEMPORARY\s+)?TABLE\s+(?:IF\s+EXISTS\s+)?[`"\']?(\w+)[`"\']?/i',
1111  $sql,
1112  $matches
1113  ) ) {
1114  return isset( $this->sessionTempTables[$matches[1]] );
1115  } elseif ( preg_match(
1116  '/^(?:INSERT\s+(?:\w+\s+)?INTO|UPDATE|DELETE\s+FROM)\s+[`"\']?(\w+)[`"\']?/i',
1117  $sql,
1118  $matches
1119  ) ) {
1120  return isset( $this->sessionTempTables[$matches[1]] );
1121  }
1122 
1123  return false;
1124  }
1125 
1126  public function query( $sql, $fname = __METHOD__, $tempIgnore = false ) {
1127  $this->assertTransactionStatus( $sql, $fname );
1128 
1129  # Avoid fatals if close() was called
1130  $this->assertOpen();
1131 
1132  $priorWritesPending = $this->writesOrCallbacksPending();
1133  $this->lastQuery = $sql;
1134 
1135  $isWrite = $this->isWriteQuery( $sql );
1136  if ( $isWrite ) {
1137  $isNonTempWrite = !$this->registerTempTableOperation( $sql );
1138  } else {
1139  $isNonTempWrite = false;
1140  }
1141 
1142  if ( $isWrite ) {
1143  if ( $this->getLBInfo( 'replica' ) === true ) {
1144  throw new DBError(
1145  $this,
1146  'Write operations are not allowed on replica database connections.'
1147  );
1148  }
1149  # In theory, non-persistent writes are allowed in read-only mode, but due to things
1150  # like https://bugs.mysql.com/bug.php?id=33669 that might not work anyway...
1151  $reason = $this->getReadOnlyReason();
1152  if ( $reason !== false ) {
1153  throw new DBReadOnlyError( $this, "Database is read-only: $reason" );
1154  }
1155  # Set a flag indicating that writes have been done
1156  $this->lastWriteTime = microtime( true );
1157  }
1158 
1159  # Add trace comment to the begin of the sql string, right after the operator.
1160  # Or, for one-word queries (like "BEGIN" or COMMIT") add it to the end (T44598)
1161  $commentedSql = preg_replace( '/\s|$/', " /* $fname {$this->agent} */ ", $sql, 1 );
1162 
1163  # Start implicit transactions that wrap the request if DBO_TRX is enabled
1164  if ( !$this->trxLevel && $this->getFlag( self::DBO_TRX )
1165  && $this->isTransactableQuery( $sql )
1166  ) {
1167  $this->begin( __METHOD__ . " ($fname)", self::TRANSACTION_INTERNAL );
1168  $this->trxAutomatic = true;
1169  }
1170 
1171  # Keep track of whether the transaction has write queries pending
1172  if ( $this->trxLevel && !$this->trxDoneWrites && $isWrite ) {
1173  $this->trxDoneWrites = true;
1174  $this->trxProfiler->transactionWritingIn(
1175  $this->server, $this->getDomainID(), $this->trxShortId );
1176  }
1177 
1178  if ( $this->getFlag( self::DBO_DEBUG ) ) {
1179  $this->queryLogger->debug( "{$this->getDomainID()} {$commentedSql}" );
1180  }
1181 
1182  # Send the query to the server and fetch any corresponding errors
1183  $ret = $this->doProfiledQuery( $sql, $commentedSql, $isNonTempWrite, $fname );
1184  $lastError = $this->lastError();
1185  $lastErrno = $this->lastErrno();
1186 
1187  # Try reconnecting if the connection was lost
1188  if ( $ret === false && $this->wasConnectionLoss() ) {
1189  # Check if any meaningful session state was lost
1190  $recoverable = $this->canRecoverFromDisconnect( $sql, $priorWritesPending );
1191  # Update session state tracking and try to restore the connection
1192  $reconnected = $this->replaceLostConnection( __METHOD__ );
1193  # Silently resend the query to the server if it is safe and possible
1194  if ( $reconnected && $recoverable ) {
1195  $ret = $this->doProfiledQuery( $sql, $commentedSql, $isNonTempWrite, $fname );
1196  $lastError = $this->lastError();
1197  $lastErrno = $this->lastErrno();
1198 
1199  if ( $ret === false && $this->wasConnectionLoss() ) {
1200  # Query probably causes disconnects; reconnect and do not re-run it
1201  $this->replaceLostConnection( __METHOD__ );
1202  }
1203  }
1204  }
1205 
1206  if ( $ret === false ) {
1207  if ( $this->trxLevel ) {
1208  if ( $this->wasKnownStatementRollbackError() ) {
1209  # We're ignoring an error that caused just the current query to be aborted.
1210  # But log the cause so we can log a deprecation notice if a caller actually
1211  # does ignore it.
1212  $this->trxStatusIgnoredCause = [ $lastError, $lastErrno, $fname ];
1213  } else {
1214  # Either the query was aborted or all queries after BEGIN where aborted.
1215  # In the first case, the only options going forward are (a) ROLLBACK, or
1216  # (b) ROLLBACK TO SAVEPOINT (if one was set). If the later case, the only
1217  # option is ROLLBACK, since the snapshots would have been released.
1218  $this->trxStatus = self::STATUS_TRX_ERROR;
1219  $this->trxStatusCause =
1220  $this->makeQueryException( $lastError, $lastErrno, $sql, $fname );
1221  $tempIgnore = false; // cannot recover
1222  $this->trxStatusIgnoredCause = null;
1223  }
1224  }
1225 
1226  $this->reportQueryError( $lastError, $lastErrno, $sql, $fname, $tempIgnore );
1227  }
1228 
1229  return $this->resultObject( $ret );
1230  }
1231 
1242  private function doProfiledQuery( $sql, $commentedSql, $isWrite, $fname ) {
1243  $isMaster = !is_null( $this->getLBInfo( 'master' ) );
1244  # generalizeSQL() will probably cut down the query to reasonable
1245  # logging size most of the time. The substr is really just a sanity check.
1246  if ( $isMaster ) {
1247  $queryProf = 'query-m: ' . substr( self::generalizeSQL( $sql ), 0, 255 );
1248  } else {
1249  $queryProf = 'query: ' . substr( self::generalizeSQL( $sql ), 0, 255 );
1250  }
1251 
1252  # Include query transaction state
1253  $queryProf .= $this->trxShortId ? " [TRX#{$this->trxShortId}]" : "";
1254 
1255  $startTime = microtime( true );
1256  if ( $this->profiler ) {
1257  $this->profiler->profileIn( $queryProf );
1258  }
1259  $this->affectedRowCount = null;
1260  $ret = $this->doQuery( $commentedSql );
1261  $this->affectedRowCount = $this->affectedRows();
1262  if ( $this->profiler ) {
1263  $this->profiler->profileOut( $queryProf );
1264  }
1265  $queryRuntime = max( microtime( true ) - $startTime, 0.0 );
1266 
1267  unset( $queryProfSection ); // profile out (if set)
1268 
1269  if ( $ret !== false ) {
1270  $this->lastPing = $startTime;
1271  if ( $isWrite && $this->trxLevel ) {
1272  $this->updateTrxWriteQueryTime( $sql, $queryRuntime, $this->affectedRows() );
1273  $this->trxWriteCallers[] = $fname;
1274  }
1275  }
1276 
1277  if ( $sql === self::PING_QUERY ) {
1278  $this->rttEstimate = $queryRuntime;
1279  }
1280 
1281  $this->trxProfiler->recordQueryCompletion(
1282  $queryProf,
1283  $startTime,
1284  $isWrite,
1285  $isWrite ? $this->affectedRows() : $this->numRows( $ret )
1286  );
1287  $this->queryLogger->debug( $sql, [
1288  'method' => $fname,
1289  'master' => $isMaster,
1290  'runtime' => $queryRuntime,
1291  ] );
1292 
1293  return $ret;
1294  }
1295 
1308  private function updateTrxWriteQueryTime( $sql, $runtime, $affected ) {
1309  // Whether this is indicative of replica DB runtime (except for RBR or ws_repl)
1310  $indicativeOfReplicaRuntime = true;
1311  if ( $runtime > self::SLOW_WRITE_SEC ) {
1312  $verb = $this->getQueryVerb( $sql );
1313  // insert(), upsert(), replace() are fast unless bulky in size or blocked on locks
1314  if ( $verb === 'INSERT' ) {
1315  $indicativeOfReplicaRuntime = $this->affectedRows() > self::SMALL_WRITE_ROWS;
1316  } elseif ( $verb === 'REPLACE' ) {
1317  $indicativeOfReplicaRuntime = $this->affectedRows() > self::SMALL_WRITE_ROWS / 2;
1318  }
1319  }
1320 
1321  $this->trxWriteDuration += $runtime;
1322  $this->trxWriteQueryCount += 1;
1323  $this->trxWriteAffectedRows += $affected;
1324  if ( $indicativeOfReplicaRuntime ) {
1325  $this->trxWriteAdjDuration += $runtime;
1326  $this->trxWriteAdjQueryCount += 1;
1327  }
1328  }
1329 
1335  private function assertTransactionStatus( $sql, $fname ) {
1336  if ( $this->getQueryVerb( $sql ) === 'ROLLBACK' ) { // transaction/savepoint
1337  return;
1338  }
1339 
1340  if ( $this->trxStatus < self::STATUS_TRX_OK ) {
1341  throw new DBTransactionStateError(
1342  $this,
1343  "Cannot execute query from $fname while transaction status is ERROR.",
1344  [],
1345  $this->trxStatusCause
1346  );
1347  } elseif ( $this->trxStatus === self::STATUS_TRX_OK && $this->trxStatusIgnoredCause ) {
1348  list( $iLastError, $iLastErrno, $iFname ) = $this->trxStatusIgnoredCause;
1349  call_user_func( $this->deprecationLogger,
1350  "Caller from $fname ignored an error originally raised from $iFname: " .
1351  "[$iLastErrno] $iLastError"
1352  );
1353  $this->trxStatusIgnoredCause = null;
1354  }
1355  }
1356 
1357  public function assertNoOpenTransactions() {
1358  if ( $this->explicitTrxActive() ) {
1359  throw new DBTransactionError(
1360  $this,
1361  "Explicit transaction still active. A caller may have caught an error. "
1362  . "Open transactions: " . $this->flatAtomicSectionList()
1363  );
1364  }
1365  }
1366 
1377  private function canRecoverFromDisconnect( $sql, $priorWritesPending ) {
1378  # Transaction dropped; this can mean lost writes, or REPEATABLE-READ snapshots.
1379  # Dropped connections also mean that named locks are automatically released.
1380  # Only allow error suppression in autocommit mode or when the lost transaction
1381  # didn't matter anyway (aside from DBO_TRX snapshot loss).
1382  if ( $this->namedLocksHeld ) {
1383  return false; // possible critical section violation
1384  } elseif ( $this->sessionTempTables ) {
1385  return false; // tables might be queried latter
1386  } elseif ( $sql === 'COMMIT' ) {
1387  return !$priorWritesPending; // nothing written anyway? (T127428)
1388  } elseif ( $sql === 'ROLLBACK' ) {
1389  return true; // transaction lost...which is also what was requested :)
1390  } elseif ( $this->explicitTrxActive() ) {
1391  return false; // don't drop atomocity and explicit snapshots
1392  } elseif ( $priorWritesPending ) {
1393  return false; // prior writes lost from implicit transaction
1394  }
1395 
1396  return true;
1397  }
1398 
1402  private function handleSessionLoss() {
1403  // Clean up tracking of session-level things...
1404  // https://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html
1405  // https://www.postgresql.org/docs/9.2/static/sql-createtable.html (ignoring ON COMMIT)
1406  $this->sessionTempTables = [];
1407  // https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html#function_get-lock
1408  // https://www.postgresql.org/docs/9.4/static/functions-admin.html#FUNCTIONS-ADVISORY-LOCKS
1409  $this->namedLocksHeld = [];
1410  // Session loss implies transaction loss
1411  $this->handleTransactionLoss();
1412  }
1413 
1417  private function handleTransactionLoss() {
1418  $this->trxLevel = 0;
1419  $this->trxAtomicCounter = 0;
1420  $this->trxIdleCallbacks = []; // T67263; transaction already lost
1421  $this->trxPreCommitCallbacks = []; // T67263; transaction already lost
1422  try {
1423  // Handle callbacks in trxEndCallbacks, e.g. onTransactionResolution().
1424  // If callback suppression is set then the array will remain unhandled.
1425  $this->runOnTransactionIdleCallbacks( self::TRIGGER_ROLLBACK );
1426  } catch ( Exception $ex ) {
1427  // Already logged; move on...
1428  }
1429  try {
1430  // Handle callbacks in trxRecurringCallbacks, e.g. setTransactionListener()
1431  $this->runTransactionListenerCallbacks( self::TRIGGER_ROLLBACK );
1432  } catch ( Exception $ex ) {
1433  // Already logged; move on...
1434  }
1435  }
1436 
1447  protected function wasQueryTimeout( $error, $errno ) {
1448  return false;
1449  }
1450 
1462  public function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false ) {
1463  if ( $tempIgnore ) {
1464  $this->queryLogger->debug( "SQL ERROR (ignored): $error\n" );
1465  } else {
1466  $exception = $this->makeQueryException( $error, $errno, $sql, $fname );
1467 
1468  throw $exception;
1469  }
1470  }
1471 
1479  private function makeQueryException( $error, $errno, $sql, $fname ) {
1480  $sql1line = mb_substr( str_replace( "\n", "\\n", $sql ), 0, 5 * 1024 );
1481  $this->queryLogger->error(
1482  "{fname}\t{db_server}\t{errno}\t{error}\t{sql1line}",
1483  $this->getLogContext( [
1484  'method' => __METHOD__,
1485  'errno' => $errno,
1486  'error' => $error,
1487  'sql1line' => $sql1line,
1488  'fname' => $fname,
1489  ] )
1490  );
1491  $this->queryLogger->debug( "SQL ERROR: " . $error . "\n" );
1492  $wasQueryTimeout = $this->wasQueryTimeout( $error, $errno );
1493  if ( $wasQueryTimeout ) {
1494  $e = new DBQueryTimeoutError( $this, $error, $errno, $sql, $fname );
1495  } else {
1496  $e = new DBQueryError( $this, $error, $errno, $sql, $fname );
1497  }
1498 
1499  return $e;
1500  }
1501 
1502  public function freeResult( $res ) {
1503  }
1504 
1505  public function selectField(
1506  $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
1507  ) {
1508  if ( $var === '*' ) { // sanity
1509  throw new DBUnexpectedError( $this, "Cannot use a * field: got '$var'" );
1510  }
1511 
1512  if ( !is_array( $options ) ) {
1513  $options = [ $options ];
1514  }
1515 
1516  $options['LIMIT'] = 1;
1517 
1518  $res = $this->select( $table, $var, $cond, $fname, $options, $join_conds );
1519  if ( $res === false || !$this->numRows( $res ) ) {
1520  return false;
1521  }
1522 
1523  $row = $this->fetchRow( $res );
1524 
1525  if ( $row !== false ) {
1526  return reset( $row );
1527  } else {
1528  return false;
1529  }
1530  }
1531 
1532  public function selectFieldValues(
1533  $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
1534  ) {
1535  if ( $var === '*' ) { // sanity
1536  throw new DBUnexpectedError( $this, "Cannot use a * field" );
1537  } elseif ( !is_string( $var ) ) { // sanity
1538  throw new DBUnexpectedError( $this, "Cannot use an array of fields" );
1539  }
1540 
1541  if ( !is_array( $options ) ) {
1542  $options = [ $options ];
1543  }
1544 
1545  $res = $this->select( $table, [ 'value' => $var ], $cond, $fname, $options, $join_conds );
1546  if ( $res === false ) {
1547  return false;
1548  }
1549 
1550  $values = [];
1551  foreach ( $res as $row ) {
1552  $values[] = $row->value;
1553  }
1554 
1555  return $values;
1556  }
1557 
1567  protected function makeSelectOptions( $options ) {
1568  $preLimitTail = $postLimitTail = '';
1569  $startOpts = '';
1570 
1571  $noKeyOptions = [];
1572 
1573  foreach ( $options as $key => $option ) {
1574  if ( is_numeric( $key ) ) {
1575  $noKeyOptions[$option] = true;
1576  }
1577  }
1578 
1579  $preLimitTail .= $this->makeGroupByWithHaving( $options );
1580 
1581  $preLimitTail .= $this->makeOrderBy( $options );
1582 
1583  if ( isset( $noKeyOptions['FOR UPDATE'] ) ) {
1584  $postLimitTail .= ' FOR UPDATE';
1585  }
1586 
1587  if ( isset( $noKeyOptions['LOCK IN SHARE MODE'] ) ) {
1588  $postLimitTail .= ' LOCK IN SHARE MODE';
1589  }
1590 
1591  if ( isset( $noKeyOptions['DISTINCT'] ) || isset( $noKeyOptions['DISTINCTROW'] ) ) {
1592  $startOpts .= 'DISTINCT';
1593  }
1594 
1595  # Various MySQL extensions
1596  if ( isset( $noKeyOptions['STRAIGHT_JOIN'] ) ) {
1597  $startOpts .= ' /*! STRAIGHT_JOIN */';
1598  }
1599 
1600  if ( isset( $noKeyOptions['HIGH_PRIORITY'] ) ) {
1601  $startOpts .= ' HIGH_PRIORITY';
1602  }
1603 
1604  if ( isset( $noKeyOptions['SQL_BIG_RESULT'] ) ) {
1605  $startOpts .= ' SQL_BIG_RESULT';
1606  }
1607 
1608  if ( isset( $noKeyOptions['SQL_BUFFER_RESULT'] ) ) {
1609  $startOpts .= ' SQL_BUFFER_RESULT';
1610  }
1611 
1612  if ( isset( $noKeyOptions['SQL_SMALL_RESULT'] ) ) {
1613  $startOpts .= ' SQL_SMALL_RESULT';
1614  }
1615 
1616  if ( isset( $noKeyOptions['SQL_CALC_FOUND_ROWS'] ) ) {
1617  $startOpts .= ' SQL_CALC_FOUND_ROWS';
1618  }
1619 
1620  if ( isset( $noKeyOptions['SQL_CACHE'] ) ) {
1621  $startOpts .= ' SQL_CACHE';
1622  }
1623 
1624  if ( isset( $noKeyOptions['SQL_NO_CACHE'] ) ) {
1625  $startOpts .= ' SQL_NO_CACHE';
1626  }
1627 
1628  if ( isset( $options['USE INDEX'] ) && is_string( $options['USE INDEX'] ) ) {
1629  $useIndex = $this->useIndexClause( $options['USE INDEX'] );
1630  } else {
1631  $useIndex = '';
1632  }
1633  if ( isset( $options['IGNORE INDEX'] ) && is_string( $options['IGNORE INDEX'] ) ) {
1634  $ignoreIndex = $this->ignoreIndexClause( $options['IGNORE INDEX'] );
1635  } else {
1636  $ignoreIndex = '';
1637  }
1638 
1639  return [ $startOpts, $useIndex, $preLimitTail, $postLimitTail, $ignoreIndex ];
1640  }
1641 
1650  protected function makeGroupByWithHaving( $options ) {
1651  $sql = '';
1652  if ( isset( $options['GROUP BY'] ) ) {
1653  $gb = is_array( $options['GROUP BY'] )
1654  ? implode( ',', $options['GROUP BY'] )
1655  : $options['GROUP BY'];
1656  $sql .= ' GROUP BY ' . $gb;
1657  }
1658  if ( isset( $options['HAVING'] ) ) {
1659  $having = is_array( $options['HAVING'] )
1660  ? $this->makeList( $options['HAVING'], self::LIST_AND )
1661  : $options['HAVING'];
1662  $sql .= ' HAVING ' . $having;
1663  }
1664 
1665  return $sql;
1666  }
1667 
1676  protected function makeOrderBy( $options ) {
1677  if ( isset( $options['ORDER BY'] ) ) {
1678  $ob = is_array( $options['ORDER BY'] )
1679  ? implode( ',', $options['ORDER BY'] )
1680  : $options['ORDER BY'];
1681 
1682  return ' ORDER BY ' . $ob;
1683  }
1684 
1685  return '';
1686  }
1687 
1688  public function select(
1689  $table, $vars, $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
1690  ) {
1691  $sql = $this->selectSQLText( $table, $vars, $conds, $fname, $options, $join_conds );
1692 
1693  return $this->query( $sql, $fname );
1694  }
1695 
1696  public function selectSQLText( $table, $vars, $conds = '', $fname = __METHOD__,
1697  $options = [], $join_conds = []
1698  ) {
1699  if ( is_array( $vars ) ) {
1700  $fields = implode( ',', $this->fieldNamesWithAlias( $vars ) );
1701  } else {
1702  $fields = $vars;
1703  }
1704 
1705  $options = (array)$options;
1706  $useIndexes = ( isset( $options['USE INDEX'] ) && is_array( $options['USE INDEX'] ) )
1707  ? $options['USE INDEX']
1708  : [];
1709  $ignoreIndexes = (
1710  isset( $options['IGNORE INDEX'] ) &&
1711  is_array( $options['IGNORE INDEX'] )
1712  )
1713  ? $options['IGNORE INDEX']
1714  : [];
1715 
1716  if (
1719  ) {
1720  // Some DB types (postgres/oracle) disallow FOR UPDATE with aggregate
1721  // functions. Discourage use of such queries to encourage compatibility.
1722  call_user_func(
1723  $this->deprecationLogger,
1724  __METHOD__ . ": aggregation used with a locking SELECT ($fname)."
1725  );
1726  }
1727 
1728  if ( is_array( $table ) ) {
1729  $from = ' FROM ' .
1731  $table, $useIndexes, $ignoreIndexes, $join_conds );
1732  } elseif ( $table != '' ) {
1733  $from = ' FROM ' .
1735  [ $table ], $useIndexes, $ignoreIndexes, [] );
1736  } else {
1737  $from = '';
1738  }
1739 
1740  list( $startOpts, $useIndex, $preLimitTail, $postLimitTail, $ignoreIndex ) =
1741  $this->makeSelectOptions( $options );
1742 
1743  if ( is_array( $conds ) ) {
1744  $conds = $this->makeList( $conds, self::LIST_AND );
1745  }
1746 
1747  if ( $conds === null || $conds === false ) {
1748  $this->queryLogger->warning(
1749  __METHOD__
1750  . ' called from '
1751  . $fname
1752  . ' with incorrect parameters: $conds must be a string or an array'
1753  );
1754  $conds = '';
1755  }
1756 
1757  if ( $conds === '' || $conds === '*' ) {
1758  $sql = "SELECT $startOpts $fields $from $useIndex $ignoreIndex $preLimitTail";
1759  } elseif ( is_string( $conds ) ) {
1760  $sql = "SELECT $startOpts $fields $from $useIndex $ignoreIndex " .
1761  "WHERE $conds $preLimitTail";
1762  } else {
1763  throw new DBUnexpectedError( $this, __METHOD__ . ' called with incorrect parameters' );
1764  }
1765 
1766  if ( isset( $options['LIMIT'] ) ) {
1767  $sql = $this->limitResult( $sql, $options['LIMIT'],
1768  $options['OFFSET'] ?? false );
1769  }
1770  $sql = "$sql $postLimitTail";
1771 
1772  if ( isset( $options['EXPLAIN'] ) ) {
1773  $sql = 'EXPLAIN ' . $sql;
1774  }
1775 
1776  return $sql;
1777  }
1778 
1779  public function selectRow( $table, $vars, $conds, $fname = __METHOD__,
1780  $options = [], $join_conds = []
1781  ) {
1782  $options = (array)$options;
1783  $options['LIMIT'] = 1;
1784  $res = $this->select( $table, $vars, $conds, $fname, $options, $join_conds );
1785 
1786  if ( $res === false ) {
1787  return false;
1788  }
1789 
1790  if ( !$this->numRows( $res ) ) {
1791  return false;
1792  }
1793 
1794  $obj = $this->fetchObject( $res );
1795 
1796  return $obj;
1797  }
1798 
1799  public function estimateRowCount(
1800  $table, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
1801  ) {
1802  $conds = $this->normalizeConditions( $conds, $fname );
1803  $column = $this->extractSingleFieldFromList( $var );
1804  if ( is_string( $column ) && !in_array( $column, [ '*', '1' ] ) ) {
1805  $conds[] = "$column IS NOT NULL";
1806  }
1807 
1808  $res = $this->select(
1809  $table, [ 'rowcount' => 'COUNT(*)' ], $conds, $fname, $options, $join_conds
1810  );
1811  $row = $res ? $this->fetchRow( $res ) : [];
1812 
1813  return isset( $row['rowcount'] ) ? (int)$row['rowcount'] : 0;
1814  }
1815 
1816  public function selectRowCount(
1817  $tables, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
1818  ) {
1819  $conds = $this->normalizeConditions( $conds, $fname );
1820  $column = $this->extractSingleFieldFromList( $var );
1821  if ( is_string( $column ) && !in_array( $column, [ '*', '1' ] ) ) {
1822  $conds[] = "$column IS NOT NULL";
1823  }
1824 
1825  $res = $this->select(
1826  [
1827  'tmp_count' => $this->buildSelectSubquery(
1828  $tables,
1829  '1',
1830  $conds,
1831  $fname,
1832  $options,
1833  $join_conds
1834  )
1835  ],
1836  [ 'rowcount' => 'COUNT(*)' ],
1837  [],
1838  $fname
1839  );
1840  $row = $res ? $this->fetchRow( $res ) : [];
1841 
1842  return isset( $row['rowcount'] ) ? (int)$row['rowcount'] : 0;
1843  }
1844 
1850  $options = (array)$options;
1851  foreach ( [ 'FOR UPDATE', 'LOCK IN SHARE MODE' ] as $lock ) {
1852  if ( in_array( $lock, $options, true ) ) {
1853  return true;
1854  }
1855  }
1856 
1857  return false;
1858  }
1859 
1865  private function selectFieldsOrOptionsAggregate( $fields, $options ) {
1866  foreach ( (array)$options as $key => $value ) {
1867  if ( is_string( $key ) ) {
1868  if ( preg_match( '/^(?:GROUP BY|HAVING)$/i', $key ) ) {
1869  return true;
1870  }
1871  } elseif ( is_string( $value ) ) {
1872  if ( preg_match( '/^(?:DISTINCT|DISTINCTROW)$/i', $value ) ) {
1873  return true;
1874  }
1875  }
1876  }
1877 
1878  $regex = '/^(?:COUNT|MIN|MAX|SUM|GROUP_CONCAT|LISTAGG|ARRAY_AGG)\s*\\(/i';
1879  foreach ( (array)$fields as $field ) {
1880  if ( is_string( $field ) && preg_match( $regex, $field ) ) {
1881  return true;
1882  }
1883  }
1884 
1885  return false;
1886  }
1887 
1893  final protected function normalizeConditions( $conds, $fname ) {
1894  if ( $conds === null || $conds === false ) {
1895  $this->queryLogger->warning(
1896  __METHOD__
1897  . ' called from '
1898  . $fname
1899  . ' with incorrect parameters: $conds must be a string or an array'
1900  );
1901  $conds = '';
1902  }
1903 
1904  if ( !is_array( $conds ) ) {
1905  $conds = ( $conds === '' ) ? [] : [ $conds ];
1906  }
1907 
1908  return $conds;
1909  }
1910 
1916  final protected function extractSingleFieldFromList( $var ) {
1917  if ( is_array( $var ) ) {
1918  if ( !$var ) {
1919  $column = null;
1920  } elseif ( count( $var ) == 1 ) {
1921  $column = $var[0] ?? reset( $var );
1922  } else {
1923  throw new DBUnexpectedError( $this, __METHOD__ . ': got multiple columns.' );
1924  }
1925  } else {
1926  $column = $var;
1927  }
1928 
1929  return $column;
1930  }
1931 
1932  public function lockForUpdate(
1933  $table, $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
1934  ) {
1935  if ( !$this->trxLevel && !$this->getFlag( self::DBO_TRX ) ) {
1936  throw new DBUnexpectedError(
1937  $this,
1938  __METHOD__ . ': no transaction is active nor is DBO_TRX set'
1939  );
1940  }
1941 
1942  $options = (array)$options;
1943  $options[] = 'FOR UPDATE';
1944 
1945  return $this->selectRowCount( $table, '*', $conds, $fname, $options, $join_conds );
1946  }
1947 
1956  protected static function generalizeSQL( $sql ) {
1957  # This does the same as the regexp below would do, but in such a way
1958  # as to avoid crashing php on some large strings.
1959  # $sql = preg_replace( "/'([^\\\\']|\\\\.)*'|\"([^\\\\\"]|\\\\.)*\"/", "'X'", $sql );
1960 
1961  $sql = str_replace( "\\\\", '', $sql );
1962  $sql = str_replace( "\\'", '', $sql );
1963  $sql = str_replace( "\\\"", '', $sql );
1964  $sql = preg_replace( "/'.*'/s", "'X'", $sql );
1965  $sql = preg_replace( '/".*"/s', "'X'", $sql );
1966 
1967  # All newlines, tabs, etc replaced by single space
1968  $sql = preg_replace( '/\s+/', ' ', $sql );
1969 
1970  # All numbers => N,
1971  # except the ones surrounded by characters, e.g. l10n
1972  $sql = preg_replace( '/-?\d+(,-?\d+)+/s', 'N,...,N', $sql );
1973  $sql = preg_replace( '/(?<![a-zA-Z])-?\d+(?![a-zA-Z])/s', 'N', $sql );
1974 
1975  return $sql;
1976  }
1977 
1978  public function fieldExists( $table, $field, $fname = __METHOD__ ) {
1979  $info = $this->fieldInfo( $table, $field );
1980 
1981  return (bool)$info;
1982  }
1983 
1984  public function indexExists( $table, $index, $fname = __METHOD__ ) {
1985  if ( !$this->tableExists( $table ) ) {
1986  return null;
1987  }
1988 
1989  $info = $this->indexInfo( $table, $index, $fname );
1990  if ( is_null( $info ) ) {
1991  return null;
1992  } else {
1993  return $info !== false;
1994  }
1995  }
1996 
1997  abstract public function tableExists( $table, $fname = __METHOD__ );
1998 
1999  public function indexUnique( $table, $index ) {
2000  $indexInfo = $this->indexInfo( $table, $index );
2001 
2002  if ( !$indexInfo ) {
2003  return null;
2004  }
2005 
2006  return !$indexInfo[0]->Non_unique;
2007  }
2008 
2015  protected function makeInsertOptions( $options ) {
2016  return implode( ' ', $options );
2017  }
2018 
2019  public function insert( $table, $a, $fname = __METHOD__, $options = [] ) {
2020  # No rows to insert, easy just return now
2021  if ( !count( $a ) ) {
2022  return true;
2023  }
2024 
2025  $table = $this->tableName( $table );
2026 
2027  if ( !is_array( $options ) ) {
2028  $options = [ $options ];
2029  }
2030 
2031  $fh = null;
2032  if ( isset( $options['fileHandle'] ) ) {
2033  $fh = $options['fileHandle'];
2034  }
2035  $options = $this->makeInsertOptions( $options );
2036 
2037  if ( isset( $a[0] ) && is_array( $a[0] ) ) {
2038  $multi = true;
2039  $keys = array_keys( $a[0] );
2040  } else {
2041  $multi = false;
2042  $keys = array_keys( $a );
2043  }
2044 
2045  $sql = 'INSERT ' . $options .
2046  " INTO $table (" . implode( ',', $keys ) . ') VALUES ';
2047 
2048  if ( $multi ) {
2049  $first = true;
2050  foreach ( $a as $row ) {
2051  if ( $first ) {
2052  $first = false;
2053  } else {
2054  $sql .= ',';
2055  }
2056  $sql .= '(' . $this->makeList( $row ) . ')';
2057  }
2058  } else {
2059  $sql .= '(' . $this->makeList( $a ) . ')';
2060  }
2061 
2062  if ( $fh !== null && false === fwrite( $fh, $sql ) ) {
2063  return false;
2064  } elseif ( $fh !== null ) {
2065  return true;
2066  }
2067 
2068  return (bool)$this->query( $sql, $fname );
2069  }
2070 
2077  protected function makeUpdateOptionsArray( $options ) {
2078  if ( !is_array( $options ) ) {
2079  $options = [ $options ];
2080  }
2081 
2082  $opts = [];
2083 
2084  if ( in_array( 'IGNORE', $options ) ) {
2085  $opts[] = 'IGNORE';
2086  }
2087 
2088  return $opts;
2089  }
2090 
2097  protected function makeUpdateOptions( $options ) {
2098  $opts = $this->makeUpdateOptionsArray( $options );
2099 
2100  return implode( ' ', $opts );
2101  }
2102 
2103  public function update( $table, $values, $conds, $fname = __METHOD__, $options = [] ) {
2104  $table = $this->tableName( $table );
2105  $opts = $this->makeUpdateOptions( $options );
2106  $sql = "UPDATE $opts $table SET " . $this->makeList( $values, self::LIST_SET );
2107 
2108  if ( $conds !== [] && $conds !== '*' ) {
2109  $sql .= " WHERE " . $this->makeList( $conds, self::LIST_AND );
2110  }
2111 
2112  return (bool)$this->query( $sql, $fname );
2113  }
2114 
2115  public function makeList( $a, $mode = self::LIST_COMMA ) {
2116  if ( !is_array( $a ) ) {
2117  throw new DBUnexpectedError( $this, __METHOD__ . ' called with incorrect parameters' );
2118  }
2119 
2120  $first = true;
2121  $list = '';
2122 
2123  foreach ( $a as $field => $value ) {
2124  if ( !$first ) {
2125  if ( $mode == self::LIST_AND ) {
2126  $list .= ' AND ';
2127  } elseif ( $mode == self::LIST_OR ) {
2128  $list .= ' OR ';
2129  } else {
2130  $list .= ',';
2131  }
2132  } else {
2133  $first = false;
2134  }
2135 
2136  if ( ( $mode == self::LIST_AND || $mode == self::LIST_OR ) && is_numeric( $field ) ) {
2137  $list .= "($value)";
2138  } elseif ( $mode == self::LIST_SET && is_numeric( $field ) ) {
2139  $list .= "$value";
2140  } elseif (
2141  ( $mode == self::LIST_AND || $mode == self::LIST_OR ) && is_array( $value )
2142  ) {
2143  // Remove null from array to be handled separately if found
2144  $includeNull = false;
2145  foreach ( array_keys( $value, null, true ) as $nullKey ) {
2146  $includeNull = true;
2147  unset( $value[$nullKey] );
2148  }
2149  if ( count( $value ) == 0 && !$includeNull ) {
2150  throw new InvalidArgumentException(
2151  __METHOD__ . ": empty input for field $field" );
2152  } elseif ( count( $value ) == 0 ) {
2153  // only check if $field is null
2154  $list .= "$field IS NULL";
2155  } else {
2156  // IN clause contains at least one valid element
2157  if ( $includeNull ) {
2158  // Group subconditions to ensure correct precedence
2159  $list .= '(';
2160  }
2161  if ( count( $value ) == 1 ) {
2162  // Special-case single values, as IN isn't terribly efficient
2163  // Don't necessarily assume the single key is 0; we don't
2164  // enforce linear numeric ordering on other arrays here.
2165  $value = array_values( $value )[0];
2166  $list .= $field . " = " . $this->addQuotes( $value );
2167  } else {
2168  $list .= $field . " IN (" . $this->makeList( $value ) . ") ";
2169  }
2170  // if null present in array, append IS NULL
2171  if ( $includeNull ) {
2172  $list .= " OR $field IS NULL)";
2173  }
2174  }
2175  } elseif ( $value === null ) {
2176  if ( $mode == self::LIST_AND || $mode == self::LIST_OR ) {
2177  $list .= "$field IS ";
2178  } elseif ( $mode == self::LIST_SET ) {
2179  $list .= "$field = ";
2180  }
2181  $list .= 'NULL';
2182  } else {
2183  if (
2184  $mode == self::LIST_AND || $mode == self::LIST_OR || $mode == self::LIST_SET
2185  ) {
2186  $list .= "$field = ";
2187  }
2188  $list .= $mode == self::LIST_NAMES ? $value : $this->addQuotes( $value );
2189  }
2190  }
2191 
2192  return $list;
2193  }
2194 
2195  public function makeWhereFrom2d( $data, $baseKey, $subKey ) {
2196  $conds = [];
2197 
2198  foreach ( $data as $base => $sub ) {
2199  if ( count( $sub ) ) {
2200  $conds[] = $this->makeList(
2201  [ $baseKey => $base, $subKey => array_keys( $sub ) ],
2202  self::LIST_AND );
2203  }
2204  }
2205 
2206  if ( $conds ) {
2207  return $this->makeList( $conds, self::LIST_OR );
2208  } else {
2209  // Nothing to search for...
2210  return false;
2211  }
2212  }
2213 
2214  public function aggregateValue( $valuedata, $valuename = 'value' ) {
2215  return $valuename;
2216  }
2217 
2218  public function bitNot( $field ) {
2219  return "(~$field)";
2220  }
2221 
2222  public function bitAnd( $fieldLeft, $fieldRight ) {
2223  return "($fieldLeft & $fieldRight)";
2224  }
2225 
2226  public function bitOr( $fieldLeft, $fieldRight ) {
2227  return "($fieldLeft | $fieldRight)";
2228  }
2229 
2230  public function buildConcat( $stringList ) {
2231  return 'CONCAT(' . implode( ',', $stringList ) . ')';
2232  }
2233 
2234  public function buildGroupConcatField(
2235  $delim, $table, $field, $conds = '', $join_conds = []
2236  ) {
2237  $fld = "GROUP_CONCAT($field SEPARATOR " . $this->addQuotes( $delim ) . ')';
2238 
2239  return '(' . $this->selectSQLText( $table, $fld, $conds, null, [], $join_conds ) . ')';
2240  }
2241 
2242  public function buildSubstring( $input, $startPosition, $length = null ) {
2243  $this->assertBuildSubstringParams( $startPosition, $length );
2244  $functionBody = "$input FROM $startPosition";
2245  if ( $length !== null ) {
2246  $functionBody .= " FOR $length";
2247  }
2248  return 'SUBSTRING(' . $functionBody . ')';
2249  }
2250 
2263  protected function assertBuildSubstringParams( $startPosition, $length ) {
2264  if ( !is_int( $startPosition ) || $startPosition <= 0 ) {
2265  throw new InvalidArgumentException(
2266  '$startPosition must be a positive integer'
2267  );
2268  }
2269  if ( !( is_int( $length ) && $length >= 0 || $length === null ) ) {
2270  throw new InvalidArgumentException(
2271  '$length must be null or an integer greater than or equal to 0'
2272  );
2273  }
2274  }
2275 
2276  public function buildStringCast( $field ) {
2277  return $field;
2278  }
2279 
2280  public function buildIntegerCast( $field ) {
2281  return 'CAST( ' . $field . ' AS INTEGER )';
2282  }
2283 
2284  public function buildSelectSubquery(
2285  $table, $vars, $conds = '', $fname = __METHOD__,
2286  $options = [], $join_conds = []
2287  ) {
2288  return new Subquery(
2289  $this->selectSQLText( $table, $vars, $conds, $fname, $options, $join_conds )
2290  );
2291  }
2292 
2293  public function databasesAreIndependent() {
2294  return false;
2295  }
2296 
2297  final public function selectDB( $db ) {
2298  $this->selectDomain( new DatabaseDomain(
2299  $db,
2300  $this->currentDomain->getSchema(),
2301  $this->currentDomain->getTablePrefix()
2302  ) );
2303 
2304  return true;
2305  }
2306 
2307  final public function selectDomain( $domain ) {
2308  $this->doSelectDomain( DatabaseDomain::newFromId( $domain ) );
2309  }
2310 
2311  protected function doSelectDomain( DatabaseDomain $domain ) {
2312  $this->currentDomain = $domain;
2313  }
2314 
2315  public function getDBname() {
2316  return $this->currentDomain->getDatabase();
2317  }
2318 
2319  public function getServer() {
2320  return $this->server;
2321  }
2322 
2323  public function tableName( $name, $format = 'quoted' ) {
2324  if ( $name instanceof Subquery ) {
2325  throw new DBUnexpectedError(
2326  $this,
2327  __METHOD__ . ': got Subquery instance when expecting a string.'
2328  );
2329  }
2330 
2331  # Skip the entire process when we have a string quoted on both ends.
2332  # Note that we check the end so that we will still quote any use of
2333  # use of `database`.table. But won't break things if someone wants
2334  # to query a database table with a dot in the name.
2335  if ( $this->isQuotedIdentifier( $name ) ) {
2336  return $name;
2337  }
2338 
2339  # Lets test for any bits of text that should never show up in a table
2340  # name. Basically anything like JOIN or ON which are actually part of
2341  # SQL queries, but may end up inside of the table value to combine
2342  # sql. Such as how the API is doing.
2343  # Note that we use a whitespace test rather than a \b test to avoid
2344  # any remote case where a word like on may be inside of a table name
2345  # surrounded by symbols which may be considered word breaks.
2346  if ( preg_match( '/(^|\s)(DISTINCT|JOIN|ON|AS)(\s|$)/i', $name ) !== 0 ) {
2347  $this->queryLogger->warning(
2348  __METHOD__ . ": use of subqueries is not supported this way.",
2349  [ 'trace' => ( new RuntimeException() )->getTraceAsString() ]
2350  );
2351 
2352  return $name;
2353  }
2354 
2355  # Split database and table into proper variables.
2356  list( $database, $schema, $prefix, $table ) = $this->qualifiedTableComponents( $name );
2357 
2358  # Quote $table and apply the prefix if not quoted.
2359  # $tableName might be empty if this is called from Database::replaceVars()
2360  $tableName = "{$prefix}{$table}";
2361  if ( $format === 'quoted'
2362  && !$this->isQuotedIdentifier( $tableName )
2363  && $tableName !== ''
2364  ) {
2365  $tableName = $this->addIdentifierQuotes( $tableName );
2366  }
2367 
2368  # Quote $schema and $database and merge them with the table name if needed
2369  $tableName = $this->prependDatabaseOrSchema( $schema, $tableName, $format );
2370  $tableName = $this->prependDatabaseOrSchema( $database, $tableName, $format );
2371 
2372  return $tableName;
2373  }
2374 
2381  protected function qualifiedTableComponents( $name ) {
2382  # We reverse the explode so that database.table and table both output the correct table.
2383  $dbDetails = explode( '.', $name, 3 );
2384  if ( count( $dbDetails ) == 3 ) {
2385  list( $database, $schema, $table ) = $dbDetails;
2386  # We don't want any prefix added in this case
2387  $prefix = '';
2388  } elseif ( count( $dbDetails ) == 2 ) {
2389  list( $database, $table ) = $dbDetails;
2390  # We don't want any prefix added in this case
2391  $prefix = '';
2392  # In dbs that support it, $database may actually be the schema
2393  # but that doesn't affect any of the functionality here
2394  $schema = '';
2395  } else {
2396  list( $table ) = $dbDetails;
2397  if ( isset( $this->tableAliases[$table] ) ) {
2398  $database = $this->tableAliases[$table]['dbname'];
2399  $schema = is_string( $this->tableAliases[$table]['schema'] )
2400  ? $this->tableAliases[$table]['schema']
2401  : $this->relationSchemaQualifier();
2402  $prefix = is_string( $this->tableAliases[$table]['prefix'] )
2403  ? $this->tableAliases[$table]['prefix']
2404  : $this->tablePrefix();
2405  } else {
2406  $database = '';
2407  $schema = $this->relationSchemaQualifier(); # Default schema
2408  $prefix = $this->tablePrefix(); # Default prefix
2409  }
2410  }
2411 
2412  return [ $database, $schema, $prefix, $table ];
2413  }
2414 
2421  private function prependDatabaseOrSchema( $namespace, $relation, $format ) {
2422  if ( strlen( $namespace ) ) {
2423  if ( $format === 'quoted' && !$this->isQuotedIdentifier( $namespace ) ) {
2424  $namespace = $this->addIdentifierQuotes( $namespace );
2425  }
2426  $relation = $namespace . '.' . $relation;
2427  }
2428 
2429  return $relation;
2430  }
2431 
2432  public function tableNames() {
2433  $inArray = func_get_args();
2434  $retVal = [];
2435 
2436  foreach ( $inArray as $name ) {
2437  $retVal[$name] = $this->tableName( $name );
2438  }
2439 
2440  return $retVal;
2441  }
2442 
2443  public function tableNamesN() {
2444  $inArray = func_get_args();
2445  $retVal = [];
2446 
2447  foreach ( $inArray as $name ) {
2448  $retVal[] = $this->tableName( $name );
2449  }
2450 
2451  return $retVal;
2452  }
2453 
2465  protected function tableNameWithAlias( $table, $alias = false ) {
2466  if ( is_string( $table ) ) {
2467  $quotedTable = $this->tableName( $table );
2468  } elseif ( $table instanceof Subquery ) {
2469  $quotedTable = (string)$table;
2470  } else {
2471  throw new InvalidArgumentException( "Table must be a string or Subquery." );
2472  }
2473 
2474  if ( !strlen( $alias ) || $alias === $table ) {
2475  if ( $table instanceof Subquery ) {
2476  throw new InvalidArgumentException( "Subquery table missing alias." );
2477  }
2478 
2479  return $quotedTable;
2480  } else {
2481  return $quotedTable . ' ' . $this->addIdentifierQuotes( $alias );
2482  }
2483  }
2484 
2491  protected function tableNamesWithAlias( $tables ) {
2492  $retval = [];
2493  foreach ( $tables as $alias => $table ) {
2494  if ( is_numeric( $alias ) ) {
2495  $alias = $table;
2496  }
2497  $retval[] = $this->tableNameWithAlias( $table, $alias );
2498  }
2499 
2500  return $retval;
2501  }
2502 
2511  protected function fieldNameWithAlias( $name, $alias = false ) {
2512  if ( !$alias || (string)$alias === (string)$name ) {
2513  return $name;
2514  } else {
2515  return $name . ' AS ' . $this->addIdentifierQuotes( $alias ); // PostgreSQL needs AS
2516  }
2517  }
2518 
2525  protected function fieldNamesWithAlias( $fields ) {
2526  $retval = [];
2527  foreach ( $fields as $alias => $field ) {
2528  if ( is_numeric( $alias ) ) {
2529  $alias = $field;
2530  }
2531  $retval[] = $this->fieldNameWithAlias( $field, $alias );
2532  }
2533 
2534  return $retval;
2535  }
2536 
2548  $tables, $use_index = [], $ignore_index = [], $join_conds = []
2549  ) {
2550  $ret = [];
2551  $retJOIN = [];
2552  $use_index = (array)$use_index;
2553  $ignore_index = (array)$ignore_index;
2554  $join_conds = (array)$join_conds;
2555 
2556  foreach ( $tables as $alias => $table ) {
2557  if ( !is_string( $alias ) ) {
2558  // No alias? Set it equal to the table name
2559  $alias = $table;
2560  }
2561 
2562  if ( is_array( $table ) ) {
2563  // A parenthesized group
2564  if ( count( $table ) > 1 ) {
2565  $joinedTable = '(' .
2567  $table, $use_index, $ignore_index, $join_conds ) . ')';
2568  } else {
2569  // Degenerate case
2570  $innerTable = reset( $table );
2571  $innerAlias = key( $table );
2572  $joinedTable = $this->tableNameWithAlias(
2573  $innerTable,
2574  is_string( $innerAlias ) ? $innerAlias : $innerTable
2575  );
2576  }
2577  } else {
2578  $joinedTable = $this->tableNameWithAlias( $table, $alias );
2579  }
2580 
2581  // Is there a JOIN clause for this table?
2582  if ( isset( $join_conds[$alias] ) ) {
2583  list( $joinType, $conds ) = $join_conds[$alias];
2584  $tableClause = $joinType;
2585  $tableClause .= ' ' . $joinedTable;
2586  if ( isset( $use_index[$alias] ) ) { // has USE INDEX?
2587  $use = $this->useIndexClause( implode( ',', (array)$use_index[$alias] ) );
2588  if ( $use != '' ) {
2589  $tableClause .= ' ' . $use;
2590  }
2591  }
2592  if ( isset( $ignore_index[$alias] ) ) { // has IGNORE INDEX?
2593  $ignore = $this->ignoreIndexClause(
2594  implode( ',', (array)$ignore_index[$alias] ) );
2595  if ( $ignore != '' ) {
2596  $tableClause .= ' ' . $ignore;
2597  }
2598  }
2599  $on = $this->makeList( (array)$conds, self::LIST_AND );
2600  if ( $on != '' ) {
2601  $tableClause .= ' ON (' . $on . ')';
2602  }
2603 
2604  $retJOIN[] = $tableClause;
2605  } elseif ( isset( $use_index[$alias] ) ) {
2606  // Is there an INDEX clause for this table?
2607  $tableClause = $joinedTable;
2608  $tableClause .= ' ' . $this->useIndexClause(
2609  implode( ',', (array)$use_index[$alias] )
2610  );
2611 
2612  $ret[] = $tableClause;
2613  } elseif ( isset( $ignore_index[$alias] ) ) {
2614  // Is there an INDEX clause for this table?
2615  $tableClause = $joinedTable;
2616  $tableClause .= ' ' . $this->ignoreIndexClause(
2617  implode( ',', (array)$ignore_index[$alias] )
2618  );
2619 
2620  $ret[] = $tableClause;
2621  } else {
2622  $tableClause = $joinedTable;
2623 
2624  $ret[] = $tableClause;
2625  }
2626  }
2627 
2628  // We can't separate explicit JOIN clauses with ',', use ' ' for those
2629  $implicitJoins = $ret ? implode( ',', $ret ) : "";
2630  $explicitJoins = $retJOIN ? implode( ' ', $retJOIN ) : "";
2631 
2632  // Compile our final table clause
2633  return implode( ' ', [ $implicitJoins, $explicitJoins ] );
2634  }
2635 
2642  protected function indexName( $index ) {
2643  return $this->indexAliases[$index] ?? $index;
2644  }
2645 
2646  public function addQuotes( $s ) {
2647  if ( $s instanceof Blob ) {
2648  $s = $s->fetch();
2649  }
2650  if ( $s === null ) {
2651  return 'NULL';
2652  } elseif ( is_bool( $s ) ) {
2653  return (int)$s;
2654  } else {
2655  # This will also quote numeric values. This should be harmless,
2656  # and protects against weird problems that occur when they really
2657  # _are_ strings such as article titles and string->number->string
2658  # conversion is not 1:1.
2659  return "'" . $this->strencode( $s ) . "'";
2660  }
2661  }
2662 
2672  public function addIdentifierQuotes( $s ) {
2673  return '"' . str_replace( '"', '""', $s ) . '"';
2674  }
2675 
2685  public function isQuotedIdentifier( $name ) {
2686  return $name[0] == '"' && substr( $name, -1, 1 ) == '"';
2687  }
2688 
2694  protected function escapeLikeInternal( $s, $escapeChar = '`' ) {
2695  return str_replace( [ $escapeChar, '%', '_' ],
2696  [ "{$escapeChar}{$escapeChar}", "{$escapeChar}%", "{$escapeChar}_" ],
2697  $s );
2698  }
2699 
2700  public function buildLike() {
2701  $params = func_get_args();
2702 
2703  if ( count( $params ) > 0 && is_array( $params[0] ) ) {
2704  $params = $params[0];
2705  }
2706 
2707  $s = '';
2708 
2709  // We use ` instead of \ as the default LIKE escape character, since addQuotes()
2710  // may escape backslashes, creating problems of double escaping. The `
2711  // character has good cross-DBMS compatibility, avoiding special operators
2712  // in MS SQL like ^ and %
2713  $escapeChar = '`';
2714 
2715  foreach ( $params as $value ) {
2716  if ( $value instanceof LikeMatch ) {
2717  $s .= $value->toString();
2718  } else {
2719  $s .= $this->escapeLikeInternal( $value, $escapeChar );
2720  }
2721  }
2722 
2723  return ' LIKE ' .
2724  $this->addQuotes( $s ) . ' ESCAPE ' . $this->addQuotes( $escapeChar ) . ' ';
2725  }
2726 
2727  public function anyChar() {
2728  return new LikeMatch( '_' );
2729  }
2730 
2731  public function anyString() {
2732  return new LikeMatch( '%' );
2733  }
2734 
2735  public function nextSequenceValue( $seqName ) {
2736  return null;
2737  }
2738 
2749  public function useIndexClause( $index ) {
2750  return '';
2751  }
2752 
2763  public function ignoreIndexClause( $index ) {
2764  return '';
2765  }
2766 
2767  public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__ ) {
2768  if ( count( $rows ) == 0 ) {
2769  return;
2770  }
2771 
2772  // Single row case
2773  if ( !is_array( reset( $rows ) ) ) {
2774  $rows = [ $rows ];
2775  }
2776 
2777  try {
2778  $this->startAtomic( $fname, self::ATOMIC_CANCELABLE );
2779  $affectedRowCount = 0;
2780  foreach ( $rows as $row ) {
2781  // Delete rows which collide with this one
2782  $indexWhereClauses = [];
2783  foreach ( $uniqueIndexes as $index ) {
2784  $indexColumns = (array)$index;
2785  $indexRowValues = array_intersect_key( $row, array_flip( $indexColumns ) );
2786  if ( count( $indexRowValues ) != count( $indexColumns ) ) {
2787  throw new DBUnexpectedError(
2788  $this,
2789  'New record does not provide all values for unique key (' .
2790  implode( ', ', $indexColumns ) . ')'
2791  );
2792  } elseif ( in_array( null, $indexRowValues, true ) ) {
2793  throw new DBUnexpectedError(
2794  $this,
2795  'New record has a null value for unique key (' .
2796  implode( ', ', $indexColumns ) . ')'
2797  );
2798  }
2799  $indexWhereClauses[] = $this->makeList( $indexRowValues, LIST_AND );
2800  }
2801 
2802  if ( $indexWhereClauses ) {
2803  $this->delete( $table, $this->makeList( $indexWhereClauses, LIST_OR ), $fname );
2804  $affectedRowCount += $this->affectedRows();
2805  }
2806 
2807  // Now insert the row
2808  $this->insert( $table, $row, $fname );
2809  $affectedRowCount += $this->affectedRows();
2810  }
2811  $this->endAtomic( $fname );
2812  $this->affectedRowCount = $affectedRowCount;
2813  } catch ( Exception $e ) {
2814  $this->cancelAtomic( $fname );
2815  throw $e;
2816  }
2817  }
2818 
2829  protected function nativeReplace( $table, $rows, $fname ) {
2830  $table = $this->tableName( $table );
2831 
2832  # Single row case
2833  if ( !is_array( reset( $rows ) ) ) {
2834  $rows = [ $rows ];
2835  }
2836 
2837  $sql = "REPLACE INTO $table (" . implode( ',', array_keys( $rows[0] ) ) . ') VALUES ';
2838  $first = true;
2839 
2840  foreach ( $rows as $row ) {
2841  if ( $first ) {
2842  $first = false;
2843  } else {
2844  $sql .= ',';
2845  }
2846 
2847  $sql .= '(' . $this->makeList( $row ) . ')';
2848  }
2849 
2850  return $this->query( $sql, $fname );
2851  }
2852 
2853  public function upsert( $table, array $rows, array $uniqueIndexes, array $set,
2854  $fname = __METHOD__
2855  ) {
2856  if ( !count( $rows ) ) {
2857  return true; // nothing to do
2858  }
2859 
2860  if ( !is_array( reset( $rows ) ) ) {
2861  $rows = [ $rows ];
2862  }
2863 
2864  if ( count( $uniqueIndexes ) ) {
2865  $clauses = []; // list WHERE clauses that each identify a single row
2866  foreach ( $rows as $row ) {
2867  foreach ( $uniqueIndexes as $index ) {
2868  $index = is_array( $index ) ? $index : [ $index ]; // columns
2869  $rowKey = []; // unique key to this row
2870  foreach ( $index as $column ) {
2871  $rowKey[$column] = $row[$column];
2872  }
2873  $clauses[] = $this->makeList( $rowKey, self::LIST_AND );
2874  }
2875  }
2876  $where = [ $this->makeList( $clauses, self::LIST_OR ) ];
2877  } else {
2878  $where = false;
2879  }
2880 
2881  $affectedRowCount = 0;
2882  try {
2883  $this->startAtomic( $fname, self::ATOMIC_CANCELABLE );
2884  # Update any existing conflicting row(s)
2885  if ( $where !== false ) {
2886  $ok = $this->update( $table, $set, $where, $fname );
2887  $affectedRowCount += $this->affectedRows();
2888  } else {
2889  $ok = true;
2890  }
2891  # Now insert any non-conflicting row(s)
2892  $ok = $this->insert( $table, $rows, $fname, [ 'IGNORE' ] ) && $ok;
2893  $affectedRowCount += $this->affectedRows();
2894  $this->endAtomic( $fname );
2895  $this->affectedRowCount = $affectedRowCount;
2896  } catch ( Exception $e ) {
2897  $this->cancelAtomic( $fname );
2898  throw $e;
2899  }
2900 
2901  return $ok;
2902  }
2903 
2904  public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
2905  $fname = __METHOD__
2906  ) {
2907  if ( !$conds ) {
2908  throw new DBUnexpectedError( $this, __METHOD__ . ' called with empty $conds' );
2909  }
2910 
2911  $delTable = $this->tableName( $delTable );
2912  $joinTable = $this->tableName( $joinTable );
2913  $sql = "DELETE FROM $delTable WHERE $delVar IN (SELECT $joinVar FROM $joinTable ";
2914  if ( $conds != '*' ) {
2915  $sql .= 'WHERE ' . $this->makeList( $conds, self::LIST_AND );
2916  }
2917  $sql .= ')';
2918 
2919  $this->query( $sql, $fname );
2920  }
2921 
2922  public function textFieldSize( $table, $field ) {
2923  $table = $this->tableName( $table );
2924  $sql = "SHOW COLUMNS FROM $table LIKE \"$field\";";
2925  $res = $this->query( $sql, __METHOD__ );
2926  $row = $this->fetchObject( $res );
2927 
2928  $m = [];
2929 
2930  if ( preg_match( '/\((.*)\)/', $row->Type, $m ) ) {
2931  $size = $m[1];
2932  } else {
2933  $size = -1;
2934  }
2935 
2936  return $size;
2937  }
2938 
2939  public function delete( $table, $conds, $fname = __METHOD__ ) {
2940  if ( !$conds ) {
2941  throw new DBUnexpectedError( $this, __METHOD__ . ' called with no conditions' );
2942  }
2943 
2944  $table = $this->tableName( $table );
2945  $sql = "DELETE FROM $table";
2946 
2947  if ( $conds != '*' ) {
2948  if ( is_array( $conds ) ) {
2949  $conds = $this->makeList( $conds, self::LIST_AND );
2950  }
2951  $sql .= ' WHERE ' . $conds;
2952  }
2953 
2954  return $this->query( $sql, $fname );
2955  }
2956 
2957  final public function insertSelect(
2958  $destTable, $srcTable, $varMap, $conds,
2959  $fname = __METHOD__, $insertOptions = [], $selectOptions = [], $selectJoinConds = []
2960  ) {
2961  static $hints = [ 'NO_AUTO_COLUMNS' ];
2962 
2963  $insertOptions = (array)$insertOptions;
2964  $selectOptions = (array)$selectOptions;
2965 
2966  if ( $this->cliMode && $this->isInsertSelectSafe( $insertOptions, $selectOptions ) ) {
2967  // For massive migrations with downtime, we don't want to select everything
2968  // into memory and OOM, so do all this native on the server side if possible.
2969  return $this->nativeInsertSelect(
2970  $destTable,
2971  $srcTable,
2972  $varMap,
2973  $conds,
2974  $fname,
2975  array_diff( $insertOptions, $hints ),
2976  $selectOptions,
2977  $selectJoinConds
2978  );
2979  }
2980 
2981  return $this->nonNativeInsertSelect(
2982  $destTable,
2983  $srcTable,
2984  $varMap,
2985  $conds,
2986  $fname,
2987  array_diff( $insertOptions, $hints ),
2988  $selectOptions,
2989  $selectJoinConds
2990  );
2991  }
2992 
2999  protected function isInsertSelectSafe( array $insertOptions, array $selectOptions ) {
3000  return true;
3001  }
3002 
3018  protected function nonNativeInsertSelect( $destTable, $srcTable, $varMap, $conds,
3019  $fname = __METHOD__,
3020  $insertOptions = [], $selectOptions = [], $selectJoinConds = []
3021  ) {
3022  // For web requests, do a locking SELECT and then INSERT. This puts the SELECT burden
3023  // on only the master (without needing row-based-replication). It also makes it easy to
3024  // know how big the INSERT is going to be.
3025  $fields = [];
3026  foreach ( $varMap as $dstColumn => $sourceColumnOrSql ) {
3027  $fields[] = $this->fieldNameWithAlias( $sourceColumnOrSql, $dstColumn );
3028  }
3029  $selectOptions[] = 'FOR UPDATE';
3030  $res = $this->select(
3031  $srcTable, implode( ',', $fields ), $conds, $fname, $selectOptions, $selectJoinConds
3032  );
3033  if ( !$res ) {
3034  return false;
3035  }
3036 
3037  try {
3038  $affectedRowCount = 0;
3039  $this->startAtomic( $fname, self::ATOMIC_CANCELABLE );
3040  $rows = [];
3041  $ok = true;
3042  foreach ( $res as $row ) {
3043  $rows[] = (array)$row;
3044 
3045  // Avoid inserts that are too huge
3047  $ok = $this->insert( $destTable, $rows, $fname, $insertOptions );
3048  if ( !$ok ) {
3049  break;
3050  }
3051  $affectedRowCount += $this->affectedRows();
3052  $rows = [];
3053  }
3054  }
3055  if ( $rows && $ok ) {
3056  $ok = $this->insert( $destTable, $rows, $fname, $insertOptions );
3057  if ( $ok ) {
3058  $affectedRowCount += $this->affectedRows();
3059  }
3060  }
3061  if ( $ok ) {
3062  $this->endAtomic( $fname );
3063  $this->affectedRowCount = $affectedRowCount;
3064  } else {
3065  $this->cancelAtomic( $fname );
3066  }
3067  return $ok;
3068  } catch ( Exception $e ) {
3069  $this->cancelAtomic( $fname );
3070  throw $e;
3071  }
3072  }
3073 
3089  protected function nativeInsertSelect( $destTable, $srcTable, $varMap, $conds,
3090  $fname = __METHOD__,
3091  $insertOptions = [], $selectOptions = [], $selectJoinConds = []
3092  ) {
3093  $destTable = $this->tableName( $destTable );
3094 
3095  if ( !is_array( $insertOptions ) ) {
3096  $insertOptions = [ $insertOptions ];
3097  }
3098 
3099  $insertOptions = $this->makeInsertOptions( $insertOptions );
3100 
3101  $selectSql = $this->selectSQLText(
3102  $srcTable,
3103  array_values( $varMap ),
3104  $conds,
3105  $fname,
3106  $selectOptions,
3107  $selectJoinConds
3108  );
3109 
3110  $sql = "INSERT $insertOptions" .
3111  " INTO $destTable (" . implode( ',', array_keys( $varMap ) ) . ') ' .
3112  $selectSql;
3113 
3114  return $this->query( $sql, $fname );
3115  }
3116 
3136  public function limitResult( $sql, $limit, $offset = false ) {
3137  if ( !is_numeric( $limit ) ) {
3138  throw new DBUnexpectedError( $this,
3139  "Invalid non-numeric limit passed to limitResult()\n" );
3140  }
3141 
3142  return "$sql LIMIT "
3143  . ( ( is_numeric( $offset ) && $offset != 0 ) ? "{$offset}," : "" )
3144  . "{$limit} ";
3145  }
3146 
3147  public function unionSupportsOrderAndLimit() {
3148  return true; // True for almost every DB supported
3149  }
3150 
3151  public function unionQueries( $sqls, $all ) {
3152  $glue = $all ? ') UNION ALL (' : ') UNION (';
3153 
3154  return '(' . implode( $glue, $sqls ) . ')';
3155  }
3156 
3158  $table, $vars, array $permute_conds, $extra_conds = '', $fname = __METHOD__,
3159  $options = [], $join_conds = []
3160  ) {
3161  // First, build the Cartesian product of $permute_conds
3162  $conds = [ [] ];
3163  foreach ( $permute_conds as $field => $values ) {
3164  if ( !$values ) {
3165  // Skip empty $values
3166  continue;
3167  }
3168  $values = array_unique( $values ); // For sanity
3169  $newConds = [];
3170  foreach ( $conds as $cond ) {
3171  foreach ( $values as $value ) {
3172  $cond[$field] = $value;
3173  $newConds[] = $cond; // Arrays are by-value, not by-reference, so this works
3174  }
3175  }
3176  $conds = $newConds;
3177  }
3178 
3179  $extra_conds = $extra_conds === '' ? [] : (array)$extra_conds;
3180 
3181  // If there's just one condition and no subordering, hand off to
3182  // selectSQLText directly.
3183  if ( count( $conds ) === 1 &&
3184  ( !isset( $options['INNER ORDER BY'] ) || !$this->unionSupportsOrderAndLimit() )
3185  ) {
3186  return $this->selectSQLText(
3187  $table, $vars, $conds[0] + $extra_conds, $fname, $options, $join_conds
3188  );
3189  }
3190 
3191  // Otherwise, we need to pull out the order and limit to apply after
3192  // the union. Then build the SQL queries for each set of conditions in
3193  // $conds. Then union them together (using UNION ALL, because the
3194  // product *should* already be distinct).
3195  $orderBy = $this->makeOrderBy( $options );
3196  $limit = $options['LIMIT'] ?? null;
3197  $offset = $options['OFFSET'] ?? false;
3198  $all = empty( $options['NOTALL'] ) && !in_array( 'NOTALL', $options );
3199  if ( !$this->unionSupportsOrderAndLimit() ) {
3200  unset( $options['ORDER BY'], $options['LIMIT'], $options['OFFSET'] );
3201  } else {
3202  if ( array_key_exists( 'INNER ORDER BY', $options ) ) {
3203  $options['ORDER BY'] = $options['INNER ORDER BY'];
3204  }
3205  if ( $limit !== null && is_numeric( $offset ) && $offset != 0 ) {
3206  // We need to increase the limit by the offset rather than
3207  // using the offset directly, otherwise it'll skip incorrectly
3208  // in the subqueries.
3209  $options['LIMIT'] = $limit + $offset;
3210  unset( $options['OFFSET'] );
3211  }
3212  }
3213 
3214  $sqls = [];
3215  foreach ( $conds as $cond ) {
3216  $sqls[] = $this->selectSQLText(
3217  $table, $vars, $cond + $extra_conds, $fname, $options, $join_conds
3218  );
3219  }
3220  $sql = $this->unionQueries( $sqls, $all ) . $orderBy;
3221  if ( $limit !== null ) {
3222  $sql = $this->limitResult( $sql, $limit, $offset );
3223  }
3224 
3225  return $sql;
3226  }
3227 
3228  public function conditional( $cond, $trueVal, $falseVal ) {
3229  if ( is_array( $cond ) ) {
3230  $cond = $this->makeList( $cond, self::LIST_AND );
3231  }
3232 
3233  return " (CASE WHEN $cond THEN $trueVal ELSE $falseVal END) ";
3234  }
3235 
3236  public function strreplace( $orig, $old, $new ) {
3237  return "REPLACE({$orig}, {$old}, {$new})";
3238  }
3239 
3240  public function getServerUptime() {
3241  return 0;
3242  }
3243 
3244  public function wasDeadlock() {
3245  return false;
3246  }
3247 
3248  public function wasLockTimeout() {
3249  return false;
3250  }
3251 
3252  public function wasConnectionLoss() {
3253  return $this->wasConnectionError( $this->lastErrno() );
3254  }
3255 
3256  public function wasReadOnlyError() {
3257  return false;
3258  }
3259 
3260  public function wasErrorReissuable() {
3261  return (
3262  $this->wasDeadlock() ||
3263  $this->wasLockTimeout() ||
3264  $this->wasConnectionLoss()
3265  );
3266  }
3267 
3274  public function wasConnectionError( $errno ) {
3275  return false;
3276  }
3277 
3284  protected function wasKnownStatementRollbackError() {
3285  return false; // don't know; it could have caused a transaction rollback
3286  }
3287 
3288  public function deadlockLoop() {
3289  $args = func_get_args();
3290  $function = array_shift( $args );
3291  $tries = self::DEADLOCK_TRIES;
3292 
3293  $this->begin( __METHOD__ );
3294 
3295  $retVal = null;
3297  $e = null;
3298  do {
3299  try {
3300  $retVal = $function( ...$args );
3301  break;
3302  } catch ( DBQueryError $e ) {
3303  if ( $this->wasDeadlock() ) {
3304  // Retry after a randomized delay
3305  usleep( mt_rand( self::DEADLOCK_DELAY_MIN, self::DEADLOCK_DELAY_MAX ) );
3306  } else {
3307  // Throw the error back up
3308  throw $e;
3309  }
3310  }
3311  } while ( --$tries > 0 );
3312 
3313  if ( $tries <= 0 ) {
3314  // Too many deadlocks; give up
3315  $this->rollback( __METHOD__ );
3316  throw $e;
3317  } else {
3318  $this->commit( __METHOD__ );
3319 
3320  return $retVal;
3321  }
3322  }
3323 
3324  public function masterPosWait( DBMasterPos $pos, $timeout ) {
3325  # Real waits are implemented in the subclass.
3326  return 0;
3327  }
3328 
3329  public function getReplicaPos() {
3330  # Stub
3331  return false;
3332  }
3333 
3334  public function getMasterPos() {
3335  # Stub
3336  return false;
3337  }
3338 
3339  public function serverIsReadOnly() {
3340  return false;
3341  }
3342 
3343  final public function onTransactionResolution( callable $callback, $fname = __METHOD__ ) {
3344  if ( !$this->trxLevel ) {
3345  throw new DBUnexpectedError( $this, "No transaction is active." );
3346  }
3347  $this->trxEndCallbacks[] = [ $callback, $fname, $this->currentAtomicSectionId() ];
3348  }
3349 
3350  final public function onTransactionCommitOrIdle( callable $callback, $fname = __METHOD__ ) {
3351  if ( !$this->trxLevel && $this->getTransactionRoundId() ) {
3352  // Start an implicit transaction similar to how query() does
3353  $this->begin( __METHOD__, self::TRANSACTION_INTERNAL );
3354  $this->trxAutomatic = true;
3355  }
3356 
3357  $this->trxIdleCallbacks[] = [ $callback, $fname, $this->currentAtomicSectionId() ];
3358  if ( !$this->trxLevel ) {
3359  $this->runOnTransactionIdleCallbacks( self::TRIGGER_IDLE );
3360  }
3361  }
3362 
3363  final public function onTransactionIdle( callable $callback, $fname = __METHOD__ ) {
3364  $this->onTransactionCommitOrIdle( $callback, $fname );
3365  }
3366 
3367  final public function onTransactionPreCommitOrIdle( callable $callback, $fname = __METHOD__ ) {
3368  if ( !$this->trxLevel && $this->getTransactionRoundId() ) {
3369  // Start an implicit transaction similar to how query() does
3370  $this->begin( __METHOD__, self::TRANSACTION_INTERNAL );
3371  $this->trxAutomatic = true;
3372  }
3373 
3374  if ( $this->trxLevel ) {
3375  $this->trxPreCommitCallbacks[] = [ $callback, $fname, $this->currentAtomicSectionId() ];
3376  } else {
3377  // No transaction is active nor will start implicitly, so make one for this callback
3378  $this->startAtomic( __METHOD__, self::ATOMIC_CANCELABLE );
3379  try {
3380  $callback( $this );
3381  $this->endAtomic( __METHOD__ );
3382  } catch ( Exception $e ) {
3383  $this->cancelAtomic( __METHOD__ );
3384  throw $e;
3385  }
3386  }
3387  }
3388 
3392  private function currentAtomicSectionId() {
3393  if ( $this->trxLevel && $this->trxAtomicLevels ) {
3394  $levelInfo = end( $this->trxAtomicLevels );
3395 
3396  return $levelInfo[1];
3397  }
3398 
3399  return null;
3400  }
3401 
3408  ) {
3409  foreach ( $this->trxPreCommitCallbacks as $key => $info ) {
3410  if ( $info[2] === $old ) {
3411  $this->trxPreCommitCallbacks[$key][2] = $new;
3412  }
3413  }
3414  foreach ( $this->trxIdleCallbacks as $key => $info ) {
3415  if ( $info[2] === $old ) {
3416  $this->trxIdleCallbacks[$key][2] = $new;
3417  }
3418  }
3419  foreach ( $this->trxEndCallbacks as $key => $info ) {
3420  if ( $info[2] === $old ) {
3421  $this->trxEndCallbacks[$key][2] = $new;
3422  }
3423  }
3424  }
3425 
3430  private function modifyCallbacksForCancel( array $sectionIds ) {
3431  // Cancel the "on commit" callbacks owned by this savepoint
3432  $this->trxIdleCallbacks = array_filter(
3433  $this->trxIdleCallbacks,
3434  function ( $entry ) use ( $sectionIds ) {
3435  return !in_array( $entry[2], $sectionIds, true );
3436  }
3437  );
3438  $this->trxPreCommitCallbacks = array_filter(
3439  $this->trxPreCommitCallbacks,
3440  function ( $entry ) use ( $sectionIds ) {
3441  return !in_array( $entry[2], $sectionIds, true );
3442  }
3443  );
3444  // Make "on resolution" callbacks owned by this savepoint to perceive a rollback
3445  foreach ( $this->trxEndCallbacks as $key => $entry ) {
3446  if ( in_array( $entry[2], $sectionIds, true ) ) {
3447  $callback = $entry[0];
3448  $this->trxEndCallbacks[$key][0] = function () use ( $callback ) {
3449  return $callback( self::TRIGGER_ROLLBACK, $this );
3450  };
3451  }
3452  }
3453  }
3454 
3455  final public function setTransactionListener( $name, callable $callback = null ) {
3456  if ( $callback ) {
3457  $this->trxRecurringCallbacks[$name] = $callback;
3458  } else {
3459  unset( $this->trxRecurringCallbacks[$name] );
3460  }
3461  }
3462 
3471  final public function setTrxEndCallbackSuppression( $suppress ) {
3472  $this->trxEndCallbacksSuppressed = $suppress;
3473  }
3474 
3485  public function runOnTransactionIdleCallbacks( $trigger ) {
3486  if ( $this->trxLevel ) { // sanity
3487  throw new DBUnexpectedError( $this, __METHOD__ . ': a transaction is still open.' );
3488  }
3489 
3490  if ( $this->trxEndCallbacksSuppressed ) {
3491  return 0;
3492  }
3493 
3494  $count = 0;
3495  $autoTrx = $this->getFlag( self::DBO_TRX ); // automatic begin() enabled?
3497  $e = null; // first exception
3498  do { // callbacks may add callbacks :)
3499  $callbacks = array_merge(
3500  $this->trxIdleCallbacks,
3501  $this->trxEndCallbacks // include "transaction resolution" callbacks
3502  );
3503  $this->trxIdleCallbacks = []; // consumed (and recursion guard)
3504  $this->trxEndCallbacks = []; // consumed (recursion guard)
3505  foreach ( $callbacks as $callback ) {
3506  ++$count;
3507  list( $phpCallback ) = $callback;
3508  $this->clearFlag( self::DBO_TRX ); // make each query its own transaction
3509  try {
3510  call_user_func( $phpCallback, $trigger, $this );
3511  } catch ( Exception $ex ) {
3512  call_user_func( $this->errorLogger, $ex );
3513  $e = $e ?: $ex;
3514  // Some callbacks may use startAtomic/endAtomic, so make sure
3515  // their transactions are ended so other callbacks don't fail
3516  if ( $this->trxLevel() ) {
3517  $this->rollback( __METHOD__, self::FLUSHING_INTERNAL );
3518  }
3519  } finally {
3520  if ( $autoTrx ) {
3521  $this->setFlag( self::DBO_TRX ); // restore automatic begin()
3522  } else {
3523  $this->clearFlag( self::DBO_TRX ); // restore auto-commit
3524  }
3525  }
3526  }
3527  } while ( count( $this->trxIdleCallbacks ) );
3528 
3529  if ( $e instanceof Exception ) {
3530  throw $e; // re-throw any first exception
3531  }
3532 
3533  return $count;
3534  }
3535 
3546  $count = 0;
3547 
3548  $e = null; // first exception
3549  do { // callbacks may add callbacks :)
3550  $callbacks = $this->trxPreCommitCallbacks;
3551  $this->trxPreCommitCallbacks = []; // consumed (and recursion guard)
3552  foreach ( $callbacks as $callback ) {
3553  try {
3554  ++$count;
3555  list( $phpCallback ) = $callback;
3556  $phpCallback( $this );
3557  } catch ( Exception $ex ) {
3558  ( $this->errorLogger )( $ex );
3559  $e = $e ?: $ex;
3560  }
3561  }
3562  } while ( count( $this->trxPreCommitCallbacks ) );
3563 
3564  if ( $e instanceof Exception ) {
3565  throw $e; // re-throw any first exception
3566  }
3567 
3568  return $count;
3569  }
3570 
3580  public function runTransactionListenerCallbacks( $trigger ) {
3581  if ( $this->trxEndCallbacksSuppressed ) {
3582  return;
3583  }
3584 
3586  $e = null; // first exception
3587 
3588  foreach ( $this->trxRecurringCallbacks as $phpCallback ) {
3589  try {
3590  $phpCallback( $trigger, $this );
3591  } catch ( Exception $ex ) {
3592  ( $this->errorLogger )( $ex );
3593  $e = $e ?: $ex;
3594  }
3595  }
3596 
3597  if ( $e instanceof Exception ) {
3598  throw $e; // re-throw any first exception
3599  }
3600  }
3601 
3612  protected function doSavepoint( $identifier, $fname ) {
3613  $this->query( 'SAVEPOINT ' . $this->addIdentifierQuotes( $identifier ), $fname );
3614  }
3615 
3626  protected function doReleaseSavepoint( $identifier, $fname ) {
3627  $this->query( 'RELEASE SAVEPOINT ' . $this->addIdentifierQuotes( $identifier ), $fname );
3628  }
3629 
3640  protected function doRollbackToSavepoint( $identifier, $fname ) {
3641  $this->query( 'ROLLBACK TO SAVEPOINT ' . $this->addIdentifierQuotes( $identifier ), $fname );
3642  }
3643 
3648  private function nextSavepointId( $fname ) {
3649  $savepointId = self::$SAVEPOINT_PREFIX . ++$this->trxAtomicCounter;
3650  if ( strlen( $savepointId ) > 30 ) {
3651  // 30 == Oracle's identifier length limit (pre 12c)
3652  // With a 22 character prefix, that puts the highest number at 99999999.
3653  throw new DBUnexpectedError(
3654  $this,
3655  'There have been an excessively large number of atomic sections in a transaction'
3656  . " started by $this->trxFname (at $fname)"
3657  );
3658  }
3659 
3660  return $savepointId;
3661  }
3662 
3663  final public function startAtomic(
3664  $fname = __METHOD__, $cancelable = self::ATOMIC_NOT_CANCELABLE
3665  ) {
3666  $savepointId = $cancelable === self::ATOMIC_CANCELABLE ? self::$NOT_APPLICABLE : null;
3667 
3668  if ( !$this->trxLevel ) {
3669  $this->begin( $fname, self::TRANSACTION_INTERNAL ); // sets trxAutomatic
3670  // If DBO_TRX is set, a series of startAtomic/endAtomic pairs will result
3671  // in all changes being in one transaction to keep requests transactional.
3672  if ( $this->getFlag( self::DBO_TRX ) ) {
3673  // Since writes could happen in between the topmost atomic sections as part
3674  // of the transaction, those sections will need savepoints.
3675  $savepointId = $this->nextSavepointId( $fname );
3676  $this->doSavepoint( $savepointId, $fname );
3677  } else {
3678  $this->trxAutomaticAtomic = true;
3679  }
3680  } elseif ( $cancelable === self::ATOMIC_CANCELABLE ) {
3681  $savepointId = $this->nextSavepointId( $fname );
3682  $this->doSavepoint( $savepointId, $fname );
3683  }
3684 
3685  $sectionId = new AtomicSectionIdentifier;
3686  $this->trxAtomicLevels[] = [ $fname, $sectionId, $savepointId ];
3687  $this->queryLogger->debug( 'startAtomic: entering level ' .
3688  ( count( $this->trxAtomicLevels ) - 1 ) . " ($fname)" );
3689 
3690  return $sectionId;
3691  }
3692 
3693  final public function endAtomic( $fname = __METHOD__ ) {
3694  if ( !$this->trxLevel || !$this->trxAtomicLevels ) {
3695  throw new DBUnexpectedError( $this, "No atomic section is open (got $fname)." );
3696  }
3697 
3698  // Check if the current section matches $fname
3699  $pos = count( $this->trxAtomicLevels ) - 1;
3700  list( $savedFname, $sectionId, $savepointId ) = $this->trxAtomicLevels[$pos];
3701  $this->queryLogger->debug( "endAtomic: leaving level $pos ($fname)" );
3702 
3703  if ( $savedFname !== $fname ) {
3704  throw new DBUnexpectedError(
3705  $this,
3706  "Invalid atomic section ended (got $fname but expected $savedFname)."
3707  );
3708  }
3709 
3710  // Remove the last section (no need to re-index the array)
3711  array_pop( $this->trxAtomicLevels );
3712 
3713  if ( !$this->trxAtomicLevels && $this->trxAutomaticAtomic ) {
3714  $this->commit( $fname, self::FLUSHING_INTERNAL );
3715  } elseif ( $savepointId !== null && $savepointId !== self::$NOT_APPLICABLE ) {
3716  $this->doReleaseSavepoint( $savepointId, $fname );
3717  }
3718 
3719  // Hoist callback ownership for callbacks in the section that just ended;
3720  // all callbacks should have an owner that is present in trxAtomicLevels.
3721  $currentSectionId = $this->currentAtomicSectionId();
3722  if ( $currentSectionId ) {
3723  $this->reassignCallbacksForSection( $sectionId, $currentSectionId );
3724  }
3725  }
3726 
3727  final public function cancelAtomic(
3728  $fname = __METHOD__, AtomicSectionIdentifier $sectionId = null
3729  ) {
3730  if ( !$this->trxLevel || !$this->trxAtomicLevels ) {
3731  throw new DBUnexpectedError( $this, "No atomic section is open (got $fname)." );
3732  }
3733 
3734  $excisedFnames = [];
3735  if ( $sectionId !== null ) {
3736  // Find the (last) section with the given $sectionId
3737  $pos = -1;
3738  foreach ( $this->trxAtomicLevels as $i => list( $asFname, $asId, $spId ) ) {
3739  if ( $asId === $sectionId ) {
3740  $pos = $i;
3741  }
3742  }
3743  if ( $pos < 0 ) {
3744  throw new DBUnexpectedError( "Atomic section not found (for $fname)" );
3745  }
3746  // Remove all descendant sections and re-index the array
3747  $excisedIds = [];
3748  $len = count( $this->trxAtomicLevels );
3749  for ( $i = $pos + 1; $i < $len; ++$i ) {
3750  $excisedFnames[] = $this->trxAtomicLevels[$i][0];
3751  $excisedIds[] = $this->trxAtomicLevels[$i][1];
3752  }
3753  $this->trxAtomicLevels = array_slice( $this->trxAtomicLevels, 0, $pos + 1 );
3754  $this->modifyCallbacksForCancel( $excisedIds );
3755  }
3756 
3757  // Check if the current section matches $fname
3758  $pos = count( $this->trxAtomicLevels ) - 1;
3759  list( $savedFname, $savedSectionId, $savepointId ) = $this->trxAtomicLevels[$pos];
3760 
3761  if ( $excisedFnames ) {
3762  $this->queryLogger->debug( "cancelAtomic: canceling level $pos ($savedFname) " .
3763  "and descendants " . implode( ', ', $excisedFnames ) );
3764  } else {
3765  $this->queryLogger->debug( "cancelAtomic: canceling level $pos ($savedFname)" );
3766  }
3767 
3768  if ( $savedFname !== $fname ) {
3769  throw new DBUnexpectedError(
3770  $this,
3771  "Invalid atomic section ended (got $fname but expected $savedFname)."
3772  );
3773  }
3774 
3775  // Remove the last section (no need to re-index the array)
3776  array_pop( $this->trxAtomicLevels );
3777  $this->modifyCallbacksForCancel( [ $savedSectionId ] );
3778 
3779  if ( $savepointId !== null ) {
3780  // Rollback the transaction to the state just before this atomic section
3781  if ( $savepointId === self::$NOT_APPLICABLE ) {
3782  $this->rollback( $fname, self::FLUSHING_INTERNAL );
3783  } else {
3784  $this->doRollbackToSavepoint( $savepointId, $fname );
3785  $this->trxStatus = self::STATUS_TRX_OK; // no exception; recovered
3786  $this->trxStatusIgnoredCause = null;
3787  }
3788  } elseif ( $this->trxStatus > self::STATUS_TRX_ERROR ) {
3789  // Put the transaction into an error state if it's not already in one
3790  $this->trxStatus = self::STATUS_TRX_ERROR;
3791  $this->trxStatusCause = new DBUnexpectedError(
3792  $this,
3793  "Uncancelable atomic section canceled (got $fname)."
3794  );
3795  }
3796 
3797  $this->affectedRowCount = 0; // for the sake of consistency
3798  }
3799 
3800  final public function doAtomicSection(
3801  $fname, callable $callback, $cancelable = self::ATOMIC_NOT_CANCELABLE
3802  ) {
3803  $sectionId = $this->startAtomic( $fname, $cancelable );
3804  try {
3805  $res = $callback( $this, $fname );
3806  } catch ( Exception $e ) {
3807  $this->cancelAtomic( $fname, $sectionId );
3808 
3809  throw $e;
3810  }
3811  $this->endAtomic( $fname );
3812 
3813  return $res;
3814  }
3815 
3816  final public function begin( $fname = __METHOD__, $mode = self::TRANSACTION_EXPLICIT ) {
3817  static $modes = [ self::TRANSACTION_EXPLICIT, self::TRANSACTION_INTERNAL ];
3818  if ( !in_array( $mode, $modes, true ) ) {
3819  throw new DBUnexpectedError( $this, "$fname: invalid mode parameter '$mode'." );
3820  }
3821 
3822  // Protect against mismatched atomic section, transaction nesting, and snapshot loss
3823  if ( $this->trxLevel ) {
3824  if ( $this->trxAtomicLevels ) {
3825  $levels = $this->flatAtomicSectionList();
3826  $msg = "$fname: Got explicit BEGIN while atomic section(s) $levels are open.";
3827  throw new DBUnexpectedError( $this, $msg );
3828  } elseif ( !$this->trxAutomatic ) {
3829  $msg = "$fname: Explicit transaction already active (from {$this->trxFname}).";
3830  throw new DBUnexpectedError( $this, $msg );
3831  } else {
3832  $msg = "$fname: Implicit transaction already active (from {$this->trxFname}).";
3833  throw new DBUnexpectedError( $this, $msg );
3834  }
3835  } elseif ( $this->getFlag( self::DBO_TRX ) && $mode !== self::TRANSACTION_INTERNAL ) {
3836  $msg = "$fname: Implicit transaction expected (DBO_TRX set).";
3837  throw new DBUnexpectedError( $this, $msg );
3838  }
3839 
3840  // Avoid fatals if close() was called
3841  $this->assertOpen();
3842 
3843  $this->doBegin( $fname );
3844  $this->trxStatus = self::STATUS_TRX_OK;
3845  $this->trxStatusIgnoredCause = null;
3846  $this->trxAtomicCounter = 0;
3847  $this->trxTimestamp = microtime( true );
3848  $this->trxFname = $fname;
3849  $this->trxDoneWrites = false;
3850  $this->trxAutomaticAtomic = false;
3851  $this->trxAtomicLevels = [];
3852  $this->trxShortId = sprintf( '%06x', mt_rand( 0, 0xffffff ) );
3853  $this->trxWriteDuration = 0.0;
3854  $this->trxWriteQueryCount = 0;
3855  $this->trxWriteAffectedRows = 0;
3856  $this->trxWriteAdjDuration = 0.0;
3857  $this->trxWriteAdjQueryCount = 0;
3858  $this->trxWriteCallers = [];
3859  // First SELECT after BEGIN will establish the snapshot in REPEATABLE-READ.
3860  // Get an estimate of the replication lag before any such queries.
3861  $this->trxReplicaLag = null; // clear cached value first
3862  $this->trxReplicaLag = $this->getApproximateLagStatus()['lag'];
3863  // T147697: make explicitTrxActive() return true until begin() finishes. This way, no
3864  // caller will think its OK to muck around with the transaction just because startAtomic()
3865  // has not yet completed (e.g. setting trxAtomicLevels).
3866  $this->trxAutomatic = ( $mode === self::TRANSACTION_INTERNAL );
3867  }
3868 
3875  protected function doBegin( $fname ) {
3876  $this->query( 'BEGIN', $fname );
3877  $this->trxLevel = 1;
3878  }
3879 
3880  final public function commit( $fname = __METHOD__, $flush = self::FLUSHING_ONE ) {
3881  static $modes = [ self::FLUSHING_ONE, self::FLUSHING_ALL_PEERS, self::FLUSHING_INTERNAL ];
3882  if ( !in_array( $flush, $modes, true ) ) {
3883  throw new DBUnexpectedError( $this, "$fname: invalid flush parameter '$flush'." );
3884  }
3885 
3886  if ( $this->trxLevel && $this->trxAtomicLevels ) {
3887  // There are still atomic sections open; this cannot be ignored
3888  $levels = $this->flatAtomicSectionList();
3889  throw new DBUnexpectedError(
3890  $this,
3891  "$fname: Got COMMIT while atomic sections $levels are still open."
3892  );
3893  }
3894 
3895  if ( $flush === self::FLUSHING_INTERNAL || $flush === self::FLUSHING_ALL_PEERS ) {
3896  if ( !$this->trxLevel ) {
3897  return; // nothing to do
3898  } elseif ( !$this->trxAutomatic ) {
3899  throw new DBUnexpectedError(
3900  $this,
3901  "$fname: Flushing an explicit transaction, getting out of sync."
3902  );
3903  }
3904  } else {
3905  if ( !$this->trxLevel ) {
3906  $this->queryLogger->error(
3907  "$fname: No transaction to commit, something got out of sync." );
3908  return; // nothing to do
3909  } elseif ( $this->trxAutomatic ) {
3910  throw new DBUnexpectedError(
3911  $this,
3912  "$fname: Expected mass commit of all peer transactions (DBO_TRX set)."
3913  );
3914  }
3915  }
3916 
3917  // Avoid fatals if close() was called
3918  $this->assertOpen();
3919 
3921 
3922  $writeTime = $this->pendingWriteQueryDuration( self::ESTIMATE_DB_APPLY );
3923  $this->doCommit( $fname );
3924  $this->trxStatus = self::STATUS_TRX_NONE;
3925 
3926  if ( $this->trxDoneWrites ) {
3927  $this->lastWriteTime = microtime( true );
3928  $this->trxProfiler->transactionWritingOut(
3929  $this->server,
3930  $this->getDomainID(),
3931  $this->trxShortId,
3932  $writeTime,
3933  $this->trxWriteAffectedRows
3934  );
3935  }
3936 
3937  // With FLUSHING_ALL_PEERS, callbacks will be explicitly run later
3938  if ( $flush !== self::FLUSHING_ALL_PEERS ) {
3939  $this->runOnTransactionIdleCallbacks( self::TRIGGER_COMMIT );
3940  $this->runTransactionListenerCallbacks( self::TRIGGER_COMMIT );
3941  }
3942  }
3943 
3950  protected function doCommit( $fname ) {
3951  if ( $this->trxLevel ) {
3952  $this->query( 'COMMIT', $fname );
3953  $this->trxLevel = 0;
3954  }
3955  }
3956 
3957  final public function rollback( $fname = __METHOD__, $flush = '' ) {
3958  $trxActive = $this->trxLevel;
3959 
3960  if ( $flush !== self::FLUSHING_INTERNAL && $flush !== self::FLUSHING_ALL_PEERS ) {
3961  if ( $this->getFlag( self::DBO_TRX ) ) {
3962  throw new DBUnexpectedError(
3963  $this,
3964  "$fname: Expected mass rollback of all peer transactions (DBO_TRX set)."
3965  );
3966  }
3967  }
3968 
3969  if ( $trxActive ) {
3970  // Avoid fatals if close() was called
3971  $this->assertOpen();
3972 
3973  $writeTime = $this->pendingWriteQueryDuration( self::ESTIMATE_DB_APPLY );
3974  $this->doRollback( $fname );
3975  $this->trxStatus = self::STATUS_TRX_NONE;
3976  $this->trxAtomicLevels = [];
3977 
3978  if ( $this->trxDoneWrites ) {
3979  $this->trxProfiler->transactionWritingOut(
3980  $this->server,
3981  $this->getDomainID(),
3982  $this->trxShortId,
3983  $writeTime,
3984  $this->trxWriteAffectedRows
3985  );
3986  }
3987  }
3988 
3989  // Clear any commit-dependant callbacks. They might even be present
3990  // only due to transaction rounds, with no SQL transaction being active
3991  $this->trxIdleCallbacks = [];
3992  $this->trxPreCommitCallbacks = [];
3993 
3994  // With FLUSHING_ALL_PEERS, callbacks will be explicitly run later
3995  if ( $trxActive && $flush !== self::FLUSHING_ALL_PEERS ) {
3996  try {
3997  $this->runOnTransactionIdleCallbacks( self::TRIGGER_ROLLBACK );
3998  } catch ( Exception $e ) {
3999  // already logged; finish and let LoadBalancer move on during mass-rollback
4000  }
4001  try {
4002  $this->runTransactionListenerCallbacks( self::TRIGGER_ROLLBACK );
4003  } catch ( Exception $e ) {
4004  // already logged; let LoadBalancer move on during mass-rollback
4005  }
4006 
4007  $this->affectedRowCount = 0; // for the sake of consistency
4008  }
4009  }
4010 
4017  protected function doRollback( $fname ) {
4018  if ( $this->trxLevel ) {
4019  # Disconnects cause rollback anyway, so ignore those errors
4020  $ignoreErrors = true;
4021  $this->query( 'ROLLBACK', $fname, $ignoreErrors );
4022  $this->trxLevel = 0;
4023  }
4024  }
4025 
4026  public function flushSnapshot( $fname = __METHOD__ ) {
4027  if ( $this->writesOrCallbacksPending() || $this->explicitTrxActive() ) {
4028  // This only flushes transactions to clear snapshots, not to write data
4029  $fnames = implode( ', ', $this->pendingWriteAndCallbackCallers() );
4030  throw new DBUnexpectedError(
4031  $this,
4032  "$fname: Cannot flush snapshot because writes are pending ($fnames)."
4033  );
4034  }
4035 
4036  $this->commit( $fname, self::FLUSHING_INTERNAL );
4037  }
4038 
4039  public function explicitTrxActive() {
4040  return $this->trxLevel && ( $this->trxAtomicLevels || !$this->trxAutomatic );
4041  }
4042 
4043  public function duplicateTableStructure(
4044  $oldName, $newName, $temporary = false, $fname = __METHOD__
4045  ) {
4046  throw new RuntimeException( __METHOD__ . ' is not implemented in descendant class' );
4047  }
4048 
4049  public function listTables( $prefix = null, $fname = __METHOD__ ) {
4050  throw new RuntimeException( __METHOD__ . ' is not implemented in descendant class' );
4051  }
4052 
4053  public function listViews( $prefix = null, $fname = __METHOD__ ) {
4054  throw new RuntimeException( __METHOD__ . ' is not implemented in descendant class' );
4055  }
4056 
4057  public function timestamp( $ts = 0 ) {
4058  $t = new ConvertibleTimestamp( $ts );
4059  // Let errors bubble up to avoid putting garbage in the DB
4060  return $t->getTimestamp( TS_MW );
4061  }
4062 
4063  public function timestampOrNull( $ts = null ) {
4064  if ( is_null( $ts ) ) {
4065  return null;
4066  } else {
4067  return $this->timestamp( $ts );
4068  }
4069  }
4070 
4071  public function affectedRows() {
4072  return ( $this->affectedRowCount === null )
4073  ? $this->fetchAffectedRowCount() // default to driver value
4075  }
4076 
4080  abstract protected function fetchAffectedRowCount();
4081 
4095  protected function resultObject( $result ) {
4096  if ( !$result ) {
4097  return false;
4098  } elseif ( $result instanceof ResultWrapper ) {
4099  return $result;
4100  } elseif ( $result === true ) {
4101  // Successful write query
4102  return $result;
4103  } else {
4104  return new ResultWrapper( $this, $result );
4105  }
4106  }
4107 
4108  public function ping( &$rtt = null ) {
4109  // Avoid hitting the server if it was hit recently
4110  if ( $this->isOpen() && ( microtime( true ) - $this->lastPing ) < self::PING_TTL ) {
4111  if ( !func_num_args() || $this->rttEstimate > 0 ) {
4112  $rtt = $this->rttEstimate;
4113  return true; // don't care about $rtt
4114  }
4115  }
4116 
4117  // This will reconnect if possible or return false if not
4118  $this->clearFlag( self::DBO_TRX, self::REMEMBER_PRIOR );
4119  $ok = ( $this->query( self::PING_QUERY, __METHOD__, true ) !== false );
4120  $this->restoreFlags( self::RESTORE_PRIOR );
4121 
4122  if ( $ok ) {
4123  $rtt = $this->rttEstimate;
4124  }
4125 
4126  return $ok;
4127  }
4128 
4135  protected function replaceLostConnection( $fname ) {
4136  $this->closeConnection();
4137  $this->opened = false;
4138  $this->conn = false;
4139  try {
4140  $this->open(
4141  $this->server,
4142  $this->user,
4143  $this->password,
4144  $this->getDBname(),
4145  $this->dbSchema(),
4146  $this->tablePrefix()
4147  );
4148  $this->lastPing = microtime( true );
4149  $ok = true;
4150 
4151  $this->connLogger->warning(
4152  $fname . ': lost connection to {dbserver}; reconnected',
4153  [
4154  'dbserver' => $this->getServer(),
4155  'trace' => ( new RuntimeException() )->getTraceAsString()
4156  ]
4157  );
4158  } catch ( DBConnectionError $e ) {
4159  $ok = false;
4160 
4161  $this->connLogger->error(
4162  $fname . ': lost connection to {dbserver} permanently',
4163  [ 'dbserver' => $this->getServer() ]
4164  );
4165  }
4166 
4167  $this->handleSessionLoss();
4168 
4169  return $ok;
4170  }
4171 
4172  public function getSessionLagStatus() {
4173  return $this->getRecordedTransactionLagStatus() ?: $this->getApproximateLagStatus();
4174  }
4175 
4189  final protected function getRecordedTransactionLagStatus() {
4190  return ( $this->trxLevel && $this->trxReplicaLag !== null )
4191  ? [ 'lag' => $this->trxReplicaLag, 'since' => $this->trxTimestamp() ]
4192  : null;
4193  }
4194 
4201  protected function getApproximateLagStatus() {
4202  return [
4203  'lag' => $this->getLBInfo( 'replica' ) ? $this->getLag() : 0,
4204  'since' => microtime( true )
4205  ];
4206  }
4207 
4227  public static function getCacheSetOptions( IDatabase $db1, IDatabase $db2 = null ) {
4228  $res = [ 'lag' => 0, 'since' => INF, 'pending' => false ];
4229  foreach ( func_get_args() as $db ) {
4231  $status = $db->getSessionLagStatus();
4232  if ( $status['lag'] === false ) {
4233  $res['lag'] = false;
4234  } elseif ( $res['lag'] !== false ) {
4235  $res['lag'] = max( $res['lag'], $status['lag'] );
4236  }
4237  $res['since'] = min( $res['since'], $status['since'] );
4238  $res['pending'] = $res['pending'] ?: $db->writesPending();
4239  }
4240 
4241  return $res;
4242  }
4243 
4244  public function getLag() {
4245  return 0;
4246  }
4247 
4248  public function maxListLen() {
4249  return 0;
4250  }
4251 
4252  public function encodeBlob( $b ) {
4253  return $b;
4254  }
4255 
4256  public function decodeBlob( $b ) {
4257  if ( $b instanceof Blob ) {
4258  $b = $b->fetch();
4259  }
4260  return $b;
4261  }
4262 
4263  public function setSessionOptions( array $options ) {
4264  }
4265 
4266  public function sourceFile(
4267  $filename,
4268  callable $lineCallback = null,
4269  callable $resultCallback = null,
4270  $fname = false,
4271  callable $inputCallback = null
4272  ) {
4273  Wikimedia\suppressWarnings();
4274  $fp = fopen( $filename, 'r' );
4275  Wikimedia\restoreWarnings();
4276 
4277  if ( false === $fp ) {
4278  throw new RuntimeException( "Could not open \"{$filename}\".\n" );
4279  }
4280 
4281  if ( !$fname ) {
4282  $fname = __METHOD__ . "( $filename )";
4283  }
4284 
4285  try {
4286  $error = $this->sourceStream(
4287  $fp, $lineCallback, $resultCallback, $fname, $inputCallback );
4288  } catch ( Exception $e ) {
4289  fclose( $fp );
4290  throw $e;
4291  }
4292 
4293  fclose( $fp );
4294 
4295  return $error;
4296  }
4297 
4298  public function setSchemaVars( $vars ) {
4299  $this->schemaVars = $vars;
4300  }
4301 
4302  public function sourceStream(
4303  $fp,
4304  callable $lineCallback = null,
4305  callable $resultCallback = null,
4306  $fname = __METHOD__,
4307  callable $inputCallback = null
4308  ) {
4309  $delimiterReset = new ScopedCallback(
4310  function ( $delimiter ) {
4311  $this->delimiter = $delimiter;
4312  },
4313  [ $this->delimiter ]
4314  );
4315  $cmd = '';
4316 
4317  while ( !feof( $fp ) ) {
4318  if ( $lineCallback ) {
4319  call_user_func( $lineCallback );
4320  }
4321 
4322  $line = trim( fgets( $fp ) );
4323 
4324  if ( $line == '' ) {
4325  continue;
4326  }
4327 
4328  if ( '-' == $line[0] && '-' == $line[1] ) {
4329  continue;
4330  }
4331 
4332  if ( $cmd != '' ) {
4333  $cmd .= ' ';
4334  }
4335 
4336  $done = $this->streamStatementEnd( $cmd, $line );
4337 
4338  $cmd .= "$line\n";
4339 
4340  if ( $done || feof( $fp ) ) {
4341  $cmd = $this->replaceVars( $cmd );
4342 
4343  if ( $inputCallback ) {
4344  $callbackResult = $inputCallback( $cmd );
4345 
4346  if ( is_string( $callbackResult ) || !$callbackResult ) {
4347  $cmd = $callbackResult;
4348  }
4349  }
4350 
4351  if ( $cmd ) {
4352  $res = $this->query( $cmd, $fname );
4353 
4354  if ( $resultCallback ) {
4355  $resultCallback( $res, $this );
4356  }
4357 
4358  if ( false === $res ) {
4359  $err = $this->lastError();
4360 
4361  return "Query \"{$cmd}\" failed with error code \"$err\".\n";
4362  }
4363  }
4364  $cmd = '';
4365  }
4366  }
4367 
4368  ScopedCallback::consume( $delimiterReset );
4369  return true;
4370  }
4371 
4379  public function streamStatementEnd( &$sql, &$newLine ) {
4380  if ( $this->delimiter ) {
4381  $prev = $newLine;
4382  $newLine = preg_replace(
4383  '/' . preg_quote( $this->delimiter, '/' ) . '$/', '', $newLine );
4384  if ( $newLine != $prev ) {
4385  return true;
4386  }
4387  }
4388 
4389  return false;
4390  }
4391 
4412  protected function replaceVars( $ins ) {
4413  $vars = $this->getSchemaVars();
4414  return preg_replace_callback(
4415  '!
4416  /\* (\$wgDBprefix|[_i]) \*/ (\w*) | # 1-2. tableName, indexName
4417  \'\{\$ (\w+) }\' | # 3. addQuotes
4418  `\{\$ (\w+) }` | # 4. addIdentifierQuotes
4419  /\*\$ (\w+) \*/ # 5. leave unencoded
4420  !x',
4421  function ( $m ) use ( $vars ) {
4422  // Note: Because of <https://bugs.php.net/bug.php?id=51881>,
4423  // check for both nonexistent keys *and* the empty string.
4424  if ( isset( $m[1] ) && $m[1] !== '' ) {
4425  if ( $m[1] === 'i' ) {
4426  return $this->indexName( $m[2] );
4427  } else {
4428  return $this->tableName( $m[2] );
4429  }
4430  } elseif ( isset( $m[3] ) && $m[3] !== '' && array_key_exists( $m[3], $vars ) ) {
4431  return $this->addQuotes( $vars[$m[3]] );
4432  } elseif ( isset( $m[4] ) && $m[4] !== '' && array_key_exists( $m[4], $vars ) ) {
4433  return $this->addIdentifierQuotes( $vars[$m[4]] );
4434  } elseif ( isset( $m[5] ) && $m[5] !== '' && array_key_exists( $m[5], $vars ) ) {
4435  return $vars[$m[5]];
4436  } else {
4437  return $m[0];
4438  }
4439  },
4440  $ins
4441  );
4442  }
4443 
4450  protected function getSchemaVars() {
4451  if ( $this->schemaVars ) {
4452  return $this->schemaVars;
4453  } else {
4454  return $this->getDefaultSchemaVars();
4455  }
4456  }
4457 
4466  protected function getDefaultSchemaVars() {
4467  return [];
4468  }
4469 
4470  public function lockIsFree( $lockName, $method ) {
4471  // RDBMs methods for checking named locks may or may not count this thread itself.
4472  // In MySQL, IS_FREE_LOCK() returns 0 if the thread already has the lock. This is
4473  // the behavior choosen by the interface for this method.
4474  return !isset( $this->namedLocksHeld[$lockName] );
4475  }
4476 
4477  public function lock( $lockName, $method, $timeout = 5 ) {
4478  $this->namedLocksHeld[$lockName] = 1;
4479 
4480  return true;
4481  }
4482 
4483  public function unlock( $lockName, $method ) {
4484  unset( $this->namedLocksHeld[$lockName] );
4485 
4486  return true;
4487  }
4488 
4489  public function getScopedLockAndFlush( $lockKey, $fname, $timeout ) {
4490  if ( $this->writesOrCallbacksPending() ) {
4491  // This only flushes transactions to clear snapshots, not to write data
4492  $fnames = implode( ', ', $this->pendingWriteAndCallbackCallers() );
4493  throw new DBUnexpectedError(
4494  $this,
4495  "$fname: Cannot flush pre-lock snapshot because writes are pending ($fnames)."
4496  );
4497  }
4498 
4499  if ( !$this->lock( $lockKey, $fname, $timeout ) ) {
4500  return null;
4501  }
4502 
4503  $unlocker = new ScopedCallback( function () use ( $lockKey, $fname ) {
4504  if ( $this->trxLevel() ) {
4505  // There is a good chance an exception was thrown, causing any early return
4506  // from the caller. Let any error handler get a chance to issue rollback().
4507  // If there isn't one, let the error bubble up and trigger server-side rollback.
4508  $this->onTransactionResolution(
4509  function () use ( $lockKey, $fname ) {
4510  $this->unlock( $lockKey, $fname );
4511  },
4512  $fname
4513  );
4514  } else {
4515  $this->unlock( $lockKey, $fname );
4516  }
4517  } );
4518 
4519  $this->commit( $fname, self::FLUSHING_INTERNAL );
4520 
4521  return $unlocker;
4522  }
4523 
4524  public function namedLocksEnqueue() {
4525  return false;
4526  }
4527 
4529  return true;
4530  }
4531 
4532  final public function lockTables( array $read, array $write, $method ) {
4533  if ( $this->writesOrCallbacksPending() ) {
4534  throw new DBUnexpectedError( $this, "Transaction writes or callbacks still pending." );
4535  }
4536 
4537  if ( $this->tableLocksHaveTransactionScope() ) {
4538  $this->startAtomic( $method );
4539  }
4540 
4541  return $this->doLockTables( $read, $write, $method );
4542  }
4543 
4552  protected function doLockTables( array $read, array $write, $method ) {
4553  return true;
4554  }
4555 
4556  final public function unlockTables( $method ) {
4557  if ( $this->tableLocksHaveTransactionScope() ) {
4558  $this->endAtomic( $method );
4559 
4560  return true; // locks released on COMMIT/ROLLBACK
4561  }
4562 
4563  return $this->doUnlockTables( $method );
4564  }
4565 
4572  protected function doUnlockTables( $method ) {
4573  return true;
4574  }
4575 
4583  public function dropTable( $tableName, $fName = __METHOD__ ) {
4584  if ( !$this->tableExists( $tableName, $fName ) ) {
4585  return false;
4586  }
4587  $sql = "DROP TABLE " . $this->tableName( $tableName ) . " CASCADE";
4588 
4589  return $this->query( $sql, $fName );
4590  }
4591 
4592  public function getInfinity() {
4593  return 'infinity';
4594  }
4595 
4596  public function encodeExpiry( $expiry ) {
4597  return ( $expiry == '' || $expiry == 'infinity' || $expiry == $this->getInfinity() )
4598  ? $this->getInfinity()
4599  : $this->timestamp( $expiry );
4600  }
4601 
4602  public function decodeExpiry( $expiry, $format = TS_MW ) {
4603  if ( $expiry == '' || $expiry == 'infinity' || $expiry == $this->getInfinity() ) {
4604  return 'infinity';
4605  }
4606 
4607  return ConvertibleTimestamp::convert( $format, $expiry );
4608  }
4609 
4610  public function setBigSelects( $value = true ) {
4611  // no-op
4612  }
4613 
4614  public function isReadOnly() {
4615  return ( $this->getReadOnlyReason() !== false );
4616  }
4617 
4621  protected function getReadOnlyReason() {
4622  $reason = $this->getLBInfo( 'readOnlyReason' );
4623 
4624  return is_string( $reason ) ? $reason : false;
4625  }
4626 
4627  public function setTableAliases( array $aliases ) {
4628  $this->tableAliases = $aliases;
4629  }
4630 
4631  public function setIndexAliases( array $aliases ) {
4632  $this->indexAliases = $aliases;
4633  }
4634 
4646  protected function getBindingHandle() {
4647  if ( !$this->conn ) {
4648  throw new DBUnexpectedError(
4649  $this,
4650  'DB connection was already closed or the connection dropped.'
4651  );
4652  }
4653 
4654  return $this->conn;
4655  }
4656 
4661  public function __toString() {
4662  return (string)$this->conn;
4663  }
4664 
4669  public function __clone() {
4670  $this->connLogger->warning(
4671  "Cloning " . static::class . " is not recommended; forking connection:\n" .
4672  ( new RuntimeException() )->getTraceAsString()
4673  );
4674 
4675  if ( $this->isOpen() ) {
4676  // Open a new connection resource without messing with the old one
4677  $this->opened = false;
4678  $this->conn = false;
4679  $this->trxEndCallbacks = []; // don't copy
4680  $this->handleSessionLoss(); // no trx or locks anymore
4681  $this->open(
4682  $this->server,
4683  $this->user,
4684  $this->password,
4685  $this->getDBname(),
4686  $this->dbSchema(),
4687  $this->tablePrefix()
4688  );
4689  $this->lastPing = microtime( true );
4690  }
4691  }
4692 
4698  public function __sleep() {
4699  throw new RuntimeException( 'Database serialization may cause problems, since ' .
4700  'the connection is not restored on wakeup.' );
4701  }
4702 
4706  public function __destruct() {
4707  if ( $this->trxLevel && $this->trxDoneWrites ) {
4708  trigger_error( "Uncommitted DB writes (transaction from {$this->trxFname})." );
4709  }
4710 
4711  $danglingWriters = $this->pendingWriteAndCallbackCallers();
4712  if ( $danglingWriters ) {
4713  $fnames = implode( ', ', $danglingWriters );
4714  trigger_error( "DB transaction writes or callbacks still pending ($fnames)." );
4715  }
4716 
4717  if ( $this->conn ) {
4718  // Avoid connection leaks for sanity. Normally, resources close at script completion.
4719  // The connection might already be closed in zend/hhvm by now, so suppress warnings.
4720  Wikimedia\suppressWarnings();
4721  $this->closeConnection();
4722  Wikimedia\restoreWarnings();
4723  $this->conn = false;
4724  $this->opened = false;
4725  }
4726  }
4727 }
4728 
4732 class_alias( Database::class, 'DatabaseBase' );
4733 
4737 class_alias( Database::class, 'Database' );
Wikimedia\Rdbms\Database\registerTempTableOperation
registerTempTableOperation( $sql)
Definition: Database.php:1091
Wikimedia\Rdbms\Database\implicitOrderby
implicitOrderby()
Returns true if this database does an implicit order by when the column has an index For example: SEL...
Definition: Database.php:666
Wikimedia\Rdbms\Database\tablePrefix
tablePrefix( $prefix=null)
Get/set the table prefix.
Definition: Database.php:595
$status
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action, or null $user:User who performed the tagging when the tagging is subsequent to the action, or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition: hooks.txt:1305
Wikimedia\Rdbms\Database\$trxFname
string $trxFname
Remembers the function name given for starting the most recent transaction via begin().
Definition: Database.php:185
Wikimedia\Rdbms\Database\handleTransactionLoss
handleTransactionLoss()
Clean things up after transaction loss.
Definition: Database.php:1417
Wikimedia\Rdbms\Database\getLastPHPError
getLastPHPError()
Definition: Database.php:878
Wikimedia\Rdbms\Database\insert
insert( $table, $a, $fname=__METHOD__, $options=[])
INSERT wrapper, inserts an array into a table.
Definition: Database.php:2019
Wikimedia\Rdbms\Database\setSessionOptions
setSessionOptions(array $options)
Override database's default behavior.
Definition: Database.php:4263
Wikimedia\Rdbms\Database
Relational database abstraction object.
Definition: Database.php:48
Wikimedia\Rdbms\Database\limitResult
limitResult( $sql, $limit, $offset=false)
Construct a LIMIT query with optional offset.
Definition: Database.php:3136
Wikimedia\Rdbms\Database\$errorLogger
callback $errorLogger
Error logging callback.
Definition: Database.php:101
Wikimedia\Rdbms\Database\$trxDoneWrites
bool $trxDoneWrites
Record if possible write queries were done in the last transaction started.
Definition: Database.php:192
Wikimedia\Rdbms\Database\$trxEndCallbacksSuppressed
bool $trxEndCallbacksSuppressed
Whether to suppress triggering of transaction end callbacks.
Definition: Database.php:119
Wikimedia\Rdbms\Database\makeUpdateOptionsArray
makeUpdateOptionsArray( $options)
Make UPDATE options array for Database::makeUpdateOptions.
Definition: Database.php:2077
Wikimedia\Rdbms\Database\replaceLostConnection
replaceLostConnection( $fname)
Close any existing (dead) database connection and open a new connection.
Definition: Database.php:4135
Wikimedia\Rdbms\Database\$trxWriteAdjQueryCount
int $trxWriteAdjQueryCount
Number of write queries counted in trxWriteAdjDuration.
Definition: Database.php:243
Wikimedia\Rdbms\Database\getBindingHandle
getBindingHandle()
Get the underlying binding connection handle.
Definition: Database.php:4646
Wikimedia\Rdbms\Database\$trxLevel
int $trxLevel
Either 1 if a transaction is active or 0 otherwise.
Definition: Database.php:159
Wikimedia\Rdbms\Database\canRecoverFromDisconnect
canRecoverFromDisconnect( $sql, $priorWritesPending)
Determine whether or not it is safe to retry queries after a database connection is lost.
Definition: Database.php:1377
Wikimedia\Rdbms\Database\buildGroupConcatField
buildGroupConcatField( $delim, $table, $field, $conds='', $join_conds=[])
Build a GROUP_CONCAT or equivalent statement for a query.
Definition: Database.php:2234
Wikimedia\Rdbms\Database\doInitConnection
doInitConnection()
Actually connect to the database over the wire (or to local files)
Definition: Database.php:353
Wikimedia\Rdbms\Database\$trxReplicaLag
float $trxReplicaLag
Lag estimate at the time of BEGIN.
Definition: Database.php:177
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
Wikimedia\Rdbms\Database\isQuotedIdentifier
isQuotedIdentifier( $name)
Returns if the given identifier looks quoted or not according to the database convention for quoting ...
Definition: Database.php:2685
Wikimedia\Rdbms\IDatabase\getServerVersion
getServerVersion()
A string describing the current software version, like from mysql_get_server_info().
Wikimedia\Rdbms\Database\fieldExists
fieldExists( $table, $field, $fname=__METHOD__)
Determines whether a field exists in a table.
Definition: Database.php:1978
Wikimedia\Rdbms\Database\bitOr
bitOr( $fieldLeft, $fieldRight)
Definition: Database.php:2226
Wikimedia\Rdbms\Database\selectRowCount
selectRowCount( $tables, $var=' *', $conds='', $fname=__METHOD__, $options=[], $join_conds=[])
Get the number of rows in dataset.
Definition: Database.php:1816
Wikimedia\Rdbms\Database\ignoreIndexClause
ignoreIndexClause( $index)
IGNORE INDEX clause.
Definition: Database.php:2763
Wikimedia\Rdbms\Database\factory
static factory( $dbType, $p=[], $connect=self::NEW_CONNECTED)
Construct a Database subclass instance given a database type and parameters.
Definition: Database.php:426
Wikimedia\Rdbms\Database\trxStatus
trxStatus()
Definition: Database.php:591
Wikimedia\Rdbms\Database\estimateRowCount
estimateRowCount( $table, $var=' *', $conds='', $fname=__METHOD__, $options=[], $join_conds=[])
Estimate the number of rows in dataset.
Definition: Database.php:1799
Wikimedia\Rdbms\Database\listTables
listTables( $prefix=null, $fname=__METHOD__)
List all tables on the database.
Definition: Database.php:4049
HashBagOStuff
Simple store for keeping values in an associative array for the current process.
Definition: HashBagOStuff.php:31
Wikimedia\Rdbms\Database\updateTrxWriteQueryTime
updateTrxWriteQueryTime( $sql, $runtime, $affected)
Update the estimated run-time of a query, not counting large row lock times.
Definition: Database.php:1308
Wikimedia\Rdbms\Database\makeWhereFrom2d
makeWhereFrom2d( $data, $baseKey, $subKey)
Build a partial where clause from a 2-d array such as used for LinkBatch.
Definition: Database.php:2195
Wikimedia\Rdbms\Database\$queryLogger
LoggerInterface $queryLogger
Definition: Database.php:99
Wikimedia\Rdbms\DatabaseDomain\newFromId
static newFromId( $domain)
Definition: DatabaseDomain.php:63
Wikimedia\Rdbms\Database\encodeBlob
encodeBlob( $b)
Some DBMSs have a special format for inserting into blob fields, they don't allow simple quoted strin...
Definition: Database.php:4252
Wikimedia\Rdbms\Database\PING_TTL
const PING_TTL
How long before it is worth doing a dummy query to test the connection.
Definition: Database.php:57
Wikimedia\Rdbms\Database\getDomainID
getDomainID()
Return the currently selected domain ID.
Definition: Database.php:827
Wikimedia\Rdbms\Database\getClass
static getClass( $dbType, $driver=null)
Definition: Database.php:495
Wikimedia\Rdbms\Database\getProperty
getProperty( $name)
Definition: Database.php:823
Wikimedia\Rdbms\IDatabase\numRows
numRows( $res)
Get the number of rows in a query result.
Wikimedia\Rdbms\Database\onTransactionPreCommitOrIdle
onTransactionPreCommitOrIdle(callable $callback, $fname=__METHOD__)
Run a callback before the current transaction commits or now if there is none.
Definition: Database.php:3367
Wikimedia\Rdbms\Database\tableLocksHaveTransactionScope
tableLocksHaveTransactionScope()
Checks if table locks acquired by lockTables() are transaction-bound in their scope.
Definition: Database.php:4528
Wikimedia\Rdbms\Database\wasErrorReissuable
wasErrorReissuable()
Determines if the last query error was due to something outside of the query itself.
Definition: Database.php:3260
Wikimedia\Rdbms\Database\deleteJoin
deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds, $fname=__METHOD__)
DELETE where the condition is a join.
Definition: Database.php:2904
captcha-old.count
count
Definition: captcha-old.py:249
Wikimedia\Rdbms\Database\setIndexAliases
setIndexAliases(array $aliases)
Convert certain index names to alternative names before querying the DB.
Definition: Database.php:4631
Wikimedia\Rdbms\Database\$password
string $password
Password used to establish the current connection.
Definition: Database.php:83
Wikimedia\Rdbms\Database\nativeReplace
nativeReplace( $table, $rows, $fname)
REPLACE query wrapper for MySQL and SQLite, which have a native REPLACE statement.
Definition: Database.php:2829
Wikimedia\Rdbms\Database\decodeBlob
decodeBlob( $b)
Some DBMSs return a special placeholder object representing blob fields in result objects.
Definition: Database.php:4256
Wikimedia\Rdbms\Database\unionConditionPermutations
unionConditionPermutations( $table, $vars, array $permute_conds, $extra_conds='', $fname=__METHOD__, $options=[], $join_conds=[])
Construct a UNION query for permutations of conditions.
Definition: Database.php:3157
Wikimedia\Rdbms\Database\maxListLen
maxListLen()
Return the maximum number of items allowed in a list, or 0 for unlimited.
Definition: Database.php:4248
Wikimedia\Rdbms\Database\selectDomain
selectDomain( $domain)
Set the current domain (database, schema, and table prefix)
Definition: Database.php:2307
Wikimedia\Rdbms\Database\buildIntegerCast
buildIntegerCast( $field)
Definition: Database.php:2280
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED since 1.16! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:2034
Wikimedia\Rdbms\Database\buildLike
buildLike()
LIKE statement wrapper, receives a variable-length argument list with parts of pattern to match conta...
Definition: Database.php:2700
Wikimedia\Rdbms\Database\getServerUptime
getServerUptime()
Determines how long the server has been up.
Definition: Database.php:3240
Wikimedia\Rdbms\Database\tableNames
tableNames()
Fetch a number of table names into an array This is handy when you need to construct SQL for joins.
Definition: Database.php:2432
Wikimedia\Rdbms\Database\prependDatabaseOrSchema
prependDatabaseOrSchema( $namespace, $relation, $format)
Definition: Database.php:2421
Wikimedia\Rdbms\Database\$delimiter
string $delimiter
Definition: Database.php:134
Wikimedia\Rdbms\Database\__destruct
__destruct()
Run a few simple sanity checks and close dangling connections.
Definition: Database.php:4706
Wikimedia\Rdbms\Database\endAtomic
endAtomic( $fname=__METHOD__)
Ends an atomic section of SQL statements.
Definition: Database.php:3693
Wikimedia\Rdbms\Database\indexName
indexName( $index)
Allows for index remapping in queries where this is not consistent across DBMS.
Definition: Database.php:2642
Wikimedia\Rdbms\IDatabase\lastError
lastError()
Get a description of the last error.
DBO_DEBUG
const DBO_DEBUG
Definition: defines.php:9
Wikimedia\Rdbms\Database\setBigSelects
setBigSelects( $value=true)
Allow or deny "big selects" for this session only.
Definition: Database.php:4610
$tables
this hook is for auditing only RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
Definition: hooks.txt:1018
Wikimedia\Rdbms\DBTransactionStateError
Definition: DBTransactionStateError.php:27
Wikimedia\Rdbms
Definition: ChronologyProtector.php:24
Wikimedia\Rdbms\Database\timestampOrNull
timestampOrNull( $ts=null)
Convert a timestamp in one of the formats accepted by wfTimestamp() to the format used for inserting ...
Definition: Database.php:4063
Wikimedia\Rdbms\Database\decodeExpiry
decodeExpiry( $expiry, $format=TS_MW)
Decode an expiry time into a DBMS independent format.
Definition: Database.php:4602
Wikimedia\Rdbms\Database\$trxAutomaticAtomic
bool $trxAutomaticAtomic
Record if the current transaction was started implicitly by Database::startAtomic.
Definition: Database.php:217
Wikimedia\Rdbms\Database\initConnection
initConnection()
Initialize the connection to the database over the wire (or to local files)
Definition: Database.php:338
Wikimedia\Rdbms\Database\normalizeConditions
normalizeConditions( $conds, $fname)
Definition: Database.php:1893
Wikimedia\Rdbms\Database\anyString
anyString()
Returns a token for buildLike() that denotes a '' to be used in a LIKE query.
Definition: Database.php:2731
Wikimedia\Rdbms\Database\unionSupportsOrderAndLimit
unionSupportsOrderAndLimit()
Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries within th...
Definition: Database.php:3147
Wikimedia\Rdbms\DBMasterPos
An object representing a master or replica DB position in a replicated setup.
Definition: DBMasterPos.php:12
$params
$params
Definition: styleTest.css.php:44
Wikimedia\Rdbms\Database\isInsertSelectSafe
isInsertSelectSafe(array $insertOptions, array $selectOptions)
Definition: Database.php:2999
Wikimedia\Rdbms\Database\fieldNameWithAlias
fieldNameWithAlias( $name, $alias=false)
Get an aliased field name e.g.
Definition: Database.php:2511
Wikimedia\Rdbms\Database\getDefaultSchemaVars
getDefaultSchemaVars()
Get schema variables to use if none have been set via setSchemaVars().
Definition: Database.php:4466
BagOStuff
Class representing a cache/ephemeral data store.
Definition: BagOStuff.php:58
$s
$s
Definition: mergeMessageFileList.php:187
Wikimedia\Rdbms\Database\extractSingleFieldFromList
extractSingleFieldFromList( $var)
Definition: Database.php:1916
Wikimedia\Rdbms\Database\duplicateTableStructure
duplicateTableStructure( $oldName, $newName, $temporary=false, $fname=__METHOD__)
Creates a new table with structure copied from existing table.
Definition: Database.php:4043
Wikimedia\Rdbms\Database\onTransactionCommitOrIdle
onTransactionCommitOrIdle(callable $callback, $fname=__METHOD__)
Run a callback as soon as there is no transaction pending.
Definition: Database.php:3350
$res
$res
Definition: database.txt:21
Wikimedia\Rdbms\Database\isWriteQuery
isWriteQuery( $sql)
Determine whether a query writes to the DB.
Definition: Database.php:1040
Wikimedia\Rdbms\Database\namedLocksEnqueue
namedLocksEnqueue()
Check to see if a named lock used by lock() use blocking queues.
Definition: Database.php:4524
DBO_IGNORE
const DBO_IGNORE
Definition: defines.php:11
Wikimedia\Rdbms\Database\$profiler
mixed $profiler
Class name or object With profileIn/profileOut methods.
Definition: Database.php:264
Wikimedia\Rdbms\Database\buildSubstring
buildSubstring( $input, $startPosition, $length=null)
Definition: Database.php:2242
Wikimedia\Rdbms\ResultWrapper
Result wrapper for grabbing data queried from an IDatabase object.
Definition: ResultWrapper.php:24
Wikimedia\Rdbms\Database\setLazyMasterHandle
setLazyMasterHandle(IDatabase $conn)
Set a lazy-connecting DB handle to the master DB (for replication status purposes)
Definition: Database.php:649
Wikimedia\Rdbms\Database\tableNamesWithIndexClauseOrJOIN
tableNamesWithIndexClauseOrJOIN( $tables, $use_index=[], $ignore_index=[], $join_conds=[])
Get the aliased table name clause for a FROM clause which might have a JOIN and/or USE INDEX or IGNOR...
Definition: Database.php:2547
Wikimedia\Rdbms\Database\getReplicaPos
getReplicaPos()
Get the replication position of this replica DB.
Definition: Database.php:3329
Wikimedia\Rdbms\Database\getSchemaVars
getSchemaVars()
Get schema variables.
Definition: Database.php:4450
Wikimedia\Rdbms\Database\setLBInfo
setLBInfo( $name, $value=null)
Set the LB info array, or a member of it.
Definition: Database.php:641
Wikimedia\Rdbms\Database\setLogger
setLogger(LoggerInterface $logger)
Set the PSR-3 logger interface to use for query logging.
Definition: Database.php:560
Wikimedia\Rdbms\Database\__clone
__clone()
Make sure that copies do not share the same client binding handle.
Definition: Database.php:4669
Wikimedia\Rdbms\Database\cancelAtomic
cancelAtomic( $fname=__METHOD__, AtomicSectionIdentifier $sectionId=null)
Cancel an atomic section of SQL statements.
Definition: Database.php:3727
$base
$base
Definition: generateLocalAutoload.php:11
Wikimedia\Rdbms\Database\getFlag
getFlag( $flag)
Returns a boolean whether the flag $flag is set for this connection.
Definition: Database.php:814
Wikimedia\Rdbms\Database\conditional
conditional( $cond, $trueVal, $falseVal)
Returns an SQL expression for a simple conditional.
Definition: Database.php:3228
Wikimedia\Rdbms\Database\$trxAtomicLevels
array $trxAtomicLevels
Array of levels of atomicity within transactions.
Definition: Database.php:211
Wikimedia\Rdbms\DBError
Database error base class.
Definition: DBError.php:30
Wikimedia\Rdbms\Database\reportQueryError
reportQueryError( $error, $errno, $sql, $fname, $tempIgnore=false)
Report a query error.
Definition: Database.php:1462
Wikimedia\Rdbms\Database\$trxStatusIgnoredCause
array null $trxStatusIgnoredCause
If wasKnownStatementRollbackError() prevented trxStatus from being set, the relevant details are stor...
Definition: Database.php:152
Wikimedia\Rdbms\Database\$lastQuery
string $lastQuery
SQL query.
Definition: Database.php:73
DBO_TRX
const DBO_TRX
Definition: defines.php:12
Wikimedia\Rdbms\Database\textFieldSize
textFieldSize( $table, $field)
Returns the size of a text field, or -1 for "unlimited".
Definition: Database.php:2922
Wikimedia\Rdbms\Database\buildConcat
buildConcat( $stringList)
Build a concatenation list to feed into a SQL query.
Definition: Database.php:2230
Wikimedia\Rdbms\Database\deadlockLoop
deadlockLoop()
Perform a deadlock-prone transaction.
Definition: Database.php:3288
Wikimedia\Rdbms\Database\bitNot
bitNot( $field)
Definition: Database.php:2218
Wikimedia\Rdbms\Database\nextSavepointId
nextSavepointId( $fname)
Definition: Database.php:3648
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
LIST_AND
const LIST_AND
Definition: Defines.php:43
Wikimedia\Rdbms\Database\$agent
string $agent
Agent name for query profiling.
Definition: Database.php:91
Wikimedia\Rdbms\Database\DEADLOCK_TRIES
const DEADLOCK_TRIES
Number of times to re-try an operation in case of deadlock.
Definition: Database.php:50
Wikimedia\Rdbms\Database\implicitGroupby
implicitGroupby()
Returns true if this database does an implicit sort when doing GROUP BY.
Definition: Database.php:662
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:38
Wikimedia\Rdbms\Database\__sleep
__sleep()
Called by serialize.
Definition: Database.php:4698
DBO_NOBUFFER
const DBO_NOBUFFER
Definition: defines.php:10
Wikimedia\Rdbms\Database\doBegin
doBegin( $fname)
Issues the BEGIN command to the database server.
Definition: Database.php:3875
Wikimedia\Rdbms\Database\$trxIdleCallbacks
array[] $trxIdleCallbacks
List of (callable, method name, atomic section id)
Definition: Database.php:111
Wikimedia\Rdbms\Database\clearFlag
clearFlag( $flag, $remember=self::REMEMBER_NOTHING)
Clear a flag for this connection.
Definition: Database.php:790
Wikimedia\Rdbms\Database\begin
begin( $fname=__METHOD__, $mode=self::TRANSACTION_EXPLICIT)
Begin a transaction.
Definition: Database.php:3816
Wikimedia\Rdbms\IDatabase\fetchObject
fetchObject( $res)
Fetch the next row from the given result object, in object form.
Wikimedia\Rdbms\Database\resultObject
resultObject( $result)
Take the result from a query, and wrap it in a ResultWrapper if necessary.
Definition: Database.php:4095
Wikimedia\Rdbms\Database\$lastWriteTime
float bool $lastWriteTime
UNIX timestamp of last write query.
Definition: Database.php:75
Wikimedia\Rdbms\Database\doQuery
doQuery( $sql)
Run a query and return a DBMS-dependent wrapper (that has all IResultWrapper methods)
Wikimedia\Rdbms\Database\runOnTransactionIdleCallbacks
runOnTransactionIdleCallbacks( $trigger)
Actually consume and run any "on transaction idle/resolution" callbacks.
Definition: Database.php:3485
Wikimedia\Rdbms\Database\makeSelectOptions
makeSelectOptions( $options)
Returns an optional USE INDEX clause to go after the table, and a string to go at the end of the quer...
Definition: Database.php:1567
Wikimedia\Rdbms\Database\$trxStatusCause
Exception null $trxStatusCause
The last error that caused the status to become STATUS_TRX_ERROR.
Definition: Database.php:147
Wikimedia\Rdbms\Database\replaceVars
replaceVars( $ins)
Database independent variable replacement.
Definition: Database.php:4412
Wikimedia\Rdbms\Database\$NOT_APPLICABLE
static string $NOT_APPLICABLE
Idiom used when a cancelable atomic section started the transaction.
Definition: Database.php:272
Wikimedia\Rdbms\Database\$trxStatus
int $trxStatus
Transaction status.
Definition: Database.php:143
Wikimedia\Rdbms\Database\runOnTransactionPreCommitCallbacks
runOnTransactionPreCommitCallbacks()
Actually consume and run any "on transaction pre-commit" callbacks.
Definition: Database.php:3545
Wikimedia\Rdbms\Database\wasLockTimeout
wasLockTimeout()
Determines if the last failure was due to a lock timeout.
Definition: Database.php:3248
Wikimedia\Rdbms\Database\$affectedRowCount
integer null $affectedRowCount
Rows affected by the last query to query() or its CRUD wrappers.
Definition: Database.php:138
Wikimedia\Rdbms\Database\$currentDomain
DatabaseDomain $currentDomain
Definition: Database.php:136
LIST_OR
const LIST_OR
Definition: Defines.php:46
Wikimedia\Rdbms\Database\getLag
getLag()
Get the amount of replication lag for this database server.
Definition: Database.php:4244
Wikimedia\Rdbms\Database\modifyCallbacksForCancel
modifyCallbacksForCancel(array $sectionIds)
Definition: Database.php:3430
Wikimedia\Rdbms\Database\$sessionTempTables
array $sessionTempTables
Map of (table name => 1) for TEMPORARY tables.
Definition: Database.php:252
Wikimedia\Rdbms\Database\buildSelectSubquery
buildSelectSubquery( $table, $vars, $conds='', $fname=__METHOD__, $options=[], $join_conds=[])
Equivalent to IDatabase::selectSQLText() except wraps the result in Subqyery.
Definition: Database.php:2284
Wikimedia\Rdbms\Database\rollback
rollback( $fname=__METHOD__, $flush='')
Rollback a transaction previously started using begin().
Definition: Database.php:3957
Wikimedia\Rdbms\Database\assertBuildSubstringParams
assertBuildSubstringParams( $startPosition, $length)
Check type and bounds for parameters to self::buildSubstring()
Definition: Database.php:2263
Wikimedia\Rdbms\Database\isReadOnly
isReadOnly()
Definition: Database.php:4614
user
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same user
Definition: distributors.txt:9
Wikimedia\Rdbms\Database\buildStringCast
buildStringCast( $field)
Definition: Database.php:2276
Wikimedia\Rdbms\Database\$lazyMasterHandle
IDatabase null $lazyMasterHandle
Lazy handle to the master DB this server replicates from.
Definition: Database.php:255
Wikimedia\Rdbms\Database\unlockTables
unlockTables( $method)
Unlock all tables locked via lockTables()
Definition: Database.php:4556
Wikimedia\Rdbms\Database\getSessionLagStatus
getSessionLagStatus()
Get the replica DB lag when the current transaction started or a general lag estimate if not transact...
Definition: Database.php:4172
Wikimedia\Rdbms\Database\nonNativeInsertSelect
nonNativeInsertSelect( $destTable, $srcTable, $varMap, $conds, $fname=__METHOD__, $insertOptions=[], $selectOptions=[], $selectJoinConds=[])
Implementation of insertSelect() based on select() and insert()
Definition: Database.php:3018
Wikimedia\Rdbms\Database\$trxWriteDuration
float $trxWriteDuration
Seconds spent in write queries for the current transaction.
Definition: Database.php:227
Wikimedia\Rdbms\Database\doRollbackToSavepoint
doRollbackToSavepoint( $identifier, $fname)
Rollback to a savepoint.
Definition: Database.php:3640
Wikimedia\Rdbms\Database\startAtomic
startAtomic( $fname=__METHOD__, $cancelable=self::ATOMIC_NOT_CANCELABLE)
Begin an atomic section of SQL statements.
Definition: Database.php:3663
Wikimedia\Rdbms\DBQueryTimeoutError
Error thrown when a query times out.
Definition: DBQueryTimeoutError.php:29
Wikimedia\Rdbms\Database\selectOptionsIncludeLocking
selectOptionsIncludeLocking( $options)
Definition: Database.php:1849
Wikimedia\Rdbms\Database\getCacheSetOptions
static getCacheSetOptions(IDatabase $db1, IDatabase $db2=null)
Merge the result of getSessionLagStatus() for several DBs using the most pessimistic values to estima...
Definition: Database.php:4227
Wikimedia\Rdbms\Database\open
open( $server, $user, $password, $dbName, $schema, $tablePrefix)
Open a new connection to the database (closing any existing one)
Wikimedia\Rdbms\Database\lock
lock( $lockName, $method, $timeout=5)
Acquire a named lock.
Definition: Database.php:4477
Wikimedia\Rdbms\Database\getTransactionRoundId
getTransactionRoundId()
Definition: Database.php:702
Wikimedia\Rdbms\Database\upsert
upsert( $table, array $rows, array $uniqueIndexes, array $set, $fname=__METHOD__)
INSERT ON DUPLICATE KEY UPDATE wrapper, upserts an array into a table.
Definition: Database.php:2853
Wikimedia\Rdbms\Database\trxLevel
trxLevel()
Gets the current transaction level.
Definition: Database.php:579
$input
if(is_array( $mode)) switch( $mode) $input
Definition: postprocess-phan.php:141
Wikimedia\Rdbms\Database\setFlag
setFlag( $flag, $remember=self::REMEMBER_NOTHING)
Set a flag for this connection.
Definition: Database.php:779
$matches
$matches
Definition: NoLocalSettings.php:24
Wikimedia\Rdbms\Database\setTransactionListener
setTransactionListener( $name, callable $callback=null)
Run a callback after each time any transaction commits or rolls back.
Definition: Database.php:3455
Wikimedia\Rdbms\Database\getWikiID
getWikiID()
Alias for getDomainID()
Definition: Database.php:831
Wikimedia\Rdbms\Database\escapeLikeInternal
escapeLikeInternal( $s, $escapeChar='`')
Definition: Database.php:2694
Wikimedia\Rdbms\Database\$tableAliases
array[] $tableAliases
Map of (table => (dbname, schema, prefix) map)
Definition: Database.php:85
Wikimedia\Rdbms\Database\$cliMode
bool $cliMode
Whether this PHP instance is for a CLI script.
Definition: Database.php:89
Wikimedia\Rdbms\Database\$trxShortId
string $trxShortId
Either a short hexidecimal string if a transaction is active or "".
Definition: Database.php:166
Wikimedia\Rdbms\Database\isTransactableQuery
isTransactableQuery( $sql)
Determine whether a SQL statement is sensitive to isolation level.
Definition: Database.php:1079
Wikimedia\Rdbms\Database\lockForUpdate
lockForUpdate( $table, $conds='', $fname=__METHOD__, $options=[], $join_conds=[])
Lock all rows meeting the given conditions/options FOR UPDATE.
Definition: Database.php:1932
LIST_SET
const LIST_SET
Definition: Defines.php:44
Wikimedia\Rdbms\Database\indexExists
indexExists( $table, $index, $fname=__METHOD__)
Determines whether an index exists Usually throws a DBQueryError on failure If errors are explicitly ...
Definition: Database.php:1984
Wikimedia\Rdbms\Database\writesOrCallbacksPending
writesOrCallbacksPending()
Whether there is a transaction open with either possible write queries or unresolved pre-commit/commi...
Definition: Database.php:686
Wikimedia\Rdbms\Database\sourceStream
sourceStream( $fp, callable $lineCallback=null, callable $resultCallback=null, $fname=__METHOD__, callable $inputCallback=null)
Read and execute commands from an open file handle.
Definition: Database.php:4302
Wikimedia\Rdbms\Database\selectSQLText
selectSQLText( $table, $vars, $conds='', $fname=__METHOD__, $options=[], $join_conds=[])
The equivalent of IDatabase::select() except that the constructed SQL is returned,...
Definition: Database.php:1696
Wikimedia\Rdbms\Database\$trxWriteCallers
string[] $trxWriteCallers
Track the write query callers of the current transaction.
Definition: Database.php:223
Wikimedia\Rdbms\Database\$lastPing
float $lastPing
UNIX timestamp.
Definition: Database.php:258
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
Wikimedia\Rdbms\Database\bitAnd
bitAnd( $fieldLeft, $fieldRight)
Definition: Database.php:2222
Wikimedia\Rdbms\Database\$phpError
string bool $phpError
Definition: Database.php:77
Wikimedia\Rdbms\Database\$trxProfiler
TransactionProfiler $trxProfiler
Definition: Database.php:266
Wikimedia\Rdbms\Database\$user
string $user
User that this instance is currently connected under the name of.
Definition: Database.php:81
Wikimedia\Rdbms\Database\SMALL_WRITE_ROWS
const SMALL_WRITE_ROWS
Definition: Database.php:62
Wikimedia\Rdbms\Database\assertNoOpenTransactions
assertNoOpenTransactions()
Assert that all explicit transactions or atomic sections have been closed.
Definition: Database.php:1357
Wikimedia\Rdbms\Database\selectDB
selectDB( $db)
Change the current database.
Definition: Database.php:2297
Wikimedia\Rdbms\Database\reportConnectionError
reportConnectionError( $error='Unknown error')
Definition: Database.php:1008
Wikimedia\Rdbms\Database\wasQueryTimeout
wasQueryTimeout( $error, $errno)
Checks whether the cause of the error is detected to be a timeout.
Definition: Database.php:1447
Wikimedia\Rdbms\Database\closeConnection
closeConnection()
Closes underlying database connection.
Wikimedia\Rdbms\Database\lastDoneWrites
lastDoneWrites()
Returns the last time the connection may have been used for write queries.
Definition: Database.php:678
$vars
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
Definition: hooks.txt:2270
Wikimedia\Rdbms\Database\dropTable
dropTable( $tableName, $fName=__METHOD__)
Delete a table.
Definition: Database.php:4583
Wikimedia\Rdbms\Database\wasReadOnlyError
wasReadOnlyError()
Determines if the last failure was due to the database being read-only.
Definition: Database.php:3256
Wikimedia\Rdbms\Database\getServerInfo
getServerInfo()
A string describing the current software version, and possibly other details in a user-friendly way.
Definition: Database.php:564
Wikimedia\Rdbms\Database\commit
commit( $fname=__METHOD__, $flush=self::FLUSHING_ONE)
Commits a transaction previously started using begin().
Definition: Database.php:3880
Wikimedia\Rdbms\Database\restoreFlags
restoreFlags( $state=self::RESTORE_PRIOR)
Restore the flags to their prior state before the last setFlag/clearFlag call.
Definition: Database.php:801
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
Wikimedia\Rdbms\Database\connectionErrorLogger
connectionErrorLogger( $errno, $errstr)
Error handler for logging errors during database connection This method should not be used outside of...
Definition: Database.php:896
Wikimedia\Rdbms\Database\getScopedLockAndFlush
getScopedLockAndFlush( $lockKey, $fname, $timeout)
Acquire a named lock, flush any transaction, and return an RAII style unlocker object.
Definition: Database.php:4489
Wikimedia\Rdbms\Database\fieldNamesWithAlias
fieldNamesWithAlias( $fields)
Gets an array of aliased field names.
Definition: Database.php:2525
string
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
Definition: hooks.txt:175
Wikimedia\Rdbms\Database\assertOpen
assertOpen()
Make sure isOpen() returns true as a sanity check.
Definition: Database.php:990
Wikimedia\Rdbms\Database\getLBInfo
getLBInfo( $name=null)
Get properties passed down from the server info array of the load balancer.
Definition: Database.php:629
Wikimedia\Rdbms\DBReadOnlyError
Definition: DBReadOnlyError.php:27
Wikimedia\Rdbms\Database\$trxWriteAffectedRows
int $trxWriteAffectedRows
Number of rows affected by write queries for the current transaction.
Definition: Database.php:235
Wikimedia\Rdbms\Database\$trxWriteAdjDuration
float $trxWriteAdjDuration
Like trxWriteQueryCount but excludes lock-bound, easy to replicate, queries.
Definition: Database.php:239
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
Wikimedia\Rdbms\Database\insertSelect
insertSelect( $destTable, $srcTable, $varMap, $conds, $fname=__METHOD__, $insertOptions=[], $selectOptions=[], $selectJoinConds=[])
INSERT SELECT wrapper.
Definition: Database.php:2957
Wikimedia\Rdbms\Database\makeInsertOptions
makeInsertOptions( $options)
Helper for Database::insert().
Definition: Database.php:2015
Wikimedia\Rdbms\Database\selectRow
selectRow( $table, $vars, $conds, $fname=__METHOD__, $options=[], $join_conds=[])
Single row SELECT wrapper.
Definition: Database.php:1779
Wikimedia\Rdbms\Database\handleSessionLoss
handleSessionLoss()
Clean things up after session (and thus transaction) loss.
Definition: Database.php:1402
Wikimedia\Rdbms\DBQueryError
Definition: DBQueryError.php:27
Wikimedia\Rdbms\Database\useIndexClause
useIndexClause( $index)
USE INDEX clause.
Definition: Database.php:2749
Wikimedia\Rdbms\Database\makeUpdateOptions
makeUpdateOptions( $options)
Make UPDATE options for the Database::update function.
Definition: Database.php:2097
LIST_COMMA
const LIST_COMMA
Definition: Defines.php:42
Wikimedia\Rdbms\Database\getReadOnlyReason
getReadOnlyReason()
Definition: Database.php:4621
$fname
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Definition: Setup.php:121
Wikimedia\Rdbms\Database\$priorFlags
int[] $priorFlags
Prior flags member variable values.
Definition: Database.php:261
Wikimedia\Rdbms\Database\installErrorHandler
installErrorHandler()
Set a custom error handler for logging errors during database connection.
Definition: Database.php:855
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:302
Wikimedia\Rdbms\Database\aggregateValue
aggregateValue( $valuedata, $valuename='value')
Return aggregated value alias.
Definition: Database.php:2214
Wikimedia\Rdbms\Database\restoreErrorHandler
restoreErrorHandler()
Restore the previous error handler and return the last PHP error for this DB.
Definition: Database.php:866
Wikimedia\Rdbms\Database\preCommitCallbacksPending
preCommitCallbacksPending()
Definition: Database.php:695
key
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message key
Definition: hooks.txt:2205
$line
$line
Definition: cdb.php:59
Wikimedia\Rdbms\Database\replace
replace( $table, $uniqueIndexes, $rows, $fname=__METHOD__)
REPLACE query wrapper.
Definition: Database.php:2767
Wikimedia\Rdbms\Database\wasKnownStatementRollbackError
wasKnownStatementRollbackError()
Definition: Database.php:3284
Wikimedia\Rdbms\Database\pendingWriteAndCallbackCallers
pendingWriteAndCallbackCallers()
List the methods that have write queries or callbacks for the current transaction.
Definition: Database.php:751
Wikimedia\Rdbms\Database\$trxPreCommitCallbacks
array[] $trxPreCommitCallbacks
List of (callable, method name, atomic section id)
Definition: Database.php:113
Wikimedia\Rdbms\Database\$htmlErrors
string bool null $htmlErrors
Stashed value of html_errors INI setting.
Definition: Database.php:132
Wikimedia\Rdbms\Database\tableExists
tableExists( $table, $fname=__METHOD__)
Query whether a given table exists.
Wikimedia\Rdbms\Database\$SAVEPOINT_PREFIX
static string $SAVEPOINT_PREFIX
Prefix to the atomic section counter used to make savepoint IDs.
Definition: Database.php:274
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2213
Wikimedia\Rdbms\Database\pendingWriteCallers
pendingWriteCallers()
Get the list of method names that did write queries for this transaction.
Definition: Database.php:735
Wikimedia\Rdbms\Database\$deprecationLogger
callback $deprecationLogger
Deprecation logging callback.
Definition: Database.php:103
Wikimedia\Rdbms\Database\makeQueryException
makeQueryException( $error, $errno, $sql, $fname)
Definition: Database.php:1479
Wikimedia\Rdbms\Database\$trxEndCallbacks
array[] $trxEndCallbacks
List of (callable, method name, atomic section id)
Definition: Database.php:115
Wikimedia\Rdbms\Database\tableNamesN
tableNamesN()
Fetch a number of table names into an zero-indexed numerical array This is handy when you need to con...
Definition: Database.php:2443
$value
$value
Definition: styleTest.css.php:49
Wikimedia\Rdbms\Database\$opened
bool $opened
Definition: Database.php:108
Wikimedia\Rdbms\Database\__toString
__toString()
Definition: Database.php:4661
Wikimedia\Rdbms\Database\getLogContext
getLogContext(array $extras=[])
Create a log context to pass to PSR-3 logger functions.
Definition: Database.php:906
Wikimedia\Rdbms\Database\$connectionParams
array $connectionParams
Parameters used by initConnection() to establish a connection.
Definition: Database.php:93
Wikimedia\Rdbms\Database\$trxAutomatic
bool $trxAutomatic
Record if the current transaction was started implicitly due to DBO_TRX being set.
Definition: Database.php:199
$retval
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account incomplete not yet checked for validity & $retval
Definition: hooks.txt:244
Wikimedia\Rdbms\Database\$namedLocksHeld
array $namedLocksHeld
Map of (name => 1) for locks obtained via lock()
Definition: Database.php:250
Wikimedia\Rdbms\Database\pendingWriteRowsAffected
pendingWriteRowsAffected()
Get the number of affected rows from pending write queries.
Definition: Database.php:739
Wikimedia\Rdbms\Database\doneWrites
doneWrites()
Returns true if the connection may have been used for write queries.
Definition: Database.php:674
Wikimedia\Rdbms\Database\$trxWriteQueryCount
int $trxWriteQueryCount
Number of write queries for the current transaction.
Definition: Database.php:231
Wikimedia\Rdbms\AtomicSectionIdentifier
Class used for token representing identifiers for atomic sections from IDatabase instances.
Definition: AtomicSectionIdentifier.php:26
Wikimedia\Rdbms\Database\doReleaseSavepoint
doReleaseSavepoint( $identifier, $fname)
Release a savepoint.
Definition: Database.php:3626
Wikimedia\Rdbms\Database\currentAtomicSectionId
currentAtomicSectionId()
Definition: Database.php:3392
Wikimedia\Rdbms\Database\setTrxEndCallbackSuppression
setTrxEndCallbackSuppression( $suppress)
Whether to disable running of post-COMMIT/ROLLBACK callbacks.
Definition: Database.php:3471
Wikimedia\Rdbms\IDatabase\fetchRow
fetchRow( $res)
Fetch the next row from the given result object, in associative array form.
Wikimedia\Rdbms\Database\getMasterPos
getMasterPos()
Get the position of this master.
Definition: Database.php:3334
Wikimedia\Rdbms\Database\DEADLOCK_DELAY_MIN
const DEADLOCK_DELAY_MIN
Minimum time to wait before retry, in microseconds.
Definition: Database.php:52
Wikimedia\Rdbms\Database\pendingWriteQueryDuration
pendingWriteQueryDuration( $type=self::ESTIMATE_TOTAL)
Get the time spend running write queries for this transaction.
Definition: Database.php:713
Wikimedia\Rdbms\Database\$indexAliases
string[] $indexAliases
Map of (index alias => index)
Definition: Database.php:87
$ret
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition: hooks.txt:2036
Wikimedia\Rdbms\LikeMatch
Used by Database::buildLike() to represent characters that have special meaning in SQL LIKE clauses a...
Definition: LikeMatch.php:10
Wikimedia\Rdbms\Database\tableName
tableName( $name, $format='quoted')
Format a table name ready for use in constructing an SQL query.
Definition: Database.php:2323
Wikimedia\Rdbms\Database\$conn
resource null $conn
Database connection.
Definition: Database.php:106
Wikimedia\Rdbms\Database\wasConnectionError
wasConnectionError( $errno)
Do not use this method outside of Database/DBError classes.
Definition: Database.php:3274
Wikimedia\Rdbms\Database\doAtomicSection
doAtomicSection( $fname, callable $callback, $cancelable=self::ATOMIC_NOT_CANCELABLE)
Perform an atomic section of reversable SQL statements from a callback.
Definition: Database.php:3800
Wikimedia\Rdbms\Database\query
query( $sql, $fname=__METHOD__, $tempIgnore=false)
Run an SQL query and return the result.
Definition: Database.php:1126
Wikimedia\Rdbms\Database\getRecordedTransactionLagStatus
getRecordedTransactionLagStatus()
Get the replica DB lag when the current transaction started.
Definition: Database.php:4189
Wikimedia\Rdbms\Database\strencode
strencode( $s)
Wrapper for addslashes()
Wikimedia\Rdbms\Database\getServer
getServer()
Get the server hostname or IP address.
Definition: Database.php:2319
Wikimedia\Rdbms\DBUnexpectedError
Definition: DBUnexpectedError.php:27
Wikimedia\Rdbms\Database\doLockTables
doLockTables(array $read, array $write, $method)
Helper function for lockTables() that handles the actual table locking.
Definition: Database.php:4552
Wikimedia\Rdbms\Database\doUnlockTables
doUnlockTables( $method)
Helper function for unlockTables() that handles the actual table unlocking.
Definition: Database.php:4572
Wikimedia\Rdbms\Database\timestamp
timestamp( $ts=0)
Convert a timestamp in one of the formats accepted by wfTimestamp() to the format used for inserting ...
Definition: Database.php:4057
Wikimedia\Rdbms\Database\selectField
selectField( $table, $var, $cond='', $fname=__METHOD__, $options=[], $join_conds=[])
A SELECT wrapper which returns a single field from a single result row.
Definition: Database.php:1505
Wikimedia\Rdbms\Database\bufferResults
bufferResults( $buffer=null)
Turns buffering of SQL result sets on (true) or off (false).
Definition: Database.php:568
Wikimedia\Rdbms\Database\makeList
makeList( $a, $mode=self::LIST_COMMA)
Makes an encoded list of strings from an array.
Definition: Database.php:2115
Wikimedia\Rdbms\Database\anyChar
anyChar()
Returns a token for buildLike() that denotes a '_' to be used in a LIKE query.
Definition: Database.php:2727
Wikimedia\Rdbms\Database\onTransactionIdle
onTransactionIdle(callable $callback, $fname=__METHOD__)
Alias for onTransactionCommitOrIdle() for backwards-compatibility.
Definition: Database.php:3363
Wikimedia\Rdbms\Database\unlock
unlock( $lockName, $method)
Release a lock.
Definition: Database.php:4483
Wikimedia\Rdbms\Database\DEADLOCK_DELAY_MAX
const DEADLOCK_DELAY_MAX
Maximum time to wait before retry.
Definition: Database.php:54
Wikimedia\Rdbms\Database\assertTransactionStatus
assertTransactionStatus( $sql, $fname)
Definition: Database.php:1335
Wikimedia\Rdbms\Database\addIdentifierQuotes
addIdentifierQuotes( $s)
Quotes an identifier using backticks or "double quotes" depending on the database type.
Definition: Database.php:2672
Wikimedia\Rdbms\Database\getLazyMasterHandle
getLazyMasterHandle()
Definition: Database.php:658
Wikimedia\Rdbms\Database\indexUnique
indexUnique( $table, $index)
Determines if a given index is unique.
Definition: Database.php:1999
$args
if( $line===false) $args
Definition: cdb.php:64
Wikimedia\Rdbms\Database\$preparedArgs
array null $preparedArgs
Definition: Database.php:130
Wikimedia\Rdbms\Database\dbSchema
dbSchema( $schema=null)
Get/set the db schema.
Definition: Database.php:608
Wikimedia\Rdbms\Database\$trxRecurringCallbacks
callable[] $trxRecurringCallbacks
Map of (name => callable)
Definition: Database.php:117
Wikimedia\Rdbms\Database\close
close()
Close the database connection.
Definition: Database.php:917
Wikimedia\Rdbms\Database\getQueryVerb
getQueryVerb( $sql)
Definition: Database.php:1062
Wikimedia\Rdbms\Database\unionQueries
unionQueries( $sqls, $all)
Construct a UNION query This is used for providing overload point for other DB abstractions not compa...
Definition: Database.php:3151
Wikimedia\Rdbms\DBTransactionError
Definition: DBTransactionError.php:27
Wikimedia\Rdbms\Database\reassignCallbacksForSection
reassignCallbacksForSection(AtomicSectionIdentifier $old, AtomicSectionIdentifier $new)
Definition: Database.php:3406
Wikimedia\Rdbms\IDatabase\lastErrno
lastErrno()
Get the last error number.
Wikimedia\Rdbms\Database\relationSchemaQualifier
relationSchemaQualifier()
Definition: Database.php:625
Wikimedia\Rdbms\Database\PING_QUERY
const PING_QUERY
Definition: Database.php:58
Wikimedia\Rdbms\Database\lockTables
lockTables(array $read, array $write, $method)
Lock specific tables.
Definition: Database.php:4532
Wikimedia\Rdbms\Database\$trxAtomicCounter
int $trxAtomicCounter
Counter for atomic savepoint identifiers.
Definition: Database.php:205
$rows
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
Definition: hooks.txt:2675
Wikimedia\Rdbms\Database\encodeExpiry
encodeExpiry( $expiry)
Encode an expiry time into the DBMS dependent format.
Definition: Database.php:4596
Wikimedia\Rdbms\Database\$srvCache
BagOStuff $srvCache
APC cache.
Definition: Database.php:95
$options
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition: hooks.txt:2036
Wikimedia\Rdbms\Database\doSavepoint
doSavepoint( $identifier, $fname)
Create a savepoint.
Definition: Database.php:3612
Wikimedia\Rdbms\Database\setSchemaVars
setSchemaVars( $vars)
Set variables to be used in sourceFile/sourceStream, in preference to the ones in $GLOBALS.
Definition: Database.php:4298
Wikimedia\Rdbms\Database\__construct
__construct(array $params)
Definition: Database.php:287
Wikimedia\Rdbms\Database\trxTimestamp
trxTimestamp()
Get the UNIX timestamp of the time that the transaction was established.
Definition: Database.php:583
Wikimedia\Rdbms\Database\$trxTimestamp
float null $trxTimestamp
The UNIX time that the transaction started.
Definition: Database.php:175
Wikimedia\Rdbms\Database\flushSnapshot
flushSnapshot( $fname=__METHOD__)
Commit any transaction but error out if writes or callbacks are pending.
Definition: Database.php:4026
Wikimedia\Rdbms\Database\makeGroupByWithHaving
makeGroupByWithHaving( $options)
Returns an optional GROUP BY with an optional HAVING.
Definition: Database.php:1650
Wikimedia\Rdbms\Database\TINY_WRITE_SEC
const TINY_WRITE_SEC
Definition: Database.php:60
Wikimedia\Rdbms\Database\tableNameWithAlias
tableNameWithAlias( $table, $alias=false)
Get an aliased table name.
Definition: Database.php:2465
Wikimedia\Rdbms\Database\getAttributes
static getAttributes()
Definition: Database.php:549
Wikimedia\Rdbms\Database\writesPending
writesPending()
Definition: Database.php:682
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
Wikimedia\Rdbms\Database\selectFieldsOrOptionsAggregate
selectFieldsOrOptionsAggregate( $fields, $options)
Definition: Database.php:1865
Wikimedia\Rdbms\Database\lockIsFree
lockIsFree( $lockName, $method)
Check to see if a named lock is not locked by any thread (non-blocking)
Definition: Database.php:4470
Wikimedia\Rdbms\Database\ping
ping(&$rtt=null)
Ping the server and try to reconnect if it there is no connection.
Definition: Database.php:4108
Wikimedia\Rdbms\Database\$nonNativeInsertSelectBatchSize
int $nonNativeInsertSelectBatchSize
Definition: Database.php:269
Wikimedia\Rdbms\Database\runTransactionListenerCallbacks
runTransactionListenerCallbacks( $trigger)
Actually run any "transaction listener" callbacks.
Definition: Database.php:3580
Wikimedia\Rdbms\DBConnectionError
Definition: DBConnectionError.php:26
Wikimedia
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Ge...
Wikimedia\Rdbms\Database\setTableAliases
setTableAliases(array $aliases)
Make certain table names use their own database, schema, and table prefix when passed into SQL querie...
Definition: Database.php:4627
Wikimedia\Rdbms\Database\masterPosWait
masterPosWait(DBMasterPos $pos, $timeout)
Wait for the replica DB to catch up to a given master position.
Definition: Database.php:3324
Wikimedia\Rdbms\Database\onTransactionResolution
onTransactionResolution(callable $callback, $fname=__METHOD__)
Run a callback as soon as the current transaction commits or rolls back.
Definition: Database.php:3343
Wikimedia\Rdbms\Database\explicitTrxActive
explicitTrxActive()
Definition: Database.php:4039
Wikimedia\Rdbms\Database\$server
string $server
Server that this instance is currently connected to.
Definition: Database.php:79
$keys
$keys
Definition: testCompression.php:67
Wikimedia\Rdbms\Database\freeResult
freeResult( $res)
Free a result object returned by query() or select().
Definition: Database.php:1502
Wikimedia\Rdbms\Database\$schemaVars
array bool $schemaVars
Definition: Database.php:126
Wikimedia\Rdbms\Database\isOpen
isOpen()
Is a connection to the database open?
Definition: Database.php:775
Wikimedia\Rdbms\Database\doCommit
doCommit( $fname)
Issues the COMMIT command to the database server.
Definition: Database.php:3950
Wikimedia\Rdbms\IMaintainableDatabase\fieldInfo
fieldInfo( $table, $field)
mysql_fetch_field() wrapper Returns false if the field doesn't exist
Wikimedia\Rdbms\Database\makeOrderBy
makeOrderBy( $options)
Returns an optional ORDER BY.
Definition: Database.php:1676
Wikimedia\Rdbms\Database\$flags
int $flags
Definition: Database.php:122
Wikimedia\Rdbms\Database\serverIsReadOnly
serverIsReadOnly()
Definition: Database.php:3339
Wikimedia\Rdbms\Database\select
select( $table, $vars, $conds='', $fname=__METHOD__, $options=[], $join_conds=[])
Execute a SELECT query constructed using the various parameters provided.
Definition: Database.php:1688
Wikimedia\Rdbms\Database\attributesFromType
static attributesFromType( $dbType, $driver=null)
Definition: Database.php:481
Wikimedia\Rdbms\Database\lastQuery
lastQuery()
Return the last query that went through IDatabase::query()
Definition: Database.php:670
Wikimedia\Rdbms\Database\wasConnectionLoss
wasConnectionLoss()
Determines if the last query error was due to a dropped connection.
Definition: Database.php:3252
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
Wikimedia\Rdbms\Database\wasDeadlock
wasDeadlock()
Determines if the last failure was due to a deadlock.
Definition: Database.php:3244
$t
$t
Definition: testCompression.php:69
Wikimedia\Rdbms\Database\doSelectDomain
doSelectDomain(DatabaseDomain $domain)
Definition: Database.php:2311
Wikimedia\Rdbms\Database\$connLogger
LoggerInterface $connLogger
Definition: Database.php:97
Wikimedia\Rdbms\Database\update
update( $table, $values, $conds, $fname=__METHOD__, $options=[])
UPDATE wrapper.
Definition: Database.php:2103
Wikimedia\Rdbms\Database\addQuotes
addQuotes( $s)
Adds quotes and backslashes.
Definition: Database.php:2646
LIST_NAMES
const LIST_NAMES
Definition: Defines.php:45
Wikimedia\Rdbms\Database\getApproximateLagStatus
getApproximateLagStatus()
Get a replica DB lag estimate for this server.
Definition: Database.php:4201
Wikimedia\Rdbms\Database\qualifiedTableComponents
qualifiedTableComponents( $name)
Get the table components needed for a query given the currently selected database.
Definition: Database.php:2381
Wikimedia\Rdbms\Database\affectedRows
affectedRows()
Get the number of rows affected by the last write query.
Definition: Database.php:4071
Wikimedia\Rdbms\Database\$sessionVars
array $sessionVars
Definition: Database.php:128
Wikimedia\Rdbms\Database\fetchAffectedRowCount
fetchAffectedRowCount()
Wikimedia\Rdbms\DatabaseDomain
Class to handle database/prefix specification for IDatabase domains.
Definition: DatabaseDomain.php:28
Wikimedia\Rdbms\Database\databasesAreIndependent
databasesAreIndependent()
Returns true if DBs are assumed to be on potentially different servers.
Definition: Database.php:2293
Wikimedia\Rdbms\TransactionProfiler
Helper class that detects high-contention DB queries via profiling calls.
Definition: TransactionProfiler.php:38
Wikimedia\Rdbms\Database\indexInfo
indexInfo( $table, $index, $fname=__METHOD__)
Get information about an index into an object.
Wikimedia\Rdbms\Database\strreplace
strreplace( $orig, $old, $new)
Returns a command for str_replace function in SQL query.
Definition: Database.php:3236
Wikimedia\Rdbms\Database\sourceFile
sourceFile( $filename, callable $lineCallback=null, callable $resultCallback=null, $fname=false, callable $inputCallback=null)
Read and execute SQL commands from a file.
Definition: Database.php:4266
DBO_DEFAULT
const DBO_DEFAULT
Definition: defines.php:13
Wikimedia\Rdbms\Database\listViews
listViews( $prefix=null, $fname=__METHOD__)
Lists all the VIEWs in the database.
Definition: Database.php:4053
Wikimedia\Rdbms\Database\streamStatementEnd
streamStatementEnd(&$sql, &$newLine)
Called by sourceStream() to check if we've reached a statement end.
Definition: Database.php:4379
server
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same so they can t rely on Unix and must forbid reads to even standard directories like tmp lest users read each others files We cannot assume that the user has the ability to install or run any programs not written as web accessible PHP scripts Since anything that works on cheap shared hosting will work if you have shell or root access MediaWiki s design is based around catering to the lowest common denominator Although we support higher end setups as the way many things work by default is tailored toward shared hosting These defaults are unconventional from the point of view of and they certainly aren t ideal for someone who s installing MediaWiki as MediaWiki does not conform to normal Unix filesystem layout Hopefully we ll offer direct support for standard layouts in the but for now *any change to the location of files is unsupported *Moving things and leaving symlinks will *probably *not break but it is *strongly *advised not to try any more intrusive changes to get MediaWiki to conform more closely to your filesystem hierarchy Any such attempt will almost certainly result in unnecessary bugs The standard recommended location to install relative to the web is it should be possible to enable the appropriate rewrite rules by if you can reconfigure the web server
Definition: distributors.txt:53
Wikimedia\Rdbms\Database\nativeInsertSelect
nativeInsertSelect( $destTable, $srcTable, $varMap, $conds, $fname=__METHOD__, $insertOptions=[], $selectOptions=[], $selectJoinConds=[])
Native server-side implementation of insertSelect() for situations where we don't want to select ever...
Definition: Database.php:3089
Wikimedia\Rdbms\IMaintainableDatabase
Advanced database interface for IDatabase handles that include maintenance methods.
Definition: IMaintainableDatabase.php:38
Wikimedia\Rdbms\Database\SLOW_WRITE_SEC
const SLOW_WRITE_SEC
Definition: Database.php:61
Wikimedia\Rdbms\Database\tableNamesWithAlias
tableNamesWithAlias( $tables)
Gets an array of aliased table names.
Definition: Database.php:2491
Wikimedia\Rdbms\Database\nextSequenceValue
nextSequenceValue( $seqName)
Deprecated method, calls should be removed.
Definition: Database.php:2735
Wikimedia\Rdbms\Database\generalizeSQL
static generalizeSQL( $sql)
Removes most variables from an SQL query and replaces them with X or N for numbers.
Definition: Database.php:1956
Wikimedia\Rdbms\Subquery
Definition: Subquery.php:27
Wikimedia\Rdbms\Database\$rttEstimate
float $rttEstimate
RTT time estimate.
Definition: Database.php:247
Wikimedia\Rdbms\Database\selectFieldValues
selectFieldValues( $table, $var, $cond='', $fname=__METHOD__, $options=[], $join_conds=[])
A SELECT wrapper which returns a list of single field values from result rows.
Definition: Database.php:1532
Wikimedia\Rdbms\Database\flatAtomicSectionList
flatAtomicSectionList()
Definition: Database.php:769
$buffer
$buffer
Definition: mwdoc-filter.php:49
Wikimedia\Rdbms\Database\doRollback
doRollback( $fname)
Issues the ROLLBACK command to the database server.
Definition: Database.php:4017
Wikimedia\Rdbms\Database\$lbInfo
array $lbInfo
Definition: Database.php:124
Wikimedia\Rdbms\Database\doProfiledQuery
doProfiledQuery( $sql, $commentedSql, $isWrite, $fname)
Wrapper for query() that also handles profiling, logging, and affected row count updates.
Definition: Database.php:1242
Wikimedia\Rdbms\Database\getDBname
getDBname()
Get the current DB name.
Definition: Database.php:2315
Wikimedia\Rdbms\Blob
Definition: Blob.php:5
Wikimedia\Rdbms\Database\getInfinity
getInfinity()
Find out when 'infinity' is.
Definition: Database.php:4592
$type
$type
Definition: testCompression.php:48