os/persistentdata/persistentstorage/sqlite3api/TEST/SRC/test_osinst.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
** 2008 April 10
sl@0
     3
**
sl@0
     4
** The author disclaims copyright to this source code.  In place of
sl@0
     5
** a legal notice, here is a blessing:
sl@0
     6
**
sl@0
     7
**    May you do good and not evil.
sl@0
     8
**    May you find forgiveness for yourself and forgive others.
sl@0
     9
**    May you share freely, never taking more than you give.
sl@0
    10
**
sl@0
    11
******************************************************************************
sl@0
    12
**
sl@0
    13
** This file contains the implementation of an SQLite vfs wrapper that
sl@0
    14
** adds instrumentation to all vfs and file methods. C and Tcl interfaces
sl@0
    15
** are provided to control the instrumentation.
sl@0
    16
**
sl@0
    17
** $Id: test_osinst.c,v 1.18 2008/07/25 13:32:45 drh Exp $
sl@0
    18
*/
sl@0
    19
sl@0
    20
#ifdef SQLITE_ENABLE_INSTVFS
sl@0
    21
/*
sl@0
    22
** C interface:
sl@0
    23
**
sl@0
    24
**   sqlite3_instvfs_create()
sl@0
    25
**   sqlite3_instvfs_destroy()
sl@0
    26
**   sqlite3_instvfs_configure()
sl@0
    27
**
sl@0
    28
**   sqlite3_instvfs_reset()
sl@0
    29
**   sqlite3_instvfs_get()
sl@0
    30
**
sl@0
    31
**   sqlite3_instvfs_binarylog
sl@0
    32
**   sqlite3_instvfs_binarylog_marker
sl@0
    33
**
sl@0
    34
** Tcl interface (omitted if SQLITE_TEST is not set):
sl@0
    35
** 
sl@0
    36
**   sqlite3_instvfs create NAME ?PARENT?
sl@0
    37
**
sl@0
    38
**       Create and register new vfs called $NAME, which is a wrapper around
sl@0
    39
**       the existing vfs $PARENT. If the PARENT argument is omitted, the
sl@0
    40
**       new vfs is a wrapper around the current default vfs.
sl@0
    41
**
sl@0
    42
**   sqlite3_instvfs destroy NAME
sl@0
    43
**
sl@0
    44
**       Deregister and destroy the vfs named $NAME, which must have been
sl@0
    45
**       created by an earlier invocation of [sqlite3_instvfs create].
sl@0
    46
**
sl@0
    47
**   sqlite3_instvfs configure NAME SCRIPT
sl@0
    48
**
sl@0
    49
**       Configure the callback script for the vfs $NAME, which much have
sl@0
    50
**       been created by an earlier invocation of [sqlite3_instvfs create].
sl@0
    51
**       After a callback script has been configured, it is invoked each
sl@0
    52
**       time a vfs or file method is called by SQLite. Before invoking
sl@0
    53
**       the callback script, five arguments are appended to it:
sl@0
    54
**
sl@0
    55
**         * The name of the invoked method - i.e. "xRead".
sl@0
    56
**
sl@0
    57
**         * The time consumed by the method call as measured by 
sl@0
    58
**           sqlite3Hwtime() (an integer value)
sl@0
    59
**
sl@0
    60
**         * A string value with a different meaning for different calls. 
sl@0
    61
**           For file methods, the name of the file being operated on. For
sl@0
    62
**           other methods it is the filename argument, if any.
sl@0
    63
**
sl@0
    64
**         * A 32-bit integer value with a call-specific meaning.
sl@0
    65
**
sl@0
    66
**         * A 64-bit integer value. For xRead() and xWrite() calls this
sl@0
    67
**           is the file offset being written to or read from. Unused by
sl@0
    68
**           all other calls.
sl@0
    69
**
sl@0
    70
**   sqlite3_instvfs reset NAME
sl@0
    71
**
sl@0
    72
**       Zero the internal event counters associated with vfs $NAME, 
sl@0
    73
**       which must have been created by an earlier invocation of 
sl@0
    74
**       [sqlite3_instvfs create].
sl@0
    75
**
sl@0
    76
**   sqlite3_instvfs report NAME
sl@0
    77
**
sl@0
    78
**       Return the values of the internal event counters associated 
sl@0
    79
**       with vfs $NAME. The report format is a list with one element
sl@0
    80
**       for each method call (xWrite, xRead etc.). Each element is
sl@0
    81
**       itself a list with three elements:
sl@0
    82
**
sl@0
    83
**         * The name of the method call - i.e. "xWrite",
sl@0
    84
**         * The total number of calls to the method (an integer).
sl@0
    85
**         * The aggregate time consumed by all calls to the method as
sl@0
    86
**           measured by sqlite3Hwtime() (an integer).
sl@0
    87
*/
sl@0
    88
sl@0
    89
#include "sqlite3.h"
sl@0
    90
#include <string.h>
sl@0
    91
#include <assert.h>
sl@0
    92
sl@0
    93
/*
sl@0
    94
** Maximum pathname length supported by the inst backend.
sl@0
    95
*/
sl@0
    96
#define INST_MAX_PATHNAME 512
sl@0
    97
sl@0
    98
sl@0
    99
/* File methods */
sl@0
   100
/* Vfs methods */
sl@0
   101
#define OS_ACCESS            1
sl@0
   102
#define OS_CHECKRESERVEDLOCK 2
sl@0
   103
#define OS_CLOSE             3
sl@0
   104
#define OS_CURRENTTIME       4
sl@0
   105
#define OS_DELETE            5
sl@0
   106
#define OS_DEVCHAR           6
sl@0
   107
#define OS_FILECONTROL       7
sl@0
   108
#define OS_FILESIZE          8
sl@0
   109
#define OS_FULLPATHNAME      9
sl@0
   110
#define OS_LOCK              11
sl@0
   111
#define OS_OPEN              12
sl@0
   112
#define OS_RANDOMNESS        13
sl@0
   113
#define OS_READ              14 
sl@0
   114
#define OS_SECTORSIZE        15
sl@0
   115
#define OS_SLEEP             16
sl@0
   116
#define OS_SYNC              17
sl@0
   117
#define OS_TRUNCATE          18
sl@0
   118
#define OS_UNLOCK            19
sl@0
   119
#define OS_WRITE             20
sl@0
   120
sl@0
   121
#define OS_NUMEVENTS         21
sl@0
   122
sl@0
   123
#define BINARYLOG_STRING     30
sl@0
   124
#define BINARYLOG_MARKER     31
sl@0
   125
sl@0
   126
#define BINARYLOG_PREPARE_V2 64
sl@0
   127
#define BINARYLOG_STEP       65
sl@0
   128
#define BINARYLOG_FINALIZE   66
sl@0
   129
sl@0
   130
struct InstVfs {
sl@0
   131
  sqlite3_vfs base;
sl@0
   132
  sqlite3_vfs *pVfs;
sl@0
   133
sl@0
   134
  void *pClient;
sl@0
   135
  void (*xDel)(void *);
sl@0
   136
  void (*xCall)(void *, int, int, sqlite3_int64, int, const char *, int, int, sqlite3_int64);
sl@0
   137
sl@0
   138
  /* Counters */
sl@0
   139
  sqlite3_int64 aTime[OS_NUMEVENTS];
sl@0
   140
  int aCount[OS_NUMEVENTS];
sl@0
   141
sl@0
   142
  int iNextFileId;
sl@0
   143
};
sl@0
   144
