os/persistentdata/persistentstorage/sql/SQLite/main.c
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
** 2001 September 15
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
** Main file for the SQLite library.  The routines in this file
sl@0
    13
** implement the programmer interface to the library.  Routines in
sl@0
    14
** other files are for internal use by SQLite and should not be
sl@0
    15
** accessed by users of the library.
sl@0
    16
**
sl@0
    17
** $Id: main.c,v 1.486 2008/08/04 20:13:27 drh Exp $
sl@0
    18
*/
sl@0
    19
#include "sqliteInt.h"
sl@0
    20
#include <ctype.h>
sl@0
    21
sl@0
    22
#ifdef SQLITE_ENABLE_FTS3
sl@0
    23
# include "fts3.h"
sl@0
    24
#endif
sl@0
    25
#ifdef SQLITE_ENABLE_RTREE
sl@0
    26
# include "rtree.h"
sl@0
    27
#endif
sl@0
    28
sl@0
    29
/*
sl@0
    30
** The version of the library
sl@0
    31
*/
sl@0
    32
const char sqlite3_version[] = SQLITE_VERSION;
sl@0
    33
const char *sqlite3_libversion(void){ return sqlite3_version; }
sl@0
    34
int sqlite3_libversion_number(void){ return SQLITE_VERSION_NUMBER; }
sl@0
    35
int sqlite3_threadsafe(void){ return SQLITE_THREADSAFE; }
sl@0
    36
sl@0
    37
#if !defined(SQLITE_OMIT_TRACE) && defined(SQLITE_ENABLE_IOTRACE)
sl@0
    38
/*
sl@0
    39
** If the following function pointer is not NULL and if
sl@0
    40
** SQLITE_ENABLE_IOTRACE is enabled, then messages describing
sl@0
    41
** I/O active are written using this function.  These messages
sl@0
    42
** are intended for debugging activity only.
sl@0
    43
*/
sl@0
    44
void (*sqlite3IoTrace)(const char*, ...) = 0;
sl@0
    45
#endif
sl@0
    46
sl@0
    47
/*
sl@0
    48
** If the following global variable points to a string which is the
sl@0
    49
** name of a directory, then that directory will be used to store
sl@0
    50
** temporary files.
sl@0
    51
**
sl@0
    52
** See also the "PRAGMA temp_store_directory" SQL command.
sl@0
    53
*/
sl@0
    54
char *sqlite3_temp_directory = 0;
sl@0
    55
sl@0
    56
/*
sl@0
    57
** Initialize SQLite.  
sl@0
    58
**
sl@0
    59
** This routine must be called to initialize the memory allocation,
sl@0
    60
** VFS, and mutex subsystesms prior to doing any serious work with
sl@0
    61
** SQLite.  But as long as you do not compile with SQLITE_OMIT_AUTOINIT
sl@0
    62
** this routine will be called automatically by key routines such as
sl@0
    63
** sqlite3_open().  
sl@0
    64
**
sl@0
    65
** This routine is a no-op except on its very first call for the process,
sl@0
    66
** or for the first call after a call to sqlite3_shutdown.
sl@0
    67
*/
sl@0
    68
int sqlite3_initialize(void){
sl@0
    69
  static int inProgress = 0;
sl@0
    70
  int rc;
sl@0
    71
sl@0
    72
  /* If SQLite is already initialized, this call is a no-op. */
sl@0
    73
  if( sqlite3Config.isInit ) return SQLITE_OK;
sl@0
    74
sl@0
    75
  /* Make sure the mutex system is initialized. */
sl@0
    76
  rc = sqlite3MutexInit();
sl@0
    77
sl@0
    78
  if( rc==SQLITE_OK ){
sl@0
    79
sl@0
    80
    /* Initialize the malloc() system and the recursive pInitMutex mutex.
sl@0
    81
    ** This operation is protected by the STATIC_MASTER mutex.
sl@0
    82
    */
sl@0
    83
    sqlite3_mutex *pMaster = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
sl@0
    84
    sqlite3_mutex_enter(pMaster);
sl@0
    85
    if( !sqlite3Config.isMallocInit ){
sl@0
    86
      rc = sqlite3MallocInit();
sl@0
    87
    }
sl@0
    88
    if( rc==SQLITE_OK ){
sl@0
    89
      sqlite3Config.isMallocInit = 1;
sl@0
    90
      if( !sqlite3Config.pInitMutex ){
sl@0
    91
        sqlite3Config.pInitMutex = sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE);
sl@0
    92
        if( sqlite3Config.bCoreMutex && !sqlite3Config.pInitMutex ){
sl@0
    93
          rc = SQLITE_NOMEM;
sl@0
    94
        }
sl@0
    95
      }
sl@0
    96
    }
sl@0
    97
    sqlite3_mutex_leave(pMaster);
sl@0
    98
    if( rc!=SQLITE_OK ){
sl@0
    99
      return rc;
sl@0
   100
    }
sl@0
   101
sl@0
   102
    /* Enter the recursive pInitMutex mutex. After doing so, if the
sl@0
   103
    ** sqlite3Config.isInit flag is true, then some other thread has
sl@0
   104
    ** finished doing the initialization. If the inProgress flag is
sl@0
   105
    ** true, then this function is being called recursively from within
sl@0
   106
    ** the sqlite3_os_init() call below. In either case, exit early.
sl@0
   107
    */
sl@0
   108
    sqlite3_mutex_enter(sqlite3Config.pInitMutex);
sl@0
   109
    if( sqlite3Config.isInit || inProgress ){
sl@0
   110
      sqlite3_mutex_leave(sqlite3Config.pInitMutex);
sl@0
   111
      return SQLITE_OK;
sl@0
   112
    }
sl@0
   113
    sqlite3StatusReset();
sl@0
   114
    inProgress = 1;
sl@0
   115
    rc = sqlite3_os_init();
sl@0
   116
    inProgress = 0;
sl@0
   117
    sqlite3Config.isInit = (rc==SQLITE_OK ? 1 : 0);
sl@0
   118
    sqlite3_mutex_leave(sqlite3Config.pInitMutex);
sl@0
   119
  }
sl@0
   120
sl@0
   121
  /* Check NaN support. */
sl@0
   122
#ifndef NDEBUG
sl@0
   123
  /* This section of code's only "output" is via assert() statements. */
sl@0
   124
  if ( rc==SQLITE_OK ){
sl@0
   125
    u64 x = (((u64)1)<<63)-1;
sl@0
   126
    double y;
sl@0
   127
    assert(sizeof(x)==8);
sl@0
   128
    assert(sizeof(x)==sizeof(y));
sl@0
   129
    memcpy(&y, &x, 8);
sl@0
   130
    assert( sqlite3IsNaN(y) );
sl@0
   131
  }
sl@0
   132
#endif
sl@0
   133
sl@0
   134
  return rc;
sl@0
   135
}
sl@0
   136
sl@0
   137
/*
sl@0
   138
** Undo the effects of sqlite3_initialize().  Must not be called while
sl@0
   139
** there are outstanding database connections or memory allocations or
sl@0
   140
** while any part of SQLite is otherwise in use in any thread.  This
sl@0
   141
** routine is not threadsafe.  Not by a long shot.
sl@0
   142
*/
sl@0
   143
int sqlite3_shutdown(void){
sl@0
   144
  sqlite3_mutex_free(sqlite3Config.pInitMutex);
sl@0
   145
  sqlite3Config.pInitMutex = 0;
sl@0
   146
  sqlite3Config.isMallocInit = 0;
sl@0
   147
  if( sqlite3Config.isInit ){
sl@0
   148
    sqlite3_os_end();
sl@0
   149
  }
sl@0
   150
  if( sqlite3Config.m.xShutdown ){
sl@0
   151
    sqlite3MallocEnd();
sl@0
   152
  }
sl@0
   153
  if( sqlite3Config.mutex.xMutexEnd ){
sl@0
   154
    sqlite3MutexEnd();
sl@0
   155
  }
sl@0
   156
  sqlite3Config.isInit = 0;
sl@0
   157
  return SQLITE_OK;
sl@0
   158
}
sl@0
   159
sl@0
   160
/*
sl@0
   161
** This API allows applications to modify the global configuration of
sl@0
   162
** the SQLite library at run-time.
sl@0
   163
**
sl@0
   164
** This routine should only be called when there are no outstanding
sl@0
   165
** database connections or memory allocations.  This routine is not
sl@0
   166
** threadsafe.  Failure to heed these warnings can lead to unpredictable
sl@0
   167
** behavior.
sl@0
   168
*/
sl@0
   169
int sqlite3_config(int op, ...){
sl@0
   170
  va_list ap;
sl@0
   171
  int rc = SQLITE_OK;
sl@0
   172
sl@0
   173
  /* sqlite3_config() shall return SQLITE_MISUSE if it is invoked while
sl@0
   174
  ** the SQLite library is in use. */
sl@0
   175
  if( sqlite3Config.isInit ) return SQLITE_MISUSE;
sl@0
   176
sl@0
   177
  va_start(ap, op);
sl@0
   178
  switch( op ){
sl@0
   179
    case SQLITE_CONFIG_SINGLETHREAD: {
sl@0
   180
      /* Disable all mutexing */
sl@0
   181
      sqlite3Config.bCoreMutex = 0;
sl@0
   182
      sqlite3Config.bFullMutex = 0;
sl@0
   183
      break;
sl@0
   184
    }
sl@0
   185
    case SQLITE_CONFIG_MULTITHREAD: {
sl@0
   186
      /* Disable mutexing of database connections */
sl@0
   187
      /* Enable mutexing of core data structures */
sl@0
   188
      sqlite3Config.bCoreMutex = 1;
sl@0
   189
      sqlite3Config.bFullMutex = 0;
sl@0
   190
      break;
sl@0
   191
    }
sl@0
   192
    case SQLITE_CONFIG_SERIALIZED: {
sl@0
   193
      /* Enable all mutexing */
sl@0
   194
      sqlite3Config.bCoreMutex = 1;
sl@0
   195
      sqlite3Config.bFullMutex = 1;
sl@0
   196
      break;
sl@0
   197
    }
sl@0
   198
    case SQLITE_CONFIG_MALLOC: {
sl@0
   199
      /* Specify an alternative malloc implementation */
sl@0
   200
      sqlite3Config.m = *va_arg(ap, sqlite3_mem_methods*);
sl@0
   201
      break;
sl@0
   202
    }
sl@0
   203
    case SQLITE_CONFIG_GETMALLOC: {
sl@0
   204
      /* Retrieve the current malloc() implementation */
sl@0
   205
      if( sqlite3Config.m.xMalloc==0 ) sqlite3MemSetDefault();
sl@0
   206
      *va_arg(ap, sqlite3_mem_methods*) = sqlite3Config.m;
sl@0
   207
      break;
sl@0
   208
    }
sl@0
   209
    case SQLITE_CONFIG_MUTEX: {
sl@0
   210
      /* Specify an alternative mutex implementation */
sl@0
   211
      sqlite3Config.mutex = *va_arg(ap, sqlite3_mutex_methods*);
sl@0
   212
      break;
sl@0
   213
    }
sl@0
   214
    case SQLITE_CONFIG_GETMUTEX: {
sl@0
   215
      /* Retrieve the current mutex implementation */
sl@0
   216
      *va_arg(ap, sqlite3_mutex_methods*) = sqlite3Config.mutex;
sl@0
   217
      break;
sl@0
   218
    }
sl@0
   219
    case SQLITE_CONFIG_MEMSTATUS: {
sl@0
   220
      /* Enable or disable the malloc status collection */
sl@0
   221
      sqlite3Config.bMemstat = va_arg(ap, int);
sl@0
   222
      break;
sl@0
   223
    }
sl@0
   224
    case SQLITE_CONFIG_SCRATCH: {
sl@0
   225
      /* Designate a buffer for scratch memory space */
sl@0
   226
      sqlite3Config.pScratch = va_arg(ap, void*);
sl@0
   227
      sqlite3Config.szScratch = va_arg(ap, int);
sl@0
   228
      sqlite3Config.nScratch = va_arg(ap, int);
sl@0
   229
      break;
sl@0
   230
    }
sl@0
   231
    case SQLITE_CONFIG_PAGECACHE: {
sl@0
   232
      /* Designate a buffer for scratch memory space */
sl@0
   233
      sqlite3Config.pPage = va_arg(ap, void*);
sl@0
   234
      sqlite3Config.szPage = va_arg(ap, int);
sl@0
   235
      sqlite3Config.nPage = va_arg(ap, int);
sl@0
   236
      break;
sl@0
   237
    }
sl@0
   238
sl@0
   239
#if defined(SQLITE_ENABLE_MEMSYS3) || defined(SQLITE_ENABLE_MEMSYS5)
sl@0
   240
    case SQLITE_CONFIG_HEAP: {
sl@0
   241
      /* Designate a buffer for heap memory space */
sl@0
   242
      sqlite3Config.pHeap = va_arg(ap, void*);
sl@0
   243
      sqlite3Config.nHeap = va_arg(ap, int);
sl@0
   244
      sqlite3Config.mnReq = va_arg(ap, int);
sl@0
   245
sl@0
   246
      if( sqlite3Config.pHeap==0 ){
sl@0
   247
        /* If the heap pointer is NULL, then restore the malloc implementation
sl@0
   248
        ** back to NULL pointers too.  This will cause the malloc to go
sl@0
   249
        ** back to its default implementation when sqlite3_initialize() is
sl@0
   250
        ** run.
sl@0
   251
        */
sl@0
   252
        memset(&sqlite3Config.m, 0, sizeof(sqlite3Config.m));
sl@0
   253
      }else{
sl@0
   254
        /* The heap pointer is not NULL, then install one of the
sl@0
   255
        ** mem5.c/mem3.c methods. If neither ENABLE_MEMSYS3 nor
sl@0
   256
        ** ENABLE_MEMSYS5 is defined, return an error.
sl@0
   257
        ** the default case and return an error.
sl@0
   258
        */
sl@0
   259
#ifdef SQLITE_ENABLE_MEMSYS3
sl@0
   260
        sqlite3Config.m = *sqlite3MemGetMemsys3();
sl@0
   261
#endif
sl@0
   262
#ifdef SQLITE_ENABLE_MEMSYS5
sl@0
   263
        sqlite3Config.m = *sqlite3MemGetMemsys5();
sl@0
   264
#endif
sl@0
   265
      }
sl@0
   266
      break;
sl@0
   267
    }
sl@0
   268
#endif
sl@0
   269
sl@0
   270
#if defined(SQLITE_ENABLE_MEMSYS6)
sl@0
   271
    case SQLITE_CONFIG_CHUNKALLOC: {
sl@0
   272
      sqlite3Config.nSmall = va_arg(ap, int);
sl@0
   273
      sqlite3Config.m = *sqlite3MemGetMemsys6();
sl@0
   274
      break;
sl@0
   275
    }
sl@0
   276
#endif
sl@0
   277
sl@0
   278
    case SQLITE_CONFIG_LOOKASIDE: {
sl@0
   279
      sqlite3Config.szLookaside = va_arg(ap, int);
sl@0
   280
      sqlite3Config.nLookaside = va_arg(ap, int);
sl@0
   281
      break;
sl@0
   282
    }
sl@0
   283
sl@0
   284
    default: {
sl@0
   285
      rc = SQLITE_ERROR;
sl@0
   286
      break;
sl@0
   287
    }
sl@0
   288
  }
sl@0
   289
  va_end(ap);
sl@0
   290
  return rc;
sl@0
   291
}
sl@0
   292
