First public contribution.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 ******************************************************************************
13 ** This file contains the implementation of an SQLite vfs wrapper that
14 ** adds instrumentation to all vfs and file methods. C and Tcl interfaces
15 ** are provided to control the instrumentation.
17 ** $Id: test_osinst.c,v 1.18 2008/07/25 13:32:45 drh Exp $
20 #ifdef SQLITE_ENABLE_INSTVFS
24 ** sqlite3_instvfs_create()
25 ** sqlite3_instvfs_destroy()
26 ** sqlite3_instvfs_configure()
28 ** sqlite3_instvfs_reset()
29 ** sqlite3_instvfs_get()
31 ** sqlite3_instvfs_binarylog
32 ** sqlite3_instvfs_binarylog_marker
34 ** Tcl interface (omitted if SQLITE_TEST is not set):
36 ** sqlite3_instvfs create NAME ?PARENT?
38 ** Create and register new vfs called $NAME, which is a wrapper around
39 ** the existing vfs $PARENT. If the PARENT argument is omitted, the
40 ** new vfs is a wrapper around the current default vfs.
42 ** sqlite3_instvfs destroy NAME
44 ** Deregister and destroy the vfs named $NAME, which must have been
45 ** created by an earlier invocation of [sqlite3_instvfs create].
47 ** sqlite3_instvfs configure NAME SCRIPT
49 ** Configure the callback script for the vfs $NAME, which much have
50 ** been created by an earlier invocation of [sqlite3_instvfs create].
51 ** After a callback script has been configured, it is invoked each
52 ** time a vfs or file method is called by SQLite. Before invoking
53 ** the callback script, five arguments are appended to it:
55 ** * The name of the invoked method - i.e. "xRead".
57 ** * The time consumed by the method call as measured by
58 ** sqlite3Hwtime() (an integer value)
60 ** * A string value with a different meaning for different calls.
61 ** For file methods, the name of the file being operated on. For
62 ** other methods it is the filename argument, if any.
64 ** * A 32-bit integer value with a call-specific meaning.
66 ** * A 64-bit integer value. For xRead() and xWrite() calls this
67 ** is the file offset being written to or read from. Unused by
70 ** sqlite3_instvfs reset NAME
72 ** Zero the internal event counters associated with vfs $NAME,
73 ** which must have been created by an earlier invocation of
74 ** [sqlite3_instvfs create].
76 ** sqlite3_instvfs report NAME
78 ** Return the values of the internal event counters associated
79 ** with vfs $NAME. The report format is a list with one element
80 ** for each method call (xWrite, xRead etc.). Each element is
81 ** itself a list with three elements:
83 ** * The name of the method call - i.e. "xWrite",
84 ** * The total number of calls to the method (an integer).
85 ** * The aggregate time consumed by all calls to the method as
86 ** measured by sqlite3Hwtime() (an integer).
94 ** Maximum pathname length supported by the inst backend.
96 #define INST_MAX_PATHNAME 512
102 #define OS_CHECKRESERVEDLOCK 2
104 #define OS_CURRENTTIME 4
107 #define OS_FILECONTROL 7
108 #define OS_FILESIZE 8
109 #define OS_FULLPATHNAME 9
112 #define OS_RANDOMNESS 13
114 #define OS_SECTORSIZE 15
117 #define OS_TRUNCATE 18
121 #define OS_NUMEVENTS 21
123 #define BINARYLOG_STRING 30
124 #define BINARYLOG_MARKER 31
126 #define BINARYLOG_PREPARE_V2 64
127 #define BINARYLOG_STEP 65
128 #define BINARYLOG_FINALIZE 66
135 void (*xDel)(void *);
136 void (*xCall)(void *, int, int, sqlite3_int64, int, const char *, int, int, sqlite3_int64);
139 sqlite3_int64 aTime[OS_NUMEVENTS];
140 int aCount[OS_NUMEVENTS];
144 typedef struct InstVfs InstVfs;
146 #define REALVFS(p) (((InstVfs *)(p))->pVfs)
148 typedef struct inst_file inst_file;
154 int iFileId; /* File id number */
159 ** Method declarations for inst_file.
161 static int instClose(sqlite3_file*);
162 static int instRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
163 static int instWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst);
164 static int instTruncate(sqlite3_file*, sqlite3_int64 size);
165 static int instSync(sqlite3_file*, int flags);
166 static int instFileSize(sqlite3_file*, sqlite3_int64 *pSize);
167 static int instLock(sqlite3_file*, int);
168 static int instUnlock(sqlite3_file*, int);
169 static int instCheckReservedLock(sqlite3_file*, int *pResOut);
170 static int instFileControl(sqlite3_file*, int op, void *pArg);
171 static int instSectorSize(sqlite3_file*);
172 static int instDeviceCharacteristics(sqlite3_file*);
175 ** Method declarations for inst_vfs.
177 static int instOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *);
178 static int instDelete(sqlite3_vfs*, const char *zName, int syncDir);
179 static int instAccess(sqlite3_vfs*, const char *zName, int flags, int *);
180 static int instFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
181 static void *instDlOpen(sqlite3_vfs*, const char *zFilename);
182 static void instDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
183 static void *instDlSym(sqlite3_vfs*,void*, const char *zSymbol);
184 static void instDlClose(sqlite3_vfs*, void*);
185 static int instRandomness(sqlite3_vfs*, int nByte, char *zOut);
186 static int instSleep(sqlite3_vfs*, int microseconds);
187 static int instCurrentTime(sqlite3_vfs*, double*);
189 static void binarylog_blob(sqlite3_vfs *, const char *, int, int);
191 static sqlite3_vfs inst_vfs = {
193 sizeof(inst_file), /* szOsFile */
194 INST_MAX_PATHNAME, /* mxPathname */
198 instOpen, /* xOpen */
199 instDelete, /* xDelete */
200 instAccess, /* xAccess */
201 instFullPathname, /* xFullPathname */
202 instDlOpen, /* xDlOpen */
203 instDlError, /* xDlError */
204 instDlSym, /* xDlSym */
205 instDlClose, /* xDlClose */
206 instRandomness, /* xRandomness */
207 instSleep, /* xSleep */
208 instCurrentTime /* xCurrentTime */
211 static sqlite3_io_methods inst_io_methods = {
213 instClose, /* xClose */
214 instRead, /* xRead */
215 instWrite, /* xWrite */
216 instTruncate, /* xTruncate */
217 instSync, /* xSync */
218 instFileSize, /* xFileSize */
219 instLock, /* xLock */
220 instUnlock, /* xUnlock */
221 instCheckReservedLock, /* xCheckReservedLock */
222 instFileControl, /* xFileControl */
223 instSectorSize, /* xSectorSize */
224 instDeviceCharacteristics /* xDeviceCharacteristics */
228 ** hwtime.h contains inline assembler code for implementing
229 ** high-performance timing routines.
233 #define OS_TIME_IO(eEvent, A, B, Call) { \
234 inst_file *p = (inst_file *)pFile; \
235 InstVfs *pInstVfs = p->pInstVfs; \
237 sqlite_uint64 t = sqlite3Hwtime(); \
239 t = sqlite3Hwtime() - t; \
240 pInstVfs->aTime[eEvent] += t; \
241 pInstVfs->aCount[eEvent] += 1; \
242 if( pInstVfs->xCall ){ \
244 pInstVfs->pClient,eEvent,p->iFileId,t,rc,p->zName,p->flags,A,B \
250 #define OS_TIME_VFS(eEvent, Z, flags, A, B, Call) { \
251 InstVfs *pInstVfs = (InstVfs *)pVfs; \
253 sqlite_uint64 t = sqlite3Hwtime(); \
255 t = sqlite3Hwtime() - t; \
256 pInstVfs->aTime[eEvent] += t; \
257 pInstVfs->aCount[eEvent] += 1; \
258 if( pInstVfs->xCall ){ \
259 pInstVfs->xCall(pInstVfs->pClient,eEvent,0, t, rc, Z, flags, A, B); \
265 ** Close an inst-file.
267 static int instClose(sqlite3_file *pFile){
268 OS_TIME_IO(OS_CLOSE, 0, 0,
269 (p->pReal->pMethods ? p->pReal->pMethods->xClose(p->pReal) : SQLITE_OK)
274 ** Read data from an inst-file.
282 sqlite3_vfs *pVfs = (sqlite3_vfs *)(((inst_file *)pFile)->pInstVfs);
283 OS_TIME_IO(OS_READ, iAmt, (binarylog_blob(pVfs, zBuf, iAmt, 1), iOfst),
284 p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst)
289 ** Write data to an inst-file.
291 static int instWrite(
297 sqlite3_vfs *pVfs = (sqlite3_vfs *)(((inst_file *)pFile)->pInstVfs);
298 binarylog_blob(pVfs, z, iAmt, 1);
299 OS_TIME_IO(OS_WRITE, iAmt, iOfst,
300 p->pReal->pMethods->xWrite(p->pReal, z, iAmt, iOfst)
305 ** Truncate an inst-file.
307 static int instTruncate(sqlite3_file *pFile, sqlite_int64 size){
308 OS_TIME_IO(OS_TRUNCATE, 0, (int)size,
309 p->pReal->pMethods->xTruncate(p->pReal, size)
314 ** Sync an inst-file.
316 static int instSync(sqlite3_file *pFile, int flags){
317 OS_TIME_IO(OS_SYNC, flags, 0, p->pReal->pMethods->xSync(p->pReal, flags));
321 ** Return the current file-size of an inst-file.
323 static int instFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){
324 OS_TIME_IO(OS_FILESIZE, (int)(*pSize), 0,
325 p->pReal->pMethods->xFileSize(p->pReal, pSize)
330 ** Lock an inst-file.
332 static int instLock(sqlite3_file *pFile, int eLock){
333 OS_TIME_IO(OS_LOCK, eLock, 0, p->pReal->pMethods->xLock(p->pReal, eLock));
337 ** Unlock an inst-file.
339 static int instUnlock(sqlite3_file *pFile, int eLock){
340 OS_TIME_IO(OS_UNLOCK, eLock, 0, p->pReal->pMethods->xUnlock(p->pReal, eLock));
344 ** Check if another file-handle holds a RESERVED lock on an inst-file.
346 static int instCheckReservedLock(sqlite3_file *pFile, int *pResOut){
347 OS_TIME_IO(OS_CHECKRESERVEDLOCK, 0, 0,
348 p->pReal->pMethods->xCheckReservedLock(p->pReal, pResOut)
353 ** File control method. For custom operations on an inst-file.
355 static int instFileControl(sqlite3_file *pFile, int op, void *pArg){
356 OS_TIME_IO(OS_FILECONTROL, 0, 0, p->pReal->pMethods->xFileControl(p->pReal, op, pArg));
360 ** Return the sector-size in bytes for an inst-file.
362 static int instSectorSize(sqlite3_file *pFile){
363 OS_TIME_IO(OS_SECTORSIZE, 0, 0, p->pReal->pMethods->xSectorSize(p->pReal));
367 ** Return the device characteristic flags supported by an inst-file.
369 static int instDeviceCharacteristics(sqlite3_file *pFile){
370 OS_TIME_IO(OS_DEVCHAR, 0, 0, p->pReal->pMethods->xDeviceCharacteristics(p->pReal));
374 ** Open an inst file handle.
383 inst_file *p = (inst_file *)pFile;
384 pFile->pMethods = &inst_io_methods;
385 p->pReal = (sqlite3_file *)&p[1];
386 p->pInstVfs = (InstVfs *)pVfs;
389 p->iFileId = ++p->pInstVfs->iNextFileId;
391 binarylog_blob(pVfs, zName, -1, 0);
392 OS_TIME_VFS(OS_OPEN, zName, flags, p->iFileId, 0,
393 REALVFS(pVfs)->xOpen(REALVFS(pVfs), zName, p->pReal, flags, pOutFlags)
398 ** Delete the file located at zPath. If the dirSync argument is true,
399 ** ensure the file-system modifications are synced to disk before
402 static int instDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
403 binarylog_blob(pVfs, zPath, -1, 0);
404 OS_TIME_VFS(OS_DELETE, zPath, 0, dirSync, 0,
405 REALVFS(pVfs)->xDelete(REALVFS(pVfs), zPath, dirSync)
410 ** Test for access permissions. Return true if the requested permission
411 ** is available, or false otherwise.
413 static int instAccess(
419 binarylog_blob(pVfs, zPath, -1, 0);
420 OS_TIME_VFS(OS_ACCESS, zPath, 0, flags, *pResOut,
421 REALVFS(pVfs)->xAccess(REALVFS(pVfs), zPath, flags, pResOut)
426 ** Populate buffer zOut with the full canonical pathname corresponding
427 ** to the pathname in zPath. zOut is guaranteed to point to a buffer
428 ** of at least (INST_MAX_PATHNAME+1) bytes.
430 static int instFullPathname(
436 OS_TIME_VFS( OS_FULLPATHNAME, zPath, 0, 0, 0,
437 REALVFS(pVfs)->xFullPathname(REALVFS(pVfs), zPath, nOut, zOut);
442 ** Open the dynamic library located at zPath and return a handle.
444 static void *instDlOpen(sqlite3_vfs *pVfs, const char *zPath){
445 return REALVFS(pVfs)->xDlOpen(REALVFS(pVfs), zPath);
449 ** Populate the buffer zErrMsg (size nByte bytes) with a human readable
450 ** utf-8 string describing the most recent error encountered associated
451 ** with dynamic libraries.
453 static void instDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){
454 REALVFS(pVfs)->xDlError(REALVFS(pVfs), nByte, zErrMsg);
458 ** Return a pointer to the symbol zSymbol in the dynamic library pHandle.
460 static void *instDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol){
461 return REALVFS(pVfs)->xDlSym(REALVFS(pVfs), pHandle, zSymbol);
465 ** Close the dynamic library handle pHandle.
467 static void instDlClose(sqlite3_vfs *pVfs, void *pHandle){
468 REALVFS(pVfs)->xDlClose(REALVFS(pVfs), pHandle);
472 ** Populate the buffer pointed to by zBufOut with nByte bytes of
475 static int instRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){
476 OS_TIME_VFS( OS_RANDOMNESS, 0, 0, nByte, 0,
477 REALVFS(pVfs)->xRandomness(REALVFS(pVfs), nByte, zBufOut);
482 ** Sleep for nMicro microseconds. Return the number of microseconds
485 static int instSleep(sqlite3_vfs *pVfs, int nMicro){
486 OS_TIME_VFS( OS_SLEEP, 0, 0, nMicro, 0,
487 REALVFS(pVfs)->xSleep(REALVFS(pVfs), nMicro)
492 ** Return the current time as a Julian Day number in *pTimeOut.
494 static int instCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){
495 OS_TIME_VFS( OS_CURRENTTIME, 0, 0, 0, 0,
496 REALVFS(pVfs)->xCurrentTime(REALVFS(pVfs), pTimeOut)
500 sqlite3_vfs *sqlite3_instvfs_create(const char *zName, const char *zParent){
503 sqlite3_vfs *pParent;
505 pParent = sqlite3_vfs_find(zParent);
510 nByte = strlen(zName) + 1 + sizeof(InstVfs);
511 p = (InstVfs *)sqlite3_malloc(nByte);
513 char *zCopy = (char *)&p[1];
515 memcpy(p, &inst_vfs, sizeof(sqlite3_vfs));
517 memcpy(zCopy, zName, strlen(zName));
518 p->base.zName = (const char *)zCopy;
519 p->base.szOsFile += pParent->szOsFile;
520 sqlite3_vfs_register((sqlite3_vfs *)p, 0);
523 return (sqlite3_vfs *)p;
526 void sqlite3_instvfs_configure(
531 int, /* Event code */
533 int, /* Return code */
534 const char*, /* File name */
542 InstVfs *p = (InstVfs *)pVfs;
543 assert( pVfs->xOpen==instOpen );
549 p->pClient = pClient;
552 void sqlite3_instvfs_destroy(sqlite3_vfs *pVfs){
554 sqlite3_vfs_unregister(pVfs);
555 sqlite3_instvfs_configure(pVfs, 0, 0, 0);
560 void sqlite3_instvfs_reset(sqlite3_vfs *pVfs){
561 InstVfs *p = (InstVfs *)pVfs;
562 assert( pVfs->xOpen==instOpen );
563 memset(p->aTime, 0, sizeof(sqlite3_int64)*OS_NUMEVENTS);
564 memset(p->aCount, 0, sizeof(int)*OS_NUMEVENTS);
567 const char *sqlite3_instvfs_name(int eEvent){
568 const char *zEvent = 0;
571 case OS_CLOSE: zEvent = "xClose"; break;
572 case OS_READ: zEvent = "xRead"; break;
573 case OS_WRITE: zEvent = "xWrite"; break;
574 case OS_TRUNCATE: zEvent = "xTruncate"; break;
575 case OS_SYNC: zEvent = "xSync"; break;
576 case OS_FILESIZE: zEvent = "xFilesize"; break;
577 case OS_LOCK: zEvent = "xLock"; break;
578 case OS_UNLOCK: zEvent = "xUnlock"; break;
579 case OS_CHECKRESERVEDLOCK: zEvent = "xCheckReservedLock"; break;
580 case OS_FILECONTROL: zEvent = "xFileControl"; break;
581 case OS_SECTORSIZE: zEvent = "xSectorSize"; break;
582 case OS_DEVCHAR: zEvent = "xDeviceCharacteristics"; break;
583 case OS_OPEN: zEvent = "xOpen"; break;
584 case OS_DELETE: zEvent = "xDelete"; break;
585 case OS_ACCESS: zEvent = "xAccess"; break;
586 case OS_FULLPATHNAME: zEvent = "xFullPathname"; break;
587 case OS_RANDOMNESS: zEvent = "xRandomness"; break;
588 case OS_SLEEP: zEvent = "xSleep"; break;
589 case OS_CURRENTTIME: zEvent = "xCurrentTime"; break;
595 void sqlite3_instvfs_get(
598 const char **pzEvent,
599 sqlite3_int64 *pnClick,
602 InstVfs *p = (InstVfs *)pVfs;
603 assert( pVfs->xOpen==instOpen );
604 if( eEvent<1 || eEvent>=OS_NUMEVENTS ){
611 *pzEvent = sqlite3_instvfs_name(eEvent);
612 *pnClick = p->aTime[eEvent];
613 *pnCall = p->aCount[eEvent];
616 #define BINARYLOG_BUFFERSIZE 8192
618 struct InstVfsBinaryLog {
621 sqlite3_int64 iOffset;
624 char *zOut; /* Log file name */
626 typedef struct InstVfsBinaryLog InstVfsBinaryLog;
628 static void put32bits(unsigned char *p, unsigned int v){
635 static void binarylog_flush(InstVfsBinaryLog *pLog){
636 sqlite3_file *pFile = pLog->pOut;
639 extern int sqlite3_io_error_pending;
640 extern int sqlite3_io_error_persist;
641 extern int sqlite3_diskfull_pending;
643 int pending = sqlite3_io_error_pending;
644 int persist = sqlite3_io_error_persist;
645 int diskfull = sqlite3_diskfull_pending;
647 sqlite3_io_error_pending = 0;
648 sqlite3_io_error_persist = 0;
649 sqlite3_diskfull_pending = 0;
652 pFile->pMethods->xWrite(pFile, pLog->zBuf, pLog->nBuf, pLog->iOffset);
653 pLog->iOffset += pLog->nBuf;
657 sqlite3_io_error_pending = pending;
658 sqlite3_io_error_persist = persist;
659 sqlite3_diskfull_pending = diskfull;
663 static void binarylog_xcall(
667 sqlite3_int64 nClick,
672 sqlite3_int64 iOffset
674 InstVfsBinaryLog *pLog = (InstVfsBinaryLog *)p;
676 if( (28+pLog->nBuf)>BINARYLOG_BUFFERSIZE ){
677 binarylog_flush(pLog);
679 zRec = (unsigned char *)&pLog->zBuf[pLog->nBuf];
680 put32bits(&zRec[0], eEvent);
681 put32bits(&zRec[4], (int)iFileId);
682 put32bits(&zRec[8], (int)nClick);
683 put32bits(&zRec[12], return_code);
684 put32bits(&zRec[16], flags);
685 put32bits(&zRec[20], nByte);
686 put32bits(&zRec[24], (int)iOffset);
690 static void binarylog_xdel(void *p){
691 /* Close the log file and free the memory allocated for the
692 ** InstVfsBinaryLog structure.
694 InstVfsBinaryLog *pLog = (InstVfsBinaryLog *)p;
695 sqlite3_file *pFile = pLog->pOut;
697 binarylog_flush(pLog);
699 pFile->pMethods->xClose(pFile);
700 sqlite3_free(pLog->pOut);
701 sqlite3_free(pLog->zBuf);
705 static void binarylog_blob(
711 InstVfsBinaryLog *pLog;
712 InstVfs *pInstVfs = (InstVfs *)pVfs;
714 if( pVfs->xOpen!=instOpen || pInstVfs->xCall!=binarylog_xcall ){
717 pLog = (InstVfsBinaryLog *)pInstVfs->pClient;
718 if( zBlob && (!isBinary || pLog->log_data) ){
723 nBlob = strlen(zBlob);
727 if( (nWrite+pLog->nBuf)>BINARYLOG_BUFFERSIZE ){
728 binarylog_flush(pLog);
731 zRec = (unsigned char *)&pLog->zBuf[pLog->nBuf];
732 memset(zRec, 0, nWrite);
733 put32bits(&zRec[0], BINARYLOG_STRING);
734 put32bits(&zRec[4], (int)nBlob);
735 put32bits(&zRec[8], (int)isBinary);
736 memcpy(&zRec[28], zBlob, nBlob);
737 pLog->nBuf += nWrite;
741 void sqlite3_instvfs_binarylog_call(
744 sqlite3_int64 nClick,
748 InstVfs *pInstVfs = (InstVfs *)pVfs;
749 InstVfsBinaryLog *pLog = (InstVfsBinaryLog *)pInstVfs->pClient;
752 binarylog_blob(pVfs, zString, -1, 0);
754 binarylog_xcall(pLog, eEvent, 0, nClick, return_code, 0, 0, 0, 0);
757 void sqlite3_instvfs_binarylog_marker(
761 InstVfs *pInstVfs = (InstVfs *)pVfs;
762 InstVfsBinaryLog *pLog = (InstVfsBinaryLog *)pInstVfs->pClient;
763 binarylog_blob(pVfs, zMarker, -1, 0);
764 binarylog_xcall(pLog, BINARYLOG_MARKER, 0, 0, 0, 0, 0, 0, 0);
767 sqlite3_vfs *sqlite3_instvfs_binarylog(
769 const char *zParentVfs,
775 sqlite3_vfs *pParent;
780 pParent = sqlite3_vfs_find(zParentVfs);
785 nByte = sizeof(InstVfsBinaryLog) + pParent->mxPathname+1;
786 p = (InstVfsBinaryLog *)sqlite3_malloc(nByte);
788 p->zBuf = sqlite3_malloc(BINARYLOG_BUFFERSIZE);
789 p->zOut = (char *)&p[1];
790 p->pOut = (sqlite3_file *)sqlite3_malloc(pParent->szOsFile);
791 p->log_data = log_data;
792 pParent->xFullPathname(pParent, zLog, pParent->mxPathname, p->zOut);
793 flags = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE|SQLITE_OPEN_MASTER_JOURNAL;
794 pParent->xDelete(pParent, p->zOut, 0);
795 rc = pParent->xOpen(pParent, p->zOut, p->pOut, flags, &flags);
797 memcpy(p->zBuf, "sqlite_ostrace1.....", 20);
806 pVfs = sqlite3_instvfs_create(zVfs, zParentVfs);
808 sqlite3_instvfs_configure(pVfs, binarylog_xcall, p, binarylog_xdel);
813 #endif /* SQLITE_ENABLE_INSTVFS */
815 /**************************************************************************
816 ***************************************************************************
817 ** Tcl interface starts here.
823 #ifdef SQLITE_ENABLE_INSTVFS
828 typedef struct InstVfsCall InstVfsCall;
830 static void test_instvfs_xcall(
834 sqlite3_int64 nClick,
839 sqlite3_int64 iOffset
842 InstVfsCall *pCall = (InstVfsCall *)p;
843 Tcl_Obj *pObj = Tcl_DuplicateObj( pCall->pScript);
844 const char *zEvent = sqlite3_instvfs_name(eEvent);
846 Tcl_IncrRefCount(pObj);
847 Tcl_ListObjAppendElement(0, pObj, Tcl_NewStringObj(zEvent, -1));
848 Tcl_ListObjAppendElement(0, pObj, Tcl_NewWideIntObj(nClick));
849 Tcl_ListObjAppendElement(0, pObj, Tcl_NewStringObj(zName, -1));
850 Tcl_ListObjAppendElement(0, pObj, Tcl_NewIntObj(nByte));
851 Tcl_ListObjAppendElement(0, pObj, Tcl_NewWideIntObj(iOffset));
853 rc = Tcl_EvalObjEx(pCall->interp, pObj, TCL_EVAL_GLOBAL|TCL_EVAL_DIRECT);
855 Tcl_BackgroundError(pCall->interp);
857 Tcl_DecrRefCount(pObj);
860 static void test_instvfs_xdel(void *p){
861 InstVfsCall *pCall = (InstVfsCall *)p;
862 Tcl_DecrRefCount(pCall->pScript);
866 static int test_sqlite3_instvfs(
870 Tcl_Obj *CONST objv[]
872 static const char *IV_strs[] =
873 { "create", "destroy", "reset", "report", "configure", "binarylog", "marker", 0 };
874 enum IV_enum { IV_CREATE, IV_DESTROY, IV_RESET, IV_REPORT, IV_CONFIGURE, IV_BINARYLOG, IV_MARKER };
878 Tcl_WrongNumArgs(interp, 1, objv, "SUB-COMMAND ...");
880 if( Tcl_GetIndexFromObj(interp, objv[1], IV_strs, "sub-command", 0, &iSub) ){
884 switch( (enum IV_enum)iSub ){
889 if( objc>2 && 0==strcmp("-default", Tcl_GetString(objv[2])) ){
892 if( (objc-isDefault)!=4 && (objc-isDefault)!=3 ){
893 Tcl_WrongNumArgs(interp, 2, objv, "?-default? NAME ?PARENT-VFS?");
896 if( objc==(4+isDefault) ){
897 zParent = Tcl_GetString(objv[3+isDefault]);
899 p = sqlite3_instvfs_create(Tcl_GetString(objv[2+isDefault]), zParent);
901 Tcl_AppendResult(interp, "error creating vfs ", 0);
905 sqlite3_vfs_register(p, 1);
907 Tcl_SetObjResult(interp, objv[2]);
919 for(argbase=2; argbase<(objc-2); argbase++){
920 if( 0==strcmp("-default", Tcl_GetString(objv[argbase])) ){
923 else if( 0==strcmp("-parent", Tcl_GetString(objv[argbase])) ){
925 zParent = Tcl_GetString(objv[argbase]);
927 else if( 0==strcmp("-logdata", Tcl_GetString(objv[argbase])) ){
934 if( (objc-argbase)!=2 ){
936 interp, 2, objv, "?-default? ?-parent VFS? ?-logdata? NAME LOGFILE"
940 zName = Tcl_GetString(objv[argbase]);
941 zLog = Tcl_GetString(objv[argbase+1]);
942 p = sqlite3_instvfs_binarylog(zName, zParent, zLog, isLogdata);
944 Tcl_AppendResult(interp, "error creating vfs ", 0);
948 sqlite3_vfs_register(p, 1);
950 Tcl_SetObjResult(interp, objv[2]);
957 Tcl_WrongNumArgs(interp, 2, objv, "VFS MARKER");
960 p = sqlite3_vfs_find(Tcl_GetString(objv[2]));
961 if( !p || p->xOpen!=instOpen ){
962 Tcl_AppendResult(interp, "no such vfs: ", Tcl_GetString(objv[2]), 0);
965 sqlite3_instvfs_binarylog_marker(p, Tcl_GetString(objv[3]));
966 Tcl_ResetResult(interp);
975 Tcl_WrongNumArgs(interp, 2, objv, "NAME SCRIPT");
978 p = sqlite3_vfs_find(Tcl_GetString(objv[2]));
979 if( !p || p->xOpen!=instOpen ){
980 Tcl_AppendResult(interp, "no such vfs: ", Tcl_GetString(objv[2]), 0);
984 if( strlen(Tcl_GetString(objv[3])) ){
985 pCall = (InstVfsCall *)sqlite3_malloc(sizeof(InstVfsCall));
986 pCall->interp = interp;
987 pCall->pScript = Tcl_DuplicateObj(objv[3]);
988 Tcl_IncrRefCount(pCall->pScript);
989 sqlite3_instvfs_configure(p,
990 test_instvfs_xcall, (void *)pCall, test_instvfs_xdel
993 sqlite3_instvfs_configure(p, 0, 0, 0);
1003 Tcl_WrongNumArgs(interp, 2, objv, "NAME");
1006 p = sqlite3_vfs_find(Tcl_GetString(objv[2]));
1007 if( !p || p->xOpen!=instOpen ){
1008 Tcl_AppendResult(interp, "no such vfs: ", Tcl_GetString(objv[2]), 0);
1012 if( ((enum IV_enum)iSub)==IV_DESTROY ){
1013 sqlite3_instvfs_destroy(p);
1015 if( ((enum IV_enum)iSub)==IV_RESET ){
1016 sqlite3_instvfs_reset(p);
1018 if( ((enum IV_enum)iSub)==IV_REPORT ){
1020 Tcl_Obj *pRet = Tcl_NewObj();
1022 const char *zName = (char *)1;
1023 sqlite3_int64 nClick;
1025 for(ii=1; zName; ii++){
1026 sqlite3_instvfs_get(p, ii, &zName, &nClick, &nCall);
1028 Tcl_Obj *pElem = Tcl_NewObj();
1029 Tcl_ListObjAppendElement(0, pElem, Tcl_NewStringObj(zName, -1));
1030 Tcl_ListObjAppendElement(0, pElem, Tcl_NewIntObj(nCall));
1031 Tcl_ListObjAppendElement(0, pElem, Tcl_NewWideIntObj(nClick));
1032 Tcl_ListObjAppendElement(0, pRet, pElem);
1036 Tcl_SetObjResult(interp, pRet);
1045 #endif /* SQLITE_ENABLE_INSTVFS */
1047 /* Alternative implementation of sqlite3_instvfs when the real
1048 ** implementation is unavailable.
1050 #ifndef SQLITE_ENABLE_INSTVFS
1051 static int test_sqlite3_instvfs(
1055 Tcl_Obj *CONST objv[]
1057 Tcl_AppendResult(interp,
1058 "not compiled with -DSQLITE_ENABLE_INSTVFS; sqlite3_instvfs is "
1059 "unavailable", (char*)0);
1062 #endif /* !defined(SQLITE_ENABLE_INSTVFS) */
1064 int SqlitetestOsinst_Init(Tcl_Interp *interp){
1065 Tcl_CreateObjCommand(interp, "sqlite3_instvfs", test_sqlite3_instvfs, 0, 0);
1069 #endif /* SQLITE_TEST */