os/persistentdata/persistentstorage/sqlite3api/TEST/SRC/test8.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
** 2006 June 10
sl@0
     3
**
sl@0
     4
** The author disclaims copyright to this source code.  In place of
sl@0
     5
** a legal notice, here is a blessing:
sl@0
     6
**
sl@0
     7
**    May you do good and not evil.
sl@0
     8
**    May you find forgiveness for yourself and forgive others.
sl@0
     9
**    May you share freely, never taking more than you give.
sl@0
    10
**
sl@0
    11
*************************************************************************
sl@0
    12
** Code for testing the virtual table interfaces.  This code
sl@0
    13
** is not included in the SQLite library.  It is used for automated
sl@0
    14
** testing of the SQLite library.
sl@0
    15
**
sl@0
    16
** $Id: test8.c,v 1.75 2008/08/31 00:29:08 shane Exp $
sl@0
    17
*/
sl@0
    18
#include "sqliteInt.h"
sl@0
    19
#include "tcl.h"
sl@0
    20
#include <stdlib.h>
sl@0
    21
#include <string.h>
sl@0
    22
sl@0
    23
#ifndef SQLITE_OMIT_VIRTUALTABLE
sl@0
    24
sl@0
    25
typedef struct echo_vtab echo_vtab;
sl@0
    26
typedef struct echo_cursor echo_cursor;
sl@0
    27
sl@0
    28
/*
sl@0
    29
** The test module defined in this file uses four global Tcl variables to
sl@0
    30
** commicate with test-scripts:
sl@0
    31
**
sl@0
    32
**     $::echo_module
sl@0
    33
**     $::echo_module_sync_fail
sl@0
    34
**     $::echo_module_begin_fail
sl@0
    35
**     $::echo_module_cost
sl@0
    36
**
sl@0
    37
** The variable ::echo_module is a list. Each time one of the following
sl@0
    38
** methods is called, one or more elements are appended to the list.
sl@0
    39
** This is used for automated testing of virtual table modules.
sl@0
    40
**
sl@0
    41
** The ::echo_module_sync_fail variable is set by test scripts and read
sl@0
    42
** by code in this file. If it is set to the name of a real table in the
sl@0
    43
** the database, then all xSync operations on echo virtual tables that
sl@0
    44
** use the named table as a backing store will fail.
sl@0
    45
*/
sl@0
    46
sl@0
    47
/*
sl@0
    48
** Errors can be provoked within the following echo virtual table methods:
sl@0
    49
**
sl@0
    50
**   xBestIndex   xOpen     xFilter   xNext   
sl@0
    51
**   xColumn      xRowid    xUpdate   xSync   
sl@0
    52
**   xBegin       xRename
sl@0
    53
**
sl@0
    54
** This is done by setting the global tcl variable:
sl@0
    55
**
sl@0
    56
**   echo_module_fail($method,$tbl)
sl@0
    57
**
sl@0
    58
** where $method is set to the name of the virtual table method to fail
sl@0
    59
** (i.e. "xBestIndex") and $tbl is the name of the table being echoed (not
sl@0
    60
** the name of the virtual table, the name of the underlying real table).
sl@0
    61
*/
sl@0
    62
sl@0
    63
/* 
sl@0
    64
** An echo virtual-table object.
sl@0
    65
**
sl@0
    66
** echo.vtab.aIndex is an array of booleans. The nth entry is true if 
sl@0
    67
** the nth column of the real table is the left-most column of an index
sl@0
    68
** (implicit or otherwise). In other words, if SQLite can optimize
sl@0
    69
** a query like "SELECT * FROM real_table WHERE col = ?".
sl@0
    70
**
sl@0
    71
** Member variable aCol[] contains copies of the column names of the real
sl@0
    72
** table.
sl@0
    73
*/
sl@0
    74
struct echo_vtab {
sl@0
    75
  sqlite3_vtab base;
sl@0
    76
  Tcl_Interp *interp;     /* Tcl interpreter containing debug variables */
sl@0
    77
  sqlite3 *db;            /* Database connection */
sl@0
    78
sl@0
    79
  int isPattern;
sl@0
    80
  int inTransaction;      /* True if within a transaction */
sl@0
    81
  char *zThis;            /* Name of the echo table */
sl@0
    82
  char *zTableName;       /* Name of the real table */
sl@0
    83
  char *zLogName;         /* Name of the log table */
sl@0
    84
  int nCol;               /* Number of columns in the real table */
sl@0
    85
  int *aIndex;            /* Array of size nCol. True if column has an index */
sl@0
    86
  char **aCol;            /* Array of size nCol. Column names */
sl@0
    87
};
sl@0
    88
sl@0
    89
/* An echo cursor object */
sl@0
    90
struct echo_cursor {
sl@0
    91
  sqlite3_vtab_cursor base;
sl@0
    92
  sqlite3_stmt *pStmt;
sl@0
    93
};
sl@0
    94
sl@0
    95
static int simulateVtabError(echo_vtab *p, const char *zMethod){
sl@0
    96
  const char *zErr;
sl@0
    97
  char zVarname[128];
sl@0
    98
  zVarname[127] = '\0';
sl@0
    99
  sqlite3_snprintf(127, zVarname, "echo_module_fail(%s,%s)", zMethod, p->zTableName);
sl@0
   100
  zErr = Tcl_GetVar(p->interp, zVarname, TCL_GLOBAL_ONLY);
sl@0
   101
  if( zErr ){
sl@0
   102
    p->base.zErrMsg = sqlite3_mprintf("echo-vtab-error: %s", zErr);
sl@0
   103
  }
sl@0
   104
  return (zErr!=0);
sl@0
   105
}
sl@0
   106
sl@0
   107
/*
sl@0
   108
** Convert an SQL-style quoted string into a normal string by removing
sl@0
   109
** the quote characters.  The conversion is done in-place.  If the
sl@0
   110
** input does not begin with a quote character, then this routine
sl@0
   111
** is a no-op.
sl@0
   112
**
sl@0
   113
** Examples:
sl@0
   114
**
sl@0
   115
**     "abc"   becomes   abc
sl@0
   116
**     'xyz'   becomes   xyz
sl@0
   117
**     [pqr]   becomes   pqr
sl@0
   118
**     `mno`   becomes   mno
sl@0
   119
*/
sl@0
   120
static void dequoteString(char *z){
sl@0
   121
  int quote;
sl@0
   122
  int i, j;
sl@0
   123
  if( z==0 ) return;
sl@0
   124
  quote = z[0];
sl@0
   125
  switch( quote ){
sl@0
   126
    case '\'':  break;
sl@0
   127
    case '"':   break;
sl@0
   128
    case '`':   break;                /* For MySQL compatibility */
sl@0
   129
    case '[':   quote = ']';  break;  /* For MS SqlServer compatibility */
sl@0
   130
    default:    return;
sl@0
   131
  }
sl@0
   132
  for(i=1, j=0; z[i]; i++){
sl@0
   133
    if( z[i]==quote ){
sl@0
   134
      if( z[i+1]==quote ){
sl@0
   135
        z[j++] = quote;
sl@0
   136
        i++;
sl@0
   137
      }else{
sl@0
   138
        z[j++] = 0;
sl@0
   139
        break;
sl@0
   140
      }
sl@0
   141
    }else{
sl@0
   142
      z[j++] = z[i];
sl@0
   143
    }
sl@0
   144
  }
sl@0
   145
}
sl@0
   146
sl@0
   147
/*
sl@0
   148
** Retrieve the column names for the table named zTab via database
sl@0
   149
** connection db. SQLITE_OK is returned on success, or an sqlite error
sl@0
   150
** code otherwise.
sl@0
   151
**
sl@0
   152
** If successful, the number of columns is written to *pnCol. *paCol is
sl@0
   153
** set to point at sqlite3_malloc()'d space containing the array of
sl@0
   154
** nCol column names. The caller is responsible for calling sqlite3_free
sl@0
   155
** on *paCol.
sl@0
   156
*/
sl@0
   157
