os/persistentdata/persistentstorage/sql/SQLite/main.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/sql/SQLite/main.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,1998 @@
     1.4 +/*
     1.5 +** 2001 September 15
     1.6 +**
     1.7 +** The author disclaims copyright to this source code.  In place of
     1.8 +** a legal notice, here is a blessing:
     1.9 +**
    1.10 +**    May you do good and not evil.
    1.11 +**    May you find forgiveness for yourself and forgive others.
    1.12 +**    May you share freely, never taking more than you give.
    1.13 +**
    1.14 +*************************************************************************
    1.15 +** Main file for the SQLite library.  The routines in this file
    1.16 +** implement the programmer interface to the library.  Routines in
    1.17 +** other files are for internal use by SQLite and should not be
    1.18 +** accessed by users of the library.
    1.19 +**
    1.20 +** $Id: main.c,v 1.486 2008/08/04 20:13:27 drh Exp $
    1.21 +*/
    1.22 +#include "sqliteInt.h"
    1.23 +#include <ctype.h>
    1.24 +
    1.25 +#ifdef SQLITE_ENABLE_FTS3
    1.26 +# include "fts3.h"
    1.27 +#endif
    1.28 +#ifdef SQLITE_ENABLE_RTREE
    1.29 +# include "rtree.h"
    1.30 +#endif
    1.31 +
    1.32 +/*
    1.33 +** The version of the library
    1.34 +*/
    1.35 +const char sqlite3_version[] = SQLITE_VERSION;
    1.36 +const char *sqlite3_libversion(void){ return sqlite3_version; }
    1.37 +int sqlite3_libversion_number(void){ return SQLITE_VERSION_NUMBER; }
    1.38 +int sqlite3_threadsafe(void){ return SQLITE_THREADSAFE; }
    1.39 +
    1.40 +#if !defined(SQLITE_OMIT_TRACE) && defined(SQLITE_ENABLE_IOTRACE)
    1.41 +/*
    1.42 +** If the following function pointer is not NULL and if
    1.43 +** SQLITE_ENABLE_IOTRACE is enabled, then messages describing
    1.44 +** I/O active are written using this function.  These messages
    1.45 +** are intended for debugging activity only.
    1.46 +*/
    1.47 +void (*sqlite3IoTrace)(const char*, ...) = 0;
    1.48 +#endif
    1.49 +
    1.50 +/*
    1.51 +** If the following global variable points to a string which is the
    1.52 +** name of a directory, then that directory will be used to store
    1.53 +** temporary files.
    1.54 +**
    1.55 +** See also the "PRAGMA temp_store_directory" SQL command.
    1.56 +*/
    1.57 +char *sqlite3_temp_directory = 0;
    1.58 +
    1.59 +/*
    1.60 +** Initialize SQLite.  
    1.61 +**
    1.62 +** This routine must be called to initialize the memory allocation,
    1.63 +** VFS, and mutex subsystesms prior to doing any serious work with
    1.64 +** SQLite.  But as long as you do not compile with SQLITE_OMIT_AUTOINIT
    1.65 +** this routine will be called automatically by key routines such as
    1.66 +** sqlite3_open().  
    1.67 +**
    1.68 +** This routine is a no-op except on its very first call for the process,
    1.69 +** or for the first call after a call to sqlite3_shutdown.
    1.70 +*/
    1.71 +int sqlite3_initialize(void){
    1.72 +  static int inProgress = 0;
    1.73 +  int rc;
    1.74 +
    1.75 +  /* If SQLite is already initialized, this call is a no-op. */
    1.76 +  if( sqlite3Config.isInit ) return SQLITE_OK;
    1.77 +
    1.78 +  /* Make sure the mutex system is initialized. */
    1.79 +  rc = sqlite3MutexInit();
    1.80 +
    1.81 +  if( rc==SQLITE_OK ){
    1.82 +
    1.83 +    /* Initialize the malloc() system and the recursive pInitMutex mutex.
    1.84 +    ** This operation is protected by the STATIC_MASTER mutex.
    1.85 +    */
    1.86 +    sqlite3_mutex *pMaster = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
    1.87 +    sqlite3_mutex_enter(pMaster);
    1.88 +    if( !sqlite3Config.isMallocInit ){
    1.89 +      rc = sqlite3MallocInit();
    1.90 +    }
    1.91 +    if( rc==SQLITE_OK ){
    1.92 +      sqlite3Config.isMallocInit = 1;
    1.93 +      if( !sqlite3Config.pInitMutex ){
    1.94 +        sqlite3Config.pInitMutex = sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE);
    1.95 +        if( sqlite3Config.bCoreMutex && !sqlite3Config.pInitMutex ){
    1.96 +          rc = SQLITE_NOMEM;
    1.97 +        }
    1.98 +      }
    1.99 +    }
   1.100 +    sqlite3_mutex_leave(pMaster);
   1.101 +    if( rc!=SQLITE_OK ){
   1.102 +      return rc;
   1.103 +    }
   1.104 +
   1.105 +    /* Enter the recursive pInitMutex mutex. After doing so, if the
   1.106 +    ** sqlite3Config.isInit flag is true, then some other thread has
   1.107 +    ** finished doing the initialization. If the inProgress flag is
   1.108 +    ** true, then this function is being called recursively from within
   1.109 +    ** the sqlite3_os_init() call below. In either case, exit early.
   1.110 +    */
   1.111 +    sqlite3_mutex_enter(sqlite3Config.pInitMutex);
   1.112 +    if( sqlite3Config.isInit || inProgress ){
   1.113 +      sqlite3_mutex_leave(sqlite3Config.pInitMutex);
   1.114 +      return SQLITE_OK;
   1.115 +    }
   1.116 +    sqlite3StatusReset();
   1.117 +    inProgress = 1;
   1.118 +    rc = sqlite3_os_init();
   1.119 +    inProgress = 0;
   1.120 +    sqlite3Config.isInit = (rc==SQLITE_OK ? 1 : 0);
   1.121 +    sqlite3_mutex_leave(sqlite3Config.pInitMutex);
   1.122 +  }
   1.123 +
   1.124 +  /* Check NaN support. */
   1.125 +#ifndef NDEBUG
   1.126 +  /* This section of code's only "output" is via assert() statements. */
   1.127 +  if ( rc==SQLITE_OK ){
   1.128 +    u64 x = (((u64)1)<<63)-1;
   1.129 +    double y;
   1.130 +    assert(sizeof(x)==8);
   1.131 +    assert(sizeof(x)==sizeof(y));
   1.132 +    memcpy(&y, &x, 8);
   1.133 +    assert( sqlite3IsNaN(y) );
   1.134 +  }
   1.135 +#endif
   1.136 +
   1.137 +  return rc;
   1.138 +}
   1.139 +
   1.140 +/*
   1.141 +** Undo the effects of sqlite3_initialize().  Must not be called while
   1.142 +** there are outstanding database connections or memory allocations or
   1.143 +** while any part of SQLite is otherwise in use in any thread.  This
   1.144 +** routine is not threadsafe.  Not by a long shot.
   1.145 +*/
   1.146 +int sqlite3_shutdown(void){
   1.147 +  sqlite3_mutex_free(sqlite3Config.pInitMutex);
   1.148 +  sqlite3Config.pInitMutex = 0;
   1.149 +  sqlite3Config.isMallocInit = 0;
   1.150 +  if( sqlite3Config.isInit ){
   1.151 +    sqlite3_os_end();
   1.152 +  }
   1.153 +  if( sqlite3Config.m.xShutdown ){
   1.154 +    sqlite3MallocEnd();
   1.155 +  }
   1.156 +  if( sqlite3Config.mutex.xMutexEnd ){
   1.157 +    sqlite3MutexEnd();
   1.158 +  }
   1.159 +  sqlite3Config.isInit = 0;
   1.160 +  return SQLITE_OK;
   1.161 +}
   1.162 +
   1.163 +/*
   1.164 +** This API allows applications to modify the global configuration of
   1.165 +** the SQLite library at run-time.
   1.166 +**
   1.167 +** This routine should only be called when there are no outstanding
   1.168 +** database connections or memory allocations.  This routine is not
   1.169 +** threadsafe.  Failure to heed these warnings can lead to unpredictable
   1.170 +** behavior.
   1.171 +*/
   1.172 +int sqlite3_config(int op, ...){
   1.173 +  va_list ap;
   1.174 +  int rc = SQLITE_OK;
   1.175 +
   1.176 +  /* sqlite3_config() shall return SQLITE_MISUSE if it is invoked while
   1.177 +  ** the SQLite library is in use. */
   1.178 +  if( sqlite3Config.isInit ) return SQLITE_MISUSE;
   1.179 +
   1.180 +  va_start(ap, op);
   1.181 +  switch( op ){
   1.182 +    case SQLITE_CONFIG_SINGLETHREAD: {
   1.183 +      /* Disable all mutexing */
   1.184 +      sqlite3Config.bCoreMutex = 0;
   1.185 +      sqlite3Config.bFullMutex = 0;
   1.186 +      break;
   1.187 +    }
   1.188 +    case SQLITE_CONFIG_MULTITHREAD: {
   1.189 +      /* Disable mutexing of database connections */
   1.190 +      /* Enable mutexing of core data structures */
   1.191 +      sqlite3Config.bCoreMutex = 1;
   1.192 +      sqlite3Config.bFullMutex = 0;
   1.193 +      break;
   1.194 +    }
   1.195 +    case SQLITE_CONFIG_SERIALIZED: {
   1.196 +      /* Enable all mutexing */
   1.197 +      sqlite3Config.bCoreMutex = 1;
   1.198 +      sqlite3Config.bFullMutex = 1;
   1.199 +      break;
   1.200 +    }
   1.201 +    case SQLITE_CONFIG_MALLOC: {
   1.202 +      /* Specify an alternative malloc implementation */
   1.203 +      sqlite3Config.m = *va_arg(ap, sqlite3_mem_methods*);
   1.204 +      break;
   1.205 +    }
   1.206 +    case SQLITE_CONFIG_GETMALLOC: {
   1.207 +      /* Retrieve the current malloc() implementation */
   1.208 +      if( sqlite3Config.m.xMalloc==0 ) sqlite3MemSetDefault();
   1.209 +      *va_arg(ap, sqlite3_mem_methods*) = sqlite3Config.m;
   1.210 +      break;
   1.211 +    }
   1.212 +    case SQLITE_CONFIG_MUTEX: {
   1.213 +      /* Specify an alternative mutex implementation */
   1.214 +      sqlite3Config.mutex = *va_arg(ap, sqlite3_mutex_methods*);
   1.215 +      break;
   1.216 +    }
   1.217 +    case SQLITE_CONFIG_GETMUTEX: {
   1.218 +      /* Retrieve the current mutex implementation */
   1.219 +      *va_arg(ap, sqlite3_mutex_methods*) = sqlite3Config.mutex;
   1.220 +      break;
   1.221 +    }
   1.222 +    case SQLITE_CONFIG_MEMSTATUS: {
   1.223 +      /* Enable or disable the malloc status collection */
   1.224 +      sqlite3Config.bMemstat = va_arg(ap, int);
   1.225 +      break;
   1.226 +    }
   1.227 +    case SQLITE_CONFIG_SCRATCH: {
   1.228 +      /* Designate a buffer for scratch memory space */
   1.229 +      sqlite3Config.pScratch = va_arg(ap, void*);
   1.230 +      sqlite3Config.szScratch = va_arg(ap, int);
   1.231 +      sqlite3Config.nScratch = va_arg(ap, int);
   1.232 +      break;
   1.233 +    }
   1.234 +    case SQLITE_CONFIG_PAGECACHE: {
   1.235 +      /* Designate a buffer for scratch memory space */
   1.236 +      sqlite3Config.pPage = va_arg(ap, void*);
   1.237 +      sqlite3Config.szPage = va_arg(ap, int);
   1.238 +      sqlite3Config.nPage = va_arg(ap, int);
   1.239 +      break;
   1.240 +    }
   1.241 +
   1.242 +#if defined(SQLITE_ENABLE_MEMSYS3) || defined(SQLITE_ENABLE_MEMSYS5)
   1.243 +    case SQLITE_CONFIG_HEAP: {
   1.244 +      /* Designate a buffer for heap memory space */
   1.245 +      sqlite3Config.pHeap = va_arg(ap, void*);
   1.246 +      sqlite3Config.nHeap = va_arg(ap, int);
   1.247 +      sqlite3Config.mnReq = va_arg(ap, int);
   1.248 +
   1.249 +      if( sqlite3Config.pHeap==0 ){
   1.250 +        /* If the heap pointer is NULL, then restore the malloc implementation
   1.251 +        ** back to NULL pointers too.  This will cause the malloc to go
   1.252 +        ** back to its default implementation when sqlite3_initialize() is
   1.253 +        ** run.
   1.254 +        */
   1.255 +        memset(&sqlite3Config.m, 0, sizeof(sqlite3Config.m));
   1.256 +      }else{
   1.257 +        /* The heap pointer is not NULL, then install one of the
   1.258 +        ** mem5.c/mem3.c methods. If neither ENABLE_MEMSYS3 nor
   1.259 +        ** ENABLE_MEMSYS5 is defined, return an error.
   1.260 +        ** the default case and return an error.
   1.261 +        */
   1.262 +#ifdef SQLITE_ENABLE_MEMSYS3
   1.263 +        sqlite3Config.m = *sqlite3MemGetMemsys3();
   1.264 +#endif
   1.265 +#ifdef SQLITE_ENABLE_MEMSYS5
   1.266 +        sqlite3Config.m = *sqlite3MemGetMemsys5();
   1.267 +#endif
   1.268 +      }
   1.269 +      break;
   1.270 +    }
   1.271 +#endif
   1.272 +
   1.273 +#if defined(SQLITE_ENABLE_MEMSYS6)
   1.274 +    case SQLITE_CONFIG_CHUNKALLOC: {
   1.275 +      sqlite3Config.nSmall = va_arg(ap, int);
   1.276 +      sqlite3Config.m = *sqlite3MemGetMemsys6();
   1.277 +      break;
   1.278 +    }
   1.279 +#endif
   1.280 +
   1.281 +    case SQLITE_CONFIG_LOOKASIDE: {
   1.282 +      sqlite3Config.szLookaside = va_arg(ap, int);
   1.283 +      sqlite3Config.nLookaside = va_arg(ap, int);
   1.284 +      break;
   1.285 +    }
   1.286 +
   1.287 +    default: {
   1.288 +      rc = SQLITE_ERROR;
   1.289 +      break;
   1.290 +    }
   1.291 +  }
   1.292 +  va_end(ap);
   1.293 +  return rc;
   1.294 +}
   1.295 +
   1.296 +/*
   1.297 +** Set up the lookaside buffers for a database connection.
   1.298 +** Return SQLITE_OK on success.  
   1.299 +** If lookaside is already active, return SQLITE_BUSY.
   1.300 +**
   1.301 +** The sz parameter is the number of bytes in each lookaside slot.
   1.302 +** The cnt parameter is the number of slots.  If pStart is NULL the
   1.303 +** space for the lookaside memory is obtained from sqlite3_malloc().
   1.304 +** If pStart is not NULL then it is sz*cnt bytes of memory to use for
   1.305 +** the lookaside memory.
   1.306 +*/
   1.307 +static int setupLookaside(sqlite3 *db, void *pBuf, int sz, int cnt){
   1.308 +  void *pStart;
   1.309 +  if( db->lookaside.nOut ){
   1.310 +    return SQLITE_BUSY;
   1.311 +  }
   1.312 +  if( sz<0 ) sz = 0;
   1.313 +  if( cnt<0 ) cnt = 0;
   1.314 +  sz = (sz+7)&~7;
   1.315 +  if( pBuf==0 ){
   1.316 +    sqlite3BeginBenignMalloc();
   1.317 +    pStart = sqlite3Malloc( sz*cnt );
   1.318 +    sqlite3EndBenignMalloc();
   1.319 +  }else{
   1.320 +    pStart = pBuf;
   1.321 +  }
   1.322 +  if( db->lookaside.bMalloced ){
   1.323 +    sqlite3_free(db->lookaside.pStart);
   1.324 +  }
   1.325 +  db->lookaside.pStart = pStart;
   1.326 +  db->lookaside.pFree = 0;
   1.327 +  db->lookaside.sz = sz;
   1.328 +  db->lookaside.bMalloced = pBuf==0;
   1.329 +  if( pStart ){
   1.330 +    int i;
   1.331 +    LookasideSlot *p;
   1.332 +    p = (LookasideSlot*)pStart;
   1.333 +    for(i=cnt-1; i>=0; i--){
   1.334 +      p->pNext = db->lookaside.pFree;
   1.335 +      db->lookaside.pFree = p;
   1.336 +      p = (LookasideSlot*)&((u8*)p)[sz];
   1.337 +    }
   1.338 +    db->lookaside.pEnd = p;
   1.339 +    db->lookaside.bEnabled = 1;
   1.340 +  }else{
   1.341 +    db->lookaside.pEnd = 0;
   1.342 +    db->lookaside.bEnabled = 0;
   1.343 +  }
   1.344 +  return SQLITE_OK;
   1.345 +}
   1.346 +
   1.347 +/*
   1.348 +** Configuration settings for an individual database connection
   1.349 +*/
   1.350 +int sqlite3_db_config(sqlite3 *db, int op, ...){
   1.351 +  va_list ap;
   1.352 +  int rc;
   1.353 +  va_start(ap, op);
   1.354 +  switch( op ){
   1.355 +    case SQLITE_DBCONFIG_LOOKASIDE: {
   1.356 +      void *pBuf = va_arg(ap, void*);
   1.357 +      int sz = va_arg(ap, int);
   1.358 +      int cnt = va_arg(ap, int);
   1.359 +      rc = setupLookaside(db, pBuf, sz, cnt);
   1.360 +      break;
   1.361 +    }
   1.362 +    default: {
   1.363 +      rc = SQLITE_ERROR;
   1.364 +      break;
   1.365 +    }
   1.366 +  }
   1.367 +  va_end(ap);
   1.368 +  return rc;
   1.369 +}
   1.370 +
   1.371 +/*
   1.372 +** Routine needed to support the testcase() macro.
   1.373 +*/
   1.374 +#ifdef SQLITE_COVERAGE_TEST
   1.375 +void sqlite3Coverage(int x){
   1.376 +  static int dummy = 0;
   1.377 +  dummy += x;
   1.378 +}
   1.379 +#endif
   1.380 +
   1.381 +
   1.382 +/*
   1.383 +** Return true if the buffer z[0..n-1] contains all spaces.
   1.384 +*/
   1.385 +static int allSpaces(const char *z, int n){
   1.386 +  while( n>0 && z[n-1]==' ' ){ n--; }
   1.387 +  return n==0;
   1.388 +}
   1.389 +
   1.390 +/*
   1.391 +** This is the default collating function named "BINARY" which is always
   1.392 +** available.
   1.393 +**
   1.394 +** If the padFlag argument is not NULL then space padding at the end
   1.395 +** of strings is ignored.  This implements the RTRIM collation.
   1.396 +*/
   1.397 +static int binCollFunc(
   1.398 +  void *padFlag,
   1.399 +  int nKey1, const void *pKey1,
   1.400 +  int nKey2, const void *pKey2
   1.401 +){
   1.402 +  int rc, n;
   1.403 +  n = nKey1<nKey2 ? nKey1 : nKey2;
   1.404 +  rc = memcmp(pKey1, pKey2, n);
   1.405 +  if( rc==0 ){
   1.406 +    if( padFlag
   1.407 +     && allSpaces(((char*)pKey1)+n, nKey1-n)
   1.408 +     && allSpaces(((char*)pKey2)+n, nKey2-n)
   1.409 +    ){
   1.410 +      /* Leave rc unchanged at 0 */
   1.411 +    }else{
   1.412 +      rc = nKey1 - nKey2;
   1.413 +    }
   1.414 +  }
   1.415 +  return rc;
   1.416 +}
   1.417 +
   1.418 +/*
   1.419 +** Another built-in collating sequence: NOCASE. 
   1.420 +**
   1.421 +** This collating sequence is intended to be used for "case independant
   1.422 +** comparison". SQLite's knowledge of upper and lower case equivalents
   1.423 +** extends only to the 26 characters used in the English language.
   1.424 +**
   1.425 +** At the moment there is only a UTF-8 implementation.
   1.426 +*/
   1.427 +static int nocaseCollatingFunc(
   1.428 +  void *NotUsed,
   1.429 +  int nKey1, const void *pKey1,
   1.430 +  int nKey2, const void *pKey2
   1.431 +){
   1.432 +  int r = sqlite3StrNICmp(
   1.433 +      (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
   1.434 +  if( 0==r ){
   1.435 +    r = nKey1-nKey2;
   1.436 +  }
   1.437 +  return r;
   1.438 +}
   1.439 +
   1.440 +/*
   1.441 +** Return the ROWID of the most recent insert
   1.442 +*/
   1.443 +sqlite_int64 sqlite3_last_insert_rowid(sqlite3 *db){
   1.444 +  return db->lastRowid;
   1.445 +}
   1.446 +
   1.447 +/*
   1.448 +** Return the number of changes in the most recent call to sqlite3_exec().
   1.449 +*/
   1.450 +int sqlite3_changes(sqlite3 *db){
   1.451 +  return db->nChange;
   1.452 +}
   1.453 +
   1.454 +/*
   1.455 +** Return the number of changes since the database handle was opened.
   1.456 +*/
   1.457 +int sqlite3_total_changes(sqlite3 *db){
   1.458 +  return db->nTotalChange;
   1.459 +}
   1.460 +
   1.461 +/*
   1.462 +** Close an existing SQLite database
   1.463 +*/
   1.464 +int sqlite3_close(sqlite3 *db){
   1.465 +  HashElem *i;
   1.466 +  int j;
   1.467 +
   1.468 +  if( !db ){
   1.469 +    return SQLITE_OK;
   1.470 +  }
   1.471 +  if( !sqlite3SafetyCheckSickOrOk(db) ){
   1.472 +    return SQLITE_MISUSE;
   1.473 +  }
   1.474 +  sqlite3_mutex_enter(db->mutex);
   1.475 +
   1.476 +#ifdef SQLITE_SSE
   1.477 +  {
   1.478 +    extern void sqlite3SseCleanup(sqlite3*);
   1.479 +    sqlite3SseCleanup(db);
   1.480 +  }
   1.481 +#endif 
   1.482 +
   1.483 +  sqlite3ResetInternalSchema(db, 0);
   1.484 +
   1.485 +  /* If a transaction is open, the ResetInternalSchema() call above
   1.486 +  ** will not have called the xDisconnect() method on any virtual
   1.487 +  ** tables in the db->aVTrans[] array. The following sqlite3VtabRollback()
   1.488 +  ** call will do so. We need to do this before the check for active
   1.489 +  ** SQL statements below, as the v-table implementation may be storing
   1.490 +  ** some prepared statements internally.
   1.491 +  */
   1.492 +  sqlite3VtabRollback(db);
   1.493 +
   1.494 +  /* If there are any outstanding VMs, return SQLITE_BUSY. */
   1.495 +  if( db->pVdbe ){
   1.496 +    sqlite3Error(db, SQLITE_BUSY, 
   1.497 +        "Unable to close due to unfinalised statements");
   1.498 +    sqlite3_mutex_leave(db->mutex);
   1.499 +    return SQLITE_BUSY;
   1.500 +  }
   1.501 +  assert( sqlite3SafetyCheckSickOrOk(db) );
   1.502 +
   1.503 +  for(j=0; j<db->nDb; j++){
   1.504 +    struct Db *pDb = &db->aDb[j];
   1.505 +    if( pDb->pBt ){
   1.506 +      sqlite3BtreeClose(pDb->pBt);
   1.507 +      pDb->pBt = 0;
   1.508 +      if( j!=1 ){
   1.509 +        pDb->pSchema = 0;
   1.510 +      }
   1.511 +    }
   1.512 +  }
   1.513 +  sqlite3ResetInternalSchema(db, 0);
   1.514 +  assert( db->nDb<=2 );
   1.515 +  assert( db->aDb==db->aDbStatic );
   1.516 +  for(i=sqliteHashFirst(&db->aFunc); i; i=sqliteHashNext(i)){
   1.517 +    FuncDef *pFunc, *pNext;
   1.518 +    for(pFunc = (FuncDef*)sqliteHashData(i); pFunc; pFunc=pNext){
   1.519 +      pNext = pFunc->pNext;
   1.520 +      sqlite3DbFree(db, pFunc);
   1.521 +    }
   1.522 +  }
   1.523 +
   1.524 +  for(i=sqliteHashFirst(&db->aCollSeq); i; i=sqliteHashNext(i)){
   1.525 +    CollSeq *pColl = (CollSeq *)sqliteHashData(i);
   1.526 +    /* Invoke any destructors registered for collation sequence user data. */
   1.527 +    for(j=0; j<3; j++){
   1.528 +      if( pColl[j].xDel ){
   1.529 +        pColl[j].xDel(pColl[j].pUser);
   1.530 +      }
   1.531 +    }
   1.532 +    sqlite3DbFree(db, pColl);
   1.533 +  }
   1.534 +  sqlite3HashClear(&db->aCollSeq);
   1.535 +#ifndef SQLITE_OMIT_VIRTUALTABLE
   1.536 +  for(i=sqliteHashFirst(&db->aModule); i; i=sqliteHashNext(i)){
   1.537 +    Module *pMod = (Module *)sqliteHashData(i);
   1.538 +    if( pMod->xDestroy ){
   1.539 +      pMod->xDestroy(pMod->pAux);
   1.540 +    }
   1.541 +    sqlite3DbFree(db, pMod);
   1.542 +  }
   1.543 +  sqlite3HashClear(&db->aModule);
   1.544 +#endif
   1.545 +
   1.546 +  sqlite3HashClear(&db->aFunc);
   1.547 +  sqlite3Error(db, SQLITE_OK, 0); /* Deallocates any cached error strings. */
   1.548 +  if( db->pErr ){
   1.549 +    sqlite3ValueFree(db->pErr);
   1.550 +  }
   1.551 +  sqlite3CloseExtensions(db);
   1.552 +
   1.553 +  db->magic = SQLITE_MAGIC_ERROR;
   1.554 +
   1.555 +  /* The temp-database schema is allocated differently from the other schema
   1.556 +  ** objects (using sqliteMalloc() directly, instead of sqlite3BtreeSchema()).
   1.557 +  ** So it needs to be freed here. Todo: Why not roll the temp schema into
   1.558 +  ** the same sqliteMalloc() as the one that allocates the database 
   1.559 +  ** structure?
   1.560 +  */
   1.561 +  sqlite3DbFree(db, db->aDb[1].pSchema);
   1.562 +  sqlite3_mutex_leave(db->mutex);
   1.563 +  db->magic = SQLITE_MAGIC_CLOSED;
   1.564 +  sqlite3_mutex_free(db->mutex);
   1.565 +  if( db->lookaside.bMalloced ){
   1.566 +    sqlite3_free(db->lookaside.pStart);
   1.567 +  }
   1.568 +  sqlite3_free(db);
   1.569 +  return SQLITE_OK;
   1.570 +}
   1.571 +
   1.572 +/*
   1.573 +** Rollback all database files.
   1.574 +*/
   1.575 +void sqlite3RollbackAll(sqlite3 *db){
   1.576 +  int i;
   1.577 +  int inTrans = 0;
   1.578 +  assert( sqlite3_mutex_held(db->mutex) );
   1.579 +  sqlite3BeginBenignMalloc();
   1.580 +  for(i=0; i<db->nDb; i++){
   1.581 +    if( db->aDb[i].pBt ){
   1.582 +      if( sqlite3BtreeIsInTrans(db->aDb[i].pBt) ){
   1.583 +        inTrans = 1;
   1.584 +      }
   1.585 +      sqlite3BtreeRollback(db->aDb[i].pBt);
   1.586 +      db->aDb[i].inTrans = 0;
   1.587 +    }
   1.588 +  }
   1.589 +  sqlite3VtabRollback(db);
   1.590 +  sqlite3EndBenignMalloc();
   1.591 +
   1.592 +  if( db->flags&SQLITE_InternChanges ){
   1.593 +    sqlite3ExpirePreparedStatements(db);
   1.594 +    sqlite3ResetInternalSchema(db, 0);
   1.595 +  }
   1.596 +
   1.597 +  /* If one has been configured, invoke the rollback-hook callback */
   1.598 +  if( db->xRollbackCallback && (inTrans || !db->autoCommit) ){
   1.599 +    db->xRollbackCallback(db->pRollbackArg);
   1.600 +  }
   1.601 +}
   1.602 +
   1.603 +/*
   1.604 +** Return a static string that describes the kind of error specified in the
   1.605 +** argument.
   1.606 +*/
   1.607 +const char *sqlite3ErrStr(int rc){
   1.608 +  const char *z;
   1.609 +  switch( rc & 0xff ){
   1.610 +    case SQLITE_ROW:
   1.611 +    case SQLITE_DONE:
   1.612 +    case SQLITE_OK:         z = "not an error";                          break;
   1.613 +    case SQLITE_ERROR:      z = "SQL logic error or missing database";   break;
   1.614 +    case SQLITE_PERM:       z = "access permission denied";              break;
   1.615 +    case SQLITE_ABORT:      z = "callback requested query abort";        break;
   1.616 +    case SQLITE_BUSY:       z = "database is locked";                    break;
   1.617 +    case SQLITE_LOCKED:     z = "database table is locked";              break;
   1.618 +    case SQLITE_NOMEM:      z = "out of memory";                         break;
   1.619 +    case SQLITE_READONLY:   z = "attempt to write a readonly database";  break;
   1.620 +    case SQLITE_INTERRUPT:  z = "interrupted";                           break;
   1.621 +    case SQLITE_IOERR:      z = "disk I/O error";                        break;
   1.622 +    case SQLITE_CORRUPT:    z = "database disk image is malformed";      break;
   1.623 +    case SQLITE_FULL:       z = "database or disk is full";              break;
   1.624 +    case SQLITE_CANTOPEN:   z = "unable to open database file";          break;
   1.625 +    case SQLITE_EMPTY:      z = "table contains no data";                break;
   1.626 +    case SQLITE_SCHEMA:     z = "database schema has changed";           break;
   1.627 +    case SQLITE_TOOBIG:     z = "String or BLOB exceeded size limit";    break;
   1.628 +    case SQLITE_CONSTRAINT: z = "constraint failed";                     break;
   1.629 +    case SQLITE_MISMATCH:   z = "datatype mismatch";                     break;
   1.630 +    case SQLITE_MISUSE:     z = "library routine called out of sequence";break;
   1.631 +    case SQLITE_NOLFS:      z = "large file support is disabled";        break;
   1.632 +    case SQLITE_AUTH:       z = "authorization denied";                  break;
   1.633 +    case SQLITE_FORMAT:     z = "auxiliary database format error";       break;
   1.634 +    case SQLITE_RANGE:      z = "bind or column index out of range";     break;
   1.635 +    case SQLITE_NOTADB:     z = "file is encrypted or is not a database";break;
   1.636 +    default:                z = "unknown error";                         break;
   1.637 +  }
   1.638 +  return z;
   1.639 +}
   1.640 +
   1.641 +/*
   1.642 +** This routine implements a busy callback that sleeps and tries
   1.643 +** again until a timeout value is reached.  The timeout value is
   1.644 +** an integer number of milliseconds passed in as the first
   1.645 +** argument.
   1.646 +*/
   1.647 +static int sqliteDefaultBusyCallback(
   1.648 + void *ptr,               /* Database connection */
   1.649 + int count                /* Number of times table has been busy */
   1.650 +){
   1.651 +#if SQLITE_OS_WIN || (defined(HAVE_USLEEP) && HAVE_USLEEP)
   1.652 +  static const u8 delays[] =
   1.653 +     { 1, 2, 5, 10, 15, 20, 25, 25,  25,  50,  50, 100 };
   1.654 +  static const u8 totals[] =
   1.655 +     { 0, 1, 3,  8, 18, 33, 53, 78, 103, 128, 178, 228 };
   1.656 +# define NDELAY (sizeof(delays)/sizeof(delays[0]))
   1.657 +  sqlite3 *db = (sqlite3 *)ptr;
   1.658 +  int timeout = db->busyTimeout;
   1.659 +  int delay, prior;
   1.660 +
   1.661 +  assert( count>=0 );
   1.662 +  if( count < NDELAY ){
   1.663 +    delay = delays[count];
   1.664 +    prior = totals[count];
   1.665 +  }else{
   1.666 +    delay = delays[NDELAY-1];
   1.667 +    prior = totals[NDELAY-1] + delay*(count-(NDELAY-1));
   1.668 +  }
   1.669 +  if( prior + delay > timeout ){
   1.670 +    delay = timeout - prior;
   1.671 +    if( delay<=0 ) return 0;
   1.672 +  }
   1.673 +  sqlite3OsSleep(db->pVfs, delay*1000);
   1.674 +  return 1;
   1.675 +#else
   1.676 +  sqlite3 *db = (sqlite3 *)ptr;
   1.677 +  int timeout = ((sqlite3 *)ptr)->busyTimeout;
   1.678 +  if( (count+1)*1000 > timeout ){
   1.679 +    return 0;
   1.680 +  }
   1.681 +  sqlite3OsSleep(db->pVfs, 1000000);
   1.682 +  return 1;
   1.683 +#endif
   1.684 +}
   1.685 +
   1.686 +/*
   1.687 +** Invoke the given busy handler.
   1.688 +**
   1.689 +** This routine is called when an operation failed with a lock.
   1.690 +** If this routine returns non-zero, the lock is retried.  If it
   1.691 +** returns 0, the operation aborts with an SQLITE_BUSY error.
   1.692 +*/
   1.693 +int sqlite3InvokeBusyHandler(BusyHandler *p){
   1.694 +  int rc;
   1.695 +  if( NEVER(p==0) || p->xFunc==0 || p->nBusy<0 ) return 0;
   1.696 +  rc = p->xFunc(p->pArg, p->nBusy);
   1.697 +  if( rc==0 ){
   1.698 +    p->nBusy = -1;
   1.699 +  }else{
   1.700 +    p->nBusy++;
   1.701 +  }
   1.702 +  return rc; 
   1.703 +}
   1.704 +
   1.705 +/*
   1.706 +** This routine sets the busy callback for an Sqlite database to the
   1.707 +** given callback function with the given argument.
   1.708 +*/
   1.709 +int sqlite3_busy_handler(
   1.710 +  sqlite3 *db,
   1.711 +  int (*xBusy)(void*,int),
   1.712 +  void *pArg
   1.713 +){
   1.714 +  sqlite3_mutex_enter(db->mutex);
   1.715 +  db->busyHandler.xFunc = xBusy;
   1.716 +  db->busyHandler.pArg = pArg;
   1.717 +  db->busyHandler.nBusy = 0;
   1.718 +  sqlite3_mutex_leave(db->mutex);
   1.719 +  return SQLITE_OK;
   1.720 +}
   1.721 +
   1.722 +#ifndef SQLITE_OMIT_PROGRESS_CALLBACK
   1.723 +/*
   1.724 +** This routine sets the progress callback for an Sqlite database to the
   1.725 +** given callback function with the given argument. The progress callback will
   1.726 +** be invoked every nOps opcodes.
   1.727 +*/
   1.728 +void sqlite3_progress_handler(
   1.729 +  sqlite3 *db, 
   1.730 +  int nOps,
   1.731 +  int (*xProgress)(void*), 
   1.732 +  void *pArg
   1.733 +){
   1.734 +  sqlite3_mutex_enter(db->mutex);
   1.735 +  if( nOps>0 ){
   1.736 +    db->xProgress = xProgress;
   1.737 +    db->nProgressOps = nOps;
   1.738 +    db->pProgressArg = pArg;
   1.739 +  }else{
   1.740 +    db->xProgress = 0;
   1.741 +    db->nProgressOps = 0;
   1.742 +    db->pProgressArg = 0;
   1.743 +  }
   1.744 +  sqlite3_mutex_leave(db->mutex);
   1.745 +}
   1.746 +#endif
   1.747 +
   1.748 +
   1.749 +/*
   1.750 +** This routine installs a default busy handler that waits for the
   1.751 +** specified number of milliseconds before returning 0.
   1.752 +*/
   1.753 +int sqlite3_busy_timeout(sqlite3 *db, int ms){
   1.754 +  if( ms>0 ){
   1.755 +    db->busyTimeout = ms;
   1.756 +    sqlite3_busy_handler(db, sqliteDefaultBusyCallback, (void*)db);
   1.757 +  }else{
   1.758 +    sqlite3_busy_handler(db, 0, 0);
   1.759 +  }
   1.760 +  return SQLITE_OK;
   1.761 +}
   1.762 +
   1.763 +/*
   1.764 +** Cause any pending operation to stop at its earliest opportunity.
   1.765 +*/
   1.766 +void sqlite3_interrupt(sqlite3 *db){
   1.767 +  db->u1.isInterrupted = 1;
   1.768 +}
   1.769 +
   1.770 +
   1.771 +/*
   1.772 +** This function is exactly the same as sqlite3_create_function(), except
   1.773 +** that it is designed to be called by internal code. The difference is
   1.774 +** that if a malloc() fails in sqlite3_create_function(), an error code
   1.775 +** is returned and the mallocFailed flag cleared. 
   1.776 +*/
   1.777 +int sqlite3CreateFunc(
   1.778 +  sqlite3 *db,
   1.779 +  const char *zFunctionName,
   1.780 +  int nArg,
   1.781 +  int enc,
   1.782 +  void *pUserData,
   1.783 +  void (*xFunc)(sqlite3_context*,int,sqlite3_value **),
   1.784 +  void (*xStep)(sqlite3_context*,int,sqlite3_value **),
   1.785 +  void (*xFinal)(sqlite3_context*)
   1.786 +){
   1.787 +  FuncDef *p;
   1.788 +  int nName;
   1.789 +
   1.790 +  assert( sqlite3_mutex_held(db->mutex) );
   1.791 +  if( zFunctionName==0 ||
   1.792 +      (xFunc && (xFinal || xStep)) || 
   1.793 +      (!xFunc && (xFinal && !xStep)) ||
   1.794 +      (!xFunc && (!xFinal && xStep)) ||
   1.795 +      (nArg<-1 || nArg>SQLITE_MAX_FUNCTION_ARG) ||
   1.796 +      (255<(nName = sqlite3Strlen(db, zFunctionName))) ){
   1.797 +    sqlite3Error(db, SQLITE_ERROR, "bad parameters");
   1.798 +    return SQLITE_ERROR;
   1.799 +  }
   1.800 +  
   1.801 +#ifndef SQLITE_OMIT_UTF16
   1.802 +  /* If SQLITE_UTF16 is specified as the encoding type, transform this
   1.803 +  ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the
   1.804 +  ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally.
   1.805 +  **
   1.806 +  ** If SQLITE_ANY is specified, add three versions of the function
   1.807 +  ** to the hash table.
   1.808 +  */
   1.809 +  if( enc==SQLITE_UTF16 ){
   1.810 +    enc = SQLITE_UTF16NATIVE;
   1.811 +  }else if( enc==SQLITE_ANY ){
   1.812 +    int rc;
   1.813 +    rc = sqlite3CreateFunc(db, zFunctionName, nArg, SQLITE_UTF8,
   1.814 +         pUserData, xFunc, xStep, xFinal);
   1.815 +    if( rc==SQLITE_OK ){
   1.816 +      rc = sqlite3CreateFunc(db, zFunctionName, nArg, SQLITE_UTF16LE,
   1.817 +          pUserData, xFunc, xStep, xFinal);
   1.818 +    }
   1.819 +    if( rc!=SQLITE_OK ){
   1.820 +      return rc;
   1.821 +    }
   1.822 +    enc = SQLITE_UTF16BE;
   1.823 +  }
   1.824 +#else
   1.825 +  enc = SQLITE_UTF8;
   1.826 +#endif
   1.827 +  
   1.828 +  /* Check if an existing function is being overridden or deleted. If so,
   1.829 +  ** and there are active VMs, then return SQLITE_BUSY. If a function
   1.830 +  ** is being overridden/deleted but there are no active VMs, allow the
   1.831 +  ** operation to continue but invalidate all precompiled statements.
   1.832 +  */
   1.833 +  p = sqlite3FindFunction(db, zFunctionName, nName, nArg, enc, 0);
   1.834 +  if( p && p->iPrefEnc==enc && p->nArg==nArg ){
   1.835 +    if( db->activeVdbeCnt ){
   1.836 +      sqlite3Error(db, SQLITE_BUSY, 
   1.837 +        "Unable to delete/modify user-function due to active statements");
   1.838 +      assert( !db->mallocFailed );
   1.839 +      return SQLITE_BUSY;
   1.840 +    }else{
   1.841 +      sqlite3ExpirePreparedStatements(db);
   1.842 +    }
   1.843 +  }
   1.844 +
   1.845 +  p = sqlite3FindFunction(db, zFunctionName, nName, nArg, enc, 1);
   1.846 +  assert(p || db->mallocFailed);
   1.847 +  if( !p ){
   1.848 +    return SQLITE_NOMEM;
   1.849 +  }
   1.850 +  p->flags = 0;
   1.851 +  p->xFunc = xFunc;
   1.852 +  p->xStep = xStep;
   1.853 +  p->xFinalize = xFinal;
   1.854 +  p->pUserData = pUserData;
   1.855 +  p->nArg = nArg;
   1.856 +  return SQLITE_OK;
   1.857 +}
   1.858 +
   1.859 +/*
   1.860 +** Create new user functions.
   1.861 +*/
   1.862 +int sqlite3_create_function(
   1.863 +  sqlite3 *db,
   1.864 +  const char *zFunctionName,
   1.865 +  int nArg,
   1.866 +  int enc,
   1.867 +  void *p,
   1.868 +  void (*xFunc)(sqlite3_context*,int,sqlite3_value **),
   1.869 +  void (*xStep)(sqlite3_context*,int,sqlite3_value **),
   1.870 +  void (*xFinal)(sqlite3_context*)
   1.871 +){
   1.872 +  int rc;
   1.873 +  sqlite3_mutex_enter(db->mutex);
   1.874 +  rc = sqlite3CreateFunc(db, zFunctionName, nArg, enc, p, xFunc, xStep, xFinal);
   1.875 +  rc = sqlite3ApiExit(db, rc);
   1.876 +  sqlite3_mutex_leave(db->mutex);
   1.877 +  return rc;
   1.878 +}
   1.879 +
   1.880 +#ifndef SQLITE_OMIT_UTF16
   1.881 +int sqlite3_create_function16(
   1.882 +  sqlite3 *db,
   1.883 +  const void *zFunctionName,
   1.884 +  int nArg,
   1.885 +  int eTextRep,
   1.886 +  void *p,
   1.887 +  void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
   1.888 +  void (*xStep)(sqlite3_context*,int,sqlite3_value**),
   1.889 +  void (*xFinal)(sqlite3_context*)
   1.890 +){
   1.891 +  int rc;
   1.892 +  char *zFunc8;
   1.893 +  sqlite3_mutex_enter(db->mutex);
   1.894 +  assert( !db->mallocFailed );
   1.895 +  zFunc8 = sqlite3Utf16to8(db, zFunctionName, -1);
   1.896 +  rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xFunc, xStep, xFinal);
   1.897 +  sqlite3DbFree(db, zFunc8);
   1.898 +  rc = sqlite3ApiExit(db, rc);
   1.899 +  sqlite3_mutex_leave(db->mutex);
   1.900 +  return rc;
   1.901 +}
   1.902 +#endif
   1.903 +
   1.904 +
   1.905 +/*
   1.906 +** Declare that a function has been overloaded by a virtual table.
   1.907 +**
   1.908 +** If the function already exists as a regular global function, then
   1.909 +** this routine is a no-op.  If the function does not exist, then create
   1.910 +** a new one that always throws a run-time error.  
   1.911 +**
   1.912 +** When virtual tables intend to provide an overloaded function, they
   1.913 +** should call this routine to make sure the global function exists.
   1.914 +** A global function must exist in order for name resolution to work
   1.915 +** properly.
   1.916 +*/
   1.917 +int sqlite3_overload_function(
   1.918 +  sqlite3 *db,
   1.919 +  const char *zName,
   1.920 +  int nArg
   1.921 +){
   1.922 +  int nName = sqlite3Strlen(db, zName);
   1.923 +  int rc;
   1.924 +  sqlite3_mutex_enter(db->mutex);
   1.925 +  if( sqlite3FindFunction(db, zName, nName, nArg, SQLITE_UTF8, 0)==0 ){
   1.926 +    sqlite3CreateFunc(db, zName, nArg, SQLITE_UTF8,
   1.927 +                      0, sqlite3InvalidFunction, 0, 0);
   1.928 +  }
   1.929 +  rc = sqlite3ApiExit(db, SQLITE_OK);
   1.930 +  sqlite3_mutex_leave(db->mutex);
   1.931 +  return rc;
   1.932 +}
   1.933 +
   1.934 +#ifndef SQLITE_OMIT_TRACE
   1.935 +/*
   1.936 +** Register a trace function.  The pArg from the previously registered trace
   1.937 +** is returned.  
   1.938 +**
   1.939 +** A NULL trace function means that no tracing is executes.  A non-NULL
   1.940 +** trace is a pointer to a function that is invoked at the start of each
   1.941 +** SQL statement.
   1.942 +*/
   1.943 +void *sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg){
   1.944 +  void *pOld;
   1.945 +  sqlite3_mutex_enter(db->mutex);
   1.946 +  pOld = db->pTraceArg;
   1.947 +  db->xTrace = xTrace;
   1.948 +  db->pTraceArg = pArg;
   1.949 +  sqlite3_mutex_leave(db->mutex);
   1.950 +  return pOld;
   1.951 +}
   1.952 +/*
   1.953 +** Register a profile function.  The pArg from the previously registered 
   1.954 +** profile function is returned.  
   1.955 +**
   1.956 +** A NULL profile function means that no profiling is executes.  A non-NULL
   1.957 +** profile is a pointer to a function that is invoked at the conclusion of
   1.958 +** each SQL statement that is run.
   1.959 +*/
   1.960 +void *sqlite3_profile(
   1.961 +  sqlite3 *db,
   1.962 +  void (*xProfile)(void*,const char*,sqlite_uint64),
   1.963 +  void *pArg
   1.964 +){
   1.965 +  void *pOld;
   1.966 +  sqlite3_mutex_enter(db->mutex);
   1.967 +  pOld = db->pProfileArg;
   1.968 +  db->xProfile = xProfile;
   1.969 +  db->pProfileArg = pArg;
   1.970 +  sqlite3_mutex_leave(db->mutex);
   1.971 +  return pOld;
   1.972 +}
   1.973 +#endif /* SQLITE_OMIT_TRACE */
   1.974 +
   1.975 +/*** EXPERIMENTAL ***
   1.976 +**
   1.977 +** Register a function to be invoked when a transaction comments.
   1.978 +** If the invoked function returns non-zero, then the commit becomes a
   1.979 +** rollback.
   1.980 +*/
   1.981 +void *sqlite3_commit_hook(
   1.982 +  sqlite3 *db,              /* Attach the hook to this database */
   1.983 +  int (*xCallback)(void*),  /* Function to invoke on each commit */
   1.984 +  void *pArg                /* Argument to the function */
   1.985 +){
   1.986 +  void *pOld;
   1.987 +  sqlite3_mutex_enter(db->mutex);
   1.988 +  pOld = db->pCommitArg;
   1.989 +  db->xCommitCallback = xCallback;
   1.990 +  db->pCommitArg = pArg;
   1.991 +  sqlite3_mutex_leave(db->mutex);
   1.992 +  return pOld;
   1.993 +}
   1.994 +
   1.995 +/*
   1.996 +** Register a callback to be invoked each time a row is updated,
   1.997 +** inserted or deleted using this database connection.
   1.998 +*/
   1.999 +void *sqlite3_update_hook(
  1.1000 +  sqlite3 *db,              /* Attach the hook to this database */
  1.1001 +  void (*xCallback)(void*,int,char const *,char const *,sqlite_int64),
  1.1002 +  void *pArg                /* Argument to the function */
  1.1003 +){
  1.1004 +  void *pRet;
  1.1005 +  sqlite3_mutex_enter(db->mutex);
  1.1006 +  pRet = db->pUpdateArg;
  1.1007 +  db->xUpdateCallback = xCallback;
  1.1008 +  db->pUpdateArg = pArg;
  1.1009 +  sqlite3_mutex_leave(db->mutex);
  1.1010 +  return pRet;
  1.1011 +}
  1.1012 +
  1.1013 +/*
  1.1014 +** Register a callback to be invoked each time a transaction is rolled
  1.1015 +** back by this database connection.
  1.1016 +*/
  1.1017 +void *sqlite3_rollback_hook(
  1.1018 +  sqlite3 *db,              /* Attach the hook to this database */
  1.1019 +  void (*xCallback)(void*), /* Callback function */
  1.1020 +  void *pArg                /* Argument to the function */
  1.1021 +){
  1.1022 +  void *pRet;
  1.1023 +  sqlite3_mutex_enter(db->mutex);
  1.1024 +  pRet = db->pRollbackArg;
  1.1025 +  db->xRollbackCallback = xCallback;
  1.1026 +  db->pRollbackArg = pArg;
  1.1027 +  sqlite3_mutex_leave(db->mutex);
  1.1028 +  return pRet;
  1.1029 +}
  1.1030 +
  1.1031 +/*
  1.1032 +** This routine is called to create a connection to a database BTree
  1.1033 +** driver.  If zFilename is the name of a file, then that file is
  1.1034 +** opened and used.  If zFilename is the magic name ":memory:" then
  1.1035 +** the database is stored in memory (and is thus forgotten as soon as
  1.1036 +** the connection is closed.)  If zFilename is NULL then the database
  1.1037 +** is a "virtual" database for transient use only and is deleted as
  1.1038 +** soon as the connection is closed.
  1.1039 +**
  1.1040 +** A virtual database can be either a disk file (that is automatically
  1.1041 +** deleted when the file is closed) or it an be held entirely in memory,
  1.1042 +** depending on the values of the SQLITE_TEMP_STORE compile-time macro and the
  1.1043 +** db->temp_store variable, according to the following chart:
  1.1044 +**
  1.1045 +**   SQLITE_TEMP_STORE     db->temp_store     Location of temporary database
  1.1046 +**   -----------------     --------------     ------------------------------
  1.1047 +**   0                     any                file
  1.1048 +**   1                     1                  file
  1.1049 +**   1                     2                  memory
  1.1050 +**   1                     0                  file
  1.1051 +**   2                     1                  file
  1.1052 +**   2                     2                  memory
  1.1053 +**   2                     0                  memory
  1.1054 +**   3                     any                memory
  1.1055 +*/
  1.1056 +int sqlite3BtreeFactory(
  1.1057 +  const sqlite3 *db,        /* Main database when opening aux otherwise 0 */
  1.1058 +  const char *zFilename,    /* Name of the file containing the BTree database */
  1.1059 +  int omitJournal,          /* if TRUE then do not journal this file */
  1.1060 +  int nCache,               /* How many pages in the page cache */
  1.1061 +  int vfsFlags,             /* Flags passed through to vfsOpen */
  1.1062 +  Btree **ppBtree           /* Pointer to new Btree object written here */
  1.1063 +){
  1.1064 +  int btFlags = 0;
  1.1065 +  int rc;
  1.1066 +  
  1.1067 +  assert( sqlite3_mutex_held(db->mutex) );
  1.1068 +  assert( ppBtree != 0);
  1.1069 +  if( omitJournal ){
  1.1070 +    btFlags |= BTREE_OMIT_JOURNAL;
  1.1071 +  }
  1.1072 +  if( db->flags & SQLITE_NoReadlock ){
  1.1073 +    btFlags |= BTREE_NO_READLOCK;
  1.1074 +  }
  1.1075 +  if( zFilename==0 ){
  1.1076 +#if SQLITE_TEMP_STORE==0
  1.1077 +    /* Do nothing */
  1.1078 +#endif
  1.1079 +#ifndef SQLITE_OMIT_MEMORYDB
  1.1080 +#if SQLITE_TEMP_STORE==1
  1.1081 +    if( db->temp_store==2 ) zFilename = ":memory:";
  1.1082 +#endif
  1.1083 +#if SQLITE_TEMP_STORE==2
  1.1084 +    if( db->temp_store!=1 ) zFilename = ":memory:";
  1.1085 +#endif
  1.1086 +#if SQLITE_TEMP_STORE==3
  1.1087 +    zFilename = ":memory:";
  1.1088 +#endif
  1.1089 +#endif /* SQLITE_OMIT_MEMORYDB */
  1.1090 +  }
  1.1091 +
  1.1092 +  if( (vfsFlags & SQLITE_OPEN_MAIN_DB)!=0 && (zFilename==0 || *zFilename==0) ){
  1.1093 +    vfsFlags = (vfsFlags & ~SQLITE_OPEN_MAIN_DB) | SQLITE_OPEN_TEMP_DB;
  1.1094 +  }
  1.1095 +  rc = sqlite3BtreeOpen(zFilename, (sqlite3 *)db, ppBtree, btFlags, vfsFlags);
  1.1096 +
  1.1097 +  /* If the B-Tree was successfully opened, set the pager-cache size to the
  1.1098 +  ** default value. Except, if the call to BtreeOpen() returned a handle
  1.1099 +  ** open on an existing shared pager-cache, do not change the pager-cache 
  1.1100 +  ** size.
  1.1101 +  */
  1.1102 +  if( rc==SQLITE_OK && 0==sqlite3BtreeSchema(*ppBtree, 0, 0) ){
  1.1103 +    sqlite3BtreeSetCacheSize(*ppBtree, nCache);
  1.1104 +  }
  1.1105 +  return rc;
  1.1106 +}
  1.1107 +
  1.1108 +/*
  1.1109 +** Return UTF-8 encoded English language explanation of the most recent
  1.1110 +** error.
  1.1111 +*/
  1.1112 +const char *sqlite3_errmsg(sqlite3 *db){
  1.1113 +  const char *z;
  1.1114 +  if( !db ){
  1.1115 +    return sqlite3ErrStr(SQLITE_NOMEM);
  1.1116 +  }
  1.1117 +  if( !sqlite3SafetyCheckSickOrOk(db) ){
  1.1118 +    return sqlite3ErrStr(SQLITE_MISUSE);
  1.1119 +  }
  1.1120 +  sqlite3_mutex_enter(db->mutex);
  1.1121 +  assert( !db->mallocFailed );
  1.1122 +  z = (char*)sqlite3_value_text(db->pErr);
  1.1123 +  assert( !db->mallocFailed );
  1.1124 +  if( z==0 ){
  1.1125 +    z = sqlite3ErrStr(db->errCode);
  1.1126 +  }
  1.1127 +  sqlite3_mutex_leave(db->mutex);
  1.1128 +  return z;
  1.1129 +}
  1.1130 +
  1.1131 +#ifndef SQLITE_OMIT_UTF16
  1.1132 +/*
  1.1133 +** Return UTF-16 encoded English language explanation of the most recent
  1.1134 +** error.
  1.1135 +*/
  1.1136 +const void *sqlite3_errmsg16(sqlite3 *db){
  1.1137 +  static const u16 outOfMem[] = {
  1.1138 +    'o', 'u', 't', ' ', 'o', 'f', ' ', 'm', 'e', 'm', 'o', 'r', 'y', 0
  1.1139 +  };
  1.1140 +  static const u16 misuse[] = {
  1.1141 +    'l', 'i', 'b', 'r', 'a', 'r', 'y', ' ',
  1.1142 +    'r', 'o', 'u', 't', 'i', 'n', 'e', ' ',
  1.1143 +    'c', 'a', 'l', 'l', 'e', 'd', ' ',
  1.1144 +    'o', 'u', 't', ' ',
  1.1145 +    'o', 'f', ' ',
  1.1146 +    's', 'e', 'q', 'u', 'e', 'n', 'c', 'e', 0
  1.1147 +  };
  1.1148 +
  1.1149 +  const void *z;
  1.1150 +  if( !db ){
  1.1151 +    return (void *)outOfMem;
  1.1152 +  }
  1.1153 +  if( !sqlite3SafetyCheckSickOrOk(db) ){
  1.1154 +    return (void *)misuse;
  1.1155 +  }
  1.1156 +  sqlite3_mutex_enter(db->mutex);
  1.1157 +  assert( !db->mallocFailed );
  1.1158 +  z = sqlite3_value_text16(db->pErr);
  1.1159 +  if( z==0 ){
  1.1160 +    sqlite3ValueSetStr(db->pErr, -1, sqlite3ErrStr(db->errCode),
  1.1161 +         SQLITE_UTF8, SQLITE_STATIC);
  1.1162 +    z = sqlite3_value_text16(db->pErr);
  1.1163 +  }
  1.1164 +  /* A malloc() may have failed within the call to sqlite3_value_text16()
  1.1165 +  ** above. If this is the case, then the db->mallocFailed flag needs to
  1.1166 +  ** be cleared before returning. Do this directly, instead of via
  1.1167 +  ** sqlite3ApiExit(), to avoid setting the database handle error message.
  1.1168 +  */
  1.1169 +  db->mallocFailed = 0;
  1.1170 +  sqlite3_mutex_leave(db->mutex);
  1.1171 +  return z;
  1.1172 +}
  1.1173 +#endif /* SQLITE_OMIT_UTF16 */
  1.1174 +
  1.1175 +/*
  1.1176 +** Return the most recent error code generated by an SQLite routine. If NULL is
  1.1177 +** passed to this function, we assume a malloc() failed during sqlite3_open().
  1.1178 +*/
  1.1179 +int sqlite3_errcode(sqlite3 *db){
  1.1180 +  if( db && !sqlite3SafetyCheckSickOrOk(db) ){
  1.1181 +    return SQLITE_MISUSE;
  1.1182 +  }
  1.1183 +  if( !db || db->mallocFailed ){
  1.1184 +    return SQLITE_NOMEM;
  1.1185 +  }
  1.1186 +  return db->errCode & db->errMask;
  1.1187 +}
  1.1188 +
  1.1189 +/*
  1.1190 +** Create a new collating function for database "db".  The name is zName
  1.1191 +** and the encoding is enc.
  1.1192 +*/
  1.1193 +static int createCollation(
  1.1194 +  sqlite3* db, 
  1.1195 +  const char *zName, 
  1.1196 +  int enc, 
  1.1197 +  void* pCtx,
  1.1198 +  int(*xCompare)(void*,int,const void*,int,const void*),
  1.1199 +  void(*xDel)(void*)
  1.1200 +){
  1.1201 +  CollSeq *pColl;
  1.1202 +  int enc2;
  1.1203 +  int nName;
  1.1204 +  
  1.1205 +  assert( sqlite3_mutex_held(db->mutex) );
  1.1206 +
  1.1207 +  /* If SQLITE_UTF16 is specified as the encoding type, transform this
  1.1208 +  ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the
  1.1209 +  ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally.
  1.1210 +  */
  1.1211 +  enc2 = enc & ~SQLITE_UTF16_ALIGNED;
  1.1212 +  if( enc2==SQLITE_UTF16 ){
  1.1213 +    enc2 = SQLITE_UTF16NATIVE;
  1.1214 +  }
  1.1215 +  if( (enc2&~3)!=0 ){
  1.1216 +    return SQLITE_MISUSE;
  1.1217 +  }
  1.1218 +
  1.1219 +  /* Check if this call is removing or replacing an existing collation 
  1.1220 +  ** sequence. If so, and there are active VMs, return busy. If there
  1.1221 +  ** are no active VMs, invalidate any pre-compiled statements.
  1.1222 +  */
  1.1223 +  nName = sqlite3Strlen(db, zName);
  1.1224 +  pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, nName, 0);
  1.1225 +  if( pColl && pColl->xCmp ){
  1.1226 +    if( db->activeVdbeCnt ){
  1.1227 +      sqlite3Error(db, SQLITE_BUSY, 
  1.1228 +        "Unable to delete/modify collation sequence due to active statements");
  1.1229 +      return SQLITE_BUSY;
  1.1230 +    }
  1.1231 +    sqlite3ExpirePreparedStatements(db);
  1.1232 +
  1.1233 +    /* If collation sequence pColl was created directly by a call to
  1.1234 +    ** sqlite3_create_collation, and not generated by synthCollSeq(),
  1.1235 +    ** then any copies made by synthCollSeq() need to be invalidated.
  1.1236 +    ** Also, collation destructor - CollSeq.xDel() - function may need
  1.1237 +    ** to be called.
  1.1238 +    */ 
  1.1239 +    if( (pColl->enc & ~SQLITE_UTF16_ALIGNED)==enc2 ){
  1.1240 +      CollSeq *aColl = sqlite3HashFind(&db->aCollSeq, zName, nName);
  1.1241 +      int j;
  1.1242 +      for(j=0; j<3; j++){
  1.1243 +        CollSeq *p = &aColl[j];
  1.1244 +        if( p->enc==pColl->enc ){
  1.1245 +          if( p->xDel ){
  1.1246 +            p->xDel(p->pUser);
  1.1247 +          }
  1.1248 +          p->xCmp = 0;
  1.1249 +        }
  1.1250 +      }
  1.1251 +    }
  1.1252 +  }
  1.1253 +
  1.1254 +  pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, nName, 1);
  1.1255 +  if( pColl ){
  1.1256 +    pColl->xCmp = xCompare;
  1.1257 +    pColl->pUser = pCtx;
  1.1258 +    pColl->xDel = xDel;
  1.1259 +    pColl->enc = enc2 | (enc & SQLITE_UTF16_ALIGNED);
  1.1260 +  }
  1.1261 +  sqlite3Error(db, SQLITE_OK, 0);
  1.1262 +  return SQLITE_OK;
  1.1263 +}
  1.1264 +
  1.1265 +
  1.1266 +/*
  1.1267 +** This array defines hard upper bounds on limit values.  The
  1.1268 +** initializer must be kept in sync with the SQLITE_LIMIT_*
  1.1269 +** #defines in sqlite3.h.
  1.1270 +*/
  1.1271 +static const int aHardLimit[] = {
  1.1272 +  SQLITE_MAX_LENGTH,
  1.1273 +  SQLITE_MAX_SQL_LENGTH,
  1.1274 +  SQLITE_MAX_COLUMN,
  1.1275 +  SQLITE_MAX_EXPR_DEPTH,
  1.1276 +  SQLITE_MAX_COMPOUND_SELECT,
  1.1277 +  SQLITE_MAX_VDBE_OP,
  1.1278 +  SQLITE_MAX_FUNCTION_ARG,
  1.1279 +  SQLITE_MAX_ATTACHED,
  1.1280 +  SQLITE_MAX_LIKE_PATTERN_LENGTH,
  1.1281 +  SQLITE_MAX_VARIABLE_NUMBER,
  1.1282 +};
  1.1283 +
  1.1284 +/*
  1.1285 +** Make sure the hard limits are set to reasonable values
  1.1286 +*/
  1.1287 +#if SQLITE_MAX_LENGTH<100
  1.1288 +# error SQLITE_MAX_LENGTH must be at least 100
  1.1289 +#endif
  1.1290 +#if SQLITE_MAX_SQL_LENGTH<100
  1.1291 +# error SQLITE_MAX_SQL_LENGTH must be at least 100
  1.1292 +#endif
  1.1293 +#if SQLITE_MAX_SQL_LENGTH>SQLITE_MAX_LENGTH
  1.1294 +# error SQLITE_MAX_SQL_LENGTH must not be greater than SQLITE_MAX_LENGTH
  1.1295 +#endif
  1.1296 +#if SQLITE_MAX_COMPOUND_SELECT<2
  1.1297 +# error SQLITE_MAX_COMPOUND_SELECT must be at least 2
  1.1298 +#endif
  1.1299 +#if SQLITE_MAX_VDBE_OP<40
  1.1300 +# error SQLITE_MAX_VDBE_OP must be at least 40
  1.1301 +#endif
  1.1302 +#if SQLITE_MAX_FUNCTION_ARG<0 || SQLITE_MAX_FUNCTION_ARG>127
  1.1303 +# error SQLITE_MAX_FUNCTION_ARG must be between 0 and 127
  1.1304 +#endif
  1.1305 +#if SQLITE_MAX_ATTACH<0 || SQLITE_MAX_ATTACH>30
  1.1306 +# error SQLITE_MAX_ATTACH must be between 0 and 30
  1.1307 +#endif
  1.1308 +#if SQLITE_MAX_LIKE_PATTERN_LENGTH<1
  1.1309 +# error SQLITE_MAX_LIKE_PATTERN_LENGTH must be at least 1
  1.1310 +#endif
  1.1311 +#if SQLITE_MAX_VARIABLE_NUMBER<1
  1.1312 +# error SQLITE_MAX_VARIABLE_NUMBER must be at least 1
  1.1313 +#endif
  1.1314 +
  1.1315 +
  1.1316 +/*
  1.1317 +** Change the value of a limit.  Report the old value.
  1.1318 +** If an invalid limit index is supplied, report -1.
  1.1319 +** Make no changes but still report the old value if the
  1.1320 +** new limit is negative.
  1.1321 +**
  1.1322 +** A new lower limit does not shrink existing constructs.
  1.1323 +** It merely prevents new constructs that exceed the limit
  1.1324 +** from forming.
  1.1325 +*/
  1.1326 +int sqlite3_limit(sqlite3 *db, int limitId, int newLimit){
  1.1327 +  int oldLimit;
  1.1328 +  if( limitId<0 || limitId>=SQLITE_N_LIMIT ){
  1.1329 +    return -1;
  1.1330 +  }
  1.1331 +  oldLimit = db->aLimit[limitId];
  1.1332 +  if( newLimit>=0 ){
  1.1333 +    if( newLimit>aHardLimit[limitId] ){
  1.1334 +      newLimit = aHardLimit[limitId];
  1.1335 +    }
  1.1336 +    db->aLimit[limitId] = newLimit;
  1.1337 +  }
  1.1338 +  return oldLimit;
  1.1339 +}
  1.1340 +
  1.1341 +/*
  1.1342 +** This routine does the work of opening a database on behalf of
  1.1343 +** sqlite3_open() and sqlite3_open16(). The database filename "zFilename"  
  1.1344 +** is UTF-8 encoded.
  1.1345 +*/
  1.1346 +static int openDatabase(
  1.1347 +  const char *zFilename, /* Database filename UTF-8 encoded */
  1.1348 +  sqlite3 **ppDb,        /* OUT: Returned database handle */
  1.1349 +  unsigned flags,        /* Operational flags */
  1.1350 +  const char *zVfs       /* Name of the VFS to use */
  1.1351 +){
  1.1352 +  sqlite3 *db;
  1.1353 +  int rc;
  1.1354 +  CollSeq *pColl;
  1.1355 +  int isThreadsafe = 1;
  1.1356 +
  1.1357 +#ifndef SQLITE_OMIT_AUTOINIT
  1.1358 +  rc = sqlite3_initialize();
  1.1359 +  if( rc ) return rc;
  1.1360 +#endif
  1.1361 +
  1.1362 +  if( flags&SQLITE_OPEN_NOMUTEX ){
  1.1363 +    isThreadsafe = 0;
  1.1364 +  }
  1.1365 +
  1.1366 +  /* Remove harmful bits from the flags parameter */
  1.1367 +  flags &=  ~( SQLITE_OPEN_DELETEONCLOSE |
  1.1368 +               SQLITE_OPEN_MAIN_DB |
  1.1369 +               SQLITE_OPEN_TEMP_DB | 
  1.1370 +               SQLITE_OPEN_TRANSIENT_DB | 
  1.1371 +               SQLITE_OPEN_MAIN_JOURNAL | 
  1.1372 +               SQLITE_OPEN_TEMP_JOURNAL | 
  1.1373 +               SQLITE_OPEN_SUBJOURNAL | 
  1.1374 +               SQLITE_OPEN_MASTER_JOURNAL |
  1.1375 +               SQLITE_OPEN_NOMUTEX
  1.1376 +             );
  1.1377 +
  1.1378 +  /* Allocate the sqlite data structure */
  1.1379 +  db = sqlite3MallocZero( sizeof(sqlite3) );
  1.1380 +  if( db==0 ) goto opendb_out;
  1.1381 +  if( sqlite3Config.bFullMutex && isThreadsafe ){
  1.1382 +    db->mutex = sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE);
  1.1383 +    if( db->mutex==0 ){
  1.1384 +      sqlite3_free(db);
  1.1385 +      db = 0;
  1.1386 +      goto opendb_out;
  1.1387 +    }
  1.1388 +  }
  1.1389 +  sqlite3_mutex_enter(db->mutex);
  1.1390 +  db->errMask = 0xff;
  1.1391 +  db->priorNewRowid = 0;
  1.1392 +  db->nDb = 2;
  1.1393 +  db->magic = SQLITE_MAGIC_BUSY;
  1.1394 +  db->aDb = db->aDbStatic;
  1.1395 +
  1.1396 +  assert( sizeof(db->aLimit)==sizeof(aHardLimit) );
  1.1397 +  memcpy(db->aLimit, aHardLimit, sizeof(db->aLimit));
  1.1398 +  db->autoCommit = 1;
  1.1399 +  db->nextAutovac = -1;
  1.1400 +  db->nextPagesize = 0;
  1.1401 +  db->flags |= SQLITE_ShortColNames
  1.1402 +#if SQLITE_DEFAULT_FILE_FORMAT<4
  1.1403 +                 | SQLITE_LegacyFileFmt
  1.1404 +#endif
  1.1405 +#ifdef SQLITE_ENABLE_LOAD_EXTENSION
  1.1406 +                 | SQLITE_LoadExtension
  1.1407 +#endif
  1.1408 +      ;
  1.1409 +  sqlite3HashInit(&db->aFunc, SQLITE_HASH_STRING, 0);
  1.1410 +  sqlite3HashInit(&db->aCollSeq, SQLITE_HASH_STRING, 0);
  1.1411 +#ifndef SQLITE_OMIT_VIRTUALTABLE
  1.1412 +  sqlite3HashInit(&db->aModule, SQLITE_HASH_STRING, 0);
  1.1413 +#endif
  1.1414 +
  1.1415 +  db->pVfs = sqlite3_vfs_find(zVfs);
  1.1416 +  if( !db->pVfs ){
  1.1417 +    rc = SQLITE_ERROR;
  1.1418 +    db->magic = SQLITE_MAGIC_SICK;
  1.1419 +    sqlite3Error(db, rc, "no such vfs: %s", zVfs);
  1.1420 +    goto opendb_out;
  1.1421 +  }
  1.1422 +
  1.1423 +  /* Add the default collation sequence BINARY. BINARY works for both UTF-8
  1.1424 +  ** and UTF-16, so add a version for each to avoid any unnecessary
  1.1425 +  ** conversions. The only error that can occur here is a malloc() failure.
  1.1426 +  */
  1.1427 +  createCollation(db, "BINARY", SQLITE_UTF8, 0, binCollFunc, 0);
  1.1428 +  createCollation(db, "BINARY", SQLITE_UTF16BE, 0, binCollFunc, 0);
  1.1429 +  createCollation(db, "BINARY", SQLITE_UTF16LE, 0, binCollFunc, 0);
  1.1430 +  createCollation(db, "RTRIM", SQLITE_UTF8, (void*)1, binCollFunc, 0);
  1.1431 +  if( db->mallocFailed ){
  1.1432 +    db->magic = SQLITE_MAGIC_SICK;
  1.1433 +    goto opendb_out;
  1.1434 +  }
  1.1435 +  db->pDfltColl = sqlite3FindCollSeq(db, SQLITE_UTF8, "BINARY", 6, 0);
  1.1436 +  assert( db->pDfltColl!=0 );
  1.1437 +
  1.1438 +  /* Also add a UTF-8 case-insensitive collation sequence. */
  1.1439 +  createCollation(db, "NOCASE", SQLITE_UTF8, 0, nocaseCollatingFunc, 0);
  1.1440 +
  1.1441 +  /* Set flags on the built-in collating sequences */
  1.1442 +  db->pDfltColl->type = SQLITE_COLL_BINARY;
  1.1443 +  pColl = sqlite3FindCollSeq(db, SQLITE_UTF8, "NOCASE", 6, 0);
  1.1444 +  if( pColl ){
  1.1445 +    pColl->type = SQLITE_COLL_NOCASE;
  1.1446 +  }
  1.1447 +
  1.1448 +  /* Open the backend database driver */
  1.1449 +  db->openFlags = flags;
  1.1450 +  rc = sqlite3BtreeFactory(db, zFilename, 0, SQLITE_DEFAULT_CACHE_SIZE, 
  1.1451 +                           flags | SQLITE_OPEN_MAIN_DB,
  1.1452 +                           &db->aDb[0].pBt);
  1.1453 +  if( rc!=SQLITE_OK ){
  1.1454 +    sqlite3Error(db, rc, 0);
  1.1455 +    db->magic = SQLITE_MAGIC_SICK;
  1.1456 +    goto opendb_out;
  1.1457 +  }
  1.1458 +  db->aDb[0].pSchema = sqlite3SchemaGet(db, db->aDb[0].pBt);
  1.1459 +  db->aDb[1].pSchema = sqlite3SchemaGet(db, 0);
  1.1460 +
  1.1461 +
  1.1462 +  /* The default safety_level for the main database is 'full'; for the temp
  1.1463 +  ** database it is 'NONE'. This matches the pager layer defaults.  
  1.1464 +  */
  1.1465 +  db->aDb[0].zName = "main";
  1.1466 +  db->aDb[0].safety_level = 3;
  1.1467 +#ifndef SQLITE_OMIT_TEMPDB
  1.1468 +  db->aDb[1].zName = "temp";
  1.1469 +  db->aDb[1].safety_level = 1;
  1.1470 +#endif
  1.1471 +
  1.1472 +  db->magic = SQLITE_MAGIC_OPEN;
  1.1473 +  if( db->mallocFailed ){
  1.1474 +    goto opendb_out;
  1.1475 +  }
  1.1476 +
  1.1477 +  /* Register all built-in functions, but do not attempt to read the
  1.1478 +  ** database schema yet. This is delayed until the first time the database
  1.1479 +  ** is accessed.
  1.1480 +  */
  1.1481 +  sqlite3Error(db, SQLITE_OK, 0);
  1.1482 +  sqlite3RegisterBuiltinFunctions(db);
  1.1483 +
  1.1484 +  /* Load automatic extensions - extensions that have been registered
  1.1485 +  ** using the sqlite3_automatic_extension() API.
  1.1486 +  */
  1.1487 +  (void)sqlite3AutoLoadExtensions(db);
  1.1488 +  if( sqlite3_errcode(db)!=SQLITE_OK ){
  1.1489 +    goto opendb_out;
  1.1490 +  }
  1.1491 +
  1.1492 +#ifdef SQLITE_ENABLE_FTS1
  1.1493 +  if( !db->mallocFailed ){
  1.1494 +    extern int sqlite3Fts1Init(sqlite3*);
  1.1495 +    rc = sqlite3Fts1Init(db);
  1.1496 +  }
  1.1497 +#endif
  1.1498 +
  1.1499 +#ifdef SQLITE_ENABLE_FTS2
  1.1500 +  if( !db->mallocFailed && rc==SQLITE_OK ){
  1.1501 +    extern int sqlite3Fts2Init(sqlite3*);
  1.1502 +    rc = sqlite3Fts2Init(db);
  1.1503 +  }
  1.1504 +#endif
  1.1505 +
  1.1506 +#ifdef SQLITE_ENABLE_FTS3
  1.1507 +  if( !db->mallocFailed && rc==SQLITE_OK ){
  1.1508 +    rc = sqlite3Fts3Init(db);
  1.1509 +  }
  1.1510 +#endif
  1.1511 +
  1.1512 +#ifdef SQLITE_ENABLE_ICU
  1.1513 +  if( !db->mallocFailed && rc==SQLITE_OK ){
  1.1514 +    extern int sqlite3IcuInit(sqlite3*);
  1.1515 +    rc = sqlite3IcuInit(db);
  1.1516 +  }
  1.1517 +#endif
  1.1518 +
  1.1519 +#ifdef SQLITE_ENABLE_RTREE
  1.1520 +  if( !db->mallocFailed && rc==SQLITE_OK){
  1.1521 +    rc = sqlite3RtreeInit(db);
  1.1522 +  }
  1.1523 +#endif
  1.1524 +
  1.1525 +  sqlite3Error(db, rc, 0);
  1.1526 +
  1.1527 +  /* -DSQLITE_DEFAULT_LOCKING_MODE=1 makes EXCLUSIVE the default locking
  1.1528 +  ** mode.  -DSQLITE_DEFAULT_LOCKING_MODE=0 make NORMAL the default locking
  1.1529 +  ** mode.  Doing nothing at all also makes NORMAL the default.
  1.1530 +  */
  1.1531 +#ifdef SQLITE_DEFAULT_LOCKING_MODE
  1.1532 +  db->dfltLockMode = SQLITE_DEFAULT_LOCKING_MODE;
  1.1533 +  sqlite3PagerLockingMode(sqlite3BtreePager(db->aDb[0].pBt),
  1.1534 +                          SQLITE_DEFAULT_LOCKING_MODE);
  1.1535 +#endif
  1.1536 +
  1.1537 +  /* Enable the lookaside-malloc subsystem */
  1.1538 +  setupLookaside(db, 0, sqlite3Config.szLookaside, sqlite3Config.nLookaside);
  1.1539 +
  1.1540 +opendb_out:
  1.1541 +  if( db ){
  1.1542 +    assert( db->mutex!=0 || isThreadsafe==0 || sqlite3Config.bFullMutex==0 );
  1.1543 +    sqlite3_mutex_leave(db->mutex);
  1.1544 +  }
  1.1545 +  if( SQLITE_NOMEM==(rc = sqlite3_errcode(db)) ){
  1.1546 +    sqlite3_close(db);
  1.1547 +    db = 0;
  1.1548 +  }
  1.1549 +  *ppDb = db;
  1.1550 +  return sqlite3ApiExit(0, rc);
  1.1551 +}
  1.1552 +
  1.1553 +/*
  1.1554 +** Open a new database handle.
  1.1555 +*/
  1.1556 +int sqlite3_open(
  1.1557 +  const char *zFilename, 
  1.1558 +  sqlite3 **ppDb 
  1.1559 +){
  1.1560 +  return openDatabase(zFilename, ppDb,
  1.1561 +                      SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0);
  1.1562 +}
  1.1563 +int sqlite3_open_v2(
  1.1564 +  const char *filename,   /* Database filename (UTF-8) */
  1.1565 +  sqlite3 **ppDb,         /* OUT: SQLite db handle */
  1.1566 +  int flags,              /* Flags */
  1.1567 +  const char *zVfs        /* Name of VFS module to use */
  1.1568 +){
  1.1569 +  return openDatabase(filename, ppDb, flags, zVfs);
  1.1570 +}
  1.1571 +
  1.1572 +#ifndef SQLITE_OMIT_UTF16
  1.1573 +/*
  1.1574 +** Open a new database handle.
  1.1575 +*/
  1.1576 +int sqlite3_open16(
  1.1577 +  const void *zFilename, 
  1.1578 +  sqlite3 **ppDb
  1.1579 +){
  1.1580 +  char const *zFilename8;   /* zFilename encoded in UTF-8 instead of UTF-16 */
  1.1581 +  sqlite3_value *pVal;
  1.1582 +  int rc;
  1.1583 +
  1.1584 +  assert( zFilename );
  1.1585 +  assert( ppDb );
  1.1586 +  *ppDb = 0;
  1.1587 +#ifndef SQLITE_OMIT_AUTOINIT
  1.1588 +  rc = sqlite3_initialize();
  1.1589 +  if( rc ) return rc;
  1.1590 +#endif
  1.1591 +  pVal = sqlite3ValueNew(0);
  1.1592 +  sqlite3ValueSetStr(pVal, -1, zFilename, SQLITE_UTF16NATIVE, SQLITE_STATIC);
  1.1593 +  zFilename8 = sqlite3ValueText(pVal, SQLITE_UTF8);
  1.1594 +  if( zFilename8 ){
  1.1595 +    rc = openDatabase(zFilename8, ppDb,
  1.1596 +                      SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0);
  1.1597 +    assert( *ppDb || rc==SQLITE_NOMEM );
  1.1598 +    if( rc==SQLITE_OK && !DbHasProperty(*ppDb, 0, DB_SchemaLoaded) ){
  1.1599 +      ENC(*ppDb) = SQLITE_UTF16NATIVE;
  1.1600 +    }
  1.1601 +  }else{
  1.1602 +    rc = SQLITE_NOMEM;
  1.1603 +  }
  1.1604 +  sqlite3ValueFree(pVal);
  1.1605 +
  1.1606 +  return sqlite3ApiExit(0, rc);
  1.1607 +}
  1.1608 +#endif /* SQLITE_OMIT_UTF16 */
  1.1609 +
  1.1610 +/*
  1.1611 +** Register a new collation sequence with the database handle db.
  1.1612 +*/
  1.1613 +int sqlite3_create_collation(
  1.1614 +  sqlite3* db, 
  1.1615 +  const char *zName, 
  1.1616 +  int enc, 
  1.1617 +  void* pCtx,
  1.1618 +  int(*xCompare)(void*,int,const void*,int,const void*)
  1.1619 +){
  1.1620 +  int rc;
  1.1621 +  sqlite3_mutex_enter(db->mutex);
  1.1622 +  assert( !db->mallocFailed );
  1.1623 +  rc = createCollation(db, zName, enc, pCtx, xCompare, 0);
  1.1624 +  rc = sqlite3ApiExit(db, rc);
  1.1625 +  sqlite3_mutex_leave(db->mutex);
  1.1626 +  return rc;
  1.1627 +}
  1.1628 +
  1.1629 +/*
  1.1630 +** Register a new collation sequence with the database handle db.
  1.1631 +*/
  1.1632 +int sqlite3_create_collation_v2(
  1.1633 +  sqlite3* db, 
  1.1634 +  const char *zName, 
  1.1635 +  int enc, 
  1.1636 +  void* pCtx,
  1.1637 +  int(*xCompare)(void*,int,const void*,int,const void*),
  1.1638 +  void(*xDel)(void*)
  1.1639 +){
  1.1640 +  int rc;
  1.1641 +  sqlite3_mutex_enter(db->mutex);
  1.1642 +  assert( !db->mallocFailed );
  1.1643 +  rc = createCollation(db, zName, enc, pCtx, xCompare, xDel);
  1.1644 +  rc = sqlite3ApiExit(db, rc);
  1.1645 +  sqlite3_mutex_leave(db->mutex);
  1.1646 +  return rc;
  1.1647 +}
  1.1648 +
  1.1649 +#ifndef SQLITE_OMIT_UTF16
  1.1650 +/*
  1.1651 +** Register a new collation sequence with the database handle db.
  1.1652 +*/
  1.1653 +int sqlite3_create_collation16(
  1.1654 +  sqlite3* db, 
  1.1655 +  const void *zName,
  1.1656 +  int enc, 
  1.1657 +  void* pCtx,
  1.1658 +  int(*xCompare)(void*,int,const void*,int,const void*)
  1.1659 +){
  1.1660 +  int rc = SQLITE_OK;
  1.1661 +  char *zName8;
  1.1662 +  sqlite3_mutex_enter(db->mutex);
  1.1663 +  assert( !db->mallocFailed );
  1.1664 +  zName8 = sqlite3Utf16to8(db, zName, -1);
  1.1665 +  if( zName8 ){
  1.1666 +    rc = createCollation(db, zName8, enc, pCtx, xCompare, 0);
  1.1667 +    sqlite3DbFree(db, zName8);
  1.1668 +  }
  1.1669 +  rc = sqlite3ApiExit(db, rc);
  1.1670 +  sqlite3_mutex_leave(db->mutex);
  1.1671 +  return rc;
  1.1672 +}
  1.1673 +#endif /* SQLITE_OMIT_UTF16 */
  1.1674 +
  1.1675 +/*
  1.1676 +** Register a collation sequence factory callback with the database handle
  1.1677 +** db. Replace any previously installed collation sequence factory.
  1.1678 +*/
  1.1679 +int sqlite3_collation_needed(
  1.1680 +  sqlite3 *db, 
  1.1681 +  void *pCollNeededArg, 
  1.1682 +  void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*)
  1.1683 +){
  1.1684 +  sqlite3_mutex_enter(db->mutex);
  1.1685 +  db->xCollNeeded = xCollNeeded;
  1.1686 +  db->xCollNeeded16 = 0;
  1.1687 +  db->pCollNeededArg = pCollNeededArg;
  1.1688 +  sqlite3_mutex_leave(db->mutex);
  1.1689 +  return SQLITE_OK;
  1.1690 +}
  1.1691 +
  1.1692 +#ifndef SQLITE_OMIT_UTF16
  1.1693 +/*
  1.1694 +** Register a collation sequence factory callback with the database handle
  1.1695 +** db. Replace any previously installed collation sequence factory.
  1.1696 +*/
  1.1697 +int sqlite3_collation_needed16(
  1.1698 +  sqlite3 *db, 
  1.1699 +  void *pCollNeededArg, 
  1.1700 +  void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*)
  1.1701 +){
  1.1702 +  sqlite3_mutex_enter(db->mutex);
  1.1703 +  db->xCollNeeded = 0;
  1.1704 +  db->xCollNeeded16 = xCollNeeded16;
  1.1705 +  db->pCollNeededArg = pCollNeededArg;
  1.1706 +  sqlite3_mutex_leave(db->mutex);
  1.1707 +  return SQLITE_OK;
  1.1708 +}
  1.1709 +#endif /* SQLITE_OMIT_UTF16 */
  1.1710 +
  1.1711 +#ifndef SQLITE_OMIT_GLOBALRECOVER
  1.1712 +/*
  1.1713 +** This function is now an anachronism. It used to be used to recover from a
  1.1714 +** malloc() failure, but SQLite now does this automatically.
  1.1715 +*/
  1.1716 +int sqlite3_global_recover(void){
  1.1717 +  return SQLITE_OK;
  1.1718 +}
  1.1719 +#endif
  1.1720 +
  1.1721 +/*
  1.1722 +** Test to see whether or not the database connection is in autocommit
  1.1723 +** mode.  Return TRUE if it is and FALSE if not.  Autocommit mode is on
  1.1724 +** by default.  Autocommit is disabled by a BEGIN statement and reenabled
  1.1725 +** by the next COMMIT or ROLLBACK.
  1.1726 +**
  1.1727 +******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ******
  1.1728 +*/
  1.1729 +int sqlite3_get_autocommit(sqlite3 *db){
  1.1730 +  return db->autoCommit;
  1.1731 +}
  1.1732 +
  1.1733 +#ifdef SQLITE_DEBUG
  1.1734 +/*
  1.1735 +** The following routine is subtituted for constant SQLITE_CORRUPT in
  1.1736 +** debugging builds.  This provides a way to set a breakpoint for when
  1.1737 +** corruption is first detected.
  1.1738 +*/
  1.1739 +int sqlite3Corrupt(void){
  1.1740 +  return SQLITE_CORRUPT;
  1.1741 +}
  1.1742 +#endif
  1.1743 +
  1.1744 +/*
  1.1745 +** This is a convenience routine that makes sure that all thread-specific
  1.1746 +** data for this thread has been deallocated.
  1.1747 +**
  1.1748 +** SQLite no longer uses thread-specific data so this routine is now a
  1.1749 +** no-op.  It is retained for historical compatibility.
  1.1750 +*/
  1.1751 +void sqlite3_thread_cleanup(void){
  1.1752 +}
  1.1753 +
  1.1754 +/*
  1.1755 +** Return meta information about a specific column of a database table.
  1.1756 +** See comment in sqlite3.h (sqlite.h.in) for details.
  1.1757 +*/
  1.1758 +#ifdef SQLITE_ENABLE_COLUMN_METADATA
  1.1759 +int sqlite3_table_column_metadata(
  1.1760 +  sqlite3 *db,                /* Connection handle */
  1.1761 +  const char *zDbName,        /* Database name or NULL */
  1.1762 +  const char *zTableName,     /* Table name */
  1.1763 +  const char *zColumnName,    /* Column name */
  1.1764 +  char const **pzDataType,    /* OUTPUT: Declared data type */
  1.1765 +  char const **pzCollSeq,     /* OUTPUT: Collation sequence name */
  1.1766 +  int *pNotNull,              /* OUTPUT: True if NOT NULL constraint exists */
  1.1767 +  int *pPrimaryKey,           /* OUTPUT: True if column part of PK */
  1.1768 +  int *pAutoinc               /* OUTPUT: True if column is auto-increment */
  1.1769 +){
  1.1770 +  int rc;
  1.1771 +  char *zErrMsg = 0;
  1.1772 +  Table *pTab = 0;
  1.1773 +  Column *pCol = 0;
  1.1774 +  int iCol;
  1.1775 +
  1.1776 +  char const *zDataType = 0;
  1.1777 +  char const *zCollSeq = 0;
  1.1778 +  int notnull = 0;
  1.1779 +  int primarykey = 0;
  1.1780 +  int autoinc = 0;
  1.1781 +
  1.1782 +  /* Ensure the database schema has been loaded */
  1.1783 +  sqlite3_mutex_enter(db->mutex);
  1.1784 +  (void)sqlite3SafetyOn(db);
  1.1785 +  sqlite3BtreeEnterAll(db);
  1.1786 +  rc = sqlite3Init(db, &zErrMsg);
  1.1787 +  sqlite3BtreeLeaveAll(db);
  1.1788 +  if( SQLITE_OK!=rc ){
  1.1789 +    goto error_out;
  1.1790 +  }
  1.1791 +
  1.1792 +  /* Locate the table in question */
  1.1793 +  pTab = sqlite3FindTable(db, zTableName, zDbName);
  1.1794 +  if( !pTab || pTab->pSelect ){
  1.1795 +    pTab = 0;
  1.1796 +    goto error_out;
  1.1797 +  }
  1.1798 +
  1.1799 +  /* Find the column for which info is requested */
  1.1800 +  if( sqlite3IsRowid(zColumnName) ){
  1.1801 +    iCol = pTab->iPKey;
  1.1802 +    if( iCol>=0 ){
  1.1803 +      pCol = &pTab->aCol[iCol];
  1.1804 +    }
  1.1805 +  }else{
  1.1806 +    for(iCol=0; iCol<pTab->nCol; iCol++){
  1.1807 +      pCol = &pTab->aCol[iCol];
  1.1808 +      if( 0==sqlite3StrICmp(pCol->zName, zColumnName) ){
  1.1809 +        break;
  1.1810 +      }
  1.1811 +    }
  1.1812 +    if( iCol==pTab->nCol ){
  1.1813 +      pTab = 0;
  1.1814 +      goto error_out;
  1.1815 +    }
  1.1816 +  }
  1.1817 +
  1.1818 +  /* The following block stores the meta information that will be returned
  1.1819 +  ** to the caller in local variables zDataType, zCollSeq, notnull, primarykey
  1.1820 +  ** and autoinc. At this point there are two possibilities:
  1.1821 +  ** 
  1.1822 +  **     1. The specified column name was rowid", "oid" or "_rowid_" 
  1.1823 +  **        and there is no explicitly declared IPK column. 
  1.1824 +  **
  1.1825 +  **     2. The table is not a view and the column name identified an 
  1.1826 +  **        explicitly declared column. Copy meta information from *pCol.
  1.1827 +  */ 
  1.1828 +  if( pCol ){
  1.1829 +    zDataType = pCol->zType;
  1.1830 +    zCollSeq = pCol->zColl;
  1.1831 +    notnull = pCol->notNull!=0;
  1.1832 +    primarykey  = pCol->isPrimKey!=0;
  1.1833 +    autoinc = pTab->iPKey==iCol && pTab->autoInc;
  1.1834 +  }else{
  1.1835 +    zDataType = "INTEGER";
  1.1836 +    primarykey = 1;
  1.1837 +  }
  1.1838 +  if( !zCollSeq ){
  1.1839 +    zCollSeq = "BINARY";
  1.1840 +  }
  1.1841 +
  1.1842 +error_out:
  1.1843 +  (void)sqlite3SafetyOff(db);
  1.1844 +
  1.1845 +  /* Whether the function call succeeded or failed, set the output parameters
  1.1846 +  ** to whatever their local counterparts contain. If an error did occur,
  1.1847 +  ** this has the effect of zeroing all output parameters.
  1.1848 +  */
  1.1849 +  if( pzDataType ) *pzDataType = zDataType;
  1.1850 +  if( pzCollSeq ) *pzCollSeq = zCollSeq;
  1.1851 +  if( pNotNull ) *pNotNull = notnull;
  1.1852 +  if( pPrimaryKey ) *pPrimaryKey = primarykey;
  1.1853 +  if( pAutoinc ) *pAutoinc = autoinc;
  1.1854 +
  1.1855 +  if( SQLITE_OK==rc && !pTab ){
  1.1856 +    sqlite3DbFree(db, zErrMsg);
  1.1857 +    zErrMsg = sqlite3MPrintf(db, "no such table column: %s.%s", zTableName,
  1.1858 +        zColumnName);
  1.1859 +    rc = SQLITE_ERROR;
  1.1860 +  }
  1.1861 +  sqlite3Error(db, rc, (zErrMsg?"%s":0), zErrMsg);
  1.1862 +  sqlite3DbFree(db, zErrMsg);
  1.1863 +  rc = sqlite3ApiExit(db, rc);
  1.1864 +  sqlite3_mutex_leave(db->mutex);
  1.1865 +  return rc;
  1.1866 +}
  1.1867 +#endif
  1.1868 +
  1.1869 +/*
  1.1870 +** Sleep for a little while.  Return the amount of time slept.
  1.1871 +*/
  1.1872 +int sqlite3_sleep(int ms){
  1.1873 +  sqlite3_vfs *pVfs;
  1.1874 +  int rc;
  1.1875 +  pVfs = sqlite3_vfs_find(0);
  1.1876 +  if( pVfs==0 ) return 0;
  1.1877 +
  1.1878 +  /* This function works in milliseconds, but the underlying OsSleep() 
  1.1879 +  ** API uses microseconds. Hence the 1000's.
  1.1880 +  */
  1.1881 +  rc = (sqlite3OsSleep(pVfs, 1000*ms)/1000);
  1.1882 +  return rc;
  1.1883 +}
  1.1884 +
  1.1885 +/*
  1.1886 +** Enable or disable the extended result codes.
  1.1887 +*/
  1.1888 +int sqlite3_extended_result_codes(sqlite3 *db, int onoff){
  1.1889 +  sqlite3_mutex_enter(db->mutex);
  1.1890 +  db->errMask = onoff ? 0xffffffff : 0xff;
  1.1891 +  sqlite3_mutex_leave(db->mutex);
  1.1892 +  return SQLITE_OK;
  1.1893 +}
  1.1894 +
  1.1895 +/*
  1.1896 +** Invoke the xFileControl method on a particular database.
  1.1897 +*/
  1.1898 +int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){
  1.1899 +  int rc = SQLITE_ERROR;
  1.1900 +  int iDb;
  1.1901 +  sqlite3_mutex_enter(db->mutex);
  1.1902 +  if( zDbName==0 ){
  1.1903 +    iDb = 0;
  1.1904 +  }else{
  1.1905 +    for(iDb=0; iDb<db->nDb; iDb++){
  1.1906 +      if( strcmp(db->aDb[iDb].zName, zDbName)==0 ) break;
  1.1907 +    }
  1.1908 +  }
  1.1909 +  if( iDb<db->nDb ){
  1.1910 +    Btree *pBtree = db->aDb[iDb].pBt;
  1.1911 +    if( pBtree ){
  1.1912 +      Pager *pPager;
  1.1913 +      sqlite3_file *fd;
  1.1914 +      sqlite3BtreeEnter(pBtree);
  1.1915 +      pPager = sqlite3BtreePager(pBtree);
  1.1916 +      assert( pPager!=0 );
  1.1917 +      fd = sqlite3PagerFile(pPager);
  1.1918 +      assert( fd!=0 );
  1.1919 +      if( fd->pMethods ){
  1.1920 +        rc = sqlite3OsFileControl(fd, op, pArg);
  1.1921 +      }
  1.1922 +      sqlite3BtreeLeave(pBtree);
  1.1923 +    }
  1.1924 +  }
  1.1925 +  sqlite3_mutex_leave(db->mutex);
  1.1926 +  return rc;   
  1.1927 +}
  1.1928 +
  1.1929 +/*
  1.1930 +** Interface to the testing logic.
  1.1931 +*/
  1.1932 +int sqlite3_test_control(int op, ...){
  1.1933 +  int rc = 0;
  1.1934 +#ifndef SQLITE_OMIT_BUILTIN_TEST
  1.1935 +  va_list ap;
  1.1936 +  va_start(ap, op);
  1.1937 +  switch( op ){
  1.1938 +
  1.1939 +    /*
  1.1940 +    ** Save the current state of the PRNG.
  1.1941 +    */
  1.1942 +    case SQLITE_TESTCTRL_PRNG_SAVE: {
  1.1943 +      sqlite3PrngSaveState();
  1.1944 +      break;
  1.1945 +    }
  1.1946 +
  1.1947 +    /*
  1.1948 +    ** Restore the state of the PRNG to the last state saved using
  1.1949 +    ** PRNG_SAVE.  If PRNG_SAVE has never before been called, then
  1.1950 +    ** this verb acts like PRNG_RESET.
  1.1951 +    */
  1.1952 +    case SQLITE_TESTCTRL_PRNG_RESTORE: {
  1.1953 +      sqlite3PrngRestoreState();
  1.1954 +      break;
  1.1955 +    }
  1.1956 +
  1.1957 +    /*
  1.1958 +    ** Reset the PRNG back to its uninitialized state.  The next call
  1.1959 +    ** to sqlite3_randomness() will reseed the PRNG using a single call
  1.1960 +    ** to the xRandomness method of the default VFS.
  1.1961 +    */
  1.1962 +    case SQLITE_TESTCTRL_PRNG_RESET: {
  1.1963 +      sqlite3PrngResetState();
  1.1964 +      break;
  1.1965 +    }
  1.1966 +
  1.1967 +    /*
  1.1968 +    **  sqlite3_test_control(BITVEC_TEST, size, program)
  1.1969 +    **
  1.1970 +    ** Run a test against a Bitvec object of size.  The program argument
  1.1971 +    ** is an array of integers that defines the test.  Return -1 on a
  1.1972 +    ** memory allocation error, 0 on success, or non-zero for an error.
  1.1973 +    ** See the sqlite3BitvecBuiltinTest() for additional information.
  1.1974 +    */
  1.1975 +    case SQLITE_TESTCTRL_BITVEC_TEST: {
  1.1976 +      int sz = va_arg(ap, int);
  1.1977 +      int *aProg = va_arg(ap, int*);
  1.1978 +      rc = sqlite3BitvecBuiltinTest(sz, aProg);
  1.1979 +      break;
  1.1980 +    }
  1.1981 +
  1.1982 +    /*
  1.1983 +    **  sqlite3_test_control(BENIGN_MALLOC_HOOKS, xBegin, xEnd)
  1.1984 +    **
  1.1985 +    ** Register hooks to call to indicate which malloc() failures 
  1.1986 +    ** are benign.
  1.1987 +    */
  1.1988 +    case SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS: {
  1.1989 +      typedef void (*void_function)(void);
  1.1990 +      void_function xBenignBegin;
  1.1991 +      void_function xBenignEnd;
  1.1992 +      xBenignBegin = va_arg(ap, void_function);
  1.1993 +      xBenignEnd = va_arg(ap, void_function);
  1.1994 +      sqlite3BenignMallocHooks(xBenignBegin, xBenignEnd);
  1.1995 +      break;
  1.1996 +    }
  1.1997 +  }
  1.1998 +  va_end(ap);
  1.1999 +#endif /* SQLITE_OMIT_BUILTIN_TEST */
  1.2000 +  return rc;
  1.2001 +}