sl@0
   293
/*
sl@0
   294
** Set up the lookaside buffers for a database connection.
sl@0
   295
** Return SQLITE_OK on success.  
sl@0
   296
** If lookaside is already active, return SQLITE_BUSY.
sl@0
   297
**
sl@0
   298
** The sz parameter is the number of bytes in each lookaside slot.
sl@0
   299
** The cnt parameter is the number of slots.  If pStart is NULL the
sl@0
   300
** space for the lookaside memory is obtained from sqlite3_malloc().
sl@0
   301
** If pStart is not NULL then it is sz*cnt bytes of memory to use for
sl@0
   302
** the lookaside memory.
sl@0
   303
*/
sl@0
   304
static int setupLookaside(sqlite3 *db, void *pBuf, int sz, int cnt){
sl@0
   305
  void *pStart;
sl@0
   306
  if( db->lookaside.nOut ){
sl@0
   307
    return SQLITE_BUSY;
sl@0
   308
  }
sl@0
   309
  if( sz<0 ) sz = 0;
sl@0
   310
  if( cnt<0 ) cnt = 0;
sl@0
   311
  sz = (sz+7)&~7;
sl@0
   312
  if( pBuf==0 ){
sl@0
   313
    sqlite3BeginBenignMalloc();
sl@0
   314
    pStart = sqlite3Malloc( sz*cnt );
sl@0
   315
    sqlite3EndBenignMalloc();
sl@0
   316
  }else{
sl@0
   317
    pStart = pBuf;
sl@0
   318
  }
sl@0
   319
  if( db->lookaside.bMalloced ){
sl@0
   320
    sqlite3_free(db->lookaside.pStart);
sl@0
   321
  }
sl@0
   322
  db->lookaside.pStart = pStart;
sl@0
   323
  db->lookaside.pFree = 0;
sl@0
   324
  db->lookaside.sz = sz;
sl@0
   325
  db->lookaside.bMalloced = pBuf==0;
sl@0
   326
  if( pStart ){
sl@0
   327
    int i;
sl@0
   328
    LookasideSlot *p;
sl@0
   329
    p = (LookasideSlot*)pStart;
sl@0
   330
    for(i=cnt-1; i>=0; i--){
sl@0
   331
      p->pNext = db->lookaside.pFree;
sl@0
   332
      db->lookaside.pFree = p;
sl@0
   333
      p = (LookasideSlot*)&((u8*)p)[sz];
sl@0
   334
    }
sl@0
   335
    db->lookaside.pEnd = p;
sl@0
   336
    db->lookaside.bEnabled = 1;
sl@0
   337
  }else{
sl@0
   338
    db->lookaside.pEnd = 0;
sl@0
   339
    db->lookaside.bEnabled = 0;
sl@0
   340
  }
sl@0
   341
  return SQLITE_OK;
sl@0
   342
}
sl@0
   343
sl@0
   344
/*
sl@0
   345
** Configuration settings for an individual database connection
sl@0
   346
*/
sl@0
   347
int sqlite3_db_config(sqlite3 *db, int op, ...){
sl@0
   348
  va_list ap;
sl@0
   349
  int rc;
sl@0
   350
  va_start(ap, op);
sl@0
   351
  switch( op ){
sl@0
   352
    case SQLITE_DBCONFIG_LOOKASIDE: {
sl@0
   353
      void *pBuf = va_arg(ap, void*);
sl@0
   354
      int sz = va_arg(ap, int);
sl@0
   355
      int cnt = va_arg(ap, int);
sl@0
   356
      rc = setupLookaside(db, pBuf, sz, cnt);
sl@0
   357
      break;
sl@0
   358
    }
sl@0
   359
    default: {
sl@0
   360
      rc = SQLITE_ERROR;
sl@0
   361
      break;
sl@0
   362
    }
sl@0
   363
  }
sl@0
   364
  va_end(ap);
sl@0
   365
  return rc;
sl@0
   366
}
sl@0
   367
sl@0
   368
/*
sl@0
   369
** Routine needed to support the testcase() macro.
sl@0
   370
*/
sl@0
   371
#ifdef SQLITE_COVERAGE_TEST
sl@0
   372
void sqlite3Coverage(int x){
sl@0
   373
  static int dummy = 0;
sl@0
   374
  dummy += x;
sl@0
   375
}
sl@0
   376
#endif
sl@0
   377
sl@0
   378
sl@0
   379
/*
sl@0
   380
** Return true if the buffer z[0..n-1] contains all spaces.
sl@0
   381
*/
sl@0
   382
static int allSpaces(const char *z, int n){
sl@0
   383
  while( n>0 && z[n-1]==' ' ){ n--; }
sl@0
   384
  return n==0;
sl@0
   385
}
sl@0
   386
sl@0
   387
/*
sl@0
   388
** This is the default collating function named "BINARY" which is always
sl@0
   389
** available.
sl@0
   390
**
sl@0
   391
** If the padFlag argument is not NULL then space padding at the end
sl@0
   392
** of strings is ignored.  This implements the RTRIM collation.
sl@0
   393
*/
sl@0
   394
static int binCollFunc(
sl@0
   395
  void *padFlag,
sl@0
   396
  int nKey1, const void *pKey1,
sl@0
   397
  int nKey2, const void *pKey2
sl@0
   398
){
sl@0
   399
  int rc, n;
sl@0
   400
  n = nKey1<nKey2 ? nKey1 : nKey2;
sl@0
   401
  rc = memcmp(pKey1, pKey2, n);
sl@0
   402
  if( rc==0 ){
sl@0
   403
    if( padFlag
sl@0
   404
     && allSpaces(((char*)pKey1)+n, nKey1-n)
sl@0
   405
     && allSpaces(((char*)pKey2)+n, nKey2-n)
sl@0
   406
    ){
sl@0
   407
      /* Leave rc unchanged at 0 */
sl@0
   408
    }else{
sl@0
   409
      rc = nKey1 - nKey2;
sl@0
   410
    }
sl@0
   411
  }
sl@0
   412
  return rc;
sl@0
   413
}
sl@0
   414
sl@0
   415
/*
sl@0
   416
** Another built-in collating sequence: NOCASE. 
sl@0
   417
**
sl@0
   418
** This collating sequence is intended to be used for "case independant
sl@0
   419
** comparison". SQLite's knowledge of upper and lower case equivalents
sl@0
   420
** extends only to the 26 characters used in the English language.
sl@0
   421
**
sl@0
   422
** At the moment there is only a UTF-8 implementation.
sl@0
   423
*/
sl@0
   424
