[ 'EXTRA', 'FULL', 'NORMAL', 'OFF' ], // Optimizations for TEMPORARY tables 'temp_store' => [ 'FILE', 'MEMORY' ] ]; /** * Additional params include: * - dbDirectory : directory containing the DB and the lock file directory * - dbFilePath : use this to force the path of the DB file * - trxMode : one of (deferred, immediate, exclusive) * @param array $params */ public function __construct( array $params ) { if ( isset( $params['dbFilePath'] ) ) { $this->dbPath = $params['dbFilePath']; if ( !strlen( $params['dbname'] ) ) { $params['dbname'] = self::generateDatabaseName( $this->dbPath ); } } elseif ( isset( $params['dbDirectory'] ) ) { $this->dbDir = $params['dbDirectory']; } parent::__construct( $params ); $this->trxMode = strtoupper( $params['trxMode'] ?? '' ); $lockDirectory = $this->getLockFileDirectory(); if ( $lockDirectory !== null ) { $this->lockMgr = new FSLockManager( [ 'domain' => $this->getDomainID(), 'lockDirectory' => $lockDirectory ] ); } else { $this->lockMgr = new NullLockManager( [ 'domain' => $this->getDomainID() ] ); } } protected static function getAttributes() { return [ self::ATTR_DB_IS_FILE => true, self::ATTR_DB_LEVEL_LOCKING => true ]; } /** * @param string $filename * @param array $p Options map; supports: * - flags : (same as __construct counterpart) * - trxMode : (same as __construct counterpart) * - dbDirectory : (same as __construct counterpart) * @return DatabaseSqlite * @since 1.25 */ public static function newStandaloneInstance( $filename, array $p = [] ) { $p['dbFilePath'] = $filename; $p['schema'] = null; $p['tablePrefix'] = ''; /** @var DatabaseSqlite $db */ $db = Database::factory( 'sqlite', $p ); return $db; } /** * @return string */ public function getType() { return 'sqlite'; } protected function open( $server, $user, $pass, $dbName, $schema, $tablePrefix ) { $this->close( __METHOD__ ); // Note that for SQLite, $server, $user, and $pass are ignored if ( $schema !== null ) { throw $this->newExceptionAfterConnectError( "Got schema '$schema'; not supported." ); } if ( $this->dbPath !== null ) { $path = $this->dbPath; } elseif ( $this->dbDir !== null ) { $path = self::generateFileName( $this->dbDir, $dbName ); } else { throw $this->newExceptionAfterConnectError( "DB path or directory required" ); } // Check if the database file already exists but is non-readable if ( !self::isProcessMemoryPath( $path ) && file_exists( $path ) && !is_readable( $path ) ) { throw $this->newExceptionAfterConnectError( 'SQLite database file is not readable' ); } elseif ( !in_array( $this->trxMode, self::$VALID_TRX_MODES, true ) ) { throw $this->newExceptionAfterConnectError( "Got mode '{$this->trxMode}' for BEGIN" ); } $this->server = 'localhost'; $attributes = []; if ( $this->getFlag( self::DBO_PERSISTENT ) ) { // Persistent connections can avoid some schema index reading overhead. // On the other hand, they can cause horrible contention with DBO_TRX. if ( $this->getFlag( self::DBO_TRX ) || $this->getFlag( self::DBO_DEFAULT ) ) { $this->connLogger->warning( __METHOD__ . ": ignoring DBO_PERSISTENT due to DBO_TRX or DBO_DEFAULT", $this->getLogContext() ); } else { $attributes[PDO::ATTR_PERSISTENT] = true; } } try { // Open the database file, creating it if it does not yet exist $this->conn = new PDO( "sqlite:$path", null, null, $attributes ); } catch ( PDOException $e ) { throw $this->newExceptionAfterConnectError( $e->getMessage() ); } $this->currentDomain = new DatabaseDomain( $dbName, null, $tablePrefix ); try { $flags = self::QUERY_IGNORE_DBO_TRX | self::QUERY_NO_RETRY; // Enforce LIKE to be case sensitive, just like MySQL $this->query( 'PRAGMA case_sensitive_like = 1', __METHOD__, $flags ); // Set any connection-level custom PRAGMA options $pragmas = array_intersect_key( $this->connectionVariables, self::$VALID_PRAGMAS ); $pragmas += $this->getDefaultPragmas(); foreach ( $pragmas as $name => $value ) { $allowed = self::$VALID_PRAGMAS[$name]; if ( in_array( $value, $allowed, true ) ) { $this->query( "PRAGMA $name = $value", __METHOD__, $flags ); } } $this->attachDatabasesFromTableAliases(); } catch ( RuntimeException $e ) { throw $this->newExceptionAfterConnectError( $e->getMessage() ); } } /** * @return array Map of (name => value) for default values to set via PRAGMA */ private function getDefaultPragmas() { $variables = []; if ( !$this->cliMode ) { $variables['temp_store'] = 'MEMORY'; } return $variables; } /** * @return string|null SQLite DB file path * @throws DBUnexpectedError * @since 1.25 */ public function getDbFilePath() { return $this->dbPath ?? self::generateFileName( $this->dbDir, $this->getDBname() ); } /** * @return string|null Lock file directory */ public function getLockFileDirectory() { if ( $this->dbPath !== null && !self::isProcessMemoryPath( $this->dbPath ) ) { return dirname( $this->dbPath ) . '/locks'; } elseif ( $this->dbDir !== null && !self::isProcessMemoryPath( $this->dbDir ) ) { return $this->dbDir . '/locks'; } return null; } /** * Does not actually close the connection, just destroys the reference for GC to do its work * @return bool */ protected function closeConnection() { $this->conn = null; return true; } /** * Generates a database file name. Explicitly public for installer. * @param string $dir Directory where database resides * @param string|bool $dbName Database name (or false from Database::factory, validated here) * @return string * @throws DBUnexpectedError */ public static function generateFileName( $dir, $dbName ) { if ( $dir == '' ) { throw new DBUnexpectedError( null, __CLASS__ . ": no DB directory specified" ); } elseif ( self::isProcessMemoryPath( $dir ) ) { throw new DBUnexpectedError( null, __CLASS__ . ": cannot use process memory directory '$dir'" ); } elseif ( !strlen( $dbName ) ) { throw new DBUnexpectedError( null, __CLASS__ . ": no DB name specified" ); } return "$dir/$dbName.sqlite"; } /** * @param string $path * @return string */ private static function generateDatabaseName( $path ) { if ( preg_match( '/^(:memory:$|file::memory:)/', $path ) ) { // E.g. "file::memory:?cache=shared" => ":memory": return ':memory:'; } elseif ( preg_match( '/^file::([^?]+)\?mode=memory(&|$)/', $path, $m ) ) { // E.g. "file:memdb1?mode=memory" => ":memdb1:" return ":{$m[1]}:"; } else { // E.g. "/home/.../some_db.sqlite3" => "some_db" return preg_replace( '/\.sqlite\d?$/', '', basename( $path ) ); } } /** * @param string $path * @return bool */ private static function isProcessMemoryPath( $path ) { return preg_match( '/^(:memory:$|file:(:memory:|[^?]+\?mode=memory(&|$)))/', $path ); } /** * Returns version of currently supported SQLite fulltext search module or false if none present. * @return string */ public static function getFulltextSearchModule() { static $cachedResult = null; if ( $cachedResult !== null ) { return $cachedResult; } $cachedResult = false; $table = 'dummy_search_test'; $db = self::newStandaloneInstance( ':memory:' ); if ( $db->query( "CREATE VIRTUAL TABLE $table USING FTS3(dummy_field)", __METHOD__, IDatabase::QUERY_SILENCE_ERRORS ) ) { $cachedResult = 'FTS3'; } $db->close( __METHOD__ ); return $cachedResult; } /** * Attaches external database to the connection handle * * @see https://sqlite.org/lang_attach.html * * @param string $name Database name to be used in queries like * SELECT foo FROM dbname.table * @param bool|string $file Database file name. If omitted, will be generated * using $name and configured data directory * @param string $fname Calling function name * @return IResultWrapper */ public function attachDatabase( $name, $file = false, $fname = __METHOD__ ) { $file = is_string( $file ) ? $file : self::generateFileName( $this->dbDir, $name ); $encFile = $this->addQuotes( $file ); return $this->query( "ATTACH DATABASE $encFile AS $name", $fname, self::QUERY_IGNORE_DBO_TRX ); } protected function isWriteQuery( $sql, $flags ) { return parent::isWriteQuery( $sql, $flags ) && !preg_match( '/^(ATTACH|PRAGMA)\b/i', $sql ); } protected function isTransactableQuery( $sql ) { return parent::isTransactableQuery( $sql ) && !in_array( $this->getQueryVerb( $sql ), [ 'ATTACH', 'PRAGMA' ], true ); } /** * SQLite doesn't allow buffered results or data seeking etc, so we'll use fetchAll as the result * * @param string $sql * @return bool|IResultWrapper */ protected function doQuery( $sql ) { $res = $this->getBindingHandle()->query( $sql ); if ( $res === false ) { return false; } $resource = ResultWrapper::unwrap( $res ); $this->lastAffectedRowCount = $resource->rowCount(); $res = new ResultWrapper( $this, $resource->fetchAll() ); return $res; } /** * @param IResultWrapper|mixed $res */ public function freeResult( $res ) { if ( $res instanceof ResultWrapper ) { $res->free(); } } /** * @param IResultWrapper|array $res * @return stdClass|bool */ public function fetchObject( $res ) { $resource =& ResultWrapper::unwrap( $res ); $cur = current( $resource ); if ( is_array( $cur ) ) { next( $resource ); $obj = (object)[]; foreach ( $cur as $k => $v ) { if ( !is_numeric( $k ) ) { $obj->$k = $v; } } return $obj; } return false; } /** * @param IResultWrapper|mixed $res * @return array|bool */ public function fetchRow( $res ) { $resource =& ResultWrapper::unwrap( $res ); $cur = current( $resource ); if ( is_array( $cur ) ) { next( $resource ); return $cur; } return false; } /** * The PDO::Statement class implements the array interface so count() will work * * @param IResultWrapper|array|false $res * @return int */ public function numRows( $res ) { // false does not implement Countable $resource = ResultWrapper::unwrap( $res ); return is_array( $resource ) ? count( $resource ) : 0; } /** * @param IResultWrapper $res * @return int */ public function numFields( $res ) { $resource = ResultWrapper::unwrap( $res ); if ( is_array( $resource ) && count( $resource ) > 0 ) { // The size of the result array is twice the number of fields. (T67578) return count( $resource[0] ) / 2; } else { // If the result is empty return 0 return 0; } } /** * @param IResultWrapper $res * @param int $n * @return bool */ public function fieldName( $res, $n ) { $resource = ResultWrapper::unwrap( $res ); if ( is_array( $resource ) ) { $keys = array_keys( $resource[0] ); return $keys[$n]; } return false; } protected function doSelectDomain( DatabaseDomain $domain ) { if ( $domain->getSchema() !== null ) { throw new DBExpectedError( $this, __CLASS__ . ": domain '{$domain->getId()}' has a schema component" ); } $database = $domain->getDatabase(); // A null database means "don't care" so leave it as is and update the table prefix if ( $database === null ) { $this->currentDomain = new DatabaseDomain( $this->currentDomain->getDatabase(), null, $domain->getTablePrefix() ); return true; } if ( $database !== $this->getDBname() ) { throw new DBExpectedError( $this, __CLASS__ . ": cannot change database (got '$database')" ); } return true; } /** * Use MySQL's naming (accounts for prefix etc) but remove surrounding backticks * * @param string $name * @param string $format * @return string */ public function tableName( $name, $format = 'quoted' ) { // table names starting with sqlite_ are reserved if ( strpos( $name, 'sqlite_' ) === 0 ) { return $name; } return str_replace( '"', '', parent::tableName( $name, $format ) ); } /** * This must be called after nextSequenceVal * * @return int */ public function insertId() { // PDO::lastInsertId yields a string :( return intval( $this->getBindingHandle()->lastInsertId() ); } /** * @param IResultWrapper|array $res * @param int $row */ public function dataSeek( $res, $row ) { $resource =& ResultWrapper::unwrap( $res ); reset( $resource ); if ( $row > 0 ) { for ( $i = 0; $i < $row; $i++ ) { next( $resource ); } } } /** * @return string */ public function lastError() { if ( !is_object( $this->conn ) ) { return "Cannot return last error, no db connection"; } $e = $this->conn->errorInfo(); return $e[2] ?? ''; } /** * @return string */ public function lastErrno() { if ( !is_object( $this->conn ) ) { return "Cannot return last error, no db connection"; } else { $info = $this->conn->errorInfo(); return $info[1]; } } /** * @return int */ protected function fetchAffectedRowCount() { return $this->lastAffectedRowCount; } public function tableExists( $table, $fname = __METHOD__ ) { $tableRaw = $this->tableName( $table, 'raw' ); if ( isset( $this->sessionTempTables[$tableRaw] ) ) { return true; // already known to exist } $encTable = $this->addQuotes( $tableRaw ); $res = $this->query( "SELECT 1 FROM sqlite_master WHERE type='table' AND name=$encTable", __METHOD__, self::QUERY_IGNORE_DBO_TRX ); return $res->numRows() ? true : false; } /** * Returns information about an index * Returns false if the index does not exist * - if errors are explicitly ignored, returns NULL on failure * * @param string $table * @param string $index * @param string $fname * @return array|false */ public function indexInfo( $table, $index, $fname = __METHOD__ ) { $sql = 'PRAGMA index_info(' . $this->addQuotes( $this->indexName( $index ) ) . ')'; $res = $this->query( $sql, $fname, self::QUERY_IGNORE_DBO_TRX ); if ( !$res || $res->numRows() == 0 ) { return false; } $info = []; foreach ( $res as $row ) { $info[] = $row->name; } return $info; } /** * @param string $table * @param string $index * @param string $fname * @return bool|null */ public function indexUnique( $table, $index, $fname = __METHOD__ ) { $row = $this->selectRow( 'sqlite_master', '*', [ 'type' => 'index', 'name' => $this->indexName( $index ), ], $fname ); if ( !$row || !isset( $row->sql ) ) { return null; } // $row->sql will be of the form CREATE [UNIQUE] INDEX ... $indexPos = strpos( $row->sql, 'INDEX' ); if ( $indexPos === false ) { return null; } $firstPart = substr( $row->sql, 0, $indexPos ); $options = explode( ' ', $firstPart ); return in_array( 'UNIQUE', $options ); } protected function makeSelectOptions( array $options ) { // Remove problematic options that the base implementation converts to SQL foreach ( $options as $k => $v ) { if ( is_numeric( $k ) && ( $v === 'FOR UPDATE' || $v === 'LOCK IN SHARE MODE' ) ) { $options[$k] = ''; } } return parent::makeSelectOptions( $options ); } /** * @param array $options * @return array */ protected function makeUpdateOptionsArray( $options ) { $options = parent::makeUpdateOptionsArray( $options ); $options = $this->rewriteIgnoreKeyword( $options ); return $options; } /** * @param array $options * @return array */ private function rewriteIgnoreKeyword( $options ) { # SQLite uses OR IGNORE not just IGNORE foreach ( $options as $k => $v ) { if ( $v == 'IGNORE' ) { $options[$k] = 'OR IGNORE'; } } return $options; } protected function makeInsertNonConflictingVerbAndOptions() { return [ 'INSERT OR IGNORE INTO', '' ]; } protected function doReplace( $table, array $uniqueKeys, array $rows, $fname ) { $encTable = $this->tableName( $table ); list( $sqlColumns, $sqlTuples ) = $this->makeInsertLists( $rows ); // https://sqlite.org/lang_insert.html $this->query( "REPLACE INTO $encTable ($sqlColumns) VALUES $sqlTuples", $fname ); } /** * Returns the size of a text field, or -1 for "unlimited" * In SQLite this is SQLITE_MAX_LENGTH, by default 1GB. No way to query it though. * * @param string $table * @param string $field * @return int */ public function textFieldSize( $table, $field ) { return -1; } /** * @return bool */ public function unionSupportsOrderAndLimit() { return false; } /** * @param string[] $sqls * @param bool $all Whether to "UNION ALL" or not * @return string */ public function unionQueries( $sqls, $all ) { $glue = $all ? ' UNION ALL ' : ' UNION '; return implode( $glue, $sqls ); } /** * @return bool */ public function wasDeadlock() { return $this->lastErrno() == 5; // SQLITE_BUSY } /** * @return bool */ public function wasReadOnlyError() { return $this->lastErrno() == 8; // SQLITE_READONLY; } public function wasConnectionError( $errno ) { return $errno == 17; // SQLITE_SCHEMA; } protected function wasKnownStatementRollbackError() { // ON CONFLICT ROLLBACK clauses make it so that SQLITE_CONSTRAINT error is // ambiguous with regard to whether it implies a ROLLBACK or an ABORT happened. // https://sqlite.org/lang_createtable.html#uniqueconst // https://sqlite.org/lang_conflict.html return false; } public function serverIsReadOnly() { $this->assertHasConnectionHandle(); $path = $this->getDbFilePath(); return ( !self::isProcessMemoryPath( $path ) && !is_writable( $path ) ); } /** * @return string Wikitext of a link to the server software's web site */ public function getSoftwareLink() { return "[{{int:version-db-sqlite-url}} SQLite]"; } /** * @return string Version information from the database */ public function getServerVersion() { if ( $this->version === null ) { $this->version = $this->getBindingHandle()->getAttribute( PDO::ATTR_SERVER_VERSION ); } return $this->version; } /** * Get information about a given field * Returns false if the field does not exist. * * @param string $table * @param string $field * @return SQLiteField|bool False on failure */ public function fieldInfo( $table, $field ) { $tableName = $this->tableName( $table ); $sql = 'PRAGMA table_info(' . $this->addQuotes( $tableName ) . ')'; $res = $this->query( $sql, __METHOD__, self::QUERY_IGNORE_DBO_TRX ); foreach ( $res as $row ) { if ( $row->name == $field ) { return new SQLiteField( $row, $tableName ); } } return false; } protected function doBegin( $fname = '' ) { if ( $this->trxMode != '' ) { $this->query( "BEGIN {$this->trxMode}", $fname ); } else { $this->query( 'BEGIN', $fname ); } } /** * @param string $s * @return string */ public function strencode( $s ) { return substr( $this->addQuotes( $s ), 1, -1 ); } /** * @param string $b * @return Blob */ public function encodeBlob( $b ) { return new Blob( $b ); } /** * @param Blob|string $b * @return string */ public function decodeBlob( $b ) { if ( $b instanceof Blob ) { $b = $b->fetch(); } return $b; } /** * @param string|int|float|null|bool|Blob $s * @return string */ public function addQuotes( $s ) { if ( $s instanceof Blob ) { return "x'" . bin2hex( $s->fetch() ) . "'"; } elseif ( is_bool( $s ) ) { return (string)(int)$s; } elseif ( is_int( $s ) ) { return (string)$s; } elseif ( strpos( (string)$s, "\0" ) !== false ) { // SQLite doesn't support \0 in strings, so use the hex representation as a workaround. // This is a known limitation of SQLite's mprintf function which PDO // should work around, but doesn't. I have reported this to php.net as bug #63419: // https://bugs.php.net/bug.php?id=63419 // There was already a similar report for SQLite3::escapeString, bug #62361: // https://bugs.php.net/bug.php?id=62361 // There is an additional bug regarding sorting this data after insert // on older versions of sqlite shipped with ubuntu 12.04 // https://phabricator.wikimedia.org/T74367 $this->queryLogger->debug( __FUNCTION__ . ': Quoting value containing null byte. ' . 'For consistency all binary data should have been ' . 'first processed with self::encodeBlob()' ); return "x'" . bin2hex( (string)$s ) . "'"; } else { return $this->getBindingHandle()->quote( (string)$s ); } } public function buildSubstring( $input, $startPosition, $length = null ) { $this->assertBuildSubstringParams( $startPosition, $length ); $params = [ $input, $startPosition ]; if ( $length !== null ) { $params[] = $length; } return 'SUBSTR(' . implode( ',', $params ) . ')'; } /** * @param string $field Field or column to cast * @return string * @since 1.28 */ public function buildStringCast( $field ) { return 'CAST ( ' . $field . ' AS TEXT )'; } /** * No-op version of deadlockLoop * * @param mixed ...$args * @return mixed */ public function deadlockLoop( ...$args ) { $function = array_shift( $args ); return $function( ...$args ); } /** * @param string $s * @return string */ protected function replaceVars( $s ) { $s = parent::replaceVars( $s ); if ( preg_match( '/^\s*(CREATE|ALTER) TABLE/i', $s ) ) { // CREATE TABLE hacks to allow schema file sharing with MySQL // binary/varbinary column type -> blob $s = preg_replace( '/\b(var)?binary(\(\d+\))/i', 'BLOB', $s ); // no such thing as unsigned $s = preg_replace( '/\b(un)?signed\b/i', '', $s ); // INT -> INTEGER $s = preg_replace( '/\b(tiny|small|medium|big|)int(\s*\(\s*\d+\s*\)|\b)/i', 'INTEGER', $s ); // floating point types -> REAL $s = preg_replace( '/\b(float|double(\s+precision)?)(\s*\(\s*\d+\s*(,\s*\d+\s*)?\)|\b)/i', 'REAL', $s ); // varchar -> TEXT $s = preg_replace( '/\b(var)?char\s*\(.*?\)/i', 'TEXT', $s ); // TEXT normalization $s = preg_replace( '/\b(tiny|medium|long)text\b/i', 'TEXT', $s ); // BLOB normalization $s = preg_replace( '/\b(tiny|small|medium|long|)blob\b/i', 'BLOB', $s ); // BOOL -> INTEGER $s = preg_replace( '/\bbool(ean)?\b/i', 'INTEGER', $s ); // DATETIME -> TEXT $s = preg_replace( '/\b(datetime|timestamp)\b/i', 'TEXT', $s ); // No ENUM type $s = preg_replace( '/\benum\s*\([^)]*\)/i', 'TEXT', $s ); // binary collation type -> nothing $s = preg_replace( '/\bbinary\b/i', '', $s ); // auto_increment -> autoincrement $s = preg_replace( '/\bauto_increment\b/i', 'AUTOINCREMENT', $s ); // No explicit options $s = preg_replace( '/\)[^);]*(;?)\s*$/', ')\1', $s ); // AUTOINCREMENT should immedidately follow PRIMARY KEY $s = preg_replace( '/primary key (.*?) autoincrement/i', 'PRIMARY KEY AUTOINCREMENT $1', $s ); } elseif ( preg_match( '/^\s*CREATE (\s*(?:UNIQUE|FULLTEXT)\s+)?INDEX/i', $s ) ) { // No truncated indexes $s = preg_replace( '/\(\d+\)/', '', $s ); // No FULLTEXT $s = preg_replace( '/\bfulltext\b/i', '', $s ); } elseif ( preg_match( '/^\s*DROP INDEX/i', $s ) ) { // DROP INDEX is database-wide, not table-specific, so no ON clause. $s = preg_replace( '/\sON\s+[^\s]*/i', '', $s ); } elseif ( preg_match( '/^\s*INSERT IGNORE\b/i', $s ) ) { // INSERT IGNORE --> INSERT OR IGNORE $s = preg_replace( '/^\s*INSERT IGNORE\b/i', 'INSERT OR IGNORE', $s ); } return $s; } public function lock( $lockName, $method, $timeout = 5 ) { $status = $this->lockMgr->lock( [ $lockName ], LockManager::LOCK_EX, $timeout ); if ( $this->lockMgr instanceof FSLockManager && $status->hasMessage( 'lockmanager-fail-openlock' ) ) { throw new DBError( $this, "Cannot create directory \"{$this->getLockFileDirectory()}\"" ); } return $status->isOK(); } public function unlock( $lockName, $method ) { return $this->lockMgr->unlock( [ $lockName ], LockManager::LOCK_EX )->isGood(); } /** * Build a concatenation list to feed into a SQL query * * @param string[] $stringList * @return string */ public function buildConcat( $stringList ) { return '(' . implode( ') || (', $stringList ) . ')'; } public function buildGroupConcatField( $delim, $table, $field, $conds = '', $join_conds = [] ) { $fld = "group_concat($field," . $this->addQuotes( $delim ) . ')'; return '(' . $this->selectSQLText( $table, $fld, $conds, null, [], $join_conds ) . ')'; } public function buildGreatest( $fields, $values ) { return $this->buildSuperlative( 'MAX', $fields, $values ); } public function buildLeast( $fields, $values ) { return $this->buildSuperlative( 'MIN', $fields, $values ); } /** * @param string $oldName * @param string $newName * @param bool $temporary * @param string $fname * @return bool|IResultWrapper * @throws RuntimeException */ public function duplicateTableStructure( $oldName, $newName, $temporary = false, $fname = __METHOD__ ) { $queryFlags = self::QUERY_PSEUDO_PERMANENT | self::QUERY_IGNORE_DBO_TRX; $res = $this->query( "SELECT sql FROM sqlite_master WHERE tbl_name=" . $this->addQuotes( $oldName ) . " AND type='table'", $fname, $queryFlags ); $obj = $this->fetchObject( $res ); if ( !$obj ) { throw new RuntimeException( "Couldn't retrieve structure for table $oldName" ); } $sql = $obj->sql; $sql = preg_replace( '/(?<=\W)"?' . preg_quote( trim( $this->addIdentifierQuotes( $oldName ), '"' ), '/' ) . '"?(?=\W)/', $this->addIdentifierQuotes( $newName ), $sql, 1 ); if ( $temporary ) { if ( preg_match( '/^\\s*CREATE\\s+VIRTUAL\\s+TABLE\b/i', $sql ) ) { $this->queryLogger->debug( "Table $oldName is virtual, can't create a temporary duplicate." ); } else { $sql = str_replace( 'CREATE TABLE', 'CREATE TEMPORARY TABLE', $sql ); } } $res = $this->query( $sql, $fname, $queryFlags ); // Take over indexes $indexList = $this->query( 'PRAGMA INDEX_LIST(' . $this->addQuotes( $oldName ) . ')', $fname, $queryFlags ); foreach ( $indexList as $index ) { if ( strpos( $index->name, 'sqlite_autoindex' ) === 0 ) { continue; } if ( $index->unique ) { $sql = 'CREATE UNIQUE INDEX'; } else { $sql = 'CREATE INDEX'; } // Try to come up with a new index name, given indexes have database scope in SQLite $indexName = $newName . '_' . $index->name; $sql .= ' ' . $indexName . ' ON ' . $newName; $indexInfo = $this->query( 'PRAGMA INDEX_INFO(' . $this->addQuotes( $index->name ) . ')', $fname, $queryFlags ); $fields = []; foreach ( $indexInfo as $indexInfoRow ) { $fields[$indexInfoRow->seqno] = $indexInfoRow->name; } $sql .= '(' . implode( ',', $fields ) . ')'; $this->query( $sql, __METHOD__ ); } return $res; } /** * List all tables on the database * * @param string|null $prefix Only show tables with this prefix, e.g. mw_ * @param string $fname Calling function name * * @return array */ public function listTables( $prefix = null, $fname = __METHOD__ ) { $result = $this->query( "SELECT name FROM sqlite_master WHERE type = 'table'", $fname, self::QUERY_IGNORE_DBO_TRX ); $endArray = []; foreach ( $result as $table ) { $vars = get_object_vars( $table ); $table = array_pop( $vars ); if ( !$prefix || strpos( $table, $prefix ) === 0 ) { if ( strpos( $table, 'sqlite_' ) !== 0 ) { $endArray[] = $table; } } } return $endArray; } public function dropTable( $table, $fname = __METHOD__ ) { if ( !$this->tableExists( $table, $fname ) ) { return false; } // No CASCADE support; https://www.sqlite.org/lang_droptable.html $sql = "DROP TABLE " . $this->tableName( $table ); $this->query( $sql, $fname, self::QUERY_IGNORE_DBO_TRX ); return true; } protected function doTruncate( array $tables, $fname ) { $this->startAtomic( $fname ); $encSeqNames = []; foreach ( $tables as $table ) { // Use "truncate" optimization; https://www.sqlite.org/lang_delete.html $sql = "DELETE FROM " . $this->tableName( $table ); $this->query( $sql, $fname, self::QUERY_CHANGE_SCHEMA ); $encSeqNames[] = $this->addQuotes( $this->tableName( $table, 'raw' ) ); } $encMasterTable = $this->addIdentifierQuotes( 'sqlite_sequence' ); $this->query( "DELETE FROM $encMasterTable WHERE name IN(" . implode( ',', $encSeqNames ) . ")", $fname, self::QUERY_CHANGE_SCHEMA ); $this->endAtomic( $fname ); } public function setTableAliases( array $aliases ) { parent::setTableAliases( $aliases ); if ( $this->isOpen() ) { $this->attachDatabasesFromTableAliases(); } } /** * Issue ATTATCH statements for all unattached foreign DBs in table aliases */ private function attachDatabasesFromTableAliases() { foreach ( $this->tableAliases as $params ) { if ( $params['dbname'] !== $this->getDBname() && !isset( $this->sessionAttachedDbs[$params['dbname']] ) ) { $this->attachDatabase( $params['dbname'], false, __METHOD__ ); $this->sessionAttachedDbs[$params['dbname']] = true; } } } public function databasesAreIndependent() { return true; } protected function doHandleSessionLossPreconnect() { $this->sessionAttachedDbs = []; } /** * @return PDO */ protected function getBindingHandle() { return parent::getBindingHandle(); } } /** * @deprecated since 1.29 */ class_alias( DatabaseSqlite::class, 'DatabaseSqlite' );