static int getColumnNames(
sl@0
   158
  sqlite3 *db, 
sl@0
   159
  const char *zTab,
sl@0
   160
  char ***paCol, 
sl@0
   161
  int *pnCol
sl@0
   162
){
sl@0
   163
  char **aCol = 0;
sl@0
   164
  char *zSql;
sl@0
   165
  sqlite3_stmt *pStmt = 0;
sl@0
   166
  int rc = SQLITE_OK;
sl@0
   167
  int nCol = 0;
sl@0
   168
sl@0
   169
  /* Prepare the statement "SELECT * FROM <tbl>". The column names
sl@0
   170
  ** of the result set of the compiled SELECT will be the same as
sl@0
   171
  ** the column names of table <tbl>.
sl@0
   172
  */
sl@0
   173
  zSql = sqlite3_mprintf("SELECT * FROM %Q", zTab);
sl@0
   174
  if( !zSql ){
sl@0
   175
    rc = SQLITE_NOMEM;
sl@0
   176
    goto out;
sl@0
   177
  }
sl@0
   178
  rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
sl@0
   179
  sqlite3_free(zSql);
sl@0
   180
sl@0
   181
  if( rc==SQLITE_OK ){
sl@0
   182
    int ii;
sl@0
   183
    int nBytes;
sl@0
   184
    char *zSpace;
sl@0
   185
    nCol = sqlite3_column_count(pStmt);
sl@0
   186
sl@0
   187
    /* Figure out how much space to allocate for the array of column names 
sl@0
   188
    ** (including space for the strings themselves). Then allocate it.
sl@0
   189
    */
sl@0
   190
    nBytes = sizeof(char *) * nCol;
sl@0
   191
    for(ii=0; ii<nCol; ii++){
sl@0
   192
      const char *zName = sqlite3_column_name(pStmt, ii);
sl@0
   193
      if( !zName ){
sl@0
   194
        rc = SQLITE_NOMEM;
sl@0
   195
        goto out;
sl@0
   196
      }
sl@0
   197
      nBytes += strlen(zName)+1;
sl@0
   198
    }
sl@0
   199
    aCol = (char **)sqlite3MallocZero(nBytes);
sl@0
   200
    if( !aCol ){
sl@0
   201
      rc = SQLITE_NOMEM;
sl@0
   202
      goto out;
sl@0
   203
    }
sl@0
   204
sl@0
   205
    /* Copy the column names into the allocated space and set up the
sl@0
   206
    ** pointers in the aCol[] array.
sl@0
   207
    */
sl@0
   208
    zSpace = (char *)(&aCol[nCol]);
sl@0
   209
    for(ii=0; ii<nCol; ii++){
sl@0
   210
      aCol[ii] = zSpace;
sl@0
   211
      zSpace += sprintf(zSpace, "%s", sqlite3_column_name(pStmt, ii));
sl@0
   212
      zSpace++;
sl@0
   213
    }
sl@0
   214
    assert( (zSpace-nBytes)==(char *)aCol );
sl@0
   215
  }
sl@0
   216
sl@0
   217
  *paCol = aCol;
sl@0
   218
  *pnCol = nCol;
sl@0
   219
sl@0
   220
out:
sl@0
   221
  sqlite3_finalize(pStmt);
sl@0
   222
  return rc;
sl@0
   223
}
sl@0
   224
sl@0
   225
/*
sl@0
   226
** Parameter zTab is the name of a table in database db with nCol 
sl@0
   227
** columns. This function allocates an array of integers nCol in 
sl@0
   228
** size and populates it according to any implicit or explicit 
sl@0
   229
** indices on table zTab.
sl@0
   230
**
sl@0
   231
** If successful, SQLITE_OK is returned and *paIndex set to point 
sl@0
   232
** at the allocated array. Otherwise, an error code is returned.
sl@0
   233
**
sl@0
   234
** See comments associated with the member variable aIndex above 
sl@0
   235
** "struct echo_vtab" for details of the contents of the array.
sl@0
   236
*/
sl@0
   237
static int getIndexArray(
sl@0
   238
  sqlite3 *db,             /* Database connection */
sl@0
   239
  const char *zTab,        /* Name of table in database db */
sl@0
   240
  int nCol,
sl@0
   241
  int **paIndex
sl@0
   242
){
sl@0
   243
  sqlite3_stmt *pStmt = 0;
sl@0
   244
  int *aIndex = 0;
sl@0
   245
  int rc;
sl@0
   246
  char *zSql;
sl@0
   247
sl@0
   248
  /* Allocate space for the index array */
sl@0
   249
  aIndex = (int *)sqlite3MallocZero(sizeof(int) * nCol);
sl@0
   250
  if( !aIndex ){
sl@0
   251
    rc = SQLITE_NOMEM;
sl@0
   252
    goto get_index_array_out;
sl@0
   253
  }
sl@0
   254
sl@0
   255
  /* Compile an sqlite pragma to loop through all indices on table zTab */
sl@0
   256
  zSql = sqlite3MPrintf(0, "PRAGMA index_list(%s)", zTab);
sl@0
   257
  if( !zSql ){
sl@0
   258
    rc = SQLITE_NOMEM;
sl@0
   259
    goto get_index_array_out;
sl@0
   260
  }
sl@0
   261
  rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
sl@0
   262
  sqlite3_free(zSql);
sl@0
   263
sl@0
   264
  /* For each index, figure out the left-most column and set the 
sl@0
   265
  ** corresponding entry in aIndex[] to 1.
sl@0
   266
  */
sl@0
   267
  while( pStmt && sqlite3_step(pStmt)==SQLITE_ROW ){
sl@0
   268
    const char *zIdx = (const char *)sqlite3_column_text(pStmt, 1);
sl@0
   269
    sqlite3_stmt *pStmt2 = 0;
sl@0
   270
    zSql = sqlite3MPrintf(0, "PRAGMA index_info(%s)", zIdx);
sl@0
   271
    if( !zSql ){
sl@0
   272
      rc = SQLITE_NOMEM;
sl@0
   273
      goto get_index_array_out;
sl@0
   274
    }
sl@0
   275
    rc = sqlite3_prepare(db, zSql, -1, &pStmt2, 0);
sl@0
   276
    sqlite3_free(zSql);
sl@0
   277
    if( pStmt2 && sqlite3_step(pStmt2)==SQLITE_ROW ){
sl@0
   278
      int cid = sqlite3_column_int(pStmt2, 1);
sl@0
   279
      assert( cid>=0 && cid<nCol );
sl@0
   280
      aIndex[cid] = 1;
sl@0
   281
    }
sl@0
   282
    if( pStmt2 ){
sl@0
   283
      rc = sqlite3_finalize(pStmt2);
sl@0
   284
    }
sl@0
   285
    if( rc!=SQLITE_OK ){
sl@0
   286
      goto get_index_array_out;
sl@0
   287
    }
sl@0
   288
  }
sl@0
   289
sl@0
   290
sl@0
   291
get_index_array_out:
sl@0
   292
  if( pStmt ){
sl@0
   293
    int rc2 = sqlite3_finalize(pStmt);
sl@0
   294
    if( rc==SQLITE_OK ){
sl@0
   295
      rc = rc2;
sl@0
   296
    }
sl@0
   297
  }
sl@0
   298
  if( rc!=SQLITE_OK ){
sl@0
   299
    sqlite3_free(aIndex);
sl@0
   300
    aIndex = 0;
sl@0
   301
  }
sl@0
   302
  *paIndex = aIndex;
sl@0
   303
  return rc;
sl@0
   304
}
sl@0
   305
sl@0
   306
/*
sl@0
   307
** Global Tcl variable $echo_module is a list. This routine appends
sl@0
   308
** the string element zArg to that list in interpreter interp.
sl@0
   309
*/
sl@0
   310
static void appendToEchoModule(Tcl_Interp *interp, const char *zArg){
sl@0
   311
  int flags = (TCL_APPEND_VALUE | TCL_LIST_ELEMENT | TCL_GLOBAL_ONLY);
sl@0
   312
  Tcl_SetVar(interp, "echo_module", (zArg?zArg:""), flags);
sl@0
   313
}
sl@0
   314
sl@0
   315
/*
sl@0
   316
** This function is called from within the echo-modules xCreate and
sl@0
   317
** xConnect methods. The argc and argv arguments are copies of those 
sl@0
   318
** passed to the calling method. This function is responsible for
sl@0
   319
** calling sqlite3_declare_vtab() to declare the schema of the virtual
sl@0
   320
** table being created or connected.
sl@0
   321
**
sl@0
   322
** If the constructor was passed just one argument, i.e.:
sl@0
   323
**
sl@0
   324
**   CREATE TABLE t1 AS echo(t2);
sl@0
   325
**
sl@0
   326
** Then t2 is assumed to be the name of a *real* database table. The
sl@0
   327
** schema of the virtual table is declared by passing a copy of the 
sl@0
   328
** CREATE TABLE statement for the real table to sqlite3_declare_vtab().
sl@0
   329
** Hence, the virtual table should have exactly the same column names and 
sl@0
   330
** types as the real table.
sl@0
   331
*/
sl@0
   332
static int echoDeclareVtab(
sl@0
   333
  echo_vtab *pVtab, 
sl@0
   334
  sqlite3 *db 
sl@0
   335
){
sl@0
   336
  int rc = SQLITE_OK;
sl@0
   337
sl@0
   338
  if( pVtab->zTableName ){
sl@0
   339
    sqlite3_stmt *pStmt = 0;
sl@0
   340
    rc = sqlite3_prepare(db, 
sl@0
   341
        "SELECT sql FROM sqlite_master WHERE type = 'table' AND name = ?",
sl@0
   342
        -1, &pStmt, 0);
sl@0
   343
    if( rc==SQLITE_OK ){
sl@0
   344
      sqlite3_bind_text(pStmt, 1, pVtab->zTableName, -1, 0);
sl@0
   345
      if( sqlite3_step(pStmt)==SQLITE_ROW ){
sl@0
   346
        int rc2;
sl@0
   347
        const char *zCreateTable = (const char *)sqlite3_column_text(pStmt, 0);
sl@0
   348
        rc = sqlite3_declare_vtab(db, zCreateTable);
sl@0
   349
        rc2 = sqlite3_finalize(pStmt);
sl@0
   350
        if( rc==SQLITE_OK ){
sl@0
   351
          rc = rc2;
sl@0
   352
        }
sl@0
   353
      } else {
sl@0
   354
        rc = sqlite3_finalize(pStmt);
sl@0
   355
        if( rc==SQLITE_OK ){ 
sl@0
   356
          rc = SQLITE_ERROR;
sl@0
   357
        }
sl@0
   358
      }
sl@0
   359
      if( rc==SQLITE_OK ){
sl@0
   360
        rc = getColumnNames(db, pVtab->zTableName, &pVtab->aCol, &pVtab->nCol);
sl@0
   361
      }
sl@0
   362
      if( rc==SQLITE_OK ){
sl@0
   363
        rc = getIndexArray(db, pVtab->zTableName, pVtab->nCol, &pVtab->aIndex);
sl@0
   364
      }
sl@0
   365
    }
sl@0
   366
  }
sl@0
   367
sl@0
   368
  return rc;
sl@0
   369
}
sl@0
   370