static int nocaseCollatingFunc(
sl@0
   425
  void *NotUsed,
sl@0
   426
  int nKey1, const void *pKey1,
sl@0
   427
  int nKey2, const void *pKey2
sl@0
   428
){
sl@0
   429
  int r = sqlite3StrNICmp(
sl@0
   430
      (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
sl@0
   431
  if( 0==r ){
sl@0
   432
    r = nKey1-nKey2;
sl@0
   433
  }
sl@0
   434
  return r;
sl@0
   435
}
sl@0
   436
sl@0
   437
/*
sl@0
   438
** Return the ROWID of the most recent insert
sl@0
   439
*/
sl@0
   440
sqlite_int64 sqlite3_last_insert_rowid(sqlite3 *db){
sl@0
   441
  return db->lastRowid;
sl@0
   442
}
sl@0
   443
sl@0
   444
/*
sl@0
   445
** Return the number of changes in the most recent call to sqlite3_exec().
sl@0
   446
*/
sl@0
   447
int sqlite3_changes(sqlite3 *db){
sl@0
   448
  return db->nChange;
sl@0
   449
}
sl@0
   450
sl@0
   451
/*
sl@0
   452
** Return the number of changes since the database handle was opened.
sl@0
   453
*/
sl@0
   454
int sqlite3_total_changes(sqlite3 *db){
sl@0
   455
  return db->nTotalChange;
sl@0
   456
}
sl@0
   457
sl@0
   458
/*
sl@0
   459
** Close an existing SQLite database
sl@0
   460
*/
sl@0
   461
int sqlite3_close(sqlite3 *db){
sl@0
   462
  HashElem *i;
sl@0
   463
  int j;
sl@0
   464
sl@0
   465
  if( !db ){
sl@0
   466
    return SQLITE_OK;
sl@0
   467
  }
sl@0
   468
  if( !sqlite3SafetyCheckSickOrOk(db) ){
sl@0
   469
    return SQLITE_MISUSE;
sl@0
   470
  }
sl@0
   471
  sqlite3_mutex_enter(db->mutex);
sl@0
   472
sl@0
   473
#ifdef SQLITE_SSE
sl@0
   474
  {
sl@0
   475
    extern void sqlite3SseCleanup(sqlite3*);
sl@0
   476
    sqlite3SseCleanup(db);
sl@0
   477
  }
sl@0
   478
#endif 
sl@0
   479
sl@0
   480
  sqlite3ResetInternalSchema(db, 0);
sl@0
   481
sl@0
   482
  /* If a transaction is open, the ResetInternalSchema() call above
sl@0
   483
  ** will not have called the xDisconnect() method on any virtual
sl@0
   484
  ** tables in the db->aVTrans[] array. The following sqlite3VtabRollback()
sl@0
   485
  ** call will do so. We need to do this before the check for active
sl@0
   486
  ** SQL statements below, as the v-table implementation may be storing
sl@0
   487
  ** some prepared statements internally.
sl@0
   488
  */
sl@0
   489
  sqlite3VtabRollback(db);
sl@0
   490
sl@0
   491
  /* If there are any outstanding VMs, return SQLITE_BUSY. */
sl@0
   492
  if( db->pVdbe ){
sl@0
   493
    sqlite3Error(db, SQLITE_BUSY, 
sl@0
   494
        "Unable to close due to unfinalised statements");
sl@0
   495
    sqlite3_mutex_leave(db->mutex);
sl@0
   496
    return SQLITE_BUSY;
sl@0
   497
  }
sl@0
   498
  assert( sqlite3SafetyCheckSickOrOk(db) );
sl@0
   499
sl@0
   500
  for(j=0; j<db->nDb; j++){
sl@0
   501
    struct Db *pDb = &db->aDb[j];
sl@0
   502
    if( pDb->pBt ){
sl@0
   503
      sqlite3BtreeClose(pDb->pBt);
sl@0
   504
      pDb->pBt = 0;
sl@0
   505
      if( j!=1 ){
sl@0
   506
        pDb->pSchema = 0;
sl@0
   507
      }
sl@0
   508
    }
sl@0
   509
  }
sl@0
   510
  sqlite3ResetInternalSchema(db, 0);
sl@0
   511
  assert( db->nDb<=2 );
sl@0
   512
  assert( db->aDb==db->aDbStatic );
sl@0
   513
  for(i=sqliteHashFirst(&db->aFunc); i; i=sqliteHashNext(i)){
sl@0
   514
    FuncDef *pFunc, *pNext;
sl@0
   515
    for(pFunc = (FuncDef*)sqliteHashData(i); pFunc; pFunc=pNext){
sl@0
   516
      pNext = pFunc->pNext;
sl@0
   517
      sqlite3DbFree(db, pFunc);
sl@0
   518
    }
sl@0
   519
  }
sl@0
   520
sl@0
   521
  for(i=sqliteHashFirst(&db->aCollSeq); i; i=sqliteHashNext(i)){
sl@0
   522
    CollSeq *pColl = (CollSeq *)sqliteHashData(i);
sl@0
   523
    /* Invoke any destructors registered for collation sequence user data. */
sl@0
   524
    for(j=0; j<3; j++){
sl@0
   525
      if( pColl[j].xDel ){
sl@0
   526
        pColl[j].xDel(pColl[j].pUser);
sl@0
   527
      }
sl@0
   528
    }
sl@0
   529
    sqlite3DbFree(db, pColl);
sl@0
   530
  }
sl@0
   531
  sqlite3HashClear(&db->aCollSeq);
sl@0
   532
#ifndef SQLITE_OMIT_VIRTUALTABLE
sl@0
   533
  for(i=sqliteHashFirst(&db->aModule); i; i=sqliteHashNext(i)){
sl@0
   534
    Module *pMod = (Module *)sqliteHashData(i);
sl@0
   535
    if( pMod->xDestroy ){
sl@0
   536
      pMod->xDestroy(pMod->pAux);
sl@0
   537
    }
sl@0
   538
    sqlite3DbFree(db, pMod);
sl@0
   539
  }
sl@0
   540
  sqlite3HashClear(&db->aModule);
sl@0
   541
#endif
sl@0
   542
sl@0
   543
  sqlite3HashClear(&db->aFunc);
sl@0
   544
  sqlite3Error(db, SQLITE_OK, 0); /* Deallocates any cached error strings. */
sl@0
   545
  if( db->pErr ){
sl@0
   546
    sqlite3ValueFree(db->pErr);
sl@0
   547
  }
sl@0
   548
  sqlite3CloseExtensions(db);
sl@0
   549
sl@0
   550
  db->magic = SQLITE_MAGIC_ERROR;
sl@0
   551
sl@0
   552
  /* The temp-database schema is allocated differently from the other schema
sl@0
   553
  ** objects (using sqliteMalloc() directly, instead of sqlite3BtreeSchema()).
sl@0
   554
  ** So it needs to be freed here. Todo: Why not roll the temp schema into
sl@0
   555
  ** the same sqliteMalloc() as the one that allocates the database 
sl@0
   556
  ** structure?
sl@0
   557
  */
sl@0
   558
  sqlite3DbFree(db, db->aDb[1].pSchema);
sl@0
   559
  sqlite3_mutex_leave(db->mutex);
sl@0
   560
  db->magic = SQLITE_MAGIC_CLOSED;
sl@0
   561
  sqlite3_mutex_free(db->mutex);
sl@0
   562
  if( db->lookaside.bMalloced ){
sl@0
   563
    sqlite3_free(db->lookaside.pStart);
sl@0
   564
  }
sl@0
   565
  sqlite3_free(db);
sl@0
   566
  return SQLITE_OK;
sl@0
   567
}
sl@0
   568
sl@0
   569
/*
sl@0
   570
** Rollback all database files.
sl@0
   571
*/
sl@0
   572
void sqlite3RollbackAll(sqlite3 *db){
sl@0
   573
  int i;
sl@0
   574
  int inTrans = 0;
sl@0
   575
  assert( sqlite3_mutex_held(db->mutex) );
sl@0
   576
  sqlite3BeginBenignMalloc();
sl@0
   577
  for(i=0; i<db->nDb; i++){
sl@0
   578
    if( db->aDb[i].pBt ){
sl@0
   579
      if( sqlite3BtreeIsInTrans(db->aDb[i].pBt) ){
sl@0
   580
        inTrans = 1;
sl@0
   581
      }
sl@0
   582
      sqlite3BtreeRollback(db->aDb[i].pBt);
sl@0
   583
      db->aDb[i].inTrans = 0;
sl@0
   584
    }
sl@0
   585
  }
sl@0
   586
  sqlite3VtabRollback(db);
sl@0
   587
  sqlite3EndBenignMalloc();
sl@0
   588
sl@0
   589
  if( db->flags&SQLITE_InternChanges ){
sl@0
   590
    sqlite3ExpirePreparedStatements(db);
sl@0
   591
    sqlite3ResetInternalSchema(db, 0);
sl@0
   592
  }
sl@0
   593
sl@0
   594
  /* If one has been configured, invoke the rollback-hook callback */
sl@0
   595
  if( db->xRollbackCallback && (inTrans || !db->autoCommit) ){
sl@0
   596
    db->xRollbackCallback(db->pRollbackArg);
sl@0
   597
  }
sl@0
   598
}
sl@0
   599
sl@0
   600
/*
sl@0
   601
** Return a static string that describes the kind of error specified in the
sl@0
   602
** argument.
sl@0
   603
*/
sl@0
   604
const char *sqlite3ErrStr(int rc){
sl@0
   605
  const char *z;
sl@0
   606
  switch( rc & 0xff ){
sl@0
   607
    case SQLITE_ROW:
sl@0
   608
    case SQLITE_DONE:
sl@0
   609
    case SQLITE_OK:         z = "not an error";                          break;
sl@0
   610
    case SQLITE_ERROR:      z = "SQL logic error or missing database";   break;
sl@0
   611
    case SQLITE_PERM:       z = "access permission denied";              break;
sl@0
   612
    case SQLITE_ABORT:      z = "callback requested query abort";        break;
sl@0
   613
    case SQLITE_BUSY:       z = "database is locked";                    break;
sl@0
   614
    case SQLITE_LOCKED:     z = "database table is locked";              break;
sl@0
   615
    case SQLITE_NOMEM:      z = "out of memory";                         break;
sl@0
   616
    case SQLITE_READONLY:   z = "attempt to write a readonly database";  break;
sl@0
   617
    case SQLITE_INTERRUPT:  z = "interrupted";                           break;
sl@0
   618
    case SQLITE_IOERR:      z = "disk I/O error";                        break;
sl@0
   619
    case SQLITE_CORRUPT:    z = "database disk image is malformed";      break;
sl@0
   620
    case SQLITE_FULL:       z = "database or disk is full";              break;
sl@0
   621
    case SQLITE_CANTOPEN:   z = "unable to open database file";          break;
sl@0
   622
    case SQLITE_EMPTY:      z = "table contains no data";                break;
sl@0
   623
    case SQLITE_SCHEMA:     z = "database schema has changed";           break;
sl@0
   624
    case SQLITE_TOOBIG:     z = "String or BLOB exceeded size limit";    break;
sl@0
   625
    case SQLITE_CONSTRAINT: z = "constraint failed";                     break;
sl@0
   626
    case SQLITE_MISMATCH:   z = "datatype mismatch";                     break;
sl@0
   627
    case SQLITE_MISUSE:     z = "library routine called out of sequence";break;
sl@0
   628
    case SQLITE_NOLFS:      z = "large file support is disabled";        break;
sl@0
   629
    case SQLITE_AUTH:       z = "authorization denied";                  break;
sl@0
   630
    case SQLITE_FORMAT:     z = "auxiliary database format error";       break;
sl@0
   631
    case SQLITE_RANGE:      z = "bind or column index out of range";     break;
sl@0
   632
    case SQLITE_NOTADB:     z = "file is encrypted or is not a database";break;
sl@0
   633
    default:                z = "unknown error";                         break;
sl@0
   634
  }
sl@0
   635
  return z;
sl@0
   636
}
sl@0
   637
sl@0
   638
/*
sl@0
   639
** This routine implements a busy callback that sleeps and tries
sl@0
   640
** again until a timeout value is reached.  The timeout value is
sl@0
   641
** an integer number of milliseconds passed in as the first
sl@0
   642
** argument.
sl@0
   643
*/
sl@0
   644
static int sqliteDefaultBusyCallback(
sl@0
   645
 void *ptr,               /* Database connection */
sl@0
   646
 int count                /* Number of times table has been busy */
sl@0
   647
){
sl@0
   648
#if SQLITE_OS_WIN || (defined(HAVE_USLEEP) && HAVE_USLEEP)
sl@0
   649
  static const u8 delays[] =
sl@0
   650
     { 1, 2, 5, 10, 15, 20, 25, 25,  25,  50,  50, 100 };
sl@0
   651
  static const u8 totals[] =
sl@0
   652
     { 0, 1, 3,  8, 18, 33, 53, 78, 103, 128, 178, 228 };
sl@0
   653
# define NDELAY (sizeof(delays)/sizeof(delays[0]))
sl@0
   654
  sqlite3 *db = (sqlite3 *)ptr;
sl@0
   655
  int timeout = db->busyTimeout;
sl@0
   656
  int delay, prior;
sl@0
   657
sl@0
   658
  assert( count>=0 );
sl@0
   659
  if( count < NDELAY ){
sl@0
   660
    delay = delays[count];
sl@0
   661
    prior = totals[count];
sl@0
   662
  }else{
sl@0
   663
    delay = delays[NDELAY-1];
sl@0
   664
    prior = totals[NDELAY-1] + delay*(count-(NDELAY-1));
sl@0
   665
  }
sl@0
   666
  if( prior + delay > timeout ){
sl@0
   667
    delay = timeout - prior;
sl@0
   668
    if( delay<=0 ) return 0;
sl@0
   669
  }
sl@0
   670
  sqlite3OsSleep(db->pVfs, delay*1000);
sl@0
   671
  return 1;
sl@0
   672
#else
sl@0
   673
  sqlite3 *db = (sqlite3 *)ptr;
sl@0
   674
  int timeout = ((sqlite3 *)ptr)->busyTimeout;
sl@0
   675
  if( (count+1)*1000 > timeout ){
sl@0
   676
    return 0;
sl@0
   677
  }
sl@0
   678
  sqlite3OsSleep(db->pVfs, 1000000);
sl@0
   679
  return 1;
sl@0
   680
#endif
sl@0
   681
}
sl@0
   682
sl@0
   683
/*
sl@0
   684
** Invoke the given busy handler.
sl@0
   685
**
sl@0
   686
** This routine is called when an operation failed with a lock.
sl@0
   687
** If this routine returns non-zero, the lock is retried.  If it
sl@0
   688
** returns 0, the operation aborts with an SQLITE_BUSY error.
sl@0
   689
*/
sl@0
   690
int sqlite3InvokeBusyHandler(BusyHandler *p){
sl@0
   691
  int rc;
sl@0
   692
  if( NEVER(p==0) || p->xFunc==0 || p->nBusy<0 ) return 0;
sl@0
   693
  rc = p->xFunc(p->pArg, p->nBusy);
sl@0
   694
  if( rc==0 ){
sl@0
   695
    p->nBusy = -1;
sl@0
   696
  }else{
sl@0
   697
    p->nBusy++;
sl@0
   698
  }
sl@0
   699
  return rc; 
sl@0
   700
}
sl@0
   701
sl@0
   702
/*
sl@0
   703
** This routine sets the busy callback for an Sqlite database to the
sl@0
   704
** given callback function with the given argument.
sl@0
   705
*/
sl@0
   706
int sqlite3_busy_handler(
sl@0
   707
  sqlite3 *db,
sl@0
   708
  int (*xBusy)(void*,int),
sl@0
   709
  void *pArg
sl@0
   710
){
sl@0
   711
  sqlite3_mutex_enter(db->mutex);
sl@0
   712
  db->busyHandler.xFunc = xBusy;
sl@0
   713
  db->busyHandler.pArg = pArg;
sl@0
   714
  db->busyHandler.nBusy = 0;
sl@0
   715
  sqlite3_mutex_leave(db->mutex);
sl@0
   716
  return SQLITE_OK;
sl@0
   717
}
sl@0
   718
sl@0
   719
#ifndef SQLITE_OMIT_PROGRESS_CALLBACK
sl@0
   720
/*
sl@0
   721
** This routine sets the progress callback for an Sqlite database to the
sl@0
   722
** given callback function with the given argument. The progress callback will
sl@0
   723
** be invoked every nOps opcodes.
sl@0
   724
*/
sl@0
   725
void sqlite3_progress_handler(
sl@0
   726
  sqlite3 *db, 
sl@0
   727
  int nOps,
sl@0
   728
  int (*xProgress)(void*), 
sl@0
   729
  void *pArg
sl@0
   730
){
sl@0
   731
  sqlite3_mutex_enter(db->mutex);
sl@0
   732
  if( nOps>0 ){
sl@0
   733
    db->xProgress = xProgress;
sl@0
   734
    db->nProgressOps = nOps;
sl@0
   735
    db->pProgressArg = pArg;
sl@0
   736
  }else{
sl@0
   737
    db->xProgress = 0;
sl@0
   738
    db->nProgressOps = 0;
sl@0
   739
    db->pProgressArg = 0;
sl@0
   740
  }
sl@0
   741
  sqlite3_mutex_leave(db->mutex);
sl@0
   742
}
sl@0
   743
#endif
sl@0
   744
sl@0
   745
sl@0
   746
/*
sl@0
   747
** This routine installs a default busy handler that waits for the
sl@0
   748
** specified number of milliseconds before returning 0.
sl@0
   749
*/
sl@0
   750
int sqlite3_busy_timeout(sqlite3 *db, int ms){
sl@0
   751
  if( ms>0 ){
sl@0
   752
    db->busyTimeout = ms;
sl@0
   753
    sqlite3_busy_handler(db, sqliteDefaultBusyCallback, (void*)db);
sl@0
   754
  }else{
sl@0
   755
    sqlite3_busy_handler(db, 0, 0);
sl@0
   756
  }
sl@0
   757
  return SQLITE_OK;
sl@0
   758
}
sl@0
   759
sl@0
   760
/*
sl@0
   761
** Cause any pending operation to stop at its earliest opportunity.
sl@0
   762
*/
sl@0
   763
void sqlite3_interrupt(sqlite3 *db){
sl@0
   764
  db->u1.isInterrupted = 1;
sl@0
   765
}
sl@0
   766
sl@0
   767
sl@0
   768
/*
sl@0
   769
** This function is exactly the same as sqlite3_create_function(), except
sl@0
   770
** that it is designed to be called by internal code. The difference is
sl@0
   771
** that if a malloc() fails in sqlite3_create_function(), an error code
sl@0
   772
** is returned and the mallocFailed flag cleared. 
sl@0
   773
*/
sl@0
   774
int sqlite3CreateFunc(
sl@0
   775
  sqlite3 *db,
sl@0
   776
  const char *zFunctionName,
sl@0
   777
  int nArg,
sl@0
   778
  int enc,
sl@0
   779
  void *pUserData,
sl@0
   780
  void (*xFunc)(sqlite3_context*,int,sqlite3_value **),
sl@0
   781
  void (*xStep)(sqlite3_context*,int,sqlite3_value **),
sl@0
   782
  void (*xFinal)(sqlite3_context*)
sl@0
   783
){
sl@0
   784
  FuncDef *p;
sl@0
   785
  int nName;
sl@0
   786
sl@0
   787
  assert( sqlite3_mutex_held(db->mutex) );
sl@0
   788
  if( zFunctionName==0 ||
sl@0
   789
      (xFunc && (xFinal || xStep)) || 
sl@0
   790
      (!xFunc && (xFinal && !xStep)) ||
sl@0
   791
      (!xFunc && (!xFinal && xStep)) ||
sl@0
   792
      (nArg<-1 || nArg>SQLITE_MAX_FUNCTION_ARG) ||
sl@0
   793
      (255<(nName = sqlite3Strlen(db, zFunctionName))) ){
sl@0
   794
    sqlite3Error(db, SQLITE_ERROR, "bad parameters");
sl@0
   795
    return SQLITE_ERROR;
sl@0
   796
  }
sl@0
   797
  
sl@0
   798
#ifndef SQLITE_OMIT_UTF16
sl@0
   799
  /* If SQLITE_UTF16 is specified as the encoding type, transform this
sl@0
   800
  ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the
sl@0
   801
  ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally.
sl@0
   802
  **
sl@0
   803
  ** If SQLITE_ANY is specified, add three versions of the function
sl@0
   804
  ** to the hash table.
sl@0
   805
  */
sl@0
   806
  if( enc==SQLITE_UTF16 ){
sl@0
   807
    enc = SQLITE_UTF16NATIVE;
sl@0
   808
  }else if( enc==SQLITE_ANY ){
sl@0
   809
    int rc;
sl@0
   810
    rc = sqlite3CreateFunc(db, zFunctionName, nArg, SQLITE_UTF8,
sl@0
   811
         pUserData, xFunc, xStep, xFinal);
sl@0
   812
    if( rc==SQLITE_OK ){
sl@0
   813
      rc = sqlite3CreateFunc(db, zFunctionName, nArg, SQLITE_UTF16LE,
sl@0
   814
          pUserData, xFunc, xStep, xFinal);
sl@0
   815
    }
sl@0
   816
    if( rc!=SQLITE_OK ){
sl@0
   817
      return rc;
sl@0
   818
    }
sl@0
   819
    enc = SQLITE_UTF16BE;
sl@0
   820
  }
sl@0
   821
#else
sl@0
   822
  enc = SQLITE_UTF8;
sl@0
   823
#endif
sl@0
   824
  
sl@0
   825
  /* Check if an existing function is being overridden or deleted. If so,
sl@0
   826
  ** and there are active VMs, then return SQLITE_BUSY. If a function
sl@0
   827
  ** is being overridden/deleted but there are no active VMs, allow the
sl@0
   828
  ** operation to continue but invalidate all precompiled statements.
sl@0
   829
  */
sl@0
   830
  p = sqlite3FindFunction(db, zFunctionName, nName, nArg, enc, 0);
sl@0
   831
  if( p && p->iPrefEnc==enc && p->nArg==nArg ){
sl@0
   832
    if( db->activeVdbeCnt ){
sl@0
   833
      sqlite3Error(db, SQLITE_BUSY, 
sl@0
   834
        "Unable to delete/modify user-function due to active statements");
sl@0
   835
      assert( !db->mallocFailed );
sl@0
   836
      return SQLITE_BUSY;
sl@0
   837
    }else{
sl@0
   838
      sqlite3ExpirePreparedStatements(db);
sl@0
   839
    }
sl@0
   840
  }
sl@0
   841
sl@0
   842
  p = sqlite3FindFunction(db, zFunctionName, nName, nArg, enc, 1);
sl@0
   843
  assert(p || db->mallocFailed);
sl@0
   844
  if( !p ){
sl@0
   845
    return SQLITE_NOMEM;
sl@0
   846
  }
sl@0
   847
  p->flags = 0;
sl@0
   848
  p->xFunc = xFunc;
sl@0
   849
  p->xStep = xStep;
sl@0
   850
  p->xFinalize = xFinal;
sl@0
   851
  p->pUserData = pUserData;
sl@0
   852
  p->nArg = nArg;
sl@0
   853
  return SQLITE_OK;
sl@0
   854
}
sl@0
   855
sl@0
   856
/*
sl@0
   857
** Create new user functions.
sl@0
   858
*/
sl@0
   859
int sqlite3_create_function(
sl@0
   860
  sqlite3 *db,
sl@0
   861
  const char *zFunctionName,
sl@0
   862
  int nArg,
sl@0
   863
  int enc,
sl@0
   864
  void *p,
sl@0
   865
  void (*xFunc)(sqlite3_context*,int,sqlite3_value **),
sl@0
   866
  void (*xStep)(sqlite3_context*,int,sqlite3_value **),
sl@0
   867
  void (*xFinal)(sqlite3_context*)
sl@0
   868
){
sl@0
   869
  int rc;
sl@0
   870
  sqlite3_mutex_enter(db->mutex);
sl@0
   871
  rc = sqlite3CreateFunc(db, zFunctionName, nArg, enc, p, xFunc, xStep, xFinal);
sl@0
   872
  rc = sqlite3ApiExit(db, rc);
sl@0
   873
  sqlite3_mutex_leave(db->mutex);
sl@0
   874
  return rc;
sl@0
   875
}
sl@0
   876
sl@0
   877
#ifndef SQLITE_OMIT_UTF16
sl@0
   878
int sqlite3_create_function16(
sl@0
   879
  sqlite3 *db,
sl@0
   880
  const void *zFunctionName,
sl@0
   881
  int nArg,
sl@0
   882
  int eTextRep,
sl@0
   883
  void *p,
sl@0
   884
  void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
sl@0
   885
  void (*xStep)(sqlite3_context*,int,sqlite3_value**),
sl@0
   886
  void (*xFinal)(sqlite3_context*)
sl@0
   887
){
sl@0
   888
  int rc;
sl@0
   889
  char *zFunc8;
sl@0
   890
  sqlite3_mutex_enter(db->mutex);
sl@0
   891
  assert( !db->mallocFailed );
sl@0
   892
  zFunc8 = sqlite3Utf16to8(db, zFunctionName, -1);
sl@0
   893
  rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xFunc, xStep, xFinal);
sl@0
   894
  sqlite3DbFree(db, zFunc8);
sl@0
   895
  rc = sqlite3ApiExit(db, rc);
sl@0
   896
  sqlite3_mutex_leave(db->mutex);
sl@0
   897
  return rc;
sl@0
   898
}
sl@0
   899
#endif
sl@0
   900
sl@0
   901
sl@0
   902
/*
sl@0
   903
** Declare that a function has been overloaded by a virtual table.
sl@0
   904
**
sl@0
   905
** If the function already exists as a regular global function, then
sl@0
   906
** this routine is a no-op.  If the function does not exist, then create
sl@0
   907
** a new one that always throws a run-time error.  
sl@0
   908
**
sl@0
   909
** When virtual tables intend to provide an overloaded function, they
sl@0
   910
** should call this routine to make sure the global function exists.
sl@0
   911
** A global function must exist in order for name resolution to work
sl@0
   912
** properly.
sl@0
   913
*/
sl@0
   914
int sqlite3_overload_function(
sl@0
   915
  sqlite3 *db,
sl@0
   916
  const char *zName,
sl@0
   917
  int nArg
sl@0
   918
){
sl@0
   919
  int nName = sqlite3Strlen(db, zName);
sl@0
   920
  int rc;
sl@0
   921
  sqlite3_mutex_enter(db->mutex);
sl@0
   922
  if( sqlite3FindFunction(db, zName, nName, nArg, SQLITE_UTF8, 0)==0 ){
sl@0
   923
    sqlite3CreateFunc(db, zName, nArg, SQLITE_UTF8,
sl@0
   924
                      0, sqlite3InvalidFunction, 0, 0);
sl@0
   925
  }
sl@0
   926
  rc = sqlite3ApiExit(db, SQLITE_OK);
sl@0
   927
  sqlite3_mutex_leave(db->mutex);
sl@0
   928
  return rc;
sl@0
   929
}
sl@0
   930
sl@0
   931
#ifndef SQLITE_OMIT_TRACE
sl@0
   932
/*
sl@0
   933
** Register a trace function.  The pArg from the previously registered trace
sl@0
   934
** is returned.  
sl@0
   935
**
sl@0
   936
** A NULL trace function means that no tracing is executes.  A non-NULL
sl@0
   937
** trace is a pointer to a function that is invoked at the start of each
sl@0
   938
** SQL statement.
sl@0
   939
*/
sl@0
   940
void *sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg){
sl@0
   941
  void *pOld;
sl@0
   942
  sqlite3_mutex_enter(db->mutex);
sl@0
   943
  pOld = db->pTraceArg;
sl@0
   944
  db->xTrace = xTrace;
sl@0
   945
  db->pTraceArg = pArg;
sl@0
   946
  sqlite3_mutex_leave(db->mutex);
sl@0
   947
  return pOld;
sl@0
   948
}
sl@0
   949