typedef struct InstVfs InstVfs;
sl@0
   145
sl@0
   146
#define REALVFS(p) (((InstVfs *)(p))->pVfs)
sl@0
   147
sl@0
   148
typedef struct inst_file inst_file;
sl@0
   149
struct inst_file {
sl@0
   150
  sqlite3_file base;
sl@0
   151
  sqlite3_file *pReal;
sl@0
   152
  InstVfs *pInstVfs;
sl@0
   153
  const char *zName;
sl@0
   154
  int iFileId;               /* File id number */
sl@0
   155
  int flags;
sl@0
   156
};
sl@0
   157
sl@0
   158
/*
sl@0
   159
** Method declarations for inst_file.
sl@0
   160
*/
sl@0
   161
static int instClose(sqlite3_file*);
sl@0
   162
static int instRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
sl@0
   163
static int instWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst);
sl@0
   164
static int instTruncate(sqlite3_file*, sqlite3_int64 size);
sl@0
   165
static int instSync(sqlite3_file*, int flags);
sl@0
   166
static int instFileSize(sqlite3_file*, sqlite3_int64 *pSize);
sl@0
   167
static int instLock(sqlite3_file*, int);
sl@0
   168
static int instUnlock(sqlite3_file*, int);
sl@0
   169
static int instCheckReservedLock(sqlite3_file*, int *pResOut);
sl@0
   170
static int instFileControl(sqlite3_file*, int op, void *pArg);
sl@0
   171
static int instSectorSize(sqlite3_file*);
sl@0
   172
static int instDeviceCharacteristics(sqlite3_file*);
sl@0
   173
sl@0
   174
/*
sl@0
   175
** Method declarations for inst_vfs.
sl@0
   176
*/
sl@0
   177
static int instOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *);
sl@0
   178
static int instDelete(sqlite3_vfs*, const char *zName, int syncDir);
sl@0
   179
static int instAccess(sqlite3_vfs*, const char *zName, int flags, int *);
sl@0
   180
static int instFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
sl@0
   181
static void *instDlOpen(sqlite3_vfs*, const char *zFilename);
sl@0
   182
static void instDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
sl@0
   183
static void *instDlSym(sqlite3_vfs*,void*, const char *zSymbol);
sl@0
   184
static void instDlClose(sqlite3_vfs*, void*);
sl@0
   185
static int instRandomness(sqlite3_vfs*, int nByte, char *zOut);
sl@0
   186
static int instSleep(sqlite3_vfs*, int microseconds);
sl@0
   187
static int instCurrentTime(sqlite3_vfs*, double*);
sl@0
   188
sl@0
   189
static void binarylog_blob(sqlite3_vfs *, const char *, int, int); 
sl@0
   190
sl@0
   191
static sqlite3_vfs inst_vfs = {
sl@0
   192
  1,                      /* iVersion */
sl@0
   193
  sizeof(inst_file),      /* szOsFile */
sl@0
   194
  INST_MAX_PATHNAME,      /* mxPathname */
sl@0
   195
  0,                      /* pNext */
sl@0
   196
  0,                      /* zName */
sl@0
   197
  0,                      /* pAppData */
sl@0
   198
  instOpen,               /* xOpen */
sl@0
   199
  instDelete,             /* xDelete */
sl@0
   200
  instAccess,             /* xAccess */
sl@0
   201
  instFullPathname,       /* xFullPathname */
sl@0
   202
  instDlOpen,             /* xDlOpen */
sl@0
   203
  instDlError,            /* xDlError */
sl@0
   204
  instDlSym,              /* xDlSym */
sl@0
   205
  instDlClose,            /* xDlClose */
sl@0
   206
  instRandomness,         /* xRandomness */
sl@0
   207
  instSleep,              /* xSleep */
sl@0
   208
  instCurrentTime         /* xCurrentTime */
sl@0
   209
};
sl@0
   210
sl@0
   211
static sqlite3_io_methods inst_io_methods = {
sl@0
   212
  1,                            /* iVersion */
sl@0
   213
  instClose,                      /* xClose */
sl@0
   214
  instRead,                       /* xRead */
sl@0
   215
  instWrite,                      /* xWrite */
sl@0
   216
  instTruncate,                   /* xTruncate */
sl@0
   217
  instSync,                       /* xSync */
sl@0
   218
  instFileSize,                   /* xFileSize */
sl@0
   219
  instLock,                       /* xLock */
sl@0
   220
  instUnlock,                     /* xUnlock */
sl@0
   221
  instCheckReservedLock,          /* xCheckReservedLock */
sl@0
   222
  instFileControl,                /* xFileControl */
sl@0
   223
  instSectorSize,                 /* xSectorSize */
sl@0
   224
  instDeviceCharacteristics       /* xDeviceCharacteristics */
sl@0
   225
};
sl@0
   226
sl@0
   227
/* 
sl@0
   228
** hwtime.h contains inline assembler code for implementing 
sl@0
   229
** high-performance timing routines.
sl@0
   230
*/
sl@0
   231
#include "hwtime.h"
sl@0
   232
sl@0
   233
#define OS_TIME_IO(eEvent, A, B, Call) {     \
sl@0
   234
  inst_file *p = (inst_file *)pFile;         \
sl@0
   235
  InstVfs *pInstVfs = p->pInstVfs;           \
sl@0
   236
  int rc;                                    \
sl@0
   237
  sqlite_uint64 t = sqlite3Hwtime();         \
sl@0
   238
  rc = Call;                                 \
sl@0
   239
  t = sqlite3Hwtime() - t;                   \
sl@0
   240
  pInstVfs->aTime[eEvent] += t;              \
sl@0
   241
  pInstVfs->aCount[eEvent] += 1;             \
sl@0
   242
  if( pInstVfs->xCall ){                     \
sl@0
   243
    pInstVfs->xCall(                         \
sl@0
   244
      pInstVfs->pClient,eEvent,p->iFileId,t,rc,p->zName,p->flags,A,B  \
sl@0
   245
    );                                       \
sl@0
   246
  }                                          \
sl@0
   247
  return rc;                                 \
sl@0
   248
}
sl@0
   249
sl@0
   250
#define OS_TIME_VFS(eEvent, Z, flags, A, B, Call) {      \
sl@0
   251
  InstVfs *pInstVfs = (InstVfs *)pVfs;   \
sl@0
   252
  int rc;                                \
sl@0
   253
  sqlite_uint64 t = sqlite3Hwtime();     \
sl@0
   254
  rc = Call;                             \
sl@0
   255
  t = sqlite3Hwtime() - t;               \
sl@0
   256
  pInstVfs->aTime[eEvent] += t;          \
sl@0
   257
  pInstVfs->aCount[eEvent] += 1;         \
sl@0
   258
  if( pInstVfs->xCall ){                 \
sl@0
   259
    pInstVfs->xCall(pInstVfs->pClient,eEvent,0, t, rc, Z, flags, A, B); \
sl@0
   260
  }                                      \
sl@0
   261
  return rc;                             \
sl@0
   262
}
sl@0
   263
sl@0
   264
/*
sl@0
   265
** Close an inst-file.
sl@0
   266
*/
sl@0
   267
static int instClose(sqlite3_file *pFile){
sl@0
   268
  OS_TIME_IO(OS_CLOSE, 0, 0, 
sl@0
   269
    (p->pReal->pMethods ? p->pReal->pMethods->xClose(p->pReal) : SQLITE_OK)
sl@0
   270
  );
sl@0
   271
}
sl@0
   272
