2000-05-29 18:26:00 +04:00
|
|
|
/*
|
2001-09-16 04:13:26 +04:00
|
|
|
** 2001 September 15
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
2001-09-16 04:13:26 +04:00
|
|
|
** The author disclaims copyright to this source code. In place of
|
|
|
|
** a legal notice, here is a blessing:
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
2001-09-16 04:13:26 +04:00
|
|
|
** May you do good and not evil.
|
|
|
|
** May you find forgiveness for yourself and forgive others.
|
|
|
|
** May you share freely, never taking more than you give.
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
|
|
|
*************************************************************************
|
2007-04-06 01:58:33 +04:00
|
|
|
** A TCL Interface to SQLite. Append this file to sqlite3.c and
|
|
|
|
** compile the whole thing to build a TCL-enabled version of SQLite.
|
2009-10-23 00:52:05 +04:00
|
|
|
**
|
|
|
|
** Compile-time options:
|
|
|
|
**
|
|
|
|
** -DTCLSH=1 Add a "main()" routine that works as a tclsh.
|
|
|
|
**
|
|
|
|
** -DSQLITE_TCLMD5 When used in conjuction with -DTCLSH=1, add
|
|
|
|
** four new commands to the TCL interpreter for
|
|
|
|
** generating MD5 checksums: md5, md5file,
|
|
|
|
** md5-10x8, and md5file-10x8.
|
|
|
|
**
|
|
|
|
** -DSQLITE_TEST When used in conjuction with -DTCLSH=1, add
|
|
|
|
** hundreds of new commands used for testing
|
|
|
|
** SQLite. This option implies -DSQLITE_TCLMD5.
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
2001-01-31 16:28:08 +03:00
|
|
|
#include "tcl.h"
|
2007-05-01 21:49:49 +04:00
|
|
|
#include <errno.h>
|
2007-04-06 01:58:33 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Some additional include files are needed if this file is not
|
|
|
|
** appended to the amalgamation.
|
|
|
|
*/
|
|
|
|
#ifndef SQLITE_AMALGAMATION
|
2009-12-01 16:57:48 +03:00
|
|
|
# include "sqlite3.h"
|
2007-04-06 01:58:33 +04:00
|
|
|
# include <stdlib.h>
|
|
|
|
# include <string.h>
|
|
|
|
# include <assert.h>
|
2009-12-01 16:57:48 +03:00
|
|
|
typedef unsigned char u8;
|
2007-04-06 01:58:33 +04:00
|
|
|
#endif
|
2009-10-24 19:51:33 +04:00
|
|
|
#include <ctype.h>
|
2000-05-29 18:26:00 +04:00
|
|
|
|
2013-08-15 12:06:15 +04:00
|
|
|
/* Used to get the current process ID */
|
|
|
|
#if !defined(_WIN32)
|
|
|
|
# include <unistd.h>
|
|
|
|
# define GETPID getpid
|
|
|
|
#elif !defined(_WIN32_WCE)
|
|
|
|
# ifndef SQLITE_AMALGAMATION
|
|
|
|
# define WIN32_LEAN_AND_MEAN
|
|
|
|
# include <windows.h>
|
|
|
|
# endif
|
|
|
|
# define GETPID (int)GetCurrentProcessId
|
|
|
|
#endif
|
|
|
|
|
2006-07-11 01:15:51 +04:00
|
|
|
/*
|
|
|
|
* Windows needs to know which symbols to export. Unix does not.
|
|
|
|
* BUILD_sqlite should be undefined for Unix.
|
|
|
|
*/
|
|
|
|
#ifdef BUILD_sqlite
|
|
|
|
#undef TCL_STORAGE_CLASS
|
|
|
|
#define TCL_STORAGE_CLASS DLLEXPORT
|
|
|
|
#endif /* BUILD_sqlite */
|
2005-10-05 14:40:15 +04:00
|
|
|
|
2005-01-24 13:25:59 +03:00
|
|
|
#define NUM_PREPARED_STMTS 10
|
2005-01-24 03:28:42 +03:00
|
|
|
#define MAX_PREPARED_STMTS 100
|
|
|
|
|
2012-10-03 15:02:33 +04:00
|
|
|
/* Forward declaration */
|
|
|
|
typedef struct SqliteDb SqliteDb;
|
2001-10-18 16:34:46 +04:00
|
|
|
|
2002-09-14 17:47:32 +04:00
|
|
|
/*
|
|
|
|
** New SQL functions can be created as TCL scripts. Each such function
|
|
|
|
** is described by an instance of the following structure.
|
|
|
|
*/
|
|
|
|
typedef struct SqlFunc SqlFunc;
|
|
|
|
struct SqlFunc {
|
|
|
|
Tcl_Interp *interp; /* The TCL interpret to execute the function */
|
2005-06-26 21:55:33 +04:00
|
|
|
Tcl_Obj *pScript; /* The Tcl_Obj representation of the script */
|
2012-10-03 15:02:33 +04:00
|
|
|
SqliteDb *pDb; /* Database connection that owns this function */
|
2005-06-26 21:55:33 +04:00
|
|
|
int useEvalObjv; /* True if it is safe to use Tcl_EvalObjv */
|
|
|
|
char *zName; /* Name of this function */
|
2002-09-14 17:47:32 +04:00
|
|
|
SqlFunc *pNext; /* Next function on the list of them all */
|
|
|
|
};
|
|
|
|
|
2004-06-09 13:55:16 +04:00
|
|
|
/*
|
|
|
|
** New collation sequences function can be created as TCL scripts. Each such
|
|
|
|
** function is described by an instance of the following structure.
|
|
|
|
*/
|
|
|
|
typedef struct SqlCollate SqlCollate;
|
|
|
|
struct SqlCollate {
|
|
|
|
Tcl_Interp *interp; /* The TCL interpret to execute the function */
|
|
|
|
char *zScript; /* The script to be run */
|
2005-06-26 21:55:33 +04:00
|
|
|
SqlCollate *pNext; /* Next function on the list of them all */
|
2004-06-09 13:55:16 +04:00
|
|
|
};
|
|
|
|
|
2005-01-24 03:28:42 +03:00
|
|
|
/*
|
|
|
|
** Prepared statements are cached for faster execution. Each prepared
|
|
|
|
** statement is described by an instance of the following structure.
|
|
|
|
*/
|
|
|
|
typedef struct SqlPreparedStmt SqlPreparedStmt;
|
|
|
|
struct SqlPreparedStmt {
|
|
|
|
SqlPreparedStmt *pNext; /* Next in linked list */
|
|
|
|
SqlPreparedStmt *pPrev; /* Previous on the list */
|
|
|
|
sqlite3_stmt *pStmt; /* The prepared statement */
|
|
|
|
int nSql; /* chars in zSql[] */
|
2007-11-14 09:48:48 +03:00
|
|
|
const char *zSql; /* Text of the SQL statement */
|
2009-10-06 18:59:02 +04:00
|
|
|
int nParm; /* Size of apParm array */
|
|
|
|
Tcl_Obj **apParm; /* Array of referenced object pointers */
|
2005-01-24 03:28:42 +03:00
|
|
|
};
|
|
|
|
|
2007-05-02 17:16:30 +04:00
|
|
|
typedef struct IncrblobChannel IncrblobChannel;
|
|
|
|
|
2000-08-04 17:49:02 +04:00
|
|
|
/*
|
|
|
|
** There is one instance of this structure for each SQLite database
|
|
|
|
** that has been opened by the SQLite TCL interface.
|
2011-06-27 20:55:50 +04:00
|
|
|
**
|
|
|
|
** If this module is built with SQLITE_TEST defined (to create the SQLite
|
|
|
|
** testfixture executable), then it may be configured to use either
|
|
|
|
** sqlite3_prepare_v2() or sqlite3_prepare() to prepare SQL statements.
|
|
|
|
** If SqliteDb.bLegacyPrepare is true, sqlite3_prepare() is used.
|
2000-08-04 17:49:02 +04:00
|
|
|
*/
|
|
|
|
struct SqliteDb {
|
2006-01-03 03:33:50 +03:00
|
|
|
sqlite3 *db; /* The "real" database structure. MUST BE FIRST */
|
2005-06-26 21:55:33 +04:00
|
|
|
Tcl_Interp *interp; /* The interpreter used for this database */
|
|
|
|
char *zBusy; /* The busy callback routine */
|
|
|
|
char *zCommit; /* The commit hook callback routine */
|
|
|
|
char *zTrace; /* The trace callback routine */
|
2005-08-30 03:00:03 +04:00
|
|
|
char *zProfile; /* The profile callback routine */
|
2005-06-26 21:55:33 +04:00
|
|
|
char *zProgress; /* The progress callback routine */
|
|
|
|
char *zAuth; /* The authorization callback routine */
|
2008-08-27 01:33:34 +04:00
|
|
|
int disableAuth; /* Disable the authorizer if it exists */
|
2005-06-26 21:55:33 +04:00
|
|
|
char *zNull; /* Text to substitute for an SQL NULL value */
|
|
|
|
SqlFunc *pFunc; /* List of SQL functions */
|
2005-12-15 18:22:08 +03:00
|
|
|
Tcl_Obj *pUpdateHook; /* Update hook script (if any) */
|
2005-12-16 09:54:01 +03:00
|
|
|
Tcl_Obj *pRollbackHook; /* Rollback hook script (if any) */
|
2010-05-06 00:00:25 +04:00
|
|
|
Tcl_Obj *pWalHook; /* WAL hook script (if any) */
|
2009-03-16 16:19:36 +03:00
|
|
|
Tcl_Obj *pUnlockNotify; /* Unlock notify script (if any) */
|
2005-06-26 21:55:33 +04:00
|
|
|
SqlCollate *pCollate; /* List of SQL collation functions */
|
|
|
|
int rc; /* Return code of most recent sqlite3_exec() */
|
|
|
|
Tcl_Obj *pCollateNeeded; /* Collation needed script */
|
2005-01-24 03:28:42 +03:00
|
|
|
SqlPreparedStmt *stmtList; /* List of prepared statements*/
|
|
|
|
SqlPreparedStmt *stmtLast; /* Last statement in the list */
|
|
|
|
int maxStmt; /* The next maximum number of stmtList */
|
|
|
|
int nStmt; /* Number of statements in stmtList */
|
2007-05-02 17:16:30 +04:00
|
|
|
IncrblobChannel *pIncrblob;/* Linked list of open incrblob channels */
|
2010-04-07 23:31:59 +04:00
|
|
|
int nStep, nSort, nIndex; /* Statistics for most recent operation */
|
2009-01-02 20:33:46 +03:00
|
|
|
int nTransaction; /* Number of nested [transaction] methods */
|
2011-06-27 20:55:50 +04:00
|
|
|
#ifdef SQLITE_TEST
|
|
|
|
int bLegacyPrepare; /* True to use sqlite3_prepare() */
|
|
|
|
#endif
|
2001-10-18 16:34:46 +04:00
|
|
|
};
|
2001-04-05 19:57:13 +04:00
|
|
|
|
2007-05-01 21:49:49 +04:00
|
|
|
struct IncrblobChannel {
|
2007-05-02 17:16:30 +04:00
|
|
|
sqlite3_blob *pBlob; /* sqlite3 blob handle */
|
2007-05-04 22:36:44 +04:00
|
|
|
SqliteDb *pDb; /* Associated database connection */
|
2007-05-02 17:16:30 +04:00
|
|
|
int iSeek; /* Current seek offset */
|
|
|
|
Tcl_Channel channel; /* Channel identifier */
|
|
|
|
IncrblobChannel *pNext; /* Linked list of all open incrblob channels */
|
|
|
|
IncrblobChannel *pPrev; /* Linked list of all open incrblob channels */
|
2007-05-01 21:49:49 +04:00
|
|
|
};
|
|
|
|
|
2008-12-10 22:26:22 +03:00
|
|
|
/*
|
|
|
|
** Compute a string length that is limited to what can be stored in
|
|
|
|
** lower 30 bits of a 32-bit signed integer.
|
|
|
|
*/
|
2008-12-11 01:15:00 +03:00
|
|
|
static int strlen30(const char *z){
|
2008-12-10 22:26:22 +03:00
|
|
|
const char *z2 = z;
|
|
|
|
while( *z2 ){ z2++; }
|
|
|
|
return 0x3fffffff & (int)(z2 - z);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-04 23:03:02 +04:00
|
|
|
#ifndef SQLITE_OMIT_INCRBLOB
|
2007-05-02 17:16:30 +04:00
|
|
|
/*
|
|
|
|
** Close all incrblob channels opened using database connection pDb.
|
|
|
|
** This is called when shutting down the database connection.
|
|
|
|
*/
|
|
|
|
static void closeIncrblobChannels(SqliteDb *pDb){
|
|
|
|
IncrblobChannel *p;
|
|
|
|
IncrblobChannel *pNext;
|
|
|
|
|
|
|
|
for(p=pDb->pIncrblob; p; p=pNext){
|
|
|
|
pNext = p->pNext;
|
|
|
|
|
|
|
|
/* Note: Calling unregister here call Tcl_Close on the incrblob channel,
|
|
|
|
** which deletes the IncrblobChannel structure at *p. So do not
|
|
|
|
** call Tcl_Free() here.
|
|
|
|
*/
|
|
|
|
Tcl_UnregisterChannel(pDb->interp, p->channel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-01 21:49:49 +04:00
|
|
|
/*
|
|
|
|
** Close an incremental blob channel.
|
|
|
|
*/
|
|
|
|
static int incrblobClose(ClientData instanceData, Tcl_Interp *interp){
|
|
|
|
IncrblobChannel *p = (IncrblobChannel *)instanceData;
|
2007-05-04 16:05:56 +04:00
|
|
|
int rc = sqlite3_blob_close(p->pBlob);
|
|
|
|
sqlite3 *db = p->pDb->db;
|
2007-05-02 17:16:30 +04:00
|
|
|
|
|
|
|
/* Remove the channel from the SqliteDb.pIncrblob list. */
|
|
|
|
if( p->pNext ){
|
|
|
|
p->pNext->pPrev = p->pPrev;
|
|
|
|
}
|
|
|
|
if( p->pPrev ){
|
|
|
|
p->pPrev->pNext = p->pNext;
|
|
|
|
}
|
|
|
|
if( p->pDb->pIncrblob==p ){
|
|
|
|
p->pDb->pIncrblob = p->pNext;
|
|
|
|
}
|
|
|
|
|
2007-05-04 16:05:56 +04:00
|
|
|
/* Free the IncrblobChannel structure */
|
2007-05-01 21:49:49 +04:00
|
|
|
Tcl_Free((char *)p);
|
2007-05-04 16:05:56 +04:00
|
|
|
|
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
Tcl_SetResult(interp, (char *)sqlite3_errmsg(db), TCL_VOLATILE);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2007-05-01 21:49:49 +04:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Read data from an incremental blob channel.
|
|
|
|
*/
|
|
|
|
static int incrblobInput(
|
|
|
|
ClientData instanceData,
|
|
|
|
char *buf,
|
|
|
|
int bufSize,
|
|
|
|
int *errorCodePtr
|
|
|
|
){
|
|
|
|
IncrblobChannel *p = (IncrblobChannel *)instanceData;
|
|
|
|
int nRead = bufSize; /* Number of bytes to read */
|
|
|
|
int nBlob; /* Total size of the blob */
|
|
|
|
int rc; /* sqlite error code */
|
|
|
|
|
|
|
|
nBlob = sqlite3_blob_bytes(p->pBlob);
|
|
|
|
if( (p->iSeek+nRead)>nBlob ){
|
|
|
|
nRead = nBlob-p->iSeek;
|
|
|
|
}
|
|
|
|
if( nRead<=0 ){
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = sqlite3_blob_read(p->pBlob, (void *)buf, nRead, p->iSeek);
|
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
*errorCodePtr = rc;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
p->iSeek += nRead;
|
|
|
|
return nRead;
|
|
|
|
}
|
|
|
|
|
2007-05-02 17:16:30 +04:00
|
|
|
/*
|
|
|
|
** Write data to an incremental blob channel.
|
|
|
|
*/
|
2007-05-01 21:49:49 +04:00
|
|
|
static int incrblobOutput(
|
|
|
|
ClientData instanceData,
|
|
|
|
CONST char *buf,
|
|
|
|
int toWrite,
|
|
|
|
int *errorCodePtr
|
|
|
|
){
|
|
|
|
IncrblobChannel *p = (IncrblobChannel *)instanceData;
|
|
|
|
int nWrite = toWrite; /* Number of bytes to write */
|
|
|
|
int nBlob; /* Total size of the blob */
|
|
|
|
int rc; /* sqlite error code */
|
|
|
|
|
|
|
|
nBlob = sqlite3_blob_bytes(p->pBlob);
|
|
|
|
if( (p->iSeek+nWrite)>nBlob ){
|
|
|
|
*errorCodePtr = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if( nWrite<=0 ){
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = sqlite3_blob_write(p->pBlob, (void *)buf, nWrite, p->iSeek);
|
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
*errorCodePtr = EIO;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
p->iSeek += nWrite;
|
|
|
|
return nWrite;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Seek an incremental blob channel.
|
|
|
|
*/
|
|
|
|
static int incrblobSeek(
|
|
|
|
ClientData instanceData,
|
|
|
|
long offset,
|
|
|
|
int seekMode,
|
|
|
|
int *errorCodePtr
|
|
|
|
){
|
|
|
|
IncrblobChannel *p = (IncrblobChannel *)instanceData;
|
|
|
|
|
|
|
|
switch( seekMode ){
|
|
|
|
case SEEK_SET:
|
|
|
|
p->iSeek = offset;
|
|
|
|
break;
|
|
|
|
case SEEK_CUR:
|
|
|
|
p->iSeek += offset;
|
|
|
|
break;
|
|
|
|
case SEEK_END:
|
|
|
|
p->iSeek = sqlite3_blob_bytes(p->pBlob) + offset;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: assert(!"Bad seekMode");
|
|
|
|
}
|
|
|
|
|
|
|
|
return p->iSeek;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void incrblobWatch(ClientData instanceData, int mode){
|
|
|
|
/* NO-OP */
|
|
|
|
}
|
|
|
|
static int incrblobHandle(ClientData instanceData, int dir, ClientData *hPtr){
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Tcl_ChannelType IncrblobChannelType = {
|
|
|
|
"incrblob", /* typeName */
|
|
|
|
TCL_CHANNEL_VERSION_2, /* version */
|
|
|
|
incrblobClose, /* closeProc */
|
|
|
|
incrblobInput, /* inputProc */
|
|
|
|
incrblobOutput, /* outputProc */
|
|
|
|
incrblobSeek, /* seekProc */
|
|
|
|
0, /* setOptionProc */
|
|
|
|
0, /* getOptionProc */
|
|
|
|
incrblobWatch, /* watchProc (this is a no-op) */
|
|
|
|
incrblobHandle, /* getHandleProc (always returns error) */
|
|
|
|
0, /* close2Proc */
|
|
|
|
0, /* blockModeProc */
|
|
|
|
0, /* flushProc */
|
|
|
|
0, /* handlerProc */
|
|
|
|
0, /* wideSeekProc */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Create a new incrblob channel.
|
|
|
|
*/
|
|
|
|
static int createIncrblobChannel(
|
|
|
|
Tcl_Interp *interp,
|
|
|
|
SqliteDb *pDb,
|
|
|
|
const char *zDb,
|
|
|
|
const char *zTable,
|
|
|
|
const char *zColumn,
|
2007-05-03 20:31:26 +04:00
|
|
|
sqlite_int64 iRow,
|
|
|
|
int isReadonly
|
2007-05-01 21:49:49 +04:00
|
|
|
){
|
|
|
|
IncrblobChannel *p;
|
2007-05-03 20:31:26 +04:00
|
|
|
sqlite3 *db = pDb->db;
|
2007-05-01 21:49:49 +04:00
|
|
|
sqlite3_blob *pBlob;
|
|
|
|
int rc;
|
2007-05-03 20:31:26 +04:00
|
|
|
int flags = TCL_READABLE|(isReadonly ? 0 : TCL_WRITABLE);
|
2007-05-01 21:49:49 +04:00
|
|
|
|
|
|
|
/* This variable is used to name the channels: "incrblob_[incr count]" */
|
|
|
|
static int count = 0;
|
|
|
|
char zChannel[64];
|
|
|
|
|
2007-05-03 20:31:26 +04:00
|
|
|
rc = sqlite3_blob_open(db, zDb, zTable, zColumn, iRow, !isReadonly, &pBlob);
|
2007-05-01 21:49:49 +04:00
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
Tcl_SetResult(interp, (char *)sqlite3_errmsg(pDb->db), TCL_VOLATILE);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = (IncrblobChannel *)Tcl_Alloc(sizeof(IncrblobChannel));
|
|
|
|
p->iSeek = 0;
|
|
|
|
p->pBlob = pBlob;
|
|
|
|
|
2007-05-04 17:15:55 +04:00
|
|
|
sqlite3_snprintf(sizeof(zChannel), zChannel, "incrblob_%d", ++count);
|
2007-05-02 17:16:30 +04:00
|
|
|
p->channel = Tcl_CreateChannel(&IncrblobChannelType, zChannel, p, flags);
|
|
|
|
Tcl_RegisterChannel(interp, p->channel);
|
|
|
|
|
|
|
|
/* Link the new channel into the SqliteDb.pIncrblob list. */
|
|
|
|
p->pNext = pDb->pIncrblob;
|
|
|
|
p->pPrev = 0;
|
|
|
|
if( p->pNext ){
|
|
|
|
p->pNext->pPrev = p;
|
|
|
|
}
|
|
|
|
pDb->pIncrblob = p;
|
|
|
|
p->pDb = pDb;
|
2007-05-01 21:49:49 +04:00
|
|
|
|
2007-05-02 17:16:30 +04:00
|
|
|
Tcl_SetResult(interp, (char *)Tcl_GetChannelName(p->channel), TCL_VOLATILE);
|
2007-05-01 21:49:49 +04:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
2007-05-04 23:03:02 +04:00
|
|
|
#else /* else clause for "#ifndef SQLITE_OMIT_INCRBLOB" */
|
|
|
|
#define closeIncrblobChannels(pDb)
|
|
|
|
#endif
|
2007-05-01 21:49:49 +04:00
|
|
|
|
2005-06-26 21:55:33 +04:00
|
|
|
/*
|
|
|
|
** Look at the script prefix in pCmd. We will be executing this script
|
|
|
|
** after first appending one or more arguments. This routine analyzes
|
|
|
|
** the script to see if it is safe to use Tcl_EvalObjv() on the script
|
|
|
|
** rather than the more general Tcl_EvalEx(). Tcl_EvalObjv() is much
|
|
|
|
** faster.
|
|
|
|
**
|
|
|
|
** Scripts that are safe to use with Tcl_EvalObjv() consists of a
|
|
|
|
** command name followed by zero or more arguments with no [...] or $
|
|
|
|
** or {...} or ; to be seen anywhere. Most callback scripts consist
|
|
|
|
** of just a single procedure name and they meet this requirement.
|
|
|
|
*/
|
|
|
|
static int safeToUseEvalObjv(Tcl_Interp *interp, Tcl_Obj *pCmd){
|
|
|
|
/* We could try to do something with Tcl_Parse(). But we will instead
|
|
|
|
** just do a search for forbidden characters. If any of the forbidden
|
|
|
|
** characters appear in pCmd, we will report the string as unsafe.
|
|
|
|
*/
|
|
|
|
const char *z;
|
|
|
|
int n;
|
|
|
|
z = Tcl_GetStringFromObj(pCmd, &n);
|
|
|
|
while( n-- > 0 ){
|
|
|
|
int c = *(z++);
|
|
|
|
if( c=='$' || c=='[' || c==';' ) return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Find an SqlFunc structure with the given name. Or create a new
|
|
|
|
** one if an existing one cannot be found. Return a pointer to the
|
|
|
|
** structure.
|
|
|
|
*/
|
|
|
|
static SqlFunc *findSqlFunc(SqliteDb *pDb, const char *zName){
|
|
|
|
SqlFunc *p, *pNew;
|
2013-11-26 20:48:04 +04:00
|
|
|
int nName = strlen30(zName);
|
|
|
|
pNew = (SqlFunc*)Tcl_Alloc( sizeof(*pNew) + nName + 1 );
|
2005-06-26 21:55:33 +04:00
|
|
|
pNew->zName = (char*)&pNew[1];
|
2013-11-26 20:48:04 +04:00
|
|
|
memcpy(pNew->zName, zName, nName+1);
|
2005-06-26 21:55:33 +04:00
|
|
|
for(p=pDb->pFunc; p; p=p->pNext){
|
2013-11-26 20:48:04 +04:00
|
|
|
if( sqlite3_stricmp(p->zName, pNew->zName)==0 ){
|
2005-06-26 21:55:33 +04:00
|
|
|
Tcl_Free((char*)pNew);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pNew->interp = pDb->interp;
|
2012-10-03 15:02:33 +04:00
|
|
|
pNew->pDb = pDb;
|
2005-06-26 21:55:33 +04:00
|
|
|
pNew->pScript = 0;
|
|
|
|
pNew->pNext = pDb->pFunc;
|
|
|
|
pDb->pFunc = pNew;
|
|
|
|
return pNew;
|
|
|
|
}
|
|
|
|
|
2011-06-27 20:55:50 +04:00
|
|
|
/*
|
|
|
|
** Free a single SqlPreparedStmt object.
|
|
|
|
*/
|
|
|
|
static void dbFreeStmt(SqlPreparedStmt *pStmt){
|
|
|
|
#ifdef SQLITE_TEST
|
|
|
|
if( sqlite3_sql(pStmt->pStmt)==0 ){
|
|
|
|
Tcl_Free((char *)pStmt->zSql);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
sqlite3_finalize(pStmt->pStmt);
|
|
|
|
Tcl_Free((char *)pStmt);
|
|
|
|
}
|
|
|
|
|
2005-01-24 03:28:42 +03:00
|
|
|
/*
|
|
|
|
** Finalize and free a list of prepared statements
|
|
|
|
*/
|
2011-06-27 20:55:50 +04:00
|
|
|
static void flushStmtCache(SqliteDb *pDb){
|
2005-01-24 03:28:42 +03:00
|
|
|
SqlPreparedStmt *pPreStmt;
|
2011-06-27 20:55:50 +04:00
|
|
|
SqlPreparedStmt *pNext;
|
2005-01-24 03:28:42 +03:00
|
|
|
|
2011-06-27 20:55:50 +04:00
|
|
|
for(pPreStmt = pDb->stmtList; pPreStmt; pPreStmt=pNext){
|
|
|
|
pNext = pPreStmt->pNext;
|
|
|
|
dbFreeStmt(pPreStmt);
|
2005-01-24 03:28:42 +03:00
|
|
|
}
|
|
|
|
pDb->nStmt = 0;
|
|
|
|
pDb->stmtLast = 0;
|
2011-06-27 20:55:50 +04:00
|
|
|
pDb->stmtList = 0;
|
2005-01-24 03:28:42 +03:00
|
|
|
}
|
|
|
|
|
2000-05-29 18:26:00 +04:00
|
|
|
/*
|
2004-08-20 20:02:39 +04:00
|
|
|
** TCL calls this procedure when an sqlite3 database command is
|
|
|
|
** deleted.
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
|
|
|
static void DbDeleteCmd(void *db){
|
2000-08-04 17:49:02 +04:00
|
|
|
SqliteDb *pDb = (SqliteDb*)db;
|
2005-01-24 03:28:42 +03:00
|
|
|
flushStmtCache(pDb);
|
2007-05-02 17:16:30 +04:00
|
|
|
closeIncrblobChannels(pDb);
|
2004-05-10 14:34:51 +04:00
|
|
|
sqlite3_close(pDb->db);
|
2002-09-14 17:47:32 +04:00
|
|
|
while( pDb->pFunc ){
|
|
|
|
SqlFunc *pFunc = pDb->pFunc;
|
|
|
|
pDb->pFunc = pFunc->pNext;
|
2012-10-03 15:02:33 +04:00
|
|
|
assert( pFunc->pDb==pDb );
|
2005-06-26 21:55:33 +04:00
|
|
|
Tcl_DecrRefCount(pFunc->pScript);
|
2002-09-14 17:47:32 +04:00
|
|
|
Tcl_Free((char*)pFunc);
|
|
|
|
}
|
2004-06-09 13:55:16 +04:00
|
|
|
while( pDb->pCollate ){
|
|
|
|
SqlCollate *pCollate = pDb->pCollate;
|
|
|
|
pDb->pCollate = pCollate->pNext;
|
|
|
|
Tcl_Free((char*)pCollate);
|
|
|
|
}
|
2000-08-04 17:49:02 +04:00
|
|
|
if( pDb->zBusy ){
|
|
|
|
Tcl_Free(pDb->zBusy);
|
|
|
|
}
|
2003-04-23 16:25:23 +04:00
|
|
|
if( pDb->zTrace ){
|
|
|
|
Tcl_Free(pDb->zTrace);
|
2003-04-03 19:46:04 +04:00
|
|
|
}
|
2005-08-30 03:00:03 +04:00
|
|
|
if( pDb->zProfile ){
|
|
|
|
Tcl_Free(pDb->zProfile);
|
|
|
|
}
|
2003-04-23 00:30:37 +04:00
|
|
|
if( pDb->zAuth ){
|
|
|
|
Tcl_Free(pDb->zAuth);
|
|
|
|
}
|
2005-04-04 03:54:43 +04:00
|
|
|
if( pDb->zNull ){
|
|
|
|
Tcl_Free(pDb->zNull);
|
|
|
|
}
|
2005-12-15 18:22:08 +03:00
|
|
|
if( pDb->pUpdateHook ){
|
|
|
|
Tcl_DecrRefCount(pDb->pUpdateHook);
|
|
|
|
}
|
2005-12-16 09:54:01 +03:00
|
|
|
if( pDb->pRollbackHook ){
|
|
|
|
Tcl_DecrRefCount(pDb->pRollbackHook);
|
|
|
|
}
|
2010-05-06 00:00:25 +04:00
|
|
|
if( pDb->pWalHook ){
|
|
|
|
Tcl_DecrRefCount(pDb->pWalHook);
|
2010-04-19 22:03:51 +04:00
|
|
|
}
|
2005-12-15 18:22:08 +03:00
|
|
|
if( pDb->pCollateNeeded ){
|
|
|
|
Tcl_DecrRefCount(pDb->pCollateNeeded);
|
|
|
|
}
|
2000-08-04 17:49:02 +04:00
|
|
|
Tcl_Free((char*)pDb);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This routine is called when a database file is locked while trying
|
|
|
|
** to execute SQL.
|
|
|
|
*/
|
2004-06-12 05:43:26 +04:00
|
|
|
static int DbBusyHandler(void *cd, int nTries){
|
2000-08-04 17:49:02 +04:00
|
|
|
SqliteDb *pDb = (SqliteDb*)cd;
|
|
|
|
int rc;
|
|
|
|
char zVal[30];
|
|
|
|
|
2007-05-04 17:15:55 +04:00
|
|
|
sqlite3_snprintf(sizeof(zVal), zVal, "%d", nTries);
|
2005-06-26 21:55:33 +04:00
|
|
|
rc = Tcl_VarEval(pDb->interp, pDb->zBusy, " ", zVal, (char*)0);
|
2000-08-04 17:49:02 +04:00
|
|
|
if( rc!=TCL_OK || atoi(Tcl_GetStringResult(pDb->interp)) ){
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
|
2008-05-01 21:16:52 +04:00
|
|
|
#ifndef SQLITE_OMIT_PROGRESS_CALLBACK
|
2003-10-18 13:37:26 +04:00
|
|
|
/*
|
|
|
|
** This routine is invoked as the 'progress callback' for the database.
|
|
|
|
*/
|
|
|
|
static int DbProgressHandler(void *cd){
|
|
|
|
SqliteDb *pDb = (SqliteDb*)cd;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert( pDb->zProgress );
|
|
|
|
rc = Tcl_Eval(pDb->interp, pDb->zProgress);
|
|
|
|
if( rc!=TCL_OK || atoi(Tcl_GetStringResult(pDb->interp)) ){
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2008-05-01 21:16:52 +04:00
|
|
|
#endif
|
2003-10-18 13:37:26 +04:00
|
|
|
|
2006-01-23 16:00:35 +03:00
|
|
|
#ifndef SQLITE_OMIT_TRACE
|
2003-04-03 19:46:04 +04:00
|
|
|
/*
|
2003-04-23 16:25:23 +04:00
|
|
|
** This routine is called by the SQLite trace handler whenever a new
|
|
|
|
** block of SQL is executed. The TCL script in pDb->zTrace is executed.
|
2003-04-03 19:46:04 +04:00
|
|
|
*/
|
2003-04-23 16:25:23 +04:00
|
|
|
static void DbTraceHandler(void *cd, const char *zSql){
|
2003-04-03 19:46:04 +04:00
|
|
|
SqliteDb *pDb = (SqliteDb*)cd;
|
2003-04-23 16:25:23 +04:00
|
|
|
Tcl_DString str;
|
2003-04-03 19:46:04 +04:00
|
|
|
|
2003-04-23 16:25:23 +04:00
|
|
|
Tcl_DStringInit(&str);
|
|
|
|
Tcl_DStringAppend(&str, pDb->zTrace, -1);
|
|
|
|
Tcl_DStringAppendElement(&str, zSql);
|
|
|
|
Tcl_Eval(pDb->interp, Tcl_DStringValue(&str));
|
|
|
|
Tcl_DStringFree(&str);
|
|
|
|
Tcl_ResetResult(pDb->interp);
|
2003-04-03 19:46:04 +04:00
|
|
|
}
|
2006-01-23 16:00:35 +03:00
|
|
|
#endif
|
2003-04-03 19:46:04 +04:00
|
|
|
|
2006-01-23 16:00:35 +03:00
|
|
|
#ifndef SQLITE_OMIT_TRACE
|
2005-08-30 03:00:03 +04:00
|
|
|
/*
|
|
|
|
** This routine is called by the SQLite profile handler after a statement
|
|
|
|
** SQL has executed. The TCL script in pDb->zProfile is evaluated.
|
|
|
|
*/
|
|
|
|
static void DbProfileHandler(void *cd, const char *zSql, sqlite_uint64 tm){
|
|
|
|
SqliteDb *pDb = (SqliteDb*)cd;
|
|
|
|
Tcl_DString str;
|
|
|
|
char zTm[100];
|
|
|
|
|
|
|
|
sqlite3_snprintf(sizeof(zTm)-1, zTm, "%lld", tm);
|
|
|
|
Tcl_DStringInit(&str);
|
|
|
|
Tcl_DStringAppend(&str, pDb->zProfile, -1);
|
|
|
|
Tcl_DStringAppendElement(&str, zSql);
|
|
|
|
Tcl_DStringAppendElement(&str, zTm);
|
|
|
|
Tcl_Eval(pDb->interp, Tcl_DStringValue(&str));
|
|
|
|
Tcl_DStringFree(&str);
|
|
|
|
Tcl_ResetResult(pDb->interp);
|
|
|
|
}
|
2006-01-23 16:00:35 +03:00
|
|
|
#endif
|
2005-08-30 03:00:03 +04:00
|
|
|
|
2004-01-15 05:44:03 +03:00
|
|
|
/*
|
|
|
|
** This routine is called when a transaction is committed. The
|
|
|
|
** TCL script in pDb->zCommit is executed. If it returns non-zero or
|
|
|
|
** if it throws an exception, the transaction is rolled back instead
|
|
|
|
** of being committed.
|
|
|
|
*/
|
|
|
|
static int DbCommitHandler(void *cd){
|
|
|
|
SqliteDb *pDb = (SqliteDb*)cd;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = Tcl_Eval(pDb->interp, pDb->zCommit);
|
|
|
|
if( rc!=TCL_OK || atoi(Tcl_GetStringResult(pDb->interp)) ){
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-12-16 09:54:01 +03:00
|
|
|
static void DbRollbackHandler(void *clientData){
|
|
|
|
SqliteDb *pDb = (SqliteDb*)clientData;
|
|
|
|
assert(pDb->pRollbackHook);
|
|
|
|
if( TCL_OK!=Tcl_EvalObjEx(pDb->interp, pDb->pRollbackHook, 0) ){
|
|
|
|
Tcl_BackgroundError(pDb->interp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-06 00:00:25 +04:00
|
|
|
/*
|
|
|
|
** This procedure handles wal_hook callbacks.
|
|
|
|
*/
|
|
|
|
static int DbWalHandler(
|
2010-04-19 22:03:51 +04:00
|
|
|
void *clientData,
|
|
|
|
sqlite3 *db,
|
|
|
|
const char *zDb,
|
|
|
|
int nEntry
|
|
|
|
){
|
2010-05-06 00:00:25 +04:00
|
|
|
int ret = SQLITE_OK;
|
2010-04-19 22:03:51 +04:00
|
|
|
Tcl_Obj *p;
|
|
|
|
SqliteDb *pDb = (SqliteDb*)clientData;
|
|
|
|
Tcl_Interp *interp = pDb->interp;
|
2010-05-06 00:00:25 +04:00
|
|
|
assert(pDb->pWalHook);
|
2010-04-19 22:03:51 +04:00
|
|
|
|
2014-12-10 23:29:49 +03:00
|
|
|
assert( db==pDb->db );
|
2010-05-06 00:00:25 +04:00
|
|
|
p = Tcl_DuplicateObj(pDb->pWalHook);
|
2010-04-19 22:03:51 +04:00
|
|
|
Tcl_IncrRefCount(p);
|
|
|
|
Tcl_ListObjAppendElement(interp, p, Tcl_NewStringObj(zDb, -1));
|
|
|
|
Tcl_ListObjAppendElement(interp, p, Tcl_NewIntObj(nEntry));
|
|
|
|
if( TCL_OK!=Tcl_EvalObjEx(interp, p, 0)
|
|
|
|
|| TCL_OK!=Tcl_GetIntFromObj(interp, Tcl_GetObjResult(interp), &ret)
|
|
|
|
){
|
|
|
|
Tcl_BackgroundError(interp);
|
|
|
|
}
|
|
|
|
Tcl_DecrRefCount(p);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-03-27 15:44:35 +03:00
|
|
|
#if defined(SQLITE_TEST) && defined(SQLITE_ENABLE_UNLOCK_NOTIFY)
|
2009-03-16 16:19:36 +03:00
|
|
|
static void setTestUnlockNotifyVars(Tcl_Interp *interp, int iArg, int nArg){
|
|
|
|
char zBuf[64];
|
|
|
|
sprintf(zBuf, "%d", iArg);
|
|
|
|
Tcl_SetVar(interp, "sqlite_unlock_notify_arg", zBuf, TCL_GLOBAL_ONLY);
|
|
|
|
sprintf(zBuf, "%d", nArg);
|
|
|
|
Tcl_SetVar(interp, "sqlite_unlock_notify_argcount", zBuf, TCL_GLOBAL_ONLY);
|
|
|
|
}
|
|
|
|
#else
|
2009-03-27 15:44:35 +03:00
|
|
|
# define setTestUnlockNotifyVars(x,y,z)
|
2009-03-16 16:19:36 +03:00
|
|
|
#endif
|
|
|
|
|
2009-03-27 15:32:54 +03:00
|
|
|
#ifdef SQLITE_ENABLE_UNLOCK_NOTIFY
|
2009-03-16 16:19:36 +03:00
|
|
|
static void DbUnlockNotify(void **apArg, int nArg){
|
|
|
|
int i;
|
|
|
|
for(i=0; i<nArg; i++){
|
|
|
|
const int flags = (TCL_EVAL_GLOBAL|TCL_EVAL_DIRECT);
|
|
|
|
SqliteDb *pDb = (SqliteDb *)apArg[i];
|
|
|
|
setTestUnlockNotifyVars(pDb->interp, i, nArg);
|
|
|
|
assert( pDb->pUnlockNotify);
|
|
|
|
Tcl_EvalObjEx(pDb->interp, pDb->pUnlockNotify, flags);
|
|
|
|
Tcl_DecrRefCount(pDb->pUnlockNotify);
|
|
|
|
pDb->pUnlockNotify = 0;
|
|
|
|
}
|
|
|
|
}
|
2009-03-27 15:32:54 +03:00
|
|
|
#endif
|
2009-03-16 16:19:36 +03:00
|
|
|
|
2005-12-15 18:22:08 +03:00
|
|
|
static void DbUpdateHandler(
|
|
|
|
void *p,
|
|
|
|
int op,
|
|
|
|
const char *zDb,
|
|
|
|
const char *zTbl,
|
|
|
|
sqlite_int64 rowid
|
|
|
|
){
|
|
|
|
SqliteDb *pDb = (SqliteDb *)p;
|
|
|
|
Tcl_Obj *pCmd;
|
|
|
|
|
|
|
|
assert( pDb->pUpdateHook );
|
|
|
|
assert( op==SQLITE_INSERT || op==SQLITE_UPDATE || op==SQLITE_DELETE );
|
|
|
|
|
|
|
|
pCmd = Tcl_DuplicateObj(pDb->pUpdateHook);
|
|
|
|
Tcl_IncrRefCount(pCmd);
|
|
|
|
Tcl_ListObjAppendElement(0, pCmd, Tcl_NewStringObj(
|
|
|
|
( (op==SQLITE_INSERT)?"INSERT":(op==SQLITE_UPDATE)?"UPDATE":"DELETE"), -1));
|
|
|
|
Tcl_ListObjAppendElement(0, pCmd, Tcl_NewStringObj(zDb, -1));
|
|
|
|
Tcl_ListObjAppendElement(0, pCmd, Tcl_NewStringObj(zTbl, -1));
|
|
|
|
Tcl_ListObjAppendElement(0, pCmd, Tcl_NewWideIntObj(rowid));
|
|
|
|
Tcl_EvalObjEx(pDb->interp, pCmd, TCL_EVAL_DIRECT);
|
2010-10-27 19:36:21 +04:00
|
|
|
Tcl_DecrRefCount(pCmd);
|
2005-12-15 18:22:08 +03:00
|
|
|
}
|
|
|
|
|
2004-06-10 14:50:08 +04:00
|
|
|
static void tclCollateNeeded(
|
|
|
|
void *pCtx,
|
2004-09-06 21:24:11 +04:00
|
|
|
sqlite3 *db,
|
2004-06-10 14:50:08 +04:00
|
|
|
int enc,
|
|
|
|
const char *zName
|
|
|
|
){
|
|
|
|
SqliteDb *pDb = (SqliteDb *)pCtx;
|
|
|
|
Tcl_Obj *pScript = Tcl_DuplicateObj(pDb->pCollateNeeded);
|
|
|
|
Tcl_IncrRefCount(pScript);
|
|
|
|
Tcl_ListObjAppendElement(0, pScript, Tcl_NewStringObj(zName, -1));
|
|
|
|
Tcl_EvalObjEx(pDb->interp, pScript, 0);
|
|
|
|
Tcl_DecrRefCount(pScript);
|
|
|
|
}
|
|
|
|
|
2004-06-09 13:55:16 +04:00
|
|
|
/*
|
|
|
|
** This routine is called to evaluate an SQL collation function implemented
|
|
|
|
** using TCL script.
|
|
|
|
*/
|
|
|
|
static int tclSqlCollate(
|
|
|
|
void *pCtx,
|
|
|
|
int nA,
|
|
|
|
const void *zA,
|
|
|
|
int nB,
|
|
|
|
const void *zB
|
|
|
|
){
|
|
|
|
SqlCollate *p = (SqlCollate *)pCtx;
|
|
|
|
Tcl_Obj *pCmd;
|
|
|
|
|
|
|
|
pCmd = Tcl_NewStringObj(p->zScript, -1);
|
|
|
|
Tcl_IncrRefCount(pCmd);
|
|
|
|
Tcl_ListObjAppendElement(p->interp, pCmd, Tcl_NewStringObj(zA, nA));
|
|
|
|
Tcl_ListObjAppendElement(p->interp, pCmd, Tcl_NewStringObj(zB, nB));
|
2005-06-26 21:55:33 +04:00
|
|
|
Tcl_EvalObjEx(p->interp, pCmd, TCL_EVAL_DIRECT);
|
2004-06-09 13:55:16 +04:00
|
|
|
Tcl_DecrRefCount(pCmd);
|
|
|
|
return (atoi(Tcl_GetStringResult(p->interp)));
|
|
|
|
}
|
|
|
|
|
2002-09-14 17:47:32 +04:00
|
|
|
/*
|
|
|
|
** This routine is called to evaluate an SQL function implemented
|
|
|
|
** using TCL script.
|
|
|
|
*/
|
2005-01-24 03:28:42 +03:00
|
|
|
static void tclSqlFunc(sqlite3_context *context, int argc, sqlite3_value**argv){
|
2004-05-10 14:34:51 +04:00
|
|
|
SqlFunc *p = sqlite3_user_data(context);
|
2005-06-26 21:55:33 +04:00
|
|
|
Tcl_Obj *pCmd;
|
2002-09-14 17:47:32 +04:00
|
|
|
int i;
|
|
|
|
int rc;
|
|
|
|
|
2005-06-26 21:55:33 +04:00
|
|
|
if( argc==0 ){
|
|
|
|
/* If there are no arguments to the function, call Tcl_EvalObjEx on the
|
|
|
|
** script object directly. This allows the TCL compiler to generate
|
|
|
|
** bytecode for the command on the first invocation and thus make
|
|
|
|
** subsequent invocations much faster. */
|
|
|
|
pCmd = p->pScript;
|
|
|
|
Tcl_IncrRefCount(pCmd);
|
|
|
|
rc = Tcl_EvalObjEx(p->interp, pCmd, 0);
|
|
|
|
Tcl_DecrRefCount(pCmd);
|
|
|
|
}else{
|
|
|
|
/* If there are arguments to the function, make a shallow copy of the
|
|
|
|
** script object, lappend the arguments, then evaluate the copy.
|
|
|
|
**
|
2014-09-06 20:39:46 +04:00
|
|
|
** By "shallow" copy, we mean only the outer list Tcl_Obj is duplicated.
|
2005-06-26 21:55:33 +04:00
|
|
|
** The new Tcl_Obj contains pointers to the original list elements.
|
|
|
|
** That way, when Tcl_EvalObjv() is run and shimmers the first element
|
|
|
|
** of the list to tclCmdNameType, that alternate representation will
|
|
|
|
** be preserved and reused on the next invocation.
|
|
|
|
*/
|
|
|
|
Tcl_Obj **aArg;
|
|
|
|
int nArg;
|
|
|
|
if( Tcl_ListObjGetElements(p->interp, p->pScript, &nArg, &aArg) ){
|
|
|
|
sqlite3_result_error(context, Tcl_GetStringResult(p->interp), -1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pCmd = Tcl_NewListObj(nArg, aArg);
|
|
|
|
Tcl_IncrRefCount(pCmd);
|
|
|
|
for(i=0; i<argc; i++){
|
|
|
|
sqlite3_value *pIn = argv[i];
|
|
|
|
Tcl_Obj *pVal;
|
|
|
|
|
|
|
|
/* Set pVal to contain the i'th column of this row. */
|
|
|
|
switch( sqlite3_value_type(pIn) ){
|
|
|
|
case SQLITE_BLOB: {
|
|
|
|
int bytes = sqlite3_value_bytes(pIn);
|
|
|
|
pVal = Tcl_NewByteArrayObj(sqlite3_value_blob(pIn), bytes);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SQLITE_INTEGER: {
|
|
|
|
sqlite_int64 v = sqlite3_value_int64(pIn);
|
|
|
|
if( v>=-2147483647 && v<=2147483647 ){
|
2011-06-20 23:00:30 +04:00
|
|
|
pVal = Tcl_NewIntObj((int)v);
|
2005-06-26 21:55:33 +04:00
|
|
|
}else{
|
|
|
|
pVal = Tcl_NewWideIntObj(v);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SQLITE_FLOAT: {
|
|
|
|
double r = sqlite3_value_double(pIn);
|
|
|
|
pVal = Tcl_NewDoubleObj(r);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SQLITE_NULL: {
|
2012-10-03 15:02:33 +04:00
|
|
|
pVal = Tcl_NewStringObj(p->pDb->zNull, -1);
|
2005-06-26 21:55:33 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
int bytes = sqlite3_value_bytes(pIn);
|
2005-12-07 09:27:43 +03:00
|
|
|
pVal = Tcl_NewStringObj((char *)sqlite3_value_text(pIn), bytes);
|
2005-06-26 21:55:33 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rc = Tcl_ListObjAppendElement(p->interp, pCmd, pVal);
|
|
|
|
if( rc ){
|
|
|
|
Tcl_DecrRefCount(pCmd);
|
|
|
|
sqlite3_result_error(context, Tcl_GetStringResult(p->interp), -1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( !p->useEvalObjv ){
|
|
|
|
/* Tcl_EvalObjEx() will automatically call Tcl_EvalObjv() if pCmd
|
|
|
|
** is a list without a string representation. To prevent this from
|
|
|
|
** happening, make sure pCmd has a valid string representation */
|
|
|
|
Tcl_GetString(pCmd);
|
2004-05-24 16:39:02 +04:00
|
|
|
}
|
2005-06-26 21:55:33 +04:00
|
|
|
rc = Tcl_EvalObjEx(p->interp, pCmd, TCL_EVAL_DIRECT);
|
|
|
|
Tcl_DecrRefCount(pCmd);
|
2002-09-14 17:47:32 +04:00
|
|
|
}
|
2005-05-20 13:40:55 +04:00
|
|
|
|
2005-05-05 14:30:29 +04:00
|
|
|
if( rc && rc!=TCL_RETURN ){
|
2004-05-25 15:47:24 +04:00
|
|
|
sqlite3_result_error(context, Tcl_GetStringResult(p->interp), -1);
|
2002-09-14 17:47:32 +04:00
|
|
|
}else{
|
2005-05-05 14:30:29 +04:00
|
|
|
Tcl_Obj *pVar = Tcl_GetObjResult(p->interp);
|
|
|
|
int n;
|
|
|
|
u8 *data;
|
2009-10-06 18:59:02 +04:00
|
|
|
const char *zType = (pVar->typePtr ? pVar->typePtr->name : "");
|
2005-05-05 14:30:29 +04:00
|
|
|
char c = zType[0];
|
2005-06-25 23:31:48 +04:00
|
|
|
if( c=='b' && strcmp(zType,"bytearray")==0 && pVar->bytes==0 ){
|
2005-06-26 21:55:33 +04:00
|
|
|
/* Only return a BLOB type if the Tcl variable is a bytearray and
|
2005-06-25 23:31:48 +04:00
|
|
|
** has no string representation. */
|
2005-05-05 14:30:29 +04:00
|
|
|
data = Tcl_GetByteArrayFromObj(pVar, &n);
|
|
|
|
sqlite3_result_blob(context, data, n, SQLITE_TRANSIENT);
|
2007-06-27 02:55:37 +04:00
|
|
|
}else if( c=='b' && strcmp(zType,"boolean")==0 ){
|
2005-05-05 14:30:29 +04:00
|
|
|
Tcl_GetIntFromObj(0, pVar, &n);
|
|
|
|
sqlite3_result_int(context, n);
|
|
|
|
}else if( c=='d' && strcmp(zType,"double")==0 ){
|
|
|
|
double r;
|
|
|
|
Tcl_GetDoubleFromObj(0, pVar, &r);
|
|
|
|
sqlite3_result_double(context, r);
|
2007-06-27 02:55:37 +04:00
|
|
|
}else if( (c=='w' && strcmp(zType,"wideInt")==0) ||
|
|
|
|
(c=='i' && strcmp(zType,"int")==0) ){
|
2005-06-25 23:31:48 +04:00
|
|
|
Tcl_WideInt v;
|
|
|
|
Tcl_GetWideIntFromObj(0, pVar, &v);
|
|
|
|
sqlite3_result_int64(context, v);
|
2005-05-05 14:30:29 +04:00
|
|
|
}else{
|
2005-12-07 09:27:43 +03:00
|
|
|
data = (unsigned char *)Tcl_GetStringFromObj(pVar, &n);
|
|
|
|
sqlite3_result_text(context, (char *)data, n, SQLITE_TRANSIENT);
|
2005-05-05 14:30:29 +04:00
|
|
|
}
|
2002-09-14 17:47:32 +04:00
|
|
|
}
|
|
|
|
}
|
2004-08-20 20:02:39 +04:00
|
|
|
|
2003-04-23 00:30:37 +04:00
|
|
|
#ifndef SQLITE_OMIT_AUTHORIZATION
|
|
|
|
/*
|
|
|
|
** This is the authentication function. It appends the authentication
|
|
|
|
** type code and the two arguments to zCmd[] then invokes the result
|
|
|
|
** on the interpreter. The reply is examined to determine if the
|
|
|
|
** authentication fails or succeeds.
|
|
|
|
*/
|
|
|
|
static int auth_callback(
|
|
|
|
void *pArg,
|
|
|
|
int code,
|
|
|
|
const char *zArg1,
|
|
|
|
const char *zArg2,
|
|
|
|
const char *zArg3,
|
|
|
|
const char *zArg4
|
2014-09-11 17:44:52 +04:00
|
|
|
#ifdef SQLITE_USER_AUTHENTICATION
|
|
|
|
,const char *zArg5
|
|
|
|
#endif
|
2003-04-23 00:30:37 +04:00
|
|
|
){
|
2014-01-24 21:03:55 +04:00
|
|
|
const char *zCode;
|
2003-04-23 00:30:37 +04:00
|
|
|
Tcl_DString str;
|
|
|
|
int rc;
|
|
|
|
const char *zReply;
|
|
|
|
SqliteDb *pDb = (SqliteDb*)pArg;
|
2008-08-27 01:33:34 +04:00
|
|
|
if( pDb->disableAuth ) return SQLITE_OK;
|
2003-04-23 00:30:37 +04:00
|
|
|
|
|
|
|
switch( code ){
|
|
|
|
case SQLITE_COPY : zCode="SQLITE_COPY"; break;
|
|
|
|
case SQLITE_CREATE_INDEX : zCode="SQLITE_CREATE_INDEX"; break;
|
|
|
|
case SQLITE_CREATE_TABLE : zCode="SQLITE_CREATE_TABLE"; break;
|
|
|
|
case SQLITE_CREATE_TEMP_INDEX : zCode="SQLITE_CREATE_TEMP_INDEX"; break;
|
|
|
|
case SQLITE_CREATE_TEMP_TABLE : zCode="SQLITE_CREATE_TEMP_TABLE"; break;
|
|
|
|
case SQLITE_CREATE_TEMP_TRIGGER: zCode="SQLITE_CREATE_TEMP_TRIGGER"; break;
|
|
|
|
case SQLITE_CREATE_TEMP_VIEW : zCode="SQLITE_CREATE_TEMP_VIEW"; break;
|
|
|
|
case SQLITE_CREATE_TRIGGER : zCode="SQLITE_CREATE_TRIGGER"; break;
|
|
|
|
case SQLITE_CREATE_VIEW : zCode="SQLITE_CREATE_VIEW"; break;
|
|
|
|
case SQLITE_DELETE : zCode="SQLITE_DELETE"; break;
|
|
|
|
case SQLITE_DROP_INDEX : zCode="SQLITE_DROP_INDEX"; break;
|
|
|
|
case SQLITE_DROP_TABLE : zCode="SQLITE_DROP_TABLE"; break;
|
|
|
|
case SQLITE_DROP_TEMP_INDEX : zCode="SQLITE_DROP_TEMP_INDEX"; break;
|
|
|
|
case SQLITE_DROP_TEMP_TABLE : zCode="SQLITE_DROP_TEMP_TABLE"; break;
|
|
|
|
case SQLITE_DROP_TEMP_TRIGGER : zCode="SQLITE_DROP_TEMP_TRIGGER"; break;
|
|
|
|
case SQLITE_DROP_TEMP_VIEW : zCode="SQLITE_DROP_TEMP_VIEW"; break;
|
|
|
|
case SQLITE_DROP_TRIGGER : zCode="SQLITE_DROP_TRIGGER"; break;
|
|
|
|
case SQLITE_DROP_VIEW : zCode="SQLITE_DROP_VIEW"; break;
|
|
|
|
case SQLITE_INSERT : zCode="SQLITE_INSERT"; break;
|
|
|
|
case SQLITE_PRAGMA : zCode="SQLITE_PRAGMA"; break;
|
|
|
|
case SQLITE_READ : zCode="SQLITE_READ"; break;
|
|
|
|
case SQLITE_SELECT : zCode="SQLITE_SELECT"; break;
|
|
|
|
case SQLITE_TRANSACTION : zCode="SQLITE_TRANSACTION"; break;
|
|
|
|
case SQLITE_UPDATE : zCode="SQLITE_UPDATE"; break;
|
2003-06-06 23:00:42 +04:00
|
|
|
case SQLITE_ATTACH : zCode="SQLITE_ATTACH"; break;
|
|
|
|
case SQLITE_DETACH : zCode="SQLITE_DETACH"; break;
|
2004-11-12 18:53:37 +03:00
|
|
|
case SQLITE_ALTER_TABLE : zCode="SQLITE_ALTER_TABLE"; break;
|
2004-11-23 18:41:16 +03:00
|
|
|
case SQLITE_REINDEX : zCode="SQLITE_REINDEX"; break;
|
2005-07-23 06:17:03 +04:00
|
|
|
case SQLITE_ANALYZE : zCode="SQLITE_ANALYZE"; break;
|
2006-06-16 12:01:02 +04:00
|
|
|
case SQLITE_CREATE_VTABLE : zCode="SQLITE_CREATE_VTABLE"; break;
|
|
|
|
case SQLITE_DROP_VTABLE : zCode="SQLITE_DROP_VTABLE"; break;
|
2006-08-24 18:59:45 +04:00
|
|
|
case SQLITE_FUNCTION : zCode="SQLITE_FUNCTION"; break;
|
2008-12-30 09:24:58 +03:00
|
|
|
case SQLITE_SAVEPOINT : zCode="SQLITE_SAVEPOINT"; break;
|
2014-01-17 02:40:02 +04:00
|
|
|
case SQLITE_RECURSIVE : zCode="SQLITE_RECURSIVE"; break;
|
2003-04-23 00:30:37 +04:00
|
|
|
default : zCode="????"; break;
|
|
|
|
}
|
|
|
|
Tcl_DStringInit(&str);
|
|
|
|
Tcl_DStringAppend(&str, pDb->zAuth, -1);
|
|
|
|
Tcl_DStringAppendElement(&str, zCode);
|
|
|
|
Tcl_DStringAppendElement(&str, zArg1 ? zArg1 : "");
|
|
|
|
Tcl_DStringAppendElement(&str, zArg2 ? zArg2 : "");
|
|
|
|
Tcl_DStringAppendElement(&str, zArg3 ? zArg3 : "");
|
|
|
|
Tcl_DStringAppendElement(&str, zArg4 ? zArg4 : "");
|
2014-09-11 17:44:52 +04:00
|
|
|
#ifdef SQLITE_USER_AUTHENTICATION
|
|
|
|
Tcl_DStringAppendElement(&str, zArg5 ? zArg5 : "");
|
|
|
|
#endif
|
2003-04-23 00:30:37 +04:00
|
|
|
rc = Tcl_GlobalEval(pDb->interp, Tcl_DStringValue(&str));
|
|
|
|
Tcl_DStringFree(&str);
|
2011-10-15 01:49:18 +04:00
|
|
|
zReply = rc==TCL_OK ? Tcl_GetStringResult(pDb->interp) : "SQLITE_DENY";
|
2003-04-23 00:30:37 +04:00
|
|
|
if( strcmp(zReply,"SQLITE_OK")==0 ){
|
|
|
|
rc = SQLITE_OK;
|
|
|
|
}else if( strcmp(zReply,"SQLITE_DENY")==0 ){
|
|
|
|
rc = SQLITE_DENY;
|
|
|
|
}else if( strcmp(zReply,"SQLITE_IGNORE")==0 ){
|
|
|
|
rc = SQLITE_IGNORE;
|
|
|
|
}else{
|
|
|
|
rc = 999;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
#endif /* SQLITE_OMIT_AUTHORIZATION */
|
2002-09-14 17:47:32 +04:00
|
|
|
|
2004-12-17 18:41:11 +03:00
|
|
|
/*
|
|
|
|
** This routine reads a line of text from FILE in, stores
|
|
|
|
** the text in memory obtained from malloc() and returns a pointer
|
|
|
|
** to the text. NULL is returned at end of file, or if malloc()
|
|
|
|
** fails.
|
|
|
|
**
|
|
|
|
** The interface is like "readline" but no command-line editing
|
|
|
|
** is done.
|
|
|
|
**
|
|
|
|
** copied from shell.c from '.import' command
|
|
|
|
*/
|
|
|
|
static char *local_getline(char *zPrompt, FILE *in){
|
|
|
|
char *zLine;
|
|
|
|
int nLine;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
nLine = 100;
|
|
|
|
zLine = malloc( nLine );
|
|
|
|
if( zLine==0 ) return 0;
|
|
|
|
n = 0;
|
2011-10-15 01:49:18 +04:00
|
|
|
while( 1 ){
|
2004-12-17 18:41:11 +03:00
|
|
|
if( n+100>nLine ){
|
|
|
|
nLine = nLine*2 + 100;
|
|
|
|
zLine = realloc(zLine, nLine);
|
|
|
|
if( zLine==0 ) return 0;
|
|
|
|
}
|
|
|
|
if( fgets(&zLine[n], nLine - n, in)==0 ){
|
|
|
|
if( n==0 ){
|
|
|
|
free(zLine);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
zLine[n] = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while( zLine[n] ){ n++; }
|
|
|
|
if( n>0 && zLine[n-1]=='\n' ){
|
|
|
|
n--;
|
|
|
|
zLine[n] = 0;
|
2011-10-15 01:49:18 +04:00
|
|
|
break;
|
2004-12-17 18:41:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
zLine = realloc( zLine, n+1 );
|
|
|
|
return zLine;
|
|
|
|
}
|
|
|
|
|
2007-11-13 13:30:24 +03:00
|
|
|
|
|
|
|
/*
|
2009-10-06 18:59:02 +04:00
|
|
|
** This function is part of the implementation of the command:
|
2007-11-13 13:30:24 +03:00
|
|
|
**
|
2009-10-06 18:59:02 +04:00
|
|
|
** $db transaction [-deferred|-immediate|-exclusive] SCRIPT
|
2007-11-13 13:30:24 +03:00
|
|
|
**
|
2009-10-06 18:59:02 +04:00
|
|
|
** It is invoked after evaluating the script SCRIPT to commit or rollback
|
|
|
|
** the transaction or savepoint opened by the [transaction] command.
|
|
|
|
*/
|
|
|
|
static int DbTransPostCmd(
|
|
|
|
ClientData data[], /* data[0] is the Sqlite3Db* for $db */
|
|
|
|
Tcl_Interp *interp, /* Tcl interpreter */
|
|
|
|
int result /* Result of evaluating SCRIPT */
|
|
|
|
){
|
2014-01-24 21:03:55 +04:00
|
|
|
static const char *const azEnd[] = {
|
2009-10-06 18:59:02 +04:00
|
|
|
"RELEASE _tcl_transaction", /* rc==TCL_ERROR, nTransaction!=0 */
|
|
|
|
"COMMIT", /* rc!=TCL_ERROR, nTransaction==0 */
|
|
|
|
"ROLLBACK TO _tcl_transaction ; RELEASE _tcl_transaction",
|
|
|
|
"ROLLBACK" /* rc==TCL_ERROR, nTransaction==0 */
|
|
|
|
};
|
|
|
|
SqliteDb *pDb = (SqliteDb*)data[0];
|
|
|
|
int rc = result;
|
|
|
|
const char *zEnd;
|
|
|
|
|
|
|
|
pDb->nTransaction--;
|
|
|
|
zEnd = azEnd[(rc==TCL_ERROR)*2 + (pDb->nTransaction==0)];
|
|
|
|
|
|
|
|
pDb->disableAuth++;
|
|
|
|
if( sqlite3_exec(pDb->db, zEnd, 0, 0, 0) ){
|
|
|
|
/* This is a tricky scenario to handle. The most likely cause of an
|
|
|
|
** error is that the exec() above was an attempt to commit the
|
|
|
|
** top-level transaction that returned SQLITE_BUSY. Or, less likely,
|
2013-03-22 01:20:32 +04:00
|
|
|
** that an IO-error has occurred. In either case, throw a Tcl exception
|
2009-10-06 18:59:02 +04:00
|
|
|
** and try to rollback the transaction.
|
|
|
|
**
|
|
|
|
** But it could also be that the user executed one or more BEGIN,
|
|
|
|
** COMMIT, SAVEPOINT, RELEASE or ROLLBACK commands that are confusing
|
|
|
|
** this method's logic. Not clear how this would be best handled.
|
|
|
|
*/
|
|
|
|
if( rc!=TCL_ERROR ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, sqlite3_errmsg(pDb->db), (char*)0);
|
2009-10-06 18:59:02 +04:00
|
|
|
rc = TCL_ERROR;
|
|
|
|
}
|
|
|
|
sqlite3_exec(pDb->db, "ROLLBACK", 0, 0, 0);
|
|
|
|
}
|
|
|
|
pDb->disableAuth--;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2011-06-27 20:55:50 +04:00
|
|
|
/*
|
|
|
|
** Unless SQLITE_TEST is defined, this function is a simple wrapper around
|
|
|
|
** sqlite3_prepare_v2(). If SQLITE_TEST is defined, then it uses either
|
|
|
|
** sqlite3_prepare_v2() or legacy interface sqlite3_prepare(), depending
|
|
|
|
** on whether or not the [db_use_legacy_prepare] command has been used to
|
|
|
|
** configure the connection.
|
|
|
|
*/
|
|
|
|
static int dbPrepare(
|
|
|
|
SqliteDb *pDb, /* Database object */
|
|
|
|
const char *zSql, /* SQL to compile */
|
|
|
|
sqlite3_stmt **ppStmt, /* OUT: Prepared statement */
|
|
|
|
const char **pzOut /* OUT: Pointer to next SQL statement */
|
|
|
|
){
|
|
|
|
#ifdef SQLITE_TEST
|
|
|
|
if( pDb->bLegacyPrepare ){
|
|
|
|
return sqlite3_prepare(pDb->db, zSql, -1, ppStmt, pzOut);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return sqlite3_prepare_v2(pDb->db, zSql, -1, ppStmt, pzOut);
|
|
|
|
}
|
|
|
|
|
2009-10-06 18:59:02 +04:00
|
|
|
/*
|
|
|
|
** Search the cache for a prepared-statement object that implements the
|
|
|
|
** first SQL statement in the buffer pointed to by parameter zIn. If
|
|
|
|
** no such prepared-statement can be found, allocate and prepare a new
|
|
|
|
** one. In either case, bind the current values of the relevant Tcl
|
|
|
|
** variables to any $var, :var or @var variables in the statement. Before
|
|
|
|
** returning, set *ppPreStmt to point to the prepared-statement object.
|
|
|
|
**
|
|
|
|
** Output parameter *pzOut is set to point to the next SQL statement in
|
|
|
|
** buffer zIn, or to the '\0' byte at the end of zIn if there is no
|
|
|
|
** next statement.
|
|
|
|
**
|
|
|
|
** If successful, TCL_OK is returned. Otherwise, TCL_ERROR is returned
|
|
|
|
** and an error message loaded into interpreter pDb->interp.
|
|
|
|
*/
|
|
|
|
static int dbPrepareAndBind(
|
|
|
|
SqliteDb *pDb, /* Database object */
|
|
|
|
char const *zIn, /* SQL to compile */
|
|
|
|
char const **pzOut, /* OUT: Pointer to next SQL statement */
|
|
|
|
SqlPreparedStmt **ppPreStmt /* OUT: Object used to cache statement */
|
|
|
|
){
|
|
|
|
const char *zSql = zIn; /* Pointer to first SQL statement in zIn */
|
|
|
|
sqlite3_stmt *pStmt; /* Prepared statement object */
|
|
|
|
SqlPreparedStmt *pPreStmt; /* Pointer to cached statement */
|
|
|
|
int nSql; /* Length of zSql in bytes */
|
|
|
|
int nVar; /* Number of variables in statement */
|
|
|
|
int iParm = 0; /* Next free entry in apParm */
|
2013-11-26 20:48:04 +04:00
|
|
|
char c;
|
2009-10-06 18:59:02 +04:00
|
|
|
int i;
|
|
|
|
Tcl_Interp *interp = pDb->interp;
|
|
|
|
|
|
|
|
*ppPreStmt = 0;
|
|
|
|
|
|
|
|
/* Trim spaces from the start of zSql and calculate the remaining length. */
|
2013-11-26 20:48:04 +04:00
|
|
|
while( (c = zSql[0])==' ' || c=='\t' || c=='\r' || c=='\n' ){ zSql++; }
|
2009-10-06 18:59:02 +04:00
|
|
|
nSql = strlen30(zSql);
|
|
|
|
|
|
|
|
for(pPreStmt = pDb->stmtList; pPreStmt; pPreStmt=pPreStmt->pNext){
|
|
|
|
int n = pPreStmt->nSql;
|
|
|
|
if( nSql>=n
|
|
|
|
&& memcmp(pPreStmt->zSql, zSql, n)==0
|
|
|
|
&& (zSql[n]==0 || zSql[n-1]==';')
|
|
|
|
){
|
|
|
|
pStmt = pPreStmt->pStmt;
|
|
|
|
*pzOut = &zSql[pPreStmt->nSql];
|
|
|
|
|
|
|
|
/* When a prepared statement is found, unlink it from the
|
|
|
|
** cache list. It will later be added back to the beginning
|
|
|
|
** of the cache list in order to implement LRU replacement.
|
|
|
|
*/
|
|
|
|
if( pPreStmt->pPrev ){
|
|
|
|
pPreStmt->pPrev->pNext = pPreStmt->pNext;
|
|
|
|
}else{
|
|
|
|
pDb->stmtList = pPreStmt->pNext;
|
|
|
|
}
|
|
|
|
if( pPreStmt->pNext ){
|
|
|
|
pPreStmt->pNext->pPrev = pPreStmt->pPrev;
|
|
|
|
}else{
|
|
|
|
pDb->stmtLast = pPreStmt->pPrev;
|
|
|
|
}
|
|
|
|
pDb->nStmt--;
|
|
|
|
nVar = sqlite3_bind_parameter_count(pStmt);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If no prepared statement was found. Compile the SQL text. Also allocate
|
|
|
|
** a new SqlPreparedStmt structure. */
|
|
|
|
if( pPreStmt==0 ){
|
|
|
|
int nByte;
|
|
|
|
|
2011-06-27 20:55:50 +04:00
|
|
|
if( SQLITE_OK!=dbPrepare(pDb, zSql, &pStmt, pzOut) ){
|
2012-10-03 15:02:33 +04:00
|
|
|
Tcl_SetObjResult(interp, Tcl_NewStringObj(sqlite3_errmsg(pDb->db), -1));
|
2009-10-06 18:59:02 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if( pStmt==0 ){
|
|
|
|
if( SQLITE_OK!=sqlite3_errcode(pDb->db) ){
|
|
|
|
/* A compile-time error in the statement. */
|
2012-10-03 15:02:33 +04:00
|
|
|
Tcl_SetObjResult(interp, Tcl_NewStringObj(sqlite3_errmsg(pDb->db), -1));
|
2009-10-06 18:59:02 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}else{
|
|
|
|
/* The statement was a no-op. Continue to the next statement
|
|
|
|
** in the SQL string.
|
|
|
|
*/
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert( pPreStmt==0 );
|
|
|
|
nVar = sqlite3_bind_parameter_count(pStmt);
|
|
|
|
nByte = sizeof(SqlPreparedStmt) + nVar*sizeof(Tcl_Obj *);
|
|
|
|
pPreStmt = (SqlPreparedStmt*)Tcl_Alloc(nByte);
|
|
|
|
memset(pPreStmt, 0, nByte);
|
|
|
|
|
|
|
|
pPreStmt->pStmt = pStmt;
|
2012-04-19 21:19:51 +04:00
|
|
|
pPreStmt->nSql = (int)(*pzOut - zSql);
|
2009-10-06 18:59:02 +04:00
|
|
|
pPreStmt->zSql = sqlite3_sql(pStmt);
|
|
|
|
pPreStmt->apParm = (Tcl_Obj **)&pPreStmt[1];
|
2011-06-27 20:55:50 +04:00
|
|
|
#ifdef SQLITE_TEST
|
|
|
|
if( pPreStmt->zSql==0 ){
|
|
|
|
char *zCopy = Tcl_Alloc(pPreStmt->nSql + 1);
|
|
|
|
memcpy(zCopy, zSql, pPreStmt->nSql);
|
|
|
|
zCopy[pPreStmt->nSql] = '\0';
|
|
|
|
pPreStmt->zSql = zCopy;
|
|
|
|
}
|
|
|
|
#endif
|
2009-10-06 18:59:02 +04:00
|
|
|
}
|
|
|
|
assert( pPreStmt );
|
|
|
|
assert( strlen30(pPreStmt->zSql)==pPreStmt->nSql );
|
|
|
|
assert( 0==memcmp(pPreStmt->zSql, zSql, pPreStmt->nSql) );
|
|
|
|
|
|
|
|
/* Bind values to parameters that begin with $ or : */
|
|
|
|
for(i=1; i<=nVar; i++){
|
|
|
|
const char *zVar = sqlite3_bind_parameter_name(pStmt, i);
|
|
|
|
if( zVar!=0 && (zVar[0]=='$' || zVar[0]==':' || zVar[0]=='@') ){
|
|
|
|
Tcl_Obj *pVar = Tcl_GetVar2Ex(interp, &zVar[1], 0, 0);
|
|
|
|
if( pVar ){
|
|
|
|
int n;
|
|
|
|
u8 *data;
|
|
|
|
const char *zType = (pVar->typePtr ? pVar->typePtr->name : "");
|
|
|
|
char c = zType[0];
|
|
|
|
if( zVar[0]=='@' ||
|
|
|
|
(c=='b' && strcmp(zType,"bytearray")==0 && pVar->bytes==0) ){
|
|
|
|
/* Load a BLOB type if the Tcl variable is a bytearray and
|
|
|
|
** it has no string representation or the host
|
|
|
|
** parameter name begins with "@". */
|
|
|
|
data = Tcl_GetByteArrayFromObj(pVar, &n);
|
|
|
|
sqlite3_bind_blob(pStmt, i, data, n, SQLITE_STATIC);
|
|
|
|
Tcl_IncrRefCount(pVar);
|
|
|
|
pPreStmt->apParm[iParm++] = pVar;
|
|
|
|
}else if( c=='b' && strcmp(zType,"boolean")==0 ){
|
|
|
|
Tcl_GetIntFromObj(interp, pVar, &n);
|
|
|
|
sqlite3_bind_int(pStmt, i, n);
|
|
|
|
}else if( c=='d' && strcmp(zType,"double")==0 ){
|
|
|
|
double r;
|
|
|
|
Tcl_GetDoubleFromObj(interp, pVar, &r);
|
|
|
|
sqlite3_bind_double(pStmt, i, r);
|
|
|
|
}else if( (c=='w' && strcmp(zType,"wideInt")==0) ||
|
|
|
|
(c=='i' && strcmp(zType,"int")==0) ){
|
|
|
|
Tcl_WideInt v;
|
|
|
|
Tcl_GetWideIntFromObj(interp, pVar, &v);
|
|
|
|
sqlite3_bind_int64(pStmt, i, v);
|
|
|
|
}else{
|
|
|
|
data = (unsigned char *)Tcl_GetStringFromObj(pVar, &n);
|
|
|
|
sqlite3_bind_text(pStmt, i, (char *)data, n, SQLITE_STATIC);
|
|
|
|
Tcl_IncrRefCount(pVar);
|
|
|
|
pPreStmt->apParm[iParm++] = pVar;
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
sqlite3_bind_null(pStmt, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pPreStmt->nParm = iParm;
|
|
|
|
*ppPreStmt = pPreStmt;
|
2009-10-15 22:35:38 +04:00
|
|
|
|
2009-10-06 18:59:02 +04:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Release a statement reference obtained by calling dbPrepareAndBind().
|
|
|
|
** There should be exactly one call to this function for each call to
|
|
|
|
** dbPrepareAndBind().
|
|
|
|
**
|
|
|
|
** If the discard parameter is non-zero, then the statement is deleted
|
|
|
|
** immediately. Otherwise it is added to the LRU list and may be returned
|
|
|
|
** by a subsequent call to dbPrepareAndBind().
|
|
|
|
*/
|
|
|
|
static void dbReleaseStmt(
|
|
|
|
SqliteDb *pDb, /* Database handle */
|
|
|
|
SqlPreparedStmt *pPreStmt, /* Prepared statement handle to release */
|
|
|
|
int discard /* True to delete (not cache) the pPreStmt */
|
|
|
|
){
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Free the bound string and blob parameters */
|
|
|
|
for(i=0; i<pPreStmt->nParm; i++){
|
|
|
|
Tcl_DecrRefCount(pPreStmt->apParm[i]);
|
|
|
|
}
|
|
|
|
pPreStmt->nParm = 0;
|
|
|
|
|
|
|
|
if( pDb->maxStmt<=0 || discard ){
|
|
|
|
/* If the cache is turned off, deallocated the statement */
|
2011-06-27 20:55:50 +04:00
|
|
|
dbFreeStmt(pPreStmt);
|
2009-10-06 18:59:02 +04:00
|
|
|
}else{
|
|
|
|
/* Add the prepared statement to the beginning of the cache list. */
|
|
|
|
pPreStmt->pNext = pDb->stmtList;
|
|
|
|
pPreStmt->pPrev = 0;
|
|
|
|
if( pDb->stmtList ){
|
|
|
|
pDb->stmtList->pPrev = pPreStmt;
|
|
|
|
}
|
|
|
|
pDb->stmtList = pPreStmt;
|
|
|
|
if( pDb->stmtLast==0 ){
|
|
|
|
assert( pDb->nStmt==0 );
|
|
|
|
pDb->stmtLast = pPreStmt;
|
|
|
|
}else{
|
|
|
|
assert( pDb->nStmt>0 );
|
|
|
|
}
|
|
|
|
pDb->nStmt++;
|
|
|
|
|
|
|
|
/* If we have too many statement in cache, remove the surplus from
|
|
|
|
** the end of the cache list. */
|
|
|
|
while( pDb->nStmt>pDb->maxStmt ){
|
2011-06-27 20:55:50 +04:00
|
|
|
SqlPreparedStmt *pLast = pDb->stmtLast;
|
|
|
|
pDb->stmtLast = pLast->pPrev;
|
2009-10-06 18:59:02 +04:00
|
|
|
pDb->stmtLast->pNext = 0;
|
|
|
|
pDb->nStmt--;
|
2011-06-27 20:55:50 +04:00
|
|
|
dbFreeStmt(pLast);
|
2009-10-06 18:59:02 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Structure used with dbEvalXXX() functions:
|
|
|
|
**
|
|
|
|
** dbEvalInit()
|
|
|
|
** dbEvalStep()
|
|
|
|
** dbEvalFinalize()
|
|
|
|
** dbEvalRowInfo()
|
|
|
|
** dbEvalColumnValue()
|
|
|
|
*/
|
|
|
|
typedef struct DbEvalContext DbEvalContext;
|
|
|
|
struct DbEvalContext {
|
|
|
|
SqliteDb *pDb; /* Database handle */
|
|
|
|
Tcl_Obj *pSql; /* Object holding string zSql */
|
|
|
|
const char *zSql; /* Remaining SQL to execute */
|
|
|
|
SqlPreparedStmt *pPreStmt; /* Current statement */
|
|
|
|
int nCol; /* Number of columns returned by pStmt */
|
|
|
|
Tcl_Obj *pArray; /* Name of array variable */
|
|
|
|
Tcl_Obj **apColName; /* Array of column names */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Release any cache of column names currently held as part of
|
|
|
|
** the DbEvalContext structure passed as the first argument.
|
|
|
|
*/
|
|
|
|
static void dbReleaseColumnNames(DbEvalContext *p){
|
|
|
|
if( p->apColName ){
|
|
|
|
int i;
|
|
|
|
for(i=0; i<p->nCol; i++){
|
|
|
|
Tcl_DecrRefCount(p->apColName[i]);
|
|
|
|
}
|
|
|
|
Tcl_Free((char *)p->apColName);
|
|
|
|
p->apColName = 0;
|
|
|
|
}
|
|
|
|
p->nCol = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Initialize a DbEvalContext structure.
|
2007-11-13 13:30:24 +03:00
|
|
|
**
|
|
|
|
** If pArray is not NULL, then it contains the name of a Tcl array
|
|
|
|
** variable. The "*" member of this array is set to a list containing
|
2009-10-06 18:59:02 +04:00
|
|
|
** the names of the columns returned by the statement as part of each
|
|
|
|
** call to dbEvalStep(), in order from left to right. e.g. if the names
|
|
|
|
** of the returned columns are a, b and c, it does the equivalent of the
|
|
|
|
** tcl command:
|
2007-11-13 13:30:24 +03:00
|
|
|
**
|
|
|
|
** set ${pArray}(*) {a b c}
|
|
|
|
*/
|
2009-10-06 18:59:02 +04:00
|
|
|
static void dbEvalInit(
|
|
|
|
DbEvalContext *p, /* Pointer to structure to initialize */
|
|
|
|
SqliteDb *pDb, /* Database handle */
|
|
|
|
Tcl_Obj *pSql, /* Object containing SQL script */
|
|
|
|
Tcl_Obj *pArray /* Name of Tcl array to set (*) element of */
|
2007-11-13 13:30:24 +03:00
|
|
|
){
|
2009-10-06 18:59:02 +04:00
|
|
|
memset(p, 0, sizeof(DbEvalContext));
|
|
|
|
p->pDb = pDb;
|
|
|
|
p->zSql = Tcl_GetString(pSql);
|
|
|
|
p->pSql = pSql;
|
|
|
|
Tcl_IncrRefCount(pSql);
|
|
|
|
if( pArray ){
|
|
|
|
p->pArray = pArray;
|
|
|
|
Tcl_IncrRefCount(pArray);
|
|
|
|
}
|
|
|
|
}
|
2007-11-13 13:30:24 +03:00
|
|
|
|
2009-10-06 18:59:02 +04:00
|
|
|
/*
|
|
|
|
** Obtain information about the row that the DbEvalContext passed as the
|
|
|
|
** first argument currently points to.
|
|
|
|
*/
|
|
|
|
static void dbEvalRowInfo(
|
|
|
|
DbEvalContext *p, /* Evaluation context */
|
|
|
|
int *pnCol, /* OUT: Number of column names */
|
|
|
|
Tcl_Obj ***papColName /* OUT: Array of column names */
|
|
|
|
){
|
2007-11-13 13:30:24 +03:00
|
|
|
/* Compute column names */
|
2009-10-06 18:59:02 +04:00
|
|
|
if( 0==p->apColName ){
|
|
|
|
sqlite3_stmt *pStmt = p->pPreStmt->pStmt;
|
|
|
|
int i; /* Iterator variable */
|
|
|
|
int nCol; /* Number of columns returned by pStmt */
|
|
|
|
Tcl_Obj **apColName = 0; /* Array of column names */
|
|
|
|
|
|
|
|
p->nCol = nCol = sqlite3_column_count(pStmt);
|
|
|
|
if( nCol>0 && (papColName || p->pArray) ){
|
|
|
|
apColName = (Tcl_Obj**)Tcl_Alloc( sizeof(Tcl_Obj*)*nCol );
|
|
|
|
for(i=0; i<nCol; i++){
|
2012-10-03 15:02:33 +04:00
|
|
|
apColName[i] = Tcl_NewStringObj(sqlite3_column_name(pStmt,i), -1);
|
2009-10-06 18:59:02 +04:00
|
|
|
Tcl_IncrRefCount(apColName[i]);
|
|
|
|
}
|
|
|
|
p->apColName = apColName;
|
2007-11-13 13:30:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If results are being stored in an array variable, then create
|
|
|
|
** the array(*) entry for that array
|
|
|
|
*/
|
2009-10-06 18:59:02 +04:00
|
|
|
if( p->pArray ){
|
|
|
|
Tcl_Interp *interp = p->pDb->interp;
|
2007-11-13 13:30:24 +03:00
|
|
|
Tcl_Obj *pColList = Tcl_NewObj();
|
|
|
|
Tcl_Obj *pStar = Tcl_NewStringObj("*", -1);
|
2009-10-06 18:59:02 +04:00
|
|
|
|
2007-11-13 13:30:24 +03:00
|
|
|
for(i=0; i<nCol; i++){
|
|
|
|
Tcl_ListObjAppendElement(interp, pColList, apColName[i]);
|
|
|
|
}
|
|
|
|
Tcl_IncrRefCount(pStar);
|
2009-10-06 18:59:02 +04:00
|
|
|
Tcl_ObjSetVar2(interp, p->pArray, pStar, pColList, 0);
|
2007-11-13 13:30:24 +03:00
|
|
|
Tcl_DecrRefCount(pStar);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-06 18:59:02 +04:00
|
|
|
if( papColName ){
|
|
|
|
*papColName = p->apColName;
|
|
|
|
}
|
|
|
|
if( pnCol ){
|
|
|
|
*pnCol = p->nCol;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Return one of TCL_OK, TCL_BREAK or TCL_ERROR. If TCL_ERROR is
|
|
|
|
** returned, then an error message is stored in the interpreter before
|
|
|
|
** returning.
|
|
|
|
**
|
|
|
|
** A return value of TCL_OK means there is a row of data available. The
|
|
|
|
** data may be accessed using dbEvalRowInfo() and dbEvalColumnValue(). This
|
|
|
|
** is analogous to a return of SQLITE_ROW from sqlite3_step(). If TCL_BREAK
|
|
|
|
** is returned, then the SQL script has finished executing and there are
|
|
|
|
** no further rows available. This is similar to SQLITE_DONE.
|
|
|
|
*/
|
|
|
|
static int dbEvalStep(DbEvalContext *p){
|
2011-06-27 20:55:50 +04:00
|
|
|
const char *zPrevSql = 0; /* Previous value of p->zSql */
|
|
|
|
|
2009-10-06 18:59:02 +04:00
|
|
|
while( p->zSql[0] || p->pPreStmt ){
|
|
|
|
int rc;
|
|
|
|
if( p->pPreStmt==0 ){
|
2011-06-27 20:55:50 +04:00
|
|
|
zPrevSql = (p->zSql==zPrevSql ? 0 : p->zSql);
|
2009-10-06 18:59:02 +04:00
|
|
|
rc = dbPrepareAndBind(p->pDb, p->zSql, &p->zSql, &p->pPreStmt);
|
|
|
|
if( rc!=TCL_OK ) return rc;
|
|
|
|
}else{
|
|
|
|
int rcs;
|
|
|
|
SqliteDb *pDb = p->pDb;
|
|
|
|
SqlPreparedStmt *pPreStmt = p->pPreStmt;
|
|
|
|
sqlite3_stmt *pStmt = pPreStmt->pStmt;
|
|
|
|
|
|
|
|
rcs = sqlite3_step(pStmt);
|
|
|
|
if( rcs==SQLITE_ROW ){
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
if( p->pArray ){
|
|
|
|
dbEvalRowInfo(p, 0, 0);
|
|
|
|
}
|
|
|
|
rcs = sqlite3_reset(pStmt);
|
|
|
|
|
|
|
|
pDb->nStep = sqlite3_stmt_status(pStmt,SQLITE_STMTSTATUS_FULLSCAN_STEP,1);
|
|
|
|
pDb->nSort = sqlite3_stmt_status(pStmt,SQLITE_STMTSTATUS_SORT,1);
|
2010-04-07 23:31:59 +04:00
|
|
|
pDb->nIndex = sqlite3_stmt_status(pStmt,SQLITE_STMTSTATUS_AUTOINDEX,1);
|
2009-10-06 18:59:02 +04:00
|
|
|
dbReleaseColumnNames(p);
|
|
|
|
p->pPreStmt = 0;
|
|
|
|
|
|
|
|
if( rcs!=SQLITE_OK ){
|
|
|
|
/* If a run-time error occurs, report the error and stop reading
|
|
|
|
** the SQL. */
|
|
|
|
dbReleaseStmt(pDb, pPreStmt, 1);
|
2011-06-27 20:55:50 +04:00
|
|
|
#if SQLITE_TEST
|
|
|
|
if( p->pDb->bLegacyPrepare && rcs==SQLITE_SCHEMA && zPrevSql ){
|
|
|
|
/* If the runtime error was an SQLITE_SCHEMA, and the database
|
|
|
|
** handle is configured to use the legacy sqlite3_prepare()
|
|
|
|
** interface, retry prepare()/step() on the same SQL statement.
|
|
|
|
** This only happens once. If there is a second SQLITE_SCHEMA
|
|
|
|
** error, the error will be returned to the caller. */
|
|
|
|
p->zSql = zPrevSql;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
2012-10-03 15:02:33 +04:00
|
|
|
Tcl_SetObjResult(pDb->interp,
|
|
|
|
Tcl_NewStringObj(sqlite3_errmsg(pDb->db), -1));
|
2009-10-06 18:59:02 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}else{
|
|
|
|
dbReleaseStmt(pDb, pPreStmt, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Finished */
|
|
|
|
return TCL_BREAK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Free all resources currently held by the DbEvalContext structure passed
|
|
|
|
** as the first argument. There should be exactly one call to this function
|
|
|
|
** for each call to dbEvalInit().
|
|
|
|
*/
|
|
|
|
static void dbEvalFinalize(DbEvalContext *p){
|
|
|
|
if( p->pPreStmt ){
|
|
|
|
sqlite3_reset(p->pPreStmt->pStmt);
|
|
|
|
dbReleaseStmt(p->pDb, p->pPreStmt, 0);
|
|
|
|
p->pPreStmt = 0;
|
|
|
|
}
|
|
|
|
if( p->pArray ){
|
|
|
|
Tcl_DecrRefCount(p->pArray);
|
|
|
|
p->pArray = 0;
|
|
|
|
}
|
|
|
|
Tcl_DecrRefCount(p->pSql);
|
|
|
|
dbReleaseColumnNames(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Return a pointer to a Tcl_Obj structure with ref-count 0 that contains
|
|
|
|
** the value for the iCol'th column of the row currently pointed to by
|
|
|
|
** the DbEvalContext structure passed as the first argument.
|
|
|
|
*/
|
|
|
|
static Tcl_Obj *dbEvalColumnValue(DbEvalContext *p, int iCol){
|
|
|
|
sqlite3_stmt *pStmt = p->pPreStmt->pStmt;
|
|
|
|
switch( sqlite3_column_type(pStmt, iCol) ){
|
|
|
|
case SQLITE_BLOB: {
|
|
|
|
int bytes = sqlite3_column_bytes(pStmt, iCol);
|
|
|
|
const char *zBlob = sqlite3_column_blob(pStmt, iCol);
|
|
|
|
if( !zBlob ) bytes = 0;
|
|
|
|
return Tcl_NewByteArrayObj((u8*)zBlob, bytes);
|
|
|
|
}
|
|
|
|
case SQLITE_INTEGER: {
|
|
|
|
sqlite_int64 v = sqlite3_column_int64(pStmt, iCol);
|
|
|
|
if( v>=-2147483647 && v<=2147483647 ){
|
2011-06-20 23:00:30 +04:00
|
|
|
return Tcl_NewIntObj((int)v);
|
2009-10-06 18:59:02 +04:00
|
|
|
}else{
|
|
|
|
return Tcl_NewWideIntObj(v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case SQLITE_FLOAT: {
|
|
|
|
return Tcl_NewDoubleObj(sqlite3_column_double(pStmt, iCol));
|
|
|
|
}
|
|
|
|
case SQLITE_NULL: {
|
2012-10-03 15:02:33 +04:00
|
|
|
return Tcl_NewStringObj(p->pDb->zNull, -1);
|
2009-10-06 18:59:02 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-03 16:56:18 +04:00
|
|
|
return Tcl_NewStringObj((char*)sqlite3_column_text(pStmt, iCol), -1);
|
2009-10-06 18:59:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** If using Tcl version 8.6 or greater, use the NR functions to avoid
|
|
|
|
** recursive evalution of scripts by the [db eval] and [db trans]
|
|
|
|
** commands. Even if the headers used while compiling the extension
|
|
|
|
** are 8.6 or newer, the code still tests the Tcl version at runtime.
|
|
|
|
** This allows stubs-enabled builds to be used with older Tcl libraries.
|
|
|
|
*/
|
|
|
|
#if TCL_MAJOR_VERSION>8 || (TCL_MAJOR_VERSION==8 && TCL_MINOR_VERSION>=6)
|
2009-10-13 22:38:34 +04:00
|
|
|
# define SQLITE_TCL_NRE 1
|
2009-10-06 18:59:02 +04:00
|
|
|
static int DbUseNre(void){
|
|
|
|
int major, minor;
|
|
|
|
Tcl_GetVersion(&major, &minor, 0, 0);
|
|
|
|
return( (major==8 && minor>=6) || major>8 );
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
/*
|
|
|
|
** Compiling using headers earlier than 8.6. In this case NR cannot be
|
|
|
|
** used, so DbUseNre() to always return zero. Add #defines for the other
|
|
|
|
** Tcl_NRxxx() functions to prevent them from causing compilation errors,
|
|
|
|
** even though the only invocations of them are within conditional blocks
|
|
|
|
** of the form:
|
|
|
|
**
|
|
|
|
** if( DbUseNre() ) { ... }
|
|
|
|
*/
|
2009-10-13 22:38:34 +04:00
|
|
|
# define SQLITE_TCL_NRE 0
|
2009-10-06 18:59:02 +04:00
|
|
|
# define DbUseNre() 0
|
2013-12-20 22:57:44 +04:00
|
|
|
# define Tcl_NRAddCallback(a,b,c,d,e,f) (void)0
|
2009-10-06 18:59:02 +04:00
|
|
|
# define Tcl_NREvalObj(a,b,c) 0
|
2013-12-20 22:57:44 +04:00
|
|
|
# define Tcl_NRCreateCommand(a,b,c,d,e,f) (void)0
|
2009-10-06 18:59:02 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This function is part of the implementation of the command:
|
|
|
|
**
|
|
|
|
** $db eval SQL ?ARRAYNAME? SCRIPT
|
|
|
|
*/
|
|
|
|
static int DbEvalNextCmd(
|
|
|
|
ClientData data[], /* data[0] is the (DbEvalContext*) */
|
|
|
|
Tcl_Interp *interp, /* Tcl interpreter */
|
|
|
|
int result /* Result so far */
|
|
|
|
){
|
|
|
|
int rc = result; /* Return code */
|
|
|
|
|
|
|
|
/* The first element of the data[] array is a pointer to a DbEvalContext
|
|
|
|
** structure allocated using Tcl_Alloc(). The second element of data[]
|
|
|
|
** is a pointer to a Tcl_Obj containing the script to run for each row
|
|
|
|
** returned by the queries encapsulated in data[0]. */
|
|
|
|
DbEvalContext *p = (DbEvalContext *)data[0];
|
|
|
|
Tcl_Obj *pScript = (Tcl_Obj *)data[1];
|
|
|
|
Tcl_Obj *pArray = p->pArray;
|
|
|
|
|
|
|
|
while( (rc==TCL_OK || rc==TCL_CONTINUE) && TCL_OK==(rc = dbEvalStep(p)) ){
|
|
|
|
int i;
|
|
|
|
int nCol;
|
|
|
|
Tcl_Obj **apColName;
|
|
|
|
dbEvalRowInfo(p, &nCol, &apColName);
|
|
|
|
for(i=0; i<nCol; i++){
|
|
|
|
Tcl_Obj *pVal = dbEvalColumnValue(p, i);
|
|
|
|
if( pArray==0 ){
|
|
|
|
Tcl_ObjSetVar2(interp, apColName[i], 0, pVal, 0);
|
|
|
|
}else{
|
|
|
|
Tcl_ObjSetVar2(interp, pArray, apColName[i], pVal, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The required interpreter variables are now populated with the data
|
|
|
|
** from the current row. If using NRE, schedule callbacks to evaluate
|
|
|
|
** script pScript, then to invoke this function again to fetch the next
|
|
|
|
** row (or clean up if there is no next row or the script throws an
|
|
|
|
** exception). After scheduling the callbacks, return control to the
|
|
|
|
** caller.
|
|
|
|
**
|
|
|
|
** If not using NRE, evaluate pScript directly and continue with the
|
|
|
|
** next iteration of this while(...) loop. */
|
|
|
|
if( DbUseNre() ){
|
|
|
|
Tcl_NRAddCallback(interp, DbEvalNextCmd, (void*)p, (void*)pScript, 0, 0);
|
|
|
|
return Tcl_NREvalObj(interp, pScript, 0);
|
|
|
|
}else{
|
|
|
|
rc = Tcl_EvalObjEx(interp, pScript, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Tcl_DecrRefCount(pScript);
|
|
|
|
dbEvalFinalize(p);
|
|
|
|
Tcl_Free((char *)p);
|
|
|
|
|
|
|
|
if( rc==TCL_OK || rc==TCL_BREAK ){
|
|
|
|
Tcl_ResetResult(interp);
|
|
|
|
rc = TCL_OK;
|
|
|
|
}
|
|
|
|
return rc;
|
2007-11-13 13:30:24 +03:00
|
|
|
}
|
|
|
|
|
2000-05-29 18:26:00 +04:00
|
|
|
/*
|
|
|
|
** The "sqlite" command below creates a new Tcl command for each
|
|
|
|
** connection it opens to an SQLite database. This routine is invoked
|
|
|
|
** whenever one of those connection-specific commands is executed
|
|
|
|
** in Tcl. For example, if you run Tcl code like this:
|
|
|
|
**
|
2004-09-06 21:24:11 +04:00
|
|
|
** sqlite3 db1 "my_database"
|
2000-05-29 18:26:00 +04:00
|
|
|
** db1 close
|
|
|
|
**
|
|
|
|
** The first command opens a connection to the "my_database" database
|
|
|
|
** and calls that connection "db1". The second command causes this
|
|
|
|
** subroutine to be invoked.
|
|
|
|
*/
|
2000-09-21 17:01:35 +04:00
|
|
|
static int DbObjCmd(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){
|
2000-08-04 17:49:02 +04:00
|
|
|
SqliteDb *pDb = (SqliteDb*)cd;
|
2000-09-21 17:01:35 +04:00
|
|
|
int choice;
|
2004-02-01 04:22:50 +03:00
|
|
|
int rc = TCL_OK;
|
2002-07-06 20:32:14 +04:00
|
|
|
static const char *DB_strs[] = {
|
2009-02-05 01:46:47 +03:00
|
|
|
"authorizer", "backup", "busy",
|
|
|
|
"cache", "changes", "close",
|
|
|
|
"collate", "collation_needed", "commit_hook",
|
|
|
|
"complete", "copy", "enable_load_extension",
|
|
|
|
"errorcode", "eval", "exists",
|
|
|
|
"function", "incrblob", "interrupt",
|
2010-04-28 18:42:19 +04:00
|
|
|
"last_insert_rowid", "nullvalue", "onecolumn",
|
|
|
|
"profile", "progress", "rekey",
|
|
|
|
"restore", "rollback_hook", "status",
|
|
|
|
"timeout", "total_changes", "trace",
|
|
|
|
"transaction", "unlock_notify", "update_hook",
|
|
|
|
"version", "wal_hook", 0
|
2000-09-21 17:01:35 +04:00
|
|
|
};
|
2002-06-25 23:31:18 +04:00
|
|
|
enum DB_enum {
|
2009-02-05 01:46:47 +03:00
|
|
|
DB_AUTHORIZER, DB_BACKUP, DB_BUSY,
|
|
|
|
DB_CACHE, DB_CHANGES, DB_CLOSE,
|
|
|
|
DB_COLLATE, DB_COLLATION_NEEDED, DB_COMMIT_HOOK,
|
|
|
|
DB_COMPLETE, DB_COPY, DB_ENABLE_LOAD_EXTENSION,
|
|
|
|
DB_ERRORCODE, DB_EVAL, DB_EXISTS,
|
|
|
|
DB_FUNCTION, DB_INCRBLOB, DB_INTERRUPT,
|
2010-04-28 18:42:19 +04:00
|
|
|
DB_LAST_INSERT_ROWID, DB_NULLVALUE, DB_ONECOLUMN,
|
|
|
|
DB_PROFILE, DB_PROGRESS, DB_REKEY,
|
|
|
|
DB_RESTORE, DB_ROLLBACK_HOOK, DB_STATUS,
|
|
|
|
DB_TIMEOUT, DB_TOTAL_CHANGES, DB_TRACE,
|
|
|
|
DB_TRANSACTION, DB_UNLOCK_NOTIFY, DB_UPDATE_HOOK,
|
|
|
|
DB_VERSION, DB_WAL_HOOK
|
2000-09-21 17:01:35 +04:00
|
|
|
};
|
2004-12-17 18:41:11 +03:00
|
|
|
/* don't leave trailing commas on DB_enum, it confuses the AIX xlc compiler */
|
2000-09-21 17:01:35 +04:00
|
|
|
|
|
|
|
if( objc<2 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 1, objv, "SUBCOMMAND ...");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2002-06-25 23:31:18 +04:00
|
|
|
if( Tcl_GetIndexFromObj(interp, objv[1], DB_strs, "option", 0, &choice) ){
|
2000-05-29 18:26:00 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2000-09-21 17:01:35 +04:00
|
|
|
|
2002-06-25 23:31:18 +04:00
|
|
|
switch( (enum DB_enum)choice ){
|
2000-05-29 18:26:00 +04:00
|
|
|
|
2003-04-23 00:30:37 +04:00
|
|
|
/* $db authorizer ?CALLBACK?
|
|
|
|
**
|
|
|
|
** Invoke the given callback to authorize each SQL operation as it is
|
|
|
|
** compiled. 5 arguments are appended to the callback before it is
|
|
|
|
** invoked:
|
|
|
|
**
|
|
|
|
** (1) The authorization type (ex: SQLITE_CREATE_TABLE, SQLITE_INSERT, ...)
|
|
|
|
** (2) First descriptive name (depends on authorization type)
|
|
|
|
** (3) Second descriptive name
|
|
|
|
** (4) Name of the database (ex: "main", "temp")
|
|
|
|
** (5) Name of trigger that is doing the access
|
|
|
|
**
|
|
|
|
** The callback should return on of the following strings: SQLITE_OK,
|
|
|
|
** SQLITE_IGNORE, or SQLITE_DENY. Any other return value is an error.
|
|
|
|
**
|
|
|
|
** If this method is invoked with no arguments, the current authorization
|
|
|
|
** callback string is returned.
|
|
|
|
*/
|
|
|
|
case DB_AUTHORIZER: {
|
2004-07-26 16:24:22 +04:00
|
|
|
#ifdef SQLITE_OMIT_AUTHORIZATION
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, "authorization not available in this build",
|
|
|
|
(char*)0);
|
2004-07-26 16:24:22 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
#else
|
2003-04-23 00:30:37 +04:00
|
|
|
if( objc>3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK?");
|
2004-06-29 16:39:08 +04:00
|
|
|
return TCL_ERROR;
|
2003-04-23 00:30:37 +04:00
|
|
|
}else if( objc==2 ){
|
2003-04-23 16:25:23 +04:00
|
|
|
if( pDb->zAuth ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, pDb->zAuth, (char*)0);
|
2003-04-23 00:30:37 +04:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
char *zAuth;
|
|
|
|
int len;
|
|
|
|
if( pDb->zAuth ){
|
|
|
|
Tcl_Free(pDb->zAuth);
|
|
|
|
}
|
|
|
|
zAuth = Tcl_GetStringFromObj(objv[2], &len);
|
|
|
|
if( zAuth && len>0 ){
|
|
|
|
pDb->zAuth = Tcl_Alloc( len + 1 );
|
2007-05-04 17:15:55 +04:00
|
|
|
memcpy(pDb->zAuth, zAuth, len+1);
|
2003-04-23 00:30:37 +04:00
|
|
|
}else{
|
|
|
|
pDb->zAuth = 0;
|
|
|
|
}
|
|
|
|
if( pDb->zAuth ){
|
2014-09-11 17:44:52 +04:00
|
|
|
typedef int (*sqlite3_auth_cb)(
|
|
|
|
void*,int,const char*,const char*,
|
|
|
|
const char*,const char*);
|
2003-04-23 00:30:37 +04:00
|
|
|
pDb->interp = interp;
|
2014-09-11 17:44:52 +04:00
|
|
|
sqlite3_set_authorizer(pDb->db,(sqlite3_auth_cb)auth_callback,pDb);
|
2003-04-23 00:30:37 +04:00
|
|
|
}else{
|
2004-05-10 14:34:51 +04:00
|
|
|
sqlite3_set_authorizer(pDb->db, 0, 0);
|
2003-04-23 00:30:37 +04:00
|
|
|
}
|
|
|
|
}
|
2004-07-26 16:24:22 +04:00
|
|
|
#endif
|
2003-04-23 00:30:37 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-02-05 01:46:47 +03:00
|
|
|
/* $db backup ?DATABASE? FILENAME
|
|
|
|
**
|
|
|
|
** Open or create a database file named FILENAME. Transfer the
|
|
|
|
** content of local database DATABASE (default: "main") into the
|
|
|
|
** FILENAME database.
|
|
|
|
*/
|
|
|
|
case DB_BACKUP: {
|
|
|
|
const char *zDestFile;
|
|
|
|
const char *zSrcDb;
|
|
|
|
sqlite3 *pDest;
|
|
|
|
sqlite3_backup *pBackup;
|
|
|
|
|
|
|
|
if( objc==3 ){
|
|
|
|
zSrcDb = "main";
|
|
|
|
zDestFile = Tcl_GetString(objv[2]);
|
|
|
|
}else if( objc==4 ){
|
|
|
|
zSrcDb = Tcl_GetString(objv[2]);
|
|
|
|
zDestFile = Tcl_GetString(objv[3]);
|
|
|
|
}else{
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "?DATABASE? FILENAME");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
rc = sqlite3_open(zDestFile, &pDest);
|
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
Tcl_AppendResult(interp, "cannot open target database: ",
|
|
|
|
sqlite3_errmsg(pDest), (char*)0);
|
|
|
|
sqlite3_close(pDest);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
pBackup = sqlite3_backup_init(pDest, "main", pDb->db, zSrcDb);
|
|
|
|
if( pBackup==0 ){
|
|
|
|
Tcl_AppendResult(interp, "backup failed: ",
|
|
|
|
sqlite3_errmsg(pDest), (char*)0);
|
|
|
|
sqlite3_close(pDest);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK ){}
|
|
|
|
sqlite3_backup_finish(pBackup);
|
|
|
|
if( rc==SQLITE_DONE ){
|
|
|
|
rc = TCL_OK;
|
|
|
|
}else{
|
|
|
|
Tcl_AppendResult(interp, "backup failed: ",
|
|
|
|
sqlite3_errmsg(pDest), (char*)0);
|
|
|
|
rc = TCL_ERROR;
|
|
|
|
}
|
|
|
|
sqlite3_close(pDest);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-08-04 17:49:02 +04:00
|
|
|
/* $db busy ?CALLBACK?
|
|
|
|
**
|
|
|
|
** Invoke the given callback if an SQL statement attempts to open
|
|
|
|
** a locked database file.
|
|
|
|
*/
|
2000-09-21 17:01:35 +04:00
|
|
|
case DB_BUSY: {
|
|
|
|
if( objc>3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "CALLBACK");
|
2000-08-04 17:49:02 +04:00
|
|
|
return TCL_ERROR;
|
2000-09-21 17:01:35 +04:00
|
|
|
}else if( objc==2 ){
|
2000-08-04 17:49:02 +04:00
|
|
|
if( pDb->zBusy ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, pDb->zBusy, (char*)0);
|
2000-08-04 17:49:02 +04:00
|
|
|
}
|
|
|
|
}else{
|
2000-09-21 17:01:35 +04:00
|
|
|
char *zBusy;
|
|
|
|
int len;
|
2000-08-04 17:49:02 +04:00
|
|
|
if( pDb->zBusy ){
|
|
|
|
Tcl_Free(pDb->zBusy);
|
|
|
|
}
|
2000-09-21 17:01:35 +04:00
|
|
|
zBusy = Tcl_GetStringFromObj(objv[2], &len);
|
|
|
|
if( zBusy && len>0 ){
|
|
|
|
pDb->zBusy = Tcl_Alloc( len + 1 );
|
2007-05-04 17:15:55 +04:00
|
|
|
memcpy(pDb->zBusy, zBusy, len+1);
|
2000-09-21 17:01:35 +04:00
|
|
|
}else{
|
|
|
|
pDb->zBusy = 0;
|
2000-08-04 17:49:02 +04:00
|
|
|
}
|
|
|
|
if( pDb->zBusy ){
|
|
|
|
pDb->interp = interp;
|
2004-05-10 14:34:51 +04:00
|
|
|
sqlite3_busy_handler(pDb->db, DbBusyHandler, pDb);
|
2000-09-21 17:01:35 +04:00
|
|
|
}else{
|
2004-05-10 14:34:51 +04:00
|
|
|
sqlite3_busy_handler(pDb->db, 0, 0);
|
2000-08-04 17:49:02 +04:00
|
|
|
}
|
|
|
|
}
|
2000-09-21 17:01:35 +04:00
|
|
|
break;
|
|
|
|
}
|
2000-08-04 17:49:02 +04:00
|
|
|
|
2005-01-24 03:28:42 +03:00
|
|
|
/* $db cache flush
|
|
|
|
** $db cache size n
|
|
|
|
**
|
|
|
|
** Flush the prepared statement cache, or set the maximum number of
|
|
|
|
** cached statements.
|
|
|
|
*/
|
|
|
|
case DB_CACHE: {
|
|
|
|
char *subCmd;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if( objc<=2 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 1, objv, "cache option ?arg?");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
subCmd = Tcl_GetStringFromObj( objv[2], 0 );
|
|
|
|
if( *subCmd=='f' && strcmp(subCmd,"flush")==0 ){
|
|
|
|
if( objc!=3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "flush");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}else{
|
|
|
|
flushStmtCache( pDb );
|
|
|
|
}
|
|
|
|
}else if( *subCmd=='s' && strcmp(subCmd,"size")==0 ){
|
|
|
|
if( objc!=4 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "size n");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}else{
|
|
|
|
if( TCL_ERROR==Tcl_GetIntFromObj(interp, objv[3], &n) ){
|
|
|
|
Tcl_AppendResult( interp, "cannot convert \"",
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_GetStringFromObj(objv[3],0), "\" to integer", (char*)0);
|
2005-01-24 03:28:42 +03:00
|
|
|
return TCL_ERROR;
|
|
|
|
}else{
|
|
|
|
if( n<0 ){
|
|
|
|
flushStmtCache( pDb );
|
|
|
|
n = 0;
|
|
|
|
}else if( n>MAX_PREPARED_STMTS ){
|
|
|
|
n = MAX_PREPARED_STMTS;
|
|
|
|
}
|
|
|
|
pDb->maxStmt = n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
Tcl_AppendResult( interp, "bad option \"",
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_GetStringFromObj(objv[2],0), "\": must be flush or size",
|
|
|
|
(char*)0);
|
2005-01-24 03:28:42 +03:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2004-06-21 10:50:26 +04:00
|
|
|
/* $db changes
|
2002-04-12 14:08:59 +04:00
|
|
|
**
|
|
|
|
** Return the number of rows that were modified, inserted, or deleted by
|
2004-06-21 10:50:26 +04:00
|
|
|
** the most recent INSERT, UPDATE or DELETE statement, not including
|
|
|
|
** any changes made by trigger programs.
|
2002-04-12 14:08:59 +04:00
|
|
|
*/
|
|
|
|
case DB_CHANGES: {
|
|
|
|
Tcl_Obj *pResult;
|
2004-02-26 01:51:06 +03:00
|
|
|
if( objc!=2 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
pResult = Tcl_GetObjResult(interp);
|
2004-06-21 10:50:26 +04:00
|
|
|
Tcl_SetIntObj(pResult, sqlite3_changes(pDb->db));
|
2004-02-26 01:51:06 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-05-29 18:26:00 +04:00
|
|
|
/* $db close
|
|
|
|
**
|
|
|
|
** Shutdown the database
|
|
|
|
*/
|
2000-09-21 17:01:35 +04:00
|
|
|
case DB_CLOSE: {
|
|
|
|
Tcl_DeleteCommand(interp, Tcl_GetStringFromObj(objv[0], 0));
|
|
|
|
break;
|
|
|
|
}
|
2000-05-29 18:26:00 +04:00
|
|
|
|
2004-06-29 16:39:08 +04:00
|
|
|
/*
|
|
|
|
** $db collate NAME SCRIPT
|
|
|
|
**
|
|
|
|
** Create a new SQL collation function called NAME. Whenever
|
|
|
|
** that function is called, invoke SCRIPT to evaluate the function.
|
|
|
|
*/
|
|
|
|
case DB_COLLATE: {
|
|
|
|
SqlCollate *pCollate;
|
|
|
|
char *zName;
|
|
|
|
char *zScript;
|
|
|
|
int nScript;
|
|
|
|
if( objc!=4 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "NAME SCRIPT");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
zName = Tcl_GetStringFromObj(objv[2], 0);
|
|
|
|
zScript = Tcl_GetStringFromObj(objv[3], &nScript);
|
|
|
|
pCollate = (SqlCollate*)Tcl_Alloc( sizeof(*pCollate) + nScript + 1 );
|
|
|
|
if( pCollate==0 ) return TCL_ERROR;
|
|
|
|
pCollate->interp = interp;
|
|
|
|
pCollate->pNext = pDb->pCollate;
|
|
|
|
pCollate->zScript = (char*)&pCollate[1];
|
|
|
|
pDb->pCollate = pCollate;
|
2007-05-04 17:15:55 +04:00
|
|
|
memcpy(pCollate->zScript, zScript, nScript+1);
|
2004-06-29 16:39:08 +04:00
|
|
|
if( sqlite3_create_collation(pDb->db, zName, SQLITE_UTF8,
|
|
|
|
pCollate, tclSqlCollate) ){
|
2005-01-25 07:27:54 +03:00
|
|
|
Tcl_SetResult(interp, (char *)sqlite3_errmsg(pDb->db), TCL_VOLATILE);
|
2004-06-29 16:39:08 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** $db collation_needed SCRIPT
|
|
|
|
**
|
|
|
|
** Create a new SQL collation function called NAME. Whenever
|
|
|
|
** that function is called, invoke SCRIPT to evaluate the function.
|
|
|
|
*/
|
|
|
|
case DB_COLLATION_NEEDED: {
|
|
|
|
if( objc!=3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "SCRIPT");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if( pDb->pCollateNeeded ){
|
|
|
|
Tcl_DecrRefCount(pDb->pCollateNeeded);
|
|
|
|
}
|
|
|
|
pDb->pCollateNeeded = Tcl_DuplicateObj(objv[2]);
|
|
|
|
Tcl_IncrRefCount(pDb->pCollateNeeded);
|
|
|
|
sqlite3_collation_needed(pDb->db, pDb, tclCollateNeeded);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-30 03:00:03 +04:00
|
|
|
/* $db commit_hook ?CALLBACK?
|
|
|
|
**
|
|
|
|
** Invoke the given callback just before committing every SQL transaction.
|
|
|
|
** If the callback throws an exception or returns non-zero, then the
|
|
|
|
** transaction is aborted. If CALLBACK is an empty string, the callback
|
|
|
|
** is disabled.
|
|
|
|
*/
|
|
|
|
case DB_COMMIT_HOOK: {
|
|
|
|
if( objc>3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK?");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}else if( objc==2 ){
|
|
|
|
if( pDb->zCommit ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, pDb->zCommit, (char*)0);
|
2005-08-30 03:00:03 +04:00
|
|
|
}
|
|
|
|
}else{
|
2014-01-24 21:03:55 +04:00
|
|
|
const char *zCommit;
|
2005-08-30 03:00:03 +04:00
|
|
|
int len;
|
|
|
|
if( pDb->zCommit ){
|
|
|
|
Tcl_Free(pDb->zCommit);
|
|
|
|
}
|
|
|
|
zCommit = Tcl_GetStringFromObj(objv[2], &len);
|
|
|
|
if( zCommit && len>0 ){
|
|
|
|
pDb->zCommit = Tcl_Alloc( len + 1 );
|
2007-05-04 17:15:55 +04:00
|
|
|
memcpy(pDb->zCommit, zCommit, len+1);
|
2005-08-30 03:00:03 +04:00
|
|
|
}else{
|
|
|
|
pDb->zCommit = 0;
|
|
|
|
}
|
|
|
|
if( pDb->zCommit ){
|
|
|
|
pDb->interp = interp;
|
|
|
|
sqlite3_commit_hook(pDb->db, DbCommitHandler, pDb);
|
|
|
|
}else{
|
|
|
|
sqlite3_commit_hook(pDb->db, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-05-29 18:26:00 +04:00
|
|
|
/* $db complete SQL
|
|
|
|
**
|
|
|
|
** Return TRUE if SQL is a complete SQL statement. Return FALSE if
|
|
|
|
** additional lines of input are needed. This is similar to the
|
|
|
|
** built-in "info complete" command of Tcl.
|
|
|
|
*/
|
2000-09-21 17:01:35 +04:00
|
|
|
case DB_COMPLETE: {
|
2005-02-26 20:31:26 +03:00
|
|
|
#ifndef SQLITE_OMIT_COMPLETE
|
2000-09-21 17:01:35 +04:00
|
|
|
Tcl_Obj *pResult;
|
|
|
|
int isComplete;
|
|
|
|
if( objc!=3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "SQL");
|
2000-05-29 18:26:00 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2004-05-10 14:34:51 +04:00
|
|
|
isComplete = sqlite3_complete( Tcl_GetStringFromObj(objv[2], 0) );
|
2000-09-21 17:01:35 +04:00
|
|
|
pResult = Tcl_GetObjResult(interp);
|
|
|
|
Tcl_SetBooleanObj(pResult, isComplete);
|
2005-02-26 20:31:26 +03:00
|
|
|
#endif
|
2000-09-21 17:01:35 +04:00
|
|
|
break;
|
|
|
|
}
|
2003-01-31 20:21:49 +03:00
|
|
|
|
2005-08-30 03:00:03 +04:00
|
|
|
/* $db copy conflict-algorithm table filename ?SEPARATOR? ?NULLINDICATOR?
|
2003-01-31 20:21:49 +03:00
|
|
|
**
|
2005-08-30 03:00:03 +04:00
|
|
|
** Copy data into table from filename, optionally using SEPARATOR
|
|
|
|
** as column separators. If a column contains a null string, or the
|
|
|
|
** value of NULLINDICATOR, a NULL is inserted for the column.
|
|
|
|
** conflict-algorithm is one of the sqlite conflict algorithms:
|
|
|
|
** rollback, abort, fail, ignore, replace
|
|
|
|
** On success, return the number of lines processed, not necessarily same
|
|
|
|
** as 'db changes' due to conflict-algorithm selected.
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
2005-08-30 03:00:03 +04:00
|
|
|
** This code is basically an implementation/enhancement of
|
|
|
|
** the sqlite3 shell.c ".import" command.
|
2004-09-07 17:20:35 +04:00
|
|
|
**
|
2005-08-30 03:00:03 +04:00
|
|
|
** This command usage is equivalent to the sqlite2.x COPY statement,
|
|
|
|
** which imports file data into a table using the PostgreSQL COPY file format:
|
|
|
|
** $db copy $conflit_algo $table_name $filename \t \\N
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
2005-08-30 03:00:03 +04:00
|
|
|
case DB_COPY: {
|
|
|
|
char *zTable; /* Insert data into this table */
|
|
|
|
char *zFile; /* The file from which to extract data */
|
|
|
|
char *zConflict; /* The conflict algorithm to use */
|
|
|
|
sqlite3_stmt *pStmt; /* A statement */
|
|
|
|
int nCol; /* Number of columns in the table */
|
|
|
|
int nByte; /* Number of bytes in an SQL string */
|
|
|
|
int i, j; /* Loop counters */
|
|
|
|
int nSep; /* Number of bytes in zSep[] */
|
|
|
|
int nNull; /* Number of bytes in zNull[] */
|
|
|
|
char *zSql; /* An SQL statement */
|
|
|
|
char *zLine; /* A single line of input from the file */
|
|
|
|
char **azCol; /* zLine[] broken up into columns */
|
2014-01-24 21:03:55 +04:00
|
|
|
const char *zCommit; /* How to commit changes */
|
2005-08-30 03:00:03 +04:00
|
|
|
FILE *in; /* The input file */
|
|
|
|
int lineno = 0; /* Line number of input file */
|
|
|
|
char zLineNum[80]; /* Line number print buffer */
|
|
|
|
Tcl_Obj *pResult; /* interp result */
|
2004-05-29 06:37:19 +04:00
|
|
|
|
2014-01-24 21:03:55 +04:00
|
|
|
const char *zSep;
|
|
|
|
const char *zNull;
|
2005-08-30 03:00:03 +04:00
|
|
|
if( objc<5 || objc>7 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv,
|
|
|
|
"CONFLICT-ALGORITHM TABLE FILENAME ?SEPARATOR? ?NULLINDICATOR?");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if( objc>=6 ){
|
|
|
|
zSep = Tcl_GetStringFromObj(objv[5], 0);
|
2004-09-07 17:20:35 +04:00
|
|
|
}else{
|
2005-08-30 03:00:03 +04:00
|
|
|
zSep = "\t";
|
2004-05-27 16:11:31 +04:00
|
|
|
}
|
2005-08-30 03:00:03 +04:00
|
|
|
if( objc>=7 ){
|
|
|
|
zNull = Tcl_GetStringFromObj(objv[6], 0);
|
2004-08-20 22:34:20 +04:00
|
|
|
}else{
|
2005-08-30 03:00:03 +04:00
|
|
|
zNull = "";
|
2004-08-20 22:34:20 +04:00
|
|
|
}
|
2005-08-30 03:00:03 +04:00
|
|
|
zConflict = Tcl_GetStringFromObj(objv[2], 0);
|
|
|
|
zTable = Tcl_GetStringFromObj(objv[3], 0);
|
|
|
|
zFile = Tcl_GetStringFromObj(objv[4], 0);
|
2008-12-11 01:15:00 +03:00
|
|
|
nSep = strlen30(zSep);
|
|
|
|
nNull = strlen30(zNull);
|
2005-08-30 03:00:03 +04:00
|
|
|
if( nSep==0 ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp,"Error: non-null separator required for copy",
|
|
|
|
(char*)0);
|
2005-08-30 03:00:03 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2008-09-23 14:12:13 +04:00
|
|
|
if(strcmp(zConflict, "rollback") != 0 &&
|
|
|
|
strcmp(zConflict, "abort" ) != 0 &&
|
|
|
|
strcmp(zConflict, "fail" ) != 0 &&
|
|
|
|
strcmp(zConflict, "ignore" ) != 0 &&
|
|
|
|
strcmp(zConflict, "replace" ) != 0 ) {
|
2005-08-30 03:00:03 +04:00
|
|
|
Tcl_AppendResult(interp, "Error: \"", zConflict,
|
|
|
|
"\", conflict-algorithm must be one of: rollback, "
|
2014-02-07 23:26:13 +04:00
|
|
|
"abort, fail, ignore, or replace", (char*)0);
|
2005-08-30 03:00:03 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
zSql = sqlite3_mprintf("SELECT * FROM '%q'", zTable);
|
|
|
|
if( zSql==0 ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, "Error: no such table: ", zTable, (char*)0);
|
2005-08-30 03:00:03 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2008-12-11 01:15:00 +03:00
|
|
|
nByte = strlen30(zSql);
|
2007-02-01 04:53:44 +03:00
|
|
|
rc = sqlite3_prepare(pDb->db, zSql, -1, &pStmt, 0);
|
2005-08-30 03:00:03 +04:00
|
|
|
sqlite3_free(zSql);
|
|
|
|
if( rc ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, "Error: ", sqlite3_errmsg(pDb->db), (char*)0);
|
2005-08-30 03:00:03 +04:00
|
|
|
nCol = 0;
|
|
|
|
}else{
|
|
|
|
nCol = sqlite3_column_count(pStmt);
|
|
|
|
}
|
|
|
|
sqlite3_finalize(pStmt);
|
|
|
|
if( nCol==0 ) {
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
zSql = malloc( nByte + 50 + nCol*2 );
|
|
|
|
if( zSql==0 ) {
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, "Error: can't malloc()", (char*)0);
|
2005-08-30 03:00:03 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
sqlite3_snprintf(nByte+50, zSql, "INSERT OR %q INTO '%q' VALUES(?",
|
|
|
|
zConflict, zTable);
|
2008-12-11 01:15:00 +03:00
|
|
|
j = strlen30(zSql);
|
2005-08-30 03:00:03 +04:00
|
|
|
for(i=1; i<nCol; i++){
|
|
|
|
zSql[j++] = ',';
|
|
|
|
zSql[j++] = '?';
|
|
|
|
}
|
|
|
|
zSql[j++] = ')';
|
|
|
|
zSql[j] = 0;
|
2007-02-01 04:53:44 +03:00
|
|
|
rc = sqlite3_prepare(pDb->db, zSql, -1, &pStmt, 0);
|
2005-08-30 03:00:03 +04:00
|
|
|
free(zSql);
|
|
|
|
if( rc ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, "Error: ", sqlite3_errmsg(pDb->db), (char*)0);
|
2005-08-30 03:00:03 +04:00
|
|
|
sqlite3_finalize(pStmt);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
in = fopen(zFile, "rb");
|
|
|
|
if( in==0 ){
|
|
|
|
Tcl_AppendResult(interp, "Error: cannot open file: ", zFile, NULL);
|
|
|
|
sqlite3_finalize(pStmt);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
azCol = malloc( sizeof(azCol[0])*(nCol+1) );
|
|
|
|
if( azCol==0 ) {
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, "Error: can't malloc()", (char*)0);
|
2006-03-06 23:55:46 +03:00
|
|
|
fclose(in);
|
2005-08-30 03:00:03 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2006-03-16 19:19:56 +03:00
|
|
|
(void)sqlite3_exec(pDb->db, "BEGIN", 0, 0, 0);
|
2005-08-30 03:00:03 +04:00
|
|
|
zCommit = "COMMIT";
|
|
|
|
while( (zLine = local_getline(0, in))!=0 ){
|
|
|
|
char *z;
|
|
|
|
lineno++;
|
|
|
|
azCol[0] = zLine;
|
|
|
|
for(i=0, z=zLine; *z; z++){
|
|
|
|
if( *z==zSep[0] && strncmp(z, zSep, nSep)==0 ){
|
|
|
|
*z = 0;
|
|
|
|
i++;
|
|
|
|
if( i<nCol ){
|
|
|
|
azCol[i] = &z[nSep];
|
|
|
|
z += nSep-1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( i+1!=nCol ){
|
|
|
|
char *zErr;
|
2008-12-11 01:15:00 +03:00
|
|
|
int nErr = strlen30(zFile) + 200;
|
2007-05-04 17:15:55 +04:00
|
|
|
zErr = malloc(nErr);
|
2006-05-10 18:39:13 +04:00
|
|
|
if( zErr ){
|
2007-05-04 17:15:55 +04:00
|
|
|
sqlite3_snprintf(nErr, zErr,
|
2006-05-10 18:39:13 +04:00
|
|
|
"Error: %s line %d: expected %d columns of data but found %d",
|
|
|
|
zFile, lineno, nCol, i+1);
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, zErr, (char*)0);
|
2006-05-10 18:39:13 +04:00
|
|
|
free(zErr);
|
|
|
|
}
|
2005-08-30 03:00:03 +04:00
|
|
|
zCommit = "ROLLBACK";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for(i=0; i<nCol; i++){
|
|
|
|
/* check for null data, if so, bind as null */
|
2008-12-10 22:26:22 +03:00
|
|
|
if( (nNull>0 && strcmp(azCol[i], zNull)==0)
|
2008-12-11 01:15:00 +03:00
|
|
|
|| strlen30(azCol[i])==0
|
2008-12-10 22:26:22 +03:00
|
|
|
){
|
2005-08-30 03:00:03 +04:00
|
|
|
sqlite3_bind_null(pStmt, i+1);
|
|
|
|
}else{
|
|
|
|
sqlite3_bind_text(pStmt, i+1, azCol[i], -1, SQLITE_STATIC);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sqlite3_step(pStmt);
|
|
|
|
rc = sqlite3_reset(pStmt);
|
|
|
|
free(zLine);
|
|
|
|
if( rc!=SQLITE_OK ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp,"Error: ", sqlite3_errmsg(pDb->db), (char*)0);
|
2005-08-30 03:00:03 +04:00
|
|
|
zCommit = "ROLLBACK";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(azCol);
|
|
|
|
fclose(in);
|
|
|
|
sqlite3_finalize(pStmt);
|
2006-03-16 19:19:56 +03:00
|
|
|
(void)sqlite3_exec(pDb->db, zCommit, 0, 0, 0);
|
2005-08-30 03:00:03 +04:00
|
|
|
|
|
|
|
if( zCommit[0] == 'C' ){
|
|
|
|
/* success, set result as number of lines processed */
|
|
|
|
pResult = Tcl_GetObjResult(interp);
|
|
|
|
Tcl_SetIntObj(pResult, lineno);
|
|
|
|
rc = TCL_OK;
|
|
|
|
}else{
|
|
|
|
/* failure, append lineno where failed */
|
2007-05-04 17:15:55 +04:00
|
|
|
sqlite3_snprintf(sizeof(zLineNum), zLineNum,"%d",lineno);
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp,", failed while processing line: ",zLineNum,
|
|
|
|
(char*)0);
|
2005-08-30 03:00:03 +04:00
|
|
|
rc = TCL_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-07-06 21:08:48 +04:00
|
|
|
/*
|
|
|
|
** $db enable_load_extension BOOLEAN
|
|
|
|
**
|
|
|
|
** Turn the extension loading feature on or off. It if off by
|
|
|
|
** default.
|
|
|
|
*/
|
|
|
|
case DB_ENABLE_LOAD_EXTENSION: {
|
2006-12-19 21:57:11 +03:00
|
|
|
#ifndef SQLITE_OMIT_LOAD_EXTENSION
|
2006-07-06 21:08:48 +04:00
|
|
|
int onoff;
|
|
|
|
if( objc!=3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "BOOLEAN");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if( Tcl_GetBooleanFromObj(interp, objv[2], &onoff) ){
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
sqlite3_enable_load_extension(pDb->db, onoff);
|
|
|
|
break;
|
2006-12-19 21:57:11 +03:00
|
|
|
#else
|
|
|
|
Tcl_AppendResult(interp, "extension loading is turned off at compile-time",
|
2014-02-07 23:26:13 +04:00
|
|
|
(char*)0);
|
2006-12-19 21:57:11 +03:00
|
|
|
return TCL_ERROR;
|
|
|
|
#endif
|
2006-07-06 21:08:48 +04:00
|
|
|
}
|
|
|
|
|
2005-08-30 03:00:03 +04:00
|
|
|
/*
|
|
|
|
** $db errorcode
|
|
|
|
**
|
|
|
|
** Return the numeric error code that was returned by the most recent
|
|
|
|
** call to sqlite3_exec().
|
|
|
|
*/
|
|
|
|
case DB_ERRORCODE: {
|
|
|
|
Tcl_SetObjResult(interp, Tcl_NewIntObj(sqlite3_errcode(pDb->db)));
|
|
|
|
break;
|
|
|
|
}
|
2009-10-06 18:59:02 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** $db exists $sql
|
|
|
|
** $db onecolumn $sql
|
|
|
|
**
|
|
|
|
** The onecolumn method is the equivalent of:
|
|
|
|
** lindex [$db eval $sql] 0
|
|
|
|
*/
|
|
|
|
case DB_EXISTS:
|
|
|
|
case DB_ONECOLUMN: {
|
|
|
|
DbEvalContext sEval;
|
|
|
|
if( objc!=3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "SQL");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
dbEvalInit(&sEval, pDb, objv[2], 0);
|
|
|
|
rc = dbEvalStep(&sEval);
|
|
|
|
if( choice==DB_ONECOLUMN ){
|
|
|
|
if( rc==TCL_OK ){
|
|
|
|
Tcl_SetObjResult(interp, dbEvalColumnValue(&sEval, 0));
|
2011-08-18 21:47:57 +04:00
|
|
|
}else if( rc==TCL_BREAK ){
|
|
|
|
Tcl_ResetResult(interp);
|
2009-10-06 18:59:02 +04:00
|
|
|
}
|
|
|
|
}else if( rc==TCL_BREAK || rc==TCL_OK ){
|
|
|
|
Tcl_SetObjResult(interp, Tcl_NewBooleanObj(rc==TCL_OK));
|
|
|
|
}
|
|
|
|
dbEvalFinalize(&sEval);
|
|
|
|
|
|
|
|
if( rc==TCL_BREAK ){
|
|
|
|
rc = TCL_OK;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-08-30 03:00:03 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** $db eval $sql ?array? ?{ ...code... }?
|
|
|
|
**
|
|
|
|
** The SQL statement in $sql is evaluated. For each row, the values are
|
|
|
|
** placed in elements of the array named "array" and ...code... is executed.
|
|
|
|
** If "array" and "code" are omitted, then no callback is every invoked.
|
|
|
|
** If "array" is an empty string, then the values are placed in variables
|
|
|
|
** that have the same name as the fields extracted by the query.
|
|
|
|
*/
|
2009-10-06 18:59:02 +04:00
|
|
|
case DB_EVAL: {
|
|
|
|
if( objc<3 || objc>5 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "SQL ?ARRAY-NAME? ?SCRIPT?");
|
|
|
|
return TCL_ERROR;
|
2005-08-30 03:00:03 +04:00
|
|
|
}
|
2007-11-13 13:30:24 +03:00
|
|
|
|
2009-10-06 18:59:02 +04:00
|
|
|
if( objc==3 ){
|
|
|
|
DbEvalContext sEval;
|
|
|
|
Tcl_Obj *pRet = Tcl_NewObj();
|
|
|
|
Tcl_IncrRefCount(pRet);
|
|
|
|
dbEvalInit(&sEval, pDb, objv[2], 0);
|
|
|
|
while( TCL_OK==(rc = dbEvalStep(&sEval)) ){
|
|
|
|
int i;
|
|
|
|
int nCol;
|
|
|
|
dbEvalRowInfo(&sEval, &nCol, 0);
|
2004-08-20 22:34:20 +04:00
|
|
|
for(i=0; i<nCol; i++){
|
2009-10-06 18:59:02 +04:00
|
|
|
Tcl_ListObjAppendElement(interp, pRet, dbEvalColumnValue(&sEval, i));
|
2004-05-27 16:11:31 +04:00
|
|
|
}
|
|
|
|
}
|
2009-10-06 18:59:02 +04:00
|
|
|
dbEvalFinalize(&sEval);
|
2004-09-13 17:16:31 +04:00
|
|
|
if( rc==TCL_BREAK ){
|
2009-10-06 18:59:02 +04:00
|
|
|
Tcl_SetObjResult(interp, pRet);
|
2004-09-13 17:16:31 +04:00
|
|
|
rc = TCL_OK;
|
|
|
|
}
|
2009-10-06 18:59:02 +04:00
|
|
|
Tcl_DecrRefCount(pRet);
|
|
|
|
}else{
|
|
|
|
ClientData cd[2];
|
|
|
|
DbEvalContext *p;
|
|
|
|
Tcl_Obj *pArray = 0;
|
|
|
|
Tcl_Obj *pScript;
|
2004-08-20 22:34:20 +04:00
|
|
|
|
2009-10-06 18:59:02 +04:00
|
|
|
if( objc==5 && *(char *)Tcl_GetString(objv[3]) ){
|
|
|
|
pArray = objv[3];
|
2004-05-27 16:11:31 +04:00
|
|
|
}
|
2009-10-06 18:59:02 +04:00
|
|
|
pScript = objv[objc-1];
|
|
|
|
Tcl_IncrRefCount(pScript);
|
|
|
|
|
|
|
|
p = (DbEvalContext *)Tcl_Alloc(sizeof(DbEvalContext));
|
|
|
|
dbEvalInit(p, pDb, objv[2], pArray);
|
2004-05-27 16:11:31 +04:00
|
|
|
|
2009-10-06 18:59:02 +04:00
|
|
|
cd[0] = (void *)p;
|
|
|
|
cd[1] = (void *)pScript;
|
|
|
|
rc = DbEvalNextCmd(cd, interp, TCL_OK);
|
2004-05-27 16:11:31 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2000-08-04 17:49:02 +04:00
|
|
|
|
2002-09-14 17:47:32 +04:00
|
|
|
/*
|
2008-09-09 16:31:33 +04:00
|
|
|
** $db function NAME [-argcount N] SCRIPT
|
2002-09-14 17:47:32 +04:00
|
|
|
**
|
|
|
|
** Create a new SQL function called NAME. Whenever that function is
|
|
|
|
** called, invoke SCRIPT to evaluate the function.
|
|
|
|
*/
|
|
|
|
case DB_FUNCTION: {
|
|
|
|
SqlFunc *pFunc;
|
2005-06-26 21:55:33 +04:00
|
|
|
Tcl_Obj *pScript;
|
2002-09-14 17:47:32 +04:00
|
|
|
char *zName;
|
2008-09-09 16:31:33 +04:00
|
|
|
int nArg = -1;
|
|
|
|
if( objc==6 ){
|
|
|
|
const char *z = Tcl_GetString(objv[3]);
|
2008-12-11 01:15:00 +03:00
|
|
|
int n = strlen30(z);
|
2008-09-09 16:31:33 +04:00
|
|
|
if( n>2 && strncmp(z, "-argcount",n)==0 ){
|
|
|
|
if( Tcl_GetIntFromObj(interp, objv[4], &nArg) ) return TCL_ERROR;
|
|
|
|
if( nArg<0 ){
|
|
|
|
Tcl_AppendResult(interp, "number of arguments must be non-negative",
|
|
|
|
(char*)0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pScript = objv[5];
|
|
|
|
}else if( objc!=4 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "NAME [-argcount N] SCRIPT");
|
2002-09-14 17:47:32 +04:00
|
|
|
return TCL_ERROR;
|
2008-09-09 16:31:33 +04:00
|
|
|
}else{
|
|
|
|
pScript = objv[3];
|
2002-09-14 17:47:32 +04:00
|
|
|
}
|
|
|
|
zName = Tcl_GetStringFromObj(objv[2], 0);
|
2005-06-26 21:55:33 +04:00
|
|
|
pFunc = findSqlFunc(pDb, zName);
|
2002-09-14 17:47:32 +04:00
|
|
|
if( pFunc==0 ) return TCL_ERROR;
|
2005-06-26 21:55:33 +04:00
|
|
|
if( pFunc->pScript ){
|
|
|
|
Tcl_DecrRefCount(pFunc->pScript);
|
|
|
|
}
|
|
|
|
pFunc->pScript = pScript;
|
|
|
|
Tcl_IncrRefCount(pScript);
|
|
|
|
pFunc->useEvalObjv = safeToUseEvalObjv(interp, pScript);
|
2008-09-09 16:31:33 +04:00
|
|
|
rc = sqlite3_create_function(pDb->db, zName, nArg, SQLITE_UTF8,
|
2004-06-12 13:25:12 +04:00
|
|
|
pFunc, tclSqlFunc, 0, 0);
|
2005-01-24 03:28:42 +03:00
|
|
|
if( rc!=SQLITE_OK ){
|
2005-01-25 07:27:54 +03:00
|
|
|
rc = TCL_ERROR;
|
|
|
|
Tcl_SetResult(interp, (char *)sqlite3_errmsg(pDb->db), TCL_VOLATILE);
|
2005-01-24 03:28:42 +03:00
|
|
|
}
|
2002-09-14 17:47:32 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-05-01 21:49:49 +04:00
|
|
|
/*
|
2007-05-03 20:31:26 +04:00
|
|
|
** $db incrblob ?-readonly? ?DB? TABLE COLUMN ROWID
|
2007-05-01 21:49:49 +04:00
|
|
|
*/
|
|
|
|
case DB_INCRBLOB: {
|
2007-05-04 23:03:02 +04:00
|
|
|
#ifdef SQLITE_OMIT_INCRBLOB
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, "incrblob not available in this build", (char*)0);
|
2007-05-04 23:03:02 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
#else
|
2007-05-03 20:31:26 +04:00
|
|
|
int isReadonly = 0;
|
2007-05-01 21:49:49 +04:00
|
|
|
const char *zDb = "main";
|
|
|
|
const char *zTable;
|
|
|
|
const char *zColumn;
|
2012-09-29 18:45:54 +04:00
|
|
|
Tcl_WideInt iRow;
|
2007-05-01 21:49:49 +04:00
|
|
|
|
2007-05-03 20:31:26 +04:00
|
|
|
/* Check for the -readonly option */
|
|
|
|
if( objc>3 && strcmp(Tcl_GetString(objv[2]), "-readonly")==0 ){
|
|
|
|
isReadonly = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( objc!=(5+isReadonly) && objc!=(6+isReadonly) ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "?-readonly? ?DB? TABLE COLUMN ROWID");
|
2007-05-01 21:49:49 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
2007-05-03 20:31:26 +04:00
|
|
|
if( objc==(6+isReadonly) ){
|
2007-05-01 21:49:49 +04:00
|
|
|
zDb = Tcl_GetString(objv[2]);
|
|
|
|
}
|
|
|
|
zTable = Tcl_GetString(objv[objc-3]);
|
|
|
|
zColumn = Tcl_GetString(objv[objc-2]);
|
|
|
|
rc = Tcl_GetWideIntFromObj(interp, objv[objc-1], &iRow);
|
|
|
|
|
|
|
|
if( rc==TCL_OK ){
|
2007-05-03 20:31:26 +04:00
|
|
|
rc = createIncrblobChannel(
|
2014-08-19 13:15:41 +04:00
|
|
|
interp, pDb, zDb, zTable, zColumn, (sqlite3_int64)iRow, isReadonly
|
2007-05-03 20:31:26 +04:00
|
|
|
);
|
2007-05-01 21:49:49 +04:00
|
|
|
}
|
2007-05-04 23:03:02 +04:00
|
|
|
#endif
|
2007-05-01 21:49:49 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-07-17 04:02:44 +04:00
|
|
|
/*
|
|
|
|
** $db interrupt
|
|
|
|
**
|
|
|
|
** Interrupt the execution of the inner-most SQL interpreter. This
|
|
|
|
** causes the SQL statement to return an error of SQLITE_INTERRUPT.
|
|
|
|
*/
|
|
|
|
case DB_INTERRUPT: {
|
|
|
|
sqlite3_interrupt(pDb->db);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-30 03:00:03 +04:00
|
|
|
/*
|
|
|
|
** $db nullvalue ?STRING?
|
|
|
|
**
|
|
|
|
** Change text used when a NULL comes back from the database. If ?STRING?
|
|
|
|
** is not present, then the current string used for NULL is returned.
|
|
|
|
** If STRING is present, then STRING is returned.
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
case DB_NULLVALUE: {
|
|
|
|
if( objc!=2 && objc!=3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "NULLVALUE");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if( objc==3 ){
|
|
|
|
int len;
|
|
|
|
char *zNull = Tcl_GetStringFromObj(objv[2], &len);
|
|
|
|
if( pDb->zNull ){
|
|
|
|
Tcl_Free(pDb->zNull);
|
|
|
|
}
|
|
|
|
if( zNull && len>0 ){
|
|
|
|
pDb->zNull = Tcl_Alloc( len + 1 );
|
2011-06-20 23:00:30 +04:00
|
|
|
memcpy(pDb->zNull, zNull, len);
|
2005-08-30 03:00:03 +04:00
|
|
|
pDb->zNull[len] = '\0';
|
|
|
|
}else{
|
|
|
|
pDb->zNull = 0;
|
|
|
|
}
|
|
|
|
}
|
2012-10-03 15:02:33 +04:00
|
|
|
Tcl_SetObjResult(interp, Tcl_NewStringObj(pDb->zNull, -1));
|
2005-08-30 03:00:03 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-01-17 00:00:27 +03:00
|
|
|
/*
|
|
|
|
** $db last_insert_rowid
|
|
|
|
**
|
|
|
|
** Return an integer which is the ROWID for the most recent insert.
|
|
|
|
*/
|
|
|
|
case DB_LAST_INSERT_ROWID: {
|
|
|
|
Tcl_Obj *pResult;
|
2006-06-21 23:30:34 +04:00
|
|
|
Tcl_WideInt rowid;
|
2002-01-17 00:00:27 +03:00
|
|
|
if( objc!=2 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2004-05-10 14:34:51 +04:00
|
|
|
rowid = sqlite3_last_insert_rowid(pDb->db);
|
2002-01-17 00:00:27 +03:00
|
|
|
pResult = Tcl_GetObjResult(interp);
|
2006-06-21 23:30:34 +04:00
|
|
|
Tcl_SetWideIntObj(pResult, rowid);
|
2002-01-17 00:00:27 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-08-19 18:31:01 +04:00
|
|
|
/*
|
2009-10-06 18:59:02 +04:00
|
|
|
** The DB_ONECOLUMN method is implemented together with DB_EXISTS.
|
2003-08-19 18:31:01 +04:00
|
|
|
*/
|
2004-09-07 17:20:35 +04:00
|
|
|
|
|
|
|
/* $db progress ?N CALLBACK?
|
|
|
|
**
|
|
|
|
** Invoke the given callback every N virtual machine opcodes while executing
|
|
|
|
** queries.
|
|
|
|
*/
|
|
|
|
case DB_PROGRESS: {
|
|
|
|
if( objc==2 ){
|
|
|
|
if( pDb->zProgress ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, pDb->zProgress, (char*)0);
|
2004-09-07 17:20:35 +04:00
|
|
|
}
|
|
|
|
}else if( objc==4 ){
|
|
|
|
char *zProgress;
|
|
|
|
int len;
|
|
|
|
int N;
|
|
|
|
if( TCL_OK!=Tcl_GetIntFromObj(interp, objv[2], &N) ){
|
2007-08-07 21:13:03 +04:00
|
|
|
return TCL_ERROR;
|
2004-09-07 17:20:35 +04:00
|
|
|
};
|
|
|
|
if( pDb->zProgress ){
|
|
|
|
Tcl_Free(pDb->zProgress);
|
|
|
|
}
|
|
|
|
zProgress = Tcl_GetStringFromObj(objv[3], &len);
|
|
|
|
if( zProgress && len>0 ){
|
|
|
|
pDb->zProgress = Tcl_Alloc( len + 1 );
|
2007-05-04 17:15:55 +04:00
|
|
|
memcpy(pDb->zProgress, zProgress, len+1);
|
2004-09-07 17:20:35 +04:00
|
|
|
}else{
|
|
|
|
pDb->zProgress = 0;
|
|
|
|
}
|
|
|
|
#ifndef SQLITE_OMIT_PROGRESS_CALLBACK
|
|
|
|
if( pDb->zProgress ){
|
|
|
|
pDb->interp = interp;
|
|
|
|
sqlite3_progress_handler(pDb->db, N, DbProgressHandler, pDb);
|
|
|
|
}else{
|
|
|
|
sqlite3_progress_handler(pDb->db, 0, 0, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}else{
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "N CALLBACK");
|
2003-08-19 18:31:01 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-30 03:00:03 +04:00
|
|
|
/* $db profile ?CALLBACK?
|
|
|
|
**
|
|
|
|
** Make arrangements to invoke the CALLBACK routine after each SQL statement
|
|
|
|
** that has run. The text of the SQL and the amount of elapse time are
|
|
|
|
** appended to CALLBACK before the script is run.
|
|
|
|
*/
|
|
|
|
case DB_PROFILE: {
|
|
|
|
if( objc>3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK?");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}else if( objc==2 ){
|
|
|
|
if( pDb->zProfile ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, pDb->zProfile, (char*)0);
|
2005-08-30 03:00:03 +04:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
char *zProfile;
|
|
|
|
int len;
|
|
|
|
if( pDb->zProfile ){
|
|
|
|
Tcl_Free(pDb->zProfile);
|
|
|
|
}
|
|
|
|
zProfile = Tcl_GetStringFromObj(objv[2], &len);
|
|
|
|
if( zProfile && len>0 ){
|
|
|
|
pDb->zProfile = Tcl_Alloc( len + 1 );
|
2007-05-04 17:15:55 +04:00
|
|
|
memcpy(pDb->zProfile, zProfile, len+1);
|
2005-08-30 03:00:03 +04:00
|
|
|
}else{
|
|
|
|
pDb->zProfile = 0;
|
|
|
|
}
|
2011-02-09 22:55:20 +03:00
|
|
|
#if !defined(SQLITE_OMIT_TRACE) && !defined(SQLITE_OMIT_FLOATING_POINT)
|
2005-08-30 03:00:03 +04:00
|
|
|
if( pDb->zProfile ){
|
|
|
|
pDb->interp = interp;
|
|
|
|
sqlite3_profile(pDb->db, DbProfileHandler, pDb);
|
|
|
|
}else{
|
|
|
|
sqlite3_profile(pDb->db, 0, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2004-02-01 04:22:50 +03:00
|
|
|
/*
|
|
|
|
** $db rekey KEY
|
|
|
|
**
|
|
|
|
** Change the encryption key on the currently open database.
|
|
|
|
*/
|
|
|
|
case DB_REKEY: {
|
2011-10-15 01:49:18 +04:00
|
|
|
#ifdef SQLITE_HAS_CODEC
|
2004-02-01 04:22:50 +03:00
|
|
|
int nKey;
|
|
|
|
void *pKey;
|
2011-10-15 01:49:18 +04:00
|
|
|
#endif
|
2004-02-01 04:22:50 +03:00
|
|
|
if( objc!=3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "KEY");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2004-02-11 05:18:05 +03:00
|
|
|
#ifdef SQLITE_HAS_CODEC
|
2011-10-15 01:49:18 +04:00
|
|
|
pKey = Tcl_GetByteArrayFromObj(objv[2], &nKey);
|
2004-07-22 06:40:37 +04:00
|
|
|
rc = sqlite3_rekey(pDb->db, pKey, nKey);
|
2004-02-01 04:22:50 +03:00
|
|
|
if( rc ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, sqlite3_errstr(rc), (char*)0);
|
2004-02-01 04:22:50 +03:00
|
|
|
rc = TCL_ERROR;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-02-05 01:46:47 +03:00
|
|
|
/* $db restore ?DATABASE? FILENAME
|
|
|
|
**
|
|
|
|
** Open a database file named FILENAME. Transfer the content
|
|
|
|
** of FILENAME into the local database DATABASE (default: "main").
|
|
|
|
*/
|
|
|
|
case DB_RESTORE: {
|
|
|
|
const char *zSrcFile;
|
|
|
|
const char *zDestDb;
|
|
|
|
sqlite3 *pSrc;
|
|
|
|
sqlite3_backup *pBackup;
|
|
|
|
int nTimeout = 0;
|
|
|
|
|
|
|
|
if( objc==3 ){
|
|
|
|
zDestDb = "main";
|
|
|
|
zSrcFile = Tcl_GetString(objv[2]);
|
|
|
|
}else if( objc==4 ){
|
|
|
|
zDestDb = Tcl_GetString(objv[2]);
|
|
|
|
zSrcFile = Tcl_GetString(objv[3]);
|
|
|
|
}else{
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "?DATABASE? FILENAME");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
rc = sqlite3_open_v2(zSrcFile, &pSrc, SQLITE_OPEN_READONLY, 0);
|
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
Tcl_AppendResult(interp, "cannot open source database: ",
|
|
|
|
sqlite3_errmsg(pSrc), (char*)0);
|
|
|
|
sqlite3_close(pSrc);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
pBackup = sqlite3_backup_init(pDb->db, zDestDb, pSrc, "main");
|
|
|
|
if( pBackup==0 ){
|
|
|
|
Tcl_AppendResult(interp, "restore failed: ",
|
|
|
|
sqlite3_errmsg(pDb->db), (char*)0);
|
|
|
|
sqlite3_close(pSrc);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK
|
|
|
|
|| rc==SQLITE_BUSY ){
|
|
|
|
if( rc==SQLITE_BUSY ){
|
|
|
|
if( nTimeout++ >= 3 ) break;
|
|
|
|
sqlite3_sleep(100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sqlite3_backup_finish(pBackup);
|
|
|
|
if( rc==SQLITE_DONE ){
|
|
|
|
rc = TCL_OK;
|
|
|
|
}else if( rc==SQLITE_BUSY || rc==SQLITE_LOCKED ){
|
|
|
|
Tcl_AppendResult(interp, "restore failed: source database busy",
|
|
|
|
(char*)0);
|
|
|
|
rc = TCL_ERROR;
|
|
|
|
}else{
|
|
|
|
Tcl_AppendResult(interp, "restore failed: ",
|
|
|
|
sqlite3_errmsg(pDb->db), (char*)0);
|
|
|
|
rc = TCL_ERROR;
|
|
|
|
}
|
|
|
|
sqlite3_close(pSrc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-10-08 03:46:38 +04:00
|
|
|
/*
|
2010-04-07 23:31:59 +04:00
|
|
|
** $db status (step|sort|autoindex)
|
2008-10-08 03:46:38 +04:00
|
|
|
**
|
|
|
|
** Display SQLITE_STMTSTATUS_FULLSCAN_STEP or
|
|
|
|
** SQLITE_STMTSTATUS_SORT for the most recent eval.
|
|
|
|
*/
|
|
|
|
case DB_STATUS: {
|
|
|
|
int v;
|
|
|
|
const char *zOp;
|
|
|
|
if( objc!=3 ){
|
2010-08-02 02:41:32 +04:00
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "(step|sort|autoindex)");
|
2008-10-08 03:46:38 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
zOp = Tcl_GetString(objv[2]);
|
|
|
|
if( strcmp(zOp, "step")==0 ){
|
|
|
|
v = pDb->nStep;
|
|
|
|
}else if( strcmp(zOp, "sort")==0 ){
|
|
|
|
v = pDb->nSort;
|
2010-04-07 23:31:59 +04:00
|
|
|
}else if( strcmp(zOp, "autoindex")==0 ){
|
|
|
|
v = pDb->nIndex;
|
2008-10-08 03:46:38 +04:00
|
|
|
}else{
|
2010-04-07 23:31:59 +04:00
|
|
|
Tcl_AppendResult(interp,
|
|
|
|
"bad argument: should be autoindex, step, or sort",
|
2008-10-08 03:46:38 +04:00
|
|
|
(char*)0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
Tcl_SetObjResult(interp, Tcl_NewIntObj(v));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-08-04 17:49:02 +04:00
|
|
|
/*
|
|
|
|
** $db timeout MILLESECONDS
|
|
|
|
**
|
|
|
|
** Delay for the number of milliseconds specified when a file is locked.
|
|
|
|
*/
|
2000-09-21 17:01:35 +04:00
|
|
|
case DB_TIMEOUT: {
|
2000-08-04 17:49:02 +04:00
|
|
|
int ms;
|
2000-09-21 17:01:35 +04:00
|
|
|
if( objc!=3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "MILLISECONDS");
|
2000-08-04 17:49:02 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2000-09-21 17:01:35 +04:00
|
|
|
if( Tcl_GetIntFromObj(interp, objv[2], &ms) ) return TCL_ERROR;
|
2004-05-10 14:34:51 +04:00
|
|
|
sqlite3_busy_timeout(pDb->db, ms);
|
2000-09-21 17:01:35 +04:00
|
|
|
break;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
2005-04-04 03:54:43 +04:00
|
|
|
|
2004-06-29 16:39:08 +04:00
|
|
|
/*
|
|
|
|
** $db total_changes
|
|
|
|
**
|
|
|
|
** Return the number of rows that were modified, inserted, or deleted
|
|
|
|
** since the database handle was created.
|
|
|
|
*/
|
|
|
|
case DB_TOTAL_CHANGES: {
|
|
|
|
Tcl_Obj *pResult;
|
|
|
|
if( objc!=2 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
pResult = Tcl_GetObjResult(interp);
|
|
|
|
Tcl_SetIntObj(pResult, sqlite3_total_changes(pDb->db));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-04-23 16:25:23 +04:00
|
|
|
/* $db trace ?CALLBACK?
|
|
|
|
**
|
|
|
|
** Make arrangements to invoke the CALLBACK routine for each SQL statement
|
|
|
|
** that is executed. The text of the SQL is appended to CALLBACK before
|
|
|
|
** it is executed.
|
|
|
|
*/
|
|
|
|
case DB_TRACE: {
|
|
|
|
if( objc>3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK?");
|
2004-06-29 15:26:59 +04:00
|
|
|
return TCL_ERROR;
|
2003-04-23 16:25:23 +04:00
|
|
|
}else if( objc==2 ){
|
|
|
|
if( pDb->zTrace ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, pDb->zTrace, (char*)0);
|
2003-04-23 16:25:23 +04:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
char *zTrace;
|
|
|
|
int len;
|
|
|
|
if( pDb->zTrace ){
|
|
|
|
Tcl_Free(pDb->zTrace);
|
|
|
|
}
|
|
|
|
zTrace = Tcl_GetStringFromObj(objv[2], &len);
|
|
|
|
if( zTrace && len>0 ){
|
|
|
|
pDb->zTrace = Tcl_Alloc( len + 1 );
|
2007-05-04 17:15:55 +04:00
|
|
|
memcpy(pDb->zTrace, zTrace, len+1);
|
2003-04-23 16:25:23 +04:00
|
|
|
}else{
|
|
|
|
pDb->zTrace = 0;
|
|
|
|
}
|
2011-02-09 22:55:20 +03:00
|
|
|
#if !defined(SQLITE_OMIT_TRACE) && !defined(SQLITE_OMIT_FLOATING_POINT)
|
2003-04-23 16:25:23 +04:00
|
|
|
if( pDb->zTrace ){
|
|
|
|
pDb->interp = interp;
|
2004-05-10 14:34:51 +04:00
|
|
|
sqlite3_trace(pDb->db, DbTraceHandler, pDb);
|
2003-04-23 16:25:23 +04:00
|
|
|
}else{
|
2004-05-10 14:34:51 +04:00
|
|
|
sqlite3_trace(pDb->db, 0, 0);
|
2003-04-23 16:25:23 +04:00
|
|
|
}
|
2005-08-30 03:00:03 +04:00
|
|
|
#endif
|
2003-04-23 16:25:23 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-02 16:21:08 +04:00
|
|
|
/* $db transaction [-deferred|-immediate|-exclusive] SCRIPT
|
|
|
|
**
|
|
|
|
** Start a new transaction (if we are not already in the midst of a
|
|
|
|
** transaction) and execute the TCL script SCRIPT. After SCRIPT
|
|
|
|
** completes, either commit the transaction or roll it back if SCRIPT
|
|
|
|
** throws an exception. Or if no new transation was started, do nothing.
|
|
|
|
** pass the exception on up the stack.
|
|
|
|
**
|
|
|
|
** This command was inspired by Dave Thomas's talk on Ruby at the
|
|
|
|
** 2005 O'Reilly Open Source Convention (OSCON).
|
|
|
|
*/
|
|
|
|
case DB_TRANSACTION: {
|
|
|
|
Tcl_Obj *pScript;
|
2009-01-02 20:33:46 +03:00
|
|
|
const char *zBegin = "SAVEPOINT _tcl_transaction";
|
2005-08-02 16:21:08 +04:00
|
|
|
if( objc!=3 && objc!=4 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "[TYPE] SCRIPT");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2009-01-02 20:33:46 +03:00
|
|
|
|
2009-10-06 18:59:02 +04:00
|
|
|
if( pDb->nTransaction==0 && objc==4 ){
|
2005-08-02 16:21:08 +04:00
|
|
|
static const char *TTYPE_strs[] = {
|
2005-08-16 15:11:34 +04:00
|
|
|
"deferred", "exclusive", "immediate", 0
|
2005-08-02 16:21:08 +04:00
|
|
|
};
|
|
|
|
enum TTYPE_enum {
|
|
|
|
TTYPE_DEFERRED, TTYPE_EXCLUSIVE, TTYPE_IMMEDIATE
|
|
|
|
};
|
|
|
|
int ttype;
|
2005-08-02 21:15:14 +04:00
|
|
|
if( Tcl_GetIndexFromObj(interp, objv[2], TTYPE_strs, "transaction type",
|
2005-08-02 16:21:08 +04:00
|
|
|
0, &ttype) ){
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
switch( (enum TTYPE_enum)ttype ){
|
|
|
|
case TTYPE_DEFERRED: /* no-op */; break;
|
|
|
|
case TTYPE_EXCLUSIVE: zBegin = "BEGIN EXCLUSIVE"; break;
|
|
|
|
case TTYPE_IMMEDIATE: zBegin = "BEGIN IMMEDIATE"; break;
|
|
|
|
}
|
|
|
|
}
|
2009-01-02 20:33:46 +03:00
|
|
|
pScript = objv[objc-1];
|
|
|
|
|
2009-10-06 18:59:02 +04:00
|
|
|
/* Run the SQLite BEGIN command to open a transaction or savepoint. */
|
2009-01-02 20:33:46 +03:00
|
|
|
pDb->disableAuth++;
|
|
|
|
rc = sqlite3_exec(pDb->db, zBegin, 0, 0, 0);
|
|
|
|
pDb->disableAuth--;
|
|
|
|
if( rc!=SQLITE_OK ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, sqlite3_errmsg(pDb->db), (char*)0);
|
2009-01-02 20:33:46 +03:00
|
|
|
return TCL_ERROR;
|
2005-08-02 16:21:08 +04:00
|
|
|
}
|
2009-01-02 20:33:46 +03:00
|
|
|
pDb->nTransaction++;
|
|
|
|
|
2009-10-06 18:59:02 +04:00
|
|
|
/* If using NRE, schedule a callback to invoke the script pScript, then
|
|
|
|
** a second callback to commit (or rollback) the transaction or savepoint
|
|
|
|
** opened above. If not using NRE, evaluate the script directly, then
|
|
|
|
** call function DbTransPostCmd() to commit (or rollback) the transaction
|
|
|
|
** or savepoint. */
|
|
|
|
if( DbUseNre() ){
|
|
|
|
Tcl_NRAddCallback(interp, DbTransPostCmd, cd, 0, 0, 0);
|
2013-12-20 22:57:44 +04:00
|
|
|
(void)Tcl_NREvalObj(interp, pScript, 0);
|
2009-01-02 20:33:46 +03:00
|
|
|
}else{
|
2009-10-06 18:59:02 +04:00
|
|
|
rc = DbTransPostCmd(&cd, interp, Tcl_EvalObjEx(interp, pScript, 0));
|
2009-01-02 20:33:46 +03:00
|
|
|
}
|
2005-08-02 16:21:08 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-03-16 16:19:36 +03:00
|
|
|
/*
|
|
|
|
** $db unlock_notify ?script?
|
|
|
|
*/
|
|
|
|
case DB_UNLOCK_NOTIFY: {
|
|
|
|
#ifndef SQLITE_ENABLE_UNLOCK_NOTIFY
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, "unlock_notify not available in this build",
|
|
|
|
(char*)0);
|
2009-03-16 16:19:36 +03:00
|
|
|
rc = TCL_ERROR;
|
|
|
|
#else
|
|
|
|
if( objc!=2 && objc!=3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "?SCRIPT?");
|
|
|
|
rc = TCL_ERROR;
|
|
|
|
}else{
|
|
|
|
void (*xNotify)(void **, int) = 0;
|
|
|
|
void *pNotifyArg = 0;
|
|
|
|
|
|
|
|
if( pDb->pUnlockNotify ){
|
|
|
|
Tcl_DecrRefCount(pDb->pUnlockNotify);
|
|
|
|
pDb->pUnlockNotify = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( objc==3 ){
|
|
|
|
xNotify = DbUnlockNotify;
|
|
|
|
pNotifyArg = (void *)pDb;
|
|
|
|
pDb->pUnlockNotify = objv[2];
|
|
|
|
Tcl_IncrRefCount(pDb->pUnlockNotify);
|
|
|
|
}
|
|
|
|
|
|
|
|
if( sqlite3_unlock_notify(pDb->db, xNotify, pNotifyArg) ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp, sqlite3_errmsg(pDb->db), (char*)0);
|
2009-03-16 16:19:36 +03:00
|
|
|
rc = TCL_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-12-15 18:22:08 +03:00
|
|
|
/*
|
2010-04-28 18:42:19 +04:00
|
|
|
** $db wal_hook ?script?
|
2005-12-15 18:22:08 +03:00
|
|
|
** $db update_hook ?script?
|
2005-12-16 09:54:01 +03:00
|
|
|
** $db rollback_hook ?script?
|
2005-12-15 18:22:08 +03:00
|
|
|
*/
|
2010-04-28 18:42:19 +04:00
|
|
|
case DB_WAL_HOOK:
|
2005-12-16 09:54:01 +03:00
|
|
|
case DB_UPDATE_HOOK:
|
|
|
|
case DB_ROLLBACK_HOOK: {
|
|
|
|
|
|
|
|
/* set ppHook to point at pUpdateHook or pRollbackHook, depending on
|
|
|
|
** whether [$db update_hook] or [$db rollback_hook] was invoked.
|
|
|
|
*/
|
|
|
|
Tcl_Obj **ppHook;
|
|
|
|
if( choice==DB_UPDATE_HOOK ){
|
|
|
|
ppHook = &pDb->pUpdateHook;
|
2010-04-28 18:42:19 +04:00
|
|
|
}else if( choice==DB_WAL_HOOK ){
|
2010-05-06 00:00:25 +04:00
|
|
|
ppHook = &pDb->pWalHook;
|
2005-12-16 09:54:01 +03:00
|
|
|
}else{
|
|
|
|
ppHook = &pDb->pRollbackHook;
|
|
|
|
}
|
|
|
|
|
2005-12-15 18:22:08 +03:00
|
|
|
if( objc!=2 && objc!=3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 2, objv, "?SCRIPT?");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2005-12-16 09:54:01 +03:00
|
|
|
if( *ppHook ){
|
|
|
|
Tcl_SetObjResult(interp, *ppHook);
|
2005-12-15 18:22:08 +03:00
|
|
|
if( objc==3 ){
|
2005-12-16 09:54:01 +03:00
|
|
|
Tcl_DecrRefCount(*ppHook);
|
|
|
|
*ppHook = 0;
|
2005-12-15 18:22:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if( objc==3 ){
|
2005-12-16 09:54:01 +03:00
|
|
|
assert( !(*ppHook) );
|
2005-12-15 18:22:08 +03:00
|
|
|
if( Tcl_GetCharLength(objv[2])>0 ){
|
2005-12-16 09:54:01 +03:00
|
|
|
*ppHook = objv[2];
|
|
|
|
Tcl_IncrRefCount(*ppHook);
|
2005-12-15 18:22:08 +03:00
|
|
|
}
|
|
|
|
}
|
2005-12-16 09:54:01 +03:00
|
|
|
|
|
|
|
sqlite3_update_hook(pDb->db, (pDb->pUpdateHook?DbUpdateHandler:0), pDb);
|
|
|
|
sqlite3_rollback_hook(pDb->db,(pDb->pRollbackHook?DbRollbackHandler:0),pDb);
|
2010-05-06 00:00:25 +04:00
|
|
|
sqlite3_wal_hook(pDb->db,(pDb->pWalHook?DbWalHandler:0),pDb);
|
2005-12-16 09:54:01 +03:00
|
|
|
|
2005-12-15 18:22:08 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-01-12 15:44:03 +03:00
|
|
|
/* $db version
|
|
|
|
**
|
|
|
|
** Return the version string for this database.
|
|
|
|
*/
|
|
|
|
case DB_VERSION: {
|
|
|
|
Tcl_SetResult(interp, (char *)sqlite3_libversion(), TCL_STATIC);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2004-12-17 18:41:11 +03:00
|
|
|
|
2000-09-21 17:01:35 +04:00
|
|
|
} /* End of the SWITCH statement */
|
2004-02-01 04:22:50 +03:00
|
|
|
return rc;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
|
2009-10-13 22:38:34 +04:00
|
|
|
#if SQLITE_TCL_NRE
|
|
|
|
/*
|
|
|
|
** Adaptor that provides an objCmd interface to the NRE-enabled
|
|
|
|
** interface implementation.
|
|
|
|
*/
|
|
|
|
static int DbObjCmdAdaptor(
|
|
|
|
void *cd,
|
|
|
|
Tcl_Interp *interp,
|
|
|
|
int objc,
|
|
|
|
Tcl_Obj *const*objv
|
|
|
|
){
|
|
|
|
return Tcl_NRCallObjProc(interp, DbObjCmd, cd, objc, objv);
|
|
|
|
}
|
|
|
|
#endif /* SQLITE_TCL_NRE */
|
|
|
|
|
2000-05-29 18:26:00 +04:00
|
|
|
/*
|
2007-08-31 18:31:44 +04:00
|
|
|
** sqlite3 DBNAME FILENAME ?-vfs VFSNAME? ?-key KEY? ?-readonly BOOLEAN?
|
2008-07-10 21:52:49 +04:00
|
|
|
** ?-create BOOLEAN? ?-nomutex BOOLEAN?
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
|
|
|
** This is the main Tcl command. When the "sqlite" Tcl command is
|
|
|
|
** invoked, this routine runs to process that command.
|
|
|
|
**
|
|
|
|
** The first argument, DBNAME, is an arbitrary name for a new
|
|
|
|
** database connection. This command creates a new command named
|
|
|
|
** DBNAME that is used to control that connection. The database
|
|
|
|
** connection is deleted when the DBNAME command is deleted.
|
|
|
|
**
|
2007-08-31 18:31:44 +04:00
|
|
|
** The second argument is the name of the database file.
|
2001-04-06 20:13:42 +04:00
|
|
|
**
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
2004-02-01 04:22:50 +03:00
|
|
|
static int DbMain(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){
|
2000-08-04 17:49:02 +04:00
|
|
|
SqliteDb *p;
|
2004-02-01 04:22:50 +03:00
|
|
|
const char *zArg;
|
2000-05-29 18:26:00 +04:00
|
|
|
char *zErrMsg;
|
2007-08-31 18:31:44 +04:00
|
|
|
int i;
|
2004-02-01 04:22:50 +03:00
|
|
|
const char *zFile;
|
2007-08-31 18:31:44 +04:00
|
|
|
const char *zVfs = 0;
|
2009-03-24 18:08:09 +03:00
|
|
|
int flags;
|
2006-08-24 06:42:27 +04:00
|
|
|
Tcl_DString translatedFilename;
|
2011-10-15 01:49:18 +04:00
|
|
|
#ifdef SQLITE_HAS_CODEC
|
|
|
|
void *pKey = 0;
|
|
|
|
int nKey = 0;
|
|
|
|
#endif
|
2012-09-10 11:29:29 +04:00
|
|
|
int rc;
|
2009-03-24 18:08:09 +03:00
|
|
|
|
|
|
|
/* In normal use, each TCL interpreter runs in a single thread. So
|
|
|
|
** by default, we can turn of mutexing on SQLite database connections.
|
|
|
|
** However, for testing purposes it is useful to have mutexes turned
|
|
|
|
** on. So, by default, mutexes default off. But if compiled with
|
|
|
|
** SQLITE_TCL_DEFAULT_FULLMUTEX then mutexes default on.
|
|
|
|
*/
|
|
|
|
#ifdef SQLITE_TCL_DEFAULT_FULLMUTEX
|
|
|
|
flags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_FULLMUTEX;
|
|
|
|
#else
|
|
|
|
flags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_NOMUTEX;
|
|
|
|
#endif
|
|
|
|
|
2004-02-01 04:22:50 +03:00
|
|
|
if( objc==2 ){
|
|
|
|
zArg = Tcl_GetStringFromObj(objv[1], 0);
|
|
|
|
if( strcmp(zArg,"-version")==0 ){
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp,sqlite3_libversion(), (char*)0);
|
2002-11-04 22:32:25 +03:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
2004-02-11 05:18:05 +03:00
|
|
|
if( strcmp(zArg,"-has-codec")==0 ){
|
|
|
|
#ifdef SQLITE_HAS_CODEC
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp,"1",(char*)0);
|
2004-02-01 04:22:50 +03:00
|
|
|
#else
|
2014-02-07 23:26:13 +04:00
|
|
|
Tcl_AppendResult(interp,"0",(char*)0);
|
2001-04-06 20:13:42 +04:00
|
|
|
#endif
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
}
|
2007-08-31 18:31:44 +04:00
|
|
|
for(i=3; i+1<objc; i+=2){
|
|
|
|
zArg = Tcl_GetString(objv[i]);
|
2004-02-01 04:22:50 +03:00
|
|
|
if( strcmp(zArg,"-key")==0 ){
|
2011-10-15 01:49:18 +04:00
|
|
|
#ifdef SQLITE_HAS_CODEC
|
2007-08-31 18:31:44 +04:00
|
|
|
pKey = Tcl_GetByteArrayFromObj(objv[i+1], &nKey);
|
2011-10-15 01:49:18 +04:00
|
|
|
#endif
|
2007-08-31 18:31:44 +04:00
|
|
|
}else if( strcmp(zArg, "-vfs")==0 ){
|
2010-06-22 15:10:40 +04:00
|
|
|
zVfs = Tcl_GetString(objv[i+1]);
|
2007-08-31 18:31:44 +04:00
|
|
|
}else if( strcmp(zArg, "-readonly")==0 ){
|
|
|
|
int b;
|
|
|
|
if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
|
|
|
|
if( b ){
|
2007-09-03 19:19:34 +04:00
|
|
|
flags &= ~(SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE);
|
2007-08-31 18:31:44 +04:00
|
|
|
flags |= SQLITE_OPEN_READONLY;
|
|
|
|
}else{
|
|
|
|
flags &= ~SQLITE_OPEN_READONLY;
|
|
|
|
flags |= SQLITE_OPEN_READWRITE;
|
|
|
|
}
|
|
|
|
}else if( strcmp(zArg, "-create")==0 ){
|
|
|
|
int b;
|
|
|
|
if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
|
2007-09-03 19:19:34 +04:00
|
|
|
if( b && (flags & SQLITE_OPEN_READONLY)==0 ){
|
2007-08-31 18:31:44 +04:00
|
|
|
flags |= SQLITE_OPEN_CREATE;
|
|
|
|
}else{
|
|
|
|
flags &= ~SQLITE_OPEN_CREATE;
|
|
|
|
}
|
2008-07-10 21:52:49 +04:00
|
|
|
}else if( strcmp(zArg, "-nomutex")==0 ){
|
|
|
|
int b;
|
|
|
|
if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
|
|
|
|
if( b ){
|
|
|
|
flags |= SQLITE_OPEN_NOMUTEX;
|
2008-09-03 04:43:15 +04:00
|
|
|
flags &= ~SQLITE_OPEN_FULLMUTEX;
|
2008-07-10 21:52:49 +04:00
|
|
|
}else{
|
|
|
|
flags &= ~SQLITE_OPEN_NOMUTEX;
|
|
|
|
}
|
2011-06-27 20:55:50 +04:00
|
|
|
}else if( strcmp(zArg, "-fullmutex")==0 ){
|
2008-09-03 04:43:15 +04:00
|
|
|
int b;
|
|
|
|
if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
|
|
|
|
if( b ){
|
|
|
|
flags |= SQLITE_OPEN_FULLMUTEX;
|
|
|
|
flags &= ~SQLITE_OPEN_NOMUTEX;
|
|
|
|
}else{
|
|
|
|
flags &= ~SQLITE_OPEN_FULLMUTEX;
|
|
|
|
}
|
2011-12-21 18:42:29 +04:00
|
|
|
}else if( strcmp(zArg, "-uri")==0 ){
|
|
|
|
int b;
|
|
|
|
if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
|
|
|
|
if( b ){
|
|
|
|
flags |= SQLITE_OPEN_URI;
|
|
|
|
}else{
|
|
|
|
flags &= ~SQLITE_OPEN_URI;
|
|
|
|
}
|
2007-08-31 18:31:44 +04:00
|
|
|
}else{
|
|
|
|
Tcl_AppendResult(interp, "unknown option: ", zArg, (char*)0);
|
|
|
|
return TCL_ERROR;
|
2004-02-01 04:22:50 +03:00
|
|
|
}
|
|
|
|
}
|
2007-08-31 18:31:44 +04:00
|
|
|
if( objc<3 || (objc&1)!=1 ){
|
2004-02-01 04:22:50 +03:00
|
|
|
Tcl_WrongNumArgs(interp, 1, objv,
|
2007-08-31 18:31:44 +04:00
|
|
|
"HANDLE FILENAME ?-vfs VFSNAME? ?-readonly BOOLEAN? ?-create BOOLEAN?"
|
2012-01-13 20:16:10 +04:00
|
|
|
" ?-nomutex BOOLEAN? ?-fullmutex BOOLEAN? ?-uri BOOLEAN?"
|
2004-02-11 05:18:05 +03:00
|
|
|
#ifdef SQLITE_HAS_CODEC
|
2007-08-31 18:31:44 +04:00
|
|
|
" ?-key CODECKEY?"
|
2004-02-01 04:22:50 +03:00
|
|
|
#endif
|
|
|
|
);
|
2000-05-29 18:26:00 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
zErrMsg = 0;
|
2000-08-04 18:56:24 +04:00
|
|
|
p = (SqliteDb*)Tcl_Alloc( sizeof(*p) );
|
2000-05-29 18:26:00 +04:00
|
|
|
if( p==0 ){
|
2014-01-24 21:03:55 +04:00
|
|
|
Tcl_SetResult(interp, (char *)"malloc failed", TCL_STATIC);
|
2000-08-04 17:49:02 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
memset(p, 0, sizeof(*p));
|
2004-02-01 04:22:50 +03:00
|
|
|
zFile = Tcl_GetStringFromObj(objv[2], 0);
|
2006-08-24 06:42:27 +04:00
|
|
|
zFile = Tcl_TranslateFileName(interp, zFile, &translatedFilename);
|
2012-09-10 11:29:29 +04:00
|
|
|
rc = sqlite3_open_v2(zFile, &p->db, flags, zVfs);
|
2006-08-24 06:42:27 +04:00
|
|
|
Tcl_DStringFree(&translatedFilename);
|
2012-09-10 11:29:29 +04:00
|
|
|
if( p->db ){
|
|
|
|
if( SQLITE_OK!=sqlite3_errcode(p->db) ){
|
|
|
|
zErrMsg = sqlite3_mprintf("%s", sqlite3_errmsg(p->db));
|
|
|
|
sqlite3_close(p->db);
|
|
|
|
p->db = 0;
|
|
|
|
}
|
|
|
|
}else{
|
2012-09-11 06:00:25 +04:00
|
|
|
zErrMsg = sqlite3_mprintf("%s", sqlite3_errstr(rc));
|
2004-05-22 13:21:21 +04:00
|
|
|
}
|
2004-07-22 06:40:37 +04:00
|
|
|
#ifdef SQLITE_HAS_CODEC
|
2007-08-23 00:18:21 +04:00
|
|
|
if( p->db ){
|
|
|
|
sqlite3_key(p->db, pKey, nKey);
|
|
|
|
}
|
2004-02-11 13:37:23 +03:00
|
|
|
#endif
|
2000-08-04 17:49:02 +04:00
|
|
|
if( p->db==0 ){
|
2000-05-29 18:26:00 +04:00
|
|
|
Tcl_SetResult(interp, zErrMsg, TCL_VOLATILE);
|
2000-08-04 17:49:02 +04:00
|
|
|
Tcl_Free((char*)p);
|
2006-12-19 21:46:08 +03:00
|
|
|
sqlite3_free(zErrMsg);
|
2000-05-29 18:26:00 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2005-01-24 03:28:42 +03:00
|
|
|
p->maxStmt = NUM_PREPARED_STMTS;
|
2006-08-24 18:59:45 +04:00
|
|
|
p->interp = interp;
|
2004-02-01 04:22:50 +03:00
|
|
|
zArg = Tcl_GetStringFromObj(objv[1], 0);
|
2009-10-06 18:59:02 +04:00
|
|
|
if( DbUseNre() ){
|
2009-10-13 22:38:34 +04:00
|
|
|
Tcl_NRCreateCommand(interp, zArg, DbObjCmdAdaptor, DbObjCmd,
|
|
|
|
(char*)p, DbDeleteCmd);
|
2009-10-06 18:59:02 +04:00
|
|
|
}else{
|
|
|
|
Tcl_CreateObjCommand(interp, zArg, DbObjCmd, (char*)p, DbDeleteCmd);
|
|
|
|
}
|
2000-05-29 18:26:00 +04:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
2001-09-28 21:47:14 +04:00
|
|
|
/*
|
|
|
|
** Provide a dummy Tcl_InitStubs if we are using this as a static
|
|
|
|
** library.
|
|
|
|
*/
|
|
|
|
#ifndef USE_TCL_STUBS
|
|
|
|
# undef Tcl_InitStubs
|
2013-06-03 16:34:46 +04:00
|
|
|
# define Tcl_InitStubs(a,b,c) TCL_VERSION
|
2001-09-28 21:47:14 +04:00
|
|
|
#endif
|
|
|
|
|
2005-10-05 14:40:15 +04:00
|
|
|
/*
|
|
|
|
** Make sure we have a PACKAGE_VERSION macro defined. This will be
|
|
|
|
** defined automatically by the TEA makefile. But other makefiles
|
|
|
|
** do not define it.
|
|
|
|
*/
|
|
|
|
#ifndef PACKAGE_VERSION
|
|
|
|
# define PACKAGE_VERSION SQLITE_VERSION
|
|
|
|
#endif
|
|
|
|
|
2000-05-29 18:26:00 +04:00
|
|
|
/*
|
|
|
|
** Initialize this module.
|
|
|
|
**
|
|
|
|
** This Tcl module contains only a single new Tcl command named "sqlite".
|
|
|
|
** (Hence there is no namespace. There is no point in using a namespace
|
|
|
|
** if the extension only supplies one new name!) The "sqlite" command is
|
|
|
|
** used to open a new SQLite database. See the DbMain() routine above
|
|
|
|
** for additional information.
|
2010-08-26 20:46:57 +04:00
|
|
|
**
|
|
|
|
** The EXTERN macros are required by TCL in order to work on windows.
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
2010-08-26 20:46:57 +04:00
|
|
|
EXTERN int Sqlite3_Init(Tcl_Interp *interp){
|
2013-06-03 16:34:46 +04:00
|
|
|
int rc = Tcl_InitStubs(interp, "8.4", 0)==0 ? TCL_ERROR : TCL_OK;
|
2013-05-31 19:36:07 +04:00
|
|
|
if( rc==TCL_OK ){
|
|
|
|
Tcl_CreateObjCommand(interp, "sqlite3", (Tcl_ObjCmdProc*)DbMain, 0, 0);
|
2010-08-26 00:35:51 +04:00
|
|
|
#ifndef SQLITE_3_SUFFIX_ONLY
|
2013-05-31 19:36:07 +04:00
|
|
|
/* The "sqlite" alias is undocumented. It is here only to support
|
|
|
|
** legacy scripts. All new scripts should use only the "sqlite3"
|
|
|
|
** command. */
|
|
|
|
Tcl_CreateObjCommand(interp, "sqlite", (Tcl_ObjCmdProc*)DbMain, 0, 0);
|
2010-08-25 23:39:19 +04:00
|
|
|
#endif
|
2013-05-31 19:36:07 +04:00
|
|
|
rc = Tcl_PkgProvide(interp, "sqlite3", PACKAGE_VERSION);
|
|
|
|
}
|
|
|
|
return rc;
|
2001-09-28 21:47:14 +04:00
|
|
|
}
|
2010-08-26 20:46:57 +04:00
|
|
|
EXTERN int Tclsqlite3_Init(Tcl_Interp *interp){ return Sqlite3_Init(interp); }
|
|
|
|
EXTERN int Sqlite3_Unload(Tcl_Interp *interp, int flags){ return TCL_OK; }
|
|
|
|
EXTERN int Tclsqlite3_Unload(Tcl_Interp *interp, int flags){ return TCL_OK; }
|
2008-09-23 13:58:46 +04:00
|
|
|
|
2012-03-20 19:10:42 +04:00
|
|
|
/* Because it accesses the file-system and uses persistent state, SQLite
|
|
|
|
** is not considered appropriate for safe interpreters. Hence, we deliberately
|
|
|
|
** omit the _SafeInit() interfaces.
|
|
|
|
*/
|
2005-01-08 21:42:28 +03:00
|
|
|
|
|
|
|
#ifndef SQLITE_3_SUFFIX_ONLY
|
2010-08-20 16:33:59 +04:00
|
|
|
int Sqlite_Init(Tcl_Interp *interp){ return Sqlite3_Init(interp); }
|
|
|
|
int Tclsqlite_Init(Tcl_Interp *interp){ return Sqlite3_Init(interp); }
|
|
|
|
int Sqlite_Unload(Tcl_Interp *interp, int flags){ return TCL_OK; }
|
|
|
|
int Tclsqlite_Unload(Tcl_Interp *interp, int flags){ return TCL_OK; }
|
2005-01-08 21:42:28 +03:00
|
|
|
#endif
|
2000-05-29 18:26:00 +04:00
|
|
|
|
2004-07-23 04:01:38 +04:00
|
|
|
#ifdef TCLSH
|
|
|
|
/*****************************************************************************
|
2009-10-23 00:52:05 +04:00
|
|
|
** All of the code that follows is used to build standalone TCL interpreters
|
|
|
|
** that are statically linked with SQLite. Enable these by compiling
|
|
|
|
** with -DTCLSH=n where n can be 1 or 2. An n of 1 generates a standard
|
|
|
|
** tclsh but with SQLite built in. An n of 2 generates the SQLite space
|
|
|
|
** analysis program.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(SQLITE_TEST) || defined(SQLITE_TCLMD5)
|
|
|
|
/*
|
|
|
|
* This code implements the MD5 message-digest algorithm.
|
|
|
|
* The algorithm is due to Ron Rivest. This code was
|
|
|
|
* written by Colin Plumb in 1993, no copyright is claimed.
|
|
|
|
* This code is in the public domain; do with it what you wish.
|
|
|
|
*
|
|
|
|
* Equivalent code is available from RSA Data Security, Inc.
|
|
|
|
* This code has been tested against that, and is equivalent,
|
|
|
|
* except that you don't need to include two pages of legalese
|
|
|
|
* with every copy.
|
|
|
|
*
|
|
|
|
* To compute the message digest of a chunk of bytes, declare an
|
|
|
|
* MD5Context structure, pass it to MD5Init, call MD5Update as
|
|
|
|
* needed on buffers full of bytes, and then call MD5Final, which
|
|
|
|
* will fill a supplied 16-byte array with the digest.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If compiled on a machine that doesn't have a 32-bit integer,
|
|
|
|
* you just set "uint32" to the appropriate datatype for an
|
|
|
|
* unsigned 32-bit integer. For example:
|
|
|
|
*
|
|
|
|
* cc -Duint32='unsigned long' md5.c
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef uint32
|
|
|
|
# define uint32 unsigned int
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct MD5Context {
|
|
|
|
int isInit;
|
|
|
|
uint32 buf[4];
|
|
|
|
uint32 bits[2];
|
|
|
|
unsigned char in[64];
|
|
|
|
};
|
|
|
|
typedef struct MD5Context MD5Context;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note: this code is harmless on little-endian machines.
|
|
|
|
*/
|
|
|
|
static void byteReverse (unsigned char *buf, unsigned longs){
|
|
|
|
uint32 t;
|
|
|
|
do {
|
|
|
|
t = (uint32)((unsigned)buf[3]<<8 | buf[2]) << 16 |
|
|
|
|
((unsigned)buf[1]<<8 | buf[0]);
|
|
|
|
*(uint32 *)buf = t;
|
|
|
|
buf += 4;
|
|
|
|
} while (--longs);
|
|
|
|
}
|
|
|
|
/* The four core functions - F1 is optimized somewhat */
|
|
|
|
|
|
|
|
/* #define F1(x, y, z) (x & y | ~x & z) */
|
|
|
|
#define F1(x, y, z) (z ^ (x & (y ^ z)))
|
|
|
|
#define F2(x, y, z) F1(z, x, y)
|
|
|
|
#define F3(x, y, z) (x ^ y ^ z)
|
|
|
|
#define F4(x, y, z) (y ^ (x | ~z))
|
|
|
|
|
|
|
|
/* This is the central step in the MD5 algorithm. */
|
|
|
|
#define MD5STEP(f, w, x, y, z, data, s) \
|
|
|
|
( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The core of the MD5 algorithm, this alters an existing MD5 hash to
|
|
|
|
* reflect the addition of 16 longwords of new data. MD5Update blocks
|
|
|
|
* the data and converts bytes into longwords for this routine.
|
|
|
|
*/
|
|
|
|
static void MD5Transform(uint32 buf[4], const uint32 in[16]){
|
|
|
|
register uint32 a, b, c, d;
|
|
|
|
|
|
|
|
a = buf[0];
|
|
|
|
b = buf[1];
|
|
|
|
c = buf[2];
|
|
|
|
d = buf[3];
|
|
|
|
|
|
|
|
MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
|
|
|
|
MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
|
|
|
|
MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
|
|
|
|
MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
|
|
|
|
MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
|
|
|
|
MD5STEP(F1, d, a, b, c, in[ 5]+0x4787c62a, 12);
|
|
|
|
MD5STEP(F1, c, d, a, b, in[ 6]+0xa8304613, 17);
|
|
|
|
MD5STEP(F1, b, c, d, a, in[ 7]+0xfd469501, 22);
|
|
|
|
MD5STEP(F1, a, b, c, d, in[ 8]+0x698098d8, 7);
|
|
|
|
MD5STEP(F1, d, a, b, c, in[ 9]+0x8b44f7af, 12);
|
|
|
|
MD5STEP(F1, c, d, a, b, in[10]+0xffff5bb1, 17);
|
|
|
|
MD5STEP(F1, b, c, d, a, in[11]+0x895cd7be, 22);
|
|
|
|
MD5STEP(F1, a, b, c, d, in[12]+0x6b901122, 7);
|
|
|
|
MD5STEP(F1, d, a, b, c, in[13]+0xfd987193, 12);
|
|
|
|
MD5STEP(F1, c, d, a, b, in[14]+0xa679438e, 17);
|
|
|
|
MD5STEP(F1, b, c, d, a, in[15]+0x49b40821, 22);
|
|
|
|
|
|
|
|
MD5STEP(F2, a, b, c, d, in[ 1]+0xf61e2562, 5);
|
|
|
|
MD5STEP(F2, d, a, b, c, in[ 6]+0xc040b340, 9);
|
|
|
|
MD5STEP(F2, c, d, a, b, in[11]+0x265e5a51, 14);
|
|
|
|
MD5STEP(F2, b, c, d, a, in[ 0]+0xe9b6c7aa, 20);
|
|
|
|
MD5STEP(F2, a, b, c, d, in[ 5]+0xd62f105d, 5);
|
|
|
|
MD5STEP(F2, d, a, b, c, in[10]+0x02441453, 9);
|
|
|
|
MD5STEP(F2, c, d, a, b, in[15]+0xd8a1e681, 14);
|
|
|
|
MD5STEP(F2, b, c, d, a, in[ 4]+0xe7d3fbc8, 20);
|
|
|
|
MD5STEP(F2, a, b, c, d, in[ 9]+0x21e1cde6, 5);
|
|
|
|
MD5STEP(F2, d, a, b, c, in[14]+0xc33707d6, 9);
|
|
|
|
MD5STEP(F2, c, d, a, b, in[ 3]+0xf4d50d87, 14);
|
|
|
|
MD5STEP(F2, b, c, d, a, in[ 8]+0x455a14ed, 20);
|
|
|
|
MD5STEP(F2, a, b, c, d, in[13]+0xa9e3e905, 5);
|
|
|
|
MD5STEP(F2, d, a, b, c, in[ 2]+0xfcefa3f8, 9);
|
|
|
|
MD5STEP(F2, c, d, a, b, in[ 7]+0x676f02d9, 14);
|
|
|
|
MD5STEP(F2, b, c, d, a, in[12]+0x8d2a4c8a, 20);
|
|
|
|
|
|
|
|
MD5STEP(F3, a, b, c, d, in[ 5]+0xfffa3942, 4);
|
|
|
|
MD5STEP(F3, d, a, b, c, in[ 8]+0x8771f681, 11);
|
|
|
|
MD5STEP(F3, c, d, a, b, in[11]+0x6d9d6122, 16);
|
|
|
|
MD5STEP(F3, b, c, d, a, in[14]+0xfde5380c, 23);
|
|
|
|
MD5STEP(F3, a, b, c, d, in[ 1]+0xa4beea44, 4);
|
|
|
|
MD5STEP(F3, d, a, b, c, in[ 4]+0x4bdecfa9, 11);
|
|
|
|
MD5STEP(F3, c, d, a, b, in[ 7]+0xf6bb4b60, 16);
|
|
|
|
MD5STEP(F3, b, c, d, a, in[10]+0xbebfbc70, 23);
|
|
|
|
MD5STEP(F3, a, b, c, d, in[13]+0x289b7ec6, 4);
|
|
|
|
MD5STEP(F3, d, a, b, c, in[ 0]+0xeaa127fa, 11);
|
|
|
|
MD5STEP(F3, c, d, a, b, in[ 3]+0xd4ef3085, 16);
|
|
|
|
MD5STEP(F3, b, c, d, a, in[ 6]+0x04881d05, 23);
|
|
|
|
MD5STEP(F3, a, b, c, d, in[ 9]+0xd9d4d039, 4);
|
|
|
|
MD5STEP(F3, d, a, b, c, in[12]+0xe6db99e5, 11);
|
|
|
|
MD5STEP(F3, c, d, a, b, in[15]+0x1fa27cf8, 16);
|
|
|
|
MD5STEP(F3, b, c, d, a, in[ 2]+0xc4ac5665, 23);
|
|
|
|
|
|
|
|
MD5STEP(F4, a, b, c, d, in[ 0]+0xf4292244, 6);
|
|
|
|
MD5STEP(F4, d, a, b, c, in[ 7]+0x432aff97, 10);
|
|
|
|
MD5STEP(F4, c, d, a, b, in[14]+0xab9423a7, 15);
|
|
|
|
MD5STEP(F4, b, c, d, a, in[ 5]+0xfc93a039, 21);
|
|
|
|
MD5STEP(F4, a, b, c, d, in[12]+0x655b59c3, 6);
|
|
|
|
MD5STEP(F4, d, a, b, c, in[ 3]+0x8f0ccc92, 10);
|
|
|
|
MD5STEP(F4, c, d, a, b, in[10]+0xffeff47d, 15);
|
|
|
|
MD5STEP(F4, b, c, d, a, in[ 1]+0x85845dd1, 21);
|
|
|
|
MD5STEP(F4, a, b, c, d, in[ 8]+0x6fa87e4f, 6);
|
|
|
|
MD5STEP(F4, d, a, b, c, in[15]+0xfe2ce6e0, 10);
|
|
|
|
MD5STEP(F4, c, d, a, b, in[ 6]+0xa3014314, 15);
|
|
|
|
MD5STEP(F4, b, c, d, a, in[13]+0x4e0811a1, 21);
|
|
|
|
MD5STEP(F4, a, b, c, d, in[ 4]+0xf7537e82, 6);
|
|
|
|
MD5STEP(F4, d, a, b, c, in[11]+0xbd3af235, 10);
|
|
|
|
MD5STEP(F4, c, d, a, b, in[ 2]+0x2ad7d2bb, 15);
|
|
|
|
MD5STEP(F4, b, c, d, a, in[ 9]+0xeb86d391, 21);
|
|
|
|
|
|
|
|
buf[0] += a;
|
|
|
|
buf[1] += b;
|
|
|
|
buf[2] += c;
|
|
|
|
buf[3] += d;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
|
|
|
|
* initialization constants.
|
|
|
|
*/
|
|
|
|
static void MD5Init(MD5Context *ctx){
|
|
|
|
ctx->isInit = 1;
|
|
|
|
ctx->buf[0] = 0x67452301;
|
|
|
|
ctx->buf[1] = 0xefcdab89;
|
|
|
|
ctx->buf[2] = 0x98badcfe;
|
|
|
|
ctx->buf[3] = 0x10325476;
|
|
|
|
ctx->bits[0] = 0;
|
|
|
|
ctx->bits[1] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update context to reflect the concatenation of another buffer full
|
|
|
|
* of bytes.
|
|
|
|
*/
|
|
|
|
static
|
|
|
|
void MD5Update(MD5Context *ctx, const unsigned char *buf, unsigned int len){
|
|
|
|
uint32 t;
|
|
|
|
|
|
|
|
/* Update bitcount */
|
|
|
|
|
|
|
|
t = ctx->bits[0];
|
|
|
|
if ((ctx->bits[0] = t + ((uint32)len << 3)) < t)
|
|
|
|
ctx->bits[1]++; /* Carry from low to high */
|
|
|
|
ctx->bits[1] += len >> 29;
|
|
|
|
|
|
|
|
t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
|
|
|
|
|
|
|
|
/* Handle any leading odd-sized chunks */
|
|
|
|
|
|
|
|
if ( t ) {
|
|
|
|
unsigned char *p = (unsigned char *)ctx->in + t;
|
|
|
|
|
|
|
|
t = 64-t;
|
|
|
|
if (len < t) {
|
|
|
|
memcpy(p, buf, len);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
memcpy(p, buf, t);
|
|
|
|
byteReverse(ctx->in, 16);
|
|
|
|
MD5Transform(ctx->buf, (uint32 *)ctx->in);
|
|
|
|
buf += t;
|
|
|
|
len -= t;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Process data in 64-byte chunks */
|
|
|
|
|
|
|
|
while (len >= 64) {
|
|
|
|
memcpy(ctx->in, buf, 64);
|
|
|
|
byteReverse(ctx->in, 16);
|
|
|
|
MD5Transform(ctx->buf, (uint32 *)ctx->in);
|
|
|
|
buf += 64;
|
|
|
|
len -= 64;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle any remaining bytes of data. */
|
|
|
|
|
|
|
|
memcpy(ctx->in, buf, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Final wrapup - pad to 64-byte boundary with the bit pattern
|
|
|
|
* 1 0* (64-bit count of bits processed, MSB-first)
|
|
|
|
*/
|
|
|
|
static void MD5Final(unsigned char digest[16], MD5Context *ctx){
|
|
|
|
unsigned count;
|
|
|
|
unsigned char *p;
|
|
|
|
|
|
|
|
/* Compute number of bytes mod 64 */
|
|
|
|
count = (ctx->bits[0] >> 3) & 0x3F;
|
|
|
|
|
|
|
|
/* Set the first char of padding to 0x80. This is safe since there is
|
|
|
|
always at least one byte free */
|
|
|
|
p = ctx->in + count;
|
|
|
|
*p++ = 0x80;
|
|
|
|
|
|
|
|
/* Bytes of padding needed to make 64 bytes */
|
|
|
|
count = 64 - 1 - count;
|
|
|
|
|
|
|
|
/* Pad out to 56 mod 64 */
|
|
|
|
if (count < 8) {
|
|
|
|
/* Two lots of padding: Pad the first block to 64 bytes */
|
|
|
|
memset(p, 0, count);
|
|
|
|
byteReverse(ctx->in, 16);
|
|
|
|
MD5Transform(ctx->buf, (uint32 *)ctx->in);
|
|
|
|
|
|
|
|
/* Now fill the next block with 56 bytes */
|
|
|
|
memset(ctx->in, 0, 56);
|
|
|
|
} else {
|
|
|
|
/* Pad block to 56 bytes */
|
|
|
|
memset(p, 0, count-8);
|
|
|
|
}
|
|
|
|
byteReverse(ctx->in, 14);
|
|
|
|
|
|
|
|
/* Append length in bits and transform */
|
2013-12-20 22:57:44 +04:00
|
|
|
memcpy(ctx->in + 14*4, ctx->bits, 8);
|
2009-10-23 00:52:05 +04:00
|
|
|
|
|
|
|
MD5Transform(ctx->buf, (uint32 *)ctx->in);
|
|
|
|
byteReverse((unsigned char *)ctx->buf, 4);
|
|
|
|
memcpy(digest, ctx->buf, 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Convert a 128-bit MD5 digest into a 32-digit base-16 number.
|
|
|
|
*/
|
|
|
|
static void MD5DigestToBase16(unsigned char *digest, char *zBuf){
|
|
|
|
static char const zEncode[] = "0123456789abcdef";
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for(j=i=0; i<16; i++){
|
|
|
|
int a = digest[i];
|
|
|
|
zBuf[j++] = zEncode[(a>>4)&0xf];
|
|
|
|
zBuf[j++] = zEncode[a & 0xf];
|
|
|
|
}
|
|
|
|
zBuf[j] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Convert a 128-bit MD5 digest into sequency of eight 5-digit integers
|
|
|
|
** each representing 16 bits of the digest and separated from each
|
|
|
|
** other by a "-" character.
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
2009-10-23 00:52:05 +04:00
|
|
|
static void MD5DigestToBase10x8(unsigned char digest[16], char zDigest[50]){
|
|
|
|
int i, j;
|
|
|
|
unsigned int x;
|
|
|
|
for(i=j=0; i<16; i+=2){
|
|
|
|
x = digest[i]*256 + digest[i+1];
|
|
|
|
if( i>0 ) zDigest[j++] = '-';
|
|
|
|
sprintf(&zDigest[j], "%05u", x);
|
|
|
|
j += 5;
|
|
|
|
}
|
|
|
|
zDigest[j] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** A TCL command for md5. The argument is the text to be hashed. The
|
|
|
|
** Result is the hash in base64.
|
|
|
|
*/
|
|
|
|
static int md5_cmd(void*cd, Tcl_Interp *interp, int argc, const char **argv){
|
|
|
|
MD5Context ctx;
|
|
|
|
unsigned char digest[16];
|
|
|
|
char zBuf[50];
|
|
|
|
void (*converter)(unsigned char*, char*);
|
|
|
|
|
|
|
|
if( argc!=2 ){
|
|
|
|
Tcl_AppendResult(interp,"wrong # args: should be \"", argv[0],
|
2014-02-07 23:26:13 +04:00
|
|
|
" TEXT\"", (char*)0);
|
2009-10-23 00:52:05 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
MD5Init(&ctx);
|
|
|
|
MD5Update(&ctx, (unsigned char*)argv[1], (unsigned)strlen(argv[1]));
|
|
|
|
MD5Final(digest, &ctx);
|
|
|
|
converter = (void(*)(unsigned char*,char*))cd;
|
|
|
|
converter(digest, zBuf);
|
|
|
|
Tcl_AppendResult(interp, zBuf, (char*)0);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** A TCL command to take the md5 hash of a file. The argument is the
|
|
|
|
** name of the file.
|
|
|
|
*/
|
|
|
|
static int md5file_cmd(void*cd, Tcl_Interp*interp, int argc, const char **argv){
|
|
|
|
FILE *in;
|
|
|
|
MD5Context ctx;
|
|
|
|
void (*converter)(unsigned char*, char*);
|
|
|
|
unsigned char digest[16];
|
|
|
|
char zBuf[10240];
|
|
|
|
|
|
|
|
if( argc!=2 ){
|
|
|
|
Tcl_AppendResult(interp,"wrong # args: should be \"", argv[0],
|
2014-02-07 23:26:13 +04:00
|
|
|
" FILENAME\"", (char*)0);
|
2009-10-23 00:52:05 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
in = fopen(argv[1],"rb");
|
|
|
|
if( in==0 ){
|
|
|
|
Tcl_AppendResult(interp,"unable to open file \"", argv[1],
|
2014-02-07 23:26:13 +04:00
|
|
|
"\" for reading", (char*)0);
|
2009-10-23 00:52:05 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
MD5Init(&ctx);
|
|
|
|
for(;;){
|
|
|
|
int n;
|
2012-04-19 22:04:28 +04:00
|
|
|
n = (int)fread(zBuf, 1, sizeof(zBuf), in);
|
2009-10-23 00:52:05 +04:00
|
|
|
if( n<=0 ) break;
|
|
|
|
MD5Update(&ctx, (unsigned char*)zBuf, (unsigned)n);
|
|
|
|
}
|
|
|
|
fclose(in);
|
|
|
|
MD5Final(digest, &ctx);
|
|
|
|
converter = (void(*)(unsigned char*,char*))cd;
|
|
|
|
converter(digest, zBuf);
|
|
|
|
Tcl_AppendResult(interp, zBuf, (char*)0);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Register the four new TCL commands for generating MD5 checksums
|
|
|
|
** with the TCL interpreter.
|
|
|
|
*/
|
|
|
|
int Md5_Init(Tcl_Interp *interp){
|
|
|
|
Tcl_CreateCommand(interp, "md5", (Tcl_CmdProc*)md5_cmd,
|
|
|
|
MD5DigestToBase16, 0);
|
|
|
|
Tcl_CreateCommand(interp, "md5-10x8", (Tcl_CmdProc*)md5_cmd,
|
|
|
|
MD5DigestToBase10x8, 0);
|
|
|
|
Tcl_CreateCommand(interp, "md5file", (Tcl_CmdProc*)md5file_cmd,
|
|
|
|
MD5DigestToBase16, 0);
|
|
|
|
Tcl_CreateCommand(interp, "md5file-10x8", (Tcl_CmdProc*)md5file_cmd,
|
|
|
|
MD5DigestToBase10x8, 0);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
#endif /* defined(SQLITE_TEST) || defined(SQLITE_TCLMD5) */
|
|
|
|
|
|
|
|
#if defined(SQLITE_TEST)
|
|
|
|
/*
|
|
|
|
** During testing, the special md5sum() aggregate function is available.
|
|
|
|
** inside SQLite. The following routines implement that function.
|
|
|
|
*/
|
|
|
|
static void md5step(sqlite3_context *context, int argc, sqlite3_value **argv){
|
|
|
|
MD5Context *p;
|
|
|
|
int i;
|
|
|
|
if( argc<1 ) return;
|
|
|
|
p = sqlite3_aggregate_context(context, sizeof(*p));
|
|
|
|
if( p==0 ) return;
|
|
|
|
if( !p->isInit ){
|
|
|
|
MD5Init(p);
|
|
|
|
}
|
|
|
|
for(i=0; i<argc; i++){
|
|
|
|
const char *zData = (char*)sqlite3_value_text(argv[i]);
|
|
|
|
if( zData ){
|
2012-04-19 22:04:28 +04:00
|
|
|
MD5Update(p, (unsigned char*)zData, (int)strlen(zData));
|
2009-10-23 00:52:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static void md5finalize(sqlite3_context *context){
|
|
|
|
MD5Context *p;
|
|
|
|
unsigned char digest[16];
|
|
|
|
char zBuf[33];
|
|
|
|
p = sqlite3_aggregate_context(context, sizeof(*p));
|
|
|
|
MD5Final(digest,p);
|
|
|
|
MD5DigestToBase16(digest, zBuf);
|
|
|
|
sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT);
|
|
|
|
}
|
|
|
|
int Md5_Register(sqlite3 *db){
|
|
|
|
int rc = sqlite3_create_function(db, "md5sum", -1, SQLITE_UTF8, 0, 0,
|
|
|
|
md5step, md5finalize);
|
|
|
|
sqlite3_overload_function(db, "md5sum", -1); /* To exercise this API */
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
#endif /* defined(SQLITE_TEST) */
|
|
|
|
|
2000-05-30 00:41:49 +04:00
|
|
|
|
|
|
|
/*
|
2004-07-23 04:01:38 +04:00
|
|
|
** If the macro TCLSH is one, then put in code this for the
|
|
|
|
** "main" routine that will initialize Tcl and take input from
|
2007-08-31 18:31:44 +04:00
|
|
|
** standard input, or if a file is named on the command line
|
|
|
|
** the TCL interpreter reads and evaluates that file.
|
2000-05-30 00:41:49 +04:00
|
|
|
*/
|
2004-07-23 04:01:38 +04:00
|
|
|
#if TCLSH==1
|
2011-09-21 20:43:07 +04:00
|
|
|
static const char *tclsh_main_loop(void){
|
|
|
|
static const char zMainloop[] =
|
|
|
|
"set line {}\n"
|
|
|
|
"while {![eof stdin]} {\n"
|
|
|
|
"if {$line!=\"\"} {\n"
|
|
|
|
"puts -nonewline \"> \"\n"
|
|
|
|
"} else {\n"
|
|
|
|
"puts -nonewline \"% \"\n"
|
|
|
|
"}\n"
|
|
|
|
"flush stdout\n"
|
|
|
|
"append line [gets stdin]\n"
|
|
|
|
"if {[info complete $line]} {\n"
|
|
|
|
"if {[catch {uplevel #0 $line} result]} {\n"
|
|
|
|
"puts stderr \"Error: $result\"\n"
|
|
|
|
"} elseif {$result!=\"\"} {\n"
|
|
|
|
"puts $result\n"
|
|
|
|
"}\n"
|
|
|
|
"set line {}\n"
|
|
|
|
"} else {\n"
|
|
|
|
"append line \\n\n"
|
2000-05-30 00:41:49 +04:00
|
|
|
"}\n"
|
|
|
|
"}\n"
|
2011-09-21 20:43:07 +04:00
|
|
|
;
|
|
|
|
return zMainloop;
|
|
|
|
}
|
2004-07-23 04:01:38 +04:00
|
|
|
#endif
|
2010-07-12 20:47:48 +04:00
|
|
|
#if TCLSH==2
|
2011-09-21 20:43:07 +04:00
|
|
|
static const char *tclsh_main_loop(void);
|
2010-07-12 20:47:48 +04:00
|
|
|
#endif
|
2004-07-23 04:01:38 +04:00
|
|
|
|
2010-06-07 18:28:16 +04:00
|
|
|
#ifdef SQLITE_TEST
|
|
|
|
static void init_all(Tcl_Interp *);
|
|
|
|
static int init_all_cmd(
|
|
|
|
ClientData cd,
|
|
|
|
Tcl_Interp *interp,
|
|
|
|
int objc,
|
|
|
|
Tcl_Obj *CONST objv[]
|
|
|
|
){
|
2009-02-17 19:29:10 +03:00
|
|
|
|
2010-06-07 18:28:16 +04:00
|
|
|
Tcl_Interp *slave;
|
|
|
|
if( objc!=2 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 1, objv, "SLAVE");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
slave = Tcl_GetSlave(interp, Tcl_GetString(objv[1]));
|
|
|
|
if( !slave ){
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
init_all(slave);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
2011-06-27 20:55:50 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Tclcmd: db_use_legacy_prepare DB BOOLEAN
|
|
|
|
**
|
|
|
|
** The first argument to this command must be a database command created by
|
|
|
|
** [sqlite3]. If the second argument is true, then the handle is configured
|
|
|
|
** to use the sqlite3_prepare_v2() function to prepare statements. If it
|
|
|
|
** is false, sqlite3_prepare().
|
|
|
|
*/
|
|
|
|
static int db_use_legacy_prepare_cmd(
|
|
|
|
ClientData cd,
|
|
|
|
Tcl_Interp *interp,
|
|
|
|
int objc,
|
|
|
|
Tcl_Obj *CONST objv[]
|
|
|
|
){
|
|
|
|
Tcl_CmdInfo cmdInfo;
|
|
|
|
SqliteDb *pDb;
|
|
|
|
int bPrepare;
|
|
|
|
|
|
|
|
if( objc!=3 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 1, objv, "DB BOOLEAN");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !Tcl_GetCommandInfo(interp, Tcl_GetString(objv[1]), &cmdInfo) ){
|
|
|
|
Tcl_AppendResult(interp, "no such db: ", Tcl_GetString(objv[1]), (char*)0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
pDb = (SqliteDb*)cmdInfo.objClientData;
|
|
|
|
if( Tcl_GetBooleanFromObj(interp, objv[2], &bPrepare) ){
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
pDb->bLegacyPrepare = bPrepare;
|
|
|
|
|
|
|
|
Tcl_ResetResult(interp);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
2014-10-31 23:11:32 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Tclcmd: db_last_stmt_ptr DB
|
|
|
|
**
|
|
|
|
** If the statement cache associated with database DB is not empty,
|
|
|
|
** return the text representation of the most recently used statement
|
|
|
|
** handle.
|
|
|
|
*/
|
|
|
|
static int db_last_stmt_ptr(
|
|
|
|
ClientData cd,
|
|
|
|
Tcl_Interp *interp,
|
|
|
|
int objc,
|
|
|
|
Tcl_Obj *CONST objv[]
|
|
|
|
){
|
|
|
|
extern int sqlite3TestMakePointerStr(Tcl_Interp*, char*, void*);
|
|
|
|
Tcl_CmdInfo cmdInfo;
|
|
|
|
SqliteDb *pDb;
|
|
|
|
sqlite3_stmt *pStmt = 0;
|
|
|
|
char zBuf[100];
|
|
|
|
|
|
|
|
if( objc!=2 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 1, objv, "DB");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !Tcl_GetCommandInfo(interp, Tcl_GetString(objv[1]), &cmdInfo) ){
|
|
|
|
Tcl_AppendResult(interp, "no such db: ", Tcl_GetString(objv[1]), (char*)0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
pDb = (SqliteDb*)cmdInfo.objClientData;
|
|
|
|
|
|
|
|
if( pDb->stmtList ) pStmt = pDb->stmtList->pStmt;
|
|
|
|
if( sqlite3TestMakePointerStr(interp, zBuf, pStmt) ){
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
Tcl_SetResult(interp, zBuf, TCL_VOLATILE);
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
2010-06-07 18:28:16 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Configure the interpreter passed as the first argument to have access
|
|
|
|
** to the commands and linked variables that make up:
|
|
|
|
**
|
|
|
|
** * the [sqlite3] extension itself,
|
|
|
|
**
|
|
|
|
** * If SQLITE_TCLMD5 or SQLITE_TEST is defined, the Md5 commands, and
|
|
|
|
**
|
|
|
|
** * If SQLITE_TEST is set, the various test interfaces used by the Tcl
|
|
|
|
** test suite.
|
|
|
|
*/
|
|
|
|
static void init_all(Tcl_Interp *interp){
|
2004-06-18 21:10:16 +04:00
|
|
|
Sqlite3_Init(interp);
|
2010-06-07 18:28:16 +04:00
|
|
|
|
2009-10-23 00:52:05 +04:00
|
|
|
#if defined(SQLITE_TEST) || defined(SQLITE_TCLMD5)
|
|
|
|
Md5_Init(interp);
|
|
|
|
#endif
|
2010-06-07 18:28:16 +04:00
|
|
|
|
2011-09-21 20:43:07 +04:00
|
|
|
/* Install the [register_dbstat_vtab] command to access the implementation
|
|
|
|
** of virtual table dbstat (source file test_stat.c). This command is
|
|
|
|
** required for testfixture and sqlite3_analyzer, but not by the production
|
|
|
|
** Tcl extension. */
|
|
|
|
#if defined(SQLITE_TEST) || TCLSH==2
|
|
|
|
{
|
|
|
|
extern int SqlitetestStat_Init(Tcl_Interp*);
|
|
|
|
SqlitetestStat_Init(interp);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-04-15 04:37:09 +04:00
|
|
|
#ifdef SQLITE_TEST
|
2001-04-07 19:24:33 +04:00
|
|
|
{
|
2007-08-15 23:16:43 +04:00
|
|
|
extern int Sqliteconfig_Init(Tcl_Interp*);
|
2001-04-07 19:24:33 +04:00
|
|
|
extern int Sqlitetest1_Init(Tcl_Interp*);
|
2001-08-20 04:33:58 +04:00
|
|
|
extern int Sqlitetest2_Init(Tcl_Interp*);
|
|
|
|
extern int Sqlitetest3_Init(Tcl_Interp*);
|
2003-12-19 05:52:05 +03:00
|
|
|
extern int Sqlitetest4_Init(Tcl_Interp*);
|
2004-05-07 03:37:52 +04:00
|
|
|
extern int Sqlitetest5_Init(Tcl_Interp*);
|
2005-11-26 03:25:00 +03:00
|
|
|
extern int Sqlitetest6_Init(Tcl_Interp*);
|
2006-01-10 02:40:25 +03:00
|
|
|
extern int Sqlitetest7_Init(Tcl_Interp*);
|
2006-06-12 03:41:55 +04:00
|
|
|
extern int Sqlitetest8_Init(Tcl_Interp*);
|
2007-03-29 16:19:11 +04:00
|
|
|
extern int Sqlitetest9_Init(Tcl_Interp*);
|
2006-01-09 20:29:52 +03:00
|
|
|
extern int Sqlitetestasync_Init(Tcl_Interp*);
|
2006-08-24 00:07:20 +04:00
|
|
|
extern int Sqlitetest_autoext_Init(Tcl_Interp*);
|
2014-11-07 17:41:11 +03:00
|
|
|
extern int Sqlitetest_blob_Init(Tcl_Interp*);
|
2010-04-07 11:57:38 +04:00
|
|
|
extern int Sqlitetest_demovfs_Init(Tcl_Interp *);
|
2008-03-19 19:08:53 +03:00
|
|
|
extern int Sqlitetest_func_Init(Tcl_Interp*);
|
2007-04-06 19:02:13 +04:00
|
|
|
extern int Sqlitetest_hexio_Init(Tcl_Interp*);
|
2009-08-17 19:16:19 +04:00
|
|
|
extern int Sqlitetest_init_Init(Tcl_Interp*);
|
2007-08-15 23:16:43 +04:00
|
|
|
extern int Sqlitetest_malloc_Init(Tcl_Interp*);
|
2008-06-18 13:45:56 +04:00
|
|
|
extern int Sqlitetest_mutex_Init(Tcl_Interp*);
|
2007-08-15 23:16:43 +04:00
|
|
|
extern int Sqlitetestschema_Init(Tcl_Interp*);
|
|
|
|
extern int Sqlitetestsse_Init(Tcl_Interp*);
|
|
|
|
extern int Sqlitetesttclvar_Init(Tcl_Interp*);
|
2013-01-11 13:58:54 +04:00
|
|
|
extern int Sqlitetestfs_Init(Tcl_Interp*);
|
2007-09-07 15:29:25 +04:00
|
|
|
extern int SqlitetestThread_Init(Tcl_Interp*);
|
2007-09-14 20:20:00 +04:00
|
|
|
extern int SqlitetestOnefile_Init();
|
2008-04-10 18:51:00 +04:00
|
|
|
extern int SqlitetestOsinst_Init(Tcl_Interp*);
|
2009-02-03 19:51:24 +03:00
|
|
|
extern int Sqlitetestbackup_Init(Tcl_Interp*);
|
2009-11-10 20:24:37 +03:00
|
|
|
extern int Sqlitetestintarray_Init(Tcl_Interp*);
|
2010-05-05 23:04:59 +04:00
|
|
|
extern int Sqlitetestvfs_Init(Tcl_Interp *);
|
2010-08-28 22:58:00 +04:00
|
|
|
extern int Sqlitetestrtree_Init(Tcl_Interp*);
|
2010-09-01 15:40:05 +04:00
|
|
|
extern int Sqlitequota_Init(Tcl_Interp*);
|
2010-11-04 23:50:27 +03:00
|
|
|
extern int Sqlitemultiplex_Init(Tcl_Interp*);
|
2010-11-19 21:20:09 +03:00
|
|
|
extern int SqliteSuperlock_Init(Tcl_Interp*);
|
2011-03-28 23:10:06 +04:00
|
|
|
extern int SqlitetestSyscall_Init(Tcl_Interp*);
|
2005-04-28 21:18:48 +04:00
|
|
|
|
2011-06-20 15:15:06 +04:00
|
|
|
#if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4)
|
2011-06-13 13:11:01 +04:00
|
|
|
extern int Sqlitetestfts3_Init(Tcl_Interp *interp);
|
|
|
|
#endif
|
|
|
|
|
2010-12-29 21:24:38 +03:00
|
|
|
#ifdef SQLITE_ENABLE_ZIPVFS
|
|
|
|
extern int Zipvfs_Init(Tcl_Interp*);
|
|
|
|
Zipvfs_Init(interp);
|
|
|
|
#endif
|
|
|
|
|
2007-08-15 23:16:43 +04:00
|
|
|
Sqliteconfig_Init(interp);
|
2004-05-11 10:17:21 +04:00
|
|
|
Sqlitetest1_Init(interp);
|
2001-08-20 04:33:58 +04:00
|
|
|
Sqlitetest2_Init(interp);
|
2004-05-07 21:57:49 +04:00
|
|
|
Sqlitetest3_Init(interp);
|
2004-05-26 06:04:57 +04:00
|
|
|
Sqlitetest4_Init(interp);
|
2004-05-07 03:37:52 +04:00
|
|
|
Sqlitetest5_Init(interp);
|
2005-11-26 03:25:00 +03:00
|
|
|
Sqlitetest6_Init(interp);
|
2006-01-10 02:40:25 +03:00
|
|
|
Sqlitetest7_Init(interp);
|
2006-06-12 03:41:55 +04:00
|
|
|
Sqlitetest8_Init(interp);
|
2007-03-29 16:19:11 +04:00
|
|
|
Sqlitetest9_Init(interp);
|
2006-01-09 20:29:52 +03:00
|
|
|
Sqlitetestasync_Init(interp);
|
2006-08-24 00:07:20 +04:00
|
|
|
Sqlitetest_autoext_Init(interp);
|
2014-11-07 17:41:11 +03:00
|
|
|
Sqlitetest_blob_Init(interp);
|
2010-04-07 11:57:38 +04:00
|
|
|
Sqlitetest_demovfs_Init(interp);
|
2008-03-19 19:08:53 +03:00
|
|
|
Sqlitetest_func_Init(interp);
|
2007-04-06 19:02:13 +04:00
|
|
|
Sqlitetest_hexio_Init(interp);
|
2009-08-17 19:16:19 +04:00
|
|
|
Sqlitetest_init_Init(interp);
|
2007-08-15 23:16:43 +04:00
|
|
|
Sqlitetest_malloc_Init(interp);
|
2008-06-18 13:45:56 +04:00
|
|
|
Sqlitetest_mutex_Init(interp);
|
2007-08-15 23:16:43 +04:00
|
|
|
Sqlitetestschema_Init(interp);
|
|
|
|
Sqlitetesttclvar_Init(interp);
|
2013-01-11 13:58:54 +04:00
|
|
|
Sqlitetestfs_Init(interp);
|
2007-09-07 15:29:25 +04:00
|
|
|
SqlitetestThread_Init(interp);
|
2007-09-14 20:20:00 +04:00
|
|
|
SqlitetestOnefile_Init(interp);
|
2008-04-10 18:51:00 +04:00
|
|
|
SqlitetestOsinst_Init(interp);
|
2009-02-03 19:51:24 +03:00
|
|
|
Sqlitetestbackup_Init(interp);
|
2009-11-10 20:24:37 +03:00
|
|
|
Sqlitetestintarray_Init(interp);
|
2010-05-05 23:04:59 +04:00
|
|
|
Sqlitetestvfs_Init(interp);
|
2010-08-28 22:58:00 +04:00
|
|
|
Sqlitetestrtree_Init(interp);
|
2010-09-01 15:40:05 +04:00
|
|
|
Sqlitequota_Init(interp);
|
2010-11-04 23:50:27 +03:00
|
|
|
Sqlitemultiplex_Init(interp);
|
2010-11-19 21:20:09 +03:00
|
|
|
SqliteSuperlock_Init(interp);
|
2011-03-28 23:10:06 +04:00
|
|
|
SqlitetestSyscall_Init(interp);
|
2007-09-14 20:20:00 +04:00
|
|
|
|
2011-06-20 15:15:06 +04:00
|
|
|
#if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4)
|
2011-06-13 13:11:01 +04:00
|
|
|
Sqlitetestfts3_Init(interp);
|
|
|
|
#endif
|
|
|
|
|
2011-06-27 20:55:50 +04:00
|
|
|
Tcl_CreateObjCommand(
|
|
|
|
interp, "load_testfixture_extensions", init_all_cmd, 0, 0
|
|
|
|
);
|
|
|
|
Tcl_CreateObjCommand(
|
|
|
|
interp, "db_use_legacy_prepare", db_use_legacy_prepare_cmd, 0, 0
|
|
|
|
);
|
2014-10-31 23:11:32 +03:00
|
|
|
Tcl_CreateObjCommand(
|
|
|
|
interp, "db_last_stmt_ptr", db_last_stmt_ptr, 0, 0
|
|
|
|
);
|
2010-06-07 18:28:16 +04:00
|
|
|
|
2005-04-28 23:03:37 +04:00
|
|
|
#ifdef SQLITE_SSE
|
2005-04-28 21:18:48 +04:00
|
|
|
Sqlitetestsse_Init(interp);
|
|
|
|
#endif
|
2001-04-07 19:24:33 +04:00
|
|
|
}
|
|
|
|
#endif
|
2010-06-07 18:28:16 +04:00
|
|
|
}
|
|
|
|
|
2015-01-10 00:54:58 +03:00
|
|
|
/* Needed for the setrlimit() system call on unix */
|
|
|
|
#if defined(unix)
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#endif
|
|
|
|
|
2010-06-07 18:28:16 +04:00
|
|
|
#define TCLSH_MAIN main /* Needed to fake out mktclapp */
|
|
|
|
int TCLSH_MAIN(int argc, char **argv){
|
|
|
|
Tcl_Interp *interp;
|
2013-08-15 12:06:15 +04:00
|
|
|
|
|
|
|
#if !defined(_WIN32_WCE)
|
|
|
|
if( getenv("BREAK") ){
|
|
|
|
fprintf(stderr,
|
|
|
|
"attach debugger to process %d and press any key to continue.\n",
|
|
|
|
GETPID());
|
|
|
|
fgetc(stdin);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-01-10 00:54:58 +03:00
|
|
|
/* Since the primary use case for this binary is testing of SQLite,
|
|
|
|
** be sure to generate core files if we crash */
|
|
|
|
#if defined(SQLITE_TEST) && defined(unix)
|
|
|
|
{ struct rlimit x;
|
|
|
|
getrlimit(RLIMIT_CORE, &x);
|
|
|
|
x.rlim_cur = x.rlim_max;
|
|
|
|
setrlimit(RLIMIT_CORE, &x);
|
|
|
|
}
|
|
|
|
#endif /* SQLITE_TEST && unix */
|
|
|
|
|
|
|
|
|
2010-06-07 18:28:16 +04:00
|
|
|
/* Call sqlite3_shutdown() once before doing anything else. This is to
|
|
|
|
** test that sqlite3_shutdown() can be safely called by a process before
|
|
|
|
** sqlite3_initialize() is. */
|
|
|
|
sqlite3_shutdown();
|
|
|
|
|
2011-09-21 20:43:07 +04:00
|
|
|
Tcl_FindExecutable(argv[0]);
|
2014-02-14 04:25:03 +04:00
|
|
|
Tcl_SetSystemEncoding(NULL, "utf-8");
|
2011-09-21 20:43:07 +04:00
|
|
|
interp = Tcl_CreateInterp();
|
|
|
|
|
2010-07-12 20:47:48 +04:00
|
|
|
#if TCLSH==2
|
|
|
|
sqlite3_config(SQLITE_CONFIG_SINGLETHREAD);
|
|
|
|
#endif
|
2010-06-07 18:28:16 +04:00
|
|
|
|
|
|
|
init_all(interp);
|
2009-11-10 04:13:25 +03:00
|
|
|
if( argc>=2 ){
|
2000-05-30 00:41:49 +04:00
|
|
|
int i;
|
2006-08-23 03:53:46 +04:00
|
|
|
char zArgc[32];
|
|
|
|
sqlite3_snprintf(sizeof(zArgc), zArgc, "%d", argc-(3-TCLSH));
|
|
|
|
Tcl_SetVar(interp,"argc", zArgc, TCL_GLOBAL_ONLY);
|
2000-05-30 00:41:49 +04:00
|
|
|
Tcl_SetVar(interp,"argv0",argv[1],TCL_GLOBAL_ONLY);
|
|
|
|
Tcl_SetVar(interp,"argv", "", TCL_GLOBAL_ONLY);
|
2004-12-02 23:17:00 +03:00
|
|
|
for(i=3-TCLSH; i<argc; i++){
|
2000-05-30 00:41:49 +04:00
|
|
|
Tcl_SetVar(interp, "argv", argv[i],
|
|
|
|
TCL_GLOBAL_ONLY | TCL_LIST_ELEMENT | TCL_APPEND_VALUE);
|
|
|
|
}
|
2010-07-12 20:47:48 +04:00
|
|
|
if( TCLSH==1 && Tcl_EvalFile(interp, argv[1])!=TCL_OK ){
|
2002-07-06 20:32:14 +04:00
|
|
|
const char *zInfo = Tcl_GetVar(interp, "errorInfo", TCL_GLOBAL_ONLY);
|
2009-01-15 02:38:02 +03:00
|
|
|
if( zInfo==0 ) zInfo = Tcl_GetStringResult(interp);
|
2000-06-04 16:58:36 +04:00
|
|
|
fprintf(stderr,"%s: %s\n", *argv, zInfo);
|
2000-05-30 00:41:49 +04:00
|
|
|
return 1;
|
|
|
|
}
|
2004-07-23 04:01:38 +04:00
|
|
|
}
|
2010-07-12 20:47:48 +04:00
|
|
|
if( TCLSH==2 || argc<=1 ){
|
2011-09-21 20:43:07 +04:00
|
|
|
Tcl_GlobalEval(interp, tclsh_main_loop());
|
2000-05-30 00:41:49 +04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* TCLSH */
|