blob: 1b9f91405e5dc931f003a10a57eecf9be35bd7b5 [file] [log] [blame]
drh75897232000-05-29 14:26:00 +00001/*
drhb19a2bc2001-09-16 00:13:26 +00002** 2001 September 15
drh75897232000-05-29 14:26:00 +00003**
drhb19a2bc2001-09-16 00:13:26 +00004** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
drh75897232000-05-29 14:26:00 +00006**
drhb19a2bc2001-09-16 00:13:26 +00007** May you do good and not evil.
8** May you find forgiveness for yourself and forgive others.
9** May you share freely, never taking more than you give.
drh75897232000-05-29 14:26:00 +000010**
11*************************************************************************
drhbd08af42007-04-05 21:58:33 +000012** A TCL Interface to SQLite. Append this file to sqlite3.c and
13** compile the whole thing to build a TCL-enabled version of SQLite.
drh57a02272009-10-22 20:52:05 +000014**
15** Compile-time options:
16**
17** -DTCLSH=1 Add a "main()" routine that works as a tclsh.
18**
19** -DSQLITE_TCLMD5 When used in conjuction with -DTCLSH=1, add
20** four new commands to the TCL interpreter for
21** generating MD5 checksums: md5, md5file,
22** md5-10x8, and md5file-10x8.
23**
24** -DSQLITE_TEST When used in conjuction with -DTCLSH=1, add
25** hundreds of new commands used for testing
26** SQLite. This option implies -DSQLITE_TCLMD5.
drh75897232000-05-29 14:26:00 +000027*/
mistachkin27b2f052015-01-12 19:49:46 +000028
29/*
30** If requested, include the SQLite compiler options file for MSVC.
31*/
32#if defined(INCLUDE_MSVC_H)
mistachkin52b1dbb2016-07-28 14:37:04 +000033# include "msvc.h"
mistachkin27b2f052015-01-12 19:49:46 +000034#endif
35
mistachkin52b1dbb2016-07-28 14:37:04 +000036#if defined(INCLUDE_SQLITE_TCL_H)
37# include "sqlite_tcl.h"
38#else
39# include "tcl.h"
mistachkin7617e4a2016-07-28 17:11:20 +000040# ifndef SQLITE_TCLAPI
41# define SQLITE_TCLAPI
42# endif
mistachkin52b1dbb2016-07-28 14:37:04 +000043#endif
danielk1977b4e9af92007-05-01 17:49:49 +000044#include <errno.h>
drhbd08af42007-04-05 21:58:33 +000045
46/*
47** Some additional include files are needed if this file is not
48** appended to the amalgamation.
49*/
50#ifndef SQLITE_AMALGAMATION
drh65e8c822009-12-01 13:57:48 +000051# include "sqlite3.h"
drhbd08af42007-04-05 21:58:33 +000052# include <stdlib.h>
53# include <string.h>
54# include <assert.h>
drh65e8c822009-12-01 13:57:48 +000055 typedef unsigned char u8;
drhbd08af42007-04-05 21:58:33 +000056#endif
drheb206382009-10-24 15:51:33 +000057#include <ctype.h>
drh75897232000-05-29 14:26:00 +000058
mistachkin1f28e072013-08-15 08:06:15 +000059/* Used to get the current process ID */
60#if !defined(_WIN32)
61# include <unistd.h>
62# define GETPID getpid
63#elif !defined(_WIN32_WCE)
64# ifndef SQLITE_AMALGAMATION
65# define WIN32_LEAN_AND_MEAN
66# include <windows.h>
67# endif
68# define GETPID (int)GetCurrentProcessId
69#endif
70
drhad6e1372006-07-10 21:15:51 +000071/*
72 * Windows needs to know which symbols to export. Unix does not.
73 * BUILD_sqlite should be undefined for Unix.
74 */
75#ifdef BUILD_sqlite
76#undef TCL_STORAGE_CLASS
77#define TCL_STORAGE_CLASS DLLEXPORT
78#endif /* BUILD_sqlite */
drh29bc4612005-10-05 10:40:15 +000079
danielk1977a21c6b62005-01-24 10:25:59 +000080#define NUM_PREPARED_STMTS 10
drhfb7e7652005-01-24 00:28:42 +000081#define MAX_PREPARED_STMTS 100
82
drhc45e6712012-10-03 11:02:33 +000083/* Forward declaration */
84typedef struct SqliteDb SqliteDb;
drh98808ba2001-10-18 12:34:46 +000085
86/*
drhcabb0812002-09-14 13:47:32 +000087** New SQL functions can be created as TCL scripts. Each such function
88** is described by an instance of the following structure.
89*/
90typedef struct SqlFunc SqlFunc;
91struct SqlFunc {
92 Tcl_Interp *interp; /* The TCL interpret to execute the function */
drhd1e47332005-06-26 17:55:33 +000093 Tcl_Obj *pScript; /* The Tcl_Obj representation of the script */
drhc45e6712012-10-03 11:02:33 +000094 SqliteDb *pDb; /* Database connection that owns this function */
drhd1e47332005-06-26 17:55:33 +000095 int useEvalObjv; /* True if it is safe to use Tcl_EvalObjv */
96 char *zName; /* Name of this function */
drhcabb0812002-09-14 13:47:32 +000097 SqlFunc *pNext; /* Next function on the list of them all */
98};
99
100/*
danielk19770202b292004-06-09 09:55:16 +0000101** New collation sequences function can be created as TCL scripts. Each such
102** function is described by an instance of the following structure.
103*/
104typedef struct SqlCollate SqlCollate;
105struct SqlCollate {
106 Tcl_Interp *interp; /* The TCL interpret to execute the function */
107 char *zScript; /* The script to be run */
drhd1e47332005-06-26 17:55:33 +0000108 SqlCollate *pNext; /* Next function on the list of them all */
danielk19770202b292004-06-09 09:55:16 +0000109};
110
111/*
drhfb7e7652005-01-24 00:28:42 +0000112** Prepared statements are cached for faster execution. Each prepared
113** statement is described by an instance of the following structure.
114*/
115typedef struct SqlPreparedStmt SqlPreparedStmt;
116struct SqlPreparedStmt {
117 SqlPreparedStmt *pNext; /* Next in linked list */
118 SqlPreparedStmt *pPrev; /* Previous on the list */
119 sqlite3_stmt *pStmt; /* The prepared statement */
120 int nSql; /* chars in zSql[] */
danielk1977d0e2a852007-11-14 06:48:48 +0000121 const char *zSql; /* Text of the SQL statement */
dan4a4c11a2009-10-06 14:59:02 +0000122 int nParm; /* Size of apParm array */
123 Tcl_Obj **apParm; /* Array of referenced object pointers */
drhfb7e7652005-01-24 00:28:42 +0000124};
125
danielk1977d04417962007-05-02 13:16:30 +0000126typedef struct IncrblobChannel IncrblobChannel;
127
drhfb7e7652005-01-24 00:28:42 +0000128/*
drhbec3f402000-08-04 13:49:02 +0000129** There is one instance of this structure for each SQLite database
130** that has been opened by the SQLite TCL interface.
danc431fd52011-06-27 16:55:50 +0000131**
132** If this module is built with SQLITE_TEST defined (to create the SQLite
133** testfixture executable), then it may be configured to use either
134** sqlite3_prepare_v2() or sqlite3_prepare() to prepare SQL statements.
135** If SqliteDb.bLegacyPrepare is true, sqlite3_prepare() is used.
drhbec3f402000-08-04 13:49:02 +0000136*/
drhbec3f402000-08-04 13:49:02 +0000137struct SqliteDb {
drhdddca282006-01-03 00:33:50 +0000138 sqlite3 *db; /* The "real" database structure. MUST BE FIRST */
drhd1e47332005-06-26 17:55:33 +0000139 Tcl_Interp *interp; /* The interpreter used for this database */
140 char *zBusy; /* The busy callback routine */
141 char *zCommit; /* The commit hook callback routine */
142 char *zTrace; /* The trace callback routine */
mistachkinb56660f2016-07-14 21:26:09 +0000143 char *zTraceV2; /* The trace_v2 callback routine */
drh19e2d372005-08-29 23:00:03 +0000144 char *zProfile; /* The profile callback routine */
drhd1e47332005-06-26 17:55:33 +0000145 char *zProgress; /* The progress callback routine */
146 char *zAuth; /* The authorization callback routine */
drh1f1549f2008-08-26 21:33:34 +0000147 int disableAuth; /* Disable the authorizer if it exists */
drhd1e47332005-06-26 17:55:33 +0000148 char *zNull; /* Text to substitute for an SQL NULL value */
149 SqlFunc *pFunc; /* List of SQL functions */
danielk197794eb6a12005-12-15 15:22:08 +0000150 Tcl_Obj *pUpdateHook; /* Update hook script (if any) */
dan46c47d42011-03-01 18:42:07 +0000151 Tcl_Obj *pPreUpdateHook; /* Pre-update hook script (if any) */
danielk197771fd80b2005-12-16 06:54:01 +0000152 Tcl_Obj *pRollbackHook; /* Rollback hook script (if any) */
drh5def0842010-05-05 20:00:25 +0000153 Tcl_Obj *pWalHook; /* WAL hook script (if any) */
danielk1977404ca072009-03-16 13:19:36 +0000154 Tcl_Obj *pUnlockNotify; /* Unlock notify script (if any) */
drhd1e47332005-06-26 17:55:33 +0000155 SqlCollate *pCollate; /* List of SQL collation functions */
156 int rc; /* Return code of most recent sqlite3_exec() */
157 Tcl_Obj *pCollateNeeded; /* Collation needed script */
drhfb7e7652005-01-24 00:28:42 +0000158 SqlPreparedStmt *stmtList; /* List of prepared statements*/
159 SqlPreparedStmt *stmtLast; /* Last statement in the list */
160 int maxStmt; /* The next maximum number of stmtList */
161 int nStmt; /* Number of statements in stmtList */
danielk1977d04417962007-05-02 13:16:30 +0000162 IncrblobChannel *pIncrblob;/* Linked list of open incrblob channels */
drh3c379b02010-04-07 19:31:59 +0000163 int nStep, nSort, nIndex; /* Statistics for most recent operation */
danc456a762017-06-22 16:51:16 +0000164 int nVMStep; /* Another statistic for most recent operation */
danielk1977cd38d522009-01-02 17:33:46 +0000165 int nTransaction; /* Number of nested [transaction] methods */
drh147ef392016-01-22 23:17:51 +0000166 int openFlags; /* Flags used to open. (SQLITE_OPEN_URI) */
danc431fd52011-06-27 16:55:50 +0000167#ifdef SQLITE_TEST
168 int bLegacyPrepare; /* True to use sqlite3_prepare() */
169#endif
drh98808ba2001-10-18 12:34:46 +0000170};
drh297ecf12001-04-05 15:57:13 +0000171
danielk1977b4e9af92007-05-01 17:49:49 +0000172struct IncrblobChannel {
danielk1977d04417962007-05-02 13:16:30 +0000173 sqlite3_blob *pBlob; /* sqlite3 blob handle */
danielk1977dcbb5d32007-05-04 18:36:44 +0000174 SqliteDb *pDb; /* Associated database connection */
danielk1977d04417962007-05-02 13:16:30 +0000175 int iSeek; /* Current seek offset */
danielk1977d04417962007-05-02 13:16:30 +0000176 Tcl_Channel channel; /* Channel identifier */
177 IncrblobChannel *pNext; /* Linked list of all open incrblob channels */
178 IncrblobChannel *pPrev; /* Linked list of all open incrblob channels */
danielk1977b4e9af92007-05-01 17:49:49 +0000179};
180
drhea678832008-12-10 19:26:22 +0000181/*
182** Compute a string length that is limited to what can be stored in
183** lower 30 bits of a 32-bit signed integer.
184*/
drh4f21c4a2008-12-10 22:15:00 +0000185static int strlen30(const char *z){
drhea678832008-12-10 19:26:22 +0000186 const char *z2 = z;
187 while( *z2 ){ z2++; }
188 return 0x3fffffff & (int)(z2 - z);
189}
drhea678832008-12-10 19:26:22 +0000190
191
danielk197732a0d8b2007-05-04 19:03:02 +0000192#ifndef SQLITE_OMIT_INCRBLOB
danielk1977b4e9af92007-05-01 17:49:49 +0000193/*
danielk1977d04417962007-05-02 13:16:30 +0000194** Close all incrblob channels opened using database connection pDb.
195** This is called when shutting down the database connection.
196*/
197static void closeIncrblobChannels(SqliteDb *pDb){
198 IncrblobChannel *p;
199 IncrblobChannel *pNext;
200
201 for(p=pDb->pIncrblob; p; p=pNext){
202 pNext = p->pNext;
203
mistachkinb56660f2016-07-14 21:26:09 +0000204 /* Note: Calling unregister here call Tcl_Close on the incrblob channel,
danielk1977d04417962007-05-02 13:16:30 +0000205 ** which deletes the IncrblobChannel structure at *p. So do not
206 ** call Tcl_Free() here.
207 */
208 Tcl_UnregisterChannel(pDb->interp, p->channel);
209 }
210}
211
212/*
danielk1977b4e9af92007-05-01 17:49:49 +0000213** Close an incremental blob channel.
214*/
mistachkin7617e4a2016-07-28 17:11:20 +0000215static int SQLITE_TCLAPI incrblobClose(
216 ClientData instanceData,
217 Tcl_Interp *interp
218){
danielk1977b4e9af92007-05-01 17:49:49 +0000219 IncrblobChannel *p = (IncrblobChannel *)instanceData;
danielk197792d4d7a2007-05-04 12:05:56 +0000220 int rc = sqlite3_blob_close(p->pBlob);
221 sqlite3 *db = p->pDb->db;
danielk1977d04417962007-05-02 13:16:30 +0000222
223 /* Remove the channel from the SqliteDb.pIncrblob list. */
224 if( p->pNext ){
225 p->pNext->pPrev = p->pPrev;
226 }
227 if( p->pPrev ){
228 p->pPrev->pNext = p->pNext;
229 }
230 if( p->pDb->pIncrblob==p ){
231 p->pDb->pIncrblob = p->pNext;
232 }
233
danielk197792d4d7a2007-05-04 12:05:56 +0000234 /* Free the IncrblobChannel structure */
danielk1977b4e9af92007-05-01 17:49:49 +0000235 Tcl_Free((char *)p);
danielk197792d4d7a2007-05-04 12:05:56 +0000236
237 if( rc!=SQLITE_OK ){
238 Tcl_SetResult(interp, (char *)sqlite3_errmsg(db), TCL_VOLATILE);
239 return TCL_ERROR;
240 }
danielk1977b4e9af92007-05-01 17:49:49 +0000241 return TCL_OK;
242}
243
244/*
245** Read data from an incremental blob channel.
246*/
mistachkin7617e4a2016-07-28 17:11:20 +0000247static int SQLITE_TCLAPI incrblobInput(
mistachkinb56660f2016-07-14 21:26:09 +0000248 ClientData instanceData,
249 char *buf,
danielk1977b4e9af92007-05-01 17:49:49 +0000250 int bufSize,
251 int *errorCodePtr
252){
253 IncrblobChannel *p = (IncrblobChannel *)instanceData;
254 int nRead = bufSize; /* Number of bytes to read */
255 int nBlob; /* Total size of the blob */
256 int rc; /* sqlite error code */
257
258 nBlob = sqlite3_blob_bytes(p->pBlob);
259 if( (p->iSeek+nRead)>nBlob ){
260 nRead = nBlob-p->iSeek;
261 }
262 if( nRead<=0 ){
263 return 0;
264 }
265
266 rc = sqlite3_blob_read(p->pBlob, (void *)buf, nRead, p->iSeek);
267 if( rc!=SQLITE_OK ){
268 *errorCodePtr = rc;
269 return -1;
270 }
271
272 p->iSeek += nRead;
273 return nRead;
274}
275
danielk1977d04417962007-05-02 13:16:30 +0000276/*
277** Write data to an incremental blob channel.
278*/
mistachkin7617e4a2016-07-28 17:11:20 +0000279static int SQLITE_TCLAPI incrblobOutput(
mistachkinb56660f2016-07-14 21:26:09 +0000280 ClientData instanceData,
281 CONST char *buf,
danielk1977b4e9af92007-05-01 17:49:49 +0000282 int toWrite,
283 int *errorCodePtr
284){
285 IncrblobChannel *p = (IncrblobChannel *)instanceData;
286 int nWrite = toWrite; /* Number of bytes to write */
287 int nBlob; /* Total size of the blob */
288 int rc; /* sqlite error code */
289
290 nBlob = sqlite3_blob_bytes(p->pBlob);
291 if( (p->iSeek+nWrite)>nBlob ){
292 *errorCodePtr = EINVAL;
293 return -1;
294 }
295 if( nWrite<=0 ){
296 return 0;
297 }
298
299 rc = sqlite3_blob_write(p->pBlob, (void *)buf, nWrite, p->iSeek);
300 if( rc!=SQLITE_OK ){
301 *errorCodePtr = EIO;
302 return -1;
303 }
304
305 p->iSeek += nWrite;
306 return nWrite;
307}
308
309/*
310** Seek an incremental blob channel.
311*/
mistachkin7617e4a2016-07-28 17:11:20 +0000312static int SQLITE_TCLAPI incrblobSeek(
mistachkinb56660f2016-07-14 21:26:09 +0000313 ClientData instanceData,
danielk1977b4e9af92007-05-01 17:49:49 +0000314 long offset,
315 int seekMode,
316 int *errorCodePtr
317){
318 IncrblobChannel *p = (IncrblobChannel *)instanceData;
319
320 switch( seekMode ){
321 case SEEK_SET:
322 p->iSeek = offset;
323 break;
324 case SEEK_CUR:
325 p->iSeek += offset;
326 break;
327 case SEEK_END:
328 p->iSeek = sqlite3_blob_bytes(p->pBlob) + offset;
329 break;
330
331 default: assert(!"Bad seekMode");
332 }
333
334 return p->iSeek;
335}
336
337
mistachkin7617e4a2016-07-28 17:11:20 +0000338static void SQLITE_TCLAPI incrblobWatch(
339 ClientData instanceData,
340 int mode
341){
mistachkinb56660f2016-07-14 21:26:09 +0000342 /* NO-OP */
danielk1977b4e9af92007-05-01 17:49:49 +0000343}
mistachkin7617e4a2016-07-28 17:11:20 +0000344static int SQLITE_TCLAPI incrblobHandle(
345 ClientData instanceData,
346 int dir,
347 ClientData *hPtr
348){
danielk1977b4e9af92007-05-01 17:49:49 +0000349 return TCL_ERROR;
350}
351
352static Tcl_ChannelType IncrblobChannelType = {
353 "incrblob", /* typeName */
354 TCL_CHANNEL_VERSION_2, /* version */
355 incrblobClose, /* closeProc */
356 incrblobInput, /* inputProc */
357 incrblobOutput, /* outputProc */
358 incrblobSeek, /* seekProc */
359 0, /* setOptionProc */
360 0, /* getOptionProc */
361 incrblobWatch, /* watchProc (this is a no-op) */
362 incrblobHandle, /* getHandleProc (always returns error) */
363 0, /* close2Proc */
364 0, /* blockModeProc */
365 0, /* flushProc */
366 0, /* handlerProc */
367 0, /* wideSeekProc */
danielk1977b4e9af92007-05-01 17:49:49 +0000368};
369
370/*
371** Create a new incrblob channel.
372*/
373static int createIncrblobChannel(
mistachkinb56660f2016-07-14 21:26:09 +0000374 Tcl_Interp *interp,
375 SqliteDb *pDb,
danielk1977b4e9af92007-05-01 17:49:49 +0000376 const char *zDb,
mistachkinb56660f2016-07-14 21:26:09 +0000377 const char *zTable,
378 const char *zColumn,
danielk19778cbadb02007-05-03 16:31:26 +0000379 sqlite_int64 iRow,
380 int isReadonly
danielk1977b4e9af92007-05-01 17:49:49 +0000381){
382 IncrblobChannel *p;
danielk19778cbadb02007-05-03 16:31:26 +0000383 sqlite3 *db = pDb->db;
danielk1977b4e9af92007-05-01 17:49:49 +0000384 sqlite3_blob *pBlob;
385 int rc;
danielk19778cbadb02007-05-03 16:31:26 +0000386 int flags = TCL_READABLE|(isReadonly ? 0 : TCL_WRITABLE);
danielk1977b4e9af92007-05-01 17:49:49 +0000387
388 /* This variable is used to name the channels: "incrblob_[incr count]" */
389 static int count = 0;
390 char zChannel[64];
391
danielk19778cbadb02007-05-03 16:31:26 +0000392 rc = sqlite3_blob_open(db, zDb, zTable, zColumn, iRow, !isReadonly, &pBlob);
danielk1977b4e9af92007-05-01 17:49:49 +0000393 if( rc!=SQLITE_OK ){
394 Tcl_SetResult(interp, (char *)sqlite3_errmsg(pDb->db), TCL_VOLATILE);
395 return TCL_ERROR;
396 }
397
398 p = (IncrblobChannel *)Tcl_Alloc(sizeof(IncrblobChannel));
399 p->iSeek = 0;
400 p->pBlob = pBlob;
401
drh5bb3eb92007-05-04 13:15:55 +0000402 sqlite3_snprintf(sizeof(zChannel), zChannel, "incrblob_%d", ++count);
danielk1977d04417962007-05-02 13:16:30 +0000403 p->channel = Tcl_CreateChannel(&IncrblobChannelType, zChannel, p, flags);
404 Tcl_RegisterChannel(interp, p->channel);
danielk1977b4e9af92007-05-01 17:49:49 +0000405
danielk1977d04417962007-05-02 13:16:30 +0000406 /* Link the new channel into the SqliteDb.pIncrblob list. */
407 p->pNext = pDb->pIncrblob;
408 p->pPrev = 0;
409 if( p->pNext ){
410 p->pNext->pPrev = p;
411 }
412 pDb->pIncrblob = p;
413 p->pDb = pDb;
414
415 Tcl_SetResult(interp, (char *)Tcl_GetChannelName(p->channel), TCL_VOLATILE);
danielk1977b4e9af92007-05-01 17:49:49 +0000416 return TCL_OK;
417}
danielk197732a0d8b2007-05-04 19:03:02 +0000418#else /* else clause for "#ifndef SQLITE_OMIT_INCRBLOB" */
419 #define closeIncrblobChannels(pDb)
420#endif
danielk1977b4e9af92007-05-01 17:49:49 +0000421
drh6d313162000-09-21 13:01:35 +0000422/*
drhd1e47332005-06-26 17:55:33 +0000423** Look at the script prefix in pCmd. We will be executing this script
424** after first appending one or more arguments. This routine analyzes
425** the script to see if it is safe to use Tcl_EvalObjv() on the script
426** rather than the more general Tcl_EvalEx(). Tcl_EvalObjv() is much
427** faster.
428**
429** Scripts that are safe to use with Tcl_EvalObjv() consists of a
430** command name followed by zero or more arguments with no [...] or $
431** or {...} or ; to be seen anywhere. Most callback scripts consist
432** of just a single procedure name and they meet this requirement.
433*/
434static int safeToUseEvalObjv(Tcl_Interp *interp, Tcl_Obj *pCmd){
435 /* We could try to do something with Tcl_Parse(). But we will instead
436 ** just do a search for forbidden characters. If any of the forbidden
437 ** characters appear in pCmd, we will report the string as unsafe.
438 */
439 const char *z;
440 int n;
441 z = Tcl_GetStringFromObj(pCmd, &n);
442 while( n-- > 0 ){
443 int c = *(z++);
444 if( c=='$' || c=='[' || c==';' ) return 0;
445 }
446 return 1;
447}
448
449/*
450** Find an SqlFunc structure with the given name. Or create a new
451** one if an existing one cannot be found. Return a pointer to the
452** structure.
453*/
454static SqlFunc *findSqlFunc(SqliteDb *pDb, const char *zName){
455 SqlFunc *p, *pNew;
drh0425f182013-11-26 16:48:04 +0000456 int nName = strlen30(zName);
457 pNew = (SqlFunc*)Tcl_Alloc( sizeof(*pNew) + nName + 1 );
drhd1e47332005-06-26 17:55:33 +0000458 pNew->zName = (char*)&pNew[1];
drh0425f182013-11-26 16:48:04 +0000459 memcpy(pNew->zName, zName, nName+1);
mistachkinb56660f2016-07-14 21:26:09 +0000460 for(p=pDb->pFunc; p; p=p->pNext){
drh0425f182013-11-26 16:48:04 +0000461 if( sqlite3_stricmp(p->zName, pNew->zName)==0 ){
drhd1e47332005-06-26 17:55:33 +0000462 Tcl_Free((char*)pNew);
463 return p;
464 }
465 }
466 pNew->interp = pDb->interp;
drhc45e6712012-10-03 11:02:33 +0000467 pNew->pDb = pDb;
drhd1e47332005-06-26 17:55:33 +0000468 pNew->pScript = 0;
469 pNew->pNext = pDb->pFunc;
470 pDb->pFunc = pNew;
471 return pNew;
472}
473
474/*
danc431fd52011-06-27 16:55:50 +0000475** Free a single SqlPreparedStmt object.
476*/
477static void dbFreeStmt(SqlPreparedStmt *pStmt){
478#ifdef SQLITE_TEST
479 if( sqlite3_sql(pStmt->pStmt)==0 ){
480 Tcl_Free((char *)pStmt->zSql);
481 }
482#endif
483 sqlite3_finalize(pStmt->pStmt);
484 Tcl_Free((char *)pStmt);
485}
486
487/*
drhfb7e7652005-01-24 00:28:42 +0000488** Finalize and free a list of prepared statements
489*/
danc431fd52011-06-27 16:55:50 +0000490static void flushStmtCache(SqliteDb *pDb){
drhfb7e7652005-01-24 00:28:42 +0000491 SqlPreparedStmt *pPreStmt;
danc431fd52011-06-27 16:55:50 +0000492 SqlPreparedStmt *pNext;
drhfb7e7652005-01-24 00:28:42 +0000493
danc431fd52011-06-27 16:55:50 +0000494 for(pPreStmt = pDb->stmtList; pPreStmt; pPreStmt=pNext){
495 pNext = pPreStmt->pNext;
496 dbFreeStmt(pPreStmt);
drhfb7e7652005-01-24 00:28:42 +0000497 }
498 pDb->nStmt = 0;
499 pDb->stmtLast = 0;
danc431fd52011-06-27 16:55:50 +0000500 pDb->stmtList = 0;
drhfb7e7652005-01-24 00:28:42 +0000501}
502
503/*
drh895d7472004-08-20 16:02:39 +0000504** TCL calls this procedure when an sqlite3 database command is
505** deleted.
drh75897232000-05-29 14:26:00 +0000506*/
mistachkin7617e4a2016-07-28 17:11:20 +0000507static void SQLITE_TCLAPI DbDeleteCmd(void *db){
drhbec3f402000-08-04 13:49:02 +0000508 SqliteDb *pDb = (SqliteDb*)db;
drhfb7e7652005-01-24 00:28:42 +0000509 flushStmtCache(pDb);
danielk1977d04417962007-05-02 13:16:30 +0000510 closeIncrblobChannels(pDb);
danielk19776f8a5032004-05-10 10:34:51 +0000511 sqlite3_close(pDb->db);
drhcabb0812002-09-14 13:47:32 +0000512 while( pDb->pFunc ){
513 SqlFunc *pFunc = pDb->pFunc;
514 pDb->pFunc = pFunc->pNext;
drhc45e6712012-10-03 11:02:33 +0000515 assert( pFunc->pDb==pDb );
drhd1e47332005-06-26 17:55:33 +0000516 Tcl_DecrRefCount(pFunc->pScript);
drhcabb0812002-09-14 13:47:32 +0000517 Tcl_Free((char*)pFunc);
518 }
danielk19770202b292004-06-09 09:55:16 +0000519 while( pDb->pCollate ){
520 SqlCollate *pCollate = pDb->pCollate;
521 pDb->pCollate = pCollate->pNext;
522 Tcl_Free((char*)pCollate);
523 }
drhbec3f402000-08-04 13:49:02 +0000524 if( pDb->zBusy ){
525 Tcl_Free(pDb->zBusy);
526 }
drhb5a20d32003-04-23 12:25:23 +0000527 if( pDb->zTrace ){
528 Tcl_Free(pDb->zTrace);
drh0d1a6432003-04-03 15:46:04 +0000529 }
mistachkinb56660f2016-07-14 21:26:09 +0000530 if( pDb->zTraceV2 ){
531 Tcl_Free(pDb->zTraceV2);
532 }
drh19e2d372005-08-29 23:00:03 +0000533 if( pDb->zProfile ){
534 Tcl_Free(pDb->zProfile);
535 }
drhe22a3342003-04-22 20:30:37 +0000536 if( pDb->zAuth ){
537 Tcl_Free(pDb->zAuth);
538 }
danielk197755c45f22005-04-03 23:54:43 +0000539 if( pDb->zNull ){
540 Tcl_Free(pDb->zNull);
541 }
danielk197794eb6a12005-12-15 15:22:08 +0000542 if( pDb->pUpdateHook ){
543 Tcl_DecrRefCount(pDb->pUpdateHook);
544 }
dan46c47d42011-03-01 18:42:07 +0000545 if( pDb->pPreUpdateHook ){
546 Tcl_DecrRefCount(pDb->pPreUpdateHook);
547 }
danielk197771fd80b2005-12-16 06:54:01 +0000548 if( pDb->pRollbackHook ){
549 Tcl_DecrRefCount(pDb->pRollbackHook);
550 }
drh5def0842010-05-05 20:00:25 +0000551 if( pDb->pWalHook ){
552 Tcl_DecrRefCount(pDb->pWalHook);
dan8d22a172010-04-19 18:03:51 +0000553 }
danielk197794eb6a12005-12-15 15:22:08 +0000554 if( pDb->pCollateNeeded ){
555 Tcl_DecrRefCount(pDb->pCollateNeeded);
556 }
drhbec3f402000-08-04 13:49:02 +0000557 Tcl_Free((char*)pDb);
558}
559
560/*
561** This routine is called when a database file is locked while trying
562** to execute SQL.
563*/
danielk19772a764eb2004-06-12 01:43:26 +0000564static int DbBusyHandler(void *cd, int nTries){
drhbec3f402000-08-04 13:49:02 +0000565 SqliteDb *pDb = (SqliteDb*)cd;
566 int rc;
567 char zVal[30];
drhbec3f402000-08-04 13:49:02 +0000568
drh5bb3eb92007-05-04 13:15:55 +0000569 sqlite3_snprintf(sizeof(zVal), zVal, "%d", nTries);
drhd1e47332005-06-26 17:55:33 +0000570 rc = Tcl_VarEval(pDb->interp, pDb->zBusy, " ", zVal, (char*)0);
drhbec3f402000-08-04 13:49:02 +0000571 if( rc!=TCL_OK || atoi(Tcl_GetStringResult(pDb->interp)) ){
572 return 0;
573 }
574 return 1;
drh75897232000-05-29 14:26:00 +0000575}
576
drh26e4a8b2008-05-01 17:16:52 +0000577#ifndef SQLITE_OMIT_PROGRESS_CALLBACK
drh75897232000-05-29 14:26:00 +0000578/*
danielk1977348bb5d2003-10-18 09:37:26 +0000579** This routine is invoked as the 'progress callback' for the database.
580*/
581static int DbProgressHandler(void *cd){
582 SqliteDb *pDb = (SqliteDb*)cd;
583 int rc;
584
585 assert( pDb->zProgress );
586 rc = Tcl_Eval(pDb->interp, pDb->zProgress);
587 if( rc!=TCL_OK || atoi(Tcl_GetStringResult(pDb->interp)) ){
588 return 1;
589 }
590 return 0;
591}
drh26e4a8b2008-05-01 17:16:52 +0000592#endif
danielk1977348bb5d2003-10-18 09:37:26 +0000593
drh2eb22af2016-09-10 19:51:40 +0000594#if !defined(SQLITE_OMIT_TRACE) && !defined(SQLITE_OMIT_FLOATING_POINT) && \
595 !defined(SQLITE_OMIT_DEPRECATED)
danielk1977348bb5d2003-10-18 09:37:26 +0000596/*
drhb5a20d32003-04-23 12:25:23 +0000597** This routine is called by the SQLite trace handler whenever a new
598** block of SQL is executed. The TCL script in pDb->zTrace is executed.
drh0d1a6432003-04-03 15:46:04 +0000599*/
drhb5a20d32003-04-23 12:25:23 +0000600static void DbTraceHandler(void *cd, const char *zSql){
drh0d1a6432003-04-03 15:46:04 +0000601 SqliteDb *pDb = (SqliteDb*)cd;
drhb5a20d32003-04-23 12:25:23 +0000602 Tcl_DString str;
drh0d1a6432003-04-03 15:46:04 +0000603
drhb5a20d32003-04-23 12:25:23 +0000604 Tcl_DStringInit(&str);
605 Tcl_DStringAppend(&str, pDb->zTrace, -1);
606 Tcl_DStringAppendElement(&str, zSql);
607 Tcl_Eval(pDb->interp, Tcl_DStringValue(&str));
608 Tcl_DStringFree(&str);
609 Tcl_ResetResult(pDb->interp);
drh0d1a6432003-04-03 15:46:04 +0000610}
drhd1167392006-01-23 13:00:35 +0000611#endif
drh0d1a6432003-04-03 15:46:04 +0000612
drhd1167392006-01-23 13:00:35 +0000613#ifndef SQLITE_OMIT_TRACE
drh0d1a6432003-04-03 15:46:04 +0000614/*
mistachkinb56660f2016-07-14 21:26:09 +0000615** This routine is called by the SQLite trace_v2 handler whenever a new
616** supported event is generated. Unsupported event types are ignored.
617** The TCL script in pDb->zTraceV2 is executed, with the arguments for
618** the event appended to it (as list elements).
619*/
620static int DbTraceV2Handler(
621 unsigned type, /* One of the SQLITE_TRACE_* event types. */
622 void *cd, /* The original context data pointer. */
623 void *pd, /* Primary event data, depends on event type. */
624 void *xd /* Extra event data, depends on event type. */
625){
626 SqliteDb *pDb = (SqliteDb*)cd;
627 Tcl_Obj *pCmd;
628
629 switch( type ){
630 case SQLITE_TRACE_STMT: {
631 sqlite3_stmt *pStmt = (sqlite3_stmt *)pd;
632 char *zSql = (char *)xd;
633
634 pCmd = Tcl_NewStringObj(pDb->zTraceV2, -1);
635 Tcl_IncrRefCount(pCmd);
636 Tcl_ListObjAppendElement(pDb->interp, pCmd,
637 Tcl_NewWideIntObj((Tcl_WideInt)pStmt));
638 Tcl_ListObjAppendElement(pDb->interp, pCmd,
639 Tcl_NewStringObj(zSql, -1));
640 Tcl_EvalObjEx(pDb->interp, pCmd, TCL_EVAL_DIRECT);
641 Tcl_DecrRefCount(pCmd);
642 Tcl_ResetResult(pDb->interp);
643 break;
644 }
645 case SQLITE_TRACE_PROFILE: {
646 sqlite3_stmt *pStmt = (sqlite3_stmt *)pd;
647 sqlite3_int64 ns = (sqlite3_int64)xd;
648
649 pCmd = Tcl_NewStringObj(pDb->zTraceV2, -1);
650 Tcl_IncrRefCount(pCmd);
651 Tcl_ListObjAppendElement(pDb->interp, pCmd,
652 Tcl_NewWideIntObj((Tcl_WideInt)pStmt));
653 Tcl_ListObjAppendElement(pDb->interp, pCmd,
654 Tcl_NewWideIntObj((Tcl_WideInt)ns));
655 Tcl_EvalObjEx(pDb->interp, pCmd, TCL_EVAL_DIRECT);
656 Tcl_DecrRefCount(pCmd);
657 Tcl_ResetResult(pDb->interp);
658 break;
659 }
660 case SQLITE_TRACE_ROW: {
661 sqlite3_stmt *pStmt = (sqlite3_stmt *)pd;
662
663 pCmd = Tcl_NewStringObj(pDb->zTraceV2, -1);
664 Tcl_IncrRefCount(pCmd);
665 Tcl_ListObjAppendElement(pDb->interp, pCmd,
666 Tcl_NewWideIntObj((Tcl_WideInt)pStmt));
667 Tcl_EvalObjEx(pDb->interp, pCmd, TCL_EVAL_DIRECT);
668 Tcl_DecrRefCount(pCmd);
669 Tcl_ResetResult(pDb->interp);
670 break;
671 }
672 case SQLITE_TRACE_CLOSE: {
673 sqlite3 *db = (sqlite3 *)pd;
674
675 pCmd = Tcl_NewStringObj(pDb->zTraceV2, -1);
676 Tcl_IncrRefCount(pCmd);
677 Tcl_ListObjAppendElement(pDb->interp, pCmd,
678 Tcl_NewWideIntObj((Tcl_WideInt)db));
679 Tcl_EvalObjEx(pDb->interp, pCmd, TCL_EVAL_DIRECT);
680 Tcl_DecrRefCount(pCmd);
681 Tcl_ResetResult(pDb->interp);
682 break;
683 }
684 }
685 return SQLITE_OK;
686}
687#endif
688
drh2eb22af2016-09-10 19:51:40 +0000689#if !defined(SQLITE_OMIT_TRACE) && !defined(SQLITE_OMIT_FLOATING_POINT) && \
690 !defined(SQLITE_OMIT_DEPRECATED)
mistachkinb56660f2016-07-14 21:26:09 +0000691/*
drh19e2d372005-08-29 23:00:03 +0000692** This routine is called by the SQLite profile handler after a statement
693** SQL has executed. The TCL script in pDb->zProfile is evaluated.
694*/
695static void DbProfileHandler(void *cd, const char *zSql, sqlite_uint64 tm){
696 SqliteDb *pDb = (SqliteDb*)cd;
697 Tcl_DString str;
698 char zTm[100];
699
700 sqlite3_snprintf(sizeof(zTm)-1, zTm, "%lld", tm);
701 Tcl_DStringInit(&str);
702 Tcl_DStringAppend(&str, pDb->zProfile, -1);
703 Tcl_DStringAppendElement(&str, zSql);
704 Tcl_DStringAppendElement(&str, zTm);
705 Tcl_Eval(pDb->interp, Tcl_DStringValue(&str));
706 Tcl_DStringFree(&str);
707 Tcl_ResetResult(pDb->interp);
708}
drhd1167392006-01-23 13:00:35 +0000709#endif
drh19e2d372005-08-29 23:00:03 +0000710
711/*
drhaa940ea2004-01-15 02:44:03 +0000712** This routine is called when a transaction is committed. The
713** TCL script in pDb->zCommit is executed. If it returns non-zero or
714** if it throws an exception, the transaction is rolled back instead
715** of being committed.
716*/
717static int DbCommitHandler(void *cd){
718 SqliteDb *pDb = (SqliteDb*)cd;
719 int rc;
720
721 rc = Tcl_Eval(pDb->interp, pDb->zCommit);
722 if( rc!=TCL_OK || atoi(Tcl_GetStringResult(pDb->interp)) ){
723 return 1;
724 }
725 return 0;
726}
727
danielk197771fd80b2005-12-16 06:54:01 +0000728static void DbRollbackHandler(void *clientData){
729 SqliteDb *pDb = (SqliteDb*)clientData;
730 assert(pDb->pRollbackHook);
731 if( TCL_OK!=Tcl_EvalObjEx(pDb->interp, pDb->pRollbackHook, 0) ){
732 Tcl_BackgroundError(pDb->interp);
733 }
734}
735
drh5def0842010-05-05 20:00:25 +0000736/*
737** This procedure handles wal_hook callbacks.
738*/
739static int DbWalHandler(
mistachkinb56660f2016-07-14 21:26:09 +0000740 void *clientData,
741 sqlite3 *db,
742 const char *zDb,
dan8d22a172010-04-19 18:03:51 +0000743 int nEntry
744){
drh5def0842010-05-05 20:00:25 +0000745 int ret = SQLITE_OK;
dan8d22a172010-04-19 18:03:51 +0000746 Tcl_Obj *p;
747 SqliteDb *pDb = (SqliteDb*)clientData;
748 Tcl_Interp *interp = pDb->interp;
drh5def0842010-05-05 20:00:25 +0000749 assert(pDb->pWalHook);
dan8d22a172010-04-19 18:03:51 +0000750
dan6e45e0c2014-12-10 20:29:49 +0000751 assert( db==pDb->db );
drh5def0842010-05-05 20:00:25 +0000752 p = Tcl_DuplicateObj(pDb->pWalHook);
dan8d22a172010-04-19 18:03:51 +0000753 Tcl_IncrRefCount(p);
754 Tcl_ListObjAppendElement(interp, p, Tcl_NewStringObj(zDb, -1));
755 Tcl_ListObjAppendElement(interp, p, Tcl_NewIntObj(nEntry));
mistachkinb56660f2016-07-14 21:26:09 +0000756 if( TCL_OK!=Tcl_EvalObjEx(interp, p, 0)
dan8d22a172010-04-19 18:03:51 +0000757 || TCL_OK!=Tcl_GetIntFromObj(interp, Tcl_GetObjResult(interp), &ret)
758 ){
759 Tcl_BackgroundError(interp);
760 }
761 Tcl_DecrRefCount(p);
762
763 return ret;
764}
765
drhbcf4f482009-03-27 12:44:35 +0000766#if defined(SQLITE_TEST) && defined(SQLITE_ENABLE_UNLOCK_NOTIFY)
danielk1977404ca072009-03-16 13:19:36 +0000767static void setTestUnlockNotifyVars(Tcl_Interp *interp, int iArg, int nArg){
768 char zBuf[64];
drh65545b52015-01-19 00:35:53 +0000769 sqlite3_snprintf(sizeof(zBuf), zBuf, "%d", iArg);
danielk1977404ca072009-03-16 13:19:36 +0000770 Tcl_SetVar(interp, "sqlite_unlock_notify_arg", zBuf, TCL_GLOBAL_ONLY);
drh65545b52015-01-19 00:35:53 +0000771 sqlite3_snprintf(sizeof(zBuf), zBuf, "%d", nArg);
danielk1977404ca072009-03-16 13:19:36 +0000772 Tcl_SetVar(interp, "sqlite_unlock_notify_argcount", zBuf, TCL_GLOBAL_ONLY);
773}
774#else
drhbcf4f482009-03-27 12:44:35 +0000775# define setTestUnlockNotifyVars(x,y,z)
danielk1977404ca072009-03-16 13:19:36 +0000776#endif
777
drh69910da2009-03-27 12:32:54 +0000778#ifdef SQLITE_ENABLE_UNLOCK_NOTIFY
danielk1977404ca072009-03-16 13:19:36 +0000779static void DbUnlockNotify(void **apArg, int nArg){
780 int i;
781 for(i=0; i<nArg; i++){
782 const int flags = (TCL_EVAL_GLOBAL|TCL_EVAL_DIRECT);
783 SqliteDb *pDb = (SqliteDb *)apArg[i];
784 setTestUnlockNotifyVars(pDb->interp, i, nArg);
785 assert( pDb->pUnlockNotify);
786 Tcl_EvalObjEx(pDb->interp, pDb->pUnlockNotify, flags);
787 Tcl_DecrRefCount(pDb->pUnlockNotify);
788 pDb->pUnlockNotify = 0;
789 }
790}
drh69910da2009-03-27 12:32:54 +0000791#endif
danielk1977404ca072009-03-16 13:19:36 +0000792
drh9b1c62d2011-03-30 21:04:43 +0000793#ifdef SQLITE_ENABLE_PREUPDATE_HOOK
dan46c47d42011-03-01 18:42:07 +0000794/*
795** Pre-update hook callback.
796*/
797static void DbPreUpdateHandler(
mistachkinb56660f2016-07-14 21:26:09 +0000798 void *p,
dan46c47d42011-03-01 18:42:07 +0000799 sqlite3 *db,
800 int op,
mistachkinb56660f2016-07-14 21:26:09 +0000801 const char *zDb,
802 const char *zTbl,
dan46c47d42011-03-01 18:42:07 +0000803 sqlite_int64 iKey1,
804 sqlite_int64 iKey2
805){
806 SqliteDb *pDb = (SqliteDb *)p;
807 Tcl_Obj *pCmd;
808 static const char *azStr[] = {"DELETE", "INSERT", "UPDATE"};
809
810 assert( (SQLITE_DELETE-1)/9 == 0 );
811 assert( (SQLITE_INSERT-1)/9 == 1 );
812 assert( (SQLITE_UPDATE-1)/9 == 2 );
813 assert( pDb->pPreUpdateHook );
814 assert( db==pDb->db );
815 assert( op==SQLITE_INSERT || op==SQLITE_UPDATE || op==SQLITE_DELETE );
816
817 pCmd = Tcl_DuplicateObj(pDb->pPreUpdateHook);
818 Tcl_IncrRefCount(pCmd);
819 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewStringObj(azStr[(op-1)/9], -1));
820 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewStringObj(zDb, -1));
821 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewStringObj(zTbl, -1));
822 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewWideIntObj(iKey1));
823 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewWideIntObj(iKey2));
824 Tcl_EvalObjEx(pDb->interp, pCmd, TCL_EVAL_DIRECT);
825 Tcl_DecrRefCount(pCmd);
826}
drh9b1c62d2011-03-30 21:04:43 +0000827#endif /* SQLITE_ENABLE_PREUPDATE_HOOK */
dan46c47d42011-03-01 18:42:07 +0000828
danielk197794eb6a12005-12-15 15:22:08 +0000829static void DbUpdateHandler(
mistachkinb56660f2016-07-14 21:26:09 +0000830 void *p,
danielk197794eb6a12005-12-15 15:22:08 +0000831 int op,
mistachkinb56660f2016-07-14 21:26:09 +0000832 const char *zDb,
833 const char *zTbl,
danielk197794eb6a12005-12-15 15:22:08 +0000834 sqlite_int64 rowid
835){
836 SqliteDb *pDb = (SqliteDb *)p;
837 Tcl_Obj *pCmd;
dan46c47d42011-03-01 18:42:07 +0000838 static const char *azStr[] = {"DELETE", "INSERT", "UPDATE"};
839
840 assert( (SQLITE_DELETE-1)/9 == 0 );
841 assert( (SQLITE_INSERT-1)/9 == 1 );
842 assert( (SQLITE_UPDATE-1)/9 == 2 );
danielk197794eb6a12005-12-15 15:22:08 +0000843
844 assert( pDb->pUpdateHook );
845 assert( op==SQLITE_INSERT || op==SQLITE_UPDATE || op==SQLITE_DELETE );
846
847 pCmd = Tcl_DuplicateObj(pDb->pUpdateHook);
848 Tcl_IncrRefCount(pCmd);
dan46c47d42011-03-01 18:42:07 +0000849 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewStringObj(azStr[(op-1)/9], -1));
danielk197794eb6a12005-12-15 15:22:08 +0000850 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewStringObj(zDb, -1));
851 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewStringObj(zTbl, -1));
852 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewWideIntObj(rowid));
853 Tcl_EvalObjEx(pDb->interp, pCmd, TCL_EVAL_DIRECT);
drhefdde162010-10-27 15:36:21 +0000854 Tcl_DecrRefCount(pCmd);
danielk197794eb6a12005-12-15 15:22:08 +0000855}
856
danielk19777cedc8d2004-06-10 10:50:08 +0000857static void tclCollateNeeded(
858 void *pCtx,
drh9bb575f2004-09-06 17:24:11 +0000859 sqlite3 *db,
danielk19777cedc8d2004-06-10 10:50:08 +0000860 int enc,
861 const char *zName
862){
863 SqliteDb *pDb = (SqliteDb *)pCtx;
864 Tcl_Obj *pScript = Tcl_DuplicateObj(pDb->pCollateNeeded);
865 Tcl_IncrRefCount(pScript);
866 Tcl_ListObjAppendElement(0, pScript, Tcl_NewStringObj(zName, -1));
867 Tcl_EvalObjEx(pDb->interp, pScript, 0);
868 Tcl_DecrRefCount(pScript);
869}
870
drhaa940ea2004-01-15 02:44:03 +0000871/*
danielk19770202b292004-06-09 09:55:16 +0000872** This routine is called to evaluate an SQL collation function implemented
873** using TCL script.
874*/
875static int tclSqlCollate(
876 void *pCtx,
877 int nA,
878 const void *zA,
879 int nB,
880 const void *zB
881){
882 SqlCollate *p = (SqlCollate *)pCtx;
883 Tcl_Obj *pCmd;
884
885 pCmd = Tcl_NewStringObj(p->zScript, -1);
886 Tcl_IncrRefCount(pCmd);
887 Tcl_ListObjAppendElement(p->interp, pCmd, Tcl_NewStringObj(zA, nA));
888 Tcl_ListObjAppendElement(p->interp, pCmd, Tcl_NewStringObj(zB, nB));
drhd1e47332005-06-26 17:55:33 +0000889 Tcl_EvalObjEx(p->interp, pCmd, TCL_EVAL_DIRECT);
danielk19770202b292004-06-09 09:55:16 +0000890 Tcl_DecrRefCount(pCmd);
891 return (atoi(Tcl_GetStringResult(p->interp)));
892}
893
894/*
drhcabb0812002-09-14 13:47:32 +0000895** This routine is called to evaluate an SQL function implemented
896** using TCL script.
897*/
drhfb7e7652005-01-24 00:28:42 +0000898static void tclSqlFunc(sqlite3_context *context, int argc, sqlite3_value**argv){
danielk19776f8a5032004-05-10 10:34:51 +0000899 SqlFunc *p = sqlite3_user_data(context);
drhd1e47332005-06-26 17:55:33 +0000900 Tcl_Obj *pCmd;
drhcabb0812002-09-14 13:47:32 +0000901 int i;
902 int rc;
903
drhd1e47332005-06-26 17:55:33 +0000904 if( argc==0 ){
905 /* If there are no arguments to the function, call Tcl_EvalObjEx on the
906 ** script object directly. This allows the TCL compiler to generate
907 ** bytecode for the command on the first invocation and thus make
908 ** subsequent invocations much faster. */
909 pCmd = p->pScript;
910 Tcl_IncrRefCount(pCmd);
911 rc = Tcl_EvalObjEx(p->interp, pCmd, 0);
912 Tcl_DecrRefCount(pCmd);
913 }else{
914 /* If there are arguments to the function, make a shallow copy of the
915 ** script object, lappend the arguments, then evaluate the copy.
916 **
peter.d.reid60ec9142014-09-06 16:39:46 +0000917 ** By "shallow" copy, we mean only the outer list Tcl_Obj is duplicated.
mistachkinb56660f2016-07-14 21:26:09 +0000918 ** The new Tcl_Obj contains pointers to the original list elements.
drhd1e47332005-06-26 17:55:33 +0000919 ** That way, when Tcl_EvalObjv() is run and shimmers the first element
920 ** of the list to tclCmdNameType, that alternate representation will
921 ** be preserved and reused on the next invocation.
922 */
923 Tcl_Obj **aArg;
924 int nArg;
925 if( Tcl_ListObjGetElements(p->interp, p->pScript, &nArg, &aArg) ){
mistachkinb56660f2016-07-14 21:26:09 +0000926 sqlite3_result_error(context, Tcl_GetStringResult(p->interp), -1);
drhd1e47332005-06-26 17:55:33 +0000927 return;
mistachkinb56660f2016-07-14 21:26:09 +0000928 }
drhd1e47332005-06-26 17:55:33 +0000929 pCmd = Tcl_NewListObj(nArg, aArg);
930 Tcl_IncrRefCount(pCmd);
931 for(i=0; i<argc; i++){
932 sqlite3_value *pIn = argv[i];
933 Tcl_Obj *pVal;
mistachkinb56660f2016-07-14 21:26:09 +0000934
drhd1e47332005-06-26 17:55:33 +0000935 /* Set pVal to contain the i'th column of this row. */
936 switch( sqlite3_value_type(pIn) ){
937 case SQLITE_BLOB: {
938 int bytes = sqlite3_value_bytes(pIn);
939 pVal = Tcl_NewByteArrayObj(sqlite3_value_blob(pIn), bytes);
940 break;
941 }
942 case SQLITE_INTEGER: {
943 sqlite_int64 v = sqlite3_value_int64(pIn);
944 if( v>=-2147483647 && v<=2147483647 ){
drh7fd33922011-06-20 19:00:30 +0000945 pVal = Tcl_NewIntObj((int)v);
drhd1e47332005-06-26 17:55:33 +0000946 }else{
947 pVal = Tcl_NewWideIntObj(v);
948 }
949 break;
950 }
951 case SQLITE_FLOAT: {
952 double r = sqlite3_value_double(pIn);
953 pVal = Tcl_NewDoubleObj(r);
954 break;
955 }
956 case SQLITE_NULL: {
drhc45e6712012-10-03 11:02:33 +0000957 pVal = Tcl_NewStringObj(p->pDb->zNull, -1);
drhd1e47332005-06-26 17:55:33 +0000958 break;
959 }
960 default: {
961 int bytes = sqlite3_value_bytes(pIn);
danielk197700fd9572005-12-07 06:27:43 +0000962 pVal = Tcl_NewStringObj((char *)sqlite3_value_text(pIn), bytes);
drhd1e47332005-06-26 17:55:33 +0000963 break;
964 }
965 }
966 rc = Tcl_ListObjAppendElement(p->interp, pCmd, pVal);
967 if( rc ){
968 Tcl_DecrRefCount(pCmd);
mistachkinb56660f2016-07-14 21:26:09 +0000969 sqlite3_result_error(context, Tcl_GetStringResult(p->interp), -1);
drhd1e47332005-06-26 17:55:33 +0000970 return;
971 }
danielk197751ad0ec2004-05-24 12:39:02 +0000972 }
drhd1e47332005-06-26 17:55:33 +0000973 if( !p->useEvalObjv ){
974 /* Tcl_EvalObjEx() will automatically call Tcl_EvalObjv() if pCmd
975 ** is a list without a string representation. To prevent this from
976 ** happening, make sure pCmd has a valid string representation */
977 Tcl_GetString(pCmd);
978 }
979 rc = Tcl_EvalObjEx(p->interp, pCmd, TCL_EVAL_DIRECT);
980 Tcl_DecrRefCount(pCmd);
drhcabb0812002-09-14 13:47:32 +0000981 }
danielk1977562e8d32005-05-20 09:40:55 +0000982
drhc7f269d2005-05-05 10:30:29 +0000983 if( rc && rc!=TCL_RETURN ){
mistachkinb56660f2016-07-14 21:26:09 +0000984 sqlite3_result_error(context, Tcl_GetStringResult(p->interp), -1);
drhcabb0812002-09-14 13:47:32 +0000985 }else{
drhc7f269d2005-05-05 10:30:29 +0000986 Tcl_Obj *pVar = Tcl_GetObjResult(p->interp);
987 int n;
988 u8 *data;
dan4a4c11a2009-10-06 14:59:02 +0000989 const char *zType = (pVar->typePtr ? pVar->typePtr->name : "");
drhc7f269d2005-05-05 10:30:29 +0000990 char c = zType[0];
drhdf0bdda2005-06-25 19:31:48 +0000991 if( c=='b' && strcmp(zType,"bytearray")==0 && pVar->bytes==0 ){
drhd1e47332005-06-26 17:55:33 +0000992 /* Only return a BLOB type if the Tcl variable is a bytearray and
drhdf0bdda2005-06-25 19:31:48 +0000993 ** has no string representation. */
drhc7f269d2005-05-05 10:30:29 +0000994 data = Tcl_GetByteArrayFromObj(pVar, &n);
995 sqlite3_result_blob(context, data, n, SQLITE_TRANSIENT);
drh985e0c62007-06-26 22:55:37 +0000996 }else if( c=='b' && strcmp(zType,"boolean")==0 ){
drhc7f269d2005-05-05 10:30:29 +0000997 Tcl_GetIntFromObj(0, pVar, &n);
998 sqlite3_result_int(context, n);
999 }else if( c=='d' && strcmp(zType,"double")==0 ){
1000 double r;
1001 Tcl_GetDoubleFromObj(0, pVar, &r);
1002 sqlite3_result_double(context, r);
drh985e0c62007-06-26 22:55:37 +00001003 }else if( (c=='w' && strcmp(zType,"wideInt")==0) ||
1004 (c=='i' && strcmp(zType,"int")==0) ){
drhdf0bdda2005-06-25 19:31:48 +00001005 Tcl_WideInt v;
1006 Tcl_GetWideIntFromObj(0, pVar, &v);
1007 sqlite3_result_int64(context, v);
drhc7f269d2005-05-05 10:30:29 +00001008 }else{
danielk197700fd9572005-12-07 06:27:43 +00001009 data = (unsigned char *)Tcl_GetStringFromObj(pVar, &n);
1010 sqlite3_result_text(context, (char *)data, n, SQLITE_TRANSIENT);
drhc7f269d2005-05-05 10:30:29 +00001011 }
drhcabb0812002-09-14 13:47:32 +00001012 }
1013}
drh895d7472004-08-20 16:02:39 +00001014
drhe22a3342003-04-22 20:30:37 +00001015#ifndef SQLITE_OMIT_AUTHORIZATION
1016/*
1017** This is the authentication function. It appends the authentication
1018** type code and the two arguments to zCmd[] then invokes the result
1019** on the interpreter. The reply is examined to determine if the
1020** authentication fails or succeeds.
1021*/
1022static int auth_callback(
1023 void *pArg,
1024 int code,
1025 const char *zArg1,
1026 const char *zArg2,
1027 const char *zArg3,
1028 const char *zArg4
drh32c6a482014-09-11 13:44:52 +00001029#ifdef SQLITE_USER_AUTHENTICATION
1030 ,const char *zArg5
1031#endif
drhe22a3342003-04-22 20:30:37 +00001032){
mistachkin6ef5e122014-01-24 17:03:55 +00001033 const char *zCode;
drhe22a3342003-04-22 20:30:37 +00001034 Tcl_DString str;
1035 int rc;
1036 const char *zReply;
drh94189212017-05-11 13:43:57 +00001037 /* EVIDENCE-OF: R-38590-62769 The first parameter to the authorizer
1038 ** callback is a copy of the third parameter to the
1039 ** sqlite3_set_authorizer() interface.
1040 */
drhe22a3342003-04-22 20:30:37 +00001041 SqliteDb *pDb = (SqliteDb*)pArg;
drh1f1549f2008-08-26 21:33:34 +00001042 if( pDb->disableAuth ) return SQLITE_OK;
drhe22a3342003-04-22 20:30:37 +00001043
drh94189212017-05-11 13:43:57 +00001044 /* EVIDENCE-OF: R-56518-44310 The second parameter to the callback is an
1045 ** integer action code that specifies the particular action to be
1046 ** authorized. */
drhe22a3342003-04-22 20:30:37 +00001047 switch( code ){
1048 case SQLITE_COPY : zCode="SQLITE_COPY"; break;
1049 case SQLITE_CREATE_INDEX : zCode="SQLITE_CREATE_INDEX"; break;
1050 case SQLITE_CREATE_TABLE : zCode="SQLITE_CREATE_TABLE"; break;
1051 case SQLITE_CREATE_TEMP_INDEX : zCode="SQLITE_CREATE_TEMP_INDEX"; break;
1052 case SQLITE_CREATE_TEMP_TABLE : zCode="SQLITE_CREATE_TEMP_TABLE"; break;
1053 case SQLITE_CREATE_TEMP_TRIGGER: zCode="SQLITE_CREATE_TEMP_TRIGGER"; break;
1054 case SQLITE_CREATE_TEMP_VIEW : zCode="SQLITE_CREATE_TEMP_VIEW"; break;
1055 case SQLITE_CREATE_TRIGGER : zCode="SQLITE_CREATE_TRIGGER"; break;
1056 case SQLITE_CREATE_VIEW : zCode="SQLITE_CREATE_VIEW"; break;
1057 case SQLITE_DELETE : zCode="SQLITE_DELETE"; break;
1058 case SQLITE_DROP_INDEX : zCode="SQLITE_DROP_INDEX"; break;
1059 case SQLITE_DROP_TABLE : zCode="SQLITE_DROP_TABLE"; break;
1060 case SQLITE_DROP_TEMP_INDEX : zCode="SQLITE_DROP_TEMP_INDEX"; break;
1061 case SQLITE_DROP_TEMP_TABLE : zCode="SQLITE_DROP_TEMP_TABLE"; break;
1062 case SQLITE_DROP_TEMP_TRIGGER : zCode="SQLITE_DROP_TEMP_TRIGGER"; break;
1063 case SQLITE_DROP_TEMP_VIEW : zCode="SQLITE_DROP_TEMP_VIEW"; break;
1064 case SQLITE_DROP_TRIGGER : zCode="SQLITE_DROP_TRIGGER"; break;
1065 case SQLITE_DROP_VIEW : zCode="SQLITE_DROP_VIEW"; break;
1066 case SQLITE_INSERT : zCode="SQLITE_INSERT"; break;
1067 case SQLITE_PRAGMA : zCode="SQLITE_PRAGMA"; break;
1068 case SQLITE_READ : zCode="SQLITE_READ"; break;
1069 case SQLITE_SELECT : zCode="SQLITE_SELECT"; break;
1070 case SQLITE_TRANSACTION : zCode="SQLITE_TRANSACTION"; break;
1071 case SQLITE_UPDATE : zCode="SQLITE_UPDATE"; break;
drh81e293b2003-06-06 19:00:42 +00001072 case SQLITE_ATTACH : zCode="SQLITE_ATTACH"; break;
1073 case SQLITE_DETACH : zCode="SQLITE_DETACH"; break;
danielk19771c8c23c2004-11-12 15:53:37 +00001074 case SQLITE_ALTER_TABLE : zCode="SQLITE_ALTER_TABLE"; break;
danielk19771d54df82004-11-23 15:41:16 +00001075 case SQLITE_REINDEX : zCode="SQLITE_REINDEX"; break;
drhe6e04962005-07-23 02:17:03 +00001076 case SQLITE_ANALYZE : zCode="SQLITE_ANALYZE"; break;
danielk1977f1a381e2006-06-16 08:01:02 +00001077 case SQLITE_CREATE_VTABLE : zCode="SQLITE_CREATE_VTABLE"; break;
1078 case SQLITE_DROP_VTABLE : zCode="SQLITE_DROP_VTABLE"; break;
drh5169bbc2006-08-24 14:59:45 +00001079 case SQLITE_FUNCTION : zCode="SQLITE_FUNCTION"; break;
danielk1977ab9b7032008-12-30 06:24:58 +00001080 case SQLITE_SAVEPOINT : zCode="SQLITE_SAVEPOINT"; break;
drh65a2aaa2014-01-16 22:40:02 +00001081 case SQLITE_RECURSIVE : zCode="SQLITE_RECURSIVE"; break;
drhe22a3342003-04-22 20:30:37 +00001082 default : zCode="????"; break;
1083 }
1084 Tcl_DStringInit(&str);
1085 Tcl_DStringAppend(&str, pDb->zAuth, -1);
1086 Tcl_DStringAppendElement(&str, zCode);
1087 Tcl_DStringAppendElement(&str, zArg1 ? zArg1 : "");
1088 Tcl_DStringAppendElement(&str, zArg2 ? zArg2 : "");
1089 Tcl_DStringAppendElement(&str, zArg3 ? zArg3 : "");
1090 Tcl_DStringAppendElement(&str, zArg4 ? zArg4 : "");
drh32c6a482014-09-11 13:44:52 +00001091#ifdef SQLITE_USER_AUTHENTICATION
1092 Tcl_DStringAppendElement(&str, zArg5 ? zArg5 : "");
mistachkinb56660f2016-07-14 21:26:09 +00001093#endif
drhe22a3342003-04-22 20:30:37 +00001094 rc = Tcl_GlobalEval(pDb->interp, Tcl_DStringValue(&str));
1095 Tcl_DStringFree(&str);
drhb07028f2011-10-14 21:49:18 +00001096 zReply = rc==TCL_OK ? Tcl_GetStringResult(pDb->interp) : "SQLITE_DENY";
drhe22a3342003-04-22 20:30:37 +00001097 if( strcmp(zReply,"SQLITE_OK")==0 ){
1098 rc = SQLITE_OK;
1099 }else if( strcmp(zReply,"SQLITE_DENY")==0 ){
1100 rc = SQLITE_DENY;
1101 }else if( strcmp(zReply,"SQLITE_IGNORE")==0 ){
1102 rc = SQLITE_IGNORE;
1103 }else{
1104 rc = 999;
1105 }
1106 return rc;
1107}
1108#endif /* SQLITE_OMIT_AUTHORIZATION */
drhcabb0812002-09-14 13:47:32 +00001109
1110/*
tpoindex1067fe12004-12-17 15:41:11 +00001111** This routine reads a line of text from FILE in, stores
1112** the text in memory obtained from malloc() and returns a pointer
1113** to the text. NULL is returned at end of file, or if malloc()
1114** fails.
1115**
1116** The interface is like "readline" but no command-line editing
1117** is done.
1118**
1119** copied from shell.c from '.import' command
1120*/
1121static char *local_getline(char *zPrompt, FILE *in){
1122 char *zLine;
1123 int nLine;
1124 int n;
tpoindex1067fe12004-12-17 15:41:11 +00001125
1126 nLine = 100;
1127 zLine = malloc( nLine );
1128 if( zLine==0 ) return 0;
1129 n = 0;
drhb07028f2011-10-14 21:49:18 +00001130 while( 1 ){
tpoindex1067fe12004-12-17 15:41:11 +00001131 if( n+100>nLine ){
1132 nLine = nLine*2 + 100;
1133 zLine = realloc(zLine, nLine);
1134 if( zLine==0 ) return 0;
1135 }
1136 if( fgets(&zLine[n], nLine - n, in)==0 ){
1137 if( n==0 ){
1138 free(zLine);
1139 return 0;
1140 }
1141 zLine[n] = 0;
tpoindex1067fe12004-12-17 15:41:11 +00001142 break;
1143 }
1144 while( zLine[n] ){ n++; }
1145 if( n>0 && zLine[n-1]=='\n' ){
1146 n--;
1147 zLine[n] = 0;
drhb07028f2011-10-14 21:49:18 +00001148 break;
tpoindex1067fe12004-12-17 15:41:11 +00001149 }
1150 }
1151 zLine = realloc( zLine, n+1 );
1152 return zLine;
1153}
1154
danielk19778e556522007-11-13 10:30:24 +00001155
1156/*
dan4a4c11a2009-10-06 14:59:02 +00001157** This function is part of the implementation of the command:
danielk19778e556522007-11-13 10:30:24 +00001158**
dan4a4c11a2009-10-06 14:59:02 +00001159** $db transaction [-deferred|-immediate|-exclusive] SCRIPT
danielk19778e556522007-11-13 10:30:24 +00001160**
dan4a4c11a2009-10-06 14:59:02 +00001161** It is invoked after evaluating the script SCRIPT to commit or rollback
1162** the transaction or savepoint opened by the [transaction] command.
1163*/
mistachkina121cc72016-07-28 18:06:52 +00001164static int SQLITE_TCLAPI DbTransPostCmd(
dan4a4c11a2009-10-06 14:59:02 +00001165 ClientData data[], /* data[0] is the Sqlite3Db* for $db */
1166 Tcl_Interp *interp, /* Tcl interpreter */
1167 int result /* Result of evaluating SCRIPT */
1168){
mistachkin6ef5e122014-01-24 17:03:55 +00001169 static const char *const azEnd[] = {
dan4a4c11a2009-10-06 14:59:02 +00001170 "RELEASE _tcl_transaction", /* rc==TCL_ERROR, nTransaction!=0 */
1171 "COMMIT", /* rc!=TCL_ERROR, nTransaction==0 */
1172 "ROLLBACK TO _tcl_transaction ; RELEASE _tcl_transaction",
1173 "ROLLBACK" /* rc==TCL_ERROR, nTransaction==0 */
1174 };
1175 SqliteDb *pDb = (SqliteDb*)data[0];
1176 int rc = result;
1177 const char *zEnd;
1178
1179 pDb->nTransaction--;
1180 zEnd = azEnd[(rc==TCL_ERROR)*2 + (pDb->nTransaction==0)];
1181
1182 pDb->disableAuth++;
1183 if( sqlite3_exec(pDb->db, zEnd, 0, 0, 0) ){
1184 /* This is a tricky scenario to handle. The most likely cause of an
mistachkinb56660f2016-07-14 21:26:09 +00001185 ** error is that the exec() above was an attempt to commit the
dan4a4c11a2009-10-06 14:59:02 +00001186 ** top-level transaction that returned SQLITE_BUSY. Or, less likely,
mistachkin48864df2013-03-21 21:20:32 +00001187 ** that an IO-error has occurred. In either case, throw a Tcl exception
dan4a4c11a2009-10-06 14:59:02 +00001188 ** and try to rollback the transaction.
1189 **
mistachkinb56660f2016-07-14 21:26:09 +00001190 ** But it could also be that the user executed one or more BEGIN,
dan4a4c11a2009-10-06 14:59:02 +00001191 ** COMMIT, SAVEPOINT, RELEASE or ROLLBACK commands that are confusing
1192 ** this method's logic. Not clear how this would be best handled.
1193 */
1194 if( rc!=TCL_ERROR ){
drha198f2b2014-02-07 19:26:13 +00001195 Tcl_AppendResult(interp, sqlite3_errmsg(pDb->db), (char*)0);
dan4a4c11a2009-10-06 14:59:02 +00001196 rc = TCL_ERROR;
1197 }
1198 sqlite3_exec(pDb->db, "ROLLBACK", 0, 0, 0);
1199 }
1200 pDb->disableAuth--;
1201
1202 return rc;
1203}
1204
1205/*
danc431fd52011-06-27 16:55:50 +00001206** Unless SQLITE_TEST is defined, this function is a simple wrapper around
1207** sqlite3_prepare_v2(). If SQLITE_TEST is defined, then it uses either
1208** sqlite3_prepare_v2() or legacy interface sqlite3_prepare(), depending
mistachkinb56660f2016-07-14 21:26:09 +00001209** on whether or not the [db_use_legacy_prepare] command has been used to
danc431fd52011-06-27 16:55:50 +00001210** configure the connection.
1211*/
1212static int dbPrepare(
1213 SqliteDb *pDb, /* Database object */
1214 const char *zSql, /* SQL to compile */
1215 sqlite3_stmt **ppStmt, /* OUT: Prepared statement */
1216 const char **pzOut /* OUT: Pointer to next SQL statement */
1217){
drh2c2f3922017-06-01 00:54:35 +00001218 unsigned int prepFlags = 0;
danc431fd52011-06-27 16:55:50 +00001219#ifdef SQLITE_TEST
1220 if( pDb->bLegacyPrepare ){
1221 return sqlite3_prepare(pDb->db, zSql, -1, ppStmt, pzOut);
1222 }
1223#endif
drh2c2f3922017-06-01 00:54:35 +00001224 /* If the statement cache is large, use the SQLITE_PREPARE_PERSISTENT
1225 ** flags, which uses less lookaside memory. But if the cache is small,
1226 ** omit that flag to make full use of lookaside */
1227 if( pDb->maxStmt>5 ) prepFlags = SQLITE_PREPARE_PERSISTENT;
1228
1229 return sqlite3_prepare_v3(pDb->db, zSql, -1, prepFlags, ppStmt, pzOut);
danc431fd52011-06-27 16:55:50 +00001230}
1231
1232/*
dan4a4c11a2009-10-06 14:59:02 +00001233** Search the cache for a prepared-statement object that implements the
1234** first SQL statement in the buffer pointed to by parameter zIn. If
1235** no such prepared-statement can be found, allocate and prepare a new
1236** one. In either case, bind the current values of the relevant Tcl
1237** variables to any $var, :var or @var variables in the statement. Before
1238** returning, set *ppPreStmt to point to the prepared-statement object.
1239**
1240** Output parameter *pzOut is set to point to the next SQL statement in
1241** buffer zIn, or to the '\0' byte at the end of zIn if there is no
1242** next statement.
1243**
1244** If successful, TCL_OK is returned. Otherwise, TCL_ERROR is returned
1245** and an error message loaded into interpreter pDb->interp.
1246*/
1247static int dbPrepareAndBind(
1248 SqliteDb *pDb, /* Database object */
1249 char const *zIn, /* SQL to compile */
1250 char const **pzOut, /* OUT: Pointer to next SQL statement */
1251 SqlPreparedStmt **ppPreStmt /* OUT: Object used to cache statement */
1252){
1253 const char *zSql = zIn; /* Pointer to first SQL statement in zIn */
mistachkin7bb22ac2015-01-12 19:59:12 +00001254 sqlite3_stmt *pStmt = 0; /* Prepared statement object */
dan4a4c11a2009-10-06 14:59:02 +00001255 SqlPreparedStmt *pPreStmt; /* Pointer to cached statement */
1256 int nSql; /* Length of zSql in bytes */
mistachkin7bb22ac2015-01-12 19:59:12 +00001257 int nVar = 0; /* Number of variables in statement */
dan4a4c11a2009-10-06 14:59:02 +00001258 int iParm = 0; /* Next free entry in apParm */
drh0425f182013-11-26 16:48:04 +00001259 char c;
dan4a4c11a2009-10-06 14:59:02 +00001260 int i;
1261 Tcl_Interp *interp = pDb->interp;
1262
1263 *ppPreStmt = 0;
1264
1265 /* Trim spaces from the start of zSql and calculate the remaining length. */
drh0425f182013-11-26 16:48:04 +00001266 while( (c = zSql[0])==' ' || c=='\t' || c=='\r' || c=='\n' ){ zSql++; }
dan4a4c11a2009-10-06 14:59:02 +00001267 nSql = strlen30(zSql);
1268
1269 for(pPreStmt = pDb->stmtList; pPreStmt; pPreStmt=pPreStmt->pNext){
1270 int n = pPreStmt->nSql;
mistachkinb56660f2016-07-14 21:26:09 +00001271 if( nSql>=n
dan4a4c11a2009-10-06 14:59:02 +00001272 && memcmp(pPreStmt->zSql, zSql, n)==0
1273 && (zSql[n]==0 || zSql[n-1]==';')
1274 ){
1275 pStmt = pPreStmt->pStmt;
1276 *pzOut = &zSql[pPreStmt->nSql];
1277
1278 /* When a prepared statement is found, unlink it from the
1279 ** cache list. It will later be added back to the beginning
1280 ** of the cache list in order to implement LRU replacement.
1281 */
1282 if( pPreStmt->pPrev ){
1283 pPreStmt->pPrev->pNext = pPreStmt->pNext;
1284 }else{
1285 pDb->stmtList = pPreStmt->pNext;
1286 }
1287 if( pPreStmt->pNext ){
1288 pPreStmt->pNext->pPrev = pPreStmt->pPrev;
1289 }else{
1290 pDb->stmtLast = pPreStmt->pPrev;
1291 }
1292 pDb->nStmt--;
1293 nVar = sqlite3_bind_parameter_count(pStmt);
1294 break;
1295 }
1296 }
mistachkinb56660f2016-07-14 21:26:09 +00001297
dan4a4c11a2009-10-06 14:59:02 +00001298 /* If no prepared statement was found. Compile the SQL text. Also allocate
1299 ** a new SqlPreparedStmt structure. */
1300 if( pPreStmt==0 ){
1301 int nByte;
1302
danc431fd52011-06-27 16:55:50 +00001303 if( SQLITE_OK!=dbPrepare(pDb, zSql, &pStmt, pzOut) ){
drhc45e6712012-10-03 11:02:33 +00001304 Tcl_SetObjResult(interp, Tcl_NewStringObj(sqlite3_errmsg(pDb->db), -1));
dan4a4c11a2009-10-06 14:59:02 +00001305 return TCL_ERROR;
1306 }
1307 if( pStmt==0 ){
1308 if( SQLITE_OK!=sqlite3_errcode(pDb->db) ){
1309 /* A compile-time error in the statement. */
drhc45e6712012-10-03 11:02:33 +00001310 Tcl_SetObjResult(interp, Tcl_NewStringObj(sqlite3_errmsg(pDb->db), -1));
dan4a4c11a2009-10-06 14:59:02 +00001311 return TCL_ERROR;
1312 }else{
1313 /* The statement was a no-op. Continue to the next statement
1314 ** in the SQL string.
1315 */
1316 return TCL_OK;
1317 }
1318 }
1319
1320 assert( pPreStmt==0 );
1321 nVar = sqlite3_bind_parameter_count(pStmt);
1322 nByte = sizeof(SqlPreparedStmt) + nVar*sizeof(Tcl_Obj *);
1323 pPreStmt = (SqlPreparedStmt*)Tcl_Alloc(nByte);
1324 memset(pPreStmt, 0, nByte);
1325
1326 pPreStmt->pStmt = pStmt;
drh7ed243b2012-04-19 17:19:51 +00001327 pPreStmt->nSql = (int)(*pzOut - zSql);
dan4a4c11a2009-10-06 14:59:02 +00001328 pPreStmt->zSql = sqlite3_sql(pStmt);
1329 pPreStmt->apParm = (Tcl_Obj **)&pPreStmt[1];
danc431fd52011-06-27 16:55:50 +00001330#ifdef SQLITE_TEST
1331 if( pPreStmt->zSql==0 ){
1332 char *zCopy = Tcl_Alloc(pPreStmt->nSql + 1);
1333 memcpy(zCopy, zSql, pPreStmt->nSql);
1334 zCopy[pPreStmt->nSql] = '\0';
1335 pPreStmt->zSql = zCopy;
1336 }
1337#endif
dan4a4c11a2009-10-06 14:59:02 +00001338 }
1339 assert( pPreStmt );
1340 assert( strlen30(pPreStmt->zSql)==pPreStmt->nSql );
1341 assert( 0==memcmp(pPreStmt->zSql, zSql, pPreStmt->nSql) );
1342
mistachkinb56660f2016-07-14 21:26:09 +00001343 /* Bind values to parameters that begin with $ or : */
dan4a4c11a2009-10-06 14:59:02 +00001344 for(i=1; i<=nVar; i++){
1345 const char *zVar = sqlite3_bind_parameter_name(pStmt, i);
1346 if( zVar!=0 && (zVar[0]=='$' || zVar[0]==':' || zVar[0]=='@') ){
1347 Tcl_Obj *pVar = Tcl_GetVar2Ex(interp, &zVar[1], 0, 0);
1348 if( pVar ){
1349 int n;
1350 u8 *data;
1351 const char *zType = (pVar->typePtr ? pVar->typePtr->name : "");
mistachkin8e189222015-04-19 21:43:16 +00001352 c = zType[0];
dan4a4c11a2009-10-06 14:59:02 +00001353 if( zVar[0]=='@' ||
1354 (c=='b' && strcmp(zType,"bytearray")==0 && pVar->bytes==0) ){
1355 /* Load a BLOB type if the Tcl variable is a bytearray and
1356 ** it has no string representation or the host
1357 ** parameter name begins with "@". */
1358 data = Tcl_GetByteArrayFromObj(pVar, &n);
1359 sqlite3_bind_blob(pStmt, i, data, n, SQLITE_STATIC);
1360 Tcl_IncrRefCount(pVar);
1361 pPreStmt->apParm[iParm++] = pVar;
1362 }else if( c=='b' && strcmp(zType,"boolean")==0 ){
1363 Tcl_GetIntFromObj(interp, pVar, &n);
1364 sqlite3_bind_int(pStmt, i, n);
1365 }else if( c=='d' && strcmp(zType,"double")==0 ){
1366 double r;
1367 Tcl_GetDoubleFromObj(interp, pVar, &r);
1368 sqlite3_bind_double(pStmt, i, r);
1369 }else if( (c=='w' && strcmp(zType,"wideInt")==0) ||
1370 (c=='i' && strcmp(zType,"int")==0) ){
1371 Tcl_WideInt v;
1372 Tcl_GetWideIntFromObj(interp, pVar, &v);
1373 sqlite3_bind_int64(pStmt, i, v);
1374 }else{
1375 data = (unsigned char *)Tcl_GetStringFromObj(pVar, &n);
1376 sqlite3_bind_text(pStmt, i, (char *)data, n, SQLITE_STATIC);
1377 Tcl_IncrRefCount(pVar);
1378 pPreStmt->apParm[iParm++] = pVar;
1379 }
1380 }else{
1381 sqlite3_bind_null(pStmt, i);
1382 }
1383 }
1384 }
1385 pPreStmt->nParm = iParm;
1386 *ppPreStmt = pPreStmt;
dan937d0de2009-10-15 18:35:38 +00001387
dan4a4c11a2009-10-06 14:59:02 +00001388 return TCL_OK;
1389}
1390
dan4a4c11a2009-10-06 14:59:02 +00001391/*
1392** Release a statement reference obtained by calling dbPrepareAndBind().
1393** There should be exactly one call to this function for each call to
1394** dbPrepareAndBind().
1395**
1396** If the discard parameter is non-zero, then the statement is deleted
1397** immediately. Otherwise it is added to the LRU list and may be returned
1398** by a subsequent call to dbPrepareAndBind().
1399*/
1400static void dbReleaseStmt(
1401 SqliteDb *pDb, /* Database handle */
1402 SqlPreparedStmt *pPreStmt, /* Prepared statement handle to release */
1403 int discard /* True to delete (not cache) the pPreStmt */
1404){
1405 int i;
1406
1407 /* Free the bound string and blob parameters */
1408 for(i=0; i<pPreStmt->nParm; i++){
1409 Tcl_DecrRefCount(pPreStmt->apParm[i]);
1410 }
1411 pPreStmt->nParm = 0;
1412
1413 if( pDb->maxStmt<=0 || discard ){
1414 /* If the cache is turned off, deallocated the statement */
danc431fd52011-06-27 16:55:50 +00001415 dbFreeStmt(pPreStmt);
dan4a4c11a2009-10-06 14:59:02 +00001416 }else{
1417 /* Add the prepared statement to the beginning of the cache list. */
1418 pPreStmt->pNext = pDb->stmtList;
1419 pPreStmt->pPrev = 0;
1420 if( pDb->stmtList ){
1421 pDb->stmtList->pPrev = pPreStmt;
1422 }
1423 pDb->stmtList = pPreStmt;
1424 if( pDb->stmtLast==0 ){
1425 assert( pDb->nStmt==0 );
1426 pDb->stmtLast = pPreStmt;
1427 }else{
1428 assert( pDb->nStmt>0 );
1429 }
1430 pDb->nStmt++;
mistachkinb56660f2016-07-14 21:26:09 +00001431
1432 /* If we have too many statement in cache, remove the surplus from
dan4a4c11a2009-10-06 14:59:02 +00001433 ** the end of the cache list. */
1434 while( pDb->nStmt>pDb->maxStmt ){
danc431fd52011-06-27 16:55:50 +00001435 SqlPreparedStmt *pLast = pDb->stmtLast;
1436 pDb->stmtLast = pLast->pPrev;
dan4a4c11a2009-10-06 14:59:02 +00001437 pDb->stmtLast->pNext = 0;
1438 pDb->nStmt--;
danc431fd52011-06-27 16:55:50 +00001439 dbFreeStmt(pLast);
dan4a4c11a2009-10-06 14:59:02 +00001440 }
1441 }
1442}
1443
1444/*
1445** Structure used with dbEvalXXX() functions:
1446**
1447** dbEvalInit()
1448** dbEvalStep()
1449** dbEvalFinalize()
1450** dbEvalRowInfo()
1451** dbEvalColumnValue()
1452*/
1453typedef struct DbEvalContext DbEvalContext;
1454struct DbEvalContext {
1455 SqliteDb *pDb; /* Database handle */
1456 Tcl_Obj *pSql; /* Object holding string zSql */
1457 const char *zSql; /* Remaining SQL to execute */
1458 SqlPreparedStmt *pPreStmt; /* Current statement */
1459 int nCol; /* Number of columns returned by pStmt */
drhaf38cdb2017-06-26 21:08:32 +00001460 int evalFlags; /* Flags used */
dan4a4c11a2009-10-06 14:59:02 +00001461 Tcl_Obj *pArray; /* Name of array variable */
1462 Tcl_Obj **apColName; /* Array of column names */
1463};
1464
drhaf38cdb2017-06-26 21:08:32 +00001465#define SQLITE_EVAL_WITHOUTNULLS 0x00001 /* Unset array(*) for NULL */
1466
dan4a4c11a2009-10-06 14:59:02 +00001467/*
1468** Release any cache of column names currently held as part of
1469** the DbEvalContext structure passed as the first argument.
1470*/
1471static void dbReleaseColumnNames(DbEvalContext *p){
1472 if( p->apColName ){
1473 int i;
1474 for(i=0; i<p->nCol; i++){
1475 Tcl_DecrRefCount(p->apColName[i]);
1476 }
1477 Tcl_Free((char *)p->apColName);
1478 p->apColName = 0;
1479 }
1480 p->nCol = 0;
1481}
1482
1483/*
1484** Initialize a DbEvalContext structure.
danielk19778e556522007-11-13 10:30:24 +00001485**
1486** If pArray is not NULL, then it contains the name of a Tcl array
1487** variable. The "*" member of this array is set to a list containing
dan4a4c11a2009-10-06 14:59:02 +00001488** the names of the columns returned by the statement as part of each
mistachkinb56660f2016-07-14 21:26:09 +00001489** call to dbEvalStep(), in order from left to right. e.g. if the names
1490** of the returned columns are a, b and c, it does the equivalent of the
dan4a4c11a2009-10-06 14:59:02 +00001491** tcl command:
danielk19778e556522007-11-13 10:30:24 +00001492**
1493** set ${pArray}(*) {a b c}
1494*/
dan4a4c11a2009-10-06 14:59:02 +00001495static void dbEvalInit(
1496 DbEvalContext *p, /* Pointer to structure to initialize */
1497 SqliteDb *pDb, /* Database handle */
1498 Tcl_Obj *pSql, /* Object containing SQL script */
drhaf38cdb2017-06-26 21:08:32 +00001499 Tcl_Obj *pArray, /* Name of Tcl array to set (*) element of */
1500 int evalFlags /* Flags controlling evaluation */
danielk19778e556522007-11-13 10:30:24 +00001501){
dan4a4c11a2009-10-06 14:59:02 +00001502 memset(p, 0, sizeof(DbEvalContext));
1503 p->pDb = pDb;
1504 p->zSql = Tcl_GetString(pSql);
1505 p->pSql = pSql;
1506 Tcl_IncrRefCount(pSql);
1507 if( pArray ){
1508 p->pArray = pArray;
1509 Tcl_IncrRefCount(pArray);
1510 }
drhaf38cdb2017-06-26 21:08:32 +00001511 p->evalFlags = evalFlags;
dan4a4c11a2009-10-06 14:59:02 +00001512}
danielk19778e556522007-11-13 10:30:24 +00001513
dan4a4c11a2009-10-06 14:59:02 +00001514/*
1515** Obtain information about the row that the DbEvalContext passed as the
1516** first argument currently points to.
1517*/
1518static void dbEvalRowInfo(
1519 DbEvalContext *p, /* Evaluation context */
1520 int *pnCol, /* OUT: Number of column names */
1521 Tcl_Obj ***papColName /* OUT: Array of column names */
1522){
danielk19778e556522007-11-13 10:30:24 +00001523 /* Compute column names */
dan4a4c11a2009-10-06 14:59:02 +00001524 if( 0==p->apColName ){
1525 sqlite3_stmt *pStmt = p->pPreStmt->pStmt;
1526 int i; /* Iterator variable */
1527 int nCol; /* Number of columns returned by pStmt */
1528 Tcl_Obj **apColName = 0; /* Array of column names */
1529
1530 p->nCol = nCol = sqlite3_column_count(pStmt);
1531 if( nCol>0 && (papColName || p->pArray) ){
1532 apColName = (Tcl_Obj**)Tcl_Alloc( sizeof(Tcl_Obj*)*nCol );
1533 for(i=0; i<nCol; i++){
drhc45e6712012-10-03 11:02:33 +00001534 apColName[i] = Tcl_NewStringObj(sqlite3_column_name(pStmt,i), -1);
dan4a4c11a2009-10-06 14:59:02 +00001535 Tcl_IncrRefCount(apColName[i]);
1536 }
1537 p->apColName = apColName;
danielk19778e556522007-11-13 10:30:24 +00001538 }
1539
1540 /* If results are being stored in an array variable, then create
1541 ** the array(*) entry for that array
1542 */
dan4a4c11a2009-10-06 14:59:02 +00001543 if( p->pArray ){
1544 Tcl_Interp *interp = p->pDb->interp;
danielk19778e556522007-11-13 10:30:24 +00001545 Tcl_Obj *pColList = Tcl_NewObj();
1546 Tcl_Obj *pStar = Tcl_NewStringObj("*", -1);
dan4a4c11a2009-10-06 14:59:02 +00001547
danielk19778e556522007-11-13 10:30:24 +00001548 for(i=0; i<nCol; i++){
1549 Tcl_ListObjAppendElement(interp, pColList, apColName[i]);
1550 }
1551 Tcl_IncrRefCount(pStar);
dan4a4c11a2009-10-06 14:59:02 +00001552 Tcl_ObjSetVar2(interp, p->pArray, pStar, pColList, 0);
danielk19778e556522007-11-13 10:30:24 +00001553 Tcl_DecrRefCount(pStar);
1554 }
danielk19778e556522007-11-13 10:30:24 +00001555 }
1556
dan4a4c11a2009-10-06 14:59:02 +00001557 if( papColName ){
1558 *papColName = p->apColName;
1559 }
1560 if( pnCol ){
1561 *pnCol = p->nCol;
1562 }
1563}
1564
1565/*
1566** Return one of TCL_OK, TCL_BREAK or TCL_ERROR. If TCL_ERROR is
1567** returned, then an error message is stored in the interpreter before
1568** returning.
1569**
1570** A return value of TCL_OK means there is a row of data available. The
1571** data may be accessed using dbEvalRowInfo() and dbEvalColumnValue(). This
1572** is analogous to a return of SQLITE_ROW from sqlite3_step(). If TCL_BREAK
1573** is returned, then the SQL script has finished executing and there are
1574** no further rows available. This is similar to SQLITE_DONE.
1575*/
1576static int dbEvalStep(DbEvalContext *p){
danc431fd52011-06-27 16:55:50 +00001577 const char *zPrevSql = 0; /* Previous value of p->zSql */
1578
dan4a4c11a2009-10-06 14:59:02 +00001579 while( p->zSql[0] || p->pPreStmt ){
1580 int rc;
1581 if( p->pPreStmt==0 ){
danc431fd52011-06-27 16:55:50 +00001582 zPrevSql = (p->zSql==zPrevSql ? 0 : p->zSql);
dan4a4c11a2009-10-06 14:59:02 +00001583 rc = dbPrepareAndBind(p->pDb, p->zSql, &p->zSql, &p->pPreStmt);
1584 if( rc!=TCL_OK ) return rc;
1585 }else{
1586 int rcs;
1587 SqliteDb *pDb = p->pDb;
1588 SqlPreparedStmt *pPreStmt = p->pPreStmt;
1589 sqlite3_stmt *pStmt = pPreStmt->pStmt;
1590
1591 rcs = sqlite3_step(pStmt);
1592 if( rcs==SQLITE_ROW ){
1593 return TCL_OK;
1594 }
1595 if( p->pArray ){
1596 dbEvalRowInfo(p, 0, 0);
1597 }
1598 rcs = sqlite3_reset(pStmt);
1599
1600 pDb->nStep = sqlite3_stmt_status(pStmt,SQLITE_STMTSTATUS_FULLSCAN_STEP,1);
1601 pDb->nSort = sqlite3_stmt_status(pStmt,SQLITE_STMTSTATUS_SORT,1);
drh3c379b02010-04-07 19:31:59 +00001602 pDb->nIndex = sqlite3_stmt_status(pStmt,SQLITE_STMTSTATUS_AUTOINDEX,1);
danc456a762017-06-22 16:51:16 +00001603 pDb->nVMStep = sqlite3_stmt_status(pStmt,SQLITE_STMTSTATUS_VM_STEP,1);
dan4a4c11a2009-10-06 14:59:02 +00001604 dbReleaseColumnNames(p);
1605 p->pPreStmt = 0;
1606
1607 if( rcs!=SQLITE_OK ){
1608 /* If a run-time error occurs, report the error and stop reading
1609 ** the SQL. */
dan4a4c11a2009-10-06 14:59:02 +00001610 dbReleaseStmt(pDb, pPreStmt, 1);
danc431fd52011-06-27 16:55:50 +00001611#if SQLITE_TEST
1612 if( p->pDb->bLegacyPrepare && rcs==SQLITE_SCHEMA && zPrevSql ){
1613 /* If the runtime error was an SQLITE_SCHEMA, and the database
mistachkinb56660f2016-07-14 21:26:09 +00001614 ** handle is configured to use the legacy sqlite3_prepare()
danc431fd52011-06-27 16:55:50 +00001615 ** interface, retry prepare()/step() on the same SQL statement.
1616 ** This only happens once. If there is a second SQLITE_SCHEMA
1617 ** error, the error will be returned to the caller. */
1618 p->zSql = zPrevSql;
1619 continue;
1620 }
1621#endif
drhc45e6712012-10-03 11:02:33 +00001622 Tcl_SetObjResult(pDb->interp,
1623 Tcl_NewStringObj(sqlite3_errmsg(pDb->db), -1));
dan4a4c11a2009-10-06 14:59:02 +00001624 return TCL_ERROR;
1625 }else{
1626 dbReleaseStmt(pDb, pPreStmt, 0);
1627 }
1628 }
1629 }
1630
1631 /* Finished */
1632 return TCL_BREAK;
1633}
1634
1635/*
1636** Free all resources currently held by the DbEvalContext structure passed
1637** as the first argument. There should be exactly one call to this function
1638** for each call to dbEvalInit().
1639*/
1640static void dbEvalFinalize(DbEvalContext *p){
1641 if( p->pPreStmt ){
1642 sqlite3_reset(p->pPreStmt->pStmt);
1643 dbReleaseStmt(p->pDb, p->pPreStmt, 0);
1644 p->pPreStmt = 0;
1645 }
1646 if( p->pArray ){
1647 Tcl_DecrRefCount(p->pArray);
1648 p->pArray = 0;
1649 }
1650 Tcl_DecrRefCount(p->pSql);
1651 dbReleaseColumnNames(p);
1652}
1653
1654/*
1655** Return a pointer to a Tcl_Obj structure with ref-count 0 that contains
1656** the value for the iCol'th column of the row currently pointed to by
1657** the DbEvalContext structure passed as the first argument.
1658*/
1659static Tcl_Obj *dbEvalColumnValue(DbEvalContext *p, int iCol){
1660 sqlite3_stmt *pStmt = p->pPreStmt->pStmt;
1661 switch( sqlite3_column_type(pStmt, iCol) ){
1662 case SQLITE_BLOB: {
1663 int bytes = sqlite3_column_bytes(pStmt, iCol);
1664 const char *zBlob = sqlite3_column_blob(pStmt, iCol);
1665 if( !zBlob ) bytes = 0;
1666 return Tcl_NewByteArrayObj((u8*)zBlob, bytes);
1667 }
1668 case SQLITE_INTEGER: {
1669 sqlite_int64 v = sqlite3_column_int64(pStmt, iCol);
1670 if( v>=-2147483647 && v<=2147483647 ){
drh7fd33922011-06-20 19:00:30 +00001671 return Tcl_NewIntObj((int)v);
dan4a4c11a2009-10-06 14:59:02 +00001672 }else{
1673 return Tcl_NewWideIntObj(v);
1674 }
1675 }
1676 case SQLITE_FLOAT: {
1677 return Tcl_NewDoubleObj(sqlite3_column_double(pStmt, iCol));
1678 }
1679 case SQLITE_NULL: {
drhc45e6712012-10-03 11:02:33 +00001680 return Tcl_NewStringObj(p->pDb->zNull, -1);
dan4a4c11a2009-10-06 14:59:02 +00001681 }
1682 }
1683
drh325eff52012-10-03 12:56:18 +00001684 return Tcl_NewStringObj((char*)sqlite3_column_text(pStmt, iCol), -1);
dan4a4c11a2009-10-06 14:59:02 +00001685}
1686
1687/*
1688** If using Tcl version 8.6 or greater, use the NR functions to avoid
1689** recursive evalution of scripts by the [db eval] and [db trans]
1690** commands. Even if the headers used while compiling the extension
1691** are 8.6 or newer, the code still tests the Tcl version at runtime.
1692** This allows stubs-enabled builds to be used with older Tcl libraries.
1693*/
1694#if TCL_MAJOR_VERSION>8 || (TCL_MAJOR_VERSION==8 && TCL_MINOR_VERSION>=6)
drha2c8a952009-10-13 18:38:34 +00001695# define SQLITE_TCL_NRE 1
dan4a4c11a2009-10-06 14:59:02 +00001696static int DbUseNre(void){
1697 int major, minor;
1698 Tcl_GetVersion(&major, &minor, 0, 0);
1699 return( (major==8 && minor>=6) || major>8 );
1700}
1701#else
mistachkinb56660f2016-07-14 21:26:09 +00001702/*
dan4a4c11a2009-10-06 14:59:02 +00001703** Compiling using headers earlier than 8.6. In this case NR cannot be
1704** used, so DbUseNre() to always return zero. Add #defines for the other
1705** Tcl_NRxxx() functions to prevent them from causing compilation errors,
mistachkinb56660f2016-07-14 21:26:09 +00001706** even though the only invocations of them are within conditional blocks
dan4a4c11a2009-10-06 14:59:02 +00001707** of the form:
1708**
1709** if( DbUseNre() ) { ... }
1710*/
drha2c8a952009-10-13 18:38:34 +00001711# define SQLITE_TCL_NRE 0
dan4a4c11a2009-10-06 14:59:02 +00001712# define DbUseNre() 0
drha47941f2013-12-20 18:57:44 +00001713# define Tcl_NRAddCallback(a,b,c,d,e,f) (void)0
dan4a4c11a2009-10-06 14:59:02 +00001714# define Tcl_NREvalObj(a,b,c) 0
drha47941f2013-12-20 18:57:44 +00001715# define Tcl_NRCreateCommand(a,b,c,d,e,f) (void)0
dan4a4c11a2009-10-06 14:59:02 +00001716#endif
1717
1718/*
1719** This function is part of the implementation of the command:
1720**
1721** $db eval SQL ?ARRAYNAME? SCRIPT
1722*/
mistachkina121cc72016-07-28 18:06:52 +00001723static int SQLITE_TCLAPI DbEvalNextCmd(
dan4a4c11a2009-10-06 14:59:02 +00001724 ClientData data[], /* data[0] is the (DbEvalContext*) */
1725 Tcl_Interp *interp, /* Tcl interpreter */
1726 int result /* Result so far */
1727){
1728 int rc = result; /* Return code */
1729
1730 /* The first element of the data[] array is a pointer to a DbEvalContext
1731 ** structure allocated using Tcl_Alloc(). The second element of data[]
1732 ** is a pointer to a Tcl_Obj containing the script to run for each row
1733 ** returned by the queries encapsulated in data[0]. */
1734 DbEvalContext *p = (DbEvalContext *)data[0];
1735 Tcl_Obj *pScript = (Tcl_Obj *)data[1];
1736 Tcl_Obj *pArray = p->pArray;
1737
1738 while( (rc==TCL_OK || rc==TCL_CONTINUE) && TCL_OK==(rc = dbEvalStep(p)) ){
1739 int i;
1740 int nCol;
1741 Tcl_Obj **apColName;
1742 dbEvalRowInfo(p, &nCol, &apColName);
1743 for(i=0; i<nCol; i++){
dan4a4c11a2009-10-06 14:59:02 +00001744 if( pArray==0 ){
drhaf38cdb2017-06-26 21:08:32 +00001745 Tcl_ObjSetVar2(interp, apColName[i], 0, dbEvalColumnValue(p,i), 0);
1746 }else if( (p->evalFlags & SQLITE_EVAL_WITHOUTNULLS)!=0
1747 && sqlite3_column_type(p->pPreStmt->pStmt, i)==SQLITE_NULL
1748 ){
1749 Tcl_UnsetVar2(interp, Tcl_GetString(pArray),
1750 Tcl_GetString(apColName[i]), 0);
dan4a4c11a2009-10-06 14:59:02 +00001751 }else{
drhaf38cdb2017-06-26 21:08:32 +00001752 Tcl_ObjSetVar2(interp, pArray, apColName[i], dbEvalColumnValue(p,i), 0);
dan4a4c11a2009-10-06 14:59:02 +00001753 }
1754 }
1755
mistachkinb56660f2016-07-14 21:26:09 +00001756 /* The required interpreter variables are now populated with the data
dan4a4c11a2009-10-06 14:59:02 +00001757 ** from the current row. If using NRE, schedule callbacks to evaluate
1758 ** script pScript, then to invoke this function again to fetch the next
1759 ** row (or clean up if there is no next row or the script throws an
mistachkinb56660f2016-07-14 21:26:09 +00001760 ** exception). After scheduling the callbacks, return control to the
dan4a4c11a2009-10-06 14:59:02 +00001761 ** caller.
1762 **
1763 ** If not using NRE, evaluate pScript directly and continue with the
1764 ** next iteration of this while(...) loop. */
1765 if( DbUseNre() ){
1766 Tcl_NRAddCallback(interp, DbEvalNextCmd, (void*)p, (void*)pScript, 0, 0);
1767 return Tcl_NREvalObj(interp, pScript, 0);
1768 }else{
1769 rc = Tcl_EvalObjEx(interp, pScript, 0);
1770 }
1771 }
1772
1773 Tcl_DecrRefCount(pScript);
1774 dbEvalFinalize(p);
1775 Tcl_Free((char *)p);
1776
1777 if( rc==TCL_OK || rc==TCL_BREAK ){
1778 Tcl_ResetResult(interp);
1779 rc = TCL_OK;
1780 }
1781 return rc;
danielk19778e556522007-11-13 10:30:24 +00001782}
1783
tpoindex1067fe12004-12-17 15:41:11 +00001784/*
mistachkinb56660f2016-07-14 21:26:09 +00001785** This function is used by the implementations of the following database
dan46c47d42011-03-01 18:42:07 +00001786** handle sub-commands:
1787**
1788** $db update_hook ?SCRIPT?
1789** $db wal_hook ?SCRIPT?
1790** $db commit_hook ?SCRIPT?
1791** $db preupdate hook ?SCRIPT?
1792*/
1793static void DbHookCmd(
1794 Tcl_Interp *interp, /* Tcl interpreter */
1795 SqliteDb *pDb, /* Database handle */
1796 Tcl_Obj *pArg, /* SCRIPT argument (or NULL) */
1797 Tcl_Obj **ppHook /* Pointer to member of SqliteDb */
1798){
1799 sqlite3 *db = pDb->db;
1800
1801 if( *ppHook ){
1802 Tcl_SetObjResult(interp, *ppHook);
1803 if( pArg ){
1804 Tcl_DecrRefCount(*ppHook);
1805 *ppHook = 0;
1806 }
1807 }
1808 if( pArg ){
1809 assert( !(*ppHook) );
1810 if( Tcl_GetCharLength(pArg)>0 ){
1811 *ppHook = pArg;
1812 Tcl_IncrRefCount(*ppHook);
1813 }
1814 }
1815
drh9b1c62d2011-03-30 21:04:43 +00001816#ifdef SQLITE_ENABLE_PREUPDATE_HOOK
dan46c47d42011-03-01 18:42:07 +00001817 sqlite3_preupdate_hook(db, (pDb->pPreUpdateHook?DbPreUpdateHandler:0), pDb);
drh9b1c62d2011-03-30 21:04:43 +00001818#endif
dan46c47d42011-03-01 18:42:07 +00001819 sqlite3_update_hook(db, (pDb->pUpdateHook?DbUpdateHandler:0), pDb);
1820 sqlite3_rollback_hook(db, (pDb->pRollbackHook?DbRollbackHandler:0), pDb);
1821 sqlite3_wal_hook(db, (pDb->pWalHook?DbWalHandler:0), pDb);
1822}
1823
1824/*
drh75897232000-05-29 14:26:00 +00001825** The "sqlite" command below creates a new Tcl command for each
1826** connection it opens to an SQLite database. This routine is invoked
1827** whenever one of those connection-specific commands is executed
1828** in Tcl. For example, if you run Tcl code like this:
1829**
drh9bb575f2004-09-06 17:24:11 +00001830** sqlite3 db1 "my_database"
drh75897232000-05-29 14:26:00 +00001831** db1 close
1832**
1833** The first command opens a connection to the "my_database" database
1834** and calls that connection "db1". The second command causes this
1835** subroutine to be invoked.
1836*/
mistachkin7617e4a2016-07-28 17:11:20 +00001837static int SQLITE_TCLAPI DbObjCmd(
1838 void *cd,
1839 Tcl_Interp *interp,
1840 int objc,
1841 Tcl_Obj *const*objv
1842){
drhbec3f402000-08-04 13:49:02 +00001843 SqliteDb *pDb = (SqliteDb*)cd;
drh6d313162000-09-21 13:01:35 +00001844 int choice;
drh22fbcb82004-02-01 01:22:50 +00001845 int rc = TCL_OK;
drh0de8c112002-07-06 16:32:14 +00001846 static const char *DB_strs[] = {
drhdc2c4912009-02-04 22:46:47 +00001847 "authorizer", "backup", "busy",
1848 "cache", "changes", "close",
1849 "collate", "collation_needed", "commit_hook",
1850 "complete", "copy", "enable_load_extension",
1851 "errorcode", "eval", "exists",
1852 "function", "incrblob", "interrupt",
drh833bf962010-04-28 14:42:19 +00001853 "last_insert_rowid", "nullvalue", "onecolumn",
drh304637c2011-03-18 16:47:27 +00001854 "preupdate", "profile", "progress",
1855 "rekey", "restore", "rollback_hook",
1856 "status", "timeout", "total_changes",
mistachkinb56660f2016-07-14 21:26:09 +00001857 "trace", "trace_v2", "transaction",
1858 "unlock_notify", "update_hook", "version",
1859 "wal_hook",
1860 0
drh6d313162000-09-21 13:01:35 +00001861 };
drh411995d2002-06-25 19:31:18 +00001862 enum DB_enum {
drhdc2c4912009-02-04 22:46:47 +00001863 DB_AUTHORIZER, DB_BACKUP, DB_BUSY,
1864 DB_CACHE, DB_CHANGES, DB_CLOSE,
1865 DB_COLLATE, DB_COLLATION_NEEDED, DB_COMMIT_HOOK,
1866 DB_COMPLETE, DB_COPY, DB_ENABLE_LOAD_EXTENSION,
1867 DB_ERRORCODE, DB_EVAL, DB_EXISTS,
1868 DB_FUNCTION, DB_INCRBLOB, DB_INTERRUPT,
drh833bf962010-04-28 14:42:19 +00001869 DB_LAST_INSERT_ROWID, DB_NULLVALUE, DB_ONECOLUMN,
drh304637c2011-03-18 16:47:27 +00001870 DB_PREUPDATE, DB_PROFILE, DB_PROGRESS,
1871 DB_REKEY, DB_RESTORE, DB_ROLLBACK_HOOK,
1872 DB_STATUS, DB_TIMEOUT, DB_TOTAL_CHANGES,
mistachkinb56660f2016-07-14 21:26:09 +00001873 DB_TRACE, DB_TRACE_V2, DB_TRANSACTION,
1874 DB_UNLOCK_NOTIFY, DB_UPDATE_HOOK, DB_VERSION,
1875 DB_WAL_HOOK,
drh6d313162000-09-21 13:01:35 +00001876 };
tpoindex1067fe12004-12-17 15:41:11 +00001877 /* don't leave trailing commas on DB_enum, it confuses the AIX xlc compiler */
drh6d313162000-09-21 13:01:35 +00001878
1879 if( objc<2 ){
1880 Tcl_WrongNumArgs(interp, 1, objv, "SUBCOMMAND ...");
drh75897232000-05-29 14:26:00 +00001881 return TCL_ERROR;
1882 }
drh411995d2002-06-25 19:31:18 +00001883 if( Tcl_GetIndexFromObj(interp, objv[1], DB_strs, "option", 0, &choice) ){
drh6d313162000-09-21 13:01:35 +00001884 return TCL_ERROR;
1885 }
1886
drh411995d2002-06-25 19:31:18 +00001887 switch( (enum DB_enum)choice ){
drh75897232000-05-29 14:26:00 +00001888
drhe22a3342003-04-22 20:30:37 +00001889 /* $db authorizer ?CALLBACK?
1890 **
1891 ** Invoke the given callback to authorize each SQL operation as it is
1892 ** compiled. 5 arguments are appended to the callback before it is
1893 ** invoked:
1894 **
1895 ** (1) The authorization type (ex: SQLITE_CREATE_TABLE, SQLITE_INSERT, ...)
1896 ** (2) First descriptive name (depends on authorization type)
1897 ** (3) Second descriptive name
1898 ** (4) Name of the database (ex: "main", "temp")
1899 ** (5) Name of trigger that is doing the access
1900 **
1901 ** The callback should return on of the following strings: SQLITE_OK,
1902 ** SQLITE_IGNORE, or SQLITE_DENY. Any other return value is an error.
1903 **
1904 ** If this method is invoked with no arguments, the current authorization
1905 ** callback string is returned.
1906 */
1907 case DB_AUTHORIZER: {
drh1211de32004-07-26 12:24:22 +00001908#ifdef SQLITE_OMIT_AUTHORIZATION
drha198f2b2014-02-07 19:26:13 +00001909 Tcl_AppendResult(interp, "authorization not available in this build",
1910 (char*)0);
drh1211de32004-07-26 12:24:22 +00001911 return TCL_ERROR;
1912#else
drhe22a3342003-04-22 20:30:37 +00001913 if( objc>3 ){
1914 Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK?");
drh0f14e2e2004-06-29 12:39:08 +00001915 return TCL_ERROR;
drhe22a3342003-04-22 20:30:37 +00001916 }else if( objc==2 ){
drhb5a20d32003-04-23 12:25:23 +00001917 if( pDb->zAuth ){
drha198f2b2014-02-07 19:26:13 +00001918 Tcl_AppendResult(interp, pDb->zAuth, (char*)0);
drhe22a3342003-04-22 20:30:37 +00001919 }
1920 }else{
1921 char *zAuth;
1922 int len;
1923 if( pDb->zAuth ){
1924 Tcl_Free(pDb->zAuth);
1925 }
1926 zAuth = Tcl_GetStringFromObj(objv[2], &len);
1927 if( zAuth && len>0 ){
1928 pDb->zAuth = Tcl_Alloc( len + 1 );
drh5bb3eb92007-05-04 13:15:55 +00001929 memcpy(pDb->zAuth, zAuth, len+1);
drhe22a3342003-04-22 20:30:37 +00001930 }else{
1931 pDb->zAuth = 0;
1932 }
drhe22a3342003-04-22 20:30:37 +00001933 if( pDb->zAuth ){
drh32c6a482014-09-11 13:44:52 +00001934 typedef int (*sqlite3_auth_cb)(
1935 void*,int,const char*,const char*,
1936 const char*,const char*);
drhe22a3342003-04-22 20:30:37 +00001937 pDb->interp = interp;
drh32c6a482014-09-11 13:44:52 +00001938 sqlite3_set_authorizer(pDb->db,(sqlite3_auth_cb)auth_callback,pDb);
drhe22a3342003-04-22 20:30:37 +00001939 }else{
danielk19776f8a5032004-05-10 10:34:51 +00001940 sqlite3_set_authorizer(pDb->db, 0, 0);
drhe22a3342003-04-22 20:30:37 +00001941 }
drhe22a3342003-04-22 20:30:37 +00001942 }
drh1211de32004-07-26 12:24:22 +00001943#endif
drhe22a3342003-04-22 20:30:37 +00001944 break;
1945 }
1946
drhdc2c4912009-02-04 22:46:47 +00001947 /* $db backup ?DATABASE? FILENAME
1948 **
1949 ** Open or create a database file named FILENAME. Transfer the
1950 ** content of local database DATABASE (default: "main") into the
1951 ** FILENAME database.
1952 */
1953 case DB_BACKUP: {
1954 const char *zDestFile;
1955 const char *zSrcDb;
1956 sqlite3 *pDest;
1957 sqlite3_backup *pBackup;
1958
1959 if( objc==3 ){
1960 zSrcDb = "main";
1961 zDestFile = Tcl_GetString(objv[2]);
1962 }else if( objc==4 ){
1963 zSrcDb = Tcl_GetString(objv[2]);
1964 zDestFile = Tcl_GetString(objv[3]);
1965 }else{
1966 Tcl_WrongNumArgs(interp, 2, objv, "?DATABASE? FILENAME");
1967 return TCL_ERROR;
1968 }
drh147ef392016-01-22 23:17:51 +00001969 rc = sqlite3_open_v2(zDestFile, &pDest,
1970 SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE| pDb->openFlags, 0);
drhdc2c4912009-02-04 22:46:47 +00001971 if( rc!=SQLITE_OK ){
1972 Tcl_AppendResult(interp, "cannot open target database: ",
1973 sqlite3_errmsg(pDest), (char*)0);
1974 sqlite3_close(pDest);
1975 return TCL_ERROR;
1976 }
1977 pBackup = sqlite3_backup_init(pDest, "main", pDb->db, zSrcDb);
1978 if( pBackup==0 ){
1979 Tcl_AppendResult(interp, "backup failed: ",
1980 sqlite3_errmsg(pDest), (char*)0);
1981 sqlite3_close(pDest);
1982 return TCL_ERROR;
1983 }
1984 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK ){}
1985 sqlite3_backup_finish(pBackup);
1986 if( rc==SQLITE_DONE ){
1987 rc = TCL_OK;
1988 }else{
1989 Tcl_AppendResult(interp, "backup failed: ",
1990 sqlite3_errmsg(pDest), (char*)0);
1991 rc = TCL_ERROR;
1992 }
1993 sqlite3_close(pDest);
1994 break;
1995 }
1996
drhbec3f402000-08-04 13:49:02 +00001997 /* $db busy ?CALLBACK?
1998 **
1999 ** Invoke the given callback if an SQL statement attempts to open
2000 ** a locked database file.
2001 */
drh6d313162000-09-21 13:01:35 +00002002 case DB_BUSY: {
2003 if( objc>3 ){
2004 Tcl_WrongNumArgs(interp, 2, objv, "CALLBACK");
drhbec3f402000-08-04 13:49:02 +00002005 return TCL_ERROR;
drh6d313162000-09-21 13:01:35 +00002006 }else if( objc==2 ){
drhbec3f402000-08-04 13:49:02 +00002007 if( pDb->zBusy ){
drha198f2b2014-02-07 19:26:13 +00002008 Tcl_AppendResult(interp, pDb->zBusy, (char*)0);
drhbec3f402000-08-04 13:49:02 +00002009 }
2010 }else{
drh6d313162000-09-21 13:01:35 +00002011 char *zBusy;
2012 int len;
drhbec3f402000-08-04 13:49:02 +00002013 if( pDb->zBusy ){
2014 Tcl_Free(pDb->zBusy);
drhbec3f402000-08-04 13:49:02 +00002015 }
drh6d313162000-09-21 13:01:35 +00002016 zBusy = Tcl_GetStringFromObj(objv[2], &len);
2017 if( zBusy && len>0 ){
2018 pDb->zBusy = Tcl_Alloc( len + 1 );
drh5bb3eb92007-05-04 13:15:55 +00002019 memcpy(pDb->zBusy, zBusy, len+1);
drh6d313162000-09-21 13:01:35 +00002020 }else{
2021 pDb->zBusy = 0;
drhbec3f402000-08-04 13:49:02 +00002022 }
2023 if( pDb->zBusy ){
2024 pDb->interp = interp;
danielk19776f8a5032004-05-10 10:34:51 +00002025 sqlite3_busy_handler(pDb->db, DbBusyHandler, pDb);
drh6d313162000-09-21 13:01:35 +00002026 }else{
danielk19776f8a5032004-05-10 10:34:51 +00002027 sqlite3_busy_handler(pDb->db, 0, 0);
drhbec3f402000-08-04 13:49:02 +00002028 }
2029 }
drh6d313162000-09-21 13:01:35 +00002030 break;
2031 }
drhbec3f402000-08-04 13:49:02 +00002032
drhfb7e7652005-01-24 00:28:42 +00002033 /* $db cache flush
2034 ** $db cache size n
2035 **
2036 ** Flush the prepared statement cache, or set the maximum number of
2037 ** cached statements.
2038 */
2039 case DB_CACHE: {
2040 char *subCmd;
2041 int n;
2042
2043 if( objc<=2 ){
2044 Tcl_WrongNumArgs(interp, 1, objv, "cache option ?arg?");
2045 return TCL_ERROR;
2046 }
2047 subCmd = Tcl_GetStringFromObj( objv[2], 0 );
2048 if( *subCmd=='f' && strcmp(subCmd,"flush")==0 ){
2049 if( objc!=3 ){
2050 Tcl_WrongNumArgs(interp, 2, objv, "flush");
2051 return TCL_ERROR;
2052 }else{
2053 flushStmtCache( pDb );
2054 }
2055 }else if( *subCmd=='s' && strcmp(subCmd,"size")==0 ){
2056 if( objc!=4 ){
2057 Tcl_WrongNumArgs(interp, 2, objv, "size n");
2058 return TCL_ERROR;
2059 }else{
2060 if( TCL_ERROR==Tcl_GetIntFromObj(interp, objv[3], &n) ){
mistachkinb56660f2016-07-14 21:26:09 +00002061 Tcl_AppendResult( interp, "cannot convert \"",
drha198f2b2014-02-07 19:26:13 +00002062 Tcl_GetStringFromObj(objv[3],0), "\" to integer", (char*)0);
drhfb7e7652005-01-24 00:28:42 +00002063 return TCL_ERROR;
2064 }else{
2065 if( n<0 ){
2066 flushStmtCache( pDb );
2067 n = 0;
2068 }else if( n>MAX_PREPARED_STMTS ){
2069 n = MAX_PREPARED_STMTS;
2070 }
2071 pDb->maxStmt = n;
2072 }
2073 }
2074 }else{
mistachkinb56660f2016-07-14 21:26:09 +00002075 Tcl_AppendResult( interp, "bad option \"",
drha198f2b2014-02-07 19:26:13 +00002076 Tcl_GetStringFromObj(objv[2],0), "\": must be flush or size",
2077 (char*)0);
drhfb7e7652005-01-24 00:28:42 +00002078 return TCL_ERROR;
2079 }
2080 break;
2081 }
2082
danielk1977b28af712004-06-21 06:50:26 +00002083 /* $db changes
drhc8d30ac2002-04-12 10:08:59 +00002084 **
2085 ** Return the number of rows that were modified, inserted, or deleted by
mistachkinb56660f2016-07-14 21:26:09 +00002086 ** the most recent INSERT, UPDATE or DELETE statement, not including
danielk1977b28af712004-06-21 06:50:26 +00002087 ** any changes made by trigger programs.
drhc8d30ac2002-04-12 10:08:59 +00002088 */
2089 case DB_CHANGES: {
2090 Tcl_Obj *pResult;
drhc8d30ac2002-04-12 10:08:59 +00002091 if( objc!=2 ){
2092 Tcl_WrongNumArgs(interp, 2, objv, "");
2093 return TCL_ERROR;
2094 }
drhc8d30ac2002-04-12 10:08:59 +00002095 pResult = Tcl_GetObjResult(interp);
danielk1977b28af712004-06-21 06:50:26 +00002096 Tcl_SetIntObj(pResult, sqlite3_changes(pDb->db));
rdcf146a772004-02-25 22:51:06 +00002097 break;
2098 }
2099
drh75897232000-05-29 14:26:00 +00002100 /* $db close
2101 **
2102 ** Shutdown the database
2103 */
drh6d313162000-09-21 13:01:35 +00002104 case DB_CLOSE: {
2105 Tcl_DeleteCommand(interp, Tcl_GetStringFromObj(objv[0], 0));
2106 break;
2107 }
drh75897232000-05-29 14:26:00 +00002108
drh0f14e2e2004-06-29 12:39:08 +00002109 /*
2110 ** $db collate NAME SCRIPT
2111 **
2112 ** Create a new SQL collation function called NAME. Whenever
2113 ** that function is called, invoke SCRIPT to evaluate the function.
2114 */
2115 case DB_COLLATE: {
2116 SqlCollate *pCollate;
2117 char *zName;
2118 char *zScript;
2119 int nScript;
2120 if( objc!=4 ){
2121 Tcl_WrongNumArgs(interp, 2, objv, "NAME SCRIPT");
2122 return TCL_ERROR;
2123 }
2124 zName = Tcl_GetStringFromObj(objv[2], 0);
2125 zScript = Tcl_GetStringFromObj(objv[3], &nScript);
2126 pCollate = (SqlCollate*)Tcl_Alloc( sizeof(*pCollate) + nScript + 1 );
2127 if( pCollate==0 ) return TCL_ERROR;
2128 pCollate->interp = interp;
2129 pCollate->pNext = pDb->pCollate;
2130 pCollate->zScript = (char*)&pCollate[1];
2131 pDb->pCollate = pCollate;
drh5bb3eb92007-05-04 13:15:55 +00002132 memcpy(pCollate->zScript, zScript, nScript+1);
mistachkinb56660f2016-07-14 21:26:09 +00002133 if( sqlite3_create_collation(pDb->db, zName, SQLITE_UTF8,
drh0f14e2e2004-06-29 12:39:08 +00002134 pCollate, tclSqlCollate) ){
danielk19779636c4e2005-01-25 04:27:54 +00002135 Tcl_SetResult(interp, (char *)sqlite3_errmsg(pDb->db), TCL_VOLATILE);
drh0f14e2e2004-06-29 12:39:08 +00002136 return TCL_ERROR;
2137 }
2138 break;
2139 }
2140
2141 /*
2142 ** $db collation_needed SCRIPT
2143 **
2144 ** Create a new SQL collation function called NAME. Whenever
2145 ** that function is called, invoke SCRIPT to evaluate the function.
2146 */
2147 case DB_COLLATION_NEEDED: {
2148 if( objc!=3 ){
2149 Tcl_WrongNumArgs(interp, 2, objv, "SCRIPT");
2150 return TCL_ERROR;
2151 }
2152 if( pDb->pCollateNeeded ){
2153 Tcl_DecrRefCount(pDb->pCollateNeeded);
2154 }
2155 pDb->pCollateNeeded = Tcl_DuplicateObj(objv[2]);
2156 Tcl_IncrRefCount(pDb->pCollateNeeded);
2157 sqlite3_collation_needed(pDb->db, pDb, tclCollateNeeded);
2158 break;
2159 }
2160
drh19e2d372005-08-29 23:00:03 +00002161 /* $db commit_hook ?CALLBACK?
2162 **
2163 ** Invoke the given callback just before committing every SQL transaction.
2164 ** If the callback throws an exception or returns non-zero, then the
2165 ** transaction is aborted. If CALLBACK is an empty string, the callback
2166 ** is disabled.
2167 */
2168 case DB_COMMIT_HOOK: {
2169 if( objc>3 ){
2170 Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK?");
2171 return TCL_ERROR;
2172 }else if( objc==2 ){
2173 if( pDb->zCommit ){
drha198f2b2014-02-07 19:26:13 +00002174 Tcl_AppendResult(interp, pDb->zCommit, (char*)0);
drh19e2d372005-08-29 23:00:03 +00002175 }
2176 }else{
mistachkin6ef5e122014-01-24 17:03:55 +00002177 const char *zCommit;
drh19e2d372005-08-29 23:00:03 +00002178 int len;
2179 if( pDb->zCommit ){
2180 Tcl_Free(pDb->zCommit);
2181 }
2182 zCommit = Tcl_GetStringFromObj(objv[2], &len);
2183 if( zCommit && len>0 ){
2184 pDb->zCommit = Tcl_Alloc( len + 1 );
drh5bb3eb92007-05-04 13:15:55 +00002185 memcpy(pDb->zCommit, zCommit, len+1);
drh19e2d372005-08-29 23:00:03 +00002186 }else{
2187 pDb->zCommit = 0;
2188 }
2189 if( pDb->zCommit ){
2190 pDb->interp = interp;
2191 sqlite3_commit_hook(pDb->db, DbCommitHandler, pDb);
2192 }else{
2193 sqlite3_commit_hook(pDb->db, 0, 0);
2194 }
2195 }
2196 break;
2197 }
2198
drh75897232000-05-29 14:26:00 +00002199 /* $db complete SQL
2200 **
2201 ** Return TRUE if SQL is a complete SQL statement. Return FALSE if
2202 ** additional lines of input are needed. This is similar to the
2203 ** built-in "info complete" command of Tcl.
2204 */
drh6d313162000-09-21 13:01:35 +00002205 case DB_COMPLETE: {
drhccae6022005-02-26 17:31:26 +00002206#ifndef SQLITE_OMIT_COMPLETE
drh6d313162000-09-21 13:01:35 +00002207 Tcl_Obj *pResult;
2208 int isComplete;
2209 if( objc!=3 ){
2210 Tcl_WrongNumArgs(interp, 2, objv, "SQL");
drh75897232000-05-29 14:26:00 +00002211 return TCL_ERROR;
2212 }
danielk19776f8a5032004-05-10 10:34:51 +00002213 isComplete = sqlite3_complete( Tcl_GetStringFromObj(objv[2], 0) );
drh6d313162000-09-21 13:01:35 +00002214 pResult = Tcl_GetObjResult(interp);
2215 Tcl_SetBooleanObj(pResult, isComplete);
drhccae6022005-02-26 17:31:26 +00002216#endif
drh6d313162000-09-21 13:01:35 +00002217 break;
2218 }
drhdcd997e2003-01-31 17:21:49 +00002219
drh19e2d372005-08-29 23:00:03 +00002220 /* $db copy conflict-algorithm table filename ?SEPARATOR? ?NULLINDICATOR?
2221 **
2222 ** Copy data into table from filename, optionally using SEPARATOR
2223 ** as column separators. If a column contains a null string, or the
2224 ** value of NULLINDICATOR, a NULL is inserted for the column.
2225 ** conflict-algorithm is one of the sqlite conflict algorithms:
2226 ** rollback, abort, fail, ignore, replace
2227 ** On success, return the number of lines processed, not necessarily same
2228 ** as 'db changes' due to conflict-algorithm selected.
2229 **
2230 ** This code is basically an implementation/enhancement of
2231 ** the sqlite3 shell.c ".import" command.
2232 **
2233 ** This command usage is equivalent to the sqlite2.x COPY statement,
2234 ** which imports file data into a table using the PostgreSQL COPY file format:
2235 ** $db copy $conflit_algo $table_name $filename \t \\N
2236 */
2237 case DB_COPY: {
2238 char *zTable; /* Insert data into this table */
2239 char *zFile; /* The file from which to extract data */
2240 char *zConflict; /* The conflict algorithm to use */
2241 sqlite3_stmt *pStmt; /* A statement */
drh19e2d372005-08-29 23:00:03 +00002242 int nCol; /* Number of columns in the table */
2243 int nByte; /* Number of bytes in an SQL string */
2244 int i, j; /* Loop counters */
2245 int nSep; /* Number of bytes in zSep[] */
2246 int nNull; /* Number of bytes in zNull[] */
2247 char *zSql; /* An SQL statement */
2248 char *zLine; /* A single line of input from the file */
2249 char **azCol; /* zLine[] broken up into columns */
mistachkin6ef5e122014-01-24 17:03:55 +00002250 const char *zCommit; /* How to commit changes */
drh19e2d372005-08-29 23:00:03 +00002251 FILE *in; /* The input file */
2252 int lineno = 0; /* Line number of input file */
2253 char zLineNum[80]; /* Line number print buffer */
2254 Tcl_Obj *pResult; /* interp result */
2255
mistachkin6ef5e122014-01-24 17:03:55 +00002256 const char *zSep;
2257 const char *zNull;
drh19e2d372005-08-29 23:00:03 +00002258 if( objc<5 || objc>7 ){
mistachkinb56660f2016-07-14 21:26:09 +00002259 Tcl_WrongNumArgs(interp, 2, objv,
drh19e2d372005-08-29 23:00:03 +00002260 "CONFLICT-ALGORITHM TABLE FILENAME ?SEPARATOR? ?NULLINDICATOR?");
2261 return TCL_ERROR;
2262 }
2263 if( objc>=6 ){
2264 zSep = Tcl_GetStringFromObj(objv[5], 0);
2265 }else{
2266 zSep = "\t";
2267 }
2268 if( objc>=7 ){
2269 zNull = Tcl_GetStringFromObj(objv[6], 0);
2270 }else{
2271 zNull = "";
2272 }
2273 zConflict = Tcl_GetStringFromObj(objv[2], 0);
2274 zTable = Tcl_GetStringFromObj(objv[3], 0);
2275 zFile = Tcl_GetStringFromObj(objv[4], 0);
drh4f21c4a2008-12-10 22:15:00 +00002276 nSep = strlen30(zSep);
2277 nNull = strlen30(zNull);
drh19e2d372005-08-29 23:00:03 +00002278 if( nSep==0 ){
drha198f2b2014-02-07 19:26:13 +00002279 Tcl_AppendResult(interp,"Error: non-null separator required for copy",
2280 (char*)0);
drh19e2d372005-08-29 23:00:03 +00002281 return TCL_ERROR;
2282 }
drh3e59c012008-09-23 10:12:13 +00002283 if(strcmp(zConflict, "rollback") != 0 &&
2284 strcmp(zConflict, "abort" ) != 0 &&
2285 strcmp(zConflict, "fail" ) != 0 &&
2286 strcmp(zConflict, "ignore" ) != 0 &&
2287 strcmp(zConflict, "replace" ) != 0 ) {
mistachkinb56660f2016-07-14 21:26:09 +00002288 Tcl_AppendResult(interp, "Error: \"", zConflict,
drh19e2d372005-08-29 23:00:03 +00002289 "\", conflict-algorithm must be one of: rollback, "
drha198f2b2014-02-07 19:26:13 +00002290 "abort, fail, ignore, or replace", (char*)0);
drh19e2d372005-08-29 23:00:03 +00002291 return TCL_ERROR;
2292 }
2293 zSql = sqlite3_mprintf("SELECT * FROM '%q'", zTable);
2294 if( zSql==0 ){
drha198f2b2014-02-07 19:26:13 +00002295 Tcl_AppendResult(interp, "Error: no such table: ", zTable, (char*)0);
drh19e2d372005-08-29 23:00:03 +00002296 return TCL_ERROR;
2297 }
drh4f21c4a2008-12-10 22:15:00 +00002298 nByte = strlen30(zSql);
drh3e701a12007-02-01 01:53:44 +00002299 rc = sqlite3_prepare(pDb->db, zSql, -1, &pStmt, 0);
drh19e2d372005-08-29 23:00:03 +00002300 sqlite3_free(zSql);
2301 if( rc ){
drha198f2b2014-02-07 19:26:13 +00002302 Tcl_AppendResult(interp, "Error: ", sqlite3_errmsg(pDb->db), (char*)0);
drh19e2d372005-08-29 23:00:03 +00002303 nCol = 0;
2304 }else{
2305 nCol = sqlite3_column_count(pStmt);
2306 }
2307 sqlite3_finalize(pStmt);
2308 if( nCol==0 ) {
2309 return TCL_ERROR;
2310 }
2311 zSql = malloc( nByte + 50 + nCol*2 );
2312 if( zSql==0 ) {
drha198f2b2014-02-07 19:26:13 +00002313 Tcl_AppendResult(interp, "Error: can't malloc()", (char*)0);
drh19e2d372005-08-29 23:00:03 +00002314 return TCL_ERROR;
2315 }
2316 sqlite3_snprintf(nByte+50, zSql, "INSERT OR %q INTO '%q' VALUES(?",
2317 zConflict, zTable);
drh4f21c4a2008-12-10 22:15:00 +00002318 j = strlen30(zSql);
drh19e2d372005-08-29 23:00:03 +00002319 for(i=1; i<nCol; i++){
2320 zSql[j++] = ',';
2321 zSql[j++] = '?';
2322 }
2323 zSql[j++] = ')';
2324 zSql[j] = 0;
drh3e701a12007-02-01 01:53:44 +00002325 rc = sqlite3_prepare(pDb->db, zSql, -1, &pStmt, 0);
drh19e2d372005-08-29 23:00:03 +00002326 free(zSql);
2327 if( rc ){
drha198f2b2014-02-07 19:26:13 +00002328 Tcl_AppendResult(interp, "Error: ", sqlite3_errmsg(pDb->db), (char*)0);
drh19e2d372005-08-29 23:00:03 +00002329 sqlite3_finalize(pStmt);
2330 return TCL_ERROR;
2331 }
2332 in = fopen(zFile, "rb");
2333 if( in==0 ){
drhea8f0a12017-01-12 11:50:08 +00002334 Tcl_AppendResult(interp, "Error: cannot open file: ", zFile, (char*)0);
drh19e2d372005-08-29 23:00:03 +00002335 sqlite3_finalize(pStmt);
2336 return TCL_ERROR;
2337 }
2338 azCol = malloc( sizeof(azCol[0])*(nCol+1) );
2339 if( azCol==0 ) {
drha198f2b2014-02-07 19:26:13 +00002340 Tcl_AppendResult(interp, "Error: can't malloc()", (char*)0);
drh43617e92006-03-06 20:55:46 +00002341 fclose(in);
drh19e2d372005-08-29 23:00:03 +00002342 return TCL_ERROR;
2343 }
drh37527852006-03-16 16:19:56 +00002344 (void)sqlite3_exec(pDb->db, "BEGIN", 0, 0, 0);
drh19e2d372005-08-29 23:00:03 +00002345 zCommit = "COMMIT";
2346 while( (zLine = local_getline(0, in))!=0 ){
2347 char *z;
drh19e2d372005-08-29 23:00:03 +00002348 lineno++;
2349 azCol[0] = zLine;
2350 for(i=0, z=zLine; *z; z++){
2351 if( *z==zSep[0] && strncmp(z, zSep, nSep)==0 ){
2352 *z = 0;
2353 i++;
2354 if( i<nCol ){
2355 azCol[i] = &z[nSep];
2356 z += nSep-1;
2357 }
2358 }
2359 }
2360 if( i+1!=nCol ){
2361 char *zErr;
drh4f21c4a2008-12-10 22:15:00 +00002362 int nErr = strlen30(zFile) + 200;
drh5bb3eb92007-05-04 13:15:55 +00002363 zErr = malloc(nErr);
drhc1f44942006-05-10 14:39:13 +00002364 if( zErr ){
drh5bb3eb92007-05-04 13:15:55 +00002365 sqlite3_snprintf(nErr, zErr,
drhc1f44942006-05-10 14:39:13 +00002366 "Error: %s line %d: expected %d columns of data but found %d",
2367 zFile, lineno, nCol, i+1);
drha198f2b2014-02-07 19:26:13 +00002368 Tcl_AppendResult(interp, zErr, (char*)0);
drhc1f44942006-05-10 14:39:13 +00002369 free(zErr);
2370 }
drh19e2d372005-08-29 23:00:03 +00002371 zCommit = "ROLLBACK";
2372 break;
2373 }
2374 for(i=0; i<nCol; i++){
2375 /* check for null data, if so, bind as null */
drhea678832008-12-10 19:26:22 +00002376 if( (nNull>0 && strcmp(azCol[i], zNull)==0)
mistachkinb56660f2016-07-14 21:26:09 +00002377 || strlen30(azCol[i])==0
drhea678832008-12-10 19:26:22 +00002378 ){
drh19e2d372005-08-29 23:00:03 +00002379 sqlite3_bind_null(pStmt, i+1);
2380 }else{
2381 sqlite3_bind_text(pStmt, i+1, azCol[i], -1, SQLITE_STATIC);
2382 }
2383 }
2384 sqlite3_step(pStmt);
2385 rc = sqlite3_reset(pStmt);
2386 free(zLine);
2387 if( rc!=SQLITE_OK ){
drha198f2b2014-02-07 19:26:13 +00002388 Tcl_AppendResult(interp,"Error: ", sqlite3_errmsg(pDb->db), (char*)0);
drh19e2d372005-08-29 23:00:03 +00002389 zCommit = "ROLLBACK";
2390 break;
2391 }
2392 }
2393 free(azCol);
2394 fclose(in);
2395 sqlite3_finalize(pStmt);
drh37527852006-03-16 16:19:56 +00002396 (void)sqlite3_exec(pDb->db, zCommit, 0, 0, 0);
drh19e2d372005-08-29 23:00:03 +00002397
2398 if( zCommit[0] == 'C' ){
2399 /* success, set result as number of lines processed */
2400 pResult = Tcl_GetObjResult(interp);
2401 Tcl_SetIntObj(pResult, lineno);
2402 rc = TCL_OK;
2403 }else{
2404 /* failure, append lineno where failed */
drh5bb3eb92007-05-04 13:15:55 +00002405 sqlite3_snprintf(sizeof(zLineNum), zLineNum,"%d",lineno);
drha198f2b2014-02-07 19:26:13 +00002406 Tcl_AppendResult(interp,", failed while processing line: ",zLineNum,
2407 (char*)0);
drh19e2d372005-08-29 23:00:03 +00002408 rc = TCL_ERROR;
2409 }
2410 break;
2411 }
2412
drhdcd997e2003-01-31 17:21:49 +00002413 /*
drh41449052006-07-06 17:08:48 +00002414 ** $db enable_load_extension BOOLEAN
2415 **
2416 ** Turn the extension loading feature on or off. It if off by
2417 ** default.
2418 */
2419 case DB_ENABLE_LOAD_EXTENSION: {
drhf533acc2006-12-19 18:57:11 +00002420#ifndef SQLITE_OMIT_LOAD_EXTENSION
drh41449052006-07-06 17:08:48 +00002421 int onoff;
2422 if( objc!=3 ){
2423 Tcl_WrongNumArgs(interp, 2, objv, "BOOLEAN");
2424 return TCL_ERROR;
2425 }
2426 if( Tcl_GetBooleanFromObj(interp, objv[2], &onoff) ){
2427 return TCL_ERROR;
2428 }
2429 sqlite3_enable_load_extension(pDb->db, onoff);
2430 break;
drhf533acc2006-12-19 18:57:11 +00002431#else
2432 Tcl_AppendResult(interp, "extension loading is turned off at compile-time",
drha198f2b2014-02-07 19:26:13 +00002433 (char*)0);
drhf533acc2006-12-19 18:57:11 +00002434 return TCL_ERROR;
2435#endif
drh41449052006-07-06 17:08:48 +00002436 }
2437
2438 /*
drhdcd997e2003-01-31 17:21:49 +00002439 ** $db errorcode
2440 **
2441 ** Return the numeric error code that was returned by the most recent
danielk19776f8a5032004-05-10 10:34:51 +00002442 ** call to sqlite3_exec().
drhdcd997e2003-01-31 17:21:49 +00002443 */
2444 case DB_ERRORCODE: {
danielk1977f3ce83f2004-06-14 11:43:46 +00002445 Tcl_SetObjResult(interp, Tcl_NewIntObj(sqlite3_errcode(pDb->db)));
drhdcd997e2003-01-31 17:21:49 +00002446 break;
2447 }
dan4a4c11a2009-10-06 14:59:02 +00002448
2449 /*
2450 ** $db exists $sql
2451 ** $db onecolumn $sql
2452 **
2453 ** The onecolumn method is the equivalent of:
2454 ** lindex [$db eval $sql] 0
2455 */
mistachkinb56660f2016-07-14 21:26:09 +00002456 case DB_EXISTS:
dan4a4c11a2009-10-06 14:59:02 +00002457 case DB_ONECOLUMN: {
drhedc40242016-06-13 12:34:38 +00002458 Tcl_Obj *pResult = 0;
dan4a4c11a2009-10-06 14:59:02 +00002459 DbEvalContext sEval;
2460 if( objc!=3 ){
2461 Tcl_WrongNumArgs(interp, 2, objv, "SQL");
2462 return TCL_ERROR;
2463 }
2464
drhaf38cdb2017-06-26 21:08:32 +00002465 dbEvalInit(&sEval, pDb, objv[2], 0, 0);
dan4a4c11a2009-10-06 14:59:02 +00002466 rc = dbEvalStep(&sEval);
2467 if( choice==DB_ONECOLUMN ){
2468 if( rc==TCL_OK ){
drhedc40242016-06-13 12:34:38 +00002469 pResult = dbEvalColumnValue(&sEval, 0);
dand5f12cd2011-08-18 17:47:57 +00002470 }else if( rc==TCL_BREAK ){
2471 Tcl_ResetResult(interp);
dan4a4c11a2009-10-06 14:59:02 +00002472 }
2473 }else if( rc==TCL_BREAK || rc==TCL_OK ){
drhedc40242016-06-13 12:34:38 +00002474 pResult = Tcl_NewBooleanObj(rc==TCL_OK);
dan4a4c11a2009-10-06 14:59:02 +00002475 }
2476 dbEvalFinalize(&sEval);
drhedc40242016-06-13 12:34:38 +00002477 if( pResult ) Tcl_SetObjResult(interp, pResult);
dan4a4c11a2009-10-06 14:59:02 +00002478
2479 if( rc==TCL_BREAK ){
2480 rc = TCL_OK;
2481 }
2482 break;
2483 }
mistachkinb56660f2016-07-14 21:26:09 +00002484
drh75897232000-05-29 14:26:00 +00002485 /*
drhaf38cdb2017-06-26 21:08:32 +00002486 ** $db eval ?options? $sql ?array? ?{ ...code... }?
drh75897232000-05-29 14:26:00 +00002487 **
2488 ** The SQL statement in $sql is evaluated. For each row, the values are
drhbec3f402000-08-04 13:49:02 +00002489 ** placed in elements of the array named "array" and ...code... is executed.
drh75897232000-05-29 14:26:00 +00002490 ** If "array" and "code" are omitted, then no callback is every invoked.
2491 ** If "array" is an empty string, then the values are placed in variables
2492 ** that have the same name as the fields extracted by the query.
2493 */
dan4a4c11a2009-10-06 14:59:02 +00002494 case DB_EVAL: {
drhaf38cdb2017-06-26 21:08:32 +00002495 int evalFlags = 0;
2496 const char *zOpt;
2497 while( objc>3 && (zOpt = Tcl_GetString(objv[2]))!=0 && zOpt[0]=='-' ){
2498 if( strcmp(zOpt, "-withoutnulls")==0 ){
2499 evalFlags |= SQLITE_EVAL_WITHOUTNULLS;
2500 }
2501 else{
2502 Tcl_AppendResult(interp, "unknown option: \"", zOpt, "\"", (void*)0);
2503 return TCL_ERROR;
2504 }
2505 objc--;
2506 objv++;
2507 }
dan4a4c11a2009-10-06 14:59:02 +00002508 if( objc<3 || objc>5 ){
drhaf38cdb2017-06-26 21:08:32 +00002509 Tcl_WrongNumArgs(interp, 2, objv,
2510 "?OPTIONS? SQL ?ARRAY-NAME? ?SCRIPT?");
dan4a4c11a2009-10-06 14:59:02 +00002511 return TCL_ERROR;
danielk197730ccda12004-05-27 12:11:31 +00002512 }
dan4a4c11a2009-10-06 14:59:02 +00002513
drh92febd92004-08-20 18:34:20 +00002514 if( objc==3 ){
dan4a4c11a2009-10-06 14:59:02 +00002515 DbEvalContext sEval;
2516 Tcl_Obj *pRet = Tcl_NewObj();
2517 Tcl_IncrRefCount(pRet);
drhaf38cdb2017-06-26 21:08:32 +00002518 dbEvalInit(&sEval, pDb, objv[2], 0, 0);
dan4a4c11a2009-10-06 14:59:02 +00002519 while( TCL_OK==(rc = dbEvalStep(&sEval)) ){
2520 int i;
2521 int nCol;
2522 dbEvalRowInfo(&sEval, &nCol, 0);
drh92febd92004-08-20 18:34:20 +00002523 for(i=0; i<nCol; i++){
dan4a4c11a2009-10-06 14:59:02 +00002524 Tcl_ListObjAppendElement(interp, pRet, dbEvalColumnValue(&sEval, i));
danielk197730ccda12004-05-27 12:11:31 +00002525 }
2526 }
dan4a4c11a2009-10-06 14:59:02 +00002527 dbEvalFinalize(&sEval);
drh90b6bb12004-09-13 13:16:31 +00002528 if( rc==TCL_BREAK ){
dan4a4c11a2009-10-06 14:59:02 +00002529 Tcl_SetObjResult(interp, pRet);
drh90b6bb12004-09-13 13:16:31 +00002530 rc = TCL_OK;
2531 }
drh1807ce32004-09-07 13:20:35 +00002532 Tcl_DecrRefCount(pRet);
dan4a4c11a2009-10-06 14:59:02 +00002533 }else{
mistachkin8e189222015-04-19 21:43:16 +00002534 ClientData cd2[2];
dan4a4c11a2009-10-06 14:59:02 +00002535 DbEvalContext *p;
2536 Tcl_Obj *pArray = 0;
2537 Tcl_Obj *pScript;
2538
drhaf38cdb2017-06-26 21:08:32 +00002539 if( objc>=5 && *(char *)Tcl_GetString(objv[3]) ){
dan4a4c11a2009-10-06 14:59:02 +00002540 pArray = objv[3];
2541 }
2542 pScript = objv[objc-1];
2543 Tcl_IncrRefCount(pScript);
mistachkinb56660f2016-07-14 21:26:09 +00002544
dan4a4c11a2009-10-06 14:59:02 +00002545 p = (DbEvalContext *)Tcl_Alloc(sizeof(DbEvalContext));
drhaf38cdb2017-06-26 21:08:32 +00002546 dbEvalInit(p, pDb, objv[2], pArray, evalFlags);
dan4a4c11a2009-10-06 14:59:02 +00002547
mistachkin8e189222015-04-19 21:43:16 +00002548 cd2[0] = (void *)p;
2549 cd2[1] = (void *)pScript;
2550 rc = DbEvalNextCmd(cd2, interp, TCL_OK);
danielk197730ccda12004-05-27 12:11:31 +00002551 }
danielk197730ccda12004-05-27 12:11:31 +00002552 break;
2553 }
drhbec3f402000-08-04 13:49:02 +00002554
2555 /*
dan3df30592015-03-13 08:31:54 +00002556 ** $db function NAME [-argcount N] [-deterministic] SCRIPT
drhcabb0812002-09-14 13:47:32 +00002557 **
2558 ** Create a new SQL function called NAME. Whenever that function is
2559 ** called, invoke SCRIPT to evaluate the function.
2560 */
2561 case DB_FUNCTION: {
dan3df30592015-03-13 08:31:54 +00002562 int flags = SQLITE_UTF8;
drhcabb0812002-09-14 13:47:32 +00002563 SqlFunc *pFunc;
drhd1e47332005-06-26 17:55:33 +00002564 Tcl_Obj *pScript;
drhcabb0812002-09-14 13:47:32 +00002565 char *zName;
drhe3602be2008-09-09 12:31:33 +00002566 int nArg = -1;
dan3df30592015-03-13 08:31:54 +00002567 int i;
2568 if( objc<4 ){
2569 Tcl_WrongNumArgs(interp, 2, objv, "NAME ?SWITCHES? SCRIPT");
2570 return TCL_ERROR;
2571 }
2572 for(i=3; i<(objc-1); i++){
2573 const char *z = Tcl_GetString(objv[i]);
drh4f21c4a2008-12-10 22:15:00 +00002574 int n = strlen30(z);
drhe3602be2008-09-09 12:31:33 +00002575 if( n>2 && strncmp(z, "-argcount",n)==0 ){
dan3df30592015-03-13 08:31:54 +00002576 if( i==(objc-2) ){
drhea8f0a12017-01-12 11:50:08 +00002577 Tcl_AppendResult(interp, "option requires an argument: ", z,(char*)0);
dan3df30592015-03-13 08:31:54 +00002578 return TCL_ERROR;
2579 }
2580 if( Tcl_GetIntFromObj(interp, objv[i+1], &nArg) ) return TCL_ERROR;
drhe3602be2008-09-09 12:31:33 +00002581 if( nArg<0 ){
2582 Tcl_AppendResult(interp, "number of arguments must be non-negative",
2583 (char*)0);
2584 return TCL_ERROR;
2585 }
dan3df30592015-03-13 08:31:54 +00002586 i++;
2587 }else
2588 if( n>2 && strncmp(z, "-deterministic",n)==0 ){
2589 flags |= SQLITE_DETERMINISTIC;
2590 }else{
mistachkinb56660f2016-07-14 21:26:09 +00002591 Tcl_AppendResult(interp, "bad option \"", z,
drhea8f0a12017-01-12 11:50:08 +00002592 "\": must be -argcount or -deterministic", (char*)0
dan3df30592015-03-13 08:31:54 +00002593 );
2594 return TCL_ERROR;
drhe3602be2008-09-09 12:31:33 +00002595 }
drhcabb0812002-09-14 13:47:32 +00002596 }
dan3df30592015-03-13 08:31:54 +00002597
2598 pScript = objv[objc-1];
drhcabb0812002-09-14 13:47:32 +00002599 zName = Tcl_GetStringFromObj(objv[2], 0);
drhd1e47332005-06-26 17:55:33 +00002600 pFunc = findSqlFunc(pDb, zName);
drhcabb0812002-09-14 13:47:32 +00002601 if( pFunc==0 ) return TCL_ERROR;
drhd1e47332005-06-26 17:55:33 +00002602 if( pFunc->pScript ){
2603 Tcl_DecrRefCount(pFunc->pScript);
2604 }
2605 pFunc->pScript = pScript;
2606 Tcl_IncrRefCount(pScript);
2607 pFunc->useEvalObjv = safeToUseEvalObjv(interp, pScript);
dan3df30592015-03-13 08:31:54 +00002608 rc = sqlite3_create_function(pDb->db, zName, nArg, flags,
danielk1977d8123362004-06-12 09:25:12 +00002609 pFunc, tclSqlFunc, 0, 0);
drhfb7e7652005-01-24 00:28:42 +00002610 if( rc!=SQLITE_OK ){
danielk19779636c4e2005-01-25 04:27:54 +00002611 rc = TCL_ERROR;
2612 Tcl_SetResult(interp, (char *)sqlite3_errmsg(pDb->db), TCL_VOLATILE);
drhfb7e7652005-01-24 00:28:42 +00002613 }
drhcabb0812002-09-14 13:47:32 +00002614 break;
2615 }
2616
2617 /*
danielk19778cbadb02007-05-03 16:31:26 +00002618 ** $db incrblob ?-readonly? ?DB? TABLE COLUMN ROWID
danielk1977b4e9af92007-05-01 17:49:49 +00002619 */
2620 case DB_INCRBLOB: {
danielk197732a0d8b2007-05-04 19:03:02 +00002621#ifdef SQLITE_OMIT_INCRBLOB
drha198f2b2014-02-07 19:26:13 +00002622 Tcl_AppendResult(interp, "incrblob not available in this build", (char*)0);
danielk197732a0d8b2007-05-04 19:03:02 +00002623 return TCL_ERROR;
2624#else
danielk19778cbadb02007-05-03 16:31:26 +00002625 int isReadonly = 0;
danielk1977b4e9af92007-05-01 17:49:49 +00002626 const char *zDb = "main";
2627 const char *zTable;
2628 const char *zColumn;
drhb3f787f2012-09-29 14:45:54 +00002629 Tcl_WideInt iRow;
danielk1977b4e9af92007-05-01 17:49:49 +00002630
danielk19778cbadb02007-05-03 16:31:26 +00002631 /* Check for the -readonly option */
2632 if( objc>3 && strcmp(Tcl_GetString(objv[2]), "-readonly")==0 ){
2633 isReadonly = 1;
2634 }
2635
2636 if( objc!=(5+isReadonly) && objc!=(6+isReadonly) ){
2637 Tcl_WrongNumArgs(interp, 2, objv, "?-readonly? ?DB? TABLE COLUMN ROWID");
danielk1977b4e9af92007-05-01 17:49:49 +00002638 return TCL_ERROR;
2639 }
2640
danielk19778cbadb02007-05-03 16:31:26 +00002641 if( objc==(6+isReadonly) ){
danielk1977b4e9af92007-05-01 17:49:49 +00002642 zDb = Tcl_GetString(objv[2]);
2643 }
2644 zTable = Tcl_GetString(objv[objc-3]);
2645 zColumn = Tcl_GetString(objv[objc-2]);
2646 rc = Tcl_GetWideIntFromObj(interp, objv[objc-1], &iRow);
2647
2648 if( rc==TCL_OK ){
danielk19778cbadb02007-05-03 16:31:26 +00002649 rc = createIncrblobChannel(
danedf5b162014-08-19 09:15:41 +00002650 interp, pDb, zDb, zTable, zColumn, (sqlite3_int64)iRow, isReadonly
danielk19778cbadb02007-05-03 16:31:26 +00002651 );
danielk1977b4e9af92007-05-01 17:49:49 +00002652 }
danielk197732a0d8b2007-05-04 19:03:02 +00002653#endif
danielk1977b4e9af92007-05-01 17:49:49 +00002654 break;
2655 }
2656
2657 /*
drhf11bded2006-07-17 00:02:44 +00002658 ** $db interrupt
2659 **
2660 ** Interrupt the execution of the inner-most SQL interpreter. This
2661 ** causes the SQL statement to return an error of SQLITE_INTERRUPT.
2662 */
2663 case DB_INTERRUPT: {
2664 sqlite3_interrupt(pDb->db);
2665 break;
2666 }
2667
2668 /*
drh19e2d372005-08-29 23:00:03 +00002669 ** $db nullvalue ?STRING?
2670 **
2671 ** Change text used when a NULL comes back from the database. If ?STRING?
2672 ** is not present, then the current string used for NULL is returned.
2673 ** If STRING is present, then STRING is returned.
2674 **
2675 */
2676 case DB_NULLVALUE: {
2677 if( objc!=2 && objc!=3 ){
2678 Tcl_WrongNumArgs(interp, 2, objv, "NULLVALUE");
2679 return TCL_ERROR;
2680 }
2681 if( objc==3 ){
2682 int len;
2683 char *zNull = Tcl_GetStringFromObj(objv[2], &len);
2684 if( pDb->zNull ){
2685 Tcl_Free(pDb->zNull);
2686 }
2687 if( zNull && len>0 ){
2688 pDb->zNull = Tcl_Alloc( len + 1 );
drh7fd33922011-06-20 19:00:30 +00002689 memcpy(pDb->zNull, zNull, len);
drh19e2d372005-08-29 23:00:03 +00002690 pDb->zNull[len] = '\0';
2691 }else{
2692 pDb->zNull = 0;
2693 }
2694 }
drhc45e6712012-10-03 11:02:33 +00002695 Tcl_SetObjResult(interp, Tcl_NewStringObj(pDb->zNull, -1));
drh19e2d372005-08-29 23:00:03 +00002696 break;
2697 }
2698
2699 /*
mistachkinb56660f2016-07-14 21:26:09 +00002700 ** $db last_insert_rowid
drhaf9ff332002-01-16 21:00:27 +00002701 **
2702 ** Return an integer which is the ROWID for the most recent insert.
2703 */
2704 case DB_LAST_INSERT_ROWID: {
2705 Tcl_Obj *pResult;
drhf7e678d2006-06-21 19:30:34 +00002706 Tcl_WideInt rowid;
drhaf9ff332002-01-16 21:00:27 +00002707 if( objc!=2 ){
2708 Tcl_WrongNumArgs(interp, 2, objv, "");
2709 return TCL_ERROR;
2710 }
danielk19776f8a5032004-05-10 10:34:51 +00002711 rowid = sqlite3_last_insert_rowid(pDb->db);
drhaf9ff332002-01-16 21:00:27 +00002712 pResult = Tcl_GetObjResult(interp);
drhf7e678d2006-06-21 19:30:34 +00002713 Tcl_SetWideIntObj(pResult, rowid);
drhaf9ff332002-01-16 21:00:27 +00002714 break;
2715 }
2716
2717 /*
dan4a4c11a2009-10-06 14:59:02 +00002718 ** The DB_ONECOLUMN method is implemented together with DB_EXISTS.
drh5d9d7572003-08-19 14:31:01 +00002719 */
drh1807ce32004-09-07 13:20:35 +00002720
2721 /* $db progress ?N CALLBACK?
mistachkinb56660f2016-07-14 21:26:09 +00002722 **
drh1807ce32004-09-07 13:20:35 +00002723 ** Invoke the given callback every N virtual machine opcodes while executing
2724 ** queries.
2725 */
2726 case DB_PROGRESS: {
2727 if( objc==2 ){
2728 if( pDb->zProgress ){
drha198f2b2014-02-07 19:26:13 +00002729 Tcl_AppendResult(interp, pDb->zProgress, (char*)0);
drh1807ce32004-09-07 13:20:35 +00002730 }
2731 }else if( objc==4 ){
2732 char *zProgress;
2733 int len;
2734 int N;
2735 if( TCL_OK!=Tcl_GetIntFromObj(interp, objv[2], &N) ){
drhfd131da2007-08-07 17:13:03 +00002736 return TCL_ERROR;
drh1807ce32004-09-07 13:20:35 +00002737 };
2738 if( pDb->zProgress ){
2739 Tcl_Free(pDb->zProgress);
2740 }
2741 zProgress = Tcl_GetStringFromObj(objv[3], &len);
2742 if( zProgress && len>0 ){
2743 pDb->zProgress = Tcl_Alloc( len + 1 );
drh5bb3eb92007-05-04 13:15:55 +00002744 memcpy(pDb->zProgress, zProgress, len+1);
drh1807ce32004-09-07 13:20:35 +00002745 }else{
2746 pDb->zProgress = 0;
2747 }
2748#ifndef SQLITE_OMIT_PROGRESS_CALLBACK
2749 if( pDb->zProgress ){
2750 pDb->interp = interp;
2751 sqlite3_progress_handler(pDb->db, N, DbProgressHandler, pDb);
2752 }else{
2753 sqlite3_progress_handler(pDb->db, 0, 0, 0);
2754 }
2755#endif
2756 }else{
2757 Tcl_WrongNumArgs(interp, 2, objv, "N CALLBACK");
drh5d9d7572003-08-19 14:31:01 +00002758 return TCL_ERROR;
2759 }
drh5d9d7572003-08-19 14:31:01 +00002760 break;
2761 }
2762
drh19e2d372005-08-29 23:00:03 +00002763 /* $db profile ?CALLBACK?
2764 **
2765 ** Make arrangements to invoke the CALLBACK routine after each SQL statement
2766 ** that has run. The text of the SQL and the amount of elapse time are
2767 ** appended to CALLBACK before the script is run.
2768 */
2769 case DB_PROFILE: {
2770 if( objc>3 ){
2771 Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK?");
2772 return TCL_ERROR;
2773 }else if( objc==2 ){
2774 if( pDb->zProfile ){
drha198f2b2014-02-07 19:26:13 +00002775 Tcl_AppendResult(interp, pDb->zProfile, (char*)0);
drh19e2d372005-08-29 23:00:03 +00002776 }
2777 }else{
2778 char *zProfile;
2779 int len;
2780 if( pDb->zProfile ){
2781 Tcl_Free(pDb->zProfile);
2782 }
2783 zProfile = Tcl_GetStringFromObj(objv[2], &len);
2784 if( zProfile && len>0 ){
2785 pDb->zProfile = Tcl_Alloc( len + 1 );
drh5bb3eb92007-05-04 13:15:55 +00002786 memcpy(pDb->zProfile, zProfile, len+1);
drh19e2d372005-08-29 23:00:03 +00002787 }else{
2788 pDb->zProfile = 0;
2789 }
drh2eb22af2016-09-10 19:51:40 +00002790#if !defined(SQLITE_OMIT_TRACE) && !defined(SQLITE_OMIT_FLOATING_POINT) && \
2791 !defined(SQLITE_OMIT_DEPRECATED)
drh19e2d372005-08-29 23:00:03 +00002792 if( pDb->zProfile ){
2793 pDb->interp = interp;
2794 sqlite3_profile(pDb->db, DbProfileHandler, pDb);
2795 }else{
2796 sqlite3_profile(pDb->db, 0, 0);
2797 }
2798#endif
2799 }
2800 break;
2801 }
2802
drh5d9d7572003-08-19 14:31:01 +00002803 /*
drh22fbcb82004-02-01 01:22:50 +00002804 ** $db rekey KEY
2805 **
2806 ** Change the encryption key on the currently open database.
2807 */
2808 case DB_REKEY: {
drh32f57d42016-03-16 01:03:10 +00002809#if defined(SQLITE_HAS_CODEC) && !defined(SQLITE_OMIT_CODEC_FROM_TCL)
drh22fbcb82004-02-01 01:22:50 +00002810 int nKey;
2811 void *pKey;
drhb07028f2011-10-14 21:49:18 +00002812#endif
drh22fbcb82004-02-01 01:22:50 +00002813 if( objc!=3 ){
2814 Tcl_WrongNumArgs(interp, 2, objv, "KEY");
2815 return TCL_ERROR;
2816 }
drh32f57d42016-03-16 01:03:10 +00002817#if defined(SQLITE_HAS_CODEC) && !defined(SQLITE_OMIT_CODEC_FROM_TCL)
drhb07028f2011-10-14 21:49:18 +00002818 pKey = Tcl_GetByteArrayFromObj(objv[2], &nKey);
drh2011d5f2004-07-22 02:40:37 +00002819 rc = sqlite3_rekey(pDb->db, pKey, nKey);
drh22fbcb82004-02-01 01:22:50 +00002820 if( rc ){
drha198f2b2014-02-07 19:26:13 +00002821 Tcl_AppendResult(interp, sqlite3_errstr(rc), (char*)0);
drh22fbcb82004-02-01 01:22:50 +00002822 rc = TCL_ERROR;
2823 }
2824#endif
2825 break;
2826 }
2827
drhdc2c4912009-02-04 22:46:47 +00002828 /* $db restore ?DATABASE? FILENAME
2829 **
mistachkinb56660f2016-07-14 21:26:09 +00002830 ** Open a database file named FILENAME. Transfer the content
drhdc2c4912009-02-04 22:46:47 +00002831 ** of FILENAME into the local database DATABASE (default: "main").
2832 */
2833 case DB_RESTORE: {
2834 const char *zSrcFile;
2835 const char *zDestDb;
2836 sqlite3 *pSrc;
2837 sqlite3_backup *pBackup;
2838 int nTimeout = 0;
2839
2840 if( objc==3 ){
2841 zDestDb = "main";
2842 zSrcFile = Tcl_GetString(objv[2]);
2843 }else if( objc==4 ){
2844 zDestDb = Tcl_GetString(objv[2]);
2845 zSrcFile = Tcl_GetString(objv[3]);
2846 }else{
2847 Tcl_WrongNumArgs(interp, 2, objv, "?DATABASE? FILENAME");
2848 return TCL_ERROR;
2849 }
drh147ef392016-01-22 23:17:51 +00002850 rc = sqlite3_open_v2(zSrcFile, &pSrc,
2851 SQLITE_OPEN_READONLY | pDb->openFlags, 0);
drhdc2c4912009-02-04 22:46:47 +00002852 if( rc!=SQLITE_OK ){
2853 Tcl_AppendResult(interp, "cannot open source database: ",
2854 sqlite3_errmsg(pSrc), (char*)0);
2855 sqlite3_close(pSrc);
2856 return TCL_ERROR;
2857 }
2858 pBackup = sqlite3_backup_init(pDb->db, zDestDb, pSrc, "main");
2859 if( pBackup==0 ){
2860 Tcl_AppendResult(interp, "restore failed: ",
2861 sqlite3_errmsg(pDb->db), (char*)0);
2862 sqlite3_close(pSrc);
2863 return TCL_ERROR;
2864 }
2865 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK
2866 || rc==SQLITE_BUSY ){
2867 if( rc==SQLITE_BUSY ){
2868 if( nTimeout++ >= 3 ) break;
2869 sqlite3_sleep(100);
2870 }
2871 }
2872 sqlite3_backup_finish(pBackup);
2873 if( rc==SQLITE_DONE ){
2874 rc = TCL_OK;
2875 }else if( rc==SQLITE_BUSY || rc==SQLITE_LOCKED ){
2876 Tcl_AppendResult(interp, "restore failed: source database busy",
2877 (char*)0);
2878 rc = TCL_ERROR;
2879 }else{
2880 Tcl_AppendResult(interp, "restore failed: ",
2881 sqlite3_errmsg(pDb->db), (char*)0);
2882 rc = TCL_ERROR;
2883 }
2884 sqlite3_close(pSrc);
2885 break;
2886 }
2887
drh22fbcb82004-02-01 01:22:50 +00002888 /*
danc456a762017-06-22 16:51:16 +00002889 ** $db status (step|sort|autoindex|vmstep)
drhd1d38482008-10-07 23:46:38 +00002890 **
mistachkinb56660f2016-07-14 21:26:09 +00002891 ** Display SQLITE_STMTSTATUS_FULLSCAN_STEP or
drhd1d38482008-10-07 23:46:38 +00002892 ** SQLITE_STMTSTATUS_SORT for the most recent eval.
2893 */
2894 case DB_STATUS: {
drhd1d38482008-10-07 23:46:38 +00002895 int v;
2896 const char *zOp;
2897 if( objc!=3 ){
drh1c320a42010-08-01 22:41:32 +00002898 Tcl_WrongNumArgs(interp, 2, objv, "(step|sort|autoindex)");
drhd1d38482008-10-07 23:46:38 +00002899 return TCL_ERROR;
2900 }
2901 zOp = Tcl_GetString(objv[2]);
2902 if( strcmp(zOp, "step")==0 ){
2903 v = pDb->nStep;
2904 }else if( strcmp(zOp, "sort")==0 ){
2905 v = pDb->nSort;
drh3c379b02010-04-07 19:31:59 +00002906 }else if( strcmp(zOp, "autoindex")==0 ){
2907 v = pDb->nIndex;
danc456a762017-06-22 16:51:16 +00002908 }else if( strcmp(zOp, "vmstep")==0 ){
2909 v = pDb->nVMStep;
drhd1d38482008-10-07 23:46:38 +00002910 }else{
mistachkinb56660f2016-07-14 21:26:09 +00002911 Tcl_AppendResult(interp,
danc456a762017-06-22 16:51:16 +00002912 "bad argument: should be autoindex, step, sort or vmstep",
drhd1d38482008-10-07 23:46:38 +00002913 (char*)0);
2914 return TCL_ERROR;
2915 }
2916 Tcl_SetObjResult(interp, Tcl_NewIntObj(v));
2917 break;
2918 }
mistachkinb56660f2016-07-14 21:26:09 +00002919
drhd1d38482008-10-07 23:46:38 +00002920 /*
drhbec3f402000-08-04 13:49:02 +00002921 ** $db timeout MILLESECONDS
2922 **
2923 ** Delay for the number of milliseconds specified when a file is locked.
2924 */
drh6d313162000-09-21 13:01:35 +00002925 case DB_TIMEOUT: {
drhbec3f402000-08-04 13:49:02 +00002926 int ms;
drh6d313162000-09-21 13:01:35 +00002927 if( objc!=3 ){
2928 Tcl_WrongNumArgs(interp, 2, objv, "MILLISECONDS");
drhbec3f402000-08-04 13:49:02 +00002929 return TCL_ERROR;
2930 }
drh6d313162000-09-21 13:01:35 +00002931 if( Tcl_GetIntFromObj(interp, objv[2], &ms) ) return TCL_ERROR;
danielk19776f8a5032004-05-10 10:34:51 +00002932 sqlite3_busy_timeout(pDb->db, ms);
drh6d313162000-09-21 13:01:35 +00002933 break;
drh75897232000-05-29 14:26:00 +00002934 }
mistachkinb56660f2016-07-14 21:26:09 +00002935
danielk197755c45f22005-04-03 23:54:43 +00002936 /*
drh0f14e2e2004-06-29 12:39:08 +00002937 ** $db total_changes
2938 **
mistachkinb56660f2016-07-14 21:26:09 +00002939 ** Return the number of rows that were modified, inserted, or deleted
drh0f14e2e2004-06-29 12:39:08 +00002940 ** since the database handle was created.
2941 */
2942 case DB_TOTAL_CHANGES: {
2943 Tcl_Obj *pResult;
2944 if( objc!=2 ){
2945 Tcl_WrongNumArgs(interp, 2, objv, "");
2946 return TCL_ERROR;
2947 }
2948 pResult = Tcl_GetObjResult(interp);
2949 Tcl_SetIntObj(pResult, sqlite3_total_changes(pDb->db));
2950 break;
2951 }
2952
drhb5a20d32003-04-23 12:25:23 +00002953 /* $db trace ?CALLBACK?
2954 **
2955 ** Make arrangements to invoke the CALLBACK routine for each SQL statement
2956 ** that is executed. The text of the SQL is appended to CALLBACK before
2957 ** it is executed.
2958 */
2959 case DB_TRACE: {
2960 if( objc>3 ){
2961 Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK?");
drhb97759e2004-06-29 11:26:59 +00002962 return TCL_ERROR;
drhb5a20d32003-04-23 12:25:23 +00002963 }else if( objc==2 ){
2964 if( pDb->zTrace ){
drha198f2b2014-02-07 19:26:13 +00002965 Tcl_AppendResult(interp, pDb->zTrace, (char*)0);
drhb5a20d32003-04-23 12:25:23 +00002966 }
2967 }else{
2968 char *zTrace;
2969 int len;
2970 if( pDb->zTrace ){
2971 Tcl_Free(pDb->zTrace);
2972 }
2973 zTrace = Tcl_GetStringFromObj(objv[2], &len);
2974 if( zTrace && len>0 ){
2975 pDb->zTrace = Tcl_Alloc( len + 1 );
drh5bb3eb92007-05-04 13:15:55 +00002976 memcpy(pDb->zTrace, zTrace, len+1);
drhb5a20d32003-04-23 12:25:23 +00002977 }else{
2978 pDb->zTrace = 0;
2979 }
drh2eb22af2016-09-10 19:51:40 +00002980#if !defined(SQLITE_OMIT_TRACE) && !defined(SQLITE_OMIT_FLOATING_POINT) && \
2981 !defined(SQLITE_OMIT_DEPRECATED)
drhb5a20d32003-04-23 12:25:23 +00002982 if( pDb->zTrace ){
2983 pDb->interp = interp;
danielk19776f8a5032004-05-10 10:34:51 +00002984 sqlite3_trace(pDb->db, DbTraceHandler, pDb);
drhb5a20d32003-04-23 12:25:23 +00002985 }else{
danielk19776f8a5032004-05-10 10:34:51 +00002986 sqlite3_trace(pDb->db, 0, 0);
drhb5a20d32003-04-23 12:25:23 +00002987 }
drh19e2d372005-08-29 23:00:03 +00002988#endif
drhb5a20d32003-04-23 12:25:23 +00002989 }
2990 break;
2991 }
2992
mistachkinb56660f2016-07-14 21:26:09 +00002993 /* $db trace_v2 ?CALLBACK? ?MASK?
2994 **
2995 ** Make arrangements to invoke the CALLBACK routine for each trace event
2996 ** matching the mask that is generated. The parameters are appended to
2997 ** CALLBACK before it is executed.
2998 */
2999 case DB_TRACE_V2: {
3000 if( objc>4 ){
3001 Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK? ?MASK?");
3002 return TCL_ERROR;
3003 }else if( objc==2 ){
3004 if( pDb->zTraceV2 ){
3005 Tcl_AppendResult(interp, pDb->zTraceV2, (char*)0);
3006 }
3007 }else{
mistachkinb56660f2016-07-14 21:26:09 +00003008 char *zTraceV2;
3009 int len;
mistachkinb52dcd82016-07-14 23:17:03 +00003010 Tcl_WideInt wMask = 0;
mistachkinb56660f2016-07-14 21:26:09 +00003011 if( objc==4 ){
mistachkinb52dcd82016-07-14 23:17:03 +00003012 static const char *TTYPE_strs[] = {
3013 "statement", "profile", "row", "close", 0
3014 };
3015 enum TTYPE_enum {
3016 TTYPE_STMT, TTYPE_PROFILE, TTYPE_ROW, TTYPE_CLOSE
3017 };
3018 int i;
3019 if( TCL_OK!=Tcl_ListObjLength(interp, objv[3], &len) ){
mistachkinb56660f2016-07-14 21:26:09 +00003020 return TCL_ERROR;
3021 }
mistachkinb52dcd82016-07-14 23:17:03 +00003022 for(i=0; i<len; i++){
3023 Tcl_Obj *pObj;
3024 int ttype;
3025 if( TCL_OK!=Tcl_ListObjIndex(interp, objv[3], i, &pObj) ){
3026 return TCL_ERROR;
3027 }
3028 if( Tcl_GetIndexFromObj(interp, pObj, TTYPE_strs, "trace type",
3029 0, &ttype)!=TCL_OK ){
3030 Tcl_WideInt wType;
3031 Tcl_Obj *pError = Tcl_DuplicateObj(Tcl_GetObjResult(interp));
3032 Tcl_IncrRefCount(pError);
3033 if( TCL_OK==Tcl_GetWideIntFromObj(interp, pObj, &wType) ){
3034 Tcl_DecrRefCount(pError);
3035 wMask |= wType;
3036 }else{
3037 Tcl_SetObjResult(interp, pError);
3038 Tcl_DecrRefCount(pError);
3039 return TCL_ERROR;
3040 }
3041 }else{
3042 switch( (enum TTYPE_enum)ttype ){
3043 case TTYPE_STMT: wMask |= SQLITE_TRACE_STMT; break;
3044 case TTYPE_PROFILE: wMask |= SQLITE_TRACE_PROFILE; break;
3045 case TTYPE_ROW: wMask |= SQLITE_TRACE_ROW; break;
3046 case TTYPE_CLOSE: wMask |= SQLITE_TRACE_CLOSE; break;
3047 }
3048 }
3049 }
mistachkinb56660f2016-07-14 21:26:09 +00003050 }else{
mistachkinb52dcd82016-07-14 23:17:03 +00003051 wMask = SQLITE_TRACE_STMT; /* use the "legacy" default */
mistachkinb56660f2016-07-14 21:26:09 +00003052 }
3053 if( pDb->zTraceV2 ){
3054 Tcl_Free(pDb->zTraceV2);
3055 }
3056 zTraceV2 = Tcl_GetStringFromObj(objv[2], &len);
3057 if( zTraceV2 && len>0 ){
3058 pDb->zTraceV2 = Tcl_Alloc( len + 1 );
3059 memcpy(pDb->zTraceV2, zTraceV2, len+1);
3060 }else{
3061 pDb->zTraceV2 = 0;
3062 }
3063#if !defined(SQLITE_OMIT_TRACE) && !defined(SQLITE_OMIT_FLOATING_POINT)
3064 if( pDb->zTraceV2 ){
3065 pDb->interp = interp;
3066 sqlite3_trace_v2(pDb->db, (unsigned)wMask, DbTraceV2Handler, pDb);
3067 }else{
3068 sqlite3_trace_v2(pDb->db, 0, 0, 0);
3069 }
3070#endif
3071 }
3072 break;
3073 }
3074
drh3d214232005-08-02 12:21:08 +00003075 /* $db transaction [-deferred|-immediate|-exclusive] SCRIPT
3076 **
3077 ** Start a new transaction (if we are not already in the midst of a
3078 ** transaction) and execute the TCL script SCRIPT. After SCRIPT
3079 ** completes, either commit the transaction or roll it back if SCRIPT
3080 ** throws an exception. Or if no new transation was started, do nothing.
3081 ** pass the exception on up the stack.
3082 **
3083 ** This command was inspired by Dave Thomas's talk on Ruby at the
3084 ** 2005 O'Reilly Open Source Convention (OSCON).
3085 */
3086 case DB_TRANSACTION: {
drh3d214232005-08-02 12:21:08 +00003087 Tcl_Obj *pScript;
danielk1977cd38d522009-01-02 17:33:46 +00003088 const char *zBegin = "SAVEPOINT _tcl_transaction";
drh3d214232005-08-02 12:21:08 +00003089 if( objc!=3 && objc!=4 ){
3090 Tcl_WrongNumArgs(interp, 2, objv, "[TYPE] SCRIPT");
3091 return TCL_ERROR;
3092 }
danielk1977cd38d522009-01-02 17:33:46 +00003093
dan4a4c11a2009-10-06 14:59:02 +00003094 if( pDb->nTransaction==0 && objc==4 ){
drh3d214232005-08-02 12:21:08 +00003095 static const char *TTYPE_strs[] = {
drhce604012005-08-16 11:11:34 +00003096 "deferred", "exclusive", "immediate", 0
drh3d214232005-08-02 12:21:08 +00003097 };
3098 enum TTYPE_enum {
3099 TTYPE_DEFERRED, TTYPE_EXCLUSIVE, TTYPE_IMMEDIATE
3100 };
3101 int ttype;
drhb5555e72005-08-02 17:15:14 +00003102 if( Tcl_GetIndexFromObj(interp, objv[2], TTYPE_strs, "transaction type",
drh3d214232005-08-02 12:21:08 +00003103 0, &ttype) ){
3104 return TCL_ERROR;
3105 }
3106 switch( (enum TTYPE_enum)ttype ){
3107 case TTYPE_DEFERRED: /* no-op */; break;
3108 case TTYPE_EXCLUSIVE: zBegin = "BEGIN EXCLUSIVE"; break;
3109 case TTYPE_IMMEDIATE: zBegin = "BEGIN IMMEDIATE"; break;
3110 }
drh3d214232005-08-02 12:21:08 +00003111 }
danielk1977cd38d522009-01-02 17:33:46 +00003112 pScript = objv[objc-1];
3113
dan4a4c11a2009-10-06 14:59:02 +00003114 /* Run the SQLite BEGIN command to open a transaction or savepoint. */
danielk1977cd38d522009-01-02 17:33:46 +00003115 pDb->disableAuth++;
3116 rc = sqlite3_exec(pDb->db, zBegin, 0, 0, 0);
3117 pDb->disableAuth--;
3118 if( rc!=SQLITE_OK ){
drha198f2b2014-02-07 19:26:13 +00003119 Tcl_AppendResult(interp, sqlite3_errmsg(pDb->db), (char*)0);
danielk1977cd38d522009-01-02 17:33:46 +00003120 return TCL_ERROR;
drh3d214232005-08-02 12:21:08 +00003121 }
danielk1977cd38d522009-01-02 17:33:46 +00003122 pDb->nTransaction++;
danielk1977cd38d522009-01-02 17:33:46 +00003123
dan4a4c11a2009-10-06 14:59:02 +00003124 /* If using NRE, schedule a callback to invoke the script pScript, then
3125 ** a second callback to commit (or rollback) the transaction or savepoint
3126 ** opened above. If not using NRE, evaluate the script directly, then
mistachkinb56660f2016-07-14 21:26:09 +00003127 ** call function DbTransPostCmd() to commit (or rollback) the transaction
dan4a4c11a2009-10-06 14:59:02 +00003128 ** or savepoint. */
3129 if( DbUseNre() ){
3130 Tcl_NRAddCallback(interp, DbTransPostCmd, cd, 0, 0, 0);
drha47941f2013-12-20 18:57:44 +00003131 (void)Tcl_NREvalObj(interp, pScript, 0);
danielk1977cd38d522009-01-02 17:33:46 +00003132 }else{
dan4a4c11a2009-10-06 14:59:02 +00003133 rc = DbTransPostCmd(&cd, interp, Tcl_EvalObjEx(interp, pScript, 0));
drh3d214232005-08-02 12:21:08 +00003134 }
3135 break;
3136 }
3137
danielk197794eb6a12005-12-15 15:22:08 +00003138 /*
danielk1977404ca072009-03-16 13:19:36 +00003139 ** $db unlock_notify ?script?
3140 */
3141 case DB_UNLOCK_NOTIFY: {
3142#ifndef SQLITE_ENABLE_UNLOCK_NOTIFY
drha198f2b2014-02-07 19:26:13 +00003143 Tcl_AppendResult(interp, "unlock_notify not available in this build",
3144 (char*)0);
danielk1977404ca072009-03-16 13:19:36 +00003145 rc = TCL_ERROR;
3146#else
3147 if( objc!=2 && objc!=3 ){
3148 Tcl_WrongNumArgs(interp, 2, objv, "?SCRIPT?");
3149 rc = TCL_ERROR;
3150 }else{
3151 void (*xNotify)(void **, int) = 0;
3152 void *pNotifyArg = 0;
3153
3154 if( pDb->pUnlockNotify ){
3155 Tcl_DecrRefCount(pDb->pUnlockNotify);
3156 pDb->pUnlockNotify = 0;
3157 }
mistachkinb56660f2016-07-14 21:26:09 +00003158
danielk1977404ca072009-03-16 13:19:36 +00003159 if( objc==3 ){
3160 xNotify = DbUnlockNotify;
3161 pNotifyArg = (void *)pDb;
3162 pDb->pUnlockNotify = objv[2];
3163 Tcl_IncrRefCount(pDb->pUnlockNotify);
3164 }
mistachkinb56660f2016-07-14 21:26:09 +00003165
danielk1977404ca072009-03-16 13:19:36 +00003166 if( sqlite3_unlock_notify(pDb->db, xNotify, pNotifyArg) ){
drha198f2b2014-02-07 19:26:13 +00003167 Tcl_AppendResult(interp, sqlite3_errmsg(pDb->db), (char*)0);
danielk1977404ca072009-03-16 13:19:36 +00003168 rc = TCL_ERROR;
3169 }
3170 }
3171#endif
3172 break;
3173 }
3174
drh304637c2011-03-18 16:47:27 +00003175 /*
3176 ** $db preupdate_hook count
3177 ** $db preupdate_hook hook ?SCRIPT?
3178 ** $db preupdate_hook new INDEX
3179 ** $db preupdate_hook old INDEX
3180 */
dan46c47d42011-03-01 18:42:07 +00003181 case DB_PREUPDATE: {
drh9b1c62d2011-03-30 21:04:43 +00003182#ifndef SQLITE_ENABLE_PREUPDATE_HOOK
dan2b519ab2016-12-06 19:33:42 +00003183 Tcl_AppendResult(interp, "preupdate_hook was omitted at compile-time",
3184 (char*)0);
drh9b1c62d2011-03-30 21:04:43 +00003185 rc = TCL_ERROR;
3186#else
dan1e7a2d42011-03-22 18:45:29 +00003187 static const char *azSub[] = {"count", "depth", "hook", "new", "old", 0};
dan46c47d42011-03-01 18:42:07 +00003188 enum DbPreupdateSubCmd {
dan1e7a2d42011-03-22 18:45:29 +00003189 PRE_COUNT, PRE_DEPTH, PRE_HOOK, PRE_NEW, PRE_OLD
dan46c47d42011-03-01 18:42:07 +00003190 };
3191 int iSub;
3192
3193 if( objc<3 ){
3194 Tcl_WrongNumArgs(interp, 2, objv, "SUB-COMMAND ?ARGS?");
3195 }
3196 if( Tcl_GetIndexFromObj(interp, objv[2], azSub, "sub-command", 0, &iSub) ){
3197 return TCL_ERROR;
3198 }
3199
3200 switch( (enum DbPreupdateSubCmd)iSub ){
3201 case PRE_COUNT: {
3202 int nCol = sqlite3_preupdate_count(pDb->db);
3203 Tcl_SetObjResult(interp, Tcl_NewIntObj(nCol));
3204 break;
3205 }
3206
3207 case PRE_HOOK: {
3208 if( objc>4 ){
3209 Tcl_WrongNumArgs(interp, 2, objv, "hook ?SCRIPT?");
3210 return TCL_ERROR;
3211 }
3212 DbHookCmd(interp, pDb, (objc==4 ? objv[3] : 0), &pDb->pPreUpdateHook);
3213 break;
3214 }
3215
dan1e7a2d42011-03-22 18:45:29 +00003216 case PRE_DEPTH: {
3217 Tcl_Obj *pRet;
3218 if( objc!=3 ){
3219 Tcl_WrongNumArgs(interp, 3, objv, "");
3220 return TCL_ERROR;
3221 }
3222 pRet = Tcl_NewIntObj(sqlite3_preupdate_depth(pDb->db));
3223 Tcl_SetObjResult(interp, pRet);
3224 break;
3225 }
3226
dan37db03b2011-03-16 19:59:18 +00003227 case PRE_NEW:
dan46c47d42011-03-01 18:42:07 +00003228 case PRE_OLD: {
3229 int iIdx;
dan37db03b2011-03-16 19:59:18 +00003230 sqlite3_value *pValue;
dan46c47d42011-03-01 18:42:07 +00003231 if( objc!=4 ){
3232 Tcl_WrongNumArgs(interp, 3, objv, "INDEX");
3233 return TCL_ERROR;
3234 }
3235 if( Tcl_GetIntFromObj(interp, objv[3], &iIdx) ){
3236 return TCL_ERROR;
3237 }
3238
dan37db03b2011-03-16 19:59:18 +00003239 if( iSub==PRE_OLD ){
dan46c47d42011-03-01 18:42:07 +00003240 rc = sqlite3_preupdate_old(pDb->db, iIdx, &pValue);
dan37db03b2011-03-16 19:59:18 +00003241 }else{
3242 assert( iSub==PRE_NEW );
3243 rc = sqlite3_preupdate_new(pDb->db, iIdx, &pValue);
dan46c47d42011-03-01 18:42:07 +00003244 }
3245
dan37db03b2011-03-16 19:59:18 +00003246 if( rc==SQLITE_OK ){
drh304637c2011-03-18 16:47:27 +00003247 Tcl_Obj *pObj;
3248 pObj = Tcl_NewStringObj((char*)sqlite3_value_text(pValue), -1);
dan37db03b2011-03-16 19:59:18 +00003249 Tcl_SetObjResult(interp, pObj);
3250 }else{
drhea8f0a12017-01-12 11:50:08 +00003251 Tcl_AppendResult(interp, sqlite3_errmsg(pDb->db), (char*)0);
dan46c47d42011-03-01 18:42:07 +00003252 return TCL_ERROR;
3253 }
3254 }
3255 }
drh9b1c62d2011-03-30 21:04:43 +00003256#endif /* SQLITE_ENABLE_PREUPDATE_HOOK */
dan46c47d42011-03-01 18:42:07 +00003257 break;
3258 }
3259
danielk1977404ca072009-03-16 13:19:36 +00003260 /*
drh833bf962010-04-28 14:42:19 +00003261 ** $db wal_hook ?script?
danielk197794eb6a12005-12-15 15:22:08 +00003262 ** $db update_hook ?script?
danielk197771fd80b2005-12-16 06:54:01 +00003263 ** $db rollback_hook ?script?
danielk197794eb6a12005-12-15 15:22:08 +00003264 */
mistachkinb56660f2016-07-14 21:26:09 +00003265 case DB_WAL_HOOK:
3266 case DB_UPDATE_HOOK:
dan6566ebe2011-03-16 09:49:14 +00003267 case DB_ROLLBACK_HOOK: {
mistachkinb56660f2016-07-14 21:26:09 +00003268 /* set ppHook to point at pUpdateHook or pRollbackHook, depending on
danielk197771fd80b2005-12-16 06:54:01 +00003269 ** whether [$db update_hook] or [$db rollback_hook] was invoked.
3270 */
mistachkinb56660f2016-07-14 21:26:09 +00003271 Tcl_Obj **ppHook = 0;
dan46c47d42011-03-01 18:42:07 +00003272 if( choice==DB_WAL_HOOK ) ppHook = &pDb->pWalHook;
3273 if( choice==DB_UPDATE_HOOK ) ppHook = &pDb->pUpdateHook;
3274 if( choice==DB_ROLLBACK_HOOK ) ppHook = &pDb->pRollbackHook;
3275 if( objc>3 ){
danielk197794eb6a12005-12-15 15:22:08 +00003276 Tcl_WrongNumArgs(interp, 2, objv, "?SCRIPT?");
3277 return TCL_ERROR;
3278 }
danielk197771fd80b2005-12-16 06:54:01 +00003279
dan46c47d42011-03-01 18:42:07 +00003280 DbHookCmd(interp, pDb, (objc==3 ? objv[2] : 0), ppHook);
danielk197794eb6a12005-12-15 15:22:08 +00003281 break;
3282 }
3283
danielk19774397de52005-01-12 12:44:03 +00003284 /* $db version
3285 **
3286 ** Return the version string for this database.
3287 */
3288 case DB_VERSION: {
3289 Tcl_SetResult(interp, (char *)sqlite3_libversion(), TCL_STATIC);
3290 break;
3291 }
3292
tpoindex1067fe12004-12-17 15:41:11 +00003293
drh6d313162000-09-21 13:01:35 +00003294 } /* End of the SWITCH statement */
drh22fbcb82004-02-01 01:22:50 +00003295 return rc;
drh75897232000-05-29 14:26:00 +00003296}
3297
drha2c8a952009-10-13 18:38:34 +00003298#if SQLITE_TCL_NRE
3299/*
3300** Adaptor that provides an objCmd interface to the NRE-enabled
3301** interface implementation.
3302*/
mistachkina121cc72016-07-28 18:06:52 +00003303static int SQLITE_TCLAPI DbObjCmdAdaptor(
drha2c8a952009-10-13 18:38:34 +00003304 void *cd,
3305 Tcl_Interp *interp,
3306 int objc,
3307 Tcl_Obj *const*objv
3308){
3309 return Tcl_NRCallObjProc(interp, DbObjCmd, cd, objc, objv);
3310}
3311#endif /* SQLITE_TCL_NRE */
3312
drh75897232000-05-29 14:26:00 +00003313/*
drh3570ad92007-08-31 14:31:44 +00003314** sqlite3 DBNAME FILENAME ?-vfs VFSNAME? ?-key KEY? ?-readonly BOOLEAN?
danielk19779a6284c2008-07-10 17:52:49 +00003315** ?-create BOOLEAN? ?-nomutex BOOLEAN?
drh75897232000-05-29 14:26:00 +00003316**
3317** This is the main Tcl command. When the "sqlite" Tcl command is
3318** invoked, this routine runs to process that command.
3319**
3320** The first argument, DBNAME, is an arbitrary name for a new
3321** database connection. This command creates a new command named
3322** DBNAME that is used to control that connection. The database
3323** connection is deleted when the DBNAME command is deleted.
3324**
drh3570ad92007-08-31 14:31:44 +00003325** The second argument is the name of the database file.
drhfbc3eab2001-04-06 16:13:42 +00003326**
drh75897232000-05-29 14:26:00 +00003327*/
mistachkin7617e4a2016-07-28 17:11:20 +00003328static int SQLITE_TCLAPI DbMain(
3329 void *cd,
3330 Tcl_Interp *interp,
3331 int objc,
3332 Tcl_Obj *const*objv
3333){
drhbec3f402000-08-04 13:49:02 +00003334 SqliteDb *p;
drh22fbcb82004-02-01 01:22:50 +00003335 const char *zArg;
drh75897232000-05-29 14:26:00 +00003336 char *zErrMsg;
drh3570ad92007-08-31 14:31:44 +00003337 int i;
drh22fbcb82004-02-01 01:22:50 +00003338 const char *zFile;
drh3570ad92007-08-31 14:31:44 +00003339 const char *zVfs = 0;
drhd9da78a2009-03-24 15:08:09 +00003340 int flags;
drh882e8e42006-08-24 02:42:27 +00003341 Tcl_DString translatedFilename;
drh32f57d42016-03-16 01:03:10 +00003342#if defined(SQLITE_HAS_CODEC) && !defined(SQLITE_OMIT_CODEC_FROM_TCL)
drhb07028f2011-10-14 21:49:18 +00003343 void *pKey = 0;
3344 int nKey = 0;
3345#endif
mistachkin540ebf82012-09-10 07:29:29 +00003346 int rc;
drhd9da78a2009-03-24 15:08:09 +00003347
3348 /* In normal use, each TCL interpreter runs in a single thread. So
3349 ** by default, we can turn of mutexing on SQLite database connections.
3350 ** However, for testing purposes it is useful to have mutexes turned
3351 ** on. So, by default, mutexes default off. But if compiled with
3352 ** SQLITE_TCL_DEFAULT_FULLMUTEX then mutexes default on.
3353 */
3354#ifdef SQLITE_TCL_DEFAULT_FULLMUTEX
3355 flags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_FULLMUTEX;
3356#else
3357 flags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_NOMUTEX;
3358#endif
3359
drh22fbcb82004-02-01 01:22:50 +00003360 if( objc==2 ){
3361 zArg = Tcl_GetStringFromObj(objv[1], 0);
drh22fbcb82004-02-01 01:22:50 +00003362 if( strcmp(zArg,"-version")==0 ){
drha198f2b2014-02-07 19:26:13 +00003363 Tcl_AppendResult(interp,sqlite3_libversion(), (char*)0);
drh647cb0e2002-11-04 19:32:25 +00003364 return TCL_OK;
3365 }
drh72bf6a32016-01-07 02:06:55 +00003366 if( strcmp(zArg,"-sourceid")==0 ){
3367 Tcl_AppendResult(interp,sqlite3_sourceid(), (char*)0);
3368 return TCL_OK;
3369 }
drh9eb9e262004-02-11 02:18:05 +00003370 if( strcmp(zArg,"-has-codec")==0 ){
drh32f57d42016-03-16 01:03:10 +00003371#if defined(SQLITE_HAS_CODEC) && !defined(SQLITE_OMIT_CODEC_FROM_TCL)
drha198f2b2014-02-07 19:26:13 +00003372 Tcl_AppendResult(interp,"1",(char*)0);
drh22fbcb82004-02-01 01:22:50 +00003373#else
drha198f2b2014-02-07 19:26:13 +00003374 Tcl_AppendResult(interp,"0",(char*)0);
drh22fbcb82004-02-01 01:22:50 +00003375#endif
3376 return TCL_OK;
3377 }
drhfbc3eab2001-04-06 16:13:42 +00003378 }
drh3570ad92007-08-31 14:31:44 +00003379 for(i=3; i+1<objc; i+=2){
3380 zArg = Tcl_GetString(objv[i]);
drh22fbcb82004-02-01 01:22:50 +00003381 if( strcmp(zArg,"-key")==0 ){
drh32f57d42016-03-16 01:03:10 +00003382#if defined(SQLITE_HAS_CODEC) && !defined(SQLITE_OMIT_CODEC_FROM_TCL)
drh3570ad92007-08-31 14:31:44 +00003383 pKey = Tcl_GetByteArrayFromObj(objv[i+1], &nKey);
drhb07028f2011-10-14 21:49:18 +00003384#endif
drh3570ad92007-08-31 14:31:44 +00003385 }else if( strcmp(zArg, "-vfs")==0 ){
dan3c3dd7b2010-06-22 11:10:40 +00003386 zVfs = Tcl_GetString(objv[i+1]);
drh3570ad92007-08-31 14:31:44 +00003387 }else if( strcmp(zArg, "-readonly")==0 ){
3388 int b;
3389 if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
3390 if( b ){
drh33f4e022007-09-03 15:19:34 +00003391 flags &= ~(SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE);
drh3570ad92007-08-31 14:31:44 +00003392 flags |= SQLITE_OPEN_READONLY;
3393 }else{
3394 flags &= ~SQLITE_OPEN_READONLY;
3395 flags |= SQLITE_OPEN_READWRITE;
3396 }
3397 }else if( strcmp(zArg, "-create")==0 ){
3398 int b;
3399 if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
drh33f4e022007-09-03 15:19:34 +00003400 if( b && (flags & SQLITE_OPEN_READONLY)==0 ){
drh3570ad92007-08-31 14:31:44 +00003401 flags |= SQLITE_OPEN_CREATE;
3402 }else{
3403 flags &= ~SQLITE_OPEN_CREATE;
3404 }
danielk19779a6284c2008-07-10 17:52:49 +00003405 }else if( strcmp(zArg, "-nomutex")==0 ){
3406 int b;
3407 if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
3408 if( b ){
3409 flags |= SQLITE_OPEN_NOMUTEX;
drh039963a2008-09-03 00:43:15 +00003410 flags &= ~SQLITE_OPEN_FULLMUTEX;
danielk19779a6284c2008-07-10 17:52:49 +00003411 }else{
3412 flags &= ~SQLITE_OPEN_NOMUTEX;
3413 }
danc431fd52011-06-27 16:55:50 +00003414 }else if( strcmp(zArg, "-fullmutex")==0 ){
drh039963a2008-09-03 00:43:15 +00003415 int b;
3416 if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
3417 if( b ){
3418 flags |= SQLITE_OPEN_FULLMUTEX;
3419 flags &= ~SQLITE_OPEN_NOMUTEX;
3420 }else{
3421 flags &= ~SQLITE_OPEN_FULLMUTEX;
3422 }
drhf12b3f62011-12-21 14:42:29 +00003423 }else if( strcmp(zArg, "-uri")==0 ){
3424 int b;
3425 if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
3426 if( b ){
3427 flags |= SQLITE_OPEN_URI;
3428 }else{
3429 flags &= ~SQLITE_OPEN_URI;
3430 }
drh3570ad92007-08-31 14:31:44 +00003431 }else{
3432 Tcl_AppendResult(interp, "unknown option: ", zArg, (char*)0);
3433 return TCL_ERROR;
drh22fbcb82004-02-01 01:22:50 +00003434 }
3435 }
drh3570ad92007-08-31 14:31:44 +00003436 if( objc<3 || (objc&1)!=1 ){
mistachkinb56660f2016-07-14 21:26:09 +00003437 Tcl_WrongNumArgs(interp, 1, objv,
drh3570ad92007-08-31 14:31:44 +00003438 "HANDLE FILENAME ?-vfs VFSNAME? ?-readonly BOOLEAN? ?-create BOOLEAN?"
drh68bd4aa2012-01-13 16:16:10 +00003439 " ?-nomutex BOOLEAN? ?-fullmutex BOOLEAN? ?-uri BOOLEAN?"
drh32f57d42016-03-16 01:03:10 +00003440#if defined(SQLITE_HAS_CODEC) && !defined(SQLITE_OMIT_CODEC_FROM_TCL)
drh3570ad92007-08-31 14:31:44 +00003441 " ?-key CODECKEY?"
drh22fbcb82004-02-01 01:22:50 +00003442#endif
3443 );
drh75897232000-05-29 14:26:00 +00003444 return TCL_ERROR;
3445 }
drh75897232000-05-29 14:26:00 +00003446 zErrMsg = 0;
drh4cdc9e82000-08-04 14:56:24 +00003447 p = (SqliteDb*)Tcl_Alloc( sizeof(*p) );
drhbec3f402000-08-04 13:49:02 +00003448 memset(p, 0, sizeof(*p));
drh22fbcb82004-02-01 01:22:50 +00003449 zFile = Tcl_GetStringFromObj(objv[2], 0);
drh882e8e42006-08-24 02:42:27 +00003450 zFile = Tcl_TranslateFileName(interp, zFile, &translatedFilename);
mistachkin540ebf82012-09-10 07:29:29 +00003451 rc = sqlite3_open_v2(zFile, &p->db, flags, zVfs);
drh882e8e42006-08-24 02:42:27 +00003452 Tcl_DStringFree(&translatedFilename);
mistachkin540ebf82012-09-10 07:29:29 +00003453 if( p->db ){
3454 if( SQLITE_OK!=sqlite3_errcode(p->db) ){
3455 zErrMsg = sqlite3_mprintf("%s", sqlite3_errmsg(p->db));
3456 sqlite3_close(p->db);
3457 p->db = 0;
3458 }
3459 }else{
mistachkin5dac8432012-09-11 02:00:25 +00003460 zErrMsg = sqlite3_mprintf("%s", sqlite3_errstr(rc));
danielk197780290862004-05-22 09:21:21 +00003461 }
drh32f57d42016-03-16 01:03:10 +00003462#if defined(SQLITE_HAS_CODEC) && !defined(SQLITE_OMIT_CODEC_FROM_TCL)
drhf3a65f72007-08-22 20:18:21 +00003463 if( p->db ){
3464 sqlite3_key(p->db, pKey, nKey);
3465 }
drheb8ed702004-02-11 10:37:23 +00003466#endif
drhbec3f402000-08-04 13:49:02 +00003467 if( p->db==0 ){
drh75897232000-05-29 14:26:00 +00003468 Tcl_SetResult(interp, zErrMsg, TCL_VOLATILE);
drhbec3f402000-08-04 13:49:02 +00003469 Tcl_Free((char*)p);
drh9404d502006-12-19 18:46:08 +00003470 sqlite3_free(zErrMsg);
drh75897232000-05-29 14:26:00 +00003471 return TCL_ERROR;
3472 }
drhfb7e7652005-01-24 00:28:42 +00003473 p->maxStmt = NUM_PREPARED_STMTS;
drh147ef392016-01-22 23:17:51 +00003474 p->openFlags = flags & SQLITE_OPEN_URI;
drh5169bbc2006-08-24 14:59:45 +00003475 p->interp = interp;
drh22fbcb82004-02-01 01:22:50 +00003476 zArg = Tcl_GetStringFromObj(objv[1], 0);
dan4a4c11a2009-10-06 14:59:02 +00003477 if( DbUseNre() ){
drha2c8a952009-10-13 18:38:34 +00003478 Tcl_NRCreateCommand(interp, zArg, DbObjCmdAdaptor, DbObjCmd,
3479 (char*)p, DbDeleteCmd);
dan4a4c11a2009-10-06 14:59:02 +00003480 }else{
3481 Tcl_CreateObjCommand(interp, zArg, DbObjCmd, (char*)p, DbDeleteCmd);
3482 }
drh75897232000-05-29 14:26:00 +00003483 return TCL_OK;
3484}
3485
3486/*
drh90ca9752001-09-28 17:47:14 +00003487** Provide a dummy Tcl_InitStubs if we are using this as a static
3488** library.
3489*/
3490#ifndef USE_TCL_STUBS
3491# undef Tcl_InitStubs
drh0e85ccf2013-06-03 12:34:46 +00003492# define Tcl_InitStubs(a,b,c) TCL_VERSION
drh90ca9752001-09-28 17:47:14 +00003493#endif
3494
3495/*
drh29bc4612005-10-05 10:40:15 +00003496** Make sure we have a PACKAGE_VERSION macro defined. This will be
3497** defined automatically by the TEA makefile. But other makefiles
3498** do not define it.
3499*/
3500#ifndef PACKAGE_VERSION
3501# define PACKAGE_VERSION SQLITE_VERSION
3502#endif
3503
3504/*
drh75897232000-05-29 14:26:00 +00003505** Initialize this module.
3506**
3507** This Tcl module contains only a single new Tcl command named "sqlite".
3508** (Hence there is no namespace. There is no point in using a namespace
3509** if the extension only supplies one new name!) The "sqlite" command is
3510** used to open a new SQLite database. See the DbMain() routine above
3511** for additional information.
drhb652f432010-08-26 16:46:57 +00003512**
3513** The EXTERN macros are required by TCL in order to work on windows.
drh75897232000-05-29 14:26:00 +00003514*/
drhb652f432010-08-26 16:46:57 +00003515EXTERN int Sqlite3_Init(Tcl_Interp *interp){
mistachkin27b2f052015-01-12 19:49:46 +00003516 int rc = Tcl_InitStubs(interp, "8.4", 0) ? TCL_OK : TCL_ERROR;
drh6dc8cbe2013-05-31 15:36:07 +00003517 if( rc==TCL_OK ){
3518 Tcl_CreateObjCommand(interp, "sqlite3", (Tcl_ObjCmdProc*)DbMain, 0, 0);
drh1cca0d22010-08-25 20:35:51 +00003519#ifndef SQLITE_3_SUFFIX_ONLY
drh6dc8cbe2013-05-31 15:36:07 +00003520 /* The "sqlite" alias is undocumented. It is here only to support
3521 ** legacy scripts. All new scripts should use only the "sqlite3"
3522 ** command. */
3523 Tcl_CreateObjCommand(interp, "sqlite", (Tcl_ObjCmdProc*)DbMain, 0, 0);
drh4c0f1642010-08-25 19:39:19 +00003524#endif
drh6dc8cbe2013-05-31 15:36:07 +00003525 rc = Tcl_PkgProvide(interp, "sqlite3", PACKAGE_VERSION);
3526 }
3527 return rc;
drh90ca9752001-09-28 17:47:14 +00003528}
drhb652f432010-08-26 16:46:57 +00003529EXTERN int Tclsqlite3_Init(Tcl_Interp *interp){ return Sqlite3_Init(interp); }
drhb652f432010-08-26 16:46:57 +00003530EXTERN int Sqlite3_Unload(Tcl_Interp *interp, int flags){ return TCL_OK; }
3531EXTERN int Tclsqlite3_Unload(Tcl_Interp *interp, int flags){ return TCL_OK; }
drhe2c3a652008-09-23 09:58:46 +00003532
drhd878cab2012-03-20 15:10:42 +00003533/* Because it accesses the file-system and uses persistent state, SQLite
drhe75a9eb2016-02-13 18:54:10 +00003534** is not considered appropriate for safe interpreters. Hence, we cause
3535** the _SafeInit() interfaces return TCL_ERROR.
drhd878cab2012-03-20 15:10:42 +00003536*/
drhe75a9eb2016-02-13 18:54:10 +00003537EXTERN int Sqlite3_SafeInit(Tcl_Interp *interp){ return TCL_ERROR; }
3538EXTERN int Sqlite3_SafeUnload(Tcl_Interp *interp, int flags){return TCL_ERROR;}
3539
3540
drh49766d62005-01-08 18:42:28 +00003541
3542#ifndef SQLITE_3_SUFFIX_ONLY
dana3e63c42010-08-20 12:33:59 +00003543int Sqlite_Init(Tcl_Interp *interp){ return Sqlite3_Init(interp); }
3544int Tclsqlite_Init(Tcl_Interp *interp){ return Sqlite3_Init(interp); }
dana3e63c42010-08-20 12:33:59 +00003545int Sqlite_Unload(Tcl_Interp *interp, int flags){ return TCL_OK; }
3546int Tclsqlite_Unload(Tcl_Interp *interp, int flags){ return TCL_OK; }
drh49766d62005-01-08 18:42:28 +00003547#endif
drh75897232000-05-29 14:26:00 +00003548
drh3e27c022004-07-23 00:01:38 +00003549#ifdef TCLSH
3550/*****************************************************************************
drh57a02272009-10-22 20:52:05 +00003551** All of the code that follows is used to build standalone TCL interpreters
3552** that are statically linked with SQLite. Enable these by compiling
3553** with -DTCLSH=n where n can be 1 or 2. An n of 1 generates a standard
3554** tclsh but with SQLite built in. An n of 2 generates the SQLite space
3555** analysis program.
drh75897232000-05-29 14:26:00 +00003556*/
drh348784e2000-05-29 20:41:49 +00003557
drh57a02272009-10-22 20:52:05 +00003558#if defined(SQLITE_TEST) || defined(SQLITE_TCLMD5)
3559/*
3560 * This code implements the MD5 message-digest algorithm.
3561 * The algorithm is due to Ron Rivest. This code was
3562 * written by Colin Plumb in 1993, no copyright is claimed.
3563 * This code is in the public domain; do with it what you wish.
3564 *
3565 * Equivalent code is available from RSA Data Security, Inc.
3566 * This code has been tested against that, and is equivalent,
3567 * except that you don't need to include two pages of legalese
3568 * with every copy.
3569 *
3570 * To compute the message digest of a chunk of bytes, declare an
3571 * MD5Context structure, pass it to MD5Init, call MD5Update as
3572 * needed on buffers full of bytes, and then call MD5Final, which
3573 * will fill a supplied 16-byte array with the digest.
3574 */
3575
3576/*
3577 * If compiled on a machine that doesn't have a 32-bit integer,
3578 * you just set "uint32" to the appropriate datatype for an
3579 * unsigned 32-bit integer. For example:
3580 *
3581 * cc -Duint32='unsigned long' md5.c
3582 *
3583 */
3584#ifndef uint32
3585# define uint32 unsigned int
3586#endif
3587
3588struct MD5Context {
3589 int isInit;
3590 uint32 buf[4];
3591 uint32 bits[2];
3592 unsigned char in[64];
3593};
3594typedef struct MD5Context MD5Context;
3595
3596/*
3597 * Note: this code is harmless on little-endian machines.
3598 */
3599static void byteReverse (unsigned char *buf, unsigned longs){
3600 uint32 t;
3601 do {
3602 t = (uint32)((unsigned)buf[3]<<8 | buf[2]) << 16 |
3603 ((unsigned)buf[1]<<8 | buf[0]);
3604 *(uint32 *)buf = t;
3605 buf += 4;
3606 } while (--longs);
3607}
3608/* The four core functions - F1 is optimized somewhat */
3609
3610/* #define F1(x, y, z) (x & y | ~x & z) */
3611#define F1(x, y, z) (z ^ (x & (y ^ z)))
3612#define F2(x, y, z) F1(z, x, y)
3613#define F3(x, y, z) (x ^ y ^ z)
3614#define F4(x, y, z) (y ^ (x | ~z))
3615
3616/* This is the central step in the MD5 algorithm. */
3617#define MD5STEP(f, w, x, y, z, data, s) \
3618 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
3619
3620/*
3621 * The core of the MD5 algorithm, this alters an existing MD5 hash to
3622 * reflect the addition of 16 longwords of new data. MD5Update blocks
3623 * the data and converts bytes into longwords for this routine.
3624 */
3625static void MD5Transform(uint32 buf[4], const uint32 in[16]){
3626 register uint32 a, b, c, d;
3627
3628 a = buf[0];
3629 b = buf[1];
3630 c = buf[2];
3631 d = buf[3];
3632
3633 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
3634 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
3635 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
3636 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
3637 MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
3638 MD5STEP(F1, d, a, b, c, in[ 5]+0x4787c62a, 12);
3639 MD5STEP(F1, c, d, a, b, in[ 6]+0xa8304613, 17);
3640 MD5STEP(F1, b, c, d, a, in[ 7]+0xfd469501, 22);
3641 MD5STEP(F1, a, b, c, d, in[ 8]+0x698098d8, 7);
3642 MD5STEP(F1, d, a, b, c, in[ 9]+0x8b44f7af, 12);
3643 MD5STEP(F1, c, d, a, b, in[10]+0xffff5bb1, 17);
3644 MD5STEP(F1, b, c, d, a, in[11]+0x895cd7be, 22);
3645 MD5STEP(F1, a, b, c, d, in[12]+0x6b901122, 7);
3646 MD5STEP(F1, d, a, b, c, in[13]+0xfd987193, 12);
3647 MD5STEP(F1, c, d, a, b, in[14]+0xa679438e, 17);
3648 MD5STEP(F1, b, c, d, a, in[15]+0x49b40821, 22);
3649
3650 MD5STEP(F2, a, b, c, d, in[ 1]+0xf61e2562, 5);
3651 MD5STEP(F2, d, a, b, c, in[ 6]+0xc040b340, 9);
3652 MD5STEP(F2, c, d, a, b, in[11]+0x265e5a51, 14);
3653 MD5STEP(F2, b, c, d, a, in[ 0]+0xe9b6c7aa, 20);
3654 MD5STEP(F2, a, b, c, d, in[ 5]+0xd62f105d, 5);
3655 MD5STEP(F2, d, a, b, c, in[10]+0x02441453, 9);
3656 MD5STEP(F2, c, d, a, b, in[15]+0xd8a1e681, 14);
3657 MD5STEP(F2, b, c, d, a, in[ 4]+0xe7d3fbc8, 20);
3658 MD5STEP(F2, a, b, c, d, in[ 9]+0x21e1cde6, 5);
3659 MD5STEP(F2, d, a, b, c, in[14]+0xc33707d6, 9);
3660 MD5STEP(F2, c, d, a, b, in[ 3]+0xf4d50d87, 14);
3661 MD5STEP(F2, b, c, d, a, in[ 8]+0x455a14ed, 20);
3662 MD5STEP(F2, a, b, c, d, in[13]+0xa9e3e905, 5);
3663 MD5STEP(F2, d, a, b, c, in[ 2]+0xfcefa3f8, 9);
3664 MD5STEP(F2, c, d, a, b, in[ 7]+0x676f02d9, 14);
3665 MD5STEP(F2, b, c, d, a, in[12]+0x8d2a4c8a, 20);
3666
3667 MD5STEP(F3, a, b, c, d, in[ 5]+0xfffa3942, 4);
3668 MD5STEP(F3, d, a, b, c, in[ 8]+0x8771f681, 11);
3669 MD5STEP(F3, c, d, a, b, in[11]+0x6d9d6122, 16);
3670 MD5STEP(F3, b, c, d, a, in[14]+0xfde5380c, 23);
3671 MD5STEP(F3, a, b, c, d, in[ 1]+0xa4beea44, 4);
3672 MD5STEP(F3, d, a, b, c, in[ 4]+0x4bdecfa9, 11);
3673 MD5STEP(F3, c, d, a, b, in[ 7]+0xf6bb4b60, 16);
3674 MD5STEP(F3, b, c, d, a, in[10]+0xbebfbc70, 23);
3675 MD5STEP(F3, a, b, c, d, in[13]+0x289b7ec6, 4);
3676 MD5STEP(F3, d, a, b, c, in[ 0]+0xeaa127fa, 11);
3677 MD5STEP(F3, c, d, a, b, in[ 3]+0xd4ef3085, 16);
3678 MD5STEP(F3, b, c, d, a, in[ 6]+0x04881d05, 23);
3679 MD5STEP(F3, a, b, c, d, in[ 9]+0xd9d4d039, 4);
3680 MD5STEP(F3, d, a, b, c, in[12]+0xe6db99e5, 11);
3681 MD5STEP(F3, c, d, a, b, in[15]+0x1fa27cf8, 16);
3682 MD5STEP(F3, b, c, d, a, in[ 2]+0xc4ac5665, 23);
3683
3684 MD5STEP(F4, a, b, c, d, in[ 0]+0xf4292244, 6);
3685 MD5STEP(F4, d, a, b, c, in[ 7]+0x432aff97, 10);
3686 MD5STEP(F4, c, d, a, b, in[14]+0xab9423a7, 15);
3687 MD5STEP(F4, b, c, d, a, in[ 5]+0xfc93a039, 21);
3688 MD5STEP(F4, a, b, c, d, in[12]+0x655b59c3, 6);
3689 MD5STEP(F4, d, a, b, c, in[ 3]+0x8f0ccc92, 10);
3690 MD5STEP(F4, c, d, a, b, in[10]+0xffeff47d, 15);
3691 MD5STEP(F4, b, c, d, a, in[ 1]+0x85845dd1, 21);
3692 MD5STEP(F4, a, b, c, d, in[ 8]+0x6fa87e4f, 6);
3693 MD5STEP(F4, d, a, b, c, in[15]+0xfe2ce6e0, 10);
3694 MD5STEP(F4, c, d, a, b, in[ 6]+0xa3014314, 15);
3695 MD5STEP(F4, b, c, d, a, in[13]+0x4e0811a1, 21);
3696 MD5STEP(F4, a, b, c, d, in[ 4]+0xf7537e82, 6);
3697 MD5STEP(F4, d, a, b, c, in[11]+0xbd3af235, 10);
3698 MD5STEP(F4, c, d, a, b, in[ 2]+0x2ad7d2bb, 15);
3699 MD5STEP(F4, b, c, d, a, in[ 9]+0xeb86d391, 21);
3700
3701 buf[0] += a;
3702 buf[1] += b;
3703 buf[2] += c;
3704 buf[3] += d;
3705}
3706
3707/*
3708 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
3709 * initialization constants.
3710 */
3711static void MD5Init(MD5Context *ctx){
3712 ctx->isInit = 1;
3713 ctx->buf[0] = 0x67452301;
3714 ctx->buf[1] = 0xefcdab89;
3715 ctx->buf[2] = 0x98badcfe;
3716 ctx->buf[3] = 0x10325476;
3717 ctx->bits[0] = 0;
3718 ctx->bits[1] = 0;
3719}
3720
3721/*
3722 * Update context to reflect the concatenation of another buffer full
3723 * of bytes.
3724 */
mistachkinb56660f2016-07-14 21:26:09 +00003725static
drh57a02272009-10-22 20:52:05 +00003726void MD5Update(MD5Context *ctx, const unsigned char *buf, unsigned int len){
3727 uint32 t;
3728
3729 /* Update bitcount */
3730
3731 t = ctx->bits[0];
3732 if ((ctx->bits[0] = t + ((uint32)len << 3)) < t)
3733 ctx->bits[1]++; /* Carry from low to high */
3734 ctx->bits[1] += len >> 29;
3735
3736 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
3737
3738 /* Handle any leading odd-sized chunks */
3739
3740 if ( t ) {
3741 unsigned char *p = (unsigned char *)ctx->in + t;
3742
3743 t = 64-t;
3744 if (len < t) {
3745 memcpy(p, buf, len);
3746 return;
3747 }
3748 memcpy(p, buf, t);
3749 byteReverse(ctx->in, 16);
3750 MD5Transform(ctx->buf, (uint32 *)ctx->in);
3751 buf += t;
3752 len -= t;
3753 }
3754
3755 /* Process data in 64-byte chunks */
3756
3757 while (len >= 64) {
3758 memcpy(ctx->in, buf, 64);
3759 byteReverse(ctx->in, 16);
3760 MD5Transform(ctx->buf, (uint32 *)ctx->in);
3761 buf += 64;
3762 len -= 64;
3763 }
3764
3765 /* Handle any remaining bytes of data. */
3766
3767 memcpy(ctx->in, buf, len);
3768}
3769
3770/*
mistachkinb56660f2016-07-14 21:26:09 +00003771 * Final wrapup - pad to 64-byte boundary with the bit pattern
drh57a02272009-10-22 20:52:05 +00003772 * 1 0* (64-bit count of bits processed, MSB-first)
3773 */
3774static void MD5Final(unsigned char digest[16], MD5Context *ctx){
3775 unsigned count;
3776 unsigned char *p;
3777
3778 /* Compute number of bytes mod 64 */
3779 count = (ctx->bits[0] >> 3) & 0x3F;
3780
3781 /* Set the first char of padding to 0x80. This is safe since there is
3782 always at least one byte free */
3783 p = ctx->in + count;
3784 *p++ = 0x80;
3785
3786 /* Bytes of padding needed to make 64 bytes */
3787 count = 64 - 1 - count;
3788
3789 /* Pad out to 56 mod 64 */
3790 if (count < 8) {
3791 /* Two lots of padding: Pad the first block to 64 bytes */
3792 memset(p, 0, count);
3793 byteReverse(ctx->in, 16);
3794 MD5Transform(ctx->buf, (uint32 *)ctx->in);
3795
3796 /* Now fill the next block with 56 bytes */
3797 memset(ctx->in, 0, 56);
3798 } else {
3799 /* Pad block to 56 bytes */
3800 memset(p, 0, count-8);
3801 }
3802 byteReverse(ctx->in, 14);
3803
3804 /* Append length in bits and transform */
drha47941f2013-12-20 18:57:44 +00003805 memcpy(ctx->in + 14*4, ctx->bits, 8);
drh57a02272009-10-22 20:52:05 +00003806
3807 MD5Transform(ctx->buf, (uint32 *)ctx->in);
3808 byteReverse((unsigned char *)ctx->buf, 4);
3809 memcpy(digest, ctx->buf, 16);
drh57a02272009-10-22 20:52:05 +00003810}
3811
3812/*
3813** Convert a 128-bit MD5 digest into a 32-digit base-16 number.
3814*/
3815static void MD5DigestToBase16(unsigned char *digest, char *zBuf){
3816 static char const zEncode[] = "0123456789abcdef";
3817 int i, j;
3818
3819 for(j=i=0; i<16; i++){
3820 int a = digest[i];
3821 zBuf[j++] = zEncode[(a>>4)&0xf];
3822 zBuf[j++] = zEncode[a & 0xf];
3823 }
3824 zBuf[j] = 0;
3825}
3826
3827
3828/*
3829** Convert a 128-bit MD5 digest into sequency of eight 5-digit integers
3830** each representing 16 bits of the digest and separated from each
3831** other by a "-" character.
3832*/
3833static void MD5DigestToBase10x8(unsigned char digest[16], char zDigest[50]){
3834 int i, j;
3835 unsigned int x;
3836 for(i=j=0; i<16; i+=2){
3837 x = digest[i]*256 + digest[i+1];
3838 if( i>0 ) zDigest[j++] = '-';
drh05f6c672015-02-26 16:32:33 +00003839 sqlite3_snprintf(50-j, &zDigest[j], "%05u", x);
drh57a02272009-10-22 20:52:05 +00003840 j += 5;
3841 }
3842 zDigest[j] = 0;
3843}
3844
3845/*
3846** A TCL command for md5. The argument is the text to be hashed. The
mistachkinb56660f2016-07-14 21:26:09 +00003847** Result is the hash in base64.
drh57a02272009-10-22 20:52:05 +00003848*/
mistachkin44e95d42016-07-28 22:23:26 +00003849static int SQLITE_TCLAPI md5_cmd(
3850 void*cd,
3851 Tcl_Interp *interp,
3852 int argc,
3853 const char **argv
3854){
drh57a02272009-10-22 20:52:05 +00003855 MD5Context ctx;
3856 unsigned char digest[16];
3857 char zBuf[50];
3858 void (*converter)(unsigned char*, char*);
3859
3860 if( argc!=2 ){
mistachkinb56660f2016-07-14 21:26:09 +00003861 Tcl_AppendResult(interp,"wrong # args: should be \"", argv[0],
drha198f2b2014-02-07 19:26:13 +00003862 " TEXT\"", (char*)0);
drh57a02272009-10-22 20:52:05 +00003863 return TCL_ERROR;
3864 }
3865 MD5Init(&ctx);
3866 MD5Update(&ctx, (unsigned char*)argv[1], (unsigned)strlen(argv[1]));
3867 MD5Final(digest, &ctx);
3868 converter = (void(*)(unsigned char*,char*))cd;
3869 converter(digest, zBuf);
3870 Tcl_AppendResult(interp, zBuf, (char*)0);
3871 return TCL_OK;
3872}
3873
3874/*
3875** A TCL command to take the md5 hash of a file. The argument is the
3876** name of the file.
3877*/
mistachkin44e95d42016-07-28 22:23:26 +00003878static int SQLITE_TCLAPI md5file_cmd(
3879 void*cd,
3880 Tcl_Interp *interp,
3881 int argc,
3882 const char **argv
3883){
drh57a02272009-10-22 20:52:05 +00003884 FILE *in;
drhea2844f2017-07-30 19:50:42 +00003885 int ofst;
3886 int amt;
drh57a02272009-10-22 20:52:05 +00003887 MD5Context ctx;
3888 void (*converter)(unsigned char*, char*);
3889 unsigned char digest[16];
3890 char zBuf[10240];
3891
drhea2844f2017-07-30 19:50:42 +00003892 if( argc!=2 && argc!=4 ){
mistachkinb56660f2016-07-14 21:26:09 +00003893 Tcl_AppendResult(interp,"wrong # args: should be \"", argv[0],
drhea2844f2017-07-30 19:50:42 +00003894 " FILENAME [OFFSET AMT]\"", (char*)0);
drh57a02272009-10-22 20:52:05 +00003895 return TCL_ERROR;
3896 }
drhea2844f2017-07-30 19:50:42 +00003897 if( argc==4 ){
3898 ofst = atoi(argv[2]);
3899 amt = atoi(argv[3]);
3900 }else{
3901 ofst = 0;
3902 amt = 2147483647;
3903 }
drh57a02272009-10-22 20:52:05 +00003904 in = fopen(argv[1],"rb");
3905 if( in==0 ){
mistachkinb56660f2016-07-14 21:26:09 +00003906 Tcl_AppendResult(interp,"unable to open file \"", argv[1],
drha198f2b2014-02-07 19:26:13 +00003907 "\" for reading", (char*)0);
drh57a02272009-10-22 20:52:05 +00003908 return TCL_ERROR;
3909 }
drhea2844f2017-07-30 19:50:42 +00003910 fseek(in, ofst, SEEK_SET);
drh57a02272009-10-22 20:52:05 +00003911 MD5Init(&ctx);
drhea2844f2017-07-30 19:50:42 +00003912 while( amt>0 ){
drh57a02272009-10-22 20:52:05 +00003913 int n;
drhea2844f2017-07-30 19:50:42 +00003914 n = (int)fread(zBuf, 1, sizeof(zBuf)<=amt ? sizeof(zBuf) : amt, in);
drh57a02272009-10-22 20:52:05 +00003915 if( n<=0 ) break;
3916 MD5Update(&ctx, (unsigned char*)zBuf, (unsigned)n);
drhea2844f2017-07-30 19:50:42 +00003917 amt -= n;
drh57a02272009-10-22 20:52:05 +00003918 }
3919 fclose(in);
3920 MD5Final(digest, &ctx);
3921 converter = (void(*)(unsigned char*,char*))cd;
3922 converter(digest, zBuf);
3923 Tcl_AppendResult(interp, zBuf, (char*)0);
3924 return TCL_OK;
3925}
3926
3927/*
3928** Register the four new TCL commands for generating MD5 checksums
3929** with the TCL interpreter.
3930*/
3931int Md5_Init(Tcl_Interp *interp){
3932 Tcl_CreateCommand(interp, "md5", (Tcl_CmdProc*)md5_cmd,
3933 MD5DigestToBase16, 0);
3934 Tcl_CreateCommand(interp, "md5-10x8", (Tcl_CmdProc*)md5_cmd,
3935 MD5DigestToBase10x8, 0);
3936 Tcl_CreateCommand(interp, "md5file", (Tcl_CmdProc*)md5file_cmd,
3937 MD5DigestToBase16, 0);
3938 Tcl_CreateCommand(interp, "md5file-10x8", (Tcl_CmdProc*)md5file_cmd,
3939 MD5DigestToBase10x8, 0);
3940 return TCL_OK;
3941}
3942#endif /* defined(SQLITE_TEST) || defined(SQLITE_TCLMD5) */
3943
3944#if defined(SQLITE_TEST)
3945/*
3946** During testing, the special md5sum() aggregate function is available.
3947** inside SQLite. The following routines implement that function.
3948*/
3949static void md5step(sqlite3_context *context, int argc, sqlite3_value **argv){
3950 MD5Context *p;
3951 int i;
3952 if( argc<1 ) return;
3953 p = sqlite3_aggregate_context(context, sizeof(*p));
3954 if( p==0 ) return;
3955 if( !p->isInit ){
3956 MD5Init(p);
3957 }
3958 for(i=0; i<argc; i++){
3959 const char *zData = (char*)sqlite3_value_text(argv[i]);
3960 if( zData ){
drh83cc1392012-04-19 18:04:28 +00003961 MD5Update(p, (unsigned char*)zData, (int)strlen(zData));
drh57a02272009-10-22 20:52:05 +00003962 }
3963 }
3964}
3965static void md5finalize(sqlite3_context *context){
3966 MD5Context *p;
3967 unsigned char digest[16];
3968 char zBuf[33];
3969 p = sqlite3_aggregate_context(context, sizeof(*p));
3970 MD5Final(digest,p);
3971 MD5DigestToBase16(digest, zBuf);
3972 sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT);
3973}
mistachkin44e95d42016-07-28 22:23:26 +00003974int Md5_Register(
3975 sqlite3 *db,
3976 char **pzErrMsg,
mistachkin85bd9822016-07-28 22:53:10 +00003977 const sqlite3_api_routines *pThunk
mistachkin44e95d42016-07-28 22:23:26 +00003978){
mistachkinb56660f2016-07-14 21:26:09 +00003979 int rc = sqlite3_create_function(db, "md5sum", -1, SQLITE_UTF8, 0, 0,
drh57a02272009-10-22 20:52:05 +00003980 md5step, md5finalize);
3981 sqlite3_overload_function(db, "md5sum", -1); /* To exercise this API */
3982 return rc;
3983}
3984#endif /* defined(SQLITE_TEST) */
3985
3986
drh348784e2000-05-29 20:41:49 +00003987/*
drh3e27c022004-07-23 00:01:38 +00003988** If the macro TCLSH is one, then put in code this for the
3989** "main" routine that will initialize Tcl and take input from
drh3570ad92007-08-31 14:31:44 +00003990** standard input, or if a file is named on the command line
3991** the TCL interpreter reads and evaluates that file.
drh348784e2000-05-29 20:41:49 +00003992*/
drh3e27c022004-07-23 00:01:38 +00003993#if TCLSH==1
dan0ae479d2011-09-21 16:43:07 +00003994static const char *tclsh_main_loop(void){
3995 static const char zMainloop[] =
3996 "set line {}\n"
3997 "while {![eof stdin]} {\n"
3998 "if {$line!=\"\"} {\n"
3999 "puts -nonewline \"> \"\n"
4000 "} else {\n"
4001 "puts -nonewline \"% \"\n"
drh348784e2000-05-29 20:41:49 +00004002 "}\n"
dan0ae479d2011-09-21 16:43:07 +00004003 "flush stdout\n"
4004 "append line [gets stdin]\n"
4005 "if {[info complete $line]} {\n"
4006 "if {[catch {uplevel #0 $line} result]} {\n"
4007 "puts stderr \"Error: $result\"\n"
4008 "} elseif {$result!=\"\"} {\n"
4009 "puts $result\n"
4010 "}\n"
4011 "set line {}\n"
4012 "} else {\n"
4013 "append line \\n\n"
4014 "}\n"
drh348784e2000-05-29 20:41:49 +00004015 "}\n"
dan0ae479d2011-09-21 16:43:07 +00004016 ;
4017 return zMainloop;
4018}
drh3e27c022004-07-23 00:01:38 +00004019#endif
drh3a0f13f2010-07-12 16:47:48 +00004020#if TCLSH==2
dan0ae479d2011-09-21 16:43:07 +00004021static const char *tclsh_main_loop(void);
drh3a0f13f2010-07-12 16:47:48 +00004022#endif
drh3e27c022004-07-23 00:01:38 +00004023
danc1a60c52010-06-07 14:28:16 +00004024#ifdef SQLITE_TEST
4025static void init_all(Tcl_Interp *);
mistachkin7617e4a2016-07-28 17:11:20 +00004026static int SQLITE_TCLAPI init_all_cmd(
danc1a60c52010-06-07 14:28:16 +00004027 ClientData cd,
4028 Tcl_Interp *interp,
4029 int objc,
4030 Tcl_Obj *CONST objv[]
4031){
danielk19770a549072009-02-17 16:29:10 +00004032
danc1a60c52010-06-07 14:28:16 +00004033 Tcl_Interp *slave;
4034 if( objc!=2 ){
4035 Tcl_WrongNumArgs(interp, 1, objv, "SLAVE");
4036 return TCL_ERROR;
4037 }
4038
4039 slave = Tcl_GetSlave(interp, Tcl_GetString(objv[1]));
4040 if( !slave ){
4041 return TCL_ERROR;
4042 }
4043
4044 init_all(slave);
4045 return TCL_OK;
4046}
danc431fd52011-06-27 16:55:50 +00004047
4048/*
4049** Tclcmd: db_use_legacy_prepare DB BOOLEAN
4050**
4051** The first argument to this command must be a database command created by
4052** [sqlite3]. If the second argument is true, then the handle is configured
4053** to use the sqlite3_prepare_v2() function to prepare statements. If it
4054** is false, sqlite3_prepare().
4055*/
mistachkin7617e4a2016-07-28 17:11:20 +00004056static int SQLITE_TCLAPI db_use_legacy_prepare_cmd(
danc431fd52011-06-27 16:55:50 +00004057 ClientData cd,
4058 Tcl_Interp *interp,
4059 int objc,
4060 Tcl_Obj *CONST objv[]
4061){
4062 Tcl_CmdInfo cmdInfo;
4063 SqliteDb *pDb;
4064 int bPrepare;
4065
4066 if( objc!=3 ){
4067 Tcl_WrongNumArgs(interp, 1, objv, "DB BOOLEAN");
4068 return TCL_ERROR;
4069 }
4070
4071 if( !Tcl_GetCommandInfo(interp, Tcl_GetString(objv[1]), &cmdInfo) ){
4072 Tcl_AppendResult(interp, "no such db: ", Tcl_GetString(objv[1]), (char*)0);
4073 return TCL_ERROR;
4074 }
4075 pDb = (SqliteDb*)cmdInfo.objClientData;
4076 if( Tcl_GetBooleanFromObj(interp, objv[2], &bPrepare) ){
4077 return TCL_ERROR;
4078 }
4079
4080 pDb->bLegacyPrepare = bPrepare;
4081
4082 Tcl_ResetResult(interp);
4083 return TCL_OK;
4084}
dan04489b62014-10-31 20:11:32 +00004085
4086/*
4087** Tclcmd: db_last_stmt_ptr DB
4088**
4089** If the statement cache associated with database DB is not empty,
4090** return the text representation of the most recently used statement
4091** handle.
4092*/
mistachkin7617e4a2016-07-28 17:11:20 +00004093static int SQLITE_TCLAPI db_last_stmt_ptr(
dan04489b62014-10-31 20:11:32 +00004094 ClientData cd,
4095 Tcl_Interp *interp,
4096 int objc,
4097 Tcl_Obj *CONST objv[]
4098){
4099 extern int sqlite3TestMakePointerStr(Tcl_Interp*, char*, void*);
4100 Tcl_CmdInfo cmdInfo;
4101 SqliteDb *pDb;
4102 sqlite3_stmt *pStmt = 0;
4103 char zBuf[100];
4104
4105 if( objc!=2 ){
4106 Tcl_WrongNumArgs(interp, 1, objv, "DB");
4107 return TCL_ERROR;
4108 }
4109
4110 if( !Tcl_GetCommandInfo(interp, Tcl_GetString(objv[1]), &cmdInfo) ){
4111 Tcl_AppendResult(interp, "no such db: ", Tcl_GetString(objv[1]), (char*)0);
4112 return TCL_ERROR;
4113 }
4114 pDb = (SqliteDb*)cmdInfo.objClientData;
4115
4116 if( pDb->stmtList ) pStmt = pDb->stmtList->pStmt;
4117 if( sqlite3TestMakePointerStr(interp, zBuf, pStmt) ){
4118 return TCL_ERROR;
4119 }
4120 Tcl_SetResult(interp, zBuf, TCL_VOLATILE);
4121
4122 return TCL_OK;
4123}
drh1a4a6802015-05-04 18:31:09 +00004124#endif /* SQLITE_TEST */
4125
danc1a60c52010-06-07 14:28:16 +00004126/*
4127** Configure the interpreter passed as the first argument to have access
4128** to the commands and linked variables that make up:
4129**
mistachkinb56660f2016-07-14 21:26:09 +00004130** * the [sqlite3] extension itself,
danc1a60c52010-06-07 14:28:16 +00004131**
4132** * If SQLITE_TCLMD5 or SQLITE_TEST is defined, the Md5 commands, and
4133**
4134** * If SQLITE_TEST is set, the various test interfaces used by the Tcl
4135** test suite.
4136*/
4137static void init_all(Tcl_Interp *interp){
drh38f82712004-06-18 17:10:16 +00004138 Sqlite3_Init(interp);
danc1a60c52010-06-07 14:28:16 +00004139
drh57a02272009-10-22 20:52:05 +00004140#if defined(SQLITE_TEST) || defined(SQLITE_TCLMD5)
4141 Md5_Init(interp);
4142#endif
danc1a60c52010-06-07 14:28:16 +00004143
drhd9b02572001-04-15 00:37:09 +00004144#ifdef SQLITE_TEST
drhd1bf3512001-04-07 15:24:33 +00004145 {
drh2f999a62007-08-15 19:16:43 +00004146 extern int Sqliteconfig_Init(Tcl_Interp*);
drhd1bf3512001-04-07 15:24:33 +00004147 extern int Sqlitetest1_Init(Tcl_Interp*);
drh5c4d9702001-08-20 00:33:58 +00004148 extern int Sqlitetest2_Init(Tcl_Interp*);
4149 extern int Sqlitetest3_Init(Tcl_Interp*);
drha6064dc2003-12-19 02:52:05 +00004150 extern int Sqlitetest4_Init(Tcl_Interp*);
danielk1977998b56c2004-05-06 23:37:52 +00004151 extern int Sqlitetest5_Init(Tcl_Interp*);
drh9c06c952005-11-26 00:25:00 +00004152 extern int Sqlitetest6_Init(Tcl_Interp*);
drh29c636b2006-01-09 23:40:25 +00004153 extern int Sqlitetest7_Init(Tcl_Interp*);
drhb9bb7c12006-06-11 23:41:55 +00004154 extern int Sqlitetest8_Init(Tcl_Interp*);
danielk1977a713f2c2007-03-29 12:19:11 +00004155 extern int Sqlitetest9_Init(Tcl_Interp*);
drh23669402006-01-09 17:29:52 +00004156 extern int Sqlitetestasync_Init(Tcl_Interp*);
drh1409be62006-08-23 20:07:20 +00004157 extern int Sqlitetest_autoext_Init(Tcl_Interp*);
danb391b942014-11-07 14:41:11 +00004158 extern int Sqlitetest_blob_Init(Tcl_Interp*);
dan0a7a9152010-04-07 07:57:38 +00004159 extern int Sqlitetest_demovfs_Init(Tcl_Interp *);
drh984bfaa2008-03-19 16:08:53 +00004160 extern int Sqlitetest_func_Init(Tcl_Interp*);
drh15926592007-04-06 15:02:13 +00004161 extern int Sqlitetest_hexio_Init(Tcl_Interp*);
dane1ab2192009-08-17 15:16:19 +00004162 extern int Sqlitetest_init_Init(Tcl_Interp*);
drh2f999a62007-08-15 19:16:43 +00004163 extern int Sqlitetest_malloc_Init(Tcl_Interp*);
danielk19771a9ed0b2008-06-18 09:45:56 +00004164 extern int Sqlitetest_mutex_Init(Tcl_Interp*);
drh2f999a62007-08-15 19:16:43 +00004165 extern int Sqlitetestschema_Init(Tcl_Interp*);
4166 extern int Sqlitetestsse_Init(Tcl_Interp*);
4167 extern int Sqlitetesttclvar_Init(Tcl_Interp*);
dan9f5ff372013-01-11 09:58:54 +00004168 extern int Sqlitetestfs_Init(Tcl_Interp*);
danielk197744918fa2007-09-07 11:29:25 +00004169 extern int SqlitetestThread_Init(Tcl_Interp*);
danielk1977a15db352007-09-14 16:20:00 +00004170 extern int SqlitetestOnefile_Init();
danielk19775d1f5aa2008-04-10 14:51:00 +00004171 extern int SqlitetestOsinst_Init(Tcl_Interp*);
danielk197704103022009-02-03 16:51:24 +00004172 extern int Sqlitetestbackup_Init(Tcl_Interp*);
drh522efc62009-11-10 17:24:37 +00004173 extern int Sqlitetestintarray_Init(Tcl_Interp*);
danc7991bd2010-05-05 19:04:59 +00004174 extern int Sqlitetestvfs_Init(Tcl_Interp *);
dan9508daa2010-08-28 18:58:00 +00004175 extern int Sqlitetestrtree_Init(Tcl_Interp*);
dan8cf35eb2010-09-01 11:40:05 +00004176 extern int Sqlitequota_Init(Tcl_Interp*);
shaneh8a922f72010-11-04 20:50:27 +00004177 extern int Sqlitemultiplex_Init(Tcl_Interp*);
dane336b002010-11-19 18:20:09 +00004178 extern int SqliteSuperlock_Init(Tcl_Interp*);
dan213ca0a2011-03-28 19:10:06 +00004179 extern int SqlitetestSyscall_Init(Tcl_Interp*);
drh9b1c62d2011-03-30 21:04:43 +00004180#if defined(SQLITE_ENABLE_SESSION) && defined(SQLITE_ENABLE_PREUPDATE_HOOK)
dan4fccf432011-03-08 19:22:50 +00004181 extern int TestSession_Init(Tcl_Interp*);
4182#endif
dan89a89562014-12-01 20:05:00 +00004183 extern int Fts5tcl_Init(Tcl_Interp *);
drhcfb8f8d2015-07-23 20:44:49 +00004184 extern int SqliteRbu_Init(Tcl_Interp*);
dan8e4251b2016-03-01 18:07:43 +00004185 extern int Sqlitetesttcl_Init(Tcl_Interp*);
dan6764a702011-06-20 11:15:06 +00004186#if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4)
dan99ebad92011-06-13 09:11:01 +00004187 extern int Sqlitetestfts3_Init(Tcl_Interp *interp);
4188#endif
4189
danb29010c2010-12-29 18:24:38 +00004190#ifdef SQLITE_ENABLE_ZIPVFS
4191 extern int Zipvfs_Init(Tcl_Interp*);
4192 Zipvfs_Init(interp);
4193#endif
4194
drh2f999a62007-08-15 19:16:43 +00004195 Sqliteconfig_Init(interp);
danielk19776490beb2004-05-11 06:17:21 +00004196 Sqlitetest1_Init(interp);
drh5c4d9702001-08-20 00:33:58 +00004197 Sqlitetest2_Init(interp);
drhde647132004-05-07 17:57:49 +00004198 Sqlitetest3_Init(interp);
danielk1977fc57d7b2004-05-26 02:04:57 +00004199 Sqlitetest4_Init(interp);
danielk1977998b56c2004-05-06 23:37:52 +00004200 Sqlitetest5_Init(interp);
drh9c06c952005-11-26 00:25:00 +00004201 Sqlitetest6_Init(interp);
drh29c636b2006-01-09 23:40:25 +00004202 Sqlitetest7_Init(interp);
drhb9bb7c12006-06-11 23:41:55 +00004203 Sqlitetest8_Init(interp);
danielk1977a713f2c2007-03-29 12:19:11 +00004204 Sqlitetest9_Init(interp);
drh23669402006-01-09 17:29:52 +00004205 Sqlitetestasync_Init(interp);
drh1409be62006-08-23 20:07:20 +00004206 Sqlitetest_autoext_Init(interp);
danb391b942014-11-07 14:41:11 +00004207 Sqlitetest_blob_Init(interp);
dan0a7a9152010-04-07 07:57:38 +00004208 Sqlitetest_demovfs_Init(interp);
drh984bfaa2008-03-19 16:08:53 +00004209 Sqlitetest_func_Init(interp);
drh15926592007-04-06 15:02:13 +00004210 Sqlitetest_hexio_Init(interp);
dane1ab2192009-08-17 15:16:19 +00004211 Sqlitetest_init_Init(interp);
drh2f999a62007-08-15 19:16:43 +00004212 Sqlitetest_malloc_Init(interp);
danielk19771a9ed0b2008-06-18 09:45:56 +00004213 Sqlitetest_mutex_Init(interp);
drh2f999a62007-08-15 19:16:43 +00004214 Sqlitetestschema_Init(interp);
4215 Sqlitetesttclvar_Init(interp);
dan9f5ff372013-01-11 09:58:54 +00004216 Sqlitetestfs_Init(interp);
danielk197744918fa2007-09-07 11:29:25 +00004217 SqlitetestThread_Init(interp);
mistachkin52b1dbb2016-07-28 14:37:04 +00004218 SqlitetestOnefile_Init();
danielk19775d1f5aa2008-04-10 14:51:00 +00004219 SqlitetestOsinst_Init(interp);
danielk197704103022009-02-03 16:51:24 +00004220 Sqlitetestbackup_Init(interp);
drh522efc62009-11-10 17:24:37 +00004221 Sqlitetestintarray_Init(interp);
danc7991bd2010-05-05 19:04:59 +00004222 Sqlitetestvfs_Init(interp);
dan9508daa2010-08-28 18:58:00 +00004223 Sqlitetestrtree_Init(interp);
dan8cf35eb2010-09-01 11:40:05 +00004224 Sqlitequota_Init(interp);
shaneh8a922f72010-11-04 20:50:27 +00004225 Sqlitemultiplex_Init(interp);
dane336b002010-11-19 18:20:09 +00004226 SqliteSuperlock_Init(interp);
dan213ca0a2011-03-28 19:10:06 +00004227 SqlitetestSyscall_Init(interp);
drh9b1c62d2011-03-30 21:04:43 +00004228#if defined(SQLITE_ENABLE_SESSION) && defined(SQLITE_ENABLE_PREUPDATE_HOOK)
dan4fccf432011-03-08 19:22:50 +00004229 TestSession_Init(interp);
4230#endif
dan89a89562014-12-01 20:05:00 +00004231 Fts5tcl_Init(interp);
drhcfb8f8d2015-07-23 20:44:49 +00004232 SqliteRbu_Init(interp);
dan8e4251b2016-03-01 18:07:43 +00004233 Sqlitetesttcl_Init(interp);
danielk1977a15db352007-09-14 16:20:00 +00004234
dan6764a702011-06-20 11:15:06 +00004235#if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4)
dan99ebad92011-06-13 09:11:01 +00004236 Sqlitetestfts3_Init(interp);
4237#endif
drh2e66f0b2005-04-28 17:18:48 +00004238
danc431fd52011-06-27 16:55:50 +00004239 Tcl_CreateObjCommand(
4240 interp, "load_testfixture_extensions", init_all_cmd, 0, 0
4241 );
4242 Tcl_CreateObjCommand(
4243 interp, "db_use_legacy_prepare", db_use_legacy_prepare_cmd, 0, 0
4244 );
dan04489b62014-10-31 20:11:32 +00004245 Tcl_CreateObjCommand(
4246 interp, "db_last_stmt_ptr", db_last_stmt_ptr, 0, 0
4247 );
danc1a60c52010-06-07 14:28:16 +00004248
drh3e27c022004-07-23 00:01:38 +00004249#ifdef SQLITE_SSE
drh348784e2000-05-29 20:41:49 +00004250 Sqlitetestsse_Init(interp);
4251#endif
4252 }
drh61212b62004-12-02 20:17:00 +00004253#endif
danc1a60c52010-06-07 14:28:16 +00004254}
4255
drhdb6bafa2015-01-09 21:54:58 +00004256/* Needed for the setrlimit() system call on unix */
4257#if defined(unix)
4258#include <sys/resource.h>
4259#endif
4260
danc1a60c52010-06-07 14:28:16 +00004261#define TCLSH_MAIN main /* Needed to fake out mktclapp */
mistachkin69def7f2016-07-28 04:14:37 +00004262int SQLITE_CDECL TCLSH_MAIN(int argc, char **argv){
danc1a60c52010-06-07 14:28:16 +00004263 Tcl_Interp *interp;
mistachkin1f28e072013-08-15 08:06:15 +00004264
4265#if !defined(_WIN32_WCE)
4266 if( getenv("BREAK") ){
4267 fprintf(stderr,
4268 "attach debugger to process %d and press any key to continue.\n",
4269 GETPID());
4270 fgetc(stdin);
4271 }
4272#endif
4273
drhdb6bafa2015-01-09 21:54:58 +00004274 /* Since the primary use case for this binary is testing of SQLite,
4275 ** be sure to generate core files if we crash */
4276#if defined(SQLITE_TEST) && defined(unix)
4277 { struct rlimit x;
4278 getrlimit(RLIMIT_CORE, &x);
4279 x.rlim_cur = x.rlim_max;
4280 setrlimit(RLIMIT_CORE, &x);
4281 }
4282#endif /* SQLITE_TEST && unix */
4283
4284
danc1a60c52010-06-07 14:28:16 +00004285 /* Call sqlite3_shutdown() once before doing anything else. This is to
4286 ** test that sqlite3_shutdown() can be safely called by a process before
4287 ** sqlite3_initialize() is. */
4288 sqlite3_shutdown();
4289
dan0ae479d2011-09-21 16:43:07 +00004290 Tcl_FindExecutable(argv[0]);
mistachkin2953ba92014-02-14 00:25:03 +00004291 Tcl_SetSystemEncoding(NULL, "utf-8");
dan0ae479d2011-09-21 16:43:07 +00004292 interp = Tcl_CreateInterp();
4293
drh3a0f13f2010-07-12 16:47:48 +00004294#if TCLSH==2
4295 sqlite3_config(SQLITE_CONFIG_SINGLETHREAD);
4296#endif
danc1a60c52010-06-07 14:28:16 +00004297
danc1a60c52010-06-07 14:28:16 +00004298 init_all(interp);
drhc7285972009-11-10 01:13:25 +00004299 if( argc>=2 ){
drh348784e2000-05-29 20:41:49 +00004300 int i;
shessad42c3a2006-08-22 23:53:46 +00004301 char zArgc[32];
4302 sqlite3_snprintf(sizeof(zArgc), zArgc, "%d", argc-(3-TCLSH));
4303 Tcl_SetVar(interp,"argc", zArgc, TCL_GLOBAL_ONLY);
drh348784e2000-05-29 20:41:49 +00004304 Tcl_SetVar(interp,"argv0",argv[1],TCL_GLOBAL_ONLY);
4305 Tcl_SetVar(interp,"argv", "", TCL_GLOBAL_ONLY);
4306 for(i=3-TCLSH; i<argc; i++){
4307 Tcl_SetVar(interp, "argv", argv[i],
4308 TCL_GLOBAL_ONLY | TCL_LIST_ELEMENT | TCL_APPEND_VALUE);
4309 }
drh3a0f13f2010-07-12 16:47:48 +00004310 if( TCLSH==1 && Tcl_EvalFile(interp, argv[1])!=TCL_OK ){
drh0de8c112002-07-06 16:32:14 +00004311 const char *zInfo = Tcl_GetVar(interp, "errorInfo", TCL_GLOBAL_ONLY);
drha81c64a2009-01-14 23:38:02 +00004312 if( zInfo==0 ) zInfo = Tcl_GetStringResult(interp);
drhc61053b2000-06-04 12:58:36 +00004313 fprintf(stderr,"%s: %s\n", *argv, zInfo);
drh348784e2000-05-29 20:41:49 +00004314 return 1;
4315 }
drh3e27c022004-07-23 00:01:38 +00004316 }
drh3a0f13f2010-07-12 16:47:48 +00004317 if( TCLSH==2 || argc<=1 ){
dan0ae479d2011-09-21 16:43:07 +00004318 Tcl_GlobalEval(interp, tclsh_main_loop());
drh348784e2000-05-29 20:41:49 +00004319 }
4320 return 0;
4321}
4322#endif /* TCLSH */