blob: 0e082a05d9511abe6c233928ab08299da9f51f44 [file] [log] [blame]
drhb9bb7c12006-06-11 23:41:55 +00001/*
2** 2006 June 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** This file contains code used to help implement virtual tables.
drhb9bb7c12006-06-11 23:41:55 +000013*/
14#ifndef SQLITE_OMIT_VIRTUALTABLE
15#include "sqliteInt.h"
16
drh63842412009-04-11 16:27:19 +000017/*
danb061d052011-04-25 18:49:57 +000018** Before a virtual table xCreate() or xConnect() method is invoked, the
19** sqlite3.pVtabCtx member variable is set to point to an instance of
20** this struct allocated on the stack. It is used by the implementation of
21** the sqlite3_declare_vtab() and sqlite3_vtab_config() APIs, both of which
22** are invoked only from within xCreate and xConnect methods.
23*/
24struct VtabCtx {
drh81028a42012-05-15 18:28:27 +000025 VTable *pVTable; /* The virtual table being constructed */
26 Table *pTab; /* The Table object to which the virtual table belongs */
danb061d052011-04-25 18:49:57 +000027};
28
29/*
drh63842412009-04-11 16:27:19 +000030** The actual function that does the work of creating a new module.
31** This function implements the sqlite3_create_module() and
32** sqlite3_create_module_v2() interfaces.
33*/
danielk1977832a58a2007-06-22 15:21:15 +000034static int createModule(
35 sqlite3 *db, /* Database in which module is registered */
36 const char *zName, /* Name assigned to this module */
37 const sqlite3_module *pModule, /* The definition of the module */
38 void *pAux, /* Context pointer for xCreate/xConnect */
39 void (*xDestroy)(void *) /* Module destructor function */
danielk1977595a5232009-07-24 17:58:53 +000040){
danca8b9ba2012-05-16 14:29:11 +000041 int rc = SQLITE_OK;
42 int nName;
drh27641702007-08-22 02:56:42 +000043
44 sqlite3_mutex_enter(db->mutex);
drhea678832008-12-10 19:26:22 +000045 nName = sqlite3Strlen30(zName);
danca8b9ba2012-05-16 14:29:11 +000046 if( sqlite3HashFind(&db->aModule, zName, nName) ){
47 rc = SQLITE_MISUSE_BKPT;
48 }else{
49 Module *pMod;
50 pMod = (Module *)sqlite3DbMallocRaw(db, sizeof(Module) + nName + 1);
51 if( pMod ){
52 Module *pDel;
53 char *zCopy = (char *)(&pMod[1]);
54 memcpy(zCopy, zName, nName+1);
55 pMod->zName = zCopy;
56 pMod->pModule = pModule;
57 pMod->pAux = pAux;
58 pMod->xDestroy = xDestroy;
59 pDel = (Module *)sqlite3HashInsert(&db->aModule,zCopy,nName,(void*)pMod);
60 assert( pDel==0 || pDel==pMod );
61 if( pDel ){
62 db->mallocFailed = 1;
63 sqlite3DbFree(db, pDel);
64 }
danielk1977832a58a2007-06-22 15:21:15 +000065 }
danielk1977832a58a2007-06-22 15:21:15 +000066 }
danca8b9ba2012-05-16 14:29:11 +000067 rc = sqlite3ApiExit(db, rc);
68 if( rc!=SQLITE_OK && xDestroy ) xDestroy(pAux);
69
drh27641702007-08-22 02:56:42 +000070 sqlite3_mutex_leave(db->mutex);
71 return rc;
danielk1977832a58a2007-06-22 15:21:15 +000072}
73
74
drhb9bb7c12006-06-11 23:41:55 +000075/*
76** External API function used to create a new virtual-table module.
77*/
78int sqlite3_create_module(
79 sqlite3 *db, /* Database in which module is registered */
80 const char *zName, /* Name assigned to this module */
danielk1977d1ab1ba2006-06-15 04:28:13 +000081 const sqlite3_module *pModule, /* The definition of the module */
82 void *pAux /* Context pointer for xCreate/xConnect */
drhb9bb7c12006-06-11 23:41:55 +000083){
danielk1977832a58a2007-06-22 15:21:15 +000084 return createModule(db, zName, pModule, pAux, 0);
85}
86
87/*
88** External API function used to create a new virtual-table module.
89*/
90int sqlite3_create_module_v2(
91 sqlite3 *db, /* Database in which module is registered */
92 const char *zName, /* Name assigned to this module */
93 const sqlite3_module *pModule, /* The definition of the module */
94 void *pAux, /* Context pointer for xCreate/xConnect */
95 void (*xDestroy)(void *) /* Module destructor function */
96){
97 return createModule(db, zName, pModule, pAux, xDestroy);
drhb9bb7c12006-06-11 23:41:55 +000098}
99
drhb9bb7c12006-06-11 23:41:55 +0000100/*
drh189d4af2006-09-02 20:57:52 +0000101** Lock the virtual table so that it cannot be disconnected.
102** Locks nest. Every lock should have a corresponding unlock.
103** If an unlock is omitted, resources leaks will occur.
104**
105** If a disconnect is attempted while a virtual table is locked,
106** the disconnect is deferred until all locks have been removed.
107*/
danielk1977595a5232009-07-24 17:58:53 +0000108void sqlite3VtabLock(VTable *pVTab){
109 pVTab->nRef++;
110}
111
112
113/*
114** pTab is a pointer to a Table structure representing a virtual-table.
115** Return a pointer to the VTable object used by connection db to access
116** this virtual-table, if one has been created, or NULL otherwise.
117*/
118VTable *sqlite3GetVTable(sqlite3 *db, Table *pTab){
119 VTable *pVtab;
120 assert( IsVirtual(pTab) );
121 for(pVtab=pTab->pVTable; pVtab && pVtab->db!=db; pVtab=pVtab->pNext);
122 return pVtab;
drh189d4af2006-09-02 20:57:52 +0000123}
124
125/*
danielk1977595a5232009-07-24 17:58:53 +0000126** Decrement the ref-count on a virtual table object. When the ref-count
127** reaches zero, call the xDisconnect() method to delete the object.
drh189d4af2006-09-02 20:57:52 +0000128*/
danielk1977595a5232009-07-24 17:58:53 +0000129void sqlite3VtabUnlock(VTable *pVTab){
130 sqlite3 *db = pVTab->db;
131
132 assert( db );
133 assert( pVTab->nRef>0 );
drh7e8b8482008-01-23 03:03:05 +0000134 assert( sqlite3SafetyCheckOk(db) );
danielk1977595a5232009-07-24 17:58:53 +0000135
136 pVTab->nRef--;
137 if( pVTab->nRef==0 ){
138 sqlite3_vtab *p = pVTab->pVtab;
139 if( p ){
drh9978c972010-02-23 17:36:32 +0000140 p->pModule->xDisconnect(p);
danielk1977a04a34f2007-04-16 15:06:25 +0000141 }
danielk1977595a5232009-07-24 17:58:53 +0000142 sqlite3DbFree(db, pVTab);
143 }
144}
145
146/*
147** Table p is a virtual table. This function moves all elements in the
148** p->pVTable list to the sqlite3.pDisconnect lists of their associated
149** database connections to be disconnected at the next opportunity.
150** Except, if argument db is not NULL, then the entry associated with
151** connection db is left in the p->pVTable list.
152*/
153static VTable *vtabDisconnectAll(sqlite3 *db, Table *p){
154 VTable *pRet = 0;
155 VTable *pVTable = p->pVTable;
156 p->pVTable = 0;
157
158 /* Assert that the mutex (if any) associated with the BtShared database
159 ** that contains table p is held by the caller. See header comments
160 ** above function sqlite3VtabUnlockList() for an explanation of why
161 ** this makes it safe to access the sqlite3.pDisconnect list of any
drh9bbc2e22011-04-04 20:40:22 +0000162 ** database connection that may have an entry in the p->pVTable list.
163 */
164 assert( db==0 || sqlite3SchemaMutexHeld(db, 0, p->pSchema) );
danielk1977595a5232009-07-24 17:58:53 +0000165
166 while( pVTable ){
167 sqlite3 *db2 = pVTable->db;
168 VTable *pNext = pVTable->pNext;
169 assert( db2 );
170 if( db2==db ){
171 pRet = pVTable;
172 p->pVTable = pRet;
173 pRet->pNext = 0;
174 }else{
175 pVTable->pNext = db2->pDisconnect;
176 db2->pDisconnect = pVTable;
177 }
178 pVTable = pNext;
179 }
180
181 assert( !db || pRet );
182 return pRet;
183}
184
danbba02a92012-05-15 17:15:34 +0000185/*
186** Table *p is a virtual table. This function removes the VTable object
187** for table *p associated with database connection db from the linked
188** list in p->pVTab. It also decrements the VTable ref count. This is
189** used when closing database connection db to free all of its VTable
190** objects without disturbing the rest of the Schema object (which may
191** be being used by other shared-cache connections).
192*/
193void sqlite3VtabDisconnect(sqlite3 *db, Table *p){
194 VTable **ppVTab;
195
196 assert( IsVirtual(p) );
197 assert( sqlite3BtreeHoldsAllMutexes(db) );
198 assert( sqlite3_mutex_held(db->mutex) );
199
200 for(ppVTab=&p->pVTable; *ppVTab; ppVTab=&(*ppVTab)->pNext){
201 if( (*ppVTab)->db==db ){
202 VTable *pVTab = *ppVTab;
203 *ppVTab = pVTab->pNext;
204 sqlite3VtabUnlock(pVTab);
205 break;
206 }
207 }
208}
209
danielk1977595a5232009-07-24 17:58:53 +0000210
211/*
212** Disconnect all the virtual table objects in the sqlite3.pDisconnect list.
213**
214** This function may only be called when the mutexes associated with all
215** shared b-tree databases opened using connection db are held by the
216** caller. This is done to protect the sqlite3.pDisconnect list. The
217** sqlite3.pDisconnect list is accessed only as follows:
218**
219** 1) By this function. In this case, all BtShared mutexes and the mutex
220** associated with the database handle itself must be held.
221**
222** 2) By function vtabDisconnectAll(), when it adds a VTable entry to
223** the sqlite3.pDisconnect list. In this case either the BtShared mutex
224** associated with the database the virtual table is stored in is held
225** or, if the virtual table is stored in a non-sharable database, then
226** the database handle mutex is held.
227**
228** As a result, a sqlite3.pDisconnect cannot be accessed simultaneously
229** by multiple threads. It is thread-safe.
230*/
231void sqlite3VtabUnlockList(sqlite3 *db){
232 VTable *p = db->pDisconnect;
233 db->pDisconnect = 0;
234
235 assert( sqlite3BtreeHoldsAllMutexes(db) );
236 assert( sqlite3_mutex_held(db->mutex) );
237
238 if( p ){
239 sqlite3ExpirePreparedStatements(db);
240 do {
241 VTable *pNext = p->pNext;
242 sqlite3VtabUnlock(p);
243 p = pNext;
244 }while( p );
drh189d4af2006-09-02 20:57:52 +0000245 }
246}
247
248/*
drhb9bb7c12006-06-11 23:41:55 +0000249** Clear any and all virtual-table information from the Table record.
250** This routine is called, for example, just before deleting the Table
251** record.
danielk1977595a5232009-07-24 17:58:53 +0000252**
253** Since it is a virtual-table, the Table structure contains a pointer
254** to the head of a linked list of VTable structures. Each VTable
255** structure is associated with a single sqlite3* user of the schema.
256** The reference count of the VTable structure associated with database
257** connection db is decremented immediately (which may lead to the
258** structure being xDisconnected and free). Any other VTable structures
259** in the list are moved to the sqlite3.pDisconnect list of the associated
260** database connection.
drhb9bb7c12006-06-11 23:41:55 +0000261*/
dan1feeaed2010-07-23 15:41:47 +0000262void sqlite3VtabClear(sqlite3 *db, Table *p){
dand46def72010-07-24 11:28:28 +0000263 if( !db || db->pnBytesFreed==0 ) vtabDisconnectAll(0, p);
drhb9bb7c12006-06-11 23:41:55 +0000264 if( p->azModuleArg ){
265 int i;
266 for(i=0; i<p->nModuleArg; i++){
dan1feeaed2010-07-23 15:41:47 +0000267 sqlite3DbFree(db, p->azModuleArg[i]);
drhb9bb7c12006-06-11 23:41:55 +0000268 }
dan1feeaed2010-07-23 15:41:47 +0000269 sqlite3DbFree(db, p->azModuleArg);
drhb9bb7c12006-06-11 23:41:55 +0000270 }
271}
272
273/*
274** Add a new module argument to pTable->azModuleArg[].
275** The string is not copied - the pointer is stored. The
276** string will be freed automatically when the table is
277** deleted.
278*/
drh17435752007-08-16 04:30:38 +0000279static void addModuleArgument(sqlite3 *db, Table *pTable, char *zArg){
drhb9bb7c12006-06-11 23:41:55 +0000280 int i = pTable->nModuleArg++;
danielk1977b7a2f2e2006-06-23 11:34:54 +0000281 int nBytes = sizeof(char *)*(1+pTable->nModuleArg);
282 char **azModuleArg;
danielk197726783a52007-08-29 14:06:22 +0000283 azModuleArg = sqlite3DbRealloc(db, pTable->azModuleArg, nBytes);
danielk1977b7a2f2e2006-06-23 11:34:54 +0000284 if( azModuleArg==0 ){
285 int j;
286 for(j=0; j<i; j++){
drh633e6d52008-07-28 19:34:53 +0000287 sqlite3DbFree(db, pTable->azModuleArg[j]);
danielk1977b7a2f2e2006-06-23 11:34:54 +0000288 }
drh633e6d52008-07-28 19:34:53 +0000289 sqlite3DbFree(db, zArg);
290 sqlite3DbFree(db, pTable->azModuleArg);
danielk1977b7a2f2e2006-06-23 11:34:54 +0000291 pTable->nModuleArg = 0;
drhb9bb7c12006-06-11 23:41:55 +0000292 }else{
danielk1977b7a2f2e2006-06-23 11:34:54 +0000293 azModuleArg[i] = zArg;
294 azModuleArg[i+1] = 0;
drhb9bb7c12006-06-11 23:41:55 +0000295 }
danielk1977b7a2f2e2006-06-23 11:34:54 +0000296 pTable->azModuleArg = azModuleArg;
drhb9bb7c12006-06-11 23:41:55 +0000297}
298
299/*
300** The parser calls this routine when it first sees a CREATE VIRTUAL TABLE
301** statement. The module name has been parsed, but the optional list
302** of parameters that follow the module name are still pending.
303*/
304void sqlite3VtabBeginParse(
305 Parse *pParse, /* Parsing context */
306 Token *pName1, /* Name of new table, or database name */
307 Token *pName2, /* Name of new table or NULL */
drhb421b892012-01-28 19:41:53 +0000308 Token *pModuleName, /* Name of the module for the virtual table */
309 int ifNotExists /* No error if the table already exists */
drhb9bb7c12006-06-11 23:41:55 +0000310){
danielk1977f1a381e2006-06-16 08:01:02 +0000311 int iDb; /* The database the table is being created in */
drhb9bb7c12006-06-11 23:41:55 +0000312 Table *pTable; /* The new virtual table */
drh17435752007-08-16 04:30:38 +0000313 sqlite3 *db; /* Database connection */
drhb9bb7c12006-06-11 23:41:55 +0000314
drhb421b892012-01-28 19:41:53 +0000315 sqlite3StartTable(pParse, pName1, pName2, 0, 0, 1, ifNotExists);
drhb9bb7c12006-06-11 23:41:55 +0000316 pTable = pParse->pNewTable;
drh748ce212009-05-20 20:10:47 +0000317 if( pTable==0 ) return;
danielk1977f1a381e2006-06-16 08:01:02 +0000318 assert( 0==pTable->pIndex );
319
drh17435752007-08-16 04:30:38 +0000320 db = pParse->db;
321 iDb = sqlite3SchemaToIndex(db, pTable->pSchema);
danielk197770ba1642006-06-21 16:02:42 +0000322 assert( iDb>=0 );
323
drh7d10d5a2008-08-20 16:35:10 +0000324 pTable->tabFlags |= TF_Virtual;
drhb9bb7c12006-06-11 23:41:55 +0000325 pTable->nModuleArg = 0;
drh17435752007-08-16 04:30:38 +0000326 addModuleArgument(db, pTable, sqlite3NameFromToken(db, pModuleName));
327 addModuleArgument(db, pTable, sqlite3DbStrDup(db, db->aDb[iDb].zName));
328 addModuleArgument(db, pTable, sqlite3DbStrDup(db, pTable->zName));
drhb27b7f52008-12-10 18:03:45 +0000329 pParse->sNameToken.n = (int)(&pModuleName->z[pModuleName->n] - pName1->z);
danielk1977f1a381e2006-06-16 08:01:02 +0000330
331#ifndef SQLITE_OMIT_AUTHORIZATION
332 /* Creating a virtual table invokes the authorization callback twice.
333 ** The first invocation, to obtain permission to INSERT a row into the
334 ** sqlite_master table, has already been made by sqlite3StartTable().
335 ** The second call, to obtain permission to create the table, is made now.
336 */
danielk1977be718892006-06-23 08:05:19 +0000337 if( pTable->azModuleArg ){
338 sqlite3AuthCheck(pParse, SQLITE_CREATE_VTABLE, pTable->zName,
339 pTable->azModuleArg[0], pParse->db->aDb[iDb].zName);
danielk1977f1a381e2006-06-16 08:01:02 +0000340 }
341#endif
drhb9bb7c12006-06-11 23:41:55 +0000342}
343
344/*
345** This routine takes the module argument that has been accumulating
346** in pParse->zArg[] and appends it to the list of arguments on the
347** virtual table currently under construction in pParse->pTable.
348*/
349static void addArgumentToVtab(Parse *pParse){
drhb421b892012-01-28 19:41:53 +0000350 if( pParse->sArg.z && pParse->pNewTable ){
drh7c2d87c2006-09-02 14:16:59 +0000351 const char *z = (const char*)pParse->sArg.z;
danielk197733b39332006-06-24 08:51:05 +0000352 int n = pParse->sArg.n;
drh17435752007-08-16 04:30:38 +0000353 sqlite3 *db = pParse->db;
354 addModuleArgument(db, pParse->pNewTable, sqlite3DbStrNDup(db, z, n));
drhb9bb7c12006-06-11 23:41:55 +0000355 }
drhb9bb7c12006-06-11 23:41:55 +0000356}
357
358/*
359** The parser calls this routine after the CREATE VIRTUAL TABLE statement
360** has been completely parsed.
361*/
362void sqlite3VtabFinishParse(Parse *pParse, Token *pEnd){
danielk1977595a5232009-07-24 17:58:53 +0000363 Table *pTab = pParse->pNewTable; /* The table being constructed */
364 sqlite3 *db = pParse->db; /* The database connection */
drhb9bb7c12006-06-11 23:41:55 +0000365
danielk1977595a5232009-07-24 17:58:53 +0000366 if( pTab==0 ) return;
drhb9bb7c12006-06-11 23:41:55 +0000367 addArgumentToVtab(pParse);
danielk197733b39332006-06-24 08:51:05 +0000368 pParse->sArg.z = 0;
drhb9bb7c12006-06-11 23:41:55 +0000369 if( pTab->nModuleArg<1 ) return;
drhb9bb7c12006-06-11 23:41:55 +0000370
371 /* If the CREATE VIRTUAL TABLE statement is being entered for the
372 ** first time (in other words if the virtual table is actually being
373 ** created now instead of just being read out of sqlite_master) then
374 ** do additional initialization work and store the statement text
375 ** in the sqlite_master table.
376 */
377 if( !db->init.busy ){
378 char *zStmt;
danielk197778efaba2006-06-12 06:09:17 +0000379 char *zWhere;
drhb9bb7c12006-06-11 23:41:55 +0000380 int iDb;
381 Vdbe *v;
drhb9bb7c12006-06-11 23:41:55 +0000382
383 /* Compute the complete text of the CREATE VIRTUAL TABLE statement */
384 if( pEnd ){
drhb27b7f52008-12-10 18:03:45 +0000385 pParse->sNameToken.n = (int)(pEnd->z - pParse->sNameToken.z) + pEnd->n;
drhb9bb7c12006-06-11 23:41:55 +0000386 }
danielk19771e536952007-08-16 10:09:01 +0000387 zStmt = sqlite3MPrintf(db, "CREATE VIRTUAL TABLE %T", &pParse->sNameToken);
drhb9bb7c12006-06-11 23:41:55 +0000388
389 /* A slot for the record has already been allocated in the
390 ** SQLITE_MASTER table. We just need to update that slot with all
danielk197778efaba2006-06-12 06:09:17 +0000391 ** the information we've collected.
392 **
drhb7654112008-01-12 12:48:07 +0000393 ** The VM register number pParse->regRowid holds the rowid of an
394 ** entry in the sqlite_master table tht was created for this vtab
395 ** by sqlite3StartTable().
drhb9bb7c12006-06-11 23:41:55 +0000396 */
397 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
398 sqlite3NestedParse(pParse,
399 "UPDATE %Q.%s "
danielk197778efaba2006-06-12 06:09:17 +0000400 "SET type='table', name=%Q, tbl_name=%Q, rootpage=0, sql=%Q "
drhb7654112008-01-12 12:48:07 +0000401 "WHERE rowid=#%d",
drhb9bb7c12006-06-11 23:41:55 +0000402 db->aDb[iDb].zName, SCHEMA_TABLE(iDb),
403 pTab->zName,
404 pTab->zName,
drhb7654112008-01-12 12:48:07 +0000405 zStmt,
406 pParse->regRowid
drhb9bb7c12006-06-11 23:41:55 +0000407 );
drh633e6d52008-07-28 19:34:53 +0000408 sqlite3DbFree(db, zStmt);
drhb9bb7c12006-06-11 23:41:55 +0000409 v = sqlite3GetVdbe(pParse);
drh9cbf3422008-01-17 16:22:13 +0000410 sqlite3ChangeCookie(pParse, iDb);
danielk197778efaba2006-06-12 06:09:17 +0000411
drh66a51672008-01-03 00:01:23 +0000412 sqlite3VdbeAddOp2(v, OP_Expire, 0, 0);
dan39f1bcb2010-09-29 07:16:46 +0000413 zWhere = sqlite3MPrintf(db, "name='%q' AND type='table'", pTab->zName);
drh5d9c9da2011-06-03 20:11:17 +0000414 sqlite3VdbeAddParseSchemaOp(v, iDb, zWhere);
drh66a51672008-01-03 00:01:23 +0000415 sqlite3VdbeAddOp4(v, OP_VCreate, iDb, 0, 0,
drhea678832008-12-10 19:26:22 +0000416 pTab->zName, sqlite3Strlen30(pTab->zName) + 1);
drhb9bb7c12006-06-11 23:41:55 +0000417 }
418
danielk197778efaba2006-06-12 06:09:17 +0000419 /* If we are rereading the sqlite_master table create the in-memory
danielk1977595a5232009-07-24 17:58:53 +0000420 ** record of the table. The xConnect() method is not called until
421 ** the first time the virtual table is used in an SQL statement. This
422 ** allows a schema that contains virtual tables to be loaded before
423 ** the required virtual table implementations are registered. */
danielk197778efaba2006-06-12 06:09:17 +0000424 else {
danielk197778efaba2006-06-12 06:09:17 +0000425 Table *pOld;
426 Schema *pSchema = pTab->pSchema;
427 const char *zName = pTab->zName;
drha83ccca2009-04-28 13:01:09 +0000428 int nName = sqlite3Strlen30(zName);
drh21206082011-04-04 18:22:02 +0000429 assert( sqlite3SchemaMutexHeld(db, 0, pSchema) );
danielk197778efaba2006-06-12 06:09:17 +0000430 pOld = sqlite3HashInsert(&pSchema->tblHash, zName, nName, pTab);
431 if( pOld ){
danielk1977a1644fd2007-08-29 12:31:25 +0000432 db->mallocFailed = 1;
danielk197778efaba2006-06-12 06:09:17 +0000433 assert( pTab==pOld ); /* Malloc must have failed inside HashInsert() */
434 return;
435 }
danielk19777e6ebfb2006-06-12 11:24:37 +0000436 pParse->pNewTable = 0;
drhb9bb7c12006-06-11 23:41:55 +0000437 }
438}
439
440/*
441** The parser calls this routine when it sees the first token
442** of an argument to the module name in a CREATE VIRTUAL TABLE statement.
443*/
444void sqlite3VtabArgInit(Parse *pParse){
445 addArgumentToVtab(pParse);
danielk197733b39332006-06-24 08:51:05 +0000446 pParse->sArg.z = 0;
447 pParse->sArg.n = 0;
drhb9bb7c12006-06-11 23:41:55 +0000448}
449
450/*
451** The parser calls this routine for each token after the first token
452** in an argument to the module name in a CREATE VIRTUAL TABLE statement.
453*/
454void sqlite3VtabArgExtend(Parse *pParse, Token *p){
danielk197733b39332006-06-24 08:51:05 +0000455 Token *pArg = &pParse->sArg;
456 if( pArg->z==0 ){
457 pArg->z = p->z;
458 pArg->n = p->n;
459 }else{
460 assert(pArg->z < p->z);
drhb27b7f52008-12-10 18:03:45 +0000461 pArg->n = (int)(&p->z[p->n] - pArg->z);
drhb9bb7c12006-06-11 23:41:55 +0000462 }
drhb9bb7c12006-06-11 23:41:55 +0000463}
464
danielk197778efaba2006-06-12 06:09:17 +0000465/*
danielk19779da9d472006-06-14 06:58:15 +0000466** Invoke a virtual table constructor (either xCreate or xConnect). The
467** pointer to the function to invoke is passed as the fourth parameter
468** to this procedure.
469*/
470static int vtabCallConstructor(
471 sqlite3 *db,
472 Table *pTab,
danielk1977d1ab1ba2006-06-15 04:28:13 +0000473 Module *pMod,
drhe4102962006-09-11 00:34:22 +0000474 int (*xConstruct)(sqlite3*,void*,int,const char*const*,sqlite3_vtab**,char**),
danielk19779da9d472006-06-14 06:58:15 +0000475 char **pzErr
476){
drh92505812012-04-26 22:47:20 +0000477 VtabCtx sCtx, *pPriorCtx;
danielk1977595a5232009-07-24 17:58:53 +0000478 VTable *pVTable;
danielk19779da9d472006-06-14 06:58:15 +0000479 int rc;
drhe4102962006-09-11 00:34:22 +0000480 const char *const*azArg = (const char *const*)pTab->azModuleArg;
danielk19779da9d472006-06-14 06:58:15 +0000481 int nArg = pTab->nModuleArg;
drh4ca8aac2006-09-10 17:31:58 +0000482 char *zErr = 0;
danielk19771e536952007-08-16 10:09:01 +0000483 char *zModuleName = sqlite3MPrintf(db, "%s", pTab->zName);
danielk19779da9d472006-06-14 06:58:15 +0000484
danielk197701256832007-04-18 14:24:32 +0000485 if( !zModuleName ){
486 return SQLITE_NOMEM;
487 }
488
danielk1977595a5232009-07-24 17:58:53 +0000489 pVTable = sqlite3DbMallocZero(db, sizeof(VTable));
490 if( !pVTable ){
491 sqlite3DbFree(db, zModuleName);
492 return SQLITE_NOMEM;
493 }
494 pVTable->db = db;
495 pVTable->pMod = pMod;
496
danielk1977595a5232009-07-24 17:58:53 +0000497 /* Invoke the virtual table constructor */
danb061d052011-04-25 18:49:57 +0000498 assert( &db->pVtabCtx );
499 assert( xConstruct );
500 sCtx.pTab = pTab;
501 sCtx.pVTable = pVTable;
drh92505812012-04-26 22:47:20 +0000502 pPriorCtx = db->pVtabCtx;
danb061d052011-04-25 18:49:57 +0000503 db->pVtabCtx = &sCtx;
danielk1977595a5232009-07-24 17:58:53 +0000504 rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr);
drh92505812012-04-26 22:47:20 +0000505 db->pVtabCtx = pPriorCtx;
drh55f04f22009-05-11 23:37:59 +0000506 if( rc==SQLITE_NOMEM ) db->mallocFailed = 1;
danielk19779da9d472006-06-14 06:58:15 +0000507
508 if( SQLITE_OK!=rc ){
drh4ca8aac2006-09-10 17:31:58 +0000509 if( zErr==0 ){
danielk19771e536952007-08-16 10:09:01 +0000510 *pzErr = sqlite3MPrintf(db, "vtable constructor failed: %s", zModuleName);
drh4ca8aac2006-09-10 17:31:58 +0000511 }else {
danielk19771e536952007-08-16 10:09:01 +0000512 *pzErr = sqlite3MPrintf(db, "%s", zErr);
drhb9755982010-07-24 16:34:37 +0000513 sqlite3_free(zErr);
drhfe1368e2006-09-10 17:08:29 +0000514 }
danielk1977595a5232009-07-24 17:58:53 +0000515 sqlite3DbFree(db, pVTable);
516 }else if( ALWAYS(pVTable->pVtab) ){
517 /* Justification of ALWAYS(): A correct vtab constructor must allocate
518 ** the sqlite3_vtab object if successful. */
519 pVTable->pVtab->pModule = pMod->pModule;
520 pVTable->nRef = 1;
danb061d052011-04-25 18:49:57 +0000521 if( sCtx.pTab ){
danielk1977595a5232009-07-24 17:58:53 +0000522 const char *zFormat = "vtable constructor did not declare schema: %s";
523 *pzErr = sqlite3MPrintf(db, zFormat, pTab->zName);
524 sqlite3VtabUnlock(pVTable);
525 rc = SQLITE_ERROR;
526 }else{
527 int iCol;
528 /* If everything went according to plan, link the new VTable structure
529 ** into the linked list headed by pTab->pVTable. Then loop through the
530 ** columns of the table to see if any of them contain the token "hidden".
531 ** If so, set the Column.isHidden flag and remove the token from
532 ** the type string. */
533 pVTable->pNext = pTab->pVTable;
534 pTab->pVTable = pVTable;
danielk1977034ca142007-06-26 10:38:54 +0000535
danielk1977595a5232009-07-24 17:58:53 +0000536 for(iCol=0; iCol<pTab->nCol; iCol++){
537 char *zType = pTab->aCol[iCol].zType;
538 int nType;
539 int i = 0;
540 if( !zType ) continue;
541 nType = sqlite3Strlen30(zType);
542 if( sqlite3StrNICmp("hidden", zType, 6)||(zType[6] && zType[6]!=' ') ){
543 for(i=0; i<nType; i++){
544 if( (0==sqlite3StrNICmp(" hidden", &zType[i], 7))
545 && (zType[i+7]=='\0' || zType[i+7]==' ')
546 ){
547 i++;
548 break;
549 }
danielk1977034ca142007-06-26 10:38:54 +0000550 }
551 }
danielk1977595a5232009-07-24 17:58:53 +0000552 if( i<nType ){
553 int j;
554 int nDel = 6 + (zType[i+6] ? 1 : 0);
555 for(j=i; (j+nDel)<=nType; j++){
556 zType[j] = zType[j+nDel];
557 }
558 if( zType[i]=='\0' && i>0 ){
559 assert(zType[i-1]==' ');
560 zType[i-1] = '\0';
561 }
562 pTab->aCol[iCol].isHidden = 1;
danielk1977034ca142007-06-26 10:38:54 +0000563 }
danielk1977034ca142007-06-26 10:38:54 +0000564 }
565 }
566 }
danielk1977595a5232009-07-24 17:58:53 +0000567
568 sqlite3DbFree(db, zModuleName);
danielk19779da9d472006-06-14 06:58:15 +0000569 return rc;
570}
571
572/*
danielk19777e6ebfb2006-06-12 11:24:37 +0000573** This function is invoked by the parser to call the xConnect() method
danielk1977fe3fcbe22006-06-12 12:08:45 +0000574** of the virtual table pTab. If an error occurs, an error code is returned
575** and an error left in pParse.
576**
577** This call is a no-op if table pTab is not a virtual table.
danielk19777e6ebfb2006-06-12 11:24:37 +0000578*/
579int sqlite3VtabCallConnect(Parse *pParse, Table *pTab){
danielk1977595a5232009-07-24 17:58:53 +0000580 sqlite3 *db = pParse->db;
581 const char *zMod;
danielk1977d1ab1ba2006-06-15 04:28:13 +0000582 Module *pMod;
danielk1977595a5232009-07-24 17:58:53 +0000583 int rc;
danielk19777e6ebfb2006-06-12 11:24:37 +0000584
drh748ce212009-05-20 20:10:47 +0000585 assert( pTab );
danielk1977595a5232009-07-24 17:58:53 +0000586 if( (pTab->tabFlags & TF_Virtual)==0 || sqlite3GetVTable(db, pTab) ){
danielk19777e6ebfb2006-06-12 11:24:37 +0000587 return SQLITE_OK;
588 }
589
danielk1977595a5232009-07-24 17:58:53 +0000590 /* Locate the required virtual table module */
591 zMod = pTab->azModuleArg[0];
592 pMod = (Module*)sqlite3HashFind(&db->aModule, zMod, sqlite3Strlen30(zMod));
593
danielk1977d1ab1ba2006-06-15 04:28:13 +0000594 if( !pMod ){
danielk19777e6ebfb2006-06-12 11:24:37 +0000595 const char *zModule = pTab->azModuleArg[0];
danielk1977a4e76362006-06-14 06:31:28 +0000596 sqlite3ErrorMsg(pParse, "no such module: %s", zModule);
danielk19777e6ebfb2006-06-12 11:24:37 +0000597 rc = SQLITE_ERROR;
danielk1977595a5232009-07-24 17:58:53 +0000598 }else{
danielk19779da9d472006-06-14 06:58:15 +0000599 char *zErr = 0;
danielk1977d1ab1ba2006-06-15 04:28:13 +0000600 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xConnect, &zErr);
danielk19779da9d472006-06-14 06:58:15 +0000601 if( rc!=SQLITE_OK ){
602 sqlite3ErrorMsg(pParse, "%s", zErr);
danielk19777e6ebfb2006-06-12 11:24:37 +0000603 }
drh633e6d52008-07-28 19:34:53 +0000604 sqlite3DbFree(db, zErr);
danielk19777e6ebfb2006-06-12 11:24:37 +0000605 }
606
607 return rc;
608}
danielk19779da9d472006-06-14 06:58:15 +0000609/*
dan2cac2072011-05-25 18:46:22 +0000610** Grow the db->aVTrans[] array so that there is room for at least one
611** more v-table. Return SQLITE_NOMEM if a malloc fails, or SQLITE_OK otherwise.
danielk1977e7ff4032006-06-17 11:30:32 +0000612*/
dan2cac2072011-05-25 18:46:22 +0000613static int growVTrans(sqlite3 *db){
danielk1977e7ff4032006-06-17 11:30:32 +0000614 const int ARRAY_INCR = 5;
615
616 /* Grow the sqlite3.aVTrans array if required */
617 if( (db->nVTrans%ARRAY_INCR)==0 ){
danielk1977595a5232009-07-24 17:58:53 +0000618 VTable **aVTrans;
danielk1977e7ff4032006-06-17 11:30:32 +0000619 int nBytes = sizeof(sqlite3_vtab *) * (db->nVTrans + ARRAY_INCR);
danielk197726783a52007-08-29 14:06:22 +0000620 aVTrans = sqlite3DbRealloc(db, (void *)db->aVTrans, nBytes);
danielk1977e7ff4032006-06-17 11:30:32 +0000621 if( !aVTrans ){
622 return SQLITE_NOMEM;
623 }
624 memset(&aVTrans[db->nVTrans], 0, sizeof(sqlite3_vtab *)*ARRAY_INCR);
625 db->aVTrans = aVTrans;
626 }
627
dan2cac2072011-05-25 18:46:22 +0000628 return SQLITE_OK;
629}
630
631/*
632** Add the virtual table pVTab to the array sqlite3.aVTrans[]. Space should
633** have already been reserved using growVTrans().
634*/
635static void addToVTrans(sqlite3 *db, VTable *pVTab){
danielk1977e7ff4032006-06-17 11:30:32 +0000636 /* Add pVtab to the end of sqlite3.aVTrans */
danielk1977595a5232009-07-24 17:58:53 +0000637 db->aVTrans[db->nVTrans++] = pVTab;
638 sqlite3VtabLock(pVTab);
danielk1977e7ff4032006-06-17 11:30:32 +0000639}
640
641/*
danielk19779da9d472006-06-14 06:58:15 +0000642** This function is invoked by the vdbe to call the xCreate method
643** of the virtual table named zTab in database iDb.
644**
645** If an error occurs, *pzErr is set to point an an English language
646** description of the error and an SQLITE_XXX error code is returned.
drh633e6d52008-07-28 19:34:53 +0000647** In this case the caller must call sqlite3DbFree(db, ) on *pzErr.
danielk19779da9d472006-06-14 06:58:15 +0000648*/
649int sqlite3VtabCallCreate(sqlite3 *db, int iDb, const char *zTab, char **pzErr){
650 int rc = SQLITE_OK;
651 Table *pTab;
danielk1977d1ab1ba2006-06-15 04:28:13 +0000652 Module *pMod;
danielk1977595a5232009-07-24 17:58:53 +0000653 const char *zMod;
danielk19779da9d472006-06-14 06:58:15 +0000654
655 pTab = sqlite3FindTable(db, zTab, db->aDb[iDb].zName);
danielk1977595a5232009-07-24 17:58:53 +0000656 assert( pTab && (pTab->tabFlags & TF_Virtual)!=0 && !pTab->pVTable );
657
658 /* Locate the required virtual table module */
659 zMod = pTab->azModuleArg[0];
660 pMod = (Module*)sqlite3HashFind(&db->aModule, zMod, sqlite3Strlen30(zMod));
danielk19779da9d472006-06-14 06:58:15 +0000661
662 /* If the module has been registered and includes a Create method,
663 ** invoke it now. If the module has not been registered, return an
664 ** error. Otherwise, do nothing.
665 */
danielk1977d1ab1ba2006-06-15 04:28:13 +0000666 if( !pMod ){
danielk1977595a5232009-07-24 17:58:53 +0000667 *pzErr = sqlite3MPrintf(db, "no such module: %s", zMod);
danielk19779da9d472006-06-14 06:58:15 +0000668 rc = SQLITE_ERROR;
669 }else{
danielk1977d1ab1ba2006-06-15 04:28:13 +0000670 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr);
danielk19779da9d472006-06-14 06:58:15 +0000671 }
672
drh748ce212009-05-20 20:10:47 +0000673 /* Justification of ALWAYS(): The xConstructor method is required to
674 ** create a valid sqlite3_vtab if it returns SQLITE_OK. */
danielk1977595a5232009-07-24 17:58:53 +0000675 if( rc==SQLITE_OK && ALWAYS(sqlite3GetVTable(db, pTab)) ){
dan2cac2072011-05-25 18:46:22 +0000676 rc = growVTrans(db);
677 if( rc==SQLITE_OK ){
678 addToVTrans(db, sqlite3GetVTable(db, pTab));
679 }
danielk1977e7ff4032006-06-17 11:30:32 +0000680 }
681
danielk19779da9d472006-06-14 06:58:15 +0000682 return rc;
683}
danielk1977be8a7832006-06-13 15:00:54 +0000684
685/*
danielk1977fe3fcbe22006-06-12 12:08:45 +0000686** This function is used to set the schema of a virtual table. It is only
687** valid to call this function from within the xCreate() or xConnect() of a
688** virtual table module.
689*/
danielk19777e6ebfb2006-06-12 11:24:37 +0000690int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable){
drhe98c9042009-06-02 21:31:38 +0000691 Parse *pParse;
danielk19777e6ebfb2006-06-12 11:24:37 +0000692
693 int rc = SQLITE_OK;
drh27641702007-08-22 02:56:42 +0000694 Table *pTab;
danielk19777e6ebfb2006-06-12 11:24:37 +0000695 char *zErr = 0;
696
drh27641702007-08-22 02:56:42 +0000697 sqlite3_mutex_enter(db->mutex);
dand9495cd2011-04-27 12:08:04 +0000698 if( !db->pVtabCtx || !(pTab = db->pVtabCtx->pTab) ){
danielk19777e6ebfb2006-06-12 11:24:37 +0000699 sqlite3Error(db, SQLITE_MISUSE, 0);
drh27641702007-08-22 02:56:42 +0000700 sqlite3_mutex_leave(db->mutex);
drh413c3d32010-02-23 20:11:56 +0000701 return SQLITE_MISUSE_BKPT;
danielk19777e6ebfb2006-06-12 11:24:37 +0000702 }
danielk1977595a5232009-07-24 17:58:53 +0000703 assert( (pTab->tabFlags & TF_Virtual)!=0 );
danielk19777e6ebfb2006-06-12 11:24:37 +0000704
drhe98c9042009-06-02 21:31:38 +0000705 pParse = sqlite3StackAllocZero(db, sizeof(*pParse));
706 if( pParse==0 ){
707 rc = SQLITE_NOMEM;
708 }else{
709 pParse->declareVtab = 1;
710 pParse->db = db;
drh8b307fb2010-04-06 15:57:05 +0000711 pParse->nQueryLoop = 1;
drhe98c9042009-06-02 21:31:38 +0000712
dan84db21e2009-12-08 19:05:53 +0000713 if( SQLITE_OK==sqlite3RunParser(pParse, zCreateTable, &zErr)
dan84db21e2009-12-08 19:05:53 +0000714 && pParse->pNewTable
drh0e3c5122009-12-08 22:16:15 +0000715 && !db->mallocFailed
dan84db21e2009-12-08 19:05:53 +0000716 && !pParse->pNewTable->pSelect
717 && (pParse->pNewTable->tabFlags & TF_Virtual)==0
drhe98c9042009-06-02 21:31:38 +0000718 ){
danielk1977595a5232009-07-24 17:58:53 +0000719 if( !pTab->aCol ){
720 pTab->aCol = pParse->pNewTable->aCol;
721 pTab->nCol = pParse->pNewTable->nCol;
722 pParse->pNewTable->nCol = 0;
723 pParse->pNewTable->aCol = 0;
724 }
danb061d052011-04-25 18:49:57 +0000725 db->pVtabCtx->pTab = 0;
dan84db21e2009-12-08 19:05:53 +0000726 }else{
dan06b5db02010-10-21 15:12:44 +0000727 sqlite3Error(db, SQLITE_ERROR, (zErr ? "%s" : 0), zErr);
dan78f9b732010-08-11 11:59:37 +0000728 sqlite3DbFree(db, zErr);
drhe98c9042009-06-02 21:31:38 +0000729 rc = SQLITE_ERROR;
730 }
731 pParse->declareVtab = 0;
732
733 if( pParse->pVdbe ){
734 sqlite3VdbeFinalize(pParse->pVdbe);
735 }
dan1feeaed2010-07-23 15:41:47 +0000736 sqlite3DeleteTable(db, pParse->pNewTable);
drhe98c9042009-06-02 21:31:38 +0000737 sqlite3StackFree(db, pParse);
danielk19777e6ebfb2006-06-12 11:24:37 +0000738 }
danielk19777e6ebfb2006-06-12 11:24:37 +0000739
drh4ac285a2006-09-15 07:28:50 +0000740 assert( (rc&0xff)==rc );
drh27641702007-08-22 02:56:42 +0000741 rc = sqlite3ApiExit(db, rc);
742 sqlite3_mutex_leave(db->mutex);
743 return rc;
danielk19777e6ebfb2006-06-12 11:24:37 +0000744}
745
746/*
danielk19779e39ce82006-06-12 16:01:21 +0000747** This function is invoked by the vdbe to call the xDestroy method
748** of the virtual table named zTab in database iDb. This occurs
749** when a DROP TABLE is mentioned.
750**
751** This call is a no-op if zTab is not a virtual table.
752*/
drh748ce212009-05-20 20:10:47 +0000753int sqlite3VtabCallDestroy(sqlite3 *db, int iDb, const char *zTab){
danielk19779e39ce82006-06-12 16:01:21 +0000754 int rc = SQLITE_OK;
755 Table *pTab;
danielk19779e39ce82006-06-12 16:01:21 +0000756
757 pTab = sqlite3FindTable(db, zTab, db->aDb[iDb].zName);
danielk1977595a5232009-07-24 17:58:53 +0000758 if( ALWAYS(pTab!=0 && pTab->pVTable!=0) ){
759 VTable *p = vtabDisconnectAll(db, pTab);
760
danielk19779e39ce82006-06-12 16:01:21 +0000761 assert( rc==SQLITE_OK );
danielk1977595a5232009-07-24 17:58:53 +0000762 rc = p->pMod->pModule->xDestroy(p->pVtab);
danielk1977595a5232009-07-24 17:58:53 +0000763
764 /* Remove the sqlite3_vtab* from the aVTrans[] array, if applicable */
danielk19779e39ce82006-06-12 16:01:21 +0000765 if( rc==SQLITE_OK ){
danielk1977595a5232009-07-24 17:58:53 +0000766 assert( pTab->pVTable==p && p->pNext==0 );
767 p->pVtab = 0;
768 pTab->pVTable = 0;
769 sqlite3VtabUnlock(p);
danielk19779e39ce82006-06-12 16:01:21 +0000770 }
771 }
772
773 return rc;
774}
775
danielk1977f9e7dda2006-06-16 16:08:53 +0000776/*
danielk1977e7ff4032006-06-17 11:30:32 +0000777** This function invokes either the xRollback or xCommit method
778** of each of the virtual tables in the sqlite3.aVTrans array. The method
779** called is identified by the second argument, "offset", which is
780** the offset of the method to call in the sqlite3_module structure.
781**
782** The array is cleared after invoking the callbacks.
783*/
drh7209c692008-04-27 18:40:11 +0000784static void callFinaliser(sqlite3 *db, int offset){
danielk1977e7ff4032006-06-17 11:30:32 +0000785 int i;
danielk19770b83fa82007-04-19 14:48:37 +0000786 if( db->aVTrans ){
drh748ce212009-05-20 20:10:47 +0000787 for(i=0; i<db->nVTrans; i++){
danielk1977595a5232009-07-24 17:58:53 +0000788 VTable *pVTab = db->aVTrans[i];
789 sqlite3_vtab *p = pVTab->pVtab;
790 if( p ){
791 int (*x)(sqlite3_vtab *);
792 x = *(int (**)(sqlite3_vtab *))((char *)p->pModule + offset);
793 if( x ) x(p);
794 }
drh346506f2011-05-25 01:16:42 +0000795 pVTab->iSavepoint = 0;
danielk1977595a5232009-07-24 17:58:53 +0000796 sqlite3VtabUnlock(pVTab);
danielk19770b83fa82007-04-19 14:48:37 +0000797 }
drh633e6d52008-07-28 19:34:53 +0000798 sqlite3DbFree(db, db->aVTrans);
danielk19770b83fa82007-04-19 14:48:37 +0000799 db->nVTrans = 0;
800 db->aVTrans = 0;
danielk1977e7ff4032006-06-17 11:30:32 +0000801 }
danielk1977e7ff4032006-06-17 11:30:32 +0000802}
803
804/*
danielk19773e3a84d2008-08-01 17:37:40 +0000805** Invoke the xSync method of all virtual tables in the sqlite3.aVTrans
806** array. Return the error code for the first error that occurs, or
807** SQLITE_OK if all xSync operations are successful.
808**
809** Set *pzErrmsg to point to a buffer that should be released using
810** sqlite3DbFree() containing an error message, if one is available.
danielk1977f9e7dda2006-06-16 16:08:53 +0000811*/
danielk19773e3a84d2008-08-01 17:37:40 +0000812int sqlite3VtabSync(sqlite3 *db, char **pzErrmsg){
danielk1977e7ff4032006-06-17 11:30:32 +0000813 int i;
814 int rc = SQLITE_OK;
danielk1977595a5232009-07-24 17:58:53 +0000815 VTable **aVTrans = db->aVTrans;
danielk197720b1eaf2006-07-26 16:22:14 +0000816
danielk197720b1eaf2006-07-26 16:22:14 +0000817 db->aVTrans = 0;
drh748ce212009-05-20 20:10:47 +0000818 for(i=0; rc==SQLITE_OK && i<db->nVTrans; i++){
danielk1977e7ff4032006-06-17 11:30:32 +0000819 int (*x)(sqlite3_vtab *);
danielk1977595a5232009-07-24 17:58:53 +0000820 sqlite3_vtab *pVtab = aVTrans[i]->pVtab;
821 if( pVtab && (x = pVtab->pModule->xSync)!=0 ){
danielk1977e7ff4032006-06-17 11:30:32 +0000822 rc = x(pVtab);
danielk19773e3a84d2008-08-01 17:37:40 +0000823 sqlite3DbFree(db, *pzErrmsg);
drhb9755982010-07-24 16:34:37 +0000824 *pzErrmsg = sqlite3DbStrDup(db, pVtab->zErrMsg);
825 sqlite3_free(pVtab->zErrMsg);
danielk1977e7ff4032006-06-17 11:30:32 +0000826 }
827 }
danielk197720b1eaf2006-07-26 16:22:14 +0000828 db->aVTrans = aVTrans;
danielk1977e7ff4032006-06-17 11:30:32 +0000829 return rc;
danielk1977f9e7dda2006-06-16 16:08:53 +0000830}
831
832/*
833** Invoke the xRollback method of all virtual tables in the
834** sqlite3.aVTrans array. Then clear the array itself.
835*/
836int sqlite3VtabRollback(sqlite3 *db){
drh7209c692008-04-27 18:40:11 +0000837 callFinaliser(db, offsetof(sqlite3_module,xRollback));
danielk1977e7ff4032006-06-17 11:30:32 +0000838 return SQLITE_OK;
danielk1977f9e7dda2006-06-16 16:08:53 +0000839}
840
841/*
842** Invoke the xCommit method of all virtual tables in the
843** sqlite3.aVTrans array. Then clear the array itself.
844*/
845int sqlite3VtabCommit(sqlite3 *db){
drh7209c692008-04-27 18:40:11 +0000846 callFinaliser(db, offsetof(sqlite3_module,xCommit));
danielk1977e7ff4032006-06-17 11:30:32 +0000847 return SQLITE_OK;
danielk1977f9e7dda2006-06-16 16:08:53 +0000848}
849
850/*
851** If the virtual table pVtab supports the transaction interface
852** (xBegin/xRollback/xCommit and optionally xSync) and a transaction is
853** not currently open, invoke the xBegin method now.
854**
855** If the xBegin call is successful, place the sqlite3_vtab pointer
856** in the sqlite3.aVTrans array.
857*/
danielk1977595a5232009-07-24 17:58:53 +0000858int sqlite3VtabBegin(sqlite3 *db, VTable *pVTab){
danielk1977f9e7dda2006-06-16 16:08:53 +0000859 int rc = SQLITE_OK;
danielk197720b1eaf2006-07-26 16:22:14 +0000860 const sqlite3_module *pModule;
861
862 /* Special case: If db->aVTrans is NULL and db->nVTrans is greater
863 ** than zero, then this function is being called from within a
864 ** virtual module xSync() callback. It is illegal to write to
drh748ce212009-05-20 20:10:47 +0000865 ** virtual module tables in this case, so return SQLITE_LOCKED.
danielk197720b1eaf2006-07-26 16:22:14 +0000866 */
danielk1977093e0f62008-11-13 18:00:14 +0000867 if( sqlite3VtabInSync(db) ){
danielk197720b1eaf2006-07-26 16:22:14 +0000868 return SQLITE_LOCKED;
869 }
danielk1977595a5232009-07-24 17:58:53 +0000870 if( !pVTab ){
danielk197720b1eaf2006-07-26 16:22:14 +0000871 return SQLITE_OK;
872 }
danielk1977595a5232009-07-24 17:58:53 +0000873 pModule = pVTab->pVtab->pModule;
danielk197720b1eaf2006-07-26 16:22:14 +0000874
danielk1977f9e7dda2006-06-16 16:08:53 +0000875 if( pModule->xBegin ){
876 int i;
877
878 /* If pVtab is already in the aVTrans array, return early */
drh748ce212009-05-20 20:10:47 +0000879 for(i=0; i<db->nVTrans; i++){
danielk1977595a5232009-07-24 17:58:53 +0000880 if( db->aVTrans[i]==pVTab ){
danielk1977f9e7dda2006-06-16 16:08:53 +0000881 return SQLITE_OK;
882 }
883 }
884
dan2cac2072011-05-25 18:46:22 +0000885 /* Invoke the xBegin method. If successful, add the vtab to the
886 ** sqlite3.aVTrans[] array. */
887 rc = growVTrans(db);
danielk19773e3a84d2008-08-01 17:37:40 +0000888 if( rc==SQLITE_OK ){
dan2cac2072011-05-25 18:46:22 +0000889 rc = pModule->xBegin(pVTab->pVtab);
890 if( rc==SQLITE_OK ){
891 addToVTrans(db, pVTab);
892 }
danielk1977f9e7dda2006-06-16 16:08:53 +0000893 }
danielk1977f9e7dda2006-06-16 16:08:53 +0000894 }
895 return rc;
896}
897
dand9495cd2011-04-27 12:08:04 +0000898/*
899** Invoke either the xSavepoint, xRollbackTo or xRelease method of all
900** virtual tables that currently have an open transaction. Pass iSavepoint
901** as the second argument to the virtual table method invoked.
902**
903** If op is SAVEPOINT_BEGIN, the xSavepoint method is invoked. If it is
904** SAVEPOINT_ROLLBACK, the xRollbackTo method. Otherwise, if op is
905** SAVEPOINT_RELEASE, then the xRelease method of each virtual table with
906** an open transaction is invoked.
907**
908** If any virtual table method returns an error code other than SQLITE_OK,
909** processing is abandoned and the error returned to the caller of this
910** function immediately. If all calls to virtual table methods are successful,
911** SQLITE_OK is returned.
912*/
dana311b802011-04-26 19:21:34 +0000913int sqlite3VtabSavepoint(sqlite3 *db, int op, int iSavepoint){
dana311b802011-04-26 19:21:34 +0000914 int rc = SQLITE_OK;
915
916 assert( op==SAVEPOINT_RELEASE||op==SAVEPOINT_ROLLBACK||op==SAVEPOINT_BEGIN );
drh346506f2011-05-25 01:16:42 +0000917 assert( iSavepoint>=0 );
dand9495cd2011-04-27 12:08:04 +0000918 if( db->aVTrans ){
919 int i;
920 for(i=0; rc==SQLITE_OK && i<db->nVTrans; i++){
drhe4855222011-05-24 15:36:01 +0000921 VTable *pVTab = db->aVTrans[i];
922 const sqlite3_module *pMod = pVTab->pMod->pModule;
dan341cade2011-10-29 11:43:04 +0000923 if( pVTab->pVtab && pMod->iVersion>=2 ){
dand9495cd2011-04-27 12:08:04 +0000924 int (*xMethod)(sqlite3_vtab *, int);
925 switch( op ){
926 case SAVEPOINT_BEGIN:
927 xMethod = pMod->xSavepoint;
drh346506f2011-05-25 01:16:42 +0000928 pVTab->iSavepoint = iSavepoint+1;
dand9495cd2011-04-27 12:08:04 +0000929 break;
930 case SAVEPOINT_ROLLBACK:
931 xMethod = pMod->xRollbackTo;
932 break;
933 default:
934 xMethod = pMod->xRelease;
935 break;
936 }
drh346506f2011-05-25 01:16:42 +0000937 if( xMethod && pVTab->iSavepoint>iSavepoint ){
dan341cade2011-10-29 11:43:04 +0000938 rc = xMethod(pVTab->pVtab, iSavepoint);
drh346506f2011-05-25 01:16:42 +0000939 }
dana311b802011-04-26 19:21:34 +0000940 }
941 }
942 }
943 return rc;
944}
945
drhb7f6f682006-07-08 17:06:43 +0000946/*
947** The first parameter (pDef) is a function implementation. The
948** second parameter (pExpr) is the first argument to this function.
949** If pExpr is a column in a virtual table, then let the virtual
950** table implementation have an opportunity to overload the function.
951**
952** This routine is used to allow virtual table implementations to
953** overload MATCH, LIKE, GLOB, and REGEXP operators.
954**
955** Return either the pDef argument (indicating no change) or a
956** new FuncDef structure that is marked as ephemeral using the
957** SQLITE_FUNC_EPHEM flag.
958*/
959FuncDef *sqlite3VtabOverloadFunction(
drh17435752007-08-16 04:30:38 +0000960 sqlite3 *db, /* Database connection for reporting malloc problems */
drhb7f6f682006-07-08 17:06:43 +0000961 FuncDef *pDef, /* Function to possibly overload */
962 int nArg, /* Number of arguments to the function */
963 Expr *pExpr /* First argument to the function */
964){
965 Table *pTab;
966 sqlite3_vtab *pVtab;
967 sqlite3_module *pMod;
drhdc5ea5c2008-12-10 17:19:59 +0000968 void (*xFunc)(sqlite3_context*,int,sqlite3_value**) = 0;
969 void *pArg = 0;
drhb7f6f682006-07-08 17:06:43 +0000970 FuncDef *pNew;
drh777b17a2007-09-20 10:02:54 +0000971 int rc = 0;
drha70034d2006-09-18 20:24:02 +0000972 char *zLowerName;
973 unsigned char *z;
974
drhb7f6f682006-07-08 17:06:43 +0000975
976 /* Check to see the left operand is a column in a virtual table */
drh748ce212009-05-20 20:10:47 +0000977 if( NEVER(pExpr==0) ) return pDef;
drhb7f6f682006-07-08 17:06:43 +0000978 if( pExpr->op!=TK_COLUMN ) return pDef;
979 pTab = pExpr->pTab;
drh748ce212009-05-20 20:10:47 +0000980 if( NEVER(pTab==0) ) return pDef;
drh7d10d5a2008-08-20 16:35:10 +0000981 if( (pTab->tabFlags & TF_Virtual)==0 ) return pDef;
danielk1977595a5232009-07-24 17:58:53 +0000982 pVtab = sqlite3GetVTable(db, pTab)->pVtab;
drhb7f6f682006-07-08 17:06:43 +0000983 assert( pVtab!=0 );
984 assert( pVtab->pModule!=0 );
danielk19775bd270b2006-07-25 15:14:52 +0000985 pMod = (sqlite3_module *)pVtab->pModule;
drhb7f6f682006-07-08 17:06:43 +0000986 if( pMod->xFindFunction==0 ) return pDef;
987
rseb72e88d2007-09-20 11:32:18 +0000988 /* Call the xFindFunction method on the virtual table implementation
drha70034d2006-09-18 20:24:02 +0000989 ** to see if the implementation wants to overload this function
990 */
drh17435752007-08-16 04:30:38 +0000991 zLowerName = sqlite3DbStrDup(db, pDef->zName);
992 if( zLowerName ){
993 for(z=(unsigned char*)zLowerName; *z; z++){
994 *z = sqlite3UpperToLower[*z];
995 }
996 rc = pMod->xFindFunction(pVtab, nArg, zLowerName, &xFunc, &pArg);
drh633e6d52008-07-28 19:34:53 +0000997 sqlite3DbFree(db, zLowerName);
drha70034d2006-09-18 20:24:02 +0000998 }
drha70034d2006-09-18 20:24:02 +0000999 if( rc==0 ){
drhb7f6f682006-07-08 17:06:43 +00001000 return pDef;
1001 }
1002
1003 /* Create a new ephemeral function definition for the overloaded
1004 ** function */
drhea678832008-12-10 19:26:22 +00001005 pNew = sqlite3DbMallocZero(db, sizeof(*pNew)
danielk1977e25a50b2009-07-01 18:04:20 +00001006 + sqlite3Strlen30(pDef->zName) + 1);
drhb7f6f682006-07-08 17:06:43 +00001007 if( pNew==0 ){
1008 return pDef;
1009 }
1010 *pNew = *pDef;
danielk19778c0a7912008-08-20 14:49:23 +00001011 pNew->zName = (char *)&pNew[1];
drhea678832008-12-10 19:26:22 +00001012 memcpy(pNew->zName, pDef->zName, sqlite3Strlen30(pDef->zName)+1);
drhb7f6f682006-07-08 17:06:43 +00001013 pNew->xFunc = xFunc;
1014 pNew->pUserData = pArg;
drhb7f6f682006-07-08 17:06:43 +00001015 pNew->flags |= SQLITE_FUNC_EPHEM;
1016 return pNew;
1017}
1018
drh4f3dd152008-04-28 18:46:43 +00001019/*
1020** Make sure virtual table pTab is contained in the pParse->apVirtualLock[]
1021** array so that an OP_VBegin will get generated for it. Add pTab to the
1022** array if it is missing. If pTab is already in the array, this routine
1023** is a no-op.
1024*/
1025void sqlite3VtabMakeWritable(Parse *pParse, Table *pTab){
dan65a7cd12009-09-01 12:16:01 +00001026 Parse *pToplevel = sqlite3ParseToplevel(pParse);
drh4f3dd152008-04-28 18:46:43 +00001027 int i, n;
drh748ce212009-05-20 20:10:47 +00001028 Table **apVtabLock;
1029
drh4f3dd152008-04-28 18:46:43 +00001030 assert( IsVirtual(pTab) );
dan65a7cd12009-09-01 12:16:01 +00001031 for(i=0; i<pToplevel->nVtabLock; i++){
1032 if( pTab==pToplevel->apVtabLock[i] ) return;
drh4f3dd152008-04-28 18:46:43 +00001033 }
dan65a7cd12009-09-01 12:16:01 +00001034 n = (pToplevel->nVtabLock+1)*sizeof(pToplevel->apVtabLock[0]);
1035 apVtabLock = sqlite3_realloc(pToplevel->apVtabLock, n);
drh748ce212009-05-20 20:10:47 +00001036 if( apVtabLock ){
dan65a7cd12009-09-01 12:16:01 +00001037 pToplevel->apVtabLock = apVtabLock;
1038 pToplevel->apVtabLock[pToplevel->nVtabLock++] = pTab;
drh344c38e2008-05-05 13:23:04 +00001039 }else{
dan65a7cd12009-09-01 12:16:01 +00001040 pToplevel->db->mallocFailed = 1;
drh4f3dd152008-04-28 18:46:43 +00001041 }
1042}
1043
drhef45bb72011-05-05 15:39:50 +00001044/*
1045** Return the ON CONFLICT resolution mode in effect for the virtual
1046** table update operation currently in progress.
1047**
1048** The results of this routine are undefined unless it is called from
1049** within an xUpdate method.
1050*/
danb061d052011-04-25 18:49:57 +00001051int sqlite3_vtab_on_conflict(sqlite3 *db){
drhef45bb72011-05-05 15:39:50 +00001052 static const unsigned char aMap[] = {
drh87f67bf2011-05-05 17:41:58 +00001053 SQLITE_ROLLBACK, SQLITE_ABORT, SQLITE_FAIL, SQLITE_IGNORE, SQLITE_REPLACE
danb061d052011-04-25 18:49:57 +00001054 };
1055 assert( OE_Rollback==1 && OE_Abort==2 && OE_Fail==3 );
1056 assert( OE_Ignore==4 && OE_Replace==5 );
1057 assert( db->vtabOnConflict>=1 && db->vtabOnConflict<=5 );
drhef45bb72011-05-05 15:39:50 +00001058 return (int)aMap[db->vtabOnConflict-1];
danb061d052011-04-25 18:49:57 +00001059}
1060
drhef45bb72011-05-05 15:39:50 +00001061/*
1062** Call from within the xCreate() or xConnect() methods to provide
1063** the SQLite core with additional information about the behavior
1064** of the virtual table being implemented.
1065*/
danb061d052011-04-25 18:49:57 +00001066int sqlite3_vtab_config(sqlite3 *db, int op, ...){
1067 va_list ap;
1068 int rc = SQLITE_OK;
1069
1070 sqlite3_mutex_enter(db->mutex);
1071
1072 va_start(ap, op);
1073 switch( op ){
1074 case SQLITE_VTAB_CONSTRAINT_SUPPORT: {
1075 VtabCtx *p = db->pVtabCtx;
1076 if( !p ){
1077 rc = SQLITE_MISUSE_BKPT;
1078 }else{
drh367e84d2011-05-05 23:07:43 +00001079 assert( p->pTab==0 || (p->pTab->tabFlags & TF_Virtual)!=0 );
danb061d052011-04-25 18:49:57 +00001080 p->pVTable->bConstraint = (u8)va_arg(ap, int);
1081 }
1082 break;
1083 }
1084 default:
1085 rc = SQLITE_MISUSE_BKPT;
1086 break;
1087 }
1088 va_end(ap);
1089
1090 if( rc!=SQLITE_OK ) sqlite3Error(db, rc, 0);
1091 sqlite3_mutex_leave(db->mutex);
1092 return rc;
1093}
1094
drhb9bb7c12006-06-11 23:41:55 +00001095#endif /* SQLITE_OMIT_VIRTUALTABLE */