sl@0
   371
/*
sl@0
   372
** This function frees all runtime structures associated with the virtual
sl@0
   373
** table pVtab.
sl@0
   374
*/
sl@0
   375
static int echoDestructor(sqlite3_vtab *pVtab){
sl@0
   376
  echo_vtab *p = (echo_vtab*)pVtab;
sl@0
   377
  sqlite3_free(p->aIndex);
sl@0
   378
  sqlite3_free(p->aCol);
sl@0
   379
  sqlite3_free(p->zThis);
sl@0
   380
  sqlite3_free(p->zTableName);
sl@0
   381
  sqlite3_free(p->zLogName);
sl@0
   382
  sqlite3_free(p);
sl@0
   383
  return 0;
sl@0
   384
}
sl@0
   385
sl@0
   386
typedef struct EchoModule EchoModule;
sl@0
   387
struct EchoModule {
sl@0
   388
  Tcl_Interp *interp;
sl@0
   389
};
sl@0
   390
sl@0
   391
/*
sl@0
   392
** This function is called to do the work of the xConnect() method -
sl@0
   393
** to allocate the required in-memory structures for a newly connected
sl@0
   394
** virtual table.
sl@0
   395
*/
sl@0
   396
static int echoConstructor(
sl@0
   397
  sqlite3 *db,
sl@0
   398
  void *pAux,
sl@0
   399
  int argc, const char *const*argv,
sl@0
   400
  sqlite3_vtab **ppVtab,
sl@0
   401
  char **pzErr
sl@0
   402
){
sl@0
   403
  int rc;
sl@0
   404
  int i;
sl@0
   405
  echo_vtab *pVtab;
sl@0
   406
sl@0
   407
  /* Allocate the sqlite3_vtab/echo_vtab structure itself */
sl@0
   408
  pVtab = sqlite3MallocZero( sizeof(*pVtab) );
sl@0
   409
  if( !pVtab ){
sl@0
   410
    return SQLITE_NOMEM;
sl@0
   411
  }
sl@0
   412
  pVtab->interp = ((EchoModule *)pAux)->interp;
sl@0
   413
  pVtab->db = db;
sl@0
   414
sl@0
   415
  /* Allocate echo_vtab.zThis */
sl@0
   416
  pVtab->zThis = sqlite3MPrintf(0, "%s", argv[2]);
sl@0
   417
  if( !pVtab->zThis ){
sl@0
   418
    echoDestructor((sqlite3_vtab *)pVtab);
sl@0
   419
    return SQLITE_NOMEM;
sl@0
   420
  }
sl@0
   421
sl@0
   422
  /* Allocate echo_vtab.zTableName */
sl@0
   423
  if( argc>3 ){
sl@0
   424
    pVtab->zTableName = sqlite3MPrintf(0, "%s", argv[3]);
sl@0
   425
    dequoteString(pVtab->zTableName);
sl@0
   426
    if( pVtab->zTableName && pVtab->zTableName[0]=='*' ){
sl@0
   427
      char *z = sqlite3MPrintf(0, "%s%s", argv[2], &(pVtab->zTableName[1]));
sl@0
   428
      sqlite3_free(pVtab->zTableName);
sl@0
   429
      pVtab->zTableName = z;
sl@0
   430
      pVtab->isPattern = 1;
sl@0
   431
    }
sl@0
   432
    if( !pVtab->zTableName ){
sl@0
   433
      echoDestructor((sqlite3_vtab *)pVtab);
sl@0
   434
      return SQLITE_NOMEM;
sl@0
   435
    }
sl@0
   436
  }
sl@0
   437
sl@0
   438
  /* Log the arguments to this function to Tcl var ::echo_module */
sl@0
   439
  for(i=0; i<argc; i++){
sl@0
   440
    appendToEchoModule(pVtab->interp, argv[i]);
sl@0
   441
  }
sl@0
   442
sl@0
   443
  /* Invoke sqlite3_declare_vtab and set up other members of the echo_vtab
sl@0
   444
  ** structure. If an error occurs, delete the sqlite3_vtab structure and
sl@0
   445
  ** return an error code.
sl@0
   446
  */
sl@0
   447
  rc = echoDeclareVtab(pVtab, db);
sl@0
   448
  if( rc!=SQLITE_OK ){
sl@0
   449
    echoDestructor((sqlite3_vtab *)pVtab);
sl@0
   450
    return rc;
sl@0
   451
  }
sl@0
   452
sl@0
   453
  /* Success. Set *ppVtab and return */
sl@0
   454
  *ppVtab = &pVtab->base;
sl@0
   455
  return SQLITE_OK;
sl@0
   456
}
sl@0
   457
sl@0
   458
/* 
sl@0
   459
** Echo virtual table module xCreate method.
sl@0
   460
*/
sl@0
   461
static int echoCreate(
sl@0
   462
  sqlite3 *db,
sl@0
   463
  void *pAux,
sl@0
   464
  int argc, const char *const*argv,
sl@0
   465
  sqlite3_vtab **ppVtab,
sl@0
   466
  char **pzErr
sl@0
   467
){
sl@0
   468
  int rc = SQLITE_OK;
sl@0
   469
  appendToEchoModule(((EchoModule *)pAux)->interp, "xCreate");
sl@0
   470
  rc = echoConstructor(db, pAux, argc, argv, ppVtab, pzErr);
sl@0
   471
sl@0
   472
  /* If there were two arguments passed to the module at the SQL level 
sl@0
   473
  ** (i.e. "CREATE VIRTUAL TABLE tbl USING echo(arg1, arg2)"), then 
sl@0
   474
  ** the second argument is used as a table name. Attempt to create
sl@0
   475
  ** such a table with a single column, "logmsg". This table will
sl@0
   476
  ** be used to log calls to the xUpdate method. It will be deleted
sl@0
   477
  ** when the virtual table is DROPed.
sl@0
   478
  **
sl@0
   479
  ** Note: The main point of this is to test that we can drop tables
sl@0
   480
  ** from within an xDestroy method call.
sl@0
   481
  */
sl@0
   482
  if( rc==SQLITE_OK && argc==5 ){
sl@0
   483
    char *zSql;
sl@0
   484
    echo_vtab *pVtab = *(echo_vtab **)ppVtab;
sl@0
   485
    pVtab->zLogName = sqlite3MPrintf(0, "%s", argv[4]);
sl@0
   486
    zSql = sqlite3MPrintf(0, "CREATE TABLE %Q(logmsg)", pVtab->zLogName);
sl@0
   487
    rc = sqlite3_exec(db, zSql, 0, 0, 0);
sl@0
   488
    sqlite3_free(zSql);
sl@0
   489
    if( rc!=SQLITE_OK ){
sl@0
   490
      *pzErr = sqlite3DbStrDup(0, sqlite3_errmsg(db));
sl@0
   491
    }
sl@0
   492
  }
sl@0
   493
sl@0
   494
  if( *ppVtab && rc!=SQLITE_OK ){
sl@0
   495
    echoDestructor(*ppVtab);
sl@0
   496
    *ppVtab = 0;
sl@0
   497
  }
sl@0
   498
sl@0
   499
  if( rc==SQLITE_OK ){
sl@0
   500
    (*(echo_vtab**)ppVtab)->inTransaction = 1;
sl@0
   501
  }
sl@0
   502
sl@0
   503
  return rc;
sl@0
   504
}
sl@0
   505
sl@0
   506
/* 
sl@0
   507
** Echo virtual table module xConnect method.
sl@0
   508
*/
sl@0
   509
static int echoConnect(
sl@0
   510
  sqlite3 *db,
sl@0
   511
  void *pAux,
sl@0
   512
  int argc, const char *const*argv,
sl@0
   513
  sqlite3_vtab **ppVtab,
sl@0
   514
  char **pzErr
sl@0
   515
){
sl@0
   516
  appendToEchoModule(((EchoModule *)pAux)->interp, "xConnect");
sl@0
   517
  return echoConstructor(db, pAux, argc, argv, ppVtab, pzErr);
sl@0
   518
}
sl@0
   519
sl@0
   520
/* 
sl@0
   521
** Echo virtual table module xDisconnect method.
sl@0
   522
*/
sl@0
   523
static int echoDisconnect(sqlite3_vtab *pVtab){
sl@0
   524
  appendToEchoModule(((echo_vtab *)pVtab)->interp, "xDisconnect");
sl@0
   525
  return echoDestructor(pVtab);
sl@0
   526
}
sl@0
   527