sl@0
   273
/*
sl@0
   274
** Read data from an inst-file.
sl@0
   275
*/
sl@0
   276
static int instRead(
sl@0
   277
  sqlite3_file *pFile, 
sl@0
   278
  void *zBuf, 
sl@0
   279
  int iAmt, 
sl@0
   280
  sqlite_int64 iOfst
sl@0
   281
){
sl@0
   282
  sqlite3_vfs *pVfs = (sqlite3_vfs *)(((inst_file *)pFile)->pInstVfs);
sl@0
   283
  OS_TIME_IO(OS_READ, iAmt, (binarylog_blob(pVfs, zBuf, iAmt, 1), iOfst), 
sl@0
   284
      p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst)
sl@0
   285
  );
sl@0
   286
}
sl@0
   287
sl@0
   288
/*
sl@0
   289
** Write data to an inst-file.
sl@0
   290
*/
sl@0
   291
static int instWrite(
sl@0
   292
  sqlite3_file *pFile,
sl@0
   293
  const void *z,
sl@0
   294
  int iAmt,
sl@0
   295
  sqlite_int64 iOfst
sl@0
   296
){
sl@0
   297
  sqlite3_vfs *pVfs = (sqlite3_vfs *)(((inst_file *)pFile)->pInstVfs);
sl@0
   298
  binarylog_blob(pVfs, z, iAmt, 1);
sl@0
   299
  OS_TIME_IO(OS_WRITE, iAmt, iOfst, 
sl@0
   300
      p->pReal->pMethods->xWrite(p->pReal, z, iAmt, iOfst)
sl@0
   301
  );
sl@0
   302
}
sl@0
   303
sl@0
   304
/*
sl@0
   305
** Truncate an inst-file.
sl@0
   306
*/
sl@0
   307
static int instTruncate(sqlite3_file *pFile, sqlite_int64 size){
sl@0
   308
  OS_TIME_IO(OS_TRUNCATE, 0, (int)size, 
sl@0
   309
    p->pReal->pMethods->xTruncate(p->pReal, size)
sl@0
   310
  );
sl@0
   311
}
sl@0
   312
sl@0
   313
/*
sl@0
   314
** Sync an inst-file.
sl@0
   315
*/
sl@0
   316
static int instSync(sqlite3_file *pFile, int flags){
sl@0
   317
  OS_TIME_IO(OS_SYNC, flags, 0, p->pReal->pMethods->xSync(p->pReal, flags));
sl@0
   318
}
sl@0
   319
sl@0
   320
/*
sl@0
   321
** Return the current file-size of an inst-file.
sl@0
   322
*/
sl@0
   323
static int instFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){
sl@0
   324
  OS_TIME_IO(OS_FILESIZE, (int)(*pSize), 0, 
sl@0
   325
    p->pReal->pMethods->xFileSize(p->pReal, pSize)
sl@0
   326
  );
sl@0
   327
}
sl@0
   328
sl@0
   329
/*
sl@0
   330
** Lock an inst-file.
sl@0
   331
*/
sl@0
   332
static int instLock(sqlite3_file *pFile, int eLock){
sl@0
   333
  OS_TIME_IO(OS_LOCK, eLock, 0, p->pReal->pMethods->xLock(p->pReal, eLock));
sl@0
   334
}
sl@0
   335
sl@0
   336
/*
sl@0
   337
** Unlock an inst-file.
sl@0
   338
*/
sl@0
   339
static int instUnlock(sqlite3_file *pFile, int eLock){
sl@0
   340
  OS_TIME_IO(OS_UNLOCK, eLock, 0, p->pReal->pMethods->xUnlock(p->pReal, eLock));
sl@0
   341
}
sl@0
   342
sl@0
   343
/*
sl@0
   344
** Check if another file-handle holds a RESERVED lock on an inst-file.
sl@0
   345
*/
sl@0
   346
static int instCheckReservedLock(sqlite3_file *pFile, int *pResOut){
sl@0
   347
  OS_TIME_IO(OS_CHECKRESERVEDLOCK, 0, 0, 
sl@0
   348
      p->pReal->pMethods->xCheckReservedLock(p->pReal, pResOut)
sl@0
   349
  );
sl@0
   350
}
sl@0
   351
sl@0
   352
/*
sl@0
   353
** File control method. For custom operations on an inst-file.
sl@0
   354
*/
sl@0
   355
static int instFileControl(sqlite3_file *pFile, int op, void *pArg){
sl@0
   356
  OS_TIME_IO(OS_FILECONTROL, 0, 0, p->pReal->pMethods->xFileControl(p->pReal, op, pArg));
sl@0
   357
}
sl@0
   358
sl@0
   359
/*
sl@0
   360
** Return the sector-size in bytes for an inst-file.
sl@0
   361
*/
sl@0
   362
static int instSectorSize(sqlite3_file *pFile){
sl@0
   363
  OS_TIME_IO(OS_SECTORSIZE, 0, 0, p->pReal->pMethods->xSectorSize(p->pReal));
sl@0
   364
}
sl@0
   365
sl@0
   366
/*
sl@0
   367
** Return the device characteristic flags supported by an inst-file.
sl@0
   368
*/
sl@0
   369
static int instDeviceCharacteristics(sqlite3_file *pFile){
sl@0
   370
  OS_TIME_IO(OS_DEVCHAR, 0, 0, p->pReal->pMethods->xDeviceCharacteristics(p->pReal));
sl@0
   371
}
sl@0
   372
sl@0
   373
/*
sl@0
   374
** Open an inst file handle.
sl@0
   375
*/
sl@0
   376
static int instOpen(
sl@0
   377
  sqlite3_vfs *pVfs,
sl@0
   378
  const char *zName,
sl@0
   379
  sqlite3_file *pFile,
sl@0
   380
  int flags,
sl@0
   381
  int *pOutFlags
sl@0
   382
){
sl@0
   383
  inst_file *p = (inst_file *)pFile;
sl@0
   384
  pFile->pMethods = &inst_io_methods;
sl@0
   385
  p->pReal = (sqlite3_file *)&p[1];
sl@0
   386
  p->pInstVfs = (InstVfs *)pVfs;
sl@0
   387
  p->zName = zName;
sl@0
   388
  p->flags = flags;
sl@0
   389
  p->iFileId = ++p->pInstVfs->iNextFileId;
sl@0
   390
sl@0
   391
  binarylog_blob(pVfs, zName, -1, 0);
sl@0
   392
  OS_TIME_VFS(OS_OPEN, zName, flags, p->iFileId, 0,
sl@0
   393
    REALVFS(pVfs)->xOpen(REALVFS(pVfs), zName, p->pReal, flags, pOutFlags)
sl@0
   394
  );
sl@0
   395
}
sl@0
   396
sl@0
   397
/*
sl@0
   398
** Delete the file located at zPath. If the dirSync argument is true,
sl@0
   399
** ensure the file-system modifications are synced to disk before
sl@0
   400
** returning.
sl@0
   401
*/
sl@0
   402
static int instDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
sl@0
   403
  binarylog_blob(pVfs, zPath, -1, 0);
sl@0
   404
  OS_TIME_VFS(OS_DELETE, zPath, 0, dirSync, 0,
sl@0
   405
    REALVFS(pVfs)->xDelete(REALVFS(pVfs), zPath, dirSync) 
sl@0
   406
  );
sl@0
   407
}
sl@0
   408
sl@0
   409