/*
sl@0
   950
** Register a profile function.  The pArg from the previously registered 
sl@0
   951
** profile function is returned.  
sl@0
   952
**
sl@0
   953
** A NULL profile function means that no profiling is executes.  A non-NULL
sl@0
   954
** profile is a pointer to a function that is invoked at the conclusion of
sl@0
   955
** each SQL statement that is run.
sl@0
   956
*/
sl@0
   957
void *sqlite3_profile(
sl@0
   958
  sqlite3 *db,
sl@0
   959
  void (*xProfile)(void*,const char*,sqlite_uint64),
sl@0
   960
  void *pArg
sl@0
   961
){
sl@0
   962
  void *pOld;
sl@0
   963
  sqlite3_mutex_enter(db->mutex);
sl@0
   964
  pOld = db->pProfileArg;
sl@0
   965
  db->xProfile = xProfile;
sl@0
   966
  db->pProfileArg = pArg;
sl@0
   967
  sqlite3_mutex_leave(db->mutex);
sl@0
   968
  return pOld;
sl@0
   969
}
sl@0
   970
#endif /* SQLITE_OMIT_TRACE */
sl@0
   971
sl@0
   972
/*** EXPERIMENTAL ***
sl@0
   973
**
sl@0
   974
** Register a function to be invoked when a transaction comments.
sl@0
   975
** If the invoked function returns non-zero, then the commit becomes a
sl@0
   976
** rollback.
sl@0
   977
*/
sl@0
   978
void *sqlite3_commit_hook(
sl@0
   979
  sqlite3 *db,              /* Attach the hook to this database */
sl@0
   980
  int (*xCallback)(void*),  /* Function to invoke on each commit */
sl@0
   981
  void *pArg                /* Argument to the function */
sl@0
   982
){
sl@0
   983
  void *pOld;
sl@0
   984
  sqlite3_mutex_enter(db->mutex);
sl@0
   985
  pOld = db->pCommitArg;
sl@0
   986
  db->xCommitCallback = xCallback;
sl@0
   987
  db->pCommitArg = pArg;
sl@0
   988
  sqlite3_mutex_leave(db->mutex);
sl@0
   989
  return pOld;
sl@0
   990
}
sl@0
   991
sl@0
   992
/*
sl@0
   993
** Register a callback to be invoked each time a row is updated,
sl@0
   994
** inserted or deleted using this database connection.
sl@0
   995
*/
sl@0
   996
void *sqlite3_update_hook(
sl@0
   997
  sqlite3 *db,              /* Attach the hook to this database */
sl@0
   998
  void (*xCallback)(void*,int,char const *,char const *,sqlite_int64),
sl@0
   999
  void *pArg                /* Argument to the function */
sl@0
  1000
){
sl@0
  1001
  void *pRet;
sl@0
  1002
  sqlite3_mutex_enter(db->mutex);
sl@0
  1003
  pRet = db->pUpdateArg;
sl@0
  1004
  db->xUpdateCallback = xCallback;
sl@0
  1005
  db->pUpdateArg = pArg;
sl@0
  1006
  sqlite3_mutex_leave(db->mutex);
sl@0
  1007
  return pRet;
sl@0
  1008
}
sl@0
  1009
sl@0
  1010
/*
sl@0
  1011
** Register a callback to be invoked each time a transaction is rolled
sl@0
  1012
** back by this database connection.
sl@0
  1013
*/
sl@0
  1014
void *sqlite3_rollback_hook(
sl@0
  1015
  sqlite3 *db,              /* Attach the hook to this database */
sl@0
  1016
  void (*xCallback)(void*), /* Callback function */
sl@0
  1017
  void *pArg                /* Argument to the function */
sl@0
  1018
){
sl@0
  1019
  void *pRet;
sl@0
  1020
  sqlite3_mutex_enter(db->mutex);
sl@0
  1021
  pRet = db->pRollbackArg;
sl@0
  1022
  db->xRollbackCallback = xCallback;
sl@0
  1023
  db->pRollbackArg = pArg;
sl@0
  1024
  sqlite3_mutex_leave(db->mutex);
sl@0
  1025
  return pRet;
sl@0
  1026
}
sl@0
  1027
sl@0
  1028
/*
sl@0
  1029
** This routine is called to create a connection to a database BTree
sl@0
  1030
** driver.  If zFilename is the name of a file, then that file is
sl@0
  1031
** opened and used.  If zFilename is the magic name ":memory:" then
sl@0
  1032
** the database is stored in memory (and is thus forgotten as soon as
sl@0
  1033
** the connection is closed.)  If zFilename is NULL then the database
sl@0
  1034
** is a "virtual" database for transient use only and is deleted as
sl@0
  1035
** soon as the connection is closed.
sl@0
  1036
**
sl@0
  1037
** A virtual database can be either a disk file (that is automatically
sl@0
  1038
** deleted when the file is closed) or it an be held entirely in memory,
sl@0
  1039
** depending on the values of the SQLITE_TEMP_STORE compile-time macro and the
sl@0
  1040
** db->temp_store variable, according to the following chart:
sl@0
  1041
**
sl@0
  1042
**   SQLITE_TEMP_STORE     db->temp_store     Location of temporary database
sl@0
  1043
**   -----------------     --------------     ------------------------------
sl@0
  1044
**   0                     any                file
sl@0
  1045
**   1                     1                  file
sl@0
  1046
**   1                     2                  memory
sl@0
  1047
**   1                     0                  file
sl@0
  1048
**   2                     1                  file
sl@0
  1049
**   2                     2                  memory
sl@0
  1050
**   2                     0                  memory
sl@0
  1051
**   3                     any                memory
sl@0
  1052
*/
sl@0
  1053