sl@0
   528
/* 
sl@0
   529
** Echo virtual table module xDestroy method.
sl@0
   530
*/
sl@0
   531
static int echoDestroy(sqlite3_vtab *pVtab){
sl@0
   532
  int rc = SQLITE_OK;
sl@0
   533
  echo_vtab *p = (echo_vtab *)pVtab;
sl@0
   534
  appendToEchoModule(((echo_vtab *)pVtab)->interp, "xDestroy");
sl@0
   535
sl@0
   536
  /* Drop the "log" table, if one exists (see echoCreate() for details) */
sl@0
   537
  if( p && p->zLogName ){
sl@0
   538
    char *zSql;
sl@0
   539
    zSql = sqlite3MPrintf(0, "DROP TABLE %Q", p->zLogName);
sl@0
   540
    rc = sqlite3_exec(p->db, zSql, 0, 0, 0);
sl@0
   541
    sqlite3_free(zSql);
sl@0
   542
  }
sl@0
   543
sl@0
   544
  if( rc==SQLITE_OK ){
sl@0
   545
    rc = echoDestructor(pVtab);
sl@0
   546
  }
sl@0
   547
  return rc;
sl@0
   548
}
sl@0
   549
sl@0
   550
/* 
sl@0
   551
** Echo virtual table module xOpen method.
sl@0
   552
*/
sl@0
   553
static int echoOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
sl@0
   554
  echo_cursor *pCur;
sl@0
   555
  if( simulateVtabError((echo_vtab *)pVTab, "xOpen") ){
sl@0
   556
    return SQLITE_ERROR;
sl@0
   557
  }
sl@0
   558
  pCur = sqlite3MallocZero(sizeof(echo_cursor));
sl@0
   559
  *ppCursor = (sqlite3_vtab_cursor *)pCur;
sl@0
   560
  return (pCur ? SQLITE_OK : SQLITE_NOMEM);
sl@0
   561
}
sl@0
   562
sl@0
   563
/* 
sl@0
   564
** Echo virtual table module xClose method.
sl@0
   565
*/
sl@0
   566
static int echoClose(sqlite3_vtab_cursor *cur){
sl@0
   567
  int rc;
sl@0
   568
  echo_cursor *pCur = (echo_cursor *)cur;
sl@0
   569
  sqlite3_stmt *pStmt = pCur->pStmt;
sl@0
   570
  pCur->pStmt = 0;
sl@0
   571
  sqlite3_free(pCur);
sl@0
   572
  rc = sqlite3_finalize(pStmt);
sl@0
   573
  return rc;
sl@0
   574
}
sl@0
   575
sl@0
   576
/*
sl@0
   577
** Return non-zero if the cursor does not currently point to a valid record
sl@0
   578
** (i.e if the scan has finished), or zero otherwise.
sl@0
   579
*/
sl@0
   580
static int echoEof(sqlite3_vtab_cursor *cur){
sl@0
   581
  return (((echo_cursor *)cur)->pStmt ? 0 : 1);
sl@0
   582
}
sl@0
   583
sl@0
   584
/* 
sl@0
   585
** Echo virtual table module xNext method.
sl@0
   586
*/
sl@0
   587
static int echoNext(sqlite3_vtab_cursor *cur){
sl@0
   588
  int rc = SQLITE_OK;
sl@0
   589
  echo_cursor *pCur = (echo_cursor *)cur;
sl@0
   590
sl@0
   591
  if( simulateVtabError((echo_vtab *)(cur->pVtab), "xNext") ){
sl@0
   592
    return SQLITE_ERROR;
sl@0
   593
  }
sl@0
   594
sl@0
   595
  if( pCur->pStmt ){
sl@0
   596
    rc = sqlite3_step(pCur->pStmt);
sl@0
   597
    if( rc==SQLITE_ROW ){
sl@0
   598
      rc = SQLITE_OK;
sl@0
   599
    }else{
sl@0
   600
      rc = sqlite3_finalize(pCur->pStmt);
sl@0
   601
      pCur->pStmt = 0;
sl@0
   602
    }
sl@0
   603
  }
sl@0
   604
sl@0
   605
  return rc;
sl@0
   606
}
sl@0
   607
sl@0
   608
/* 
sl@0
   609
** Echo virtual table module xColumn method.
sl@0
   610
*/
sl@0
   611
static int echoColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){
sl@0
   612
  int iCol = i + 1;
sl@0
   613
  sqlite3_stmt *pStmt = ((echo_cursor *)cur)->pStmt;
sl@0
   614
sl@0
   615
  if( simulateVtabError((echo_vtab *)(cur->pVtab), "xColumn") ){
sl@0
   616
    return SQLITE_ERROR;
sl@0
   617
  }
sl@0
   618
sl@0
   619
  if( !pStmt ){
sl@0
   620
    sqlite3_result_null(ctx);
sl@0
   621
  }else{
sl@0
   622
    assert( sqlite3_data_count(pStmt)>iCol );
sl@0
   623
    sqlite3_result_value(ctx, sqlite3_column_value(pStmt, iCol));
sl@0
   624
  }
sl@0
   625
  return SQLITE_OK;
sl@0
   626
}
sl@0
   627
sl@0
   628
/* 
sl@0
   629
** Echo virtual table module xRowid method.
sl@0
   630
*/
sl@0
   631
static int echoRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){
sl@0
   632
  sqlite3_stmt *pStmt = ((echo_cursor *)cur)->pStmt;
sl@0
   633
sl@0
   634
  if( simulateVtabError((echo_vtab *)(cur->pVtab), "xRowid") ){
sl@0
   635
    return SQLITE_ERROR;
sl@0
   636
  }
sl@0
   637
sl@0
   638
  *pRowid = sqlite3_column_int64(pStmt, 0);
sl@0
   639
  return SQLITE_OK;
sl@0
   640
}
sl@0
   641
sl@0
   642
/*
sl@0
   643
** Compute a simple hash of the null terminated string zString.
sl@0
   644
**
sl@0
   645
** This module uses only sqlite3_index_info.idxStr, not 
sl@0
   646
** sqlite3_index_info.idxNum. So to test idxNum, when idxStr is set
sl@0
   647
** in echoBestIndex(), idxNum is set to the corresponding hash value.
sl@0
   648
** In echoFilter(), code assert()s that the supplied idxNum value is
sl@0
   649
** indeed the hash of the supplied idxStr.
sl@0
   650
*/
sl@0
   651
static int hashString(const char *zString){
sl@0
   652
  int val = 0;
sl@0
   653
  int ii;
sl@0
   654
  for(ii=0; zString[ii]; ii++){
sl@0
   655
    val = (val << 3) + (int)zString[ii];
sl@0
   656
  }
sl@0
   657
  return val;
sl@0
   658
}
sl@0
   659
sl@0
   660
/* 
sl@0
   661
** Echo virtual table module xFilter method.
sl@0
   662
*/
sl@0
   663
static int echoFilter(
sl@0
   664
  sqlite3_vtab_cursor *pVtabCursor, 
sl@0
   665
  int idxNum, const char *idxStr,
sl@0
   666
  int argc, sqlite3_value **argv
sl@0
   667
){
sl@0
   668
  int rc;
sl@0
   669
  int i;
sl@0
   670
sl@0
   671
  echo_cursor *pCur = (echo_cursor *)pVtabCursor;
sl@0
   672
  echo_vtab *pVtab = (echo_vtab *)pVtabCursor->pVtab;
sl@0
   673
  sqlite3 *db = pVtab->db;
sl@0
   674
sl@0
   675
  if( simulateVtabError(pVtab, "xFilter") ){
sl@0
   676
    return SQLITE_ERROR;
sl@0
   677
  }
sl@0
   678
sl@0
   679
  /* Check that idxNum matches idxStr */
sl@0
   680
  assert( idxNum==hashString(idxStr) );
sl@0
   681
sl@0
   682
  /* Log arguments to the ::echo_module Tcl variable */
sl@0
   683
  appendToEchoModule(pVtab->interp, "xFilter");
sl@0
   684
  appendToEchoModule(pVtab->interp, idxStr);
sl@0
   685
  for(i=0; i<argc; i++){
sl@0
   686
    appendToEchoModule(pVtab->interp, (const char*)sqlite3_value_text(argv[i]));
sl@0
   687
  }
sl@0
   688
sl@0
   689
  sqlite3_finalize(pCur->pStmt);
sl@0
   690
  pCur->pStmt = 0;
sl@0
   691
sl@0
   692
  /* Prepare the SQL statement created by echoBestIndex and bind the
sl@0
   693
  ** runtime parameters passed to this function to it.
sl@0
   694
  */
sl@0
   695
  rc = sqlite3_prepare(db, idxStr, -1, &pCur->pStmt, 0);
sl@0
   696
  assert( pCur->pStmt || rc!=SQLITE_OK );
sl@0
   697
  for(i=0; rc==SQLITE_OK && i<argc; i++){
sl@0
   698
    sqlite3_bind_value(pCur->pStmt, i+1, argv[i]);
sl@0
   699
  }
sl@0
   700
sl@0
   701
  /* If everything was successful, advance to the first row of the scan */
sl@0
   702
  if( rc==SQLITE_OK ){
sl@0
   703
    rc = echoNext(pVtabCursor);
sl@0
   704
  }
sl@0
   705
sl@0
   706
  return rc;
sl@0
   707
}
sl@0
   708