/*
sl@0
   410
** Test for access permissions. Return true if the requested permission
sl@0
   411
** is available, or false otherwise.
sl@0
   412
*/
sl@0
   413
static int instAccess(
sl@0
   414
  sqlite3_vfs *pVfs, 
sl@0
   415
  const char *zPath, 
sl@0
   416
  int flags, 
sl@0
   417
  int *pResOut
sl@0
   418
){
sl@0
   419
  binarylog_blob(pVfs, zPath, -1, 0);
sl@0
   420
  OS_TIME_VFS(OS_ACCESS, zPath, 0, flags, *pResOut, 
sl@0
   421
    REALVFS(pVfs)->xAccess(REALVFS(pVfs), zPath, flags, pResOut) 
sl@0
   422
  );
sl@0
   423
}
sl@0
   424
sl@0
   425
/*
sl@0
   426
** Populate buffer zOut with the full canonical pathname corresponding
sl@0
   427
** to the pathname in zPath. zOut is guaranteed to point to a buffer
sl@0
   428
** of at least (INST_MAX_PATHNAME+1) bytes.
sl@0
   429
*/
sl@0
   430
static int instFullPathname(
sl@0
   431
  sqlite3_vfs *pVfs, 
sl@0
   432
  const char *zPath, 
sl@0
   433
  int nOut, 
sl@0
   434
  char *zOut
sl@0
   435
){
sl@0
   436
  OS_TIME_VFS( OS_FULLPATHNAME, zPath, 0, 0, 0,
sl@0
   437
    REALVFS(pVfs)->xFullPathname(REALVFS(pVfs), zPath, nOut, zOut);
sl@0
   438
  );
sl@0
   439
}
sl@0
   440
sl@0
   441
/*
sl@0
   442
** Open the dynamic library located at zPath and return a handle.
sl@0
   443
*/
sl@0
   444
static void *instDlOpen(sqlite3_vfs *pVfs, const char *zPath){
sl@0
   445
  return REALVFS(pVfs)->xDlOpen(REALVFS(pVfs), zPath);
sl@0
   446
}
sl@0
   447
sl@0
   448
/*
sl@0
   449
** Populate the buffer zErrMsg (size nByte bytes) with a human readable
sl@0
   450
** utf-8 string describing the most recent error encountered associated 
sl@0
   451
** with dynamic libraries.
sl@0
   452
*/
sl@0
   453
static void instDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){
sl@0
   454
  REALVFS(pVfs)->xDlError(REALVFS(pVfs), nByte, zErrMsg);
sl@0
   455
}
sl@0
   456
sl@0
   457
/*
sl@0
   458
** Return a pointer to the symbol zSymbol in the dynamic library pHandle.
sl@0
   459
*/
sl@0
   460
static void *instDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol){
sl@0
   461
  return REALVFS(pVfs)->xDlSym(REALVFS(pVfs), pHandle, zSymbol);
sl@0
   462
}
sl@0
   463
sl@0
   464
/*
sl@0
   465
** Close the dynamic library handle pHandle.
sl@0
   466
*/
sl@0
   467
static void instDlClose(sqlite3_vfs *pVfs, void *pHandle){
sl@0
   468
  REALVFS(pVfs)->xDlClose(REALVFS(pVfs), pHandle);
sl@0
   469
}
sl@0
   470
sl@0
   471
/*
sl@0
   472
** Populate the buffer pointed to by zBufOut with nByte bytes of 
sl@0
   473
** random data.
sl@0
   474
*/
sl@0
   475
static int instRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){
sl@0
   476
  OS_TIME_VFS( OS_RANDOMNESS, 0, 0, nByte, 0,
sl@0
   477
    REALVFS(pVfs)->xRandomness(REALVFS(pVfs), nByte, zBufOut);
sl@0
   478
  );
sl@0
   479
}
sl@0
   480
sl@0
   481
/*
sl@0
   482
** Sleep for nMicro microseconds. Return the number of microseconds 
sl@0
   483
** actually slept.
sl@0
   484
*/
sl@0
   485
static int instSleep(sqlite3_vfs *pVfs, int nMicro){
sl@0
   486
  OS_TIME_VFS( OS_SLEEP, 0, 0, nMicro, 0, 
sl@0
   487
    REALVFS(pVfs)->xSleep(REALVFS(pVfs), nMicro) 
sl@0
   488
  );
sl@0
   489
}
sl@0
   490
sl@0
   491
/*
sl@0
   492
** Return the current time as a Julian Day number in *pTimeOut.
sl@0
   493
*/
sl@0
   494
static int instCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){
sl@0
   495
  OS_TIME_VFS( OS_CURRENTTIME, 0, 0, 0, 0,
sl@0
   496
    REALVFS(pVfs)->xCurrentTime(REALVFS(pVfs), pTimeOut) 
sl@0
   497
  );
sl@0
   498
}
sl@0
   499
sl@0
   500
sqlite3_vfs *sqlite3_instvfs_create(const char *zName, const char *zParent){
sl@0
   501
  int nByte;
sl@0
   502
  InstVfs *p;
sl@0
   503
  sqlite3_vfs *pParent;
sl@0
   504
sl@0
   505
  pParent = sqlite3_vfs_find(zParent);
sl@0
   506
  if( !pParent ){
sl@0
   507
    return 0;
sl@0
   508
  }
sl@0
   509
sl@0
   510
  nByte = strlen(zName) + 1 + sizeof(InstVfs);
sl@0
   511
  p = (InstVfs *)sqlite3_malloc(nByte);
sl@0
   512
  if( p ){
sl@0
   513
    char *zCopy = (char *)&p[1];
sl@0
   514
    memset(p, 0, nByte);
sl@0
   515
    memcpy(p, &inst_vfs, sizeof(sqlite3_vfs));
sl@0
   516
    p->pVfs = pParent;
sl@0
   517
    memcpy(zCopy, zName, strlen(zName));
sl@0
   518
    p->base.zName = (const char *)zCopy;
sl@0
   519
    p->base.szOsFile += pParent->szOsFile;
sl@0
   520
    sqlite3_vfs_register((sqlite3_vfs *)p, 0);
sl@0
   521
  }
sl@0
   522
sl@0
   523
  return (sqlite3_vfs *)p;
sl@0
   524
}
sl@0
   525
sl@0
   526
void sqlite3_instvfs_configure(
sl@0
   527
  sqlite3_vfs *pVfs,
sl@0
   528
  void (*xCall)(
sl@0
   529
      void*, 
sl@0
   530
      int,                           /* File id */
sl@0
   531
      int,                           /* Event code */
sl@0
   532
      sqlite3_int64, 
sl@0
   533
      int,                           /* Return code */
sl@0
   534
      const char*,                   /* File name */
sl@0
   535
      int, 
sl@0
   536
      int, 
sl@0
   537
      sqlite3_int64
sl@0
   538
  ),
sl@0
   539
  void *pClient,
sl@0
   540
  void (*xDel)(void *)
sl@0
   541
){
sl@0
   542
  InstVfs *p = (InstVfs *)pVfs;
sl@0
   543
  assert( pVfs->xOpen==instOpen );
sl@0
   544
  if( p->xDel ){
sl@0
   545
    p->xDel(p->pClient);
sl@0
   546
  }
sl@0
   547
  p->xCall = xCall;
sl@0
   548
  p->xDel = xDel;
sl@0
   549
  p->pClient = pClient;
sl@0
   550
}
sl@0
   551
sl@0
   552