int sqlite3BtreeFactory(
sl@0
  1054
  const sqlite3 *db,        /* Main database when opening aux otherwise 0 */
sl@0
  1055
  const char *zFilename,    /* Name of the file containing the BTree database */
sl@0
  1056
  int omitJournal,          /* if TRUE then do not journal this file */
sl@0
  1057
  int nCache,               /* How many pages in the page cache */
sl@0
  1058
  int vfsFlags,             /* Flags passed through to vfsOpen */
sl@0
  1059
  Btree **ppBtree           /* Pointer to new Btree object written here */
sl@0
  1060
){
sl@0
  1061
  int btFlags = 0;
sl@0
  1062
  int rc;
sl@0
  1063
  
sl@0
  1064
  assert( sqlite3_mutex_held(db->mutex) );
sl@0
  1065
  assert( ppBtree != 0);
sl@0
  1066
  if( omitJournal ){
sl@0
  1067
    btFlags |= BTREE_OMIT_JOURNAL;
sl@0
  1068
  }
sl@0
  1069
  if( db->flags & SQLITE_NoReadlock ){
sl@0
  1070
    btFlags |= BTREE_NO_READLOCK;
sl@0
  1071
  }
sl@0
  1072
  if( zFilename==0 ){
sl@0
  1073
#if SQLITE_TEMP_STORE==0
sl@0
  1074
    /* Do nothing */
sl@0
  1075
#endif
sl@0
  1076
#ifndef SQLITE_OMIT_MEMORYDB
sl@0
  1077
#if SQLITE_TEMP_STORE==1
sl@0
  1078
    if( db->temp_store==2 ) zFilename = ":memory:";
sl@0
  1079
#endif
sl@0
  1080
#if SQLITE_TEMP_STORE==2
sl@0
  1081
    if( db->temp_store!=1 ) zFilename = ":memory:";
sl@0
  1082
#endif
sl@0
  1083
#if SQLITE_TEMP_STORE==3
sl@0
  1084
    zFilename = ":memory:";
sl@0
  1085
#endif
sl@0
  1086
#endif /* SQLITE_OMIT_MEMORYDB */
sl@0
  1087
  }
sl@0
  1088
sl@0
  1089
  if( (vfsFlags & SQLITE_OPEN_MAIN_DB)!=0 && (zFilename==0 || *zFilename==0) ){
sl@0
  1090
    vfsFlags = (vfsFlags & ~SQLITE_OPEN_MAIN_DB) | SQLITE_OPEN_TEMP_DB;
sl@0
  1091
  }
sl@0
  1092
  rc = sqlite3BtreeOpen(zFilename, (sqlite3 *)db, ppBtree, btFlags, vfsFlags);
sl@0
  1093
sl@0
  1094
  /* If the B-Tree was successfully opened, set the pager-cache size to the
sl@0
  1095
  ** default value. Except, if the call to BtreeOpen() returned a handle
sl@0
  1096
  ** open on an existing shared pager-cache, do not change the pager-cache 
sl@0
  1097
  ** size.
sl@0
  1098
  */
sl@0
  1099
  if( rc==SQLITE_OK && 0==sqlite3BtreeSchema(*ppBtree, 0, 0) ){
sl@0
  1100
    sqlite3BtreeSetCacheSize(*ppBtree, nCache);
sl@0
  1101
  }
sl@0
  1102
  return rc;
sl@0
  1103
}
sl@0
  1104
sl@0
  1105
/*
sl@0
  1106
** Return UTF-8 encoded English language explanation of the most recent
sl@0
  1107
** error.
sl@0
  1108
*/
sl@0
  1109
const char *sqlite3_errmsg(sqlite3 *db){
sl@0
  1110
  const char *z;
sl@0
  1111
  if( !db ){
sl@0
  1112
    return sqlite3ErrStr(SQLITE_NOMEM);
sl@0
  1113
  }
sl@0
  1114
  if( !sqlite3SafetyCheckSickOrOk(db) ){
sl@0
  1115
    return sqlite3ErrStr(SQLITE_MISUSE);
sl@0
  1116
  }
sl@0
  1117
  sqlite3_mutex_enter(db->mutex);
sl@0
  1118
  assert( !db->mallocFailed );
sl@0
  1119
  z = (char*)sqlite3_value_text(db->pErr);
sl@0
  1120
  assert( !db->mallocFailed );
sl@0
  1121
  if( z==0 ){
sl@0
  1122
    z = sqlite3ErrStr(db->errCode);
sl@0
  1123
  }
sl@0
  1124
  sqlite3_mutex_leave(db->mutex);
sl@0
  1125
  return z;
sl@0
  1126
}
sl@0
  1127
sl@0
  1128
#ifndef SQLITE_OMIT_UTF16
sl@0
  1129
/*
sl@0
  1130
** Return UTF-16 encoded English language explanation of the most recent
sl@0
  1131
** error.
sl@0
  1132
*/
sl@0
  1133
const void *sqlite3_errmsg16(sqlite3 *db){
sl@0
  1134
  static const u16 outOfMem[] = {
sl@0
  1135
    'o', 'u', 't', ' ', 'o', 'f', ' ', 'm', 'e', 'm', 'o', 'r', 'y', 0
sl@0
  1136
  };
sl@0
  1137
  static const u16 misuse[] = {
sl@0
  1138
    'l', 'i', 'b', 'r', 'a', 'r', 'y', ' ',
sl@0
  1139
    'r', 'o', 'u', 't', 'i', 'n', 'e', ' ',
sl@0
  1140
    'c', 'a', 'l', 'l', 'e', 'd', ' ',
sl@0
  1141
    'o', 'u', 't', ' ',
sl@0
  1142
    'o', 'f', ' ',
sl@0
  1143
    's', 'e', 'q', 'u', 'e', 'n', 'c', 'e', 0
sl@0
  1144
  };
sl@0
  1145
sl@0
  1146
  const void *z;
sl@0
  1147
  if( !db ){
sl@0
  1148
    return (void *)outOfMem;
sl@0
  1149
  }
sl@0
  1150
  if( !sqlite3SafetyCheckSickOrOk(db) ){
sl@0
  1151
    return (void *)misuse;
sl@0
  1152
  }
sl@0
  1153
  sqlite3_mutex_enter(db->mutex);
sl@0
  1154
  assert( !db->mallocFailed );
sl@0
  1155
  z = sqlite3_value_text16(db->pErr);
sl@0
  1156
  if( z==0 ){
sl@0
  1157
    sqlite3ValueSetStr(db->pErr, -1, sqlite3ErrStr(db->errCode),
sl@0
  1158
         SQLITE_UTF8, SQLITE_STATIC);
sl@0
  1159
    z = sqlite3_value_text16(db->pErr);
sl@0
  1160
  }
sl@0
  1161
  /* A malloc() may have failed within the call to sqlite3_value_text16()
sl@0
  1162
  ** above. If this is the case, then the db->mallocFailed flag needs to
sl@0
  1163
  ** be cleared before returning. Do this directly, instead of via
sl@0
  1164
  ** sqlite3ApiExit(), to avoid setting the database handle error message.
sl@0
  1165
  */
sl@0
  1166
  db->mallocFailed = 0;
sl@0
  1167
  sqlite3_mutex_leave(db->mutex);
sl@0
  1168
  return z;
sl@0
  1169
}
sl@0
  1170
#endif /* SQLITE_OMIT_UTF16 */
sl@0
  1171
sl@0
  1172
/*
sl@0
  1173
** Return the most recent error code generated by an SQLite routine. If NULL is
sl@0
  1174
** passed to this function, we assume a malloc() failed during sqlite3_open().
sl@0
  1175
*/
sl@0
  1176
int sqlite3_errcode(sqlite3 *db){
sl@0
  1177
  if( db && !sqlite3SafetyCheckSickOrOk(db) ){
sl@0
  1178
    return SQLITE_MISUSE;
sl@0
  1179
  }
sl@0
  1180
  if( !db || db->mallocFailed ){
sl@0
  1181
    return SQLITE_NOMEM;
sl@0
  1182
  }
sl@0
  1183
  return db->errCode & db->errMask;
sl@0
  1184
}
sl@0
  1185
sl@0
  1186
/*
sl@0
  1187
** Create a new collating function for database "db".  The name is zName
sl@0
  1188
** and the encoding is enc.
sl@0
  1189
*/
sl@0
  1190
static int createCollation(
sl@0
  1191
  sqlite3* db, 
sl@0
  1192
  const char *zName, 
sl@0
  1193
  int enc, 
sl@0
  1194
  void* pCtx,
sl@0
  1195
  int(*xCompare)(void*,int,const void*,int,const void*),
sl@0
  1196
  void(*xDel)(void*)
sl@0
  1197
){
sl@0
  1198
  CollSeq *pColl;
sl@0
  1199
  int enc2;
sl@0
  1200
  int nName;
sl@0
  1201
  
sl@0
  1202
  assert( sqlite3_mutex_held(db->mutex) );
sl@0
  1203
sl@0
  1204
  /* If SQLITE_UTF16 is specified as the encoding type, transform this
sl@0
  1205
  ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the
sl@0
  1206
  ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally.
sl@0
  1207
  */
sl@0
  1208
  enc2 = enc & ~SQLITE_UTF16_ALIGNED;
sl@0
  1209
  if( enc2==SQLITE_UTF16 ){
sl@0
  1210
    enc2 = SQLITE_UTF16NATIVE;
sl@0
  1211
  }
sl@0
  1212
  if( (enc2&~3)!=0 ){
sl@0
  1213
    return SQLITE_MISUSE;
sl@0
  1214
  }
sl@0
  1215
sl@0
  1216
  /* Check if this call is removing or replacing an existing collation 
sl@0
  1217
  ** sequence. If so, and there are active VMs, return busy. If there
sl@0
  1218
  ** are no active VMs, invalidate any pre-compiled statements.
sl@0
  1219
  */
sl@0
  1220
  nName = sqlite3Strlen(db, zName);
sl@0
  1221
  pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, nName, 0);
sl@0
  1222
  if( pColl && pColl->xCmp ){
sl@0
  1223
    if( db->activeVdbeCnt ){
sl@0
  1224
      sqlite3Error(db, SQLITE_BUSY, 
sl@0
  1225
        "Unable to delete/modify collation sequence due to active statements");
sl@0
  1226
      return SQLITE_BUSY;
sl@0
  1227
    }
sl@0
  1228
    sqlite3ExpirePreparedStatements(db);
sl@0
  1229
sl@0
  1230
    /* If collation sequence pColl was created directly by a call to
sl@0
  1231
    ** sqlite3_create_collation, and not generated by synthCollSeq(),
sl@0
  1232
    ** then any copies made by synthCollSeq() need to be invalidated.
sl@0
  1233
    ** Also, collation destructor - CollSeq.xDel() - function may need
sl@0
  1234
    ** to be called.
sl@0
  1235
    */ 
sl@0
  1236
    if( (pColl->enc & ~SQLITE_UTF16_ALIGNED)==enc2 ){
sl@0
  1237
      CollSeq *aColl = sqlite3HashFind(&db->aCollSeq, zName, nName);
sl@0
  1238
      int j;
sl@0
  1239
      for(j=0; j<3; j++){
sl@0
  1240
        CollSeq *p = &aColl[j];
sl@0
  1241
        if( p->enc==pColl->enc ){
sl@0
  1242
          if( p->xDel ){
sl@0
  1243
            p->xDel(p->pUser);
sl@0
  1244
          }
sl@0
  1245
          p->xCmp = 0;
sl@0
  1246
        }
sl@0
  1247
      }
sl@0
  1248
    }
sl@0
  1249
  }
sl@0
  1250
sl@0
  1251
  pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, nName, 1);
sl@0
  1252
  if( pColl ){
sl@0
  1253
    pColl->xCmp = xCompare;
sl@0
  1254
    pColl->pUser = pCtx;
sl@0
  1255
    pColl->xDel = xDel;
sl@0
  1256
    pColl->enc = enc2 | (enc & SQLITE_UTF16_ALIGNED);
sl@0
  1257
  }
sl@0
  1258
  sqlite3Error(db, SQLITE_OK, 0);
sl@0
  1259
  return SQLITE_OK;
sl@0
  1260
}
sl@0
  1261
sl@0
  1262
sl@0
  1263
/*
sl@0
  1264
** This array defines hard upper bounds on limit values.  The
sl@0
  1265
** initializer must be kept in sync with the SQLITE_LIMIT_*
sl@0
  1266
** #defines in sqlite3.h.
sl@0
  1267
*/
sl@0
  1268
static const int aHardLimit[] = {
sl@0
  1269
  SQLITE_MAX_LENGTH,
sl@0
  1270
  SQLITE_MAX_SQL_LENGTH,
sl@0
  1271
  SQLITE_MAX_COLUMN,
sl@0
  1272
  SQLITE_MAX_EXPR_DEPTH,
sl@0
  1273
  SQLITE_MAX_COMPOUND_SELECT,
sl@0
  1274
  SQLITE_MAX_VDBE_OP,
sl@0
  1275
  SQLITE_MAX_FUNCTION_ARG,
sl@0
  1276
  SQLITE_MAX_ATTACHED,
sl@0
  1277
  SQLITE_MAX_LIKE_PATTERN_LENGTH,
sl@0
  1278
  SQLITE_MAX_VARIABLE_NUMBER,
sl@0
  1279
};
sl@0
  1280