sl@0
   709
sl@0
   710
/*
sl@0
   711
** A helper function used by echoUpdate() and echoBestIndex() for
sl@0
   712
** manipulating strings in concert with the sqlite3_mprintf() function.
sl@0
   713
**
sl@0
   714
** Parameter pzStr points to a pointer to a string allocated with
sl@0
   715
** sqlite3_mprintf. The second parameter, zAppend, points to another
sl@0
   716
** string. The two strings are concatenated together and *pzStr
sl@0
   717
** set to point at the result. The initial buffer pointed to by *pzStr
sl@0
   718
** is deallocated via sqlite3_free().
sl@0
   719
**
sl@0
   720
** If the third argument, doFree, is true, then sqlite3_free() is
sl@0
   721
** also called to free the buffer pointed to by zAppend.
sl@0
   722
*/
sl@0
   723
static void string_concat(char **pzStr, char *zAppend, int doFree, int *pRc){
sl@0
   724
  char *zIn = *pzStr;
sl@0
   725
  if( !zAppend && doFree && *pRc==SQLITE_OK ){
sl@0
   726
    *pRc = SQLITE_NOMEM;
sl@0
   727
  }
sl@0
   728
  if( *pRc!=SQLITE_OK ){
sl@0
   729
    sqlite3_free(zIn);
sl@0
   730
    zIn = 0;
sl@0
   731
  }else{
sl@0
   732
    if( zIn ){
sl@0
   733
      char *zTemp = zIn;
sl@0
   734
      zIn = sqlite3_mprintf("%s%s", zIn, zAppend);
sl@0
   735
      sqlite3_free(zTemp);
sl@0
   736
    }else{
sl@0
   737
      zIn = sqlite3_mprintf("%s", zAppend);
sl@0
   738
    }
sl@0
   739
    if( !zIn ){
sl@0
   740
      *pRc = SQLITE_NOMEM;
sl@0
   741
    }
sl@0
   742
  }
sl@0
   743
  *pzStr = zIn;
sl@0
   744
  if( doFree ){
sl@0
   745
    sqlite3_free(zAppend);
sl@0
   746
  }
sl@0
   747
}
sl@0
   748
sl@0
   749
/*
sl@0
   750
** The echo module implements the subset of query constraints and sort
sl@0
   751
** orders that may take advantage of SQLite indices on the underlying
sl@0
   752
** real table. For example, if the real table is declared as:
sl@0
   753
**
sl@0
   754
**     CREATE TABLE real(a, b, c);
sl@0
   755
**     CREATE INDEX real_index ON real(b);
sl@0
   756
**
sl@0
   757
** then the echo module handles WHERE or ORDER BY clauses that refer
sl@0
   758
** to the column "b", but not "a" or "c". If a multi-column index is
sl@0
   759
** present, only its left most column is considered. 
sl@0
   760
**
sl@0
   761
** This xBestIndex method encodes the proposed search strategy as
sl@0
   762
** an SQL query on the real table underlying the virtual echo module 
sl@0
   763
** table and stores the query in sqlite3_index_info.idxStr. The SQL
sl@0
   764
** statement is of the form:
sl@0
   765
**
sl@0
   766
**   SELECT rowid, * FROM <real-table> ?<where-clause>? ?<order-by-clause>?
sl@0
   767
**
sl@0
   768
** where the <where-clause> and <order-by-clause> are determined
sl@0
   769
** by the contents of the structure pointed to by the pIdxInfo argument.
sl@0
   770
*/
sl@0
   771
static int echoBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){
sl@0
   772
  int ii;
sl@0
   773
  char *zQuery = 0;
sl@0
   774
  char *zNew;
sl@0
   775
  int nArg = 0;
sl@0
   776
  const char *zSep = "WHERE";
sl@0
   777
  echo_vtab *pVtab = (echo_vtab *)tab;
sl@0
   778
  sqlite3_stmt *pStmt = 0;
sl@0
   779
  Tcl_Interp *interp = pVtab->interp;
sl@0
   780
sl@0
   781
  int nRow;
sl@0
   782
  int useIdx = 0;
sl@0
   783
  int rc = SQLITE_OK;
sl@0
   784
  int useCost = 0;
sl@0
   785
  double cost;
sl@0
   786
  int isIgnoreUsable = 0;
sl@0
   787
  if( Tcl_GetVar(interp, "echo_module_ignore_usable", TCL_GLOBAL_ONLY) ){
sl@0
   788
    isIgnoreUsable = 1;
sl@0
   789
  }
sl@0
   790
sl@0
   791
  if( simulateVtabError(pVtab, "xBestIndex") ){
sl@0
   792
    return SQLITE_ERROR;
sl@0
   793
  }
sl@0
   794
sl@0
   795
  /* Determine the number of rows in the table and store this value in local
sl@0
   796
  ** variable nRow. The 'estimated-cost' of the scan will be the number of
sl@0
   797
  ** rows in the table for a linear scan, or the log (base 2) of the 
sl@0
   798
  ** number of rows if the proposed scan uses an index.  
sl@0
   799
  */
sl@0
   800
  if( Tcl_GetVar(interp, "echo_module_cost", TCL_GLOBAL_ONLY) ){
sl@0
   801
    cost = atof(Tcl_GetVar(interp, "echo_module_cost", TCL_GLOBAL_ONLY));
sl@0
   802
    useCost = 1;
sl@0
   803
  } else {
sl@0
   804
    zQuery = sqlite3_mprintf("SELECT count(*) FROM %Q", pVtab->zTableName);
sl@0
   805
    if( !zQuery ){
sl@0
   806
      return SQLITE_NOMEM;
sl@0
   807
    }
sl@0
   808
    rc = sqlite3_prepare(pVtab->db, zQuery, -1, &pStmt, 0);
sl@0
   809
    sqlite3_free(zQuery);
sl@0
   810
    if( rc!=SQLITE_OK ){
sl@0
   811
      return rc;
sl@0
   812
    }
sl@0
   813
    sqlite3_step(pStmt);
sl@0
   814
    nRow = sqlite3_column_int(pStmt, 0);
sl@0
   815
    rc = sqlite3_finalize(pStmt);
sl@0
   816
    if( rc!=SQLITE_OK ){
sl@0
   817
      return rc;
sl@0
   818
    }
sl@0
   819
  }
sl@0
   820
sl@0
   821
  zQuery = sqlite3_mprintf("SELECT rowid, * FROM %Q", pVtab->zTableName);
sl@0
   822
  if( !zQuery ){
sl@0
   823
    return SQLITE_NOMEM;
sl@0
   824
  }
sl@0
   825
  for(ii=0; ii<pIdxInfo->nConstraint; ii++){
sl@0
   826
    const struct sqlite3_index_constraint *pConstraint;
sl@0
   827
    struct sqlite3_index_constraint_usage *pUsage;
sl@0
   828
    int iCol;
sl@0
   829
sl@0
   830
    pConstraint = &pIdxInfo->aConstraint[ii];
sl@0
   831
    pUsage = &pIdxInfo->aConstraintUsage[ii];
sl@0
   832
sl@0
   833
    if( !isIgnoreUsable && !pConstraint->usable ) continue;
sl@0
   834
sl@0
   835
    iCol = pConstraint->iColumn;
sl@0
   836
    if( pVtab->aIndex[iCol] || iCol<0 ){
sl@0
   837
      char *zCol = pVtab->aCol[iCol];
sl@0
   838
      char *zOp = 0;
sl@0
   839
      useIdx = 1;
sl@0
   840
      if( iCol<0 ){
sl@0
   841
        zCol = "rowid";
sl@0
   842
      }
sl@0
   843
      switch( pConstraint->op ){
sl@0
   844
        case SQLITE_INDEX_CONSTRAINT_EQ:
sl@0
   845
          zOp = "="; break;
sl@0
   846
        case SQLITE_INDEX_CONSTRAINT_LT:
sl@0
   847
          zOp = "<"; break;
sl@0
   848
        case SQLITE_INDEX_CONSTRAINT_GT:
sl@0
   849
          zOp = ">"; break;
sl@0
   850
        case SQLITE_INDEX_CONSTRAINT_LE:
sl@0
   851
          zOp = "<="; break;
sl@0
   852
        case SQLITE_INDEX_CONSTRAINT_GE:
sl@0
   853
          zOp = ">="; break;
sl@0
   854
        case SQLITE_INDEX_CONSTRAINT_MATCH:
sl@0
   855
          zOp = "LIKE"; break;
sl@0
   856
      }
sl@0
   857
      if( zOp[0]=='L' ){
sl@0
   858
        zNew = sqlite3_mprintf(" %s %s LIKE (SELECT '%%'||?||'%%')", 
sl@0
   859
                               zSep, zCol);
sl@0
   860
      } else {
sl@0
   861
        zNew = sqlite3_mprintf(" %s %s %s ?", zSep, zCol, zOp);
sl@0
   862
      }
sl@0
   863
      string_concat(&zQuery, zNew, 1, &rc);
sl@0
   864
sl@0
   865
      zSep = "AND";
sl@0
   866
      pUsage->argvIndex = ++nArg;
sl@0
   867
      pUsage->omit = 1;
sl@0
   868
    }
sl@0
   869
  }
sl@0
   870
sl@0
   871
  /* If there is only one term in the ORDER BY clause, and it is
sl@0
   872
  ** on a column that this virtual table has an index for, then consume 
sl@0
   873
  ** the ORDER BY clause.
sl@0
   874
  */
sl@0
   875
  if( pIdxInfo->nOrderBy==1 && pVtab->aIndex[pIdxInfo->aOrderBy->iColumn] ){
sl@0
   876
    int iCol = pIdxInfo->aOrderBy->iColumn;
sl@0
   877
    char *zCol = pVtab->aCol[iCol];
sl@0
   878
    char *zDir = pIdxInfo->aOrderBy->desc?"DESC":"ASC";
sl@0
   879
    if( iCol<0 ){
sl@0
   880
      zCol = "rowid";
sl@0
   881
    }
sl@0
   882
    zNew = sqlite3_mprintf(" ORDER BY %s %s", zCol, zDir);
sl@0
   883
    string_concat(&zQuery, zNew, 1, &rc);
sl@0
   884
    pIdxInfo->orderByConsumed = 1;
sl@0
   885
  }
sl@0
   886
sl@0
   887
  appendToEchoModule(pVtab->interp, "xBestIndex");;
sl@0
   888
  appendToEchoModule(pVtab->interp, zQuery);
sl@0
   889
sl@0
   890
  if( !zQuery ){
sl@0
   891
    return rc;
sl@0
   892
  }
sl@0
   893
  pIdxInfo->idxNum = hashString(zQuery);
sl@0
   894
  pIdxInfo->idxStr = zQuery;
sl@0
   895
  pIdxInfo->needToFreeIdxStr = 1;
sl@0
   896
  if (useCost) {
sl@0
   897
    pIdxInfo->estimatedCost = cost;
sl@0
   898
  } else if( useIdx ){
sl@0
   899
    /* Approximation of log2(nRow). */
sl@0
   900
    for( ii=0; ii<(sizeof(int)*8); ii++ ){
sl@0
   901
      if( nRow & (1<<ii) ){
sl@0
   902
        pIdxInfo->estimatedCost = (double)ii;
sl@0
   903
      }
sl@0
   904
    }
sl@0
   905
  } else {
sl@0
   906
    pIdxInfo->estimatedCost = (double)nRow;
sl@0
   907
  }
sl@0
   908
  return rc;
sl@0
   909
}
sl@0
   910