void sqlite3_instvfs_destroy(sqlite3_vfs *pVfs){
sl@0
   553
  if( pVfs ){
sl@0
   554
    sqlite3_vfs_unregister(pVfs);
sl@0
   555
    sqlite3_instvfs_configure(pVfs, 0, 0, 0);
sl@0
   556
    sqlite3_free(pVfs);
sl@0
   557
  }
sl@0
   558
}
sl@0
   559
sl@0
   560
void sqlite3_instvfs_reset(sqlite3_vfs *pVfs){
sl@0
   561
  InstVfs *p = (InstVfs *)pVfs;
sl@0
   562
  assert( pVfs->xOpen==instOpen );
sl@0
   563
  memset(p->aTime, 0, sizeof(sqlite3_int64)*OS_NUMEVENTS);
sl@0
   564
  memset(p->aCount, 0, sizeof(int)*OS_NUMEVENTS);
sl@0
   565
}
sl@0
   566
sl@0
   567
const char *sqlite3_instvfs_name(int eEvent){
sl@0
   568
  const char *zEvent = 0;
sl@0
   569
sl@0
   570
  switch( eEvent ){
sl@0
   571
    case OS_CLOSE:             zEvent = "xClose"; break;
sl@0
   572
    case OS_READ:              zEvent = "xRead"; break;
sl@0
   573
    case OS_WRITE:             zEvent = "xWrite"; break;
sl@0
   574
    case OS_TRUNCATE:          zEvent = "xTruncate"; break;
sl@0
   575
    case OS_SYNC:              zEvent = "xSync"; break;
sl@0
   576
    case OS_FILESIZE:          zEvent = "xFilesize"; break;
sl@0
   577
    case OS_LOCK:              zEvent = "xLock"; break;
sl@0
   578
    case OS_UNLOCK:            zEvent = "xUnlock"; break;
sl@0
   579
    case OS_CHECKRESERVEDLOCK: zEvent = "xCheckReservedLock"; break;
sl@0
   580
    case OS_FILECONTROL:       zEvent = "xFileControl"; break;
sl@0
   581
    case OS_SECTORSIZE:        zEvent = "xSectorSize"; break;
sl@0
   582
    case OS_DEVCHAR:           zEvent = "xDeviceCharacteristics"; break;
sl@0
   583
    case OS_OPEN:              zEvent = "xOpen"; break;
sl@0
   584
    case OS_DELETE:            zEvent = "xDelete"; break;
sl@0
   585
    case OS_ACCESS:            zEvent = "xAccess"; break;
sl@0
   586
    case OS_FULLPATHNAME:      zEvent = "xFullPathname"; break;
sl@0
   587
    case OS_RANDOMNESS:        zEvent = "xRandomness"; break;
sl@0
   588
    case OS_SLEEP:             zEvent = "xSleep"; break;
sl@0
   589
    case OS_CURRENTTIME:       zEvent = "xCurrentTime"; break;
sl@0
   590
  }
sl@0
   591
sl@0
   592
  return zEvent;
sl@0
   593
}
sl@0
   594
sl@0
   595
void sqlite3_instvfs_get(
sl@0
   596
  sqlite3_vfs *pVfs, 
sl@0
   597
  int eEvent, 
sl@0
   598
  const char **pzEvent, 
sl@0
   599
  sqlite3_int64 *pnClick, 
sl@0
   600
  int *pnCall
sl@0
   601
){
sl@0
   602
  InstVfs *p = (InstVfs *)pVfs;
sl@0
   603
  assert( pVfs->xOpen==instOpen );
sl@0
   604
  if( eEvent<1 || eEvent>=OS_NUMEVENTS ){
sl@0
   605
    *pzEvent = 0;
sl@0
   606
    *pnClick = 0;
sl@0
   607
    *pnCall = 0;
sl@0
   608
    return;
sl@0
   609
  }
sl@0
   610
sl@0
   611
  *pzEvent = sqlite3_instvfs_name(eEvent);
sl@0
   612
  *pnClick = p->aTime[eEvent];
sl@0
   613
  *pnCall = p->aCount[eEvent];
sl@0
   614
}
sl@0
   615
sl@0
   616
#define BINARYLOG_BUFFERSIZE 8192
sl@0
   617
sl@0
   618
struct InstVfsBinaryLog {
sl@0
   619
  int nBuf;
sl@0
   620
  char *zBuf;
sl@0
   621
  sqlite3_int64 iOffset;
sl@0
   622
  int log_data;
sl@0
   623
  sqlite3_file *pOut;
sl@0
   624
  char *zOut;                       /* Log file name */
sl@0
   625
};
sl@0
   626
typedef struct InstVfsBinaryLog InstVfsBinaryLog;
sl@0
   627
sl@0
   628
static void put32bits(unsigned char *p, unsigned int v){
sl@0
   629
  p[0] = v>>24;
sl@0
   630
  p[1] = v>>16;
sl@0
   631
  p[2] = v>>8;
sl@0
   632
  p[3] = v;
sl@0
   633
}
sl@0
   634
sl@0
   635
static void binarylog_flush(InstVfsBinaryLog *pLog){
sl@0
   636
  sqlite3_file *pFile = pLog->pOut;
sl@0
   637
sl@0
   638
#ifdef SQLITE_TEST
sl@0
   639
  extern int sqlite3_io_error_pending;
sl@0
   640
  extern int sqlite3_io_error_persist;
sl@0
   641
  extern int sqlite3_diskfull_pending;
sl@0
   642
sl@0
   643
  int pending = sqlite3_io_error_pending;
sl@0
   644
  int persist = sqlite3_io_error_persist;
sl@0
   645
  int diskfull = sqlite3_diskfull_pending;
sl@0
   646
sl@0
   647
  sqlite3_io_error_pending = 0;
sl@0
   648
  sqlite3_io_error_persist = 0;
sl@0
   649
  sqlite3_diskfull_pending = 0;
sl@0
   650
#endif
sl@0
   651
sl@0
   652
  pFile->pMethods->xWrite(pFile, pLog->zBuf, pLog->nBuf, pLog->iOffset);
sl@0
   653
  pLog->iOffset += pLog->nBuf;
sl@0
   654
  pLog->nBuf = 0;
sl@0
   655
sl@0
   656
#ifdef SQLITE_TEST
sl@0
   657
  sqlite3_io_error_pending = pending;
sl@0
   658
  sqlite3_io_error_persist = persist;
sl@0
   659
  sqlite3_diskfull_pending = diskfull;
sl@0
   660
#endif
sl@0
   661
}
sl@0
   662
sl@0
   663
static void binarylog_xcall(
sl@0
   664
  void *p,
sl@0
   665
  int eEvent,
sl@0
   666
  int iFileId,
sl@0
   667
  sqlite3_int64 nClick,
sl@0
   668
  int return_code,
sl@0
   669
  const char *zName,
sl@0
   670
  int flags,
sl@0
   671
  int nByte,
sl@0
   672
  sqlite3_int64 iOffset
sl@0
   673
){
sl@0
   674
  InstVfsBinaryLog *pLog = (InstVfsBinaryLog *)p;
sl@0
   675
  unsigned char *zRec;
sl@0
   676
  if( (28+pLog->nBuf)>BINARYLOG_BUFFERSIZE ){
sl@0
   677
    binarylog_flush(pLog);
sl@0
   678
  }
sl@0
   679
  zRec = (unsigned char *)&pLog->zBuf[pLog->nBuf];
sl@0
   680
  put32bits(&zRec[0], eEvent);
sl@0
   681
  put32bits(&zRec[4], (int)iFileId);
sl@0
   682
  put32bits(&zRec[8], (int)nClick);
sl@0
   683
  put32bits(&zRec[12], return_code);
sl@0
   684
  put32bits(&zRec[16], flags);
sl@0
   685
  put32bits(&zRec[20], nByte);
sl@0
   686
  put32bits(&zRec[24], (int)iOffset);
sl@0
   687
  pLog->nBuf += 28;
sl@0
   688
}
sl@0
   689