sl@0
  1281
/*
sl@0
  1282
** Make sure the hard limits are set to reasonable values
sl@0
  1283
*/
sl@0
  1284
#if SQLITE_MAX_LENGTH<100
sl@0
  1285
# error SQLITE_MAX_LENGTH must be at least 100
sl@0
  1286
#endif
sl@0
  1287
#if SQLITE_MAX_SQL_LENGTH<100
sl@0
  1288
# error SQLITE_MAX_SQL_LENGTH must be at least 100
sl@0
  1289
#endif
sl@0
  1290
#if SQLITE_MAX_SQL_LENGTH>SQLITE_MAX_LENGTH
sl@0
  1291
# error SQLITE_MAX_SQL_LENGTH must not be greater than SQLITE_MAX_LENGTH
sl@0
  1292
#endif
sl@0
  1293
#if SQLITE_MAX_COMPOUND_SELECT<2
sl@0
  1294
# error SQLITE_MAX_COMPOUND_SELECT must be at least 2
sl@0
  1295
#endif
sl@0
  1296
#if SQLITE_MAX_VDBE_OP<40
sl@0
  1297
# error SQLITE_MAX_VDBE_OP must be at least 40
sl@0
  1298
#endif
sl@0
  1299
#if SQLITE_MAX_FUNCTION_ARG<0 || SQLITE_MAX_FUNCTION_ARG>127
sl@0
  1300
# error SQLITE_MAX_FUNCTION_ARG must be between 0 and 127
sl@0
  1301
#endif
sl@0
  1302
#if SQLITE_MAX_ATTACH<0 || SQLITE_MAX_ATTACH>30
sl@0
  1303
# error SQLITE_MAX_ATTACH must be between 0 and 30
sl@0
  1304
#endif
sl@0
  1305
#if SQLITE_MAX_LIKE_PATTERN_LENGTH<1
sl@0
  1306
# error SQLITE_MAX_LIKE_PATTERN_LENGTH must be at least 1
sl@0
  1307
#endif
sl@0
  1308
#if SQLITE_MAX_VARIABLE_NUMBER<1
sl@0
  1309
# error SQLITE_MAX_VARIABLE_NUMBER must be at least 1
sl@0
  1310
#endif
sl@0
  1311
sl@0
  1312
sl@0
  1313
/*
sl@0
  1314
** Change the value of a limit.  Report the old value.
sl@0
  1315
** If an invalid limit index is supplied, report -1.
sl@0
  1316
** Make no changes but still report the old value if the
sl@0
  1317
** new limit is negative.
sl@0
  1318
**
sl@0
  1319
** A new lower limit does not shrink existing constructs.
sl@0
  1320
** It merely prevents new constructs that exceed the limit
sl@0
  1321
** from forming.
sl@0
  1322
*/
sl@0
  1323
int sqlite3_limit(sqlite3 *db, int limitId, int newLimit){
sl@0
  1324
  int oldLimit;
sl@0
  1325
  if( limitId<0 || limitId>=SQLITE_N_LIMIT ){
sl@0
  1326
    return -1;
sl@0
  1327
  }
sl@0
  1328
  oldLimit = db->aLimit[limitId];
sl@0
  1329
  if( newLimit>=0 ){
sl@0
  1330
    if( newLimit>aHardLimit[limitId] ){
sl@0
  1331
      newLimit = aHardLimit[limitId];
sl@0
  1332
    }
sl@0
  1333
    db->aLimit[limitId] = newLimit;
sl@0
  1334
  }
sl@0
  1335
  return oldLimit;
sl@0
  1336
}
sl@0
  1337
sl@0
  1338
/*
sl@0
  1339
** This routine does the work of opening a database on behalf of
sl@0
  1340
** sqlite3_open() and sqlite3_open16(). The database filename "zFilename"  
sl@0
  1341
** is UTF-8 encoded.
sl@0
  1342
*/
sl@0
  1343
static int openDatabase(
sl@0
  1344
  const char *zFilename, /* Database filename UTF-8 encoded */
sl@0
  1345
  sqlite3 **ppDb,        /* OUT: Returned database handle */
sl@0
  1346
  unsigned flags,        /* Operational flags */
sl@0
  1347
  const char *zVfs       /* Name of the VFS to use */
sl@0
  1348
){
sl@0
  1349
  sqlite3 *db;
sl@0
  1350
  int rc;
sl@0
  1351
  CollSeq *pColl;
sl@0
  1352
  int isThreadsafe = 1;
sl@0
  1353
sl@0
  1354
#ifndef SQLITE_OMIT_AUTOINIT
sl@0
  1355
  rc = sqlite3_initialize();
sl@0
  1356
  if( rc ) return rc;
sl@0
  1357
#endif
sl@0
  1358
sl@0
  1359
  if( flags&SQLITE_OPEN_NOMUTEX ){
sl@0
  1360
    isThreadsafe = 0;
sl@0
  1361
  }
sl@0
  1362
sl@0
  1363
  /* Remove harmful bits from the flags parameter */
sl@0
  1364
  flags &=  ~( SQLITE_OPEN_DELETEONCLOSE |
sl@0
  1365
               SQLITE_OPEN_MAIN_DB |
sl@0
  1366
               SQLITE_OPEN_TEMP_DB | 
sl@0
  1367
               SQLITE_OPEN_TRANSIENT_DB | 
sl@0
  1368
               SQLITE_OPEN_MAIN_JOURNAL | 
sl@0
  1369
               SQLITE_OPEN_TEMP_JOURNAL | 
sl@0
  1370
               SQLITE_OPEN_SUBJOURNAL | 
sl@0
  1371
               SQLITE_OPEN_MASTER_JOURNAL |
sl@0
  1372
               SQLITE_OPEN_NOMUTEX
sl@0
  1373
             );
sl@0
  1374
sl@0
  1375
  /* Allocate the sqlite data structure */
sl@0
  1376
  db = sqlite3MallocZero( sizeof(sqlite3) );
sl@0
  1377
  if( db==0 ) goto opendb_out;
sl@0
  1378
  if( sqlite3Config.bFullMutex && isThreadsafe ){
sl@0
  1379
    db->mutex = sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE);
sl@0
  1380
    if( db->mutex==0 ){
sl@0
  1381
      sqlite3_free(db);
sl@0
  1382
      db = 0;
sl@0
  1383
      goto opendb_out;
sl@0
  1384
    }
sl@0
  1385
  }
sl@0
  1386
  sqlite3_mutex_enter(db->mutex);
sl@0
  1387
  db->errMask = 0xff;
sl@0
  1388
  db->priorNewRowid = 0;
sl@0
  1389
  db->nDb = 2;
sl@0
  1390
  db->magic = SQLITE_MAGIC_BUSY;
sl@0
  1391
  db->aDb = db->aDbStatic;
sl@0
  1392
sl@0
  1393
  assert( sizeof(db->aLimit)==sizeof(aHardLimit) );
sl@0
  1394
  memcpy(db->aLimit, aHardLimit, sizeof(db->aLimit));
sl@0
  1395
  db->autoCommit = 1;
sl@0
  1396
  db->nextAutovac = -1;
sl@0
  1397
  db->nextPagesize = 0;
sl@0
  1398
  db->flags |= SQLITE_ShortColNames
sl@0
  1399
#if SQLITE_DEFAULT_FILE_FORMAT<4
sl@0
  1400
                 | SQLITE_LegacyFileFmt
sl@0
  1401
#endif
sl@0
  1402
#ifdef SQLITE_ENABLE_LOAD_EXTENSION
sl@0
  1403
                 | SQLITE_LoadExtension
sl@0
  1404
#endif
sl@0
  1405
      ;
sl@0
  1406
  sqlite3HashInit(&db->aFunc, SQLITE_HASH_STRING, 0);
sl@0
  1407
  sqlite3HashInit(&db->aCollSeq, SQLITE_HASH_STRING, 0);
sl@0
  1408
#ifndef SQLITE_OMIT_VIRTUALTABLE
sl@0
  1409
  sqlite3HashInit(&db->aModule, SQLITE_HASH_STRING, 0);
sl@0
  1410
#endif
sl@0
  1411
sl@0
  1412
  db->pVfs = sqlite3_vfs_find(zVfs);
sl@0
  1413
  if( !db->pVfs ){
sl@0
  1414
    rc = SQLITE_ERROR;
sl@0
  1415
    db->magic = SQLITE_MAGIC_SICK;
sl@0
  1416
    sqlite3Error(db, rc, "no such vfs: %s", zVfs);
sl@0
  1417
    goto opendb_out;
sl@0
  1418
  }
sl@0
  1419
sl@0
  1420
  /* Add the default collation sequence BINARY. BINARY works for both UTF-8
sl@0
  1421
  ** and UTF-16, so add a version for each to avoid any unnecessary
sl@0
  1422
  ** conversions. The only error that can occur here is a malloc() failure.
sl@0
  1423
  */
sl@0
  1424
  createCollation(db, "BINARY", SQLITE_UTF8, 0, binCollFunc, 0);
sl@0
  1425
  createCollation(db, "BINARY", SQLITE_UTF16BE, 0, binCollFunc, 0);
sl@0
  1426
  createCollation(db, "BINARY", SQLITE_UTF16LE, 0, binCollFunc, 0);
sl@0
  1427
  createCollation(db, "RTRIM", SQLITE_UTF8, (void*)1, binCollFunc, 0);
sl@0
  1428
  if( db->mallocFailed ){
sl@0
  1429
    db->magic = SQLITE_MAGIC_SICK;
sl@0
  1430
    goto opendb_out;
sl@0
  1431
  }
sl@0
  1432
  db->pDfltColl = sqlite3FindCollSeq(db, SQLITE_UTF8, "BINARY", 6, 0);
sl@0
  1433
  assert( db->pDfltColl!=0 );
sl@0
  1434
sl@0
  1435
  /* Also add a UTF-8 case-insensitive collation sequence. */
sl@0
  1436
  createCollation(db, "NOCASE", SQLITE_UTF8, 0, nocaseCollatingFunc, 0);
sl@0
  1437
sl@0
  1438
  /* Set flags on the built-in collating sequences */
sl@0
  1439
  db->pDfltColl->type = SQLITE_COLL_BINARY;
sl@0
  1440
  pColl = sqlite3FindCollSeq(db, SQLITE_UTF8, "NOCASE", 6, 0);
sl@0
  1441
  if( pColl ){
sl@0
  1442
    pColl->type = SQLITE_COLL_NOCASE;
sl@0
  1443
  }
sl@0
  1444
sl@0
  1445
  /* Open the backend database driver */
sl@0
  1446
  db->openFlags = flags;
sl@0
  1447
  rc = sqlite3BtreeFactory(db, zFilename, 0, SQLITE_DEFAULT_CACHE_SIZE, 
sl@0
  1448
                           flags | SQLITE_OPEN_MAIN_DB,
sl@0
  1449
                           &db->aDb[0].pBt);
sl@0
  1450
  if( rc!=SQLITE_OK ){
sl@0
  1451
    sqlite3Error(db, rc, 0);
sl@0
  1452
    db->magic = SQLITE_MAGIC_SICK;
sl@0
  1453
    goto opendb_out;
sl@0
  1454
  }
sl@0
  1455
  db->aDb[0].pSchema = sqlite3SchemaGet(db, db->aDb[0].pBt);
sl@0
  1456
  db->aDb[1].pSchema = sqlite3SchemaGet(db, 0);
sl@0
  1457
sl@0
  1458
sl@0
  1459
  /* The default safety_level for the main database is 'full'; for the temp
sl@0
  1460
  ** database it is 'NONE'. This matches the pager layer defaults.  
sl@0
  1461
  */
sl@0
  1462
  db->aDb[0].zName = "main";
sl@0
  1463
  db->aDb[0].safety_level = 3;
sl@0
  1464
#ifndef SQLITE_OMIT_TEMPDB
sl@0
  1465
  db->aDb[1].zName = "temp";
sl@0
  1466
  db->aDb[1].safety_level = 1;
sl@0
  1467
#endif
sl@0
  1468
sl@0
  1469
  db->magic = SQLITE_MAGIC_OPEN;
sl@0
  1470
  if( db->mallocFailed ){
sl@0
  1471
    goto opendb_out;
sl@0
  1472
  }
sl@0
  1473
sl@0
  1474
  /* Register all built-in functions, but do not attempt to read the
sl@0
  1475
  ** database schema yet. This is delayed until the first time the database
sl@0
  1476
  ** is accessed.
sl@0
  1477
  */
sl@0
  1478
  sqlite3Error(db, SQLITE_OK, 0);
sl@0
  1479
  sqlite3RegisterBuiltinFunctions(db);
sl@0
  1480
sl@0
  1481
  /* Load automatic extensions - extensions that have been registered
sl@0
  1482
  ** using the sqlite3_automatic_extension() API.
sl@0
  1483
  */
sl@0
  1484
  (void)sqlite3AutoLoadExtensions(db);
sl@0
  1485
  if( sqlite3_errcode(db)!=SQLITE_OK ){
sl@0
  1486
    goto opendb_out;
sl@0
  1487
  }
sl@0
  1488
sl@0
  1489
#ifdef SQLITE_ENABLE_FTS1
sl@0
  1490
  if( !db->mallocFailed ){
sl@0
  1491
    extern int sqlite3Fts1Init(sqlite3*);
sl@0
  1492
    rc = sqlite3Fts1Init(db);
sl@0
  1493
  }
sl@0
  1494
#endif
sl@0
  1495
sl@0
  1496
