First public contribution.
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 ** $Id: test8.c,v 1.75 2008/08/31 00:29:08 shane Exp $
18 #include "sqliteInt.h"
23 #ifndef SQLITE_OMIT_VIRTUALTABLE
25 typedef struct echo_vtab echo_vtab;
26 typedef struct echo_cursor echo_cursor;
29 ** The test module defined in this file uses four global Tcl variables to
30 ** commicate with test-scripts:
33 ** $::echo_module_sync_fail
34 ** $::echo_module_begin_fail
35 ** $::echo_module_cost
37 ** The variable ::echo_module is a list. Each time one of the following
38 ** methods is called, one or more elements are appended to the list.
39 ** This is used for automated testing of virtual table modules.
41 ** The ::echo_module_sync_fail variable is set by test scripts and read
42 ** by code in this file. If it is set to the name of a real table in the
43 ** the database, then all xSync operations on echo virtual tables that
44 ** use the named table as a backing store will fail.
48 ** Errors can be provoked within the following echo virtual table methods:
50 ** xBestIndex xOpen xFilter xNext
51 ** xColumn xRowid xUpdate xSync
54 ** This is done by setting the global tcl variable:
56 ** echo_module_fail($method,$tbl)
58 ** where $method is set to the name of the virtual table method to fail
59 ** (i.e. "xBestIndex") and $tbl is the name of the table being echoed (not
60 ** the name of the virtual table, the name of the underlying real table).
64 ** An echo virtual-table object.
66 ** echo.vtab.aIndex is an array of booleans. The nth entry is true if
67 ** the nth column of the real table is the left-most column of an index
68 ** (implicit or otherwise). In other words, if SQLite can optimize
69 ** a query like "SELECT * FROM real_table WHERE col = ?".
71 ** Member variable aCol[] contains copies of the column names of the real
76 Tcl_Interp *interp; /* Tcl interpreter containing debug variables */
77 sqlite3 *db; /* Database connection */
80 int inTransaction; /* True if within a transaction */
81 char *zThis; /* Name of the echo table */
82 char *zTableName; /* Name of the real table */
83 char *zLogName; /* Name of the log table */
84 int nCol; /* Number of columns in the real table */
85 int *aIndex; /* Array of size nCol. True if column has an index */
86 char **aCol; /* Array of size nCol. Column names */
89 /* An echo cursor object */
91 sqlite3_vtab_cursor base;
95 static int simulateVtabError(echo_vtab *p, const char *zMethod){
99 sqlite3_snprintf(127, zVarname, "echo_module_fail(%s,%s)", zMethod, p->zTableName);
100 zErr = Tcl_GetVar(p->interp, zVarname, TCL_GLOBAL_ONLY);
102 p->base.zErrMsg = sqlite3_mprintf("echo-vtab-error: %s", zErr);
108 ** Convert an SQL-style quoted string into a normal string by removing
109 ** the quote characters. The conversion is done in-place. If the
110 ** input does not begin with a quote character, then this routine
120 static void dequoteString(char *z){
128 case '`': break; /* For MySQL compatibility */
129 case '[': quote = ']'; break; /* For MS SqlServer compatibility */
132 for(i=1, j=0; z[i]; i++){
148 ** Retrieve the column names for the table named zTab via database
149 ** connection db. SQLITE_OK is returned on success, or an sqlite error
152 ** If successful, the number of columns is written to *pnCol. *paCol is
153 ** set to point at sqlite3_malloc()'d space containing the array of
154 ** nCol column names. The caller is responsible for calling sqlite3_free
157 static int getColumnNames(
165 sqlite3_stmt *pStmt = 0;
169 /* Prepare the statement "SELECT * FROM <tbl>". The column names
170 ** of the result set of the compiled SELECT will be the same as
171 ** the column names of table <tbl>.
173 zSql = sqlite3_mprintf("SELECT * FROM %Q", zTab);
178 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
185 nCol = sqlite3_column_count(pStmt);
187 /* Figure out how much space to allocate for the array of column names
188 ** (including space for the strings themselves). Then allocate it.
190 nBytes = sizeof(char *) * nCol;
191 for(ii=0; ii<nCol; ii++){
192 const char *zName = sqlite3_column_name(pStmt, ii);
197 nBytes += strlen(zName)+1;
199 aCol = (char **)sqlite3MallocZero(nBytes);
205 /* Copy the column names into the allocated space and set up the
206 ** pointers in the aCol[] array.
208 zSpace = (char *)(&aCol[nCol]);
209 for(ii=0; ii<nCol; ii++){
211 zSpace += sprintf(zSpace, "%s", sqlite3_column_name(pStmt, ii));
214 assert( (zSpace-nBytes)==(char *)aCol );
221 sqlite3_finalize(pStmt);
226 ** Parameter zTab is the name of a table in database db with nCol
227 ** columns. This function allocates an array of integers nCol in
228 ** size and populates it according to any implicit or explicit
229 ** indices on table zTab.
231 ** If successful, SQLITE_OK is returned and *paIndex set to point
232 ** at the allocated array. Otherwise, an error code is returned.
234 ** See comments associated with the member variable aIndex above
235 ** "struct echo_vtab" for details of the contents of the array.
237 static int getIndexArray(
238 sqlite3 *db, /* Database connection */
239 const char *zTab, /* Name of table in database db */
243 sqlite3_stmt *pStmt = 0;
248 /* Allocate space for the index array */
249 aIndex = (int *)sqlite3MallocZero(sizeof(int) * nCol);
252 goto get_index_array_out;
255 /* Compile an sqlite pragma to loop through all indices on table zTab */
256 zSql = sqlite3MPrintf(0, "PRAGMA index_list(%s)", zTab);
259 goto get_index_array_out;
261 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
264 /* For each index, figure out the left-most column and set the
265 ** corresponding entry in aIndex[] to 1.
267 while( pStmt && sqlite3_step(pStmt)==SQLITE_ROW ){
268 const char *zIdx = (const char *)sqlite3_column_text(pStmt, 1);
269 sqlite3_stmt *pStmt2 = 0;
270 zSql = sqlite3MPrintf(0, "PRAGMA index_info(%s)", zIdx);
273 goto get_index_array_out;
275 rc = sqlite3_prepare(db, zSql, -1, &pStmt2, 0);
277 if( pStmt2 && sqlite3_step(pStmt2)==SQLITE_ROW ){
278 int cid = sqlite3_column_int(pStmt2, 1);
279 assert( cid>=0 && cid<nCol );
283 rc = sqlite3_finalize(pStmt2);
286 goto get_index_array_out;
293 int rc2 = sqlite3_finalize(pStmt);
299 sqlite3_free(aIndex);
307 ** Global Tcl variable $echo_module is a list. This routine appends
308 ** the string element zArg to that list in interpreter interp.
310 static void appendToEchoModule(Tcl_Interp *interp, const char *zArg){
311 int flags = (TCL_APPEND_VALUE | TCL_LIST_ELEMENT | TCL_GLOBAL_ONLY);
312 Tcl_SetVar(interp, "echo_module", (zArg?zArg:""), flags);
316 ** This function is called from within the echo-modules xCreate and
317 ** xConnect methods. The argc and argv arguments are copies of those
318 ** passed to the calling method. This function is responsible for
319 ** calling sqlite3_declare_vtab() to declare the schema of the virtual
320 ** table being created or connected.
322 ** If the constructor was passed just one argument, i.e.:
324 ** CREATE TABLE t1 AS echo(t2);
326 ** Then t2 is assumed to be the name of a *real* database table. The
327 ** schema of the virtual table is declared by passing a copy of the
328 ** CREATE TABLE statement for the real table to sqlite3_declare_vtab().
329 ** Hence, the virtual table should have exactly the same column names and
330 ** types as the real table.
332 static int echoDeclareVtab(
338 if( pVtab->zTableName ){
339 sqlite3_stmt *pStmt = 0;
340 rc = sqlite3_prepare(db,
341 "SELECT sql FROM sqlite_master WHERE type = 'table' AND name = ?",
344 sqlite3_bind_text(pStmt, 1, pVtab->zTableName, -1, 0);
345 if( sqlite3_step(pStmt)==SQLITE_ROW ){
347 const char *zCreateTable = (const char *)sqlite3_column_text(pStmt, 0);
348 rc = sqlite3_declare_vtab(db, zCreateTable);
349 rc2 = sqlite3_finalize(pStmt);
354 rc = sqlite3_finalize(pStmt);
360 rc = getColumnNames(db, pVtab->zTableName, &pVtab->aCol, &pVtab->nCol);
363 rc = getIndexArray(db, pVtab->zTableName, pVtab->nCol, &pVtab->aIndex);
372 ** This function frees all runtime structures associated with the virtual
375 static int echoDestructor(sqlite3_vtab *pVtab){
376 echo_vtab *p = (echo_vtab*)pVtab;
377 sqlite3_free(p->aIndex);
378 sqlite3_free(p->aCol);
379 sqlite3_free(p->zThis);
380 sqlite3_free(p->zTableName);
381 sqlite3_free(p->zLogName);
386 typedef struct EchoModule EchoModule;
392 ** This function is called to do the work of the xConnect() method -
393 ** to allocate the required in-memory structures for a newly connected
396 static int echoConstructor(
399 int argc, const char *const*argv,
400 sqlite3_vtab **ppVtab,
407 /* Allocate the sqlite3_vtab/echo_vtab structure itself */
408 pVtab = sqlite3MallocZero( sizeof(*pVtab) );
412 pVtab->interp = ((EchoModule *)pAux)->interp;
415 /* Allocate echo_vtab.zThis */
416 pVtab->zThis = sqlite3MPrintf(0, "%s", argv[2]);
418 echoDestructor((sqlite3_vtab *)pVtab);
422 /* Allocate echo_vtab.zTableName */
424 pVtab->zTableName = sqlite3MPrintf(0, "%s", argv[3]);
425 dequoteString(pVtab->zTableName);
426 if( pVtab->zTableName && pVtab->zTableName[0]=='*' ){
427 char *z = sqlite3MPrintf(0, "%s%s", argv[2], &(pVtab->zTableName[1]));
428 sqlite3_free(pVtab->zTableName);
429 pVtab->zTableName = z;
430 pVtab->isPattern = 1;
432 if( !pVtab->zTableName ){
433 echoDestructor((sqlite3_vtab *)pVtab);
438 /* Log the arguments to this function to Tcl var ::echo_module */
439 for(i=0; i<argc; i++){
440 appendToEchoModule(pVtab->interp, argv[i]);
443 /* Invoke sqlite3_declare_vtab and set up other members of the echo_vtab
444 ** structure. If an error occurs, delete the sqlite3_vtab structure and
445 ** return an error code.
447 rc = echoDeclareVtab(pVtab, db);
449 echoDestructor((sqlite3_vtab *)pVtab);
453 /* Success. Set *ppVtab and return */
454 *ppVtab = &pVtab->base;
459 ** Echo virtual table module xCreate method.
461 static int echoCreate(
464 int argc, const char *const*argv,
465 sqlite3_vtab **ppVtab,
469 appendToEchoModule(((EchoModule *)pAux)->interp, "xCreate");
470 rc = echoConstructor(db, pAux, argc, argv, ppVtab, pzErr);
472 /* If there were two arguments passed to the module at the SQL level
473 ** (i.e. "CREATE VIRTUAL TABLE tbl USING echo(arg1, arg2)"), then
474 ** the second argument is used as a table name. Attempt to create
475 ** such a table with a single column, "logmsg". This table will
476 ** be used to log calls to the xUpdate method. It will be deleted
477 ** when the virtual table is DROPed.
479 ** Note: The main point of this is to test that we can drop tables
480 ** from within an xDestroy method call.
482 if( rc==SQLITE_OK && argc==5 ){
484 echo_vtab *pVtab = *(echo_vtab **)ppVtab;
485 pVtab->zLogName = sqlite3MPrintf(0, "%s", argv[4]);
486 zSql = sqlite3MPrintf(0, "CREATE TABLE %Q(logmsg)", pVtab->zLogName);
487 rc = sqlite3_exec(db, zSql, 0, 0, 0);
490 *pzErr = sqlite3DbStrDup(0, sqlite3_errmsg(db));
494 if( *ppVtab && rc!=SQLITE_OK ){
495 echoDestructor(*ppVtab);
500 (*(echo_vtab**)ppVtab)->inTransaction = 1;
507 ** Echo virtual table module xConnect method.
509 static int echoConnect(
512 int argc, const char *const*argv,
513 sqlite3_vtab **ppVtab,
516 appendToEchoModule(((EchoModule *)pAux)->interp, "xConnect");
517 return echoConstructor(db, pAux, argc, argv, ppVtab, pzErr);
521 ** Echo virtual table module xDisconnect method.
523 static int echoDisconnect(sqlite3_vtab *pVtab){
524 appendToEchoModule(((echo_vtab *)pVtab)->interp, "xDisconnect");
525 return echoDestructor(pVtab);
529 ** Echo virtual table module xDestroy method.
531 static int echoDestroy(sqlite3_vtab *pVtab){
533 echo_vtab *p = (echo_vtab *)pVtab;
534 appendToEchoModule(((echo_vtab *)pVtab)->interp, "xDestroy");
536 /* Drop the "log" table, if one exists (see echoCreate() for details) */
537 if( p && p->zLogName ){
539 zSql = sqlite3MPrintf(0, "DROP TABLE %Q", p->zLogName);
540 rc = sqlite3_exec(p->db, zSql, 0, 0, 0);
545 rc = echoDestructor(pVtab);
551 ** Echo virtual table module xOpen method.
553 static int echoOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
555 if( simulateVtabError((echo_vtab *)pVTab, "xOpen") ){
558 pCur = sqlite3MallocZero(sizeof(echo_cursor));
559 *ppCursor = (sqlite3_vtab_cursor *)pCur;
560 return (pCur ? SQLITE_OK : SQLITE_NOMEM);
564 ** Echo virtual table module xClose method.
566 static int echoClose(sqlite3_vtab_cursor *cur){
568 echo_cursor *pCur = (echo_cursor *)cur;
569 sqlite3_stmt *pStmt = pCur->pStmt;
572 rc = sqlite3_finalize(pStmt);
577 ** Return non-zero if the cursor does not currently point to a valid record
578 ** (i.e if the scan has finished), or zero otherwise.
580 static int echoEof(sqlite3_vtab_cursor *cur){
581 return (((echo_cursor *)cur)->pStmt ? 0 : 1);
585 ** Echo virtual table module xNext method.
587 static int echoNext(sqlite3_vtab_cursor *cur){
589 echo_cursor *pCur = (echo_cursor *)cur;
591 if( simulateVtabError((echo_vtab *)(cur->pVtab), "xNext") ){
596 rc = sqlite3_step(pCur->pStmt);
597 if( rc==SQLITE_ROW ){
600 rc = sqlite3_finalize(pCur->pStmt);
609 ** Echo virtual table module xColumn method.
611 static int echoColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){
613 sqlite3_stmt *pStmt = ((echo_cursor *)cur)->pStmt;
615 if( simulateVtabError((echo_vtab *)(cur->pVtab), "xColumn") ){
620 sqlite3_result_null(ctx);
622 assert( sqlite3_data_count(pStmt)>iCol );
623 sqlite3_result_value(ctx, sqlite3_column_value(pStmt, iCol));
629 ** Echo virtual table module xRowid method.
631 static int echoRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){
632 sqlite3_stmt *pStmt = ((echo_cursor *)cur)->pStmt;
634 if( simulateVtabError((echo_vtab *)(cur->pVtab), "xRowid") ){
638 *pRowid = sqlite3_column_int64(pStmt, 0);
643 ** Compute a simple hash of the null terminated string zString.
645 ** This module uses only sqlite3_index_info.idxStr, not
646 ** sqlite3_index_info.idxNum. So to test idxNum, when idxStr is set
647 ** in echoBestIndex(), idxNum is set to the corresponding hash value.
648 ** In echoFilter(), code assert()s that the supplied idxNum value is
649 ** indeed the hash of the supplied idxStr.
651 static int hashString(const char *zString){
654 for(ii=0; zString[ii]; ii++){
655 val = (val << 3) + (int)zString[ii];
661 ** Echo virtual table module xFilter method.
663 static int echoFilter(
664 sqlite3_vtab_cursor *pVtabCursor,
665 int idxNum, const char *idxStr,
666 int argc, sqlite3_value **argv
671 echo_cursor *pCur = (echo_cursor *)pVtabCursor;
672 echo_vtab *pVtab = (echo_vtab *)pVtabCursor->pVtab;
673 sqlite3 *db = pVtab->db;
675 if( simulateVtabError(pVtab, "xFilter") ){
679 /* Check that idxNum matches idxStr */
680 assert( idxNum==hashString(idxStr) );
682 /* Log arguments to the ::echo_module Tcl variable */
683 appendToEchoModule(pVtab->interp, "xFilter");
684 appendToEchoModule(pVtab->interp, idxStr);
685 for(i=0; i<argc; i++){
686 appendToEchoModule(pVtab->interp, (const char*)sqlite3_value_text(argv[i]));
689 sqlite3_finalize(pCur->pStmt);
692 /* Prepare the SQL statement created by echoBestIndex and bind the
693 ** runtime parameters passed to this function to it.
695 rc = sqlite3_prepare(db, idxStr, -1, &pCur->pStmt, 0);
696 assert( pCur->pStmt || rc!=SQLITE_OK );
697 for(i=0; rc==SQLITE_OK && i<argc; i++){
698 sqlite3_bind_value(pCur->pStmt, i+1, argv[i]);
701 /* If everything was successful, advance to the first row of the scan */
703 rc = echoNext(pVtabCursor);
711 ** A helper function used by echoUpdate() and echoBestIndex() for
712 ** manipulating strings in concert with the sqlite3_mprintf() function.
714 ** Parameter pzStr points to a pointer to a string allocated with
715 ** sqlite3_mprintf. The second parameter, zAppend, points to another
716 ** string. The two strings are concatenated together and *pzStr
717 ** set to point at the result. The initial buffer pointed to by *pzStr
718 ** is deallocated via sqlite3_free().
720 ** If the third argument, doFree, is true, then sqlite3_free() is
721 ** also called to free the buffer pointed to by zAppend.
723 static void string_concat(char **pzStr, char *zAppend, int doFree, int *pRc){
725 if( !zAppend && doFree && *pRc==SQLITE_OK ){
728 if( *pRc!=SQLITE_OK ){
734 zIn = sqlite3_mprintf("%s%s", zIn, zAppend);
737 zIn = sqlite3_mprintf("%s", zAppend);
745 sqlite3_free(zAppend);
750 ** The echo module implements the subset of query constraints and sort
751 ** orders that may take advantage of SQLite indices on the underlying
752 ** real table. For example, if the real table is declared as:
754 ** CREATE TABLE real(a, b, c);
755 ** CREATE INDEX real_index ON real(b);
757 ** then the echo module handles WHERE or ORDER BY clauses that refer
758 ** to the column "b", but not "a" or "c". If a multi-column index is
759 ** present, only its left most column is considered.
761 ** This xBestIndex method encodes the proposed search strategy as
762 ** an SQL query on the real table underlying the virtual echo module
763 ** table and stores the query in sqlite3_index_info.idxStr. The SQL
764 ** statement is of the form:
766 ** SELECT rowid, * FROM <real-table> ?<where-clause>? ?<order-by-clause>?
768 ** where the <where-clause> and <order-by-clause> are determined
769 ** by the contents of the structure pointed to by the pIdxInfo argument.
771 static int echoBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){
776 const char *zSep = "WHERE";
777 echo_vtab *pVtab = (echo_vtab *)tab;
778 sqlite3_stmt *pStmt = 0;
779 Tcl_Interp *interp = pVtab->interp;
786 int isIgnoreUsable = 0;
787 if( Tcl_GetVar(interp, "echo_module_ignore_usable", TCL_GLOBAL_ONLY) ){
791 if( simulateVtabError(pVtab, "xBestIndex") ){
795 /* Determine the number of rows in the table and store this value in local
796 ** variable nRow. The 'estimated-cost' of the scan will be the number of
797 ** rows in the table for a linear scan, or the log (base 2) of the
798 ** number of rows if the proposed scan uses an index.
800 if( Tcl_GetVar(interp, "echo_module_cost", TCL_GLOBAL_ONLY) ){
801 cost = atof(Tcl_GetVar(interp, "echo_module_cost", TCL_GLOBAL_ONLY));
804 zQuery = sqlite3_mprintf("SELECT count(*) FROM %Q", pVtab->zTableName);
808 rc = sqlite3_prepare(pVtab->db, zQuery, -1, &pStmt, 0);
809 sqlite3_free(zQuery);
814 nRow = sqlite3_column_int(pStmt, 0);
815 rc = sqlite3_finalize(pStmt);
821 zQuery = sqlite3_mprintf("SELECT rowid, * FROM %Q", pVtab->zTableName);
825 for(ii=0; ii<pIdxInfo->nConstraint; ii++){
826 const struct sqlite3_index_constraint *pConstraint;
827 struct sqlite3_index_constraint_usage *pUsage;
830 pConstraint = &pIdxInfo->aConstraint[ii];
831 pUsage = &pIdxInfo->aConstraintUsage[ii];
833 if( !isIgnoreUsable && !pConstraint->usable ) continue;
835 iCol = pConstraint->iColumn;
836 if( pVtab->aIndex[iCol] || iCol<0 ){
837 char *zCol = pVtab->aCol[iCol];
843 switch( pConstraint->op ){
844 case SQLITE_INDEX_CONSTRAINT_EQ:
846 case SQLITE_INDEX_CONSTRAINT_LT:
848 case SQLITE_INDEX_CONSTRAINT_GT:
850 case SQLITE_INDEX_CONSTRAINT_LE:
852 case SQLITE_INDEX_CONSTRAINT_GE:
854 case SQLITE_INDEX_CONSTRAINT_MATCH:
858 zNew = sqlite3_mprintf(" %s %s LIKE (SELECT '%%'||?||'%%')",
861 zNew = sqlite3_mprintf(" %s %s %s ?", zSep, zCol, zOp);
863 string_concat(&zQuery, zNew, 1, &rc);
866 pUsage->argvIndex = ++nArg;
871 /* If there is only one term in the ORDER BY clause, and it is
872 ** on a column that this virtual table has an index for, then consume
873 ** the ORDER BY clause.
875 if( pIdxInfo->nOrderBy==1 && pVtab->aIndex[pIdxInfo->aOrderBy->iColumn] ){
876 int iCol = pIdxInfo->aOrderBy->iColumn;
877 char *zCol = pVtab->aCol[iCol];
878 char *zDir = pIdxInfo->aOrderBy->desc?"DESC":"ASC";
882 zNew = sqlite3_mprintf(" ORDER BY %s %s", zCol, zDir);
883 string_concat(&zQuery, zNew, 1, &rc);
884 pIdxInfo->orderByConsumed = 1;
887 appendToEchoModule(pVtab->interp, "xBestIndex");;
888 appendToEchoModule(pVtab->interp, zQuery);
893 pIdxInfo->idxNum = hashString(zQuery);
894 pIdxInfo->idxStr = zQuery;
895 pIdxInfo->needToFreeIdxStr = 1;
897 pIdxInfo->estimatedCost = cost;
899 /* Approximation of log2(nRow). */
900 for( ii=0; ii<(sizeof(int)*8); ii++ ){
901 if( nRow & (1<<ii) ){
902 pIdxInfo->estimatedCost = (double)ii;
906 pIdxInfo->estimatedCost = (double)nRow;
912 ** The xUpdate method for echo module virtual tables.
914 ** apData[0] apData[1] apData[2..]
918 ** INTEGER NULL (nCol args) UPDATE (do not set rowid)
919 ** INTEGER INTEGER (nCol args) UPDATE (with SET rowid = <arg1>)
921 ** NULL NULL (nCol args) INSERT INTO (automatic rowid value)
922 ** NULL INTEGER (nCol args) INSERT (incl. rowid value)
928 sqlite3_value **apData,
931 echo_vtab *pVtab = (echo_vtab *)tab;
932 sqlite3 *db = pVtab->db;
936 char *z = 0; /* SQL statement to execute */
937 int bindArgZero = 0; /* True to bind apData[0] to sql var no. nData */
938 int bindArgOne = 0; /* True to bind apData[1] to sql var no. 1 */
939 int i; /* Counter variable used by for loops */
941 assert( nData==pVtab->nCol+2 || nData==1 );
943 /* Ticket #3083 - make sure we always start a transaction prior to
944 ** making any changes to a virtual table */
945 assert( pVtab->inTransaction );
947 if( simulateVtabError(pVtab, "xUpdate") ){
951 /* If apData[0] is an integer and nData>1 then do an UPDATE */
952 if( nData>1 && sqlite3_value_type(apData[0])==SQLITE_INTEGER ){
954 z = sqlite3_mprintf("UPDATE %Q", pVtab->zTableName);
959 bindArgOne = (apData[1] && sqlite3_value_type(apData[1])==SQLITE_INTEGER);
963 string_concat(&z, " SET rowid=?1 ", 0, &rc);
966 for(i=2; i<nData; i++){
967 if( apData[i]==0 ) continue;
968 string_concat(&z, sqlite3_mprintf(
969 "%s %Q=?%d", zSep, pVtab->aCol[i-2], i), 1, &rc);
972 string_concat(&z, sqlite3_mprintf(" WHERE rowid=?%d", nData), 1, &rc);
975 /* If apData[0] is an integer and nData==1 then do a DELETE */
976 else if( nData==1 && sqlite3_value_type(apData[0])==SQLITE_INTEGER ){
977 z = sqlite3_mprintf("DELETE FROM %Q WHERE rowid = ?1", pVtab->zTableName);
984 /* If the first argument is NULL and there are more than two args, INSERT */
985 else if( nData>2 && sqlite3_value_type(apData[0])==SQLITE_NULL ){
990 zInsert = sqlite3_mprintf("INSERT INTO %Q (", pVtab->zTableName);
994 if( sqlite3_value_type(apData[1])==SQLITE_INTEGER ){
996 zValues = sqlite3_mprintf("?");
997 string_concat(&zInsert, "rowid", 0, &rc);
1000 assert((pVtab->nCol+2)==nData);
1001 for(ii=2; ii<nData; ii++){
1002 string_concat(&zInsert,
1003 sqlite3_mprintf("%s%Q", zValues?", ":"", pVtab->aCol[ii-2]), 1, &rc);
1004 string_concat(&zValues,
1005 sqlite3_mprintf("%s?%d", zValues?", ":"", ii), 1, &rc);
1008 string_concat(&z, zInsert, 1, &rc);
1009 string_concat(&z, ") VALUES(", 0, &rc);
1010 string_concat(&z, zValues, 1, &rc);
1011 string_concat(&z, ")", 0, &rc);
1014 /* Anything else is an error */
1017 return SQLITE_ERROR;
1020 if( rc==SQLITE_OK ){
1021 rc = sqlite3_prepare(db, z, -1, &pStmt, 0);
1023 assert( rc!=SQLITE_OK || pStmt );
1025 if( rc==SQLITE_OK ) {
1027 sqlite3_bind_value(pStmt, nData, apData[0]);
1030 sqlite3_bind_value(pStmt, 1, apData[1]);
1032 for(i=2; i<nData && rc==SQLITE_OK; i++){
1033 if( apData[i] ) rc = sqlite3_bind_value(pStmt, i, apData[i]);
1035 if( rc==SQLITE_OK ){
1036 sqlite3_step(pStmt);
1037 rc = sqlite3_finalize(pStmt);
1039 sqlite3_finalize(pStmt);
1043 if( pRowid && rc==SQLITE_OK ){
1044 *pRowid = sqlite3_last_insert_rowid(db);
1046 if( rc!=SQLITE_OK ){
1047 tab->zErrMsg = sqlite3_mprintf("echo-vtab-error: %s", sqlite3_errmsg(db));
1054 ** xBegin, xSync, xCommit and xRollback callbacks for echo module
1055 ** virtual tables. Do nothing other than add the name of the callback
1056 ** to the $::echo_module Tcl variable.
1058 static int echoTransactionCall(sqlite3_vtab *tab, const char *zCall){
1060 echo_vtab *pVtab = (echo_vtab *)tab;
1061 z = sqlite3_mprintf("echo(%s)", pVtab->zTableName);
1062 if( z==0 ) return SQLITE_NOMEM;
1063 appendToEchoModule(pVtab->interp, zCall);
1064 appendToEchoModule(pVtab->interp, z);
1068 static int echoBegin(sqlite3_vtab *tab){
1070 echo_vtab *pVtab = (echo_vtab *)tab;
1071 Tcl_Interp *interp = pVtab->interp;
1074 /* Ticket #3083 - do not start a transaction if we are already in
1076 assert( !pVtab->inTransaction );
1078 if( simulateVtabError(pVtab, "xBegin") ){
1079 return SQLITE_ERROR;
1082 rc = echoTransactionCall(tab, "xBegin");
1084 if( rc==SQLITE_OK ){
1085 /* Check if the $::echo_module_begin_fail variable is defined. If it is,
1086 ** and it is set to the name of the real table underlying this virtual
1087 ** echo module table, then cause this xSync operation to fail.
1089 zVal = Tcl_GetVar(interp, "echo_module_begin_fail", TCL_GLOBAL_ONLY);
1090 if( zVal && 0==strcmp(zVal, pVtab->zTableName) ){
1094 if( rc==SQLITE_OK ){
1095 pVtab->inTransaction = 1;
1099 static int echoSync(sqlite3_vtab *tab){
1101 echo_vtab *pVtab = (echo_vtab *)tab;
1102 Tcl_Interp *interp = pVtab->interp;
1105 /* Ticket #3083 - Only call xSync if we have previously started a
1107 assert( pVtab->inTransaction );
1109 if( simulateVtabError(pVtab, "xSync") ){
1110 return SQLITE_ERROR;
1113 rc = echoTransactionCall(tab, "xSync");
1115 if( rc==SQLITE_OK ){
1116 /* Check if the $::echo_module_sync_fail variable is defined. If it is,
1117 ** and it is set to the name of the real table underlying this virtual
1118 ** echo module table, then cause this xSync operation to fail.
1120 zVal = Tcl_GetVar(interp, "echo_module_sync_fail", TCL_GLOBAL_ONLY);
1121 if( zVal && 0==strcmp(zVal, pVtab->zTableName) ){
1127 static int echoCommit(sqlite3_vtab *tab){
1128 echo_vtab *pVtab = (echo_vtab*)tab;
1131 /* Ticket #3083 - Only call xCommit if we have previously started
1133 assert( pVtab->inTransaction );
1135 if( simulateVtabError(pVtab, "xCommit") ){
1136 return SQLITE_ERROR;
1139 sqlite3BeginBenignMalloc();
1140 rc = echoTransactionCall(tab, "xCommit");
1141 sqlite3EndBenignMalloc();
1142 pVtab->inTransaction = 0;
1145 static int echoRollback(sqlite3_vtab *tab){
1147 echo_vtab *pVtab = (echo_vtab*)tab;
1149 /* Ticket #3083 - Only call xRollback if we have previously started
1151 assert( pVtab->inTransaction );
1153 rc = echoTransactionCall(tab, "xRollback");
1154 pVtab->inTransaction = 0;
1159 ** Implementation of "GLOB" function on the echo module. Pass
1160 ** all arguments to the ::echo_glob_overload procedure of TCL
1161 ** and return the result of that procedure as a string.
1163 static void overloadedGlobFunction(
1164 sqlite3_context *pContext,
1166 sqlite3_value **apArg
1168 Tcl_Interp *interp = sqlite3_user_data(pContext);
1172 Tcl_DStringInit(&str);
1173 Tcl_DStringAppendElement(&str, "::echo_glob_overload");
1174 for(i=0; i<nArg; i++){
1175 Tcl_DStringAppendElement(&str, (char*)sqlite3_value_text(apArg[i]));
1177 rc = Tcl_Eval(interp, Tcl_DStringValue(&str));
1178 Tcl_DStringFree(&str);
1180 sqlite3_result_error(pContext, Tcl_GetStringResult(interp), -1);
1182 sqlite3_result_text(pContext, Tcl_GetStringResult(interp),
1183 -1, SQLITE_TRANSIENT);
1185 Tcl_ResetResult(interp);
1189 ** This is the xFindFunction implementation for the echo module.
1190 ** SQLite calls this routine when the first argument of a function
1191 ** is a column of an echo virtual table. This routine can optionally
1192 ** override the implementation of that function. It will choose to
1193 ** do so if the function is named "glob", and a TCL command named
1194 ** ::echo_glob_overload exists.
1196 static int echoFindFunction(
1199 const char *zFuncName,
1200 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**),
1203 echo_vtab *pVtab = (echo_vtab *)vtab;
1204 Tcl_Interp *interp = pVtab->interp;
1206 if( strcmp(zFuncName,"glob")!=0 ){
1209 if( Tcl_GetCommandInfo(interp, "::echo_glob_overload", &info)==0 ){
1212 *pxFunc = overloadedGlobFunction;
1217 static int echoRename(sqlite3_vtab *vtab, const char *zNewName){
1219 echo_vtab *p = (echo_vtab *)vtab;
1221 if( simulateVtabError(p, "xRename") ){
1222 return SQLITE_ERROR;
1226 int nThis = strlen(p->zThis);
1227 char *zSql = sqlite3MPrintf(0, "ALTER TABLE %s RENAME TO %s%s",
1228 p->zTableName, zNewName, &p->zTableName[nThis]
1230 rc = sqlite3_exec(p->db, zSql, 0, 0, 0);
1238 ** A virtual table module that merely "echos" the contents of another
1239 ** table (like an SQL VIEW).
1241 static sqlite3_module echoModule = {
1248 echoOpen, /* xOpen - open a cursor */
1249 echoClose, /* xClose - close a cursor */
1250 echoFilter, /* xFilter - configure scan constraints */
1251 echoNext, /* xNext - advance a cursor */
1253 echoColumn, /* xColumn - read data */
1254 echoRowid, /* xRowid - read data */
1255 echoUpdate, /* xUpdate - write data */
1256 echoBegin, /* xBegin - begin transaction */
1257 echoSync, /* xSync - sync transaction */
1258 echoCommit, /* xCommit - commit transaction */
1259 echoRollback, /* xRollback - rollback transaction */
1260 echoFindFunction, /* xFindFunction - function overloading */
1261 echoRename, /* xRename - rename the table */
1265 ** Decode a pointer to an sqlite3 object.
1267 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
1269 static void moduleDestroy(void *p){
1274 ** Register the echo virtual table module.
1276 static int register_echo_module(
1277 ClientData clientData, /* Pointer to sqlite3_enable_XXX function */
1278 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
1279 int objc, /* Number of arguments */
1280 Tcl_Obj *CONST objv[] /* Command arguments */
1285 Tcl_WrongNumArgs(interp, 1, objv, "DB");
1288 if( getDbPointer(interp, Tcl_GetString(objv[1]), &db) ) return TCL_ERROR;
1289 pMod = sqlite3_malloc(sizeof(EchoModule));
1290 pMod->interp = interp;
1291 sqlite3_create_module_v2(db, "echo", &echoModule, (void*)pMod, moduleDestroy);
1296 ** Tcl interface to sqlite3_declare_vtab, invoked as follows from Tcl:
1298 ** sqlite3_declare_vtab DB SQL
1300 static int declare_vtab(
1301 ClientData clientData, /* Pointer to sqlite3_enable_XXX function */
1302 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
1303 int objc, /* Number of arguments */
1304 Tcl_Obj *CONST objv[] /* Command arguments */
1309 Tcl_WrongNumArgs(interp, 1, objv, "DB SQL");
1312 if( getDbPointer(interp, Tcl_GetString(objv[1]), &db) ) return TCL_ERROR;
1313 rc = sqlite3_declare_vtab(db, Tcl_GetString(objv[2]));
1314 if( rc!=SQLITE_OK ){
1315 Tcl_SetResult(interp, (char *)sqlite3_errmsg(db), TCL_VOLATILE);
1321 #endif /* ifndef SQLITE_OMIT_VIRTUALTABLE */
1324 ** Register commands with the TCL interpreter.
1326 int Sqlitetest8_Init(Tcl_Interp *interp){
1327 #ifndef SQLITE_OMIT_VIRTUALTABLE
1330 Tcl_ObjCmdProc *xProc;
1333 { "register_echo_module", register_echo_module, 0 },
1334 { "sqlite3_declare_vtab", declare_vtab, 0 },
1337 for(i=0; i<sizeof(aObjCmd)/sizeof(aObjCmd[0]); i++){
1338 Tcl_CreateObjCommand(interp, aObjCmd[i].zName,
1339 aObjCmd[i].xProc, aObjCmd[i].clientData, 0);