sl@0
   690
static void binarylog_xdel(void *p){
sl@0
   691
  /* Close the log file and free the memory allocated for the 
sl@0
   692
  ** InstVfsBinaryLog structure.
sl@0
   693
  */
sl@0
   694
  InstVfsBinaryLog *pLog = (InstVfsBinaryLog *)p;
sl@0
   695
  sqlite3_file *pFile = pLog->pOut;
sl@0
   696
  if( pLog->nBuf ){
sl@0
   697
    binarylog_flush(pLog);
sl@0
   698
  }
sl@0
   699
  pFile->pMethods->xClose(pFile);
sl@0
   700
  sqlite3_free(pLog->pOut);
sl@0
   701
  sqlite3_free(pLog->zBuf);
sl@0
   702
  sqlite3_free(pLog);
sl@0
   703
}
sl@0
   704
sl@0
   705
static void binarylog_blob(
sl@0
   706
  sqlite3_vfs *pVfs,
sl@0
   707
  const char *zBlob,
sl@0
   708
  int nBlob,
sl@0
   709
  int isBinary
sl@0
   710
){
sl@0
   711
  InstVfsBinaryLog *pLog;
sl@0
   712
  InstVfs *pInstVfs = (InstVfs *)pVfs;
sl@0
   713
sl@0
   714
  if( pVfs->xOpen!=instOpen || pInstVfs->xCall!=binarylog_xcall ){
sl@0
   715
    return;
sl@0
   716
  }
sl@0
   717
  pLog = (InstVfsBinaryLog *)pInstVfs->pClient;
sl@0
   718
  if( zBlob && (!isBinary || pLog->log_data) ){
sl@0
   719
    unsigned char *zRec;
sl@0
   720
    int nWrite;
sl@0
   721
sl@0
   722
    if( nBlob<0 ){
sl@0
   723
      nBlob = strlen(zBlob);
sl@0
   724
    }
sl@0
   725
    nWrite = nBlob + 28;
sl@0
   726
  
sl@0
   727
    if( (nWrite+pLog->nBuf)>BINARYLOG_BUFFERSIZE ){
sl@0
   728
      binarylog_flush(pLog);
sl@0
   729
    }
sl@0
   730
  
sl@0
   731
    zRec = (unsigned char *)&pLog->zBuf[pLog->nBuf];
sl@0
   732
    memset(zRec, 0, nWrite);
sl@0
   733
    put32bits(&zRec[0], BINARYLOG_STRING);
sl@0
   734
    put32bits(&zRec[4], (int)nBlob);
sl@0
   735
    put32bits(&zRec[8], (int)isBinary);
sl@0
   736
    memcpy(&zRec[28], zBlob, nBlob);
sl@0
   737
    pLog->nBuf += nWrite;
sl@0
   738
  }
sl@0
   739
}
sl@0
   740
sl@0
   741
void sqlite3_instvfs_binarylog_call(
sl@0
   742
  sqlite3_vfs *pVfs,
sl@0
   743
  int eEvent,
sl@0
   744
  sqlite3_int64 nClick,
sl@0
   745
  int return_code,
sl@0
   746
  const char *zString
sl@0
   747
){
sl@0
   748
  InstVfs *pInstVfs = (InstVfs *)pVfs;
sl@0
   749
  InstVfsBinaryLog *pLog = (InstVfsBinaryLog *)pInstVfs->pClient;
sl@0
   750
sl@0
   751
  if( zString ){
sl@0
   752
    binarylog_blob(pVfs, zString, -1, 0);
sl@0
   753
  }
sl@0
   754
  binarylog_xcall(pLog, eEvent, 0, nClick, return_code, 0, 0, 0, 0);
sl@0
   755
}
sl@0
   756
sl@0
   757
void sqlite3_instvfs_binarylog_marker(
sl@0
   758
  sqlite3_vfs *pVfs,
sl@0
   759
  const char *zMarker
sl@0
   760
){
sl@0
   761
  InstVfs *pInstVfs = (InstVfs *)pVfs;
sl@0
   762
  InstVfsBinaryLog *pLog = (InstVfsBinaryLog *)pInstVfs->pClient;
sl@0
   763
  binarylog_blob(pVfs, zMarker, -1, 0);
sl@0
   764
  binarylog_xcall(pLog, BINARYLOG_MARKER, 0, 0, 0, 0, 0, 0, 0);
sl@0
   765
}
sl@0
   766
sl@0
   767
sqlite3_vfs *sqlite3_instvfs_binarylog(
sl@0
   768
  const char *zVfs,
sl@0
   769
  const char *zParentVfs, 
sl@0
   770
  const char *zLog,
sl@0
   771
  int log_data
sl@0
   772
){
sl@0
   773
  InstVfsBinaryLog *p;
sl@0
   774
  sqlite3_vfs *pVfs;
sl@0
   775
  sqlite3_vfs *pParent;
sl@0
   776
  int nByte;
sl@0
   777
  int flags;
sl@0
   778
  int rc;
sl@0
   779
sl@0
   780
  pParent = sqlite3_vfs_find(zParentVfs);
sl@0
   781
  if( !pParent ){
sl@0
   782
    return 0;
sl@0
   783
  }
sl@0
   784
sl@0
   785
  nByte = sizeof(InstVfsBinaryLog) + pParent->mxPathname+1;
sl@0
   786
  p = (InstVfsBinaryLog *)sqlite3_malloc(nByte);
sl@0
   787
  memset(p, 0, nByte);
sl@0
   788
  p->zBuf = sqlite3_malloc(BINARYLOG_BUFFERSIZE);
sl@0
   789
  p->zOut = (char *)&p[1];
sl@0
   790
  p->pOut = (sqlite3_file *)sqlite3_malloc(pParent->szOsFile);
sl@0
   791
  p->log_data = log_data;
sl@0
   792
  pParent->xFullPathname(pParent, zLog, pParent->mxPathname, p->zOut);
sl@0
   793
  flags = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE|SQLITE_OPEN_MASTER_JOURNAL;
sl@0
   794
  pParent->xDelete(pParent, p->zOut, 0);
sl@0
   795
  rc = pParent->xOpen(pParent, p->zOut, p->pOut, flags, &flags);
sl@0
   796
  if( rc==SQLITE_OK ){
sl@0
   797
    memcpy(p->zBuf, "sqlite_ostrace1.....", 20);
sl@0
   798
    p->iOffset = 0;
sl@0
   799
    p->nBuf = 20;
sl@0
   800
  }
sl@0
   801
  if( rc ){
sl@0
   802
    binarylog_xdel(p);
sl@0
   803
    return 0;
sl@0
   804
  }
sl@0
   805
sl@0
   806
  pVfs = sqlite3_instvfs_create(zVfs, zParentVfs);
sl@0
   807
  if( pVfs ){
sl@0
   808
    sqlite3_instvfs_configure(pVfs, binarylog_xcall, p, binarylog_xdel);
sl@0
   809
  }
sl@0
   810
sl@0
   811
  return pVfs;
sl@0
   812
}
sl@0
   813