#ifdef SQLITE_ENABLE_FTS2
sl@0
  1497
  if( !db->mallocFailed && rc==SQLITE_OK ){
sl@0
  1498
    extern int sqlite3Fts2Init(sqlite3*);
sl@0
  1499
    rc = sqlite3Fts2Init(db);
sl@0
  1500
  }
sl@0
  1501
#endif
sl@0
  1502
sl@0
  1503
#ifdef SQLITE_ENABLE_FTS3
sl@0
  1504
  if( !db->mallocFailed && rc==SQLITE_OK ){
sl@0
  1505
    rc = sqlite3Fts3Init(db);
sl@0
  1506
  }
sl@0
  1507
#endif
sl@0
  1508
sl@0
  1509
#ifdef SQLITE_ENABLE_ICU
sl@0
  1510
  if( !db->mallocFailed && rc==SQLITE_OK ){
sl@0
  1511
    extern int sqlite3IcuInit(sqlite3*);
sl@0
  1512
    rc = sqlite3IcuInit(db);
sl@0
  1513
  }
sl@0
  1514
#endif
sl@0
  1515
sl@0
  1516
#ifdef SQLITE_ENABLE_RTREE
sl@0
  1517
  if( !db->mallocFailed && rc==SQLITE_OK){
sl@0
  1518
    rc = sqlite3RtreeInit(db);
sl@0
  1519
  }
sl@0
  1520
#endif
sl@0
  1521
sl@0
  1522
  sqlite3Error(db, rc, 0);
sl@0
  1523
sl@0
  1524
  /* -DSQLITE_DEFAULT_LOCKING_MODE=1 makes EXCLUSIVE the default locking
sl@0
  1525
  ** mode.  -DSQLITE_DEFAULT_LOCKING_MODE=0 make NORMAL the default locking
sl@0
  1526
  ** mode.  Doing nothing at all also makes NORMAL the default.
sl@0
  1527
  */
sl@0
  1528
#ifdef SQLITE_DEFAULT_LOCKING_MODE
sl@0
  1529
  db->dfltLockMode = SQLITE_DEFAULT_LOCKING_MODE;
sl@0
  1530
  sqlite3PagerLockingMode(sqlite3BtreePager(db->aDb[0].pBt),
sl@0
  1531
                          SQLITE_DEFAULT_LOCKING_MODE);
sl@0
  1532
#endif
sl@0
  1533
sl@0
  1534
  /* Enable the lookaside-malloc subsystem */
sl@0
  1535
  setupLookaside(db, 0, sqlite3Config.szLookaside, sqlite3Config.nLookaside);
sl@0
  1536
sl@0
  1537
opendb_out:
sl@0
  1538
  if( db ){
sl@0
  1539
    assert( db->mutex!=0 || isThreadsafe==0 || sqlite3Config.bFullMutex==0 );
sl@0
  1540
    sqlite3_mutex_leave(db->mutex);
sl@0
  1541
  }
sl@0
  1542
  if( SQLITE_NOMEM==(rc = sqlite3_errcode(db)) ){
sl@0
  1543
    sqlite3_close(db);
sl@0
  1544
    db = 0;
sl@0
  1545
  }
sl@0
  1546
  *ppDb = db;
sl@0
  1547
  return sqlite3ApiExit(0, rc);
sl@0
  1548
}
sl@0
  1549
sl@0
  1550
/*
sl@0
  1551
** Open a new database handle.
sl@0
  1552
*/
sl@0
  1553
int sqlite3_open(
sl@0
  1554
  const char *zFilename, 
sl@0
  1555
  sqlite3 **ppDb 
sl@0
  1556
){
sl@0
  1557
  return openDatabase(zFilename, ppDb,
sl@0
  1558
                      SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0);
sl@0
  1559
}
sl@0
  1560
int sqlite3_open_v2(
sl@0
  1561
  const char *filename,   /* Database filename (UTF-8) */
sl@0
  1562
  sqlite3 **ppDb,         /* OUT: SQLite db handle */
sl@0
  1563
  int flags,              /* Flags */
sl@0
  1564
  const char *zVfs        /* Name of VFS module to use */
sl@0
  1565
){
sl@0
  1566
  return openDatabase(filename, ppDb, flags, zVfs);
sl@0
  1567
}
sl@0
  1568
sl@0
  1569
#ifndef SQLITE_OMIT_UTF16
sl@0
  1570
/*
sl@0
  1571
** Open a new database handle.
sl@0
  1572
*/
sl@0
  1573
int sqlite3_open16(
sl@0
  1574
  const void *zFilename, 
sl@0
  1575
  sqlite3 **ppDb
sl@0
  1576
){
sl@0
  1577
  char const *zFilename8;   /* zFilename encoded in UTF-8 instead of UTF-16 */
sl@0
  1578
  sqlite3_value *pVal;
sl@0
  1579
  int rc;
sl@0
  1580
sl@0
  1581
  assert( zFilename );
sl@0
  1582
  assert( ppDb );
sl@0
  1583
  *ppDb = 0;
sl@0
  1584
#ifndef SQLITE_OMIT_AUTOINIT
sl@0
  1585
  rc = sqlite3_initialize();
sl@0
  1586
  if( rc ) return rc;
sl@0
  1587
#endif
sl@0
  1588
  pVal = sqlite3ValueNew(0);
sl@0
  1589
  sqlite3ValueSetStr(pVal, -1, zFilename, SQLITE_UTF16NATIVE, SQLITE_STATIC);
sl@0
  1590
  zFilename8 = sqlite3ValueText(pVal, SQLITE_UTF8);
sl@0
  1591
  if( zFilename8 ){
sl@0
  1592
    rc = openDatabase(zFilename8, ppDb,
sl@0
  1593
                      SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0);
sl@0
  1594
    assert( *ppDb || rc==SQLITE_NOMEM );
sl@0
  1595
    if( rc==SQLITE_OK && !DbHasProperty(*ppDb, 0, DB_SchemaLoaded) ){
sl@0
  1596
      ENC(*ppDb) = SQLITE_UTF16NATIVE;
sl@0
  1597
    }
sl@0
  1598
  }else{
sl@0
  1599
    rc = SQLITE_NOMEM;
sl@0
  1600
  }
sl@0
  1601
  sqlite3ValueFree(pVal);
sl@0
  1602
sl@0
  1603
  return sqlite3ApiExit(0, rc);
sl@0
  1604
}
sl@0
  1605
#endif /* SQLITE_OMIT_UTF16 */
sl@0
  1606
sl@0
  1607
/*
sl@0
  1608
** Register a new collation sequence with the database handle db.
sl@0
  1609
*/
sl@0
  1610
int sqlite3_create_collation(
sl@0
  1611
  sqlite3* db, 
sl@0
  1612
  const char *zName, 
sl@0
  1613
  int enc, 
sl@0
  1614
  void* pCtx,
sl@0
  1615
  int(*xCompare)(void*,int,const void*,int,const void*)
sl@0
  1616
){
sl@0
  1617
  int rc;
sl@0
  1618
  sqlite3_mutex_enter(db->mutex);
sl@0
  1619
  assert( !db->mallocFailed );
sl@0
  1620
  rc = createCollation(db, zName, enc, pCtx, xCompare, 0);
sl@0
  1621
  rc = sqlite3ApiExit(db, rc);
sl@0
  1622
  sqlite3_mutex_leave(db->mutex);
sl@0
  1623
  return rc;
sl@0
  1624
}
sl@0
  1625
sl@0
  1626
/*
sl@0
  1627
** Register a new collation sequence with the database handle db.
sl@0
  1628
*/
sl@0
  1629
int sqlite3_create_collation_v2(
sl@0
  1630
  sqlite3* db, 
sl@0
  1631
  const char *zName, 
sl@0
  1632
  int enc, 
sl@0
  1633
  void* pCtx,
sl@0
  1634
  int(*xCompare)(void*,int,const void*,int,const void*),
sl@0
  1635
  void(*xDel)(void*)
sl@0
  1636
){
sl@0
  1637
  int rc;
sl@0
  1638
  sqlite3_mutex_enter(db->mutex);
sl@0
  1639
  assert( !db->mallocFailed );
sl@0
  1640
  rc = createCollation(db, zName, enc, pCtx, xCompare, xDel);
sl@0
  1641
  rc = sqlite3ApiExit(db, rc);
sl@0
  1642
  sqlite3_mutex_leave(db->mutex);
sl@0
  1643
  return rc;
sl@0
  1644
}
sl@0
  1645
sl@0
  1646
#ifndef SQLITE_OMIT_UTF16
sl@0
  1647
/*
sl@0
  1648
** Register a new collation sequence with the database handle db.
sl@0
  1649
*/
sl@0
  1650
int sqlite3_create_collation16(
sl@0
  1651
  sqlite3* db, 
sl@0
  1652
  const void *zName,
sl@0
  1653
  int enc, 
sl@0
  1654
  void* pCtx,
sl@0
  1655
  int(*xCompare)(void*,int,const void*,int,const void*)
sl@0
  1656
){
sl@0
  1657
  int rc = SQLITE_OK;
sl@0
  1658
  char *zName8;
sl@0
  1659
  sqlite3_mutex_enter(db->mutex);
sl@0
  1660
  assert( !db->mallocFailed );
sl@0
  1661
  zName8 = sqlite3Utf16to8(db, zName, -1);
sl@0
  1662
  if( zName8 ){
sl@0
  1663
    rc = createCollation(db, zName8, enc, pCtx, xCompare, 0);
sl@0
  1664
    sqlite3DbFree(db, zName8);
sl@0
  1665
  }
sl@0
  1666
  rc = sqlite3ApiExit(db, rc);
sl@0
  1667
  sqlite3_mutex_leave(db->mutex);
sl@0
  1668
  return rc;
sl@0
  1669
}
sl@0
  1670
#endif /* SQLITE_OMIT_UTF16 */
sl@0
  1671
sl@0
  1672
/*
sl@0
  1673
** Register a collation sequence factory callback with the database handle
sl@0
  1674
** db. Replace any previously installed collation sequence factory.
sl@0
  1675
*/
sl@0
  1676
int sqlite3_collation_needed(
sl@0
  1677
  sqlite3 *db, 
sl@0
  1678
  void *pCollNeededArg, 
sl@0
  1679
  void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*)
sl@0
  1680
){
sl@0
  1681
  sqlite3_mutex_enter(db->mutex);
sl@0
  1682
  db->xCollNeeded = xCollNeeded;
sl@0
  1683
  db->xCollNeeded16 = 0;
sl@0
  1684
  db->pCollNeededArg = pCollNeededArg;
sl@0
  1685
  sqlite3_mutex_leave(db->mutex);
sl@0
  1686
  return SQLITE_OK;
sl@0
  1687
}
sl@0
  1688
sl@0
  1689
#ifndef SQLITE_OMIT_UTF16
sl@0
  1690
/*
sl@0
  1691
** Register a collation sequence factory callback with the database handle
sl@0
  1692
** db. Replace any previously installed collation sequence factory.
sl@0
  1693
*/
sl@0
  1694
int sqlite3_collation_needed16(
sl@0
  1695
  sqlite3 *db, 
sl@0
  1696
  void *pCollNeededArg, 
sl@0
  1697
  void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*)
sl@0
  1698
){
sl@0
  1699
  sqlite3_mutex_enter(db->mutex);
sl@0
  1700
  db->xCollNeeded = 0;
sl@0
  1701
  db->xCollNeeded16 = xCollNeeded16;
sl@0
  1702
  db->pCollNeededArg = pCollNeededArg;
sl@0
  1703
  sqlite3_mutex_leave(db->mutex);
sl@0
  1704
  return SQLITE_OK;
sl@0
  1705
}
sl@0
  1706
#endif /* SQLITE_OMIT_UTF16 */
sl@0
  1707
sl@0
  1708
#ifndef SQLITE_OMIT_GLOBALRECOVER
sl@0
  1709
/*
sl@0
  1710
** This function is now an anachronism. It used to be used to recover from a
sl@0
  1711
** malloc() failure, but SQLite now does this automatically.
sl@0
  1712
*/
sl@0
  1713
int sqlite3_global_recover(void){
sl@0
  1714
  return SQLITE_OK;
sl@0
  1715
}
sl@0
  1716
#endif
sl@0
  1717
sl@0
  1718
/*
sl@0
  1719
** Test to see whether or not the database connection is in autocommit
sl@0
  1720
** mode.  Return TRUE if it is and FALSE if not.  Autocommit mode is on
sl@0
  1721
** by default.  Autocommit is disabled by a BEGIN statement and reenabled
sl@0
  1722
** by the next COMMIT or ROLLBACK.
sl@0
  1723
**
sl@0
  1724
******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ******
sl@0
  1725
*/
sl@0
  1726
int sqlite3_get_autocommit(sqlite3 *db){
sl@0
  1727
  return db->autoCommit;
sl@0
  1728
}
sl@0
  1729
sl@0
  1730
#ifdef SQLITE_DEBUG
sl@0
  1731
/*
sl@0
  1732
** The following routine is subtituted for constant SQLITE_CORRUPT in
sl@0
  1733
** debugging builds.  This provides a way to set a breakpoint for when
sl@0
  1734
** corruption is first detected.
sl@0
  1735
*/
sl@0
  1736
int sqlite3Corrupt(void){
sl@0
  1737
  return SQLITE_CORRUPT;
sl@0
  1738
}
sl@0
  1739
#endif
sl@0
  1740
sl@0
  1741
/*
sl@0
  1742
** This is a convenience routine that makes sure that all thread-specific
sl@0
  1743
** data for this thread has been deallocated.
sl@0
  1744
**
sl@0
  1745
** SQLite no longer uses thread-specific data so this routine is now a
sl@0
  1746
** no-op.  It is retained for historical compatibility.
sl@0
  1747
*/
sl@0
  1748