sl@0
   911
/*
sl@0
   912
** The xUpdate method for echo module virtual tables.
sl@0
   913
** 
sl@0
   914
**    apData[0]  apData[1]  apData[2..]
sl@0
   915
**
sl@0
   916
**    INTEGER                              DELETE            
sl@0
   917
**
sl@0
   918
**    INTEGER    NULL       (nCol args)    UPDATE (do not set rowid)
sl@0
   919
**    INTEGER    INTEGER    (nCol args)    UPDATE (with SET rowid = <arg1>)
sl@0
   920
**
sl@0
   921
**    NULL       NULL       (nCol args)    INSERT INTO (automatic rowid value)
sl@0
   922
**    NULL       INTEGER    (nCol args)    INSERT (incl. rowid value)
sl@0
   923
**
sl@0
   924
*/
sl@0
   925
int echoUpdate(
sl@0
   926
  sqlite3_vtab *tab, 
sl@0
   927
  int nData, 
sl@0
   928
  sqlite3_value **apData, 
sl@0
   929
  sqlite_int64 *pRowid
sl@0
   930
){
sl@0
   931
  echo_vtab *pVtab = (echo_vtab *)tab;
sl@0
   932
  sqlite3 *db = pVtab->db;
sl@0
   933
  int rc = SQLITE_OK;
sl@0
   934
sl@0
   935
  sqlite3_stmt *pStmt;
sl@0
   936
  char *z = 0;               /* SQL statement to execute */
sl@0
   937
  int bindArgZero = 0;       /* True to bind apData[0] to sql var no. nData */
sl@0
   938
  int bindArgOne = 0;        /* True to bind apData[1] to sql var no. 1 */
sl@0
   939
  int i;                     /* Counter variable used by for loops */
sl@0
   940
sl@0
   941
  assert( nData==pVtab->nCol+2 || nData==1 );
sl@0
   942
sl@0
   943
  /* Ticket #3083 - make sure we always start a transaction prior to
sl@0
   944
  ** making any changes to a virtual table */
sl@0
   945
  assert( pVtab->inTransaction );
sl@0
   946
sl@0
   947
  if( simulateVtabError(pVtab, "xUpdate") ){
sl@0
   948
    return SQLITE_ERROR;
sl@0
   949
  }
sl@0
   950
sl@0
   951
  /* If apData[0] is an integer and nData>1 then do an UPDATE */
sl@0
   952
  if( nData>1 && sqlite3_value_type(apData[0])==SQLITE_INTEGER ){
sl@0
   953
    char *zSep = " SET";
sl@0
   954
    z = sqlite3_mprintf("UPDATE %Q", pVtab->zTableName);
sl@0
   955
    if( !z ){
sl@0
   956
      rc = SQLITE_NOMEM;
sl@0
   957
    }
sl@0
   958
sl@0
   959
    bindArgOne = (apData[1] && sqlite3_value_type(apData[1])==SQLITE_INTEGER);
sl@0
   960
    bindArgZero = 1;
sl@0
   961
sl@0
   962
    if( bindArgOne ){
sl@0
   963
       string_concat(&z, " SET rowid=?1 ", 0, &rc);
sl@0
   964
       zSep = ",";
sl@0
   965
    }
sl@0
   966
    for(i=2; i<nData; i++){
sl@0
   967
      if( apData[i]==0 ) continue;
sl@0
   968
      string_concat(&z, sqlite3_mprintf(
sl@0
   969
          "%s %Q=?%d", zSep, pVtab->aCol[i-2], i), 1, &rc);
sl@0
   970
      zSep = ",";
sl@0
   971
    }
sl@0
   972
    string_concat(&z, sqlite3_mprintf(" WHERE rowid=?%d", nData), 1, &rc);
sl@0
   973
  }
sl@0
   974
sl@0
   975
  /* If apData[0] is an integer and nData==1 then do a DELETE */
sl@0
   976
  else if( nData==1 && sqlite3_value_type(apData[0])==SQLITE_INTEGER ){
sl@0
   977
    z = sqlite3_mprintf("DELETE FROM %Q WHERE rowid = ?1", pVtab->zTableName);
sl@0
   978
    if( !z ){
sl@0
   979
      rc = SQLITE_NOMEM;
sl@0
   980
    }
sl@0
   981
    bindArgZero = 1;
sl@0
   982
  }
sl@0
   983
sl@0
   984
  /* If the first argument is NULL and there are more than two args, INSERT */
sl@0
   985
  else if( nData>2 && sqlite3_value_type(apData[0])==SQLITE_NULL ){
sl@0
   986
    int ii;
sl@0
   987
    char *zInsert = 0;
sl@0
   988
    char *zValues = 0;
sl@0
   989
  
sl@0
   990
    zInsert = sqlite3_mprintf("INSERT INTO %Q (", pVtab->zTableName);
sl@0
   991
    if( !zInsert ){
sl@0
   992
      rc = SQLITE_NOMEM;
sl@0
   993
    }
sl@0
   994
    if( sqlite3_value_type(apData[1])==SQLITE_INTEGER ){
sl@0
   995
      bindArgOne = 1;
sl@0
   996
      zValues = sqlite3_mprintf("?");
sl@0
   997
      string_concat(&zInsert, "rowid", 0, &rc);
sl@0
   998
    }
sl@0
   999
sl@0
  1000
    assert((pVtab->nCol+2)==nData);
sl@0
  1001
    for(ii=2; ii<nData; ii++){
sl@0
  1002
      string_concat(&zInsert, 
sl@0
  1003
          sqlite3_mprintf("%s%Q", zValues?", ":"", pVtab->aCol[ii-2]), 1, &rc);
sl@0
  1004
      string_concat(&zValues, 
sl@0
  1005
          sqlite3_mprintf("%s?%d", zValues?", ":"", ii), 1, &rc);
sl@0
  1006
    }
sl@0
  1007
sl@0
  1008
    string_concat(&z, zInsert, 1, &rc);
sl@0
  1009
    string_concat(&z, ") VALUES(", 0, &rc);
sl@0
  1010
    string_concat(&z, zValues, 1, &rc);
sl@0
  1011
    string_concat(&z, ")", 0, &rc);
sl@0
  1012
  }
sl@0
  1013
sl@0
  1014
  /* Anything else is an error */
sl@0
  1015
  else{
sl@0
  1016
    assert(0);
sl@0
  1017
    return SQLITE_ERROR;
sl@0
  1018
  }
sl@0
  1019
sl@0
  1020
  if( rc==SQLITE_OK ){
sl@0
  1021
    rc = sqlite3_prepare(db, z, -1, &pStmt, 0);
sl@0
  1022
  }
sl@0
  1023
  assert( rc!=SQLITE_OK || pStmt );
sl@0
  1024
  sqlite3_free(z);
sl@0
  1025
  if( rc==SQLITE_OK ) {
sl@0
  1026
    if( bindArgZero ){
sl@0
  1027
      sqlite3_bind_value(pStmt, nData, apData[0]);
sl@0
  1028
    }
sl@0
  1029
    if( bindArgOne ){
sl@0
  1030
      sqlite3_bind_value(pStmt, 1, apData[1]);
sl@0
  1031
    }
sl@0
  1032
    for(i=2; i<nData && rc==SQLITE_OK; i++){
sl@0
  1033
      if( apData[i] ) rc = sqlite3_bind_value(pStmt, i, apData[i]);
sl@0
  1034
    }
sl@0
  1035
    if( rc==SQLITE_OK ){
sl@0
  1036
      sqlite3_step(pStmt);
sl@0
  1037
      rc = sqlite3_finalize(pStmt);
sl@0
  1038
    }else{
sl@0
  1039
      sqlite3_finalize(pStmt);
sl@0
  1040
    }
sl@0
  1041
  }
sl@0
  1042
sl@0
  1043
  if( pRowid && rc==SQLITE_OK ){
sl@0
  1044
    *pRowid = sqlite3_last_insert_rowid(db);
sl@0
  1045
  }
sl@0
  1046
  if( rc!=SQLITE_OK ){
sl@0
  1047
    tab->zErrMsg = sqlite3_mprintf("echo-vtab-error: %s", sqlite3_errmsg(db));
sl@0
  1048
  }
sl@0
  1049
sl@0
  1050
  return rc;
sl@0
  1051
}
sl@0
  1052
