2000-05-29 18:26:00 +04:00
|
|
|
/*
|
|
|
|
** Copyright (c) 1999, 2000 D. Richard Hipp
|
|
|
|
**
|
|
|
|
** 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 library; if not, write to the
|
|
|
|
** Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
** Boston, MA 02111-1307, USA.
|
|
|
|
**
|
|
|
|
** Author contact information:
|
|
|
|
** drh@hwaci.com
|
|
|
|
** http://www.hwaci.com/drh/
|
|
|
|
**
|
|
|
|
*************************************************************************
|
|
|
|
** Main file for the SQLite library. The routines in this file
|
|
|
|
** implement the programmer interface to the library. Routines in
|
|
|
|
** other files are for internal use by SQLite and should not be
|
|
|
|
** accessed by users of the library.
|
|
|
|
**
|
2001-09-13 20:18:53 +04:00
|
|
|
** $Id: main.c,v 1.33 2001/09/13 16:18:54 drh Exp $
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
|
|
|
#include "sqliteInt.h"
|
2001-04-28 20:52:40 +04:00
|
|
|
#if defined(HAVE_USLEEP) && HAVE_USLEEP
|
2001-01-16 01:51:08 +03:00
|
|
|
#include <unistd.h>
|
2001-04-28 20:52:40 +04:00
|
|
|
#endif
|
2000-05-29 18:26:00 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** This is the callback routine for the code that initializes the
|
2001-09-13 20:18:53 +04:00
|
|
|
** database. Each callback contains the following information:
|
|
|
|
**
|
|
|
|
** argv[0] = "meta" or "table" or "index"
|
|
|
|
** argv[1] = table or index name
|
|
|
|
** argv[2] = root page number for table or index
|
|
|
|
** argv[3] = SQL create statement for the table or index
|
2000-08-02 17:47:41 +04:00
|
|
|
**
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
|
|
|
static int sqliteOpenCb(void *pDb, int argc, char **argv, char **azColName){
|
|
|
|
sqlite *db = (sqlite*)pDb;
|
|
|
|
Parse sParse;
|
2001-09-13 20:18:53 +04:00
|
|
|
int nErr = 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
|
2001-09-13 20:18:53 +04:00
|
|
|
assert( argc==4 );
|
|
|
|
switch( argv[0][0] ){
|
|
|
|
case 'm': { /* Meta information */
|
|
|
|
sscanf(argv[1],"file format %d",&db->file_format);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'i':
|
|
|
|
case 't': { /* CREATE TABLE and CREATE INDEX statements */
|
|
|
|
memset(&sParse, 0, sizeof(sParse));
|
|
|
|
sParse.db = db;
|
|
|
|
sParse.initFlag = 1;
|
|
|
|
sParse.newTnum = atoi(argv[2]);
|
|
|
|
nErr = sqliteRunParser(&sParse, argv[3], 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
/* This can not happen! */
|
|
|
|
nErr = 1;
|
|
|
|
assert( nErr==0 );
|
2000-08-02 17:47:41 +04:00
|
|
|
}
|
|
|
|
}
|
2000-05-29 18:26:00 +04:00
|
|
|
return nErr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-06-02 05:17:37 +04:00
|
|
|
** Attempt to read the database schema and initialize internal
|
|
|
|
** data structures. Return one of the SQLITE_ error codes to
|
|
|
|
** indicate success or failure.
|
2000-06-02 17:27:59 +04:00
|
|
|
**
|
|
|
|
** After the database is initialized, the SQLITE_Initialized
|
|
|
|
** bit is set in the flags field of the sqlite structure. An
|
|
|
|
** attempt is made to initialize the database as soon as it
|
|
|
|
** is opened. If that fails (perhaps because another process
|
|
|
|
** has the sqlite_master table locked) than another attempt
|
|
|
|
** is made the first time the database is accessed.
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
2000-06-02 05:17:37 +04:00
|
|
|
static int sqliteInit(sqlite *db, char **pzErrMsg){
|
2000-05-29 18:26:00 +04:00
|
|
|
Vdbe *vdbe;
|
2000-06-02 05:17:37 +04:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
/*
|
|
|
|
** The master database table has a structure like this
|
|
|
|
*/
|
2000-05-29 18:26:00 +04:00
|
|
|
static char master_schema[] =
|
|
|
|
"CREATE TABLE " MASTER_NAME " (\n"
|
|
|
|
" type text,\n"
|
|
|
|
" name text,\n"
|
2001-09-13 17:46:56 +04:00
|
|
|
" tnum integer,\n"
|
2000-05-29 18:26:00 +04:00
|
|
|
" tbl_name text,\n"
|
|
|
|
" sql text\n"
|
|
|
|
")"
|
|
|
|
;
|
|
|
|
|
|
|
|
/* The following program is used to initialize the internal
|
|
|
|
** structure holding the tables and indexes of the database.
|
|
|
|
** The database contains a special table named "sqlite_master"
|
|
|
|
** defined as follows:
|
|
|
|
**
|
|
|
|
** CREATE TABLE sqlite_master (
|
2000-08-02 17:47:41 +04:00
|
|
|
** type text, -- Either "table" or "index" or "meta"
|
2000-05-29 18:26:00 +04:00
|
|
|
** name text, -- Name of table or index
|
2001-09-13 17:46:56 +04:00
|
|
|
** tnum integer, -- The integer page number of root page
|
2000-05-29 18:26:00 +04:00
|
|
|
** tbl_name text, -- Associated table
|
|
|
|
** sql text -- The CREATE statement for this object
|
|
|
|
** );
|
|
|
|
**
|
|
|
|
** The sqlite_master table contains a single entry for each table
|
2000-06-21 17:59:10 +04:00
|
|
|
** and each index. The "type" column tells whether the entry is
|
|
|
|
** a table or index. The "name" column is the name of the object.
|
2000-05-29 18:26:00 +04:00
|
|
|
** The "tbl_name" is the name of the associated table. For tables,
|
2000-06-21 17:59:10 +04:00
|
|
|
** the tbl_name column is always the same as name. For indices, the
|
|
|
|
** tbl_name column contains the name of the table that the index
|
|
|
|
** indexes. Finally, the "sql" column contains the complete text of
|
2000-05-29 18:26:00 +04:00
|
|
|
** the CREATE TABLE or CREATE INDEX statement that originally created
|
|
|
|
** the table or index.
|
|
|
|
**
|
2000-08-02 17:47:41 +04:00
|
|
|
** If the "type" column has the value "meta", then the "sql" column
|
|
|
|
** contains extra information about the database, such as the
|
|
|
|
** file format version number. All meta information must be processed
|
|
|
|
** before any tables or indices are constructed.
|
|
|
|
**
|
2000-05-29 18:26:00 +04:00
|
|
|
** The following program invokes its callback on the SQL for each
|
|
|
|
** table then goes back and invokes the callback on the
|
|
|
|
** SQL for each index. The callback will invoke the
|
|
|
|
** parser to build the internal representation of the
|
|
|
|
** database scheme.
|
|
|
|
*/
|
|
|
|
static VdbeOp initProg[] = {
|
2001-09-13 17:46:56 +04:00
|
|
|
{ OP_Open, 0, 2, 0},
|
2001-09-13 20:18:53 +04:00
|
|
|
{ OP_Rewind, 0, 0, 0},
|
|
|
|
{ OP_Next, 0, 12, 0}, /* 2 */
|
2001-09-13 17:46:56 +04:00
|
|
|
{ OP_Column, 0, 0, 0},
|
2000-08-02 17:47:41 +04:00
|
|
|
{ OP_String, 0, 0, "meta"},
|
2001-09-13 20:18:53 +04:00
|
|
|
{ OP_Ne, 0, 2, 0},
|
2001-09-13 17:46:56 +04:00
|
|
|
{ OP_Column, 0, 0, 0},
|
2001-09-13 20:18:53 +04:00
|
|
|
{ OP_Column, 0, 1, 0},
|
|
|
|
{ OP_Column, 0, 2, 0},
|
2001-09-13 17:46:56 +04:00
|
|
|
{ OP_Column, 0, 4, 0},
|
2001-09-13 20:18:53 +04:00
|
|
|
{ OP_Callback, 4, 0, 0},
|
|
|
|
{ OP_Goto, 0, 2, 0},
|
|
|
|
{ OP_Rewind, 0, 0, 0}, /* 12 */
|
|
|
|
{ OP_Next, 0, 23, 0}, /* 13 */
|
2001-09-13 17:46:56 +04:00
|
|
|
{ OP_Column, 0, 0, 0},
|
2000-08-02 17:47:41 +04:00
|
|
|
{ OP_String, 0, 0, "table"},
|
2001-09-13 20:18:53 +04:00
|
|
|
{ OP_Ne, 0, 13, 0},
|
|
|
|
{ OP_Column, 0, 0, 0},
|
|
|
|
{ OP_Column, 0, 1, 0},
|
|
|
|
{ OP_Column, 0, 2, 0},
|
2001-09-13 17:46:56 +04:00
|
|
|
{ OP_Column, 0, 4, 0},
|
2001-09-13 20:18:53 +04:00
|
|
|
{ OP_Callback, 4, 0, 0},
|
|
|
|
{ OP_Goto, 0, 13, 0},
|
|
|
|
{ OP_Rewind, 0, 0, 0}, /* 23 */
|
|
|
|
{ OP_Next, 0, 34, 0}, /* 24 */
|
2001-09-13 17:46:56 +04:00
|
|
|
{ OP_Column, 0, 0, 0},
|
2000-05-29 18:26:00 +04:00
|
|
|
{ OP_String, 0, 0, "index"},
|
2001-09-13 20:18:53 +04:00
|
|
|
{ OP_Ne, 0, 24, 0},
|
|
|
|
{ OP_Column, 0, 0, 0},
|
|
|
|
{ OP_Column, 0, 1, 0},
|
|
|
|
{ OP_Column, 0, 2, 0},
|
2001-09-13 17:46:56 +04:00
|
|
|
{ OP_Column, 0, 4, 0},
|
2001-09-13 20:18:53 +04:00
|
|
|
{ OP_Callback, 4, 0, 0},
|
|
|
|
{ OP_Goto, 0, 24, 0},
|
|
|
|
{ OP_Close, 0, 0, 0}, /* 34 */
|
2001-09-13 17:46:56 +04:00
|
|
|
{ OP_Halt, 0, 0, 0},
|
2000-05-29 18:26:00 +04:00
|
|
|
};
|
|
|
|
|
2000-06-02 05:17:37 +04:00
|
|
|
/* Create a virtual machine to run the initialization program. Run
|
|
|
|
** the program. The delete the virtual machine.
|
|
|
|
*/
|
2000-10-17 02:06:40 +04:00
|
|
|
vdbe = sqliteVdbeCreate(db);
|
2000-06-08 03:51:50 +04:00
|
|
|
if( vdbe==0 ){
|
2001-04-11 18:28:42 +04:00
|
|
|
sqliteSetString(pzErrMsg, "out of memory");
|
|
|
|
return SQLITE_NOMEM;
|
2000-06-08 03:51:50 +04:00
|
|
|
}
|
2000-06-02 05:17:37 +04:00
|
|
|
sqliteVdbeAddOpList(vdbe, sizeof(initProg)/sizeof(initProg[0]), initProg);
|
2000-07-28 18:32:48 +04:00
|
|
|
rc = sqliteVdbeExec(vdbe, sqliteOpenCb, db, pzErrMsg,
|
|
|
|
db->pBusyArg, db->xBusyCallback);
|
2000-06-02 05:17:37 +04:00
|
|
|
sqliteVdbeDelete(vdbe);
|
2001-09-13 20:18:53 +04:00
|
|
|
if( rc==SQLITE_OK && db->file_format>1 && db->nTable>0 ){
|
|
|
|
sqliteSetString(pzErrMsg, "unsupported file format", 0);
|
2000-08-02 17:47:41 +04:00
|
|
|
rc = SQLITE_ERROR;
|
|
|
|
}
|
2000-06-02 05:17:37 +04:00
|
|
|
if( rc==SQLITE_OK ){
|
|
|
|
Table *pTab;
|
2001-09-13 20:18:53 +04:00
|
|
|
char *azArg[5];
|
|
|
|
azArg[0] = "table";
|
|
|
|
azArg[1] = MASTER_NAME;
|
|
|
|
azArg[2] = "2";
|
|
|
|
azArg[3] = master_schema;
|
|
|
|
azArg[4] = 0;
|
|
|
|
sqliteOpenCb(db, 4, azArg, 0);
|
2000-06-02 05:17:37 +04:00
|
|
|
pTab = sqliteFindTable(db, MASTER_NAME);
|
|
|
|
if( pTab ){
|
|
|
|
pTab->readOnly = 1;
|
|
|
|
}
|
|
|
|
db->flags |= SQLITE_Initialized;
|
2001-09-13 17:46:56 +04:00
|
|
|
sqliteCommitInternalChanges(db);
|
2000-06-02 05:17:37 +04:00
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2000-08-22 17:40:18 +04:00
|
|
|
/*
|
|
|
|
** The version of the library
|
|
|
|
*/
|
2000-08-22 17:40:51 +04:00
|
|
|
const char sqlite_version[] = SQLITE_VERSION;
|
2000-08-22 17:40:18 +04:00
|
|
|
|
2001-04-05 19:57:13 +04:00
|
|
|
/*
|
|
|
|
** Does the library expect data to be encoded as UTF-8 or iso8859? The
|
|
|
|
** following global constant always lets us know.
|
|
|
|
*/
|
|
|
|
#ifdef SQLITE_UTF8
|
2001-04-06 20:13:42 +04:00
|
|
|
const char sqlite_encoding[] = "UTF-8";
|
2001-04-05 19:57:13 +04:00
|
|
|
#else
|
2001-04-06 20:13:42 +04:00
|
|
|
const char sqlite_encoding[] = "iso8859";
|
2001-04-05 19:57:13 +04:00
|
|
|
#endif
|
|
|
|
|
2000-06-02 05:17:37 +04:00
|
|
|
/*
|
|
|
|
** Open a new SQLite database. Construct an "sqlite" structure to define
|
|
|
|
** the state of this database and return a pointer to that structure.
|
|
|
|
**
|
|
|
|
** An attempt is made to initialize the in-memory data structures that
|
|
|
|
** hold the database schema. But if this fails (because the schema file
|
|
|
|
** is locked) then that step is deferred until the first call to
|
|
|
|
** sqlite_exec().
|
|
|
|
*/
|
|
|
|
sqlite *sqlite_open(const char *zFilename, int mode, char **pzErrMsg){
|
|
|
|
sqlite *db;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
/* Allocate the sqlite data structure */
|
2000-05-29 18:26:00 +04:00
|
|
|
db = sqliteMalloc( sizeof(sqlite) );
|
|
|
|
if( pzErrMsg ) *pzErrMsg = 0;
|
2001-04-11 18:28:42 +04:00
|
|
|
if( db==0 ) goto no_mem_on_open;
|
2000-05-29 18:26:00 +04:00
|
|
|
|
|
|
|
/* Open the backend database driver */
|
2001-09-13 17:46:56 +04:00
|
|
|
rc = sqliteBtreeOpen(zFilename, mode, 100, &db->pBe);
|
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
switch( rc ){
|
|
|
|
default: {
|
|
|
|
if( pzErrMsg ){
|
|
|
|
sqliteSetString(pzErrMsg, "unable to open database: ", zFilename, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-05-29 18:26:00 +04:00
|
|
|
sqliteFree(db);
|
2001-09-13 18:46:09 +04:00
|
|
|
return 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
|
2000-08-02 17:47:41 +04:00
|
|
|
/* Assume file format 1 unless the database says otherwise */
|
|
|
|
db->file_format = 1;
|
|
|
|
|
2000-06-02 05:17:37 +04:00
|
|
|
/* Attempt to read the schema */
|
|
|
|
rc = sqliteInit(db, pzErrMsg);
|
2001-04-11 18:28:42 +04:00
|
|
|
if( sqlite_malloc_failed ){
|
|
|
|
goto no_mem_on_open;
|
|
|
|
}else if( rc!=SQLITE_OK && rc!=SQLITE_BUSY ){
|
2000-06-02 05:17:37 +04:00
|
|
|
sqlite_close(db);
|
|
|
|
return 0;
|
2000-10-17 02:06:40 +04:00
|
|
|
}else /* if( pzErrMsg ) */{
|
2001-04-11 18:28:42 +04:00
|
|
|
sqliteFree(*pzErrMsg);
|
2000-06-02 17:27:59 +04:00
|
|
|
*pzErrMsg = 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
return db;
|
2001-04-11 18:28:42 +04:00
|
|
|
|
|
|
|
no_mem_on_open:
|
|
|
|
sqliteSetString(pzErrMsg, "out of memory", 0);
|
|
|
|
sqliteStrRealloc(pzErrMsg);
|
|
|
|
return 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Close an existing SQLite database
|
|
|
|
*/
|
|
|
|
void sqlite_close(sqlite *db){
|
|
|
|
int i;
|
2001-09-13 17:46:56 +04:00
|
|
|
sqliteBtreeClose(db->pBe);
|
2000-05-29 18:26:00 +04:00
|
|
|
for(i=0; i<N_HASH; i++){
|
|
|
|
Table *pNext, *pList = db->apTblHash[i];
|
|
|
|
db->apTblHash[i] = 0;
|
|
|
|
while( pList ){
|
|
|
|
pNext = pList->pHash;
|
|
|
|
pList->pHash = 0;
|
|
|
|
sqliteDeleteTable(db, pList);
|
|
|
|
pList = pNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sqliteFree(db);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Return TRUE if the given SQL string ends in a semicolon.
|
|
|
|
*/
|
|
|
|
int sqlite_complete(const char *zSql){
|
2000-12-10 21:23:50 +03:00
|
|
|
int isComplete = 0;
|
|
|
|
while( *zSql ){
|
|
|
|
switch( *zSql ){
|
|
|
|
case ';': {
|
|
|
|
isComplete = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ' ':
|
|
|
|
case '\t':
|
|
|
|
case '\n':
|
|
|
|
case '\f': {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case '\'': {
|
|
|
|
isComplete = 0;
|
|
|
|
zSql++;
|
|
|
|
while( *zSql && *zSql!='\'' ){ zSql++; }
|
|
|
|
if( *zSql==0 ) return 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case '"': {
|
|
|
|
isComplete = 0;
|
|
|
|
zSql++;
|
|
|
|
while( *zSql && *zSql!='"' ){ zSql++; }
|
|
|
|
if( *zSql==0 ) return 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
break;
|
2000-12-10 21:23:50 +03:00
|
|
|
}
|
|
|
|
case '-': {
|
|
|
|
if( zSql[1]!='-' ){
|
|
|
|
isComplete = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while( *zSql && *zSql!='\n' ){ zSql++; }
|
|
|
|
if( *zSql==0 ) return isComplete;
|
2000-05-29 18:26:00 +04:00
|
|
|
break;
|
2000-12-10 21:23:50 +03:00
|
|
|
}
|
|
|
|
default: {
|
|
|
|
isComplete = 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
break;
|
2000-12-10 21:23:50 +03:00
|
|
|
}
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
2000-12-10 21:23:50 +03:00
|
|
|
zSql++;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
2000-12-10 21:23:50 +03:00
|
|
|
return isComplete;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-06-02 17:27:59 +04:00
|
|
|
** Execute SQL code. Return one of the SQLITE_ success/failure
|
|
|
|
** codes. Also write an error message into memory obtained from
|
|
|
|
** malloc() and make *pzErrMsg point to that message.
|
|
|
|
**
|
|
|
|
** If the SQL is a query, then for each row in the query result
|
|
|
|
** the xCallback() function is called. pArg becomes the first
|
|
|
|
** argument to xCallback(). If xCallback=NULL then no callback
|
|
|
|
** is invoked, even for queries.
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
|
|
|
int sqlite_exec(
|
|
|
|
sqlite *db, /* The database on which the SQL executes */
|
|
|
|
char *zSql, /* The SQL to be executed */
|
|
|
|
sqlite_callback xCallback, /* Invoke this callback routine */
|
|
|
|
void *pArg, /* First argument to xCallback() */
|
|
|
|
char **pzErrMsg /* Write error messages here */
|
|
|
|
){
|
|
|
|
Parse sParse;
|
|
|
|
|
|
|
|
if( pzErrMsg ) *pzErrMsg = 0;
|
2000-06-02 05:17:37 +04:00
|
|
|
if( (db->flags & SQLITE_Initialized)==0 ){
|
|
|
|
int rc = sqliteInit(db, pzErrMsg);
|
2001-04-11 18:28:42 +04:00
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
sqliteStrRealloc(pzErrMsg);
|
|
|
|
return rc;
|
|
|
|
}
|
2000-06-02 05:17:37 +04:00
|
|
|
}
|
2000-05-29 18:26:00 +04:00
|
|
|
memset(&sParse, 0, sizeof(sParse));
|
|
|
|
sParse.db = db;
|
2001-09-13 17:46:56 +04:00
|
|
|
sParse.pBe = db->pBe;
|
2000-05-29 18:26:00 +04:00
|
|
|
sParse.xCallback = xCallback;
|
|
|
|
sParse.pArg = pArg;
|
2000-10-17 02:06:40 +04:00
|
|
|
sqliteRunParser(&sParse, zSql, pzErrMsg);
|
2001-04-11 18:28:42 +04:00
|
|
|
if( sqlite_malloc_failed ){
|
|
|
|
sqliteSetString(pzErrMsg, "out of memory", 0);
|
|
|
|
sParse.rc = SQLITE_NOMEM;
|
|
|
|
}
|
|
|
|
sqliteStrRealloc(pzErrMsg);
|
2000-10-17 02:06:40 +04:00
|
|
|
return sParse.rc;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
2000-07-28 18:32:48 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** This routine implements a busy callback that sleeps and tries
|
|
|
|
** again until a timeout value is reached. The timeout value is
|
|
|
|
** an integer number of milliseconds passed in as the first
|
|
|
|
** argument.
|
|
|
|
*/
|
2001-04-11 18:28:42 +04:00
|
|
|
static int sqliteDefaultBusyCallback(
|
2000-07-28 18:32:48 +04:00
|
|
|
void *Timeout, /* Maximum amount of time to wait */
|
|
|
|
const char *NotUsed, /* The name of the table that is busy */
|
|
|
|
int count /* Number of times table has been busy */
|
|
|
|
){
|
2000-07-31 17:38:24 +04:00
|
|
|
#if defined(HAVE_USLEEP) && HAVE_USLEEP
|
2000-07-28 18:32:48 +04:00
|
|
|
int delay = 10000;
|
|
|
|
int prior_delay = 0;
|
|
|
|
int timeout = (int)Timeout;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i=1; i<count; i++){
|
|
|
|
prior_delay += delay;
|
|
|
|
delay = delay*2;
|
|
|
|
if( delay>=1000000 ){
|
|
|
|
delay = 1000000;
|
|
|
|
prior_delay += 1000000*(count - i - 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( prior_delay + delay > timeout*1000 ){
|
|
|
|
delay = timeout*1000 - prior_delay;
|
|
|
|
if( delay<=0 ) return 0;
|
|
|
|
}
|
|
|
|
usleep(delay);
|
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
int timeout = (int)Timeout;
|
|
|
|
if( (count+1)*1000 > timeout ){
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
sleep(1);
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This routine sets the busy callback for an Sqlite database to the
|
|
|
|
** given callback function with the given argument.
|
|
|
|
*/
|
|
|
|
void sqlite_busy_handler(
|
|
|
|
sqlite *db,
|
|
|
|
int (*xBusy)(void*,const char*,int),
|
|
|
|
void *pArg
|
|
|
|
){
|
|
|
|
db->xBusyCallback = xBusy;
|
|
|
|
db->pBusyArg = pArg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This routine installs a default busy handler that waits for the
|
|
|
|
** specified number of milliseconds before returning 0.
|
|
|
|
*/
|
|
|
|
void sqlite_busy_timeout(sqlite *db, int ms){
|
|
|
|
if( ms>0 ){
|
2001-04-11 18:28:42 +04:00
|
|
|
sqlite_busy_handler(db, sqliteDefaultBusyCallback, (void*)ms);
|
2000-07-28 18:32:48 +04:00
|
|
|
}else{
|
|
|
|
sqlite_busy_handler(db, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2000-10-17 02:06:40 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Cause any pending operation to stop at its earliest opportunity.
|
|
|
|
*/
|
|
|
|
void sqlite_interrupt(sqlite *db){
|
|
|
|
db->flags |= SQLITE_Interrupt;
|
|
|
|
}
|