123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173 |
- <?php
- /**
- * This is the SQLite database abstraction layer.
- * See maintenance/sqlite/README for development notes and other specific information
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * http://www.gnu.org/copyleft/gpl.html
- *
- * @file
- * @ingroup Database
- */
- namespace Wikimedia\Rdbms;
- use NullLockManager;
- use PDO;
- use PDOException;
- use Exception;
- use LockManager;
- use FSLockManager;
- use RuntimeException;
- use stdClass;
- /**
- * @ingroup Database
- */
- class DatabaseSqlite extends Database {
- /** @var string|null Directory for SQLite database files listed under their DB name */
- protected $dbDir;
- /** @var string|null Explicit path for the SQLite database file */
- protected $dbPath;
- /** @var string Transaction mode */
- protected $trxMode;
- /** @var int The number of rows affected as an integer */
- protected $lastAffectedRowCount;
- /** @var resource */
- protected $lastResultHandle;
- /** @var PDO */
- protected $conn;
- /** @var FSLockManager (hopefully on the same server as the DB) */
- protected $lockMgr;
- /** @var array List of shared database already attached to this connection */
- private $sessionAttachedDbs = [];
- /** @var string[] See https://www.sqlite.org/lang_transaction.html */
- private static $VALID_TRX_MODES = [ '', 'DEFERRED', 'IMMEDIATE', 'EXCLUSIVE' ];
- /**
- * 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 $p
- */
- public function __construct( array $p ) {
- if ( isset( $p['dbFilePath'] ) ) {
- $this->dbPath = $p['dbFilePath'];
- if ( !strlen( $p['dbname'] ) ) {
- $p['dbname'] = self::generateDatabaseName( $this->dbPath );
- }
- } elseif ( isset( $p['dbDirectory'] ) ) {
- $this->dbDir = $p['dbDirectory'];
- }
- parent::__construct( $p );
- $this->trxMode = strtoupper( $p['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_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();
- // 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" );
- }
- $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 );
- // Apply optimizations or requirements regarding fsync() usage
- $sync = $this->connectionVariables['synchronous'] ?? null;
- if ( in_array( $sync, [ 'EXTRA', 'FULL', 'NORMAL', 'OFF' ], true ) ) {
- $this->query( "PRAGMA synchronous = $sync", __METHOD__, $flags );
- }
- $this->attachDatabasesFromTableAliases();
- } catch ( Exception $e ) {
- throw $this->newExceptionAfterConnectError( $e->getMessage() );
- }
- }
- /**
- * @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
- */
- 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__, true ) ) {
- $cachedResult = 'FTS3';
- }
- $db->close();
- 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 ) {
- return parent::isWriteQuery( $sql ) && !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
- */
- function freeResult( $res ) {
- if ( $res instanceof ResultWrapper ) {
- $res->free();
- }
- }
- /**
- * @param IResultWrapper|array $res
- * @return stdClass|bool
- */
- function fetchObject( $res ) {
- $resource =& ResultWrapper::unwrap( $res );
- $cur = current( $resource );
- if ( is_array( $cur ) ) {
- next( $resource );
- $obj = new stdClass;
- foreach ( $cur as $k => $v ) {
- if ( !is_numeric( $k ) ) {
- $obj->$k = $v;
- }
- }
- return $obj;
- }
- return false;
- }
- /**
- * @param IResultWrapper|mixed $res
- * @return array|bool
- */
- 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
- */
- function numRows( $res ) {
- // false does not implement Countable
- $resource = ResultWrapper::unwrap( $res );
- return is_array( $resource ) ? count( $resource ) : 0;
- }
- /**
- * @param IResultWrapper $res
- * @return int
- */
- 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
- */
- 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
- */
- 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
- */
- function insertId() {
- // PDO::lastInsertId yields a string :(
- return intval( $this->getBindingHandle()->lastInsertId() );
- }
- /**
- * @param IResultWrapper|array $res
- * @param int $row
- */
- function dataSeek( $res, $row ) {
- $resource =& ResultWrapper::unwrap( $res );
- reset( $resource );
- if ( $row > 0 ) {
- for ( $i = 0; $i < $row; $i++ ) {
- next( $resource );
- }
- }
- }
- /**
- * @return string
- */
- function lastError() {
- if ( !is_object( $this->conn ) ) {
- return "Cannot return last error, no db connection";
- }
- $e = $this->conn->errorInfo();
- return $e[2] ?? '';
- }
- /**
- * @return string
- */
- 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;
- }
- 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
- */
- 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
- */
- 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 = self::fixIgnore( $options );
- return $options;
- }
- /**
- * @param array $options
- * @return array
- */
- static function fixIgnore( $options ) {
- # SQLite uses OR IGNORE not just IGNORE
- foreach ( $options as $k => $v ) {
- if ( $v == 'IGNORE' ) {
- $options[$k] = 'OR IGNORE';
- }
- }
- return $options;
- }
- /**
- * @param array $options
- * @return string
- */
- function makeInsertOptions( $options ) {
- $options = self::fixIgnore( $options );
- return parent::makeInsertOptions( $options );
- }
- /**
- * Based on generic method (parent) with some prior SQLite-sepcific adjustments
- * @param string $table
- * @param array $a
- * @param string $fname
- * @param array $options
- * @return bool
- */
- function insert( $table, $a, $fname = __METHOD__, $options = [] ) {
- if ( !count( $a ) ) {
- return true;
- }
- # SQLite can't handle multi-row inserts, so divide up into multiple single-row inserts
- if ( isset( $a[0] ) && is_array( $a[0] ) ) {
- $affectedRowCount = 0;
- try {
- $this->startAtomic( $fname, self::ATOMIC_CANCELABLE );
- foreach ( $a as $v ) {
- parent::insert( $table, $v, "$fname/multi-row", $options );
- $affectedRowCount += $this->affectedRows();
- }
- $this->endAtomic( $fname );
- } catch ( Exception $e ) {
- $this->cancelAtomic( $fname );
- throw $e;
- }
- $this->affectedRowCount = $affectedRowCount;
- } else {
- parent::insert( $table, $a, "$fname/single-row", $options );
- }
- return true;
- }
- /**
- * @param string $table
- * @param array $uniqueIndexes Unused
- * @param string|array $rows
- * @param string $fname
- */
- function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__ ) {
- if ( !count( $rows ) ) {
- return;
- }
- # SQLite can't handle multi-row replaces, so divide up into multiple single-row queries
- if ( isset( $rows[0] ) && is_array( $rows[0] ) ) {
- $affectedRowCount = 0;
- try {
- $this->startAtomic( $fname, self::ATOMIC_CANCELABLE );
- foreach ( $rows as $v ) {
- $this->nativeReplace( $table, $v, "$fname/multi-row" );
- $affectedRowCount += $this->affectedRows();
- }
- $this->endAtomic( $fname );
- } catch ( Exception $e ) {
- $this->cancelAtomic( $fname );
- throw $e;
- }
- $this->affectedRowCount = $affectedRowCount;
- } else {
- $this->nativeReplace( $table, $rows, "$fname/single-row" );
- }
- }
- /**
- * 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
- */
- function textFieldSize( $table, $field ) {
- return -1;
- }
- /**
- * @return bool
- */
- function unionSupportsOrderAndLimit() {
- return false;
- }
- /**
- * @param string[] $sqls
- * @param bool $all Whether to "UNION ALL" or not
- * @return string
- */
- function unionQueries( $sqls, $all ) {
- $glue = $all ? ' UNION ALL ' : ' UNION ';
- return implode( $glue, $sqls );
- }
- /**
- * @return bool
- */
- function wasDeadlock() {
- return $this->lastErrno() == 5; // SQLITE_BUSY
- }
- /**
- * @return bool
- */
- 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
- */
- function getServerVersion() {
- $ver = $this->getBindingHandle()->getAttribute( PDO::ATTR_SERVER_VERSION );
- return $ver;
- }
- /**
- * 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
- */
- 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
- */
- function strencode( $s ) {
- return substr( $this->addQuotes( $s ), 1, -1 );
- }
- /**
- * @param string $b
- * @return Blob
- */
- function encodeBlob( $b ) {
- return new Blob( $b );
- }
- /**
- * @param Blob|string $b
- * @return string
- */
- function decodeBlob( $b ) {
- if ( $b instanceof Blob ) {
- $b = $b->fetch();
- }
- return $b;
- }
- /**
- * @param string|int|null|bool|Blob $s
- * @return string|int
- */
- function addQuotes( $s ) {
- if ( $s instanceof Blob ) {
- return "x'" . bin2hex( $s->fetch() ) . "'";
- } elseif ( is_bool( $s ) ) {
- return (int)$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
- *
- * @return mixed
- */
- public function deadlockLoop( /*...*/ ) {
- $args = func_get_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 <table> 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
- */
- 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 ) . ')';
- }
- /**
- * @param string $oldName
- * @param string $newName
- * @param bool $temporary
- * @param string $fname
- * @return bool|IResultWrapper
- * @throws RuntimeException
- */
- function duplicateTableStructure( $oldName, $newName, $temporary = false, $fname = __METHOD__ ) {
- $res = $this->query( "SELECT sql FROM sqlite_master WHERE tbl_name=" .
- $this->addQuotes( $oldName ) . " AND type='table'", $fname );
- $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.\n" );
- } else {
- $sql = str_replace( 'CREATE TABLE', 'CREATE TEMPORARY TABLE', $sql );
- }
- }
- $res = $this->query( $sql, $fname, self::QUERY_PSEUDO_PERMANENT );
- // Take over indexes
- $indexList = $this->query( 'PRAGMA INDEX_LIST(' . $this->addQuotes( $oldName ) . ')' );
- 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 ) . ')' );
- $fields = [];
- foreach ( $indexInfo as $indexInfoRow ) {
- $fields[$indexInfoRow->seqno] = $indexInfoRow->name;
- }
- $sql .= '(' . implode( ',', $fields ) . ')';
- $this->query( $sql );
- }
- 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
- */
- function listTables( $prefix = null, $fname = __METHOD__ ) {
- $result = $this->select(
- 'sqlite_master',
- 'name',
- "type='table'"
- );
- $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;
- }
- /**
- * Override due to no CASCADE support
- *
- * @param string $tableName
- * @param string $fName
- * @return bool|IResultWrapper
- * @throws DBReadOnlyError
- */
- public function dropTable( $tableName, $fName = __METHOD__ ) {
- if ( !$this->tableExists( $tableName, $fName ) ) {
- return false;
- }
- $sql = "DROP TABLE " . $this->tableName( $tableName );
- return $this->query( $sql, $fName, self::QUERY_IGNORE_DBO_TRX );
- }
- 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'] );
- $this->sessionAttachedDbs[$params['dbname']] = true;
- }
- }
- }
- public function resetSequenceForTable( $table, $fname = __METHOD__ ) {
- $encTable = $this->addIdentifierQuotes( 'sqlite_sequence' );
- $encName = $this->addQuotes( $this->tableName( $table, 'raw' ) );
- $this->query(
- "DELETE FROM $encTable WHERE name = $encName",
- $fname,
- self::QUERY_IGNORE_DBO_TRX
- );
- }
- 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' );
|