sl@0
  1053
/*
sl@0
  1054
** xBegin, xSync, xCommit and xRollback callbacks for echo module
sl@0
  1055
** virtual tables. Do nothing other than add the name of the callback
sl@0
  1056
** to the $::echo_module Tcl variable.
sl@0
  1057
*/
sl@0
  1058
static int echoTransactionCall(sqlite3_vtab *tab, const char *zCall){
sl@0
  1059
  char *z;
sl@0
  1060
  echo_vtab *pVtab = (echo_vtab *)tab;
sl@0
  1061
  z = sqlite3_mprintf("echo(%s)", pVtab->zTableName);
sl@0
  1062
  if( z==0 ) return SQLITE_NOMEM;
sl@0
  1063
  appendToEchoModule(pVtab->interp, zCall);
sl@0
  1064
  appendToEchoModule(pVtab->interp, z);
sl@0
  1065
  sqlite3_free(z);
sl@0
  1066
  return SQLITE_OK;
sl@0
  1067
}
sl@0
  1068
static int echoBegin(sqlite3_vtab *tab){
sl@0
  1069
  int rc;
sl@0
  1070
  echo_vtab *pVtab = (echo_vtab *)tab;
sl@0
  1071
  Tcl_Interp *interp = pVtab->interp;
sl@0
  1072
  const char *zVal; 
sl@0
  1073
sl@0
  1074
  /* Ticket #3083 - do not start a transaction if we are already in
sl@0
  1075
  ** a transaction */
sl@0
  1076
  assert( !pVtab->inTransaction );
sl@0
  1077
sl@0
  1078
  if( simulateVtabError(pVtab, "xBegin") ){
sl@0
  1079
    return SQLITE_ERROR;
sl@0
  1080
  }
sl@0
  1081
sl@0
  1082
  rc = echoTransactionCall(tab, "xBegin");
sl@0
  1083
sl@0
  1084
  if( rc==SQLITE_OK ){
sl@0
  1085
    /* Check if the $::echo_module_begin_fail variable is defined. If it is,
sl@0
  1086
    ** and it is set to the name of the real table underlying this virtual
sl@0
  1087
    ** echo module table, then cause this xSync operation to fail.
sl@0
  1088
    */
sl@0
  1089
    zVal = Tcl_GetVar(interp, "echo_module_begin_fail", TCL_GLOBAL_ONLY);
sl@0
  1090
    if( zVal && 0==strcmp(zVal, pVtab->zTableName) ){
sl@0
  1091
      rc = SQLITE_ERROR;
sl@0
  1092
    }
sl@0
  1093
  }
sl@0
  1094
  if( rc==SQLITE_OK ){
sl@0
  1095
    pVtab->inTransaction = 1;
sl@0
  1096
  }
sl@0
  1097
  return rc;
sl@0
  1098
}
sl@0
  1099
static int echoSync(sqlite3_vtab *tab){
sl@0
  1100
  int rc;
sl@0
  1101
  echo_vtab *pVtab = (echo_vtab *)tab;
sl@0
  1102
  Tcl_Interp *interp = pVtab->interp;
sl@0
  1103
  const char *zVal; 
sl@0
  1104
sl@0
  1105
  /* Ticket #3083 - Only call xSync if we have previously started a
sl@0
  1106
  ** transaction */
sl@0
  1107
  assert( pVtab->inTransaction );
sl@0
  1108
sl@0
  1109
  if( simulateVtabError(pVtab, "xSync") ){
sl@0
  1110
    return SQLITE_ERROR;
sl@0
  1111
  }
sl@0
  1112
sl@0
  1113
  rc = echoTransactionCall(tab, "xSync");
sl@0
  1114
sl@0
  1115
  if( rc==SQLITE_OK ){
sl@0
  1116
    /* Check if the $::echo_module_sync_fail variable is defined. If it is,
sl@0
  1117
    ** and it is set to the name of the real table underlying this virtual
sl@0
  1118
    ** echo module table, then cause this xSync operation to fail.
sl@0
  1119
    */
sl@0
  1120
    zVal = Tcl_GetVar(interp, "echo_module_sync_fail", TCL_GLOBAL_ONLY);
sl@0
  1121
    if( zVal && 0==strcmp(zVal, pVtab->zTableName) ){
sl@0
  1122
      rc = -1;
sl@0
  1123
    }
sl@0
  1124
  }
sl@0
  1125
  return rc;
sl@0
  1126
}
sl@0
  1127
static int echoCommit(sqlite3_vtab *tab){
sl@0
  1128
  echo_vtab *pVtab = (echo_vtab*)tab;
sl@0
  1129
  int rc;
sl@0
  1130
sl@0
  1131
  /* Ticket #3083 - Only call xCommit if we have previously started
sl@0
  1132
  ** a transaction */
sl@0
  1133
  assert( pVtab->inTransaction );
sl@0
  1134
sl@0
  1135
  if( simulateVtabError(pVtab, "xCommit") ){
sl@0
  1136
    return SQLITE_ERROR;
sl@0
  1137
  }
sl@0
  1138
sl@0
  1139
  sqlite3BeginBenignMalloc();
sl@0
  1140
  rc = echoTransactionCall(tab, "xCommit");
sl@0
  1141
  sqlite3EndBenignMalloc();
sl@0
  1142
  pVtab->inTransaction = 0;
sl@0
  1143
  return rc;
sl@0
  1144
}
sl@0
  1145
static int echoRollback(sqlite3_vtab *tab){
sl@0
  1146
  int rc;
sl@0
  1147
  echo_vtab *pVtab = (echo_vtab*)tab;
sl@0
  1148
sl@0
  1149
  /* Ticket #3083 - Only call xRollback if we have previously started
sl@0
  1150
  ** a transaction */
sl@0
  1151
  assert( pVtab->inTransaction );
sl@0
  1152
sl@0
  1153
  rc = echoTransactionCall(tab, "xRollback");
sl@0
  1154
  pVtab->inTransaction = 0;
sl@0
  1155
  return rc;
sl@0
  1156
}
sl@0
  1157
sl@0
  1158
/*
sl@0
  1159
** Implementation of "GLOB" function on the echo module.  Pass
sl@0
  1160
** all arguments to the ::echo_glob_overload procedure of TCL
sl@0
  1161
** and return the result of that procedure as a string.
sl@0
  1162
*/
sl@0
  1163
static void overloadedGlobFunction(
sl@0
  1164
  sqlite3_context *pContext,
sl@0
  1165
  int nArg,
sl@0
  1166
  sqlite3_value **apArg
sl@0
  1167
){
sl@0
  1168
  Tcl_Interp *interp = sqlite3_user_data(pContext);
sl@0
  1169
  Tcl_DString str;
sl@0
  1170
  int i;
sl@0
  1171
  int rc;
sl@0
  1172
  Tcl_DStringInit(&str);
sl@0
  1173
  Tcl_DStringAppendElement(&str, "::echo_glob_overload");
sl@0
  1174
  for(i=0; i<nArg; i++){
sl@0
  1175
    Tcl_DStringAppendElement(&str, (char*)sqlite3_value_text(apArg[i]));
sl@0
  1176
  }
sl@0
  1177
  rc = Tcl_Eval(interp, Tcl_DStringValue(&str));
sl@0
  1178
  Tcl_DStringFree(&str);
sl@0
  1179
  if( rc ){
sl@0
  1180
    sqlite3_result_error(pContext, Tcl_GetStringResult(interp), -1);
sl@0
  1181
  }else{
sl@0
  1182
    sqlite3_result_text(pContext, Tcl_GetStringResult(interp),
sl@0
  1183
                        -1, SQLITE_TRANSIENT);
sl@0
  1184
  }
sl@0
  1185
  Tcl_ResetResult(interp);
sl@0
  1186
}
sl@0
  1187
