Minor cleanups in the new fiddle build code.
[sqlite.git] / src / vdbeblob.c
blob522447dbc142a1c3ee223a28b7890d03ef2aa757
1 /*
2 ** 2007 May 1
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.
11 *************************************************************************
13 ** This file contains code used to implement incremental BLOB I/O.
16 #include "sqliteInt.h"
17 #include "vdbeInt.h"
19 #ifndef SQLITE_OMIT_INCRBLOB
22 ** Valid sqlite3_blob* handles point to Incrblob structures.
24 typedef struct Incrblob Incrblob;
25 struct Incrblob {
26 int nByte; /* Size of open blob, in bytes */
27 int iOffset; /* Byte offset of blob in cursor data */
28 u16 iCol; /* Table column this handle is open on */
29 BtCursor *pCsr; /* Cursor pointing at blob row */
30 sqlite3_stmt *pStmt; /* Statement holding cursor open */
31 sqlite3 *db; /* The associated database */
32 char *zDb; /* Database name */
33 Table *pTab; /* Table object */
38 ** This function is used by both blob_open() and blob_reopen(). It seeks
39 ** the b-tree cursor associated with blob handle p to point to row iRow.
40 ** If successful, SQLITE_OK is returned and subsequent calls to
41 ** sqlite3_blob_read() or sqlite3_blob_write() access the specified row.
43 ** If an error occurs, or if the specified row does not exist or does not
44 ** contain a value of type TEXT or BLOB in the column nominated when the
45 ** blob handle was opened, then an error code is returned and *pzErr may
46 ** be set to point to a buffer containing an error message. It is the
47 ** responsibility of the caller to free the error message buffer using
48 ** sqlite3DbFree().
50 ** If an error does occur, then the b-tree cursor is closed. All subsequent
51 ** calls to sqlite3_blob_read(), blob_write() or blob_reopen() will
52 ** immediately return SQLITE_ABORT.
54 static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){
55 int rc; /* Error code */
56 char *zErr = 0; /* Error message */
57 Vdbe *v = (Vdbe *)p->pStmt;
59 /* Set the value of register r[1] in the SQL statement to integer iRow.
60 ** This is done directly as a performance optimization
62 sqlite3VdbeMemSetInt64(&v->aMem[1], iRow);
64 /* If the statement has been run before (and is paused at the OP_ResultRow)
65 ** then back it up to the point where it does the OP_NotExists. This could
66 ** have been down with an extra OP_Goto, but simply setting the program
67 ** counter is faster. */
68 if( v->pc>4 ){
69 v->pc = 4;
70 assert( v->aOp[v->pc].opcode==OP_NotExists );
71 rc = sqlite3VdbeExec(v);
72 }else{
73 rc = sqlite3_step(p->pStmt);
75 if( rc==SQLITE_ROW ){
76 VdbeCursor *pC = v->apCsr[0];
77 u32 type;
78 assert( pC!=0 );
79 assert( pC->eCurType==CURTYPE_BTREE );
80 type = pC->nHdrParsed>p->iCol ? pC->aType[p->iCol] : 0;
81 testcase( pC->nHdrParsed==p->iCol );
82 testcase( pC->nHdrParsed==p->iCol+1 );
83 if( type<12 ){
84 zErr = sqlite3MPrintf(p->db, "cannot open value of type %s",
85 type==0?"null": type==7?"real": "integer"
87 rc = SQLITE_ERROR;
88 sqlite3_finalize(p->pStmt);
89 p->pStmt = 0;
90 }else{
91 p->iOffset = pC->aType[p->iCol + pC->nField];
92 p->nByte = sqlite3VdbeSerialTypeLen(type);
93 p->pCsr = pC->uc.pCursor;
94 sqlite3BtreeIncrblobCursor(p->pCsr);
98 if( rc==SQLITE_ROW ){
99 rc = SQLITE_OK;
100 }else if( p->pStmt ){
101 rc = sqlite3_finalize(p->pStmt);
102 p->pStmt = 0;
103 if( rc==SQLITE_OK ){
104 zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow);
105 rc = SQLITE_ERROR;
106 }else{
107 zErr = sqlite3MPrintf(p->db, "%s", sqlite3_errmsg(p->db));
111 assert( rc!=SQLITE_OK || zErr==0 );
112 assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE );
114 *pzErr = zErr;
115 return rc;
119 ** Open a blob handle.
121 int sqlite3_blob_open(
122 sqlite3* db, /* The database connection */
123 const char *zDb, /* The attached database containing the blob */
124 const char *zTable, /* The table containing the blob */
125 const char *zColumn, /* The column containing the blob */
126 sqlite_int64 iRow, /* The row containing the glob */
127 int wrFlag, /* True -> read/write access, false -> read-only */
128 sqlite3_blob **ppBlob /* Handle for accessing the blob returned here */
130 int nAttempt = 0;
131 int iCol; /* Index of zColumn in row-record */
132 int rc = SQLITE_OK;
133 char *zErr = 0;
134 Table *pTab;
135 Incrblob *pBlob = 0;
136 Parse sParse;
138 #ifdef SQLITE_ENABLE_API_ARMOR
139 if( ppBlob==0 ){
140 return SQLITE_MISUSE_BKPT;
142 #endif
143 *ppBlob = 0;
144 #ifdef SQLITE_ENABLE_API_ARMOR
145 if( !sqlite3SafetyCheckOk(db) || zTable==0 || zColumn==0 ){
146 return SQLITE_MISUSE_BKPT;
148 #endif
149 wrFlag = !!wrFlag; /* wrFlag = (wrFlag ? 1 : 0); */
151 sqlite3_mutex_enter(db->mutex);
153 pBlob = (Incrblob *)sqlite3DbMallocZero(db, sizeof(Incrblob));
154 while(1){
155 sqlite3ParseObjectInit(&sParse,db);
156 if( !pBlob ) goto blob_open_out;
157 sqlite3DbFree(db, zErr);
158 zErr = 0;
160 sqlite3BtreeEnterAll(db);
161 pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb);
162 if( pTab && IsVirtual(pTab) ){
163 pTab = 0;
164 sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable);
166 if( pTab && !HasRowid(pTab) ){
167 pTab = 0;
168 sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable);
170 #ifndef SQLITE_OMIT_VIEW
171 if( pTab && IsView(pTab) ){
172 pTab = 0;
173 sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable);
175 #endif
176 if( !pTab ){
177 if( sParse.zErrMsg ){
178 sqlite3DbFree(db, zErr);
179 zErr = sParse.zErrMsg;
180 sParse.zErrMsg = 0;
182 rc = SQLITE_ERROR;
183 sqlite3BtreeLeaveAll(db);
184 goto blob_open_out;
186 pBlob->pTab = pTab;
187 pBlob->zDb = db->aDb[sqlite3SchemaToIndex(db, pTab->pSchema)].zDbSName;
189 /* Now search pTab for the exact column. */
190 for(iCol=0; iCol<pTab->nCol; iCol++) {
191 if( sqlite3StrICmp(pTab->aCol[iCol].zCnName, zColumn)==0 ){
192 break;
195 if( iCol==pTab->nCol ){
196 sqlite3DbFree(db, zErr);
197 zErr = sqlite3MPrintf(db, "no such column: \"%s\"", zColumn);
198 rc = SQLITE_ERROR;
199 sqlite3BtreeLeaveAll(db);
200 goto blob_open_out;
203 /* If the value is being opened for writing, check that the
204 ** column is not indexed, and that it is not part of a foreign key.
206 if( wrFlag ){
207 const char *zFault = 0;
208 Index *pIdx;
209 #ifndef SQLITE_OMIT_FOREIGN_KEY
210 if( db->flags&SQLITE_ForeignKeys ){
211 /* Check that the column is not part of an FK child key definition. It
212 ** is not necessary to check if it is part of a parent key, as parent
213 ** key columns must be indexed. The check below will pick up this
214 ** case. */
215 FKey *pFKey;
216 assert( IsOrdinaryTable(pTab) );
217 for(pFKey=pTab->u.tab.pFKey; pFKey; pFKey=pFKey->pNextFrom){
218 int j;
219 for(j=0; j<pFKey->nCol; j++){
220 if( pFKey->aCol[j].iFrom==iCol ){
221 zFault = "foreign key";
226 #endif
227 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
228 int j;
229 for(j=0; j<pIdx->nKeyCol; j++){
230 /* FIXME: Be smarter about indexes that use expressions */
231 if( pIdx->aiColumn[j]==iCol || pIdx->aiColumn[j]==XN_EXPR ){
232 zFault = "indexed";
236 if( zFault ){
237 sqlite3DbFree(db, zErr);
238 zErr = sqlite3MPrintf(db, "cannot open %s column for writing", zFault);
239 rc = SQLITE_ERROR;
240 sqlite3BtreeLeaveAll(db);
241 goto blob_open_out;
245 pBlob->pStmt = (sqlite3_stmt *)sqlite3VdbeCreate(&sParse);
246 assert( pBlob->pStmt || db->mallocFailed );
247 if( pBlob->pStmt ){
249 /* This VDBE program seeks a btree cursor to the identified
250 ** db/table/row entry. The reason for using a vdbe program instead
251 ** of writing code to use the b-tree layer directly is that the
252 ** vdbe program will take advantage of the various transaction,
253 ** locking and error handling infrastructure built into the vdbe.
255 ** After seeking the cursor, the vdbe executes an OP_ResultRow.
256 ** Code external to the Vdbe then "borrows" the b-tree cursor and
257 ** uses it to implement the blob_read(), blob_write() and
258 ** blob_bytes() functions.
260 ** The sqlite3_blob_close() function finalizes the vdbe program,
261 ** which closes the b-tree cursor and (possibly) commits the
262 ** transaction.
264 static const int iLn = VDBE_OFFSET_LINENO(2);
265 static const VdbeOpList openBlob[] = {
266 {OP_TableLock, 0, 0, 0}, /* 0: Acquire a read or write lock */
267 {OP_OpenRead, 0, 0, 0}, /* 1: Open a cursor */
268 /* blobSeekToRow() will initialize r[1] to the desired rowid */
269 {OP_NotExists, 0, 5, 1}, /* 2: Seek the cursor to rowid=r[1] */
270 {OP_Column, 0, 0, 1}, /* 3 */
271 {OP_ResultRow, 1, 0, 0}, /* 4 */
272 {OP_Halt, 0, 0, 0}, /* 5 */
274 Vdbe *v = (Vdbe *)pBlob->pStmt;
275 int iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
276 VdbeOp *aOp;
278 sqlite3VdbeAddOp4Int(v, OP_Transaction, iDb, wrFlag,
279 pTab->pSchema->schema_cookie,
280 pTab->pSchema->iGeneration);
281 sqlite3VdbeChangeP5(v, 1);
282 assert( sqlite3VdbeCurrentAddr(v)==2 || db->mallocFailed );
283 aOp = sqlite3VdbeAddOpList(v, ArraySize(openBlob), openBlob, iLn);
285 /* Make sure a mutex is held on the table to be accessed */
286 sqlite3VdbeUsesBtree(v, iDb);
288 if( db->mallocFailed==0 ){
289 assert( aOp!=0 );
290 /* Configure the OP_TableLock instruction */
291 #ifdef SQLITE_OMIT_SHARED_CACHE
292 aOp[0].opcode = OP_Noop;
293 #else
294 aOp[0].p1 = iDb;
295 aOp[0].p2 = pTab->tnum;
296 aOp[0].p3 = wrFlag;
297 sqlite3VdbeChangeP4(v, 2, pTab->zName, P4_TRANSIENT);
299 if( db->mallocFailed==0 ){
300 #endif
302 /* Remove either the OP_OpenWrite or OpenRead. Set the P2
303 ** parameter of the other to pTab->tnum. */
304 if( wrFlag ) aOp[1].opcode = OP_OpenWrite;
305 aOp[1].p2 = pTab->tnum;
306 aOp[1].p3 = iDb;
308 /* Configure the number of columns. Configure the cursor to
309 ** think that the table has one more column than it really
310 ** does. An OP_Column to retrieve this imaginary column will
311 ** always return an SQL NULL. This is useful because it means
312 ** we can invoke OP_Column to fill in the vdbe cursors type
313 ** and offset cache without causing any IO.
315 aOp[1].p4type = P4_INT32;
316 aOp[1].p4.i = pTab->nCol+1;
317 aOp[3].p2 = pTab->nCol;
319 sParse.nVar = 0;
320 sParse.nMem = 1;
321 sParse.nTab = 1;
322 sqlite3VdbeMakeReady(v, &sParse);
326 pBlob->iCol = iCol;
327 pBlob->db = db;
328 sqlite3BtreeLeaveAll(db);
329 if( db->mallocFailed ){
330 goto blob_open_out;
332 rc = blobSeekToRow(pBlob, iRow, &zErr);
333 if( (++nAttempt)>=SQLITE_MAX_SCHEMA_RETRY || rc!=SQLITE_SCHEMA ) break;
334 sqlite3ParseObjectReset(&sParse);
337 blob_open_out:
338 if( rc==SQLITE_OK && db->mallocFailed==0 ){
339 *ppBlob = (sqlite3_blob *)pBlob;
340 }else{
341 if( pBlob && pBlob->pStmt ) sqlite3VdbeFinalize((Vdbe *)pBlob->pStmt);
342 sqlite3DbFree(db, pBlob);
344 sqlite3ErrorWithMsg(db, rc, (zErr ? "%s" : (char*)0), zErr);
345 sqlite3DbFree(db, zErr);
346 sqlite3ParseObjectReset(&sParse);
347 rc = sqlite3ApiExit(db, rc);
348 sqlite3_mutex_leave(db->mutex);
349 return rc;
353 ** Close a blob handle that was previously created using
354 ** sqlite3_blob_open().
356 int sqlite3_blob_close(sqlite3_blob *pBlob){
357 Incrblob *p = (Incrblob *)pBlob;
358 int rc;
359 sqlite3 *db;
361 if( p ){
362 sqlite3_stmt *pStmt = p->pStmt;
363 db = p->db;
364 sqlite3_mutex_enter(db->mutex);
365 sqlite3DbFree(db, p);
366 sqlite3_mutex_leave(db->mutex);
367 rc = sqlite3_finalize(pStmt);
368 }else{
369 rc = SQLITE_OK;
371 return rc;
375 ** Perform a read or write operation on a blob
377 static int blobReadWrite(
378 sqlite3_blob *pBlob,
379 void *z,
380 int n,
381 int iOffset,
382 int (*xCall)(BtCursor*, u32, u32, void*)
384 int rc;
385 Incrblob *p = (Incrblob *)pBlob;
386 Vdbe *v;
387 sqlite3 *db;
389 if( p==0 ) return SQLITE_MISUSE_BKPT;
390 db = p->db;
391 sqlite3_mutex_enter(db->mutex);
392 v = (Vdbe*)p->pStmt;
394 if( n<0 || iOffset<0 || ((sqlite3_int64)iOffset+n)>p->nByte ){
395 /* Request is out of range. Return a transient error. */
396 rc = SQLITE_ERROR;
397 }else if( v==0 ){
398 /* If there is no statement handle, then the blob-handle has
399 ** already been invalidated. Return SQLITE_ABORT in this case.
401 rc = SQLITE_ABORT;
402 }else{
403 /* Call either BtreeData() or BtreePutData(). If SQLITE_ABORT is
404 ** returned, clean-up the statement handle.
406 assert( db == v->db );
407 sqlite3BtreeEnterCursor(p->pCsr);
409 #ifdef SQLITE_ENABLE_PREUPDATE_HOOK
410 if( xCall==sqlite3BtreePutData && db->xPreUpdateCallback ){
411 /* If a pre-update hook is registered and this is a write cursor,
412 ** invoke it here.
414 ** TODO: The preupdate-hook is passed SQLITE_DELETE, even though this
415 ** operation should really be an SQLITE_UPDATE. This is probably
416 ** incorrect, but is convenient because at this point the new.* values
417 ** are not easily obtainable. And for the sessions module, an
418 ** SQLITE_UPDATE where the PK columns do not change is handled in the
419 ** same way as an SQLITE_DELETE (the SQLITE_DELETE code is actually
420 ** slightly more efficient). Since you cannot write to a PK column
421 ** using the incremental-blob API, this works. For the sessions module
422 ** anyhow.
424 sqlite3_int64 iKey;
425 iKey = sqlite3BtreeIntegerKey(p->pCsr);
426 assert( v->apCsr[0]!=0 );
427 assert( v->apCsr[0]->eCurType==CURTYPE_BTREE );
428 sqlite3VdbePreUpdateHook(
429 v, v->apCsr[0], SQLITE_DELETE, p->zDb, p->pTab, iKey, -1, p->iCol
432 #endif
434 rc = xCall(p->pCsr, iOffset+p->iOffset, n, z);
435 sqlite3BtreeLeaveCursor(p->pCsr);
436 if( rc==SQLITE_ABORT ){
437 sqlite3VdbeFinalize(v);
438 p->pStmt = 0;
439 }else{
440 v->rc = rc;
443 sqlite3Error(db, rc);
444 rc = sqlite3ApiExit(db, rc);
445 sqlite3_mutex_leave(db->mutex);
446 return rc;
450 ** Read data from a blob handle.
452 int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){
453 return blobReadWrite(pBlob, z, n, iOffset, sqlite3BtreePayloadChecked);
457 ** Write data to a blob handle.
459 int sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){
460 return blobReadWrite(pBlob, (void *)z, n, iOffset, sqlite3BtreePutData);
464 ** Query a blob handle for the size of the data.
466 ** The Incrblob.nByte field is fixed for the lifetime of the Incrblob
467 ** so no mutex is required for access.
469 int sqlite3_blob_bytes(sqlite3_blob *pBlob){
470 Incrblob *p = (Incrblob *)pBlob;
471 return (p && p->pStmt) ? p->nByte : 0;
475 ** Move an existing blob handle to point to a different row of the same
476 ** database table.
478 ** If an error occurs, or if the specified row does not exist or does not
479 ** contain a blob or text value, then an error code is returned and the
480 ** database handle error code and message set. If this happens, then all
481 ** subsequent calls to sqlite3_blob_xxx() functions (except blob_close())
482 ** immediately return SQLITE_ABORT.
484 int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
485 int rc;
486 Incrblob *p = (Incrblob *)pBlob;
487 sqlite3 *db;
489 if( p==0 ) return SQLITE_MISUSE_BKPT;
490 db = p->db;
491 sqlite3_mutex_enter(db->mutex);
493 if( p->pStmt==0 ){
494 /* If there is no statement handle, then the blob-handle has
495 ** already been invalidated. Return SQLITE_ABORT in this case.
497 rc = SQLITE_ABORT;
498 }else{
499 char *zErr;
500 ((Vdbe*)p->pStmt)->rc = SQLITE_OK;
501 rc = blobSeekToRow(p, iRow, &zErr);
502 if( rc!=SQLITE_OK ){
503 sqlite3ErrorWithMsg(db, rc, (zErr ? "%s" : (char*)0), zErr);
504 sqlite3DbFree(db, zErr);
506 assert( rc!=SQLITE_SCHEMA );
509 rc = sqlite3ApiExit(db, rc);
510 assert( rc==SQLITE_OK || p->pStmt==0 );
511 sqlite3_mutex_leave(db->mutex);
512 return rc;
515 #endif /* #ifndef SQLITE_OMIT_INCRBLOB */