#endif /* SQLITE_ENABLE_INSTVFS */
sl@0
   814
sl@0
   815
/**************************************************************************
sl@0
   816
***************************************************************************
sl@0
   817
** Tcl interface starts here.
sl@0
   818
*/
sl@0
   819
#if SQLITE_TEST
sl@0
   820
sl@0
   821
#include "tcl.h"
sl@0
   822
sl@0
   823
#ifdef SQLITE_ENABLE_INSTVFS
sl@0
   824
struct InstVfsCall {
sl@0
   825
  Tcl_Interp *interp;
sl@0
   826
  Tcl_Obj *pScript;
sl@0
   827
};
sl@0
   828
typedef struct InstVfsCall InstVfsCall;
sl@0
   829
sl@0
   830
static void test_instvfs_xcall(
sl@0
   831
  void *p,
sl@0
   832
  int eEvent,
sl@0
   833
  int iFileId,
sl@0
   834
  sqlite3_int64 nClick,
sl@0
   835
  int return_code,
sl@0
   836
  const char *zName,
sl@0
   837
  int flags,
sl@0
   838
  int nByte,
sl@0
   839
  sqlite3_int64 iOffset
sl@0
   840
){
sl@0
   841
  int rc;
sl@0
   842
  InstVfsCall *pCall = (InstVfsCall *)p;
sl@0
   843
  Tcl_Obj *pObj = Tcl_DuplicateObj( pCall->pScript);
sl@0
   844
  const char *zEvent = sqlite3_instvfs_name(eEvent);
sl@0
   845
sl@0
   846
  Tcl_IncrRefCount(pObj);
sl@0
   847
  Tcl_ListObjAppendElement(0, pObj, Tcl_NewStringObj(zEvent, -1));
sl@0
   848
  Tcl_ListObjAppendElement(0, pObj, Tcl_NewWideIntObj(nClick));
sl@0
   849
  Tcl_ListObjAppendElement(0, pObj, Tcl_NewStringObj(zName, -1));
sl@0
   850
  Tcl_ListObjAppendElement(0, pObj, Tcl_NewIntObj(nByte));
sl@0
   851
  Tcl_ListObjAppendElement(0, pObj, Tcl_NewWideIntObj(iOffset));
sl@0
   852
sl@0
   853
  rc = Tcl_EvalObjEx(pCall->interp, pObj, TCL_EVAL_GLOBAL|TCL_EVAL_DIRECT);
sl@0
   854
  if( rc ){
sl@0
   855
    Tcl_BackgroundError(pCall->interp);
sl@0
   856
  }
sl@0
   857
  Tcl_DecrRefCount(pObj);
sl@0
   858
}
sl@0
   859
sl@0
   860
static void test_instvfs_xdel(void *p){
sl@0
   861
  InstVfsCall *pCall = (InstVfsCall *)p;
sl@0
   862
  Tcl_DecrRefCount(pCall->pScript);
sl@0
   863
  sqlite3_free(pCall);
sl@0
   864
}
sl@0
   865
sl@0
   866