sl@0
  1188
/*
sl@0
  1189
** This is the xFindFunction implementation for the echo module.
sl@0
  1190
** SQLite calls this routine when the first argument of a function
sl@0
  1191
** is a column of an echo virtual table.  This routine can optionally
sl@0
  1192
** override the implementation of that function.  It will choose to
sl@0
  1193
** do so if the function is named "glob", and a TCL command named
sl@0
  1194
** ::echo_glob_overload exists.
sl@0
  1195
*/
sl@0
  1196
static int echoFindFunction(
sl@0
  1197
  sqlite3_vtab *vtab,
sl@0
  1198
  int nArg,
sl@0
  1199
  const char *zFuncName,
sl@0
  1200
  void (**pxFunc)(sqlite3_context*,int,sqlite3_value**),
sl@0
  1201
  void **ppArg
sl@0
  1202
){
sl@0
  1203
  echo_vtab *pVtab = (echo_vtab *)vtab;
sl@0
  1204
  Tcl_Interp *interp = pVtab->interp;
sl@0
  1205
  Tcl_CmdInfo info;
sl@0
  1206
  if( strcmp(zFuncName,"glob")!=0 ){
sl@0
  1207
    return 0;
sl@0
  1208
  }
sl@0
  1209
  if( Tcl_GetCommandInfo(interp, "::echo_glob_overload", &info)==0 ){
sl@0
  1210
    return 0;
sl@0
  1211
  }
sl@0
  1212
  *pxFunc = overloadedGlobFunction;
sl@0
  1213
  *ppArg = interp;
sl@0
  1214
  return 1;
sl@0
  1215
}
sl@0
  1216
sl@0
  1217
static int echoRename(sqlite3_vtab *vtab, const char *zNewName){
sl@0
  1218
  int rc = SQLITE_OK;
sl@0
  1219
  echo_vtab *p = (echo_vtab *)vtab;
sl@0
  1220
sl@0
  1221
  if( simulateVtabError(p, "xRename") ){
sl@0
  1222
    return SQLITE_ERROR;
sl@0
  1223
  }
sl@0
  1224
sl@0
  1225
  if( p->isPattern ){
sl@0
  1226
    int nThis = strlen(p->zThis);
sl@0
  1227
    char *zSql = sqlite3MPrintf(0, "ALTER TABLE %s RENAME TO %s%s", 
sl@0
  1228
        p->zTableName, zNewName, &p->zTableName[nThis]
sl@0
  1229
    );
sl@0
  1230
    rc = sqlite3_exec(p->db, zSql, 0, 0, 0);
sl@0
  1231
    sqlite3_free(zSql);
sl@0
  1232
  }
sl@0
  1233
sl@0
  1234
  return rc;
sl@0
  1235
}
sl@0
  1236
sl@0
  1237
/*
sl@0
  1238
** A virtual table module that merely "echos" the contents of another
sl@0
  1239
** table (like an SQL VIEW).
sl@0
  1240
*/
sl@0
  1241
static sqlite3_module echoModule = {
sl@0
  1242
  0,                         /* iVersion */
sl@0
  1243
  echoCreate,
sl@0
  1244
  echoConnect,
sl@0
  1245
  echoBestIndex,
sl@0
  1246
  echoDisconnect, 
sl@0
  1247
  echoDestroy,
sl@0
  1248
  echoOpen,                  /* xOpen - open a cursor */
sl@0
  1249
  echoClose,                 /* xClose - close a cursor */
sl@0
  1250
  echoFilter,                /* xFilter - configure scan constraints */
sl@0
  1251
  echoNext,                  /* xNext - advance a cursor */
sl@0
  1252
  echoEof,                   /* xEof */
sl@0
  1253
  echoColumn,                /* xColumn - read data */
sl@0
  1254
  echoRowid,                 /* xRowid - read data */
sl@0
  1255
  echoUpdate,                /* xUpdate - write data */
sl@0
  1256
  echoBegin,                 /* xBegin - begin transaction */
sl@0
  1257
  echoSync,                  /* xSync - sync transaction */
sl@0
  1258
  echoCommit,                /* xCommit - commit transaction */
sl@0
  1259
  echoRollback,              /* xRollback - rollback transaction */
sl@0
  1260
  echoFindFunction,          /* xFindFunction - function overloading */
sl@0
  1261
  echoRename,                /* xRename - rename the table */
sl@0
  1262
};
sl@0
  1263
sl@0
  1264
/*
sl@0
  1265
** Decode a pointer to an sqlite3 object.
sl@0
  1266
*/
sl@0
  1267
extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
sl@0
  1268
sl@0
  1269
static void moduleDestroy(void *p){
sl@0
  1270
  sqlite3_free(p);
sl@0
  1271
}
sl@0
  1272
sl@0
  1273
/*
sl@0
  1274
** Register the echo virtual table module.
sl@0
  1275
*/
sl@0
  1276
static int register_echo_module(
sl@0
  1277
  ClientData clientData, /* Pointer to sqlite3_enable_XXX function */
sl@0
  1278
  Tcl_Interp *interp,    /* The TCL interpreter that invoked this command */
sl@0
  1279
  int objc,              /* Number of arguments */
sl@0
  1280
  Tcl_Obj *CONST objv[]  /* Command arguments */
sl@0
  1281
){
sl@0
  1282
  sqlite3 *db;
sl@0
  1283
  EchoModule *pMod;
sl@0
  1284
  if( objc!=2 ){
sl@0
  1285
    Tcl_WrongNumArgs(interp, 1, objv, "DB");
sl@0
  1286
    return TCL_ERROR;
sl@0
  1287
  }
sl@0
  1288
  if( getDbPointer(interp, Tcl_GetString(objv[1]), &db) ) return TCL_ERROR;
sl@0
  1289
  pMod = sqlite3_malloc(sizeof(EchoModule));
sl@0
  1290
  pMod->interp = interp;
sl@0
  1291
  sqlite3_create_module_v2(db, "echo", &echoModule, (void*)pMod, moduleDestroy);
sl@0
  1292
  return TCL_OK;
sl@0
  1293
}
sl@0
  1294
sl@0
  1295
/*
sl@0
  1296
** Tcl interface to sqlite3_declare_vtab, invoked as follows from Tcl:
sl@0
  1297
**
sl@0
  1298
** sqlite3_declare_vtab DB SQL
sl@0
  1299
*/
sl@0
  1300
static int declare_vtab(
sl@0
  1301
  ClientData clientData, /* Pointer to sqlite3_enable_XXX function */
sl@0
  1302
  Tcl_Interp *interp,    /* The TCL interpreter that invoked this command */
sl@0
  1303
  int objc,              /* Number of arguments */
sl@0
  1304
  Tcl_Obj *CONST objv[]  /* Command arguments */
sl@0
  1305
){
sl@0
  1306
  sqlite3 *db;
sl@0
  1307
  int rc;
sl@0
  1308
  if( objc!=3 ){
sl@0
  1309
    Tcl_WrongNumArgs(interp, 1, objv, "DB SQL");
sl@0
  1310
    return TCL_ERROR;
sl@0
  1311
  }
sl@0
  1312
  if( getDbPointer(interp, Tcl_GetString(objv[1]), &db) ) return TCL_ERROR;
sl@0
  1313
  rc = sqlite3_declare_vtab(db, Tcl_GetString(objv[2]));
sl@0
  1314
  if( rc!=SQLITE_OK ){
sl@0
  1315
    Tcl_SetResult(interp, (char *)sqlite3_errmsg(db), TCL_VOLATILE);
sl@0
  1316
    return TCL_ERROR;
sl@0
  1317
  }
sl@0
  1318
  return TCL_OK;
sl@0
  1319
}
sl@0
  1320
sl@0
  1321
#endif /* ifndef SQLITE_OMIT_VIRTUALTABLE */
sl@0
  1322
sl@0
  1323
/*
sl@0
  1324
** Register commands with the TCL interpreter.
sl@0
  1325
*/
sl@0
  1326
int Sqlitetest8_Init(Tcl_Interp *interp){
sl@0
  1327
#ifndef SQLITE_OMIT_VIRTUALTABLE
sl@0
  1328
  static struct {
sl@0
  1329
     char *zName;
sl@0
  1330
     Tcl_ObjCmdProc *xProc;
sl@0
  1331
     void *clientData;
sl@0
  1332
  } aObjCmd[] = {
sl@0
  1333
     { "register_echo_module",   register_echo_module, 0 },
sl@0
  1334
     { "sqlite3_declare_vtab",   declare_vtab, 0 },
sl@0
  1335
  };
sl@0
  1336
  int i;
sl@0
  1337
  for(i=0; i<sizeof(aObjCmd)/sizeof(aObjCmd[0]); i++){
sl@0
  1338
    Tcl_CreateObjCommand(interp, aObjCmd[i].zName, 
sl@0
  1339
        aObjCmd[i].xProc, aObjCmd[i].clientData, 0);
sl@0
  1340
  }
sl@0
  1341
#endif
sl@0
  1342
  return TCL_OK;
sl@0
  1343
}