4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** 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.
11 *************************************************************************
12 ** Code for testing the virtual table interfaces. This code
13 ** is not included in the SQLite library. It is used for automated
14 ** testing of the SQLite library.
16 #include "sqliteInt.h"
17 #if defined(INCLUDE_SQLITE_TCL_H)
18 # include "sqlite_tcl.h"
25 #ifndef SQLITE_OMIT_VIRTUALTABLE
27 typedef struct echo_vtab echo_vtab
;
28 typedef struct echo_cursor echo_cursor
;
31 ** The test module defined in this file uses four global Tcl variables to
32 ** commicate with test-scripts:
35 ** $::echo_module_sync_fail
36 ** $::echo_module_begin_fail
37 ** $::echo_module_cost
39 ** The variable ::echo_module is a list. Each time one of the following
40 ** methods is called, one or more elements are appended to the list.
41 ** This is used for automated testing of virtual table modules.
43 ** The ::echo_module_sync_fail variable is set by test scripts and read
44 ** by code in this file. If it is set to the name of a real table in the
45 ** the database, then all xSync operations on echo virtual tables that
46 ** use the named table as a backing store will fail.
50 ** Errors can be provoked within the following echo virtual table methods:
52 ** xBestIndex xOpen xFilter xNext
53 ** xColumn xRowid xUpdate xSync
56 ** This is done by setting the global tcl variable:
58 ** echo_module_fail($method,$tbl)
60 ** where $method is set to the name of the virtual table method to fail
61 ** (i.e. "xBestIndex") and $tbl is the name of the table being echoed (not
62 ** the name of the virtual table, the name of the underlying real table).
66 ** An echo virtual-table object.
68 ** echo.vtab.aIndex is an array of booleans. The nth entry is true if
69 ** the nth column of the real table is the left-most column of an index
70 ** (implicit or otherwise). In other words, if SQLite can optimize
71 ** a query like "SELECT * FROM real_table WHERE col = ?".
73 ** Member variable aCol[] contains copies of the column names of the real
78 Tcl_Interp
*interp
; /* Tcl interpreter containing debug variables */
79 sqlite3
*db
; /* Database connection */
82 int inTransaction
; /* True if within a transaction */
83 char *zThis
; /* Name of the echo table */
84 char *zTableName
; /* Name of the real table */
85 char *zLogName
; /* Name of the log table */
86 int nCol
; /* Number of columns in the real table */
87 int *aIndex
; /* Array of size nCol. True if column has an index */
88 char **aCol
; /* Array of size nCol. Column names */
91 /* An echo cursor object */
93 sqlite3_vtab_cursor base
;
97 static int simulateVtabError(echo_vtab
*p
, const char *zMethod
){
100 zVarname
[127] = '\0';
101 sqlite3_snprintf(127, zVarname
, "echo_module_fail(%s,%s)", zMethod
, p
->zTableName
);
102 zErr
= Tcl_GetVar(p
->interp
, zVarname
, TCL_GLOBAL_ONLY
);
104 p
->base
.zErrMsg
= sqlite3_mprintf("echo-vtab-error: %s", zErr
);
110 ** Convert an SQL-style quoted string into a normal string by removing
111 ** the quote characters. The conversion is done in-place. If the
112 ** input does not begin with a quote character, then this routine
122 static void dequoteString(char *z
){
130 case '`': break; /* For MySQL compatibility */
131 case '[': quote
= ']'; break; /* For MS SqlServer compatibility */
134 for(i
=1, j
=0; z
[i
]; i
++){
150 ** Retrieve the column names for the table named zTab via database
151 ** connection db. SQLITE_OK is returned on success, or an sqlite error
154 ** If successful, the number of columns is written to *pnCol. *paCol is
155 ** set to point at sqlite3_malloc()'d space containing the array of
156 ** nCol column names. The caller is responsible for calling sqlite3_free
159 static int getColumnNames(
167 sqlite3_stmt
*pStmt
= 0;
171 /* Prepare the statement "SELECT * FROM <tbl>". The column names
172 ** of the result set of the compiled SELECT will be the same as
173 ** the column names of table <tbl>.
175 zSql
= sqlite3_mprintf("SELECT * FROM %Q", zTab
);
180 rc
= sqlite3_prepare(db
, zSql
, -1, &pStmt
, 0);
187 nCol
= sqlite3_column_count(pStmt
);
189 /* Figure out how much space to allocate for the array of column names
190 ** (including space for the strings themselves). Then allocate it.
192 nBytes
= sizeof(char *) * nCol
;
193 for(ii
=0; ii
<nCol
; ii
++){
194 const char *zName
= sqlite3_column_name(pStmt
, ii
);
199 nBytes
+= (int)strlen(zName
)+1;
201 aCol
= (char **)sqlite3MallocZero(nBytes
);
207 /* Copy the column names into the allocated space and set up the
208 ** pointers in the aCol[] array.
210 zSpace
= (char *)(&aCol
[nCol
]);
211 for(ii
=0; ii
<nCol
; ii
++){
213 sqlite3_snprintf(nBytes
, zSpace
, "%s", sqlite3_column_name(pStmt
,ii
));
214 zSpace
+= (int)strlen(zSpace
) + 1;
216 assert( (zSpace
-nBytes
)==(char *)aCol
);
223 sqlite3_finalize(pStmt
);
228 ** Parameter zTab is the name of a table in database db with nCol
229 ** columns. This function allocates an array of integers nCol in
230 ** size and populates it according to any implicit or explicit
231 ** indices on table zTab.
233 ** If successful, SQLITE_OK is returned and *paIndex set to point
234 ** at the allocated array. Otherwise, an error code is returned.
236 ** See comments associated with the member variable aIndex above
237 ** "struct echo_vtab" for details of the contents of the array.
239 static int getIndexArray(
240 sqlite3
*db
, /* Database connection */
241 const char *zTab
, /* Name of table in database db */
245 sqlite3_stmt
*pStmt
= 0;
250 /* Allocate space for the index array */
251 aIndex
= (int *)sqlite3MallocZero(sizeof(int) * nCol
);
254 goto get_index_array_out
;
257 /* Compile an sqlite pragma to loop through all indices on table zTab */
258 zSql
= sqlite3_mprintf("PRAGMA index_list(%s)", zTab
);
261 goto get_index_array_out
;
263 rc
= sqlite3_prepare(db
, zSql
, -1, &pStmt
, 0);
266 /* For each index, figure out the left-most column and set the
267 ** corresponding entry in aIndex[] to 1.
269 while( pStmt
&& sqlite3_step(pStmt
)==SQLITE_ROW
){
270 const char *zIdx
= (const char *)sqlite3_column_text(pStmt
, 1);
271 sqlite3_stmt
*pStmt2
= 0;
272 if( zIdx
==0 ) continue;
273 zSql
= sqlite3_mprintf("PRAGMA index_info(%s)", zIdx
);
276 goto get_index_array_out
;
278 rc
= sqlite3_prepare(db
, zSql
, -1, &pStmt2
, 0);
280 if( pStmt2
&& sqlite3_step(pStmt2
)==SQLITE_ROW
){
281 int cid
= sqlite3_column_int(pStmt2
, 1);
282 assert( cid
>=0 && cid
<nCol
);
286 rc
= sqlite3_finalize(pStmt2
);
289 goto get_index_array_out
;
296 int rc2
= sqlite3_finalize(pStmt
);
302 sqlite3_free(aIndex
);
310 ** Global Tcl variable $echo_module is a list. This routine appends
311 ** the string element zArg to that list in interpreter interp.
313 static void appendToEchoModule(Tcl_Interp
*interp
, const char *zArg
){
314 int flags
= (TCL_APPEND_VALUE
| TCL_LIST_ELEMENT
| TCL_GLOBAL_ONLY
);
315 Tcl_SetVar(interp
, "echo_module", (zArg
?zArg
:""), flags
);
319 ** This function is called from within the echo-modules xCreate and
320 ** xConnect methods. The argc and argv arguments are copies of those
321 ** passed to the calling method. This function is responsible for
322 ** calling sqlite3_declare_vtab() to declare the schema of the virtual
323 ** table being created or connected.
325 ** If the constructor was passed just one argument, i.e.:
327 ** CREATE TABLE t1 AS echo(t2);
329 ** Then t2 is assumed to be the name of a *real* database table. The
330 ** schema of the virtual table is declared by passing a copy of the
331 ** CREATE TABLE statement for the real table to sqlite3_declare_vtab().
332 ** Hence, the virtual table should have exactly the same column names and
333 ** types as the real table.
335 static int echoDeclareVtab(
341 if( pVtab
->zTableName
){
342 sqlite3_stmt
*pStmt
= 0;
343 rc
= sqlite3_prepare(db
,
344 "SELECT sql FROM sqlite_schema WHERE type = 'table' AND name = ?",
347 sqlite3_bind_text(pStmt
, 1, pVtab
->zTableName
, -1, 0);
348 if( sqlite3_step(pStmt
)==SQLITE_ROW
){
350 const char *zCreateTable
= (const char *)sqlite3_column_text(pStmt
, 0);
351 rc
= sqlite3_declare_vtab(db
, zCreateTable
);
352 rc2
= sqlite3_finalize(pStmt
);
357 rc
= sqlite3_finalize(pStmt
);
363 rc
= getColumnNames(db
, pVtab
->zTableName
, &pVtab
->aCol
, &pVtab
->nCol
);
366 rc
= getIndexArray(db
, pVtab
->zTableName
, pVtab
->nCol
, &pVtab
->aIndex
);
375 ** This function frees all runtime structures associated with the virtual
378 static int echoDestructor(sqlite3_vtab
*pVtab
){
379 echo_vtab
*p
= (echo_vtab
*)pVtab
;
380 sqlite3_free(p
->aIndex
);
381 sqlite3_free(p
->aCol
);
382 sqlite3_free(p
->zThis
);
383 sqlite3_free(p
->zTableName
);
384 sqlite3_free(p
->zLogName
);
389 typedef struct EchoModule EchoModule
;
396 ** This function is called to do the work of the xConnect() method -
397 ** to allocate the required in-memory structures for a newly connected
400 static int echoConstructor(
403 int argc
, const char *const*argv
,
404 sqlite3_vtab
**ppVtab
,
411 /* Allocate the sqlite3_vtab/echo_vtab structure itself */
412 pVtab
= sqlite3MallocZero( sizeof(*pVtab
) );
416 pVtab
->interp
= ((EchoModule
*)pAux
)->interp
;
419 /* Allocate echo_vtab.zThis */
420 pVtab
->zThis
= sqlite3_mprintf("%s", argv
[2]);
422 echoDestructor((sqlite3_vtab
*)pVtab
);
426 /* Allocate echo_vtab.zTableName */
428 pVtab
->zTableName
= sqlite3_mprintf("%s", argv
[3]);
429 dequoteString(pVtab
->zTableName
);
430 if( pVtab
->zTableName
&& pVtab
->zTableName
[0]=='*' ){
431 char *z
= sqlite3_mprintf("%s%s", argv
[2], &(pVtab
->zTableName
[1]));
432 sqlite3_free(pVtab
->zTableName
);
433 pVtab
->zTableName
= z
;
434 pVtab
->isPattern
= 1;
436 if( !pVtab
->zTableName
){
437 echoDestructor((sqlite3_vtab
*)pVtab
);
442 /* Log the arguments to this function to Tcl var ::echo_module */
443 for(i
=0; i
<argc
; i
++){
444 appendToEchoModule(pVtab
->interp
, argv
[i
]);
447 /* Invoke sqlite3_declare_vtab and set up other members of the echo_vtab
448 ** structure. If an error occurs, delete the sqlite3_vtab structure and
449 ** return an error code.
451 rc
= echoDeclareVtab(pVtab
, db
);
453 echoDestructor((sqlite3_vtab
*)pVtab
);
457 /* Success. Set *ppVtab and return */
458 *ppVtab
= &pVtab
->base
;
463 ** Echo virtual table module xCreate method.
465 static int echoCreate(
468 int argc
, const char *const*argv
,
469 sqlite3_vtab
**ppVtab
,
473 appendToEchoModule(((EchoModule
*)pAux
)->interp
, "xCreate");
474 rc
= echoConstructor(db
, pAux
, argc
, argv
, ppVtab
, pzErr
);
476 /* If there were two arguments passed to the module at the SQL level
477 ** (i.e. "CREATE VIRTUAL TABLE tbl USING echo(arg1, arg2)"), then
478 ** the second argument is used as a table name. Attempt to create
479 ** such a table with a single column, "logmsg". This table will
480 ** be used to log calls to the xUpdate method. It will be deleted
481 ** when the virtual table is DROPed.
483 ** Note: The main point of this is to test that we can drop tables
484 ** from within an xDestroy method call.
486 if( rc
==SQLITE_OK
&& argc
==5 ){
488 echo_vtab
*pVtab
= *(echo_vtab
**)ppVtab
;
489 pVtab
->zLogName
= sqlite3_mprintf("%s", argv
[4]);
490 zSql
= sqlite3_mprintf("CREATE TABLE %Q(logmsg)", pVtab
->zLogName
);
491 rc
= sqlite3_exec(db
, zSql
, 0, 0, 0);
494 *pzErr
= sqlite3_mprintf("%s", sqlite3_errmsg(db
));
498 if( *ppVtab
&& rc
!=SQLITE_OK
){
499 echoDestructor(*ppVtab
);
504 (*(echo_vtab
**)ppVtab
)->inTransaction
= 1;
511 ** Echo virtual table module xConnect method.
513 static int echoConnect(
516 int argc
, const char *const*argv
,
517 sqlite3_vtab
**ppVtab
,
520 appendToEchoModule(((EchoModule
*)pAux
)->interp
, "xConnect");
521 return echoConstructor(db
, pAux
, argc
, argv
, ppVtab
, pzErr
);
525 ** Echo virtual table module xDisconnect method.
527 static int echoDisconnect(sqlite3_vtab
*pVtab
){
528 appendToEchoModule(((echo_vtab
*)pVtab
)->interp
, "xDisconnect");
529 return echoDestructor(pVtab
);
533 ** Echo virtual table module xDestroy method.
535 static int echoDestroy(sqlite3_vtab
*pVtab
){
537 echo_vtab
*p
= (echo_vtab
*)pVtab
;
538 appendToEchoModule(((echo_vtab
*)pVtab
)->interp
, "xDestroy");
540 /* Drop the "log" table, if one exists (see echoCreate() for details) */
541 if( p
&& p
->zLogName
){
543 zSql
= sqlite3_mprintf("DROP TABLE %Q", p
->zLogName
);
544 rc
= sqlite3_exec(p
->db
, zSql
, 0, 0, 0);
549 rc
= echoDestructor(pVtab
);
555 ** Echo virtual table module xOpen method.
557 static int echoOpen(sqlite3_vtab
*pVTab
, sqlite3_vtab_cursor
**ppCursor
){
559 if( simulateVtabError((echo_vtab
*)pVTab
, "xOpen") ){
562 pCur
= sqlite3MallocZero(sizeof(echo_cursor
));
563 *ppCursor
= (sqlite3_vtab_cursor
*)pCur
;
564 return (pCur
? SQLITE_OK
: SQLITE_NOMEM
);
568 ** Echo virtual table module xClose method.
570 static int echoClose(sqlite3_vtab_cursor
*cur
){
572 echo_cursor
*pCur
= (echo_cursor
*)cur
;
573 sqlite3_stmt
*pStmt
= pCur
->pStmt
;
576 rc
= sqlite3_finalize(pStmt
);
581 ** Return non-zero if the cursor does not currently point to a valid record
582 ** (i.e if the scan has finished), or zero otherwise.
584 static int echoEof(sqlite3_vtab_cursor
*cur
){
585 return (((echo_cursor
*)cur
)->pStmt
? 0 : 1);
589 ** Echo virtual table module xNext method.
591 static int echoNext(sqlite3_vtab_cursor
*cur
){
593 echo_cursor
*pCur
= (echo_cursor
*)cur
;
595 if( simulateVtabError((echo_vtab
*)(cur
->pVtab
), "xNext") ){
600 rc
= sqlite3_step(pCur
->pStmt
);
601 if( rc
==SQLITE_ROW
){
604 rc
= sqlite3_finalize(pCur
->pStmt
);
613 ** Echo virtual table module xColumn method.
615 static int echoColumn(sqlite3_vtab_cursor
*cur
, sqlite3_context
*ctx
, int i
){
617 sqlite3_stmt
*pStmt
= ((echo_cursor
*)cur
)->pStmt
;
619 if( simulateVtabError((echo_vtab
*)(cur
->pVtab
), "xColumn") ){
624 sqlite3_result_null(ctx
);
626 assert( sqlite3_data_count(pStmt
)>iCol
);
627 sqlite3_result_value(ctx
, sqlite3_column_value(pStmt
, iCol
));
633 ** Echo virtual table module xRowid method.
635 static int echoRowid(sqlite3_vtab_cursor
*cur
, sqlite_int64
*pRowid
){
636 sqlite3_stmt
*pStmt
= ((echo_cursor
*)cur
)->pStmt
;
638 if( simulateVtabError((echo_vtab
*)(cur
->pVtab
), "xRowid") ){
642 *pRowid
= sqlite3_column_int64(pStmt
, 0);
647 ** Compute a simple hash of the null terminated string zString.
649 ** This module uses only sqlite3_index_info.idxStr, not
650 ** sqlite3_index_info.idxNum. So to test idxNum, when idxStr is set
651 ** in echoBestIndex(), idxNum is set to the corresponding hash value.
652 ** In echoFilter(), code assert()s that the supplied idxNum value is
653 ** indeed the hash of the supplied idxStr.
655 static int hashString(const char *zString
){
658 for(ii
=0; zString
[ii
]; ii
++){
659 val
= (val
<< 3) + (int)zString
[ii
];
661 return (int)(val
&0x7fffffff);
665 ** Echo virtual table module xFilter method.
667 static int echoFilter(
668 sqlite3_vtab_cursor
*pVtabCursor
,
669 int idxNum
, const char *idxStr
,
670 int argc
, sqlite3_value
**argv
675 echo_cursor
*pCur
= (echo_cursor
*)pVtabCursor
;
676 echo_vtab
*pVtab
= (echo_vtab
*)pVtabCursor
->pVtab
;
677 sqlite3
*db
= pVtab
->db
;
679 if( simulateVtabError(pVtab
, "xFilter") ){
683 /* Check that idxNum matches idxStr */
684 assert( idxNum
==hashString(idxStr
) );
686 /* Log arguments to the ::echo_module Tcl variable */
687 appendToEchoModule(pVtab
->interp
, "xFilter");
688 appendToEchoModule(pVtab
->interp
, idxStr
);
689 for(i
=0; i
<argc
; i
++){
690 appendToEchoModule(pVtab
->interp
, (const char*)sqlite3_value_text(argv
[i
]));
693 sqlite3_finalize(pCur
->pStmt
);
696 /* Prepare the SQL statement created by echoBestIndex and bind the
697 ** runtime parameters passed to this function to it.
699 rc
= sqlite3_prepare(db
, idxStr
, -1, &pCur
->pStmt
, 0);
700 assert( pCur
->pStmt
|| rc
!=SQLITE_OK
);
701 for(i
=0; rc
==SQLITE_OK
&& i
<argc
; i
++){
702 rc
= sqlite3_bind_value(pCur
->pStmt
, i
+1, argv
[i
]);
705 /* If everything was successful, advance to the first row of the scan */
707 rc
= echoNext(pVtabCursor
);
715 ** A helper function used by echoUpdate() and echoBestIndex() for
716 ** manipulating strings in concert with the sqlite3_mprintf() function.
718 ** Parameter pzStr points to a pointer to a string allocated with
719 ** sqlite3_mprintf. The second parameter, zAppend, points to another
720 ** string. The two strings are concatenated together and *pzStr
721 ** set to point at the result. The initial buffer pointed to by *pzStr
722 ** is deallocated via sqlite3_free().
724 ** If the third argument, doFree, is true, then sqlite3_free() is
725 ** also called to free the buffer pointed to by zAppend.
727 static void string_concat(char **pzStr
, char *zAppend
, int doFree
, int *pRc
){
729 if( !zAppend
&& doFree
&& *pRc
==SQLITE_OK
){
732 if( *pRc
!=SQLITE_OK
){
738 zIn
= sqlite3_mprintf("%s%s", zIn
, zAppend
);
741 zIn
= sqlite3_mprintf("%s", zAppend
);
749 sqlite3_free(zAppend
);
754 ** This function returns a pointer to an sqlite3_malloc()ed buffer
755 ** containing the select-list (the thing between keywords SELECT and FROM)
756 ** to query the underlying real table with for the scan described by
757 ** argument pIdxInfo.
759 ** If the current SQLite version is earlier than 3.10.0, this is just "*"
760 ** (select all columns). Or, for version 3.10.0 and greater, the list of
761 ** columns identified by the pIdxInfo->colUsed mask.
763 static char *echoSelectList(echo_vtab
*pTab
, sqlite3_index_info
*pIdxInfo
){
765 if( sqlite3_libversion_number()<3010000 ){
766 zRet
= sqlite3_mprintf(", *");
769 for(i
=0; i
<pTab
->nCol
; i
++){
770 if( pIdxInfo
->colUsed
& ((sqlite3_uint64
)1 << (i
>=63 ? 63 : i
)) ){
771 zRet
= sqlite3_mprintf("%z, %s", zRet
, pTab
->aCol
[i
]);
773 zRet
= sqlite3_mprintf("%z, NULL", zRet
);
782 ** The echo module implements the subset of query constraints and sort
783 ** orders that may take advantage of SQLite indices on the underlying
784 ** real table. For example, if the real table is declared as:
786 ** CREATE TABLE real(a, b, c);
787 ** CREATE INDEX real_index ON real(b);
789 ** then the echo module handles WHERE or ORDER BY clauses that refer
790 ** to the column "b", but not "a" or "c". If a multi-column index is
791 ** present, only its left most column is considered.
793 ** This xBestIndex method encodes the proposed search strategy as
794 ** an SQL query on the real table underlying the virtual echo module
795 ** table and stores the query in sqlite3_index_info.idxStr. The SQL
796 ** statement is of the form:
798 ** SELECT rowid, * FROM <real-table> ?<where-clause>? ?<order-by-clause>?
800 ** where the <where-clause> and <order-by-clause> are determined
801 ** by the contents of the structure pointed to by the pIdxInfo argument.
803 static int echoBestIndex(sqlite3_vtab
*tab
, sqlite3_index_info
*pIdxInfo
){
809 const char *zSep
= "WHERE";
810 echo_vtab
*pVtab
= (echo_vtab
*)tab
;
811 sqlite3_stmt
*pStmt
= 0;
812 Tcl_Interp
*interp
= pVtab
->interp
;
819 int isIgnoreUsable
= 0;
820 if( Tcl_GetVar(interp
, "echo_module_ignore_usable", TCL_GLOBAL_ONLY
) ){
824 if( simulateVtabError(pVtab
, "xBestIndex") ){
828 /* Determine the number of rows in the table and store this value in local
829 ** variable nRow. The 'estimated-cost' of the scan will be the number of
830 ** rows in the table for a linear scan, or the log (base 2) of the
831 ** number of rows if the proposed scan uses an index.
833 if( Tcl_GetVar(interp
, "echo_module_cost", TCL_GLOBAL_ONLY
) ){
834 cost
= atof(Tcl_GetVar(interp
, "echo_module_cost", TCL_GLOBAL_ONLY
));
837 zQuery
= sqlite3_mprintf("SELECT count(*) FROM %Q", pVtab
->zTableName
);
841 rc
= sqlite3_prepare(pVtab
->db
, zQuery
, -1, &pStmt
, 0);
842 sqlite3_free(zQuery
);
847 nRow
= sqlite3_column_int(pStmt
, 0);
848 rc
= sqlite3_finalize(pStmt
);
854 zCol
= echoSelectList(pVtab
, pIdxInfo
);
855 if( !zCol
) return SQLITE_NOMEM
;
856 zQuery
= sqlite3_mprintf("SELECT rowid%z FROM %Q", zCol
, pVtab
->zTableName
);
857 if( !zQuery
) return SQLITE_NOMEM
;
859 for(ii
=0; ii
<pIdxInfo
->nConstraint
; ii
++){
860 const struct sqlite3_index_constraint
*pConstraint
;
861 struct sqlite3_index_constraint_usage
*pUsage
;
864 pConstraint
= &pIdxInfo
->aConstraint
[ii
];
865 pUsage
= &pIdxInfo
->aConstraintUsage
[ii
];
867 if( !isIgnoreUsable
&& !pConstraint
->usable
) continue;
869 iCol
= pConstraint
->iColumn
;
870 if( iCol
<0 || pVtab
->aIndex
[iCol
] ){
871 char *zNewCol
= iCol
>=0 ? pVtab
->aCol
[iCol
] : "rowid";
874 switch( pConstraint
->op
){
875 case SQLITE_INDEX_CONSTRAINT_EQ
:
877 case SQLITE_INDEX_CONSTRAINT_LT
:
879 case SQLITE_INDEX_CONSTRAINT_GT
:
881 case SQLITE_INDEX_CONSTRAINT_LE
:
883 case SQLITE_INDEX_CONSTRAINT_GE
:
885 case SQLITE_INDEX_CONSTRAINT_MATCH
:
886 /* Purposely translate the MATCH operator into a LIKE, which
887 ** will be used by the next block of code to construct a new
888 ** query. It should also be noted here that the next block
889 ** of code requires the first letter of this operator to be
890 ** in upper-case to trigger the special MATCH handling (i.e.
891 ** wrapping the bound parameter with literal '%'s).
894 case SQLITE_INDEX_CONSTRAINT_LIKE
:
896 case SQLITE_INDEX_CONSTRAINT_GLOB
:
898 case SQLITE_INDEX_CONSTRAINT_REGEXP
:
899 zOp
= "regexp"; break;
903 zNew
= sqlite3_mprintf(" %s %s LIKE (SELECT '%%'||?||'%%')",
906 zNew
= sqlite3_mprintf(" %s %s %s ?", zSep
, zNewCol
, zOp
);
908 string_concat(&zQuery
, zNew
, 1, &rc
);
910 pUsage
->argvIndex
= ++nArg
;
916 /* If there is only one term in the ORDER BY clause, and it is
917 ** on a column that this virtual table has an index for, then consume
918 ** the ORDER BY clause.
920 if( pIdxInfo
->nOrderBy
==1 && (
921 pIdxInfo
->aOrderBy
->iColumn
<0 ||
922 pVtab
->aIndex
[pIdxInfo
->aOrderBy
->iColumn
]) ){
923 int iCol
= pIdxInfo
->aOrderBy
->iColumn
;
924 char *zNewCol
= iCol
>=0 ? pVtab
->aCol
[iCol
] : "rowid";
925 char *zDir
= pIdxInfo
->aOrderBy
->desc
?"DESC":"ASC";
926 zNew
= sqlite3_mprintf(" ORDER BY %s %s", zNewCol
, zDir
);
927 string_concat(&zQuery
, zNew
, 1, &rc
);
928 pIdxInfo
->orderByConsumed
= 1;
931 appendToEchoModule(pVtab
->interp
, "xBestIndex");;
932 appendToEchoModule(pVtab
->interp
, zQuery
);
937 pIdxInfo
->idxNum
= hashString(zQuery
);
938 pIdxInfo
->idxStr
= zQuery
;
939 pIdxInfo
->needToFreeIdxStr
= 1;
941 pIdxInfo
->estimatedCost
= cost
;
943 /* Approximation of log2(nRow). */
944 for( ii
=0; ii
<(sizeof(int)*8)-1; ii
++ ){
945 if( nRow
& (1<<ii
) ){
946 pIdxInfo
->estimatedCost
= (double)ii
;
950 pIdxInfo
->estimatedCost
= (double)nRow
;
956 ** The xUpdate method for echo module virtual tables.
958 ** apData[0] apData[1] apData[2..]
962 ** INTEGER NULL (nCol args) UPDATE (do not set rowid)
963 ** INTEGER INTEGER (nCol args) UPDATE (with SET rowid = <arg1>)
965 ** NULL NULL (nCol args) INSERT INTO (automatic rowid value)
966 ** NULL INTEGER (nCol args) INSERT (incl. rowid value)
972 sqlite3_value
**apData
,
975 echo_vtab
*pVtab
= (echo_vtab
*)tab
;
976 sqlite3
*db
= pVtab
->db
;
979 sqlite3_stmt
*pStmt
= 0;
980 char *z
= 0; /* SQL statement to execute */
981 int bindArgZero
= 0; /* True to bind apData[0] to sql var no. nData */
982 int bindArgOne
= 0; /* True to bind apData[1] to sql var no. 1 */
983 int i
; /* Counter variable used by for loops */
985 assert( nData
==pVtab
->nCol
+2 || nData
==1 );
987 /* Ticket #3083 - make sure we always start a transaction prior to
988 ** making any changes to a virtual table */
989 assert( pVtab
->inTransaction
);
991 if( simulateVtabError(pVtab
, "xUpdate") ){
995 /* If apData[0] is an integer and nData>1 then do an UPDATE */
996 if( nData
>1 && sqlite3_value_type(apData
[0])==SQLITE_INTEGER
){
998 z
= sqlite3_mprintf("UPDATE %Q", pVtab
->zTableName
);
1003 bindArgOne
= (apData
[1] && sqlite3_value_type(apData
[1])==SQLITE_INTEGER
);
1007 string_concat(&z
, " SET rowid=?1 ", 0, &rc
);
1010 for(i
=2; i
<nData
; i
++){
1011 if( apData
[i
]==0 ) continue;
1012 string_concat(&z
, sqlite3_mprintf(
1013 "%s %Q=?%d", zSep
, pVtab
->aCol
[i
-2], i
), 1, &rc
);
1016 string_concat(&z
, sqlite3_mprintf(" WHERE rowid=?%d", nData
), 1, &rc
);
1019 /* If apData[0] is an integer and nData==1 then do a DELETE */
1020 else if( nData
==1 && sqlite3_value_type(apData
[0])==SQLITE_INTEGER
){
1021 z
= sqlite3_mprintf("DELETE FROM %Q WHERE rowid = ?1", pVtab
->zTableName
);
1028 /* If the first argument is NULL and there are more than two args, INSERT */
1029 else if( nData
>2 && sqlite3_value_type(apData
[0])==SQLITE_NULL
){
1034 zInsert
= sqlite3_mprintf("INSERT INTO %Q (", pVtab
->zTableName
);
1038 if( sqlite3_value_type(apData
[1])==SQLITE_INTEGER
){
1040 zValues
= sqlite3_mprintf("?");
1041 string_concat(&zInsert
, "rowid", 0, &rc
);
1044 assert((pVtab
->nCol
+2)==nData
);
1045 for(ii
=2; ii
<nData
; ii
++){
1046 string_concat(&zInsert
,
1047 sqlite3_mprintf("%s%Q", zValues
?", ":"", pVtab
->aCol
[ii
-2]), 1, &rc
);
1048 string_concat(&zValues
,
1049 sqlite3_mprintf("%s?%d", zValues
?", ":"", ii
), 1, &rc
);
1052 string_concat(&z
, zInsert
, 1, &rc
);
1053 string_concat(&z
, ") VALUES(", 0, &rc
);
1054 string_concat(&z
, zValues
, 1, &rc
);
1055 string_concat(&z
, ")", 0, &rc
);
1058 /* Anything else is an error */
1061 return SQLITE_ERROR
;
1064 if( rc
==SQLITE_OK
){
1065 rc
= sqlite3_prepare(db
, z
, -1, &pStmt
, 0);
1067 assert( rc
!=SQLITE_OK
|| pStmt
);
1069 if( rc
==SQLITE_OK
) {
1071 sqlite3_bind_value(pStmt
, nData
, apData
[0]);
1074 sqlite3_bind_value(pStmt
, 1, apData
[1]);
1076 for(i
=2; i
<nData
&& rc
==SQLITE_OK
; i
++){
1077 if( apData
[i
] ) rc
= sqlite3_bind_value(pStmt
, i
, apData
[i
]);
1079 if( rc
==SQLITE_OK
){
1080 sqlite3_step(pStmt
);
1081 rc
= sqlite3_finalize(pStmt
);
1083 sqlite3_finalize(pStmt
);
1087 if( pRowid
&& rc
==SQLITE_OK
){
1088 *pRowid
= sqlite3_last_insert_rowid(db
);
1090 if( rc
!=SQLITE_OK
){
1091 tab
->zErrMsg
= sqlite3_mprintf("echo-vtab-error: %s", sqlite3_errmsg(db
));
1098 ** xBegin, xSync, xCommit and xRollback callbacks for echo module
1099 ** virtual tables. Do nothing other than add the name of the callback
1100 ** to the $::echo_module Tcl variable.
1102 static int echoTransactionCall(sqlite3_vtab
*tab
, const char *zCall
){
1104 echo_vtab
*pVtab
= (echo_vtab
*)tab
;
1105 z
= sqlite3_mprintf("echo(%s)", pVtab
->zTableName
);
1106 if( z
==0 ) return SQLITE_NOMEM
;
1107 appendToEchoModule(pVtab
->interp
, zCall
);
1108 appendToEchoModule(pVtab
->interp
, z
);
1112 static int echoBegin(sqlite3_vtab
*tab
){
1114 echo_vtab
*pVtab
= (echo_vtab
*)tab
;
1115 Tcl_Interp
*interp
= pVtab
->interp
;
1118 /* Ticket #3083 - do not start a transaction if we are already in
1120 assert( !pVtab
->inTransaction
);
1122 if( simulateVtabError(pVtab
, "xBegin") ){
1123 return SQLITE_ERROR
;
1126 rc
= echoTransactionCall(tab
, "xBegin");
1128 if( rc
==SQLITE_OK
){
1129 /* Check if the $::echo_module_begin_fail variable is defined. If it is,
1130 ** and it is set to the name of the real table underlying this virtual
1131 ** echo module table, then cause this xSync operation to fail.
1133 zVal
= Tcl_GetVar(interp
, "echo_module_begin_fail", TCL_GLOBAL_ONLY
);
1134 if( zVal
&& 0==strcmp(zVal
, pVtab
->zTableName
) ){
1138 if( rc
==SQLITE_OK
){
1139 pVtab
->inTransaction
= 1;
1143 static int echoSync(sqlite3_vtab
*tab
){
1145 echo_vtab
*pVtab
= (echo_vtab
*)tab
;
1146 Tcl_Interp
*interp
= pVtab
->interp
;
1149 /* Ticket #3083 - Only call xSync if we have previously started a
1151 assert( pVtab
->inTransaction
);
1153 if( simulateVtabError(pVtab
, "xSync") ){
1154 return SQLITE_ERROR
;
1157 rc
= echoTransactionCall(tab
, "xSync");
1159 if( rc
==SQLITE_OK
){
1160 /* Check if the $::echo_module_sync_fail variable is defined. If it is,
1161 ** and it is set to the name of the real table underlying this virtual
1162 ** echo module table, then cause this xSync operation to fail.
1164 zVal
= Tcl_GetVar(interp
, "echo_module_sync_fail", TCL_GLOBAL_ONLY
);
1165 if( zVal
&& 0==strcmp(zVal
, pVtab
->zTableName
) ){
1171 static int echoCommit(sqlite3_vtab
*tab
){
1172 echo_vtab
*pVtab
= (echo_vtab
*)tab
;
1175 /* Ticket #3083 - Only call xCommit if we have previously started
1177 assert( pVtab
->inTransaction
);
1179 if( simulateVtabError(pVtab
, "xCommit") ){
1180 return SQLITE_ERROR
;
1183 sqlite3BeginBenignMalloc();
1184 rc
= echoTransactionCall(tab
, "xCommit");
1185 sqlite3EndBenignMalloc();
1186 pVtab
->inTransaction
= 0;
1189 static int echoRollback(sqlite3_vtab
*tab
){
1191 echo_vtab
*pVtab
= (echo_vtab
*)tab
;
1193 /* Ticket #3083 - Only call xRollback if we have previously started
1195 assert( pVtab
->inTransaction
);
1197 rc
= echoTransactionCall(tab
, "xRollback");
1198 pVtab
->inTransaction
= 0;
1203 ** Implementation of "GLOB" function on the echo module. Pass
1204 ** all arguments to the ::echo_glob_overload procedure of TCL
1205 ** and return the result of that procedure as a string.
1207 static void overloadedGlobFunction(
1208 sqlite3_context
*pContext
,
1210 sqlite3_value
**apArg
1212 Tcl_Interp
*interp
= sqlite3_user_data(pContext
);
1216 Tcl_DStringInit(&str
);
1217 Tcl_DStringAppendElement(&str
, "::echo_glob_overload");
1218 for(i
=0; i
<nArg
; i
++){
1219 Tcl_DStringAppendElement(&str
, (char*)sqlite3_value_text(apArg
[i
]));
1221 rc
= Tcl_Eval(interp
, Tcl_DStringValue(&str
));
1222 Tcl_DStringFree(&str
);
1224 sqlite3_result_error(pContext
, Tcl_GetStringResult(interp
), -1);
1226 sqlite3_result_text(pContext
, Tcl_GetStringResult(interp
),
1227 -1, SQLITE_TRANSIENT
);
1229 Tcl_ResetResult(interp
);
1233 ** This is the xFindFunction implementation for the echo module.
1234 ** SQLite calls this routine when the first argument of a function
1235 ** is a column of an echo virtual table. This routine can optionally
1236 ** override the implementation of that function. It will choose to
1237 ** do so if the function is named "glob", and a TCL command named
1238 ** ::echo_glob_overload exists.
1240 static int echoFindFunction(
1243 const char *zFuncName
,
1244 void (**pxFunc
)(sqlite3_context
*,int,sqlite3_value
**),
1247 echo_vtab
*pVtab
= (echo_vtab
*)vtab
;
1248 Tcl_Interp
*interp
= pVtab
->interp
;
1250 if( strcmp(zFuncName
,"glob")!=0 ){
1253 if( Tcl_GetCommandInfo(interp
, "::echo_glob_overload", &info
)==0 ){
1256 *pxFunc
= overloadedGlobFunction
;
1261 static int echoRename(sqlite3_vtab
*vtab
, const char *zNewName
){
1263 echo_vtab
*p
= (echo_vtab
*)vtab
;
1265 if( simulateVtabError(p
, "xRename") ){
1266 return SQLITE_ERROR
;
1270 int nThis
= (int)strlen(p
->zThis
);
1271 char *zSql
= sqlite3_mprintf("ALTER TABLE %s RENAME TO %s%s",
1272 p
->zTableName
, zNewName
, &p
->zTableName
[nThis
]
1274 rc
= sqlite3_exec(p
->db
, zSql
, 0, 0, 0);
1281 static int echoSavepoint(sqlite3_vtab
*pVTab
, int iSavepoint
){
1286 static int echoRelease(sqlite3_vtab
*pVTab
, int iSavepoint
){
1291 static int echoRollbackTo(sqlite3_vtab
*pVTab
, int iSavepoint
){
1297 ** A virtual table module that merely "echos" the contents of another
1298 ** table (like an SQL VIEW).
1300 static sqlite3_module echoModule
= {
1307 echoOpen
, /* xOpen - open a cursor */
1308 echoClose
, /* xClose - close a cursor */
1309 echoFilter
, /* xFilter - configure scan constraints */
1310 echoNext
, /* xNext - advance a cursor */
1312 echoColumn
, /* xColumn - read data */
1313 echoRowid
, /* xRowid - read data */
1314 echoUpdate
, /* xUpdate - write data */
1315 echoBegin
, /* xBegin - begin transaction */
1316 echoSync
, /* xSync - sync transaction */
1317 echoCommit
, /* xCommit - commit transaction */
1318 echoRollback
, /* xRollback - rollback transaction */
1319 echoFindFunction
, /* xFindFunction - function overloading */
1320 echoRename
/* xRename - rename the table */
1323 static sqlite3_module echoModuleV2
= {
1330 echoOpen
, /* xOpen - open a cursor */
1331 echoClose
, /* xClose - close a cursor */
1332 echoFilter
, /* xFilter - configure scan constraints */
1333 echoNext
, /* xNext - advance a cursor */
1335 echoColumn
, /* xColumn - read data */
1336 echoRowid
, /* xRowid - read data */
1337 echoUpdate
, /* xUpdate - write data */
1338 echoBegin
, /* xBegin - begin transaction */
1339 echoSync
, /* xSync - sync transaction */
1340 echoCommit
, /* xCommit - commit transaction */
1341 echoRollback
, /* xRollback - rollback transaction */
1342 echoFindFunction
, /* xFindFunction - function overloading */
1343 echoRename
, /* xRename - rename the table */
1350 ** Decode a pointer to an sqlite3 object.
1352 extern int getDbPointer(Tcl_Interp
*interp
, const char *zA
, sqlite3
**ppDb
);
1353 extern const char *sqlite3ErrName(int);
1355 static void moduleDestroy(void *p
){
1356 EchoModule
*pMod
= (EchoModule
*)p
;
1357 sqlite3_create_function(pMod
->db
, "function_that_does_not_exist_0982ma98",
1358 SQLITE_ANY
, 1, 0, 0, 0, 0);
1363 ** Register the echo virtual table module.
1365 static int SQLITE_TCLAPI
register_echo_module(
1366 ClientData clientData
, /* Pointer to sqlite3_enable_XXX function */
1367 Tcl_Interp
*interp
, /* The TCL interpreter that invoked this command */
1368 int objc
, /* Number of arguments */
1369 Tcl_Obj
*CONST objv
[] /* Command arguments */
1375 Tcl_WrongNumArgs(interp
, 1, objv
, "DB");
1378 if( getDbPointer(interp
, Tcl_GetString(objv
[1]), &db
) ) return TCL_ERROR
;
1380 /* Virtual table module "echo" */
1381 pMod
= sqlite3_malloc(sizeof(EchoModule
));
1382 pMod
->interp
= interp
;
1384 rc
= sqlite3_create_module_v2(
1385 db
, "echo", &echoModule
, (void*)pMod
, moduleDestroy
1388 /* Virtual table module "echo_v2" */
1389 if( rc
==SQLITE_OK
){
1390 pMod
= sqlite3_malloc(sizeof(EchoModule
));
1391 pMod
->interp
= interp
;
1393 rc
= sqlite3_create_module_v2(db
, "echo_v2",
1394 &echoModuleV2
, (void*)pMod
, moduleDestroy
1398 Tcl_SetResult(interp
, (char *)sqlite3ErrName(rc
), TCL_STATIC
);
1403 ** Tcl interface to sqlite3_declare_vtab, invoked as follows from Tcl:
1405 ** sqlite3_declare_vtab DB SQL
1407 static int SQLITE_TCLAPI
declare_vtab(
1408 ClientData clientData
, /* Pointer to sqlite3_enable_XXX function */
1409 Tcl_Interp
*interp
, /* The TCL interpreter that invoked this command */
1410 int objc
, /* Number of arguments */
1411 Tcl_Obj
*CONST objv
[] /* Command arguments */
1416 Tcl_WrongNumArgs(interp
, 1, objv
, "DB SQL");
1419 if( getDbPointer(interp
, Tcl_GetString(objv
[1]), &db
) ) return TCL_ERROR
;
1420 rc
= sqlite3_declare_vtab(db
, Tcl_GetString(objv
[2]));
1421 if( rc
!=SQLITE_OK
){
1422 Tcl_SetResult(interp
, (char *)sqlite3_errmsg(db
), TCL_VOLATILE
);
1428 #endif /* ifndef SQLITE_OMIT_VIRTUALTABLE */
1431 ** Register commands with the TCL interpreter.
1433 int Sqlitetest8_Init(Tcl_Interp
*interp
){
1434 #ifndef SQLITE_OMIT_VIRTUALTABLE
1437 Tcl_ObjCmdProc
*xProc
;
1440 { "register_echo_module", register_echo_module
, 0 },
1441 { "sqlite3_declare_vtab", declare_vtab
, 0 },
1444 for(i
=0; i
<sizeof(aObjCmd
)/sizeof(aObjCmd
[0]); i
++){
1445 Tcl_CreateObjCommand(interp
, aObjCmd
[i
].zName
,
1446 aObjCmd
[i
].xProc
, aObjCmd
[i
].clientData
, 0);