static int test_sqlite3_instvfs(
sl@0
   867
  void * clientData,
sl@0
   868
  Tcl_Interp *interp,
sl@0
   869
  int objc,
sl@0
   870
  Tcl_Obj *CONST objv[]
sl@0
   871
){
sl@0
   872
  static const char *IV_strs[] = 
sl@0
   873
               { "create",  "destroy",  "reset",  "report", "configure", "binarylog", "marker", 0 };
sl@0
   874
  enum IV_enum { IV_CREATE, IV_DESTROY, IV_RESET, IV_REPORT, IV_CONFIGURE, IV_BINARYLOG, IV_MARKER };
sl@0
   875
  int iSub;
sl@0
   876
sl@0
   877
  if( objc<2 ){
sl@0
   878
    Tcl_WrongNumArgs(interp, 1, objv, "SUB-COMMAND ...");
sl@0
   879
  }
sl@0
   880
  if( Tcl_GetIndexFromObj(interp, objv[1], IV_strs, "sub-command", 0, &iSub) ){
sl@0
   881
    return TCL_ERROR;
sl@0
   882
  }
sl@0
   883
sl@0
   884
  switch( (enum IV_enum)iSub ){
sl@0
   885
    case IV_CREATE: {
sl@0
   886
      char *zParent = 0;
sl@0
   887
      sqlite3_vfs *p;
sl@0
   888
      int isDefault = 0;
sl@0
   889
      if( objc>2 && 0==strcmp("-default", Tcl_GetString(objv[2])) ){
sl@0
   890
        isDefault = 1;
sl@0
   891
      }
sl@0
   892
      if( (objc-isDefault)!=4 && (objc-isDefault)!=3 ){
sl@0
   893
        Tcl_WrongNumArgs(interp, 2, objv, "?-default? NAME ?PARENT-VFS?");
sl@0
   894
        return TCL_ERROR;
sl@0
   895
      }
sl@0
   896
      if( objc==(4+isDefault) ){
sl@0
   897
        zParent = Tcl_GetString(objv[3+isDefault]);
sl@0
   898
      }
sl@0
   899
      p = sqlite3_instvfs_create(Tcl_GetString(objv[2+isDefault]), zParent);
sl@0
   900
      if( !p ){
sl@0
   901
        Tcl_AppendResult(interp, "error creating vfs ", 0);
sl@0
   902
        return TCL_ERROR;
sl@0
   903
      }
sl@0
   904
      if( isDefault ){
sl@0
   905
        sqlite3_vfs_register(p, 1);
sl@0
   906
      }
sl@0
   907
      Tcl_SetObjResult(interp, objv[2]);
sl@0
   908
      break;
sl@0
   909
    }
sl@0
   910
    case IV_BINARYLOG: {
sl@0
   911
      char *zName = 0;
sl@0
   912
      char *zLog = 0;
sl@0
   913
      char *zParent = 0;
sl@0
   914
      sqlite3_vfs *p;
sl@0
   915
      int isDefault = 0;
sl@0
   916
      int isLogdata = 0;
sl@0
   917
      int argbase = 2;
sl@0
   918
sl@0
   919
      for(argbase=2; argbase<(objc-2); argbase++){
sl@0
   920
        if( 0==strcmp("-default", Tcl_GetString(objv[argbase])) ){
sl@0
   921
          isDefault = 1;
sl@0
   922
        }
sl@0
   923
        else if( 0==strcmp("-parent", Tcl_GetString(objv[argbase])) ){
sl@0
   924
          argbase++;
sl@0
   925
          zParent = Tcl_GetString(objv[argbase]);
sl@0
   926
        }
sl@0
   927
        else if( 0==strcmp("-logdata", Tcl_GetString(objv[argbase])) ){
sl@0
   928
          isLogdata = 1;
sl@0
   929
        }else{
sl@0
   930
          break;
sl@0
   931
        }
sl@0
   932
      }
sl@0
   933
sl@0
   934
      if( (objc-argbase)!=2 ){
sl@0
   935
        Tcl_WrongNumArgs(
sl@0
   936
            interp, 2, objv, "?-default? ?-parent VFS? ?-logdata? NAME LOGFILE"
sl@0
   937
        );
sl@0
   938
        return TCL_ERROR;
sl@0
   939
      }
sl@0
   940
      zName = Tcl_GetString(objv[argbase]);
sl@0
   941
      zLog = Tcl_GetString(objv[argbase+1]);
sl@0
   942
      p = sqlite3_instvfs_binarylog(zName, zParent, zLog, isLogdata);
sl@0
   943
      if( !p ){
sl@0
   944
        Tcl_AppendResult(interp, "error creating vfs ", 0);
sl@0
   945
        return TCL_ERROR;
sl@0
   946
      }
sl@0
   947
      if( isDefault ){
sl@0
   948
        sqlite3_vfs_register(p, 1);
sl@0
   949
      }
sl@0
   950
      Tcl_SetObjResult(interp, objv[2]);
sl@0
   951
      break;
sl@0
   952
    }
sl@0
   953
sl@0
   954
    case IV_MARKER: {
sl@0
   955
      sqlite3_vfs *p;
sl@0
   956
      if( objc!=4 ){
sl@0
   957
        Tcl_WrongNumArgs(interp, 2, objv, "VFS MARKER");
sl@0
   958
        return TCL_ERROR;
sl@0
   959
      }
sl@0
   960
      p = sqlite3_vfs_find(Tcl_GetString(objv[2]));
sl@0
   961
      if( !p || p->xOpen!=instOpen ){
sl@0
   962
        Tcl_AppendResult(interp, "no such vfs: ", Tcl_GetString(objv[2]), 0);
sl@0
   963
        return TCL_ERROR;
sl@0
   964
      }
sl@0
   965
      sqlite3_instvfs_binarylog_marker(p, Tcl_GetString(objv[3]));
sl@0
   966
      Tcl_ResetResult(interp);
sl@0
   967
      break;
sl@0
   968
    }
sl@0
   969
sl@0
   970
    case IV_CONFIGURE: {
sl@0
   971
      InstVfsCall *pCall;
sl@0
   972
sl@0
   973
      sqlite3_vfs *p;
sl@0
   974
      if( objc!=4 ){
sl@0
   975
        Tcl_WrongNumArgs(interp, 2, objv, "NAME SCRIPT");
sl@0
   976
        return TCL_ERROR;
sl@0
   977
      }
sl@0
   978
      p = sqlite3_vfs_find(Tcl_GetString(objv[2]));
sl@0
   979
      if( !p || p->xOpen!=instOpen ){
sl@0
   980
        Tcl_AppendResult(interp, "no such vfs: ", Tcl_GetString(objv[2]), 0);
sl@0
   981
        return TCL_ERROR;
sl@0
   982
      }
sl@0
   983
sl@0
   984
      if( strlen(Tcl_GetString(objv[3])) ){
sl@0
   985
        pCall = (InstVfsCall *)sqlite3_malloc(sizeof(InstVfsCall));
sl@0
   986
        pCall->interp = interp;
sl@0
   987
        pCall->pScript = Tcl_DuplicateObj(objv[3]);
sl@0
   988
        Tcl_IncrRefCount(pCall->pScript);
sl@0
   989
        sqlite3_instvfs_configure(p, 
sl@0
   990
            test_instvfs_xcall, (void *)pCall, test_instvfs_xdel
sl@0
   991
        );
sl@0
   992
      }else{
sl@0
   993
        sqlite3_instvfs_configure(p, 0, 0, 0);
sl@0
   994
      }
sl@0
   995
      break;
sl@0
   996
    }
sl@0
   997
sl@0
   998
    case IV_REPORT:
sl@0
   999
    case IV_DESTROY:
sl@0
  1000
    case IV_RESET: {
sl@0
  1001
      sqlite3_vfs *p;
sl@0
  1002
      if( objc!=3 ){
sl@0
  1003
        Tcl_WrongNumArgs(interp, 2, objv, "NAME");
sl@0
  1004
        return TCL_ERROR;
sl@0
  1005
      }
sl@0
  1006
      p = sqlite3_vfs_find(Tcl_GetString(objv[2]));
sl@0
  1007
      if( !p || p->xOpen!=instOpen ){
sl@0
  1008
        Tcl_AppendResult(interp, "no such vfs: ", Tcl_GetString(objv[2]), 0);
sl@0
  1009
        return TCL_ERROR;
sl@0
  1010
      }
sl@0
  1011
sl@0
  1012
      if( ((enum IV_enum)iSub)==IV_DESTROY ){
sl@0
  1013
        sqlite3_instvfs_destroy(p);
sl@0
  1014
      }
sl@0
  1015
      if( ((enum IV_enum)iSub)==IV_RESET ){
sl@0
  1016
        sqlite3_instvfs_reset(p);
sl@0
  1017
      }
sl@0
  1018
      if( ((enum IV_enum)iSub)==IV_REPORT ){
sl@0
  1019
        int ii;
sl@0
  1020
        Tcl_Obj *pRet = Tcl_NewObj();
sl@0
  1021
sl@0
  1022
        const char *zName = (char *)1;
sl@0
  1023
        sqlite3_int64 nClick;
sl@0
  1024
        int nCall;
sl@0
  1025
        for(ii=1; zName; ii++){
sl@0
  1026
          sqlite3_instvfs_get(p, ii, &zName, &nClick, &nCall);
sl@0
  1027
          if( zName ){
sl@0
  1028
            Tcl_Obj *pElem = Tcl_NewObj();
sl@0
  1029
            Tcl_ListObjAppendElement(0, pElem, Tcl_NewStringObj(zName, -1));
sl@0
  1030
            Tcl_ListObjAppendElement(0, pElem, Tcl_NewIntObj(nCall));
sl@0
  1031
            Tcl_ListObjAppendElement(0, pElem, Tcl_NewWideIntObj(nClick));
sl@0
  1032
            Tcl_ListObjAppendElement(0, pRet, pElem);
sl@0
  1033
          }
sl@0
  1034
        }
sl@0
  1035
sl@0
  1036
        Tcl_SetObjResult(interp, pRet);
sl@0
  1037
      }
sl@0
  1038
sl@0
  1039
      break;
sl@0
  1040
    }
sl@0
  1041
  }
sl@0
  1042
sl@0
  1043
  return TCL_OK;
sl@0
  1044
}
sl@0
  1045
#endif /* SQLITE_ENABLE_INSTVFS */
sl@0
  1046
sl@0
  1047
/* Alternative implementation of sqlite3_instvfs when the real
sl@0
  1048
** implementation is unavailable. 
sl@0
  1049
*/
sl@0
  1050
#ifndef SQLITE_ENABLE_INSTVFS
sl@0
  1051
static int test_sqlite3_instvfs(
sl@0
  1052
  void * clientData,
sl@0
  1053
  Tcl_Interp *interp,
sl@0
  1054
  int objc,
sl@0
  1055
  Tcl_Obj *CONST objv[]
sl@0
  1056
){
sl@0
  1057
  Tcl_AppendResult(interp, 
sl@0
  1058
     "not compiled with -DSQLITE_ENABLE_INSTVFS; sqlite3_instvfs is "
sl@0
  1059
     "unavailable", (char*)0);
sl@0
  1060
  return TCL_ERROR;
sl@0
  1061
}
sl@0
  1062
#endif /* !defined(SQLITE_ENABLE_INSTVFS) */
sl@0
  1063
sl@0
  1064
int SqlitetestOsinst_Init(Tcl_Interp *interp){
sl@0
  1065
  Tcl_CreateObjCommand(interp, "sqlite3_instvfs", test_sqlite3_instvfs, 0, 0);
sl@0
  1066
  return TCL_OK;
sl@0
  1067
}
sl@0
  1068
sl@0
  1069
#endif /* SQLITE_TEST */