void sqlite3_thread_cleanup(void){
sl@0
  1749
}
sl@0
  1750
sl@0
  1751
/*
sl@0
  1752
** Return meta information about a specific column of a database table.
sl@0
  1753
** See comment in sqlite3.h (sqlite.h.in) for details.
sl@0
  1754
*/
sl@0
  1755
#ifdef SQLITE_ENABLE_COLUMN_METADATA
sl@0
  1756
int sqlite3_table_column_metadata(
sl@0
  1757
  sqlite3 *db,                /* Connection handle */
sl@0
  1758
  const char *zDbName,        /* Database name or NULL */
sl@0
  1759
  const char *zTableName,     /* Table name */
sl@0
  1760
  const char *zColumnName,    /* Column name */
sl@0
  1761
  char const **pzDataType,    /* OUTPUT: Declared data type */
sl@0
  1762
  char const **pzCollSeq,     /* OUTPUT: Collation sequence name */
sl@0
  1763
  int *pNotNull,              /* OUTPUT: True if NOT NULL constraint exists */
sl@0
  1764
  int *pPrimaryKey,           /* OUTPUT: True if column part of PK */
sl@0
  1765
  int *pAutoinc               /* OUTPUT: True if column is auto-increment */
sl@0
  1766
){
sl@0
  1767
  int rc;
sl@0
  1768
  char *zErrMsg = 0;
sl@0
  1769
  Table *pTab = 0;
sl@0
  1770
  Column *pCol = 0;
sl@0
  1771
  int iCol;
sl@0
  1772
sl@0
  1773
  char const *zDataType = 0;
sl@0
  1774
  char const *zCollSeq = 0;
sl@0
  1775
  int notnull = 0;
sl@0
  1776
  int primarykey = 0;
sl@0
  1777
  int autoinc = 0;
sl@0
  1778
sl@0
  1779
  /* Ensure the database schema has been loaded */
sl@0
  1780
  sqlite3_mutex_enter(db->mutex);
sl@0
  1781
  (void)sqlite3SafetyOn(db);
sl@0
  1782
  sqlite3BtreeEnterAll(db);
sl@0
  1783
  rc = sqlite3Init(db, &zErrMsg);
sl@0
  1784
  sqlite3BtreeLeaveAll(db);
sl@0
  1785
  if( SQLITE_OK!=rc ){
sl@0
  1786
    goto error_out;
sl@0
  1787
  }
sl@0
  1788
sl@0
  1789
  /* Locate the table in question */
sl@0
  1790
  pTab = sqlite3FindTable(db, zTableName, zDbName);
sl@0
  1791
  if( !pTab || pTab->pSelect ){
sl@0
  1792
    pTab = 0;
sl@0
  1793
    goto error_out;
sl@0
  1794
  }
sl@0
  1795
sl@0
  1796
  /* Find the column for which info is requested */
sl@0
  1797
  if( sqlite3IsRowid(zColumnName) ){
sl@0
  1798
    iCol = pTab->iPKey;
sl@0
  1799
    if( iCol>=0 ){
sl@0
  1800
      pCol = &pTab->aCol[iCol];
sl@0
  1801
    }
sl@0
  1802
  }else{
sl@0
  1803
    for(iCol=0; iCol<pTab->nCol; iCol++){
sl@0
  1804
      pCol = &pTab->aCol[iCol];
sl@0
  1805
      if( 0==sqlite3StrICmp(pCol->zName, zColumnName) ){
sl@0
  1806
        break;
sl@0
  1807
      }
sl@0
  1808
    }
sl@0
  1809
    if( iCol==pTab->nCol ){
sl@0
  1810
      pTab = 0;
sl@0
  1811
      goto error_out;
sl@0
  1812
    }
sl@0
  1813
  }
sl@0
  1814
sl@0
  1815
  /* The following block stores the meta information that will be returned
sl@0
  1816
  ** to the caller in local variables zDataType, zCollSeq, notnull, primarykey
sl@0
  1817
  ** and autoinc. At this point there are two possibilities:
sl@0
  1818
  ** 
sl@0
  1819
  **     1. The specified column name was rowid", "oid" or "_rowid_" 
sl@0
  1820
  **        and there is no explicitly declared IPK column. 
sl@0
  1821
  **
sl@0
  1822
  **     2. The table is not a view and the column name identified an 
sl@0
  1823
  **        explicitly declared column. Copy meta information from *pCol.
sl@0
  1824
  */ 
sl@0
  1825
  if( pCol ){
sl@0
  1826
    zDataType = pCol->zType;
sl@0
  1827
    zCollSeq = pCol->zColl;
sl@0
  1828
    notnull = pCol->notNull!=0;
sl@0
  1829
    primarykey  = pCol->isPrimKey!=0;
sl@0
  1830
    autoinc = pTab->iPKey==iCol && pTab->autoInc;
sl@0
  1831
  }else{
sl@0
  1832
    zDataType = "INTEGER";
sl@0
  1833
    primarykey = 1;
sl@0
  1834
  }
sl@0
  1835
  if( !zCollSeq ){
sl@0
  1836
    zCollSeq = "BINARY";
sl@0
  1837
  }
sl@0
  1838
sl@0
  1839
error_out:
sl@0
  1840
  (void)sqlite3SafetyOff(db);
sl@0
  1841
sl@0
  1842
  /* Whether the function call succeeded or failed, set the output parameters
sl@0
  1843
  ** to whatever their local counterparts contain. If an error did occur,
sl@0
  1844
  ** this has the effect of zeroing all output parameters.
sl@0
  1845
  */
sl@0
  1846
  if( pzDataType ) *pzDataType = zDataType;
sl@0
  1847
  if( pzCollSeq ) *pzCollSeq = zCollSeq;
sl@0
  1848
  if( pNotNull ) *pNotNull = notnull;
sl@0
  1849
  if( pPrimaryKey ) *pPrimaryKey = primarykey;
sl@0
  1850
  if( pAutoinc ) *pAutoinc = autoinc;
sl@0
  1851
sl@0
  1852
  if( SQLITE_OK==rc && !pTab ){
sl@0
  1853
    sqlite3DbFree(db, zErrMsg);
sl@0
  1854
    zErrMsg = sqlite3MPrintf(db, "no such table column: %s.%s", zTableName,
sl@0
  1855
        zColumnName);
sl@0
  1856
    rc = SQLITE_ERROR;
sl@0
  1857
  }
sl@0
  1858
  sqlite3Error(db, rc, (zErrMsg?"%s":0), zErrMsg);
sl@0
  1859
  sqlite3DbFree(db, zErrMsg);
sl@0
  1860
  rc = sqlite3ApiExit(db, rc);
sl@0
  1861
  sqlite3_mutex_leave(db->mutex);
sl@0
  1862
  return rc;
sl@0
  1863
}
sl@0
  1864
#endif
sl@0
  1865
sl@0
  1866
/*
sl@0
  1867
** Sleep for a little while.  Return the amount of time slept.
sl@0
  1868
*/
sl@0
  1869
int sqlite3_sleep(int ms){
sl@0
  1870
  sqlite3_vfs *pVfs;
sl@0
  1871
  int rc;
sl@0
  1872
  pVfs = sqlite3_vfs_find(0);
sl@0
  1873
  if( pVfs==0 ) return 0;
sl@0
  1874
sl@0
  1875
  /* This function works in milliseconds, but the underlying OsSleep() 
sl@0
  1876
  ** API uses microseconds. Hence the 1000's.
sl@0
  1877
  */
sl@0
  1878
  rc = (sqlite3OsSleep(pVfs, 1000*ms)/1000);
sl@0
  1879
  return rc;
sl@0
  1880
}
sl@0
  1881
sl@0
  1882
/*
sl@0
  1883
** Enable or disable the extended result codes.
sl@0
  1884
*/
sl@0
  1885
int sqlite3_extended_result_codes(sqlite3 *db, int onoff){
sl@0
  1886
  sqlite3_mutex_enter(db->mutex);
sl@0
  1887
  db->errMask = onoff ? 0xffffffff : 0xff;
sl@0
  1888
  sqlite3_mutex_leave(db->mutex);
sl@0
  1889
  return SQLITE_OK;
sl@0
  1890
}
sl@0
  1891
sl@0
  1892
/*
sl@0
  1893
** Invoke the xFileControl method on a particular database.
sl@0
  1894
*/
sl@0
  1895
int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){
sl@0
  1896
  int rc = SQLITE_ERROR;
sl@0
  1897
  int iDb;
sl@0
  1898
  sqlite3_mutex_enter(db->mutex);
sl@0
  1899
  if( zDbName==0 ){
sl@0
  1900
    iDb = 0;
sl@0
  1901
  }else{
sl@0
  1902
    for(iDb=0; iDb<db->nDb; iDb++){
sl@0
  1903
      if( strcmp(db->aDb[iDb].zName, zDbName)==0 ) break;
sl@0
  1904
    }
sl@0
  1905
  }
sl@0
  1906
  if( iDb<db->nDb ){
sl@0
  1907
    Btree *pBtree = db->aDb[iDb].pBt;
sl@0
  1908
    if( pBtree ){
sl@0
  1909
      Pager *pPager;
sl@0
  1910
      sqlite3_file *fd;
sl@0
  1911
      sqlite3BtreeEnter(pBtree);
sl@0
  1912
      pPager = sqlite3BtreePager(pBtree);
sl@0
  1913
      assert( pPager!=0 );
sl@0
  1914
      fd = sqlite3PagerFile(pPager);
sl@0
  1915
      assert( fd!=0 );
sl@0
  1916
      if( fd->pMethods ){
sl@0
  1917
        rc = sqlite3OsFileControl(fd, op, pArg);
sl@0
  1918
      }
sl@0
  1919
      sqlite3BtreeLeave(pBtree);
sl@0
  1920
    }
sl@0
  1921
  }
sl@0
  1922
  sqlite3_mutex_leave(db->mutex);
sl@0
  1923
  return rc;   
sl@0
  1924
}
sl@0
  1925
sl@0
  1926
/*
sl@0
  1927
** Interface to the testing logic.
sl@0
  1928
*/
sl@0
  1929
int sqlite3_test_control(int op, ...){
sl@0
  1930
  int rc = 0;
sl@0
  1931
#ifndef SQLITE_OMIT_BUILTIN_TEST
sl@0
  1932
  va_list ap;
sl@0
  1933
  va_start(ap, op);
sl@0
  1934
  switch( op ){
sl@0
  1935
sl@0
  1936
    /*
sl@0
  1937
    ** Save the current state of the PRNG.
sl@0
  1938
    */
sl@0
  1939
    case SQLITE_TESTCTRL_PRNG_SAVE: {
sl@0
  1940
      sqlite3PrngSaveState();
sl@0
  1941
      break;
sl@0
  1942
    }
sl@0
  1943
sl@0
  1944
    /*
sl@0
  1945
    ** Restore the state of the PRNG to the last state saved using
sl@0
  1946
    ** PRNG_SAVE.  If PRNG_SAVE has never before been called, then
sl@0
  1947
    ** this verb acts like PRNG_RESET.
sl@0
  1948
    */
sl@0
  1949
    case SQLITE_TESTCTRL_PRNG_RESTORE: {
sl@0
  1950
      sqlite3PrngRestoreState();
sl@0
  1951
      break;
sl@0
  1952
    }
sl@0
  1953
sl@0
  1954
    /*
sl@0
  1955
    ** Reset the PRNG back to its uninitialized state.  The next call
sl@0
  1956
    ** to sqlite3_randomness() will reseed the PRNG using a single call
sl@0
  1957
    ** to the xRandomness method of the default VFS.
sl@0
  1958
    */
sl@0
  1959
    case SQLITE_TESTCTRL_PRNG_RESET: {
sl@0
  1960
      sqlite3PrngResetState();
sl@0
  1961
      break;
sl@0
  1962
    }
sl@0
  1963
sl@0
  1964
    /*
sl@0
  1965
    **  sqlite3_test_control(BITVEC_TEST, size, program)
sl@0
  1966
    **
sl@0
  1967
    ** Run a test against a Bitvec object of size.  The program argument
sl@0
  1968
    ** is an array of integers that defines the test.  Return -1 on a
sl@0
  1969
    ** memory allocation error, 0 on success, or non-zero for an error.
sl@0
  1970
    ** See the sqlite3BitvecBuiltinTest() for additional information.
sl@0
  1971
    */
sl@0
  1972
    case SQLITE_TESTCTRL_BITVEC_TEST: {
sl@0
  1973
      int sz = va_arg(ap, int);
sl@0
  1974
      int *aProg = va_arg(ap, int*);
sl@0
  1975
      rc = sqlite3BitvecBuiltinTest(sz, aProg);
sl@0
  1976
      break;
sl@0
  1977
    }
sl@0
  1978
sl@0
  1979
    /*
sl@0
  1980
    **  sqlite3_test_control(BENIGN_MALLOC_HOOKS, xBegin, xEnd)
sl@0
  1981
    **
sl@0
  1982
    ** Register hooks to call to indicate which malloc() failures 
sl@0
  1983
    ** are benign.
sl@0
  1984
    */
sl@0
  1985
    case SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS: {
sl@0
  1986
      typedef void (*void_function)(void);
sl@0
  1987
      void_function xBenignBegin;
sl@0
  1988
      void_function xBenignEnd;
sl@0
  1989
      xBenignBegin = va_arg(ap, void_function);
sl@0
  1990
      xBenignEnd = va_arg(ap, void_function);
sl@0
  1991
      sqlite3BenignMallocHooks(xBenignBegin, xBenignEnd);
sl@0
  1992
      break;
sl@0
  1993
    }
sl@0
  1994
  }
sl@0
  1995
  va_end(ap);
sl@0
  1996
#endif /* SQLITE_OMIT_BUILTIN_TEST */
sl@0
  1997
  return rc;
sl@0
  1998
}