1 /* 2 ** 2009 November 10 3 ** 4 ** The author disclaims copyright to this source code. In place of 5 ** a legal notice, here is a blessing: 6 ** 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. 10 ** 11 ************************************************************************* 12 ** 13 ** This file implements a read-only VIRTUAL TABLE that contains the 14 ** content of a C-language array of integer values. See the corresponding 15 ** header file for full details. 16 */ 17 #include "test_intarray.h" 18 #include <string.h> 19 #include <assert.h> 20 21 22 /* 23 ** Definition of the sqlite3_intarray object. 24 ** 25 ** The internal representation of an intarray object is subject 26 ** to change, is not externally visible, and should be used by 27 ** the implementation of intarray only. This object is opaque 28 ** to users. 29 */ 30 struct sqlite3_intarray { 31 int n; /* Number of elements in the array */ 32 sqlite3_int64 *a; /* Contents of the array */ 33 void (*xFree)(void*); /* Function used to free a[] */ 34 }; 35 36 /* Objects used internally by the virtual table implementation */ 37 typedef struct intarray_vtab intarray_vtab; 38 typedef struct intarray_cursor intarray_cursor; 39 40 /* A intarray table object */ 41 struct intarray_vtab { 42 sqlite3_vtab base; /* Base class */ 43 sqlite3_intarray *pContent; /* Content of the integer array */ 44 }; 45 46 /* A intarray cursor object */ 47 struct intarray_cursor { 48 sqlite3_vtab_cursor base; /* Base class */ 49 int i; /* Current cursor position */ 50 }; 51 52 /* 53 ** None of this works unless we have virtual tables. 54 */ 55 #ifndef SQLITE_OMIT_VIRTUALTABLE 56 57 /* 58 ** Free an sqlite3_intarray object 59 */ 60 static void intarrayFree(sqlite3_intarray *p){ 61 if( p->xFree ){ 62 p->xFree(p->a); 63 } 64 sqlite3_free(p); 65 } 66 67 /* 68 ** Table destructor for the intarray module. 69 */ 70 static int intarrayDestroy(sqlite3_vtab *p){ 71 intarray_vtab *pVtab = (intarray_vtab*)p; 72 sqlite3_free(pVtab); 73 return 0; 74 } 75 76 /* 77 ** Table constructor for the intarray module. 78 */ 79 static int intarrayCreate( 80 sqlite3 *db, /* Database where module is created */ 81 void *pAux, /* clientdata for the module */ 82 int argc, /* Number of arguments */ 83 const char *const*argv, /* Value for all arguments */ 84 sqlite3_vtab **ppVtab, /* Write the new virtual table object here */ 85 char **pzErr /* Put error message text here */ 86 ){ 87 int rc = SQLITE_NOMEM; 88 intarray_vtab *pVtab = sqlite3_malloc(sizeof(intarray_vtab)); 89 90 if( pVtab ){ 91 memset(pVtab, 0, sizeof(intarray_vtab)); 92 pVtab->pContent = (sqlite3_intarray*)pAux; 93 rc = sqlite3_declare_vtab(db, "CREATE TABLE x(value INTEGER PRIMARY KEY)"); 94 } 95 *ppVtab = (sqlite3_vtab *)pVtab; 96 return rc; 97 } 98 99 /* 100 ** Open a new cursor on the intarray table. 101 */ 102 static int intarrayOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ 103 int rc = SQLITE_NOMEM; 104 intarray_cursor *pCur; 105 pCur = sqlite3_malloc(sizeof(intarray_cursor)); 106 if( pCur ){ 107 memset(pCur, 0, sizeof(intarray_cursor)); 108 *ppCursor = (sqlite3_vtab_cursor *)pCur; 109 rc = SQLITE_OK; 110 } 111 return rc; 112 } 113 114 /* 115 ** Close a intarray table cursor. 116 */ 117 static int intarrayClose(sqlite3_vtab_cursor *cur){ 118 intarray_cursor *pCur = (intarray_cursor *)cur; 119 sqlite3_free(pCur); 120 return SQLITE_OK; 121 } 122 123 /* 124 ** Retrieve a column of data. 125 */ 126 static int intarrayColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){ 127 intarray_cursor *pCur = (intarray_cursor*)cur; 128 intarray_vtab *pVtab = (intarray_vtab*)cur->pVtab; 129 if( pCur->i>=0 && pCur->i<pVtab->pContent->n ){ 130 sqlite3_result_int64(ctx, pVtab->pContent->a[pCur->i]); 131 } 132 return SQLITE_OK; 133 } 134 135 /* 136 ** Retrieve the current rowid. 137 */ 138 static int intarrayRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ 139 intarray_cursor *pCur = (intarray_cursor *)cur; 140 *pRowid = pCur->i; 141 return SQLITE_OK; 142 } 143 144 static int intarrayEof(sqlite3_vtab_cursor *cur){ 145 intarray_cursor *pCur = (intarray_cursor *)cur; 146 intarray_vtab *pVtab = (intarray_vtab *)cur->pVtab; 147 return pCur->i>=pVtab->pContent->n; 148 } 149 150 /* 151 ** Advance the cursor to the next row. 152 */ 153 static int intarrayNext(sqlite3_vtab_cursor *cur){ 154 intarray_cursor *pCur = (intarray_cursor *)cur; 155 pCur->i++; 156 return SQLITE_OK; 157 } 158 159 /* 160 ** Reset a intarray table cursor. 161 */ 162 static int intarrayFilter( 163 sqlite3_vtab_cursor *pVtabCursor, 164 int idxNum, const char *idxStr, 165 int argc, sqlite3_value **argv 166 ){ 167 intarray_cursor *pCur = (intarray_cursor *)pVtabCursor; 168 pCur->i = 0; 169 return SQLITE_OK; 170 } 171 172 /* 173 ** Analyse the WHERE condition. 174 */ 175 static int intarrayBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){ 176 return SQLITE_OK; 177 } 178 179 /* 180 ** A virtual table module that merely echos method calls into TCL 181 ** variables. 182 */ 183 static sqlite3_module intarrayModule = { 184 0, /* iVersion */ 185 intarrayCreate, /* xCreate - create a new virtual table */ 186 intarrayCreate, /* xConnect - connect to an existing vtab */ 187 intarrayBestIndex, /* xBestIndex - find the best query index */ 188 intarrayDestroy, /* xDisconnect - disconnect a vtab */ 189 intarrayDestroy, /* xDestroy - destroy a vtab */ 190 intarrayOpen, /* xOpen - open a cursor */ 191 intarrayClose, /* xClose - close a cursor */ 192 intarrayFilter, /* xFilter - configure scan constraints */ 193 intarrayNext, /* xNext - advance a cursor */ 194 intarrayEof, /* xEof */ 195 intarrayColumn, /* xColumn - read data */ 196 intarrayRowid, /* xRowid - read data */ 197 0, /* xUpdate */ 198 0, /* xBegin */ 199 0, /* xSync */ 200 0, /* xCommit */ 201 0, /* xRollback */ 202 0, /* xFindMethod */ 203 0, /* xRename */ 204 }; 205 206 #endif /* !defined(SQLITE_OMIT_VIRTUALTABLE) */ 207 208 /* 209 ** Invoke this routine to create a specific instance of an intarray object. 210 ** The new intarray object is returned by the 3rd parameter. 211 ** 212 ** Each intarray object corresponds to a virtual table in the TEMP table 213 ** with a name of zName. 214 ** 215 ** Destroy the intarray object by dropping the virtual table. If not done 216 ** explicitly by the application, the virtual table will be dropped implicitly 217 ** by the system when the database connection is closed. 218 */ 219 int sqlite3_intarray_create( 220 sqlite3 *db, 221 const char *zName, 222 sqlite3_intarray **ppReturn 223 ){ 224 int rc; 225 sqlite3_intarray *p; 226 227 *ppReturn = p = sqlite3_malloc( sizeof(*p) ); 228 if( p==0 ){ 229 return SQLITE_NOMEM; 230 } 231 memset(p, 0, sizeof(*p)); 232 rc = sqlite3_create_module_v2(db, zName, &intarrayModule, p, 233 (void(*)(void*))intarrayFree); 234 if( rc==SQLITE_OK ){ 235 char *zSql; 236 zSql = sqlite3_mprintf("CREATE VIRTUAL TABLE temp.%Q USING %Q", 237 zName, zName); 238 rc = sqlite3_exec(db, zSql, 0, 0, 0); 239 sqlite3_free(zSql); 240 } 241 return rc; 242 } 243 244 /* 245 ** Bind a new array array of integers to a specific intarray object. 246 ** 247 ** The array of integers bound must be unchanged for the duration of 248 ** any query against the corresponding virtual table. If the integer 249 ** array does change or is deallocated undefined behavior will result. 250 */ 251 int sqlite3_intarray_bind( 252 sqlite3_intarray *pIntArray, /* The intarray object to bind to */ 253 int nElements, /* Number of elements in the intarray */ 254 sqlite3_int64 *aElements, /* Content of the intarray */ 255 void (*xFree)(void*) /* How to dispose of the intarray when done */ 256 ){ 257 if( pIntArray->xFree ){ 258 pIntArray->xFree(pIntArray->a); 259 } 260 pIntArray->n = nElements; 261 pIntArray->a = aElements; 262 pIntArray->xFree = xFree; 263 return SQLITE_OK; 264 } 265 266 267 /***************************************************************************** 268 ** Everything below is interface for testing this module. 269 */ 270 #ifdef SQLITE_TEST 271 #include <tcl.h> 272 273 /* 274 ** Routines to encode and decode pointers 275 */ 276 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb); 277 extern int sqlite3TestTextToPtr(const char*); 278 extern int sqlite3TestMakePointerStr(Tcl_Interp*, char *zPtr, void*); 279 extern const char *sqlite3TestErrorName(int); 280 281 /* 282 ** sqlite3_intarray_create DB NAME 283 ** 284 ** Invoke the sqlite3_intarray_create interface. A string that becomes 285 ** the first parameter to sqlite3_intarray_bind. 286 */ 287 static int test_intarray_create( 288 ClientData clientData, /* Not used */ 289 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */ 290 int objc, /* Number of arguments */ 291 Tcl_Obj *CONST objv[] /* Command arguments */ 292 ){ 293 sqlite3 *db; 294 const char *zName; 295 sqlite3_intarray *pArray; 296 int rc; 297 char zPtr[100]; 298 299 if( objc!=3 ){ 300 Tcl_WrongNumArgs(interp, 1, objv, "DB"); 301 return TCL_ERROR; 302 } 303 if( getDbPointer(interp, Tcl_GetString(objv[1]), &db) ) return TCL_ERROR; 304 zName = Tcl_GetString(objv[2]); 305 rc = sqlite3_intarray_create(db, zName, &pArray); 306 if( rc!=SQLITE_OK ){ 307 assert( pArray==0 ); 308 Tcl_AppendResult(interp, sqlite3TestErrorName(rc), (char*)0); 309 return TCL_ERROR; 310 } 311 sqlite3TestMakePointerStr(interp, zPtr, pArray); 312 Tcl_AppendResult(interp, zPtr, (char*)0); 313 return TCL_OK; 314 } 315 316 /* 317 ** sqlite3_intarray_bind INTARRAY ?VALUE ...? 318 ** 319 ** Invoke the sqlite3_intarray_bind interface on the given array of integers. 320 */ 321 static int test_intarray_bind( 322 ClientData clientData, /* Not used */ 323 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */ 324 int objc, /* Number of arguments */ 325 Tcl_Obj *CONST objv[] /* Command arguments */ 326 ){ 327 sqlite3_intarray *pArray; 328 int rc; 329 int i, n; 330 sqlite3_int64 *a; 331 332 if( objc<2 ){ 333 Tcl_WrongNumArgs(interp, 1, objv, "INTARRAY"); 334 return TCL_ERROR; 335 } 336 pArray = (sqlite3_intarray*)sqlite3TestTextToPtr(Tcl_GetString(objv[1])); 337 n = objc - 2; 338 a = sqlite3_malloc( sizeof(a[0])*n ); 339 if( a==0 ){ 340 Tcl_AppendResult(interp, "SQLITE_NOMEM", (char*)0); 341 return TCL_ERROR; 342 } 343 for(i=0; i<n; i++){ 344 a[i] = 0; 345 Tcl_GetWideIntFromObj(0, objv[i+2], &a[i]); 346 } 347 rc = sqlite3_intarray_bind(pArray, n, a, sqlite3_free); 348 if( rc!=SQLITE_OK ){ 349 Tcl_AppendResult(interp, sqlite3TestErrorName(rc), (char*)0); 350 return TCL_ERROR; 351 } 352 return TCL_OK; 353 } 354 355 /* 356 ** Register commands with the TCL interpreter. 357 */ 358 int Sqlitetestintarray_Init(Tcl_Interp *interp){ 359 static struct { 360 char *zName; 361 Tcl_ObjCmdProc *xProc; 362 void *clientData; 363 } aObjCmd[] = { 364 { "sqlite3_intarray_create", test_intarray_create, 0 }, 365 { "sqlite3_intarray_bind", test_intarray_bind, 0 }, 366 }; 367 int i; 368 for(i=0; i<sizeof(aObjCmd)/sizeof(aObjCmd[0]); i++){ 369 Tcl_CreateObjCommand(interp, aObjCmd[i].zName, 370 aObjCmd[i].xProc, aObjCmd[i].clientData, 0); 371 } 372 return TCL_OK; 373 } 374 375 #endif /* SQLITE_TEST */ 376