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 code used to implement incremental BLOB I/O.
16 #include "sqliteInt.h"
19 #ifndef SQLITE_OMIT_INCRBLOB
22 ** Valid sqlite3_blob* handles point to Incrblob structures.
24 typedef struct Incrblob 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
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 v
->aMem
[1].flags
= MEM_Int
;
63 v
->aMem
[1].u
.i
= iRow
;
65 /* If the statement has been run before (and is paused at the OP_ResultRow)
66 ** then back it up to the point where it does the OP_NotExists. This could
67 ** have been down with an extra OP_Goto, but simply setting the program
68 ** counter is faster. */
71 assert( v
->aOp
[v
->pc
].opcode
==OP_NotExists
);
72 rc
= sqlite3VdbeExec(v
);
74 rc
= sqlite3_step(p
->pStmt
);
77 VdbeCursor
*pC
= v
->apCsr
[0];
80 assert( pC
->eCurType
==CURTYPE_BTREE
);
81 type
= pC
->nHdrParsed
>p
->iCol
? pC
->aType
[p
->iCol
] : 0;
82 testcase( pC
->nHdrParsed
==p
->iCol
);
83 testcase( pC
->nHdrParsed
==p
->iCol
+1 );
85 zErr
= sqlite3MPrintf(p
->db
, "cannot open value of type %s",
86 type
==0?"null": type
==7?"real": "integer"
89 sqlite3_finalize(p
->pStmt
);
92 p
->iOffset
= pC
->aType
[p
->iCol
+ pC
->nField
];
93 p
->nByte
= sqlite3VdbeSerialTypeLen(type
);
94 p
->pCsr
= pC
->uc
.pCursor
;
95 sqlite3BtreeIncrblobCursor(p
->pCsr
);
101 }else if( p
->pStmt
){
102 rc
= sqlite3_finalize(p
->pStmt
);
105 zErr
= sqlite3MPrintf(p
->db
, "no such rowid: %lld", iRow
);
108 zErr
= sqlite3MPrintf(p
->db
, "%s", sqlite3_errmsg(p
->db
));
112 assert( rc
!=SQLITE_OK
|| zErr
==0 );
113 assert( rc
!=SQLITE_ROW
&& rc
!=SQLITE_DONE
);
120 ** Open a blob handle.
122 int sqlite3_blob_open(
123 sqlite3
* db
, /* The database connection */
124 const char *zDb
, /* The attached database containing the blob */
125 const char *zTable
, /* The table containing the blob */
126 const char *zColumn
, /* The column containing the blob */
127 sqlite_int64 iRow
, /* The row containing the glob */
128 int wrFlag
, /* True -> read/write access, false -> read-only */
129 sqlite3_blob
**ppBlob
/* Handle for accessing the blob returned here */
132 int iCol
; /* Index of zColumn in row-record */
139 #ifdef SQLITE_ENABLE_API_ARMOR
141 return SQLITE_MISUSE_BKPT
;
145 #ifdef SQLITE_ENABLE_API_ARMOR
146 if( !sqlite3SafetyCheckOk(db
) || zTable
==0 ){
147 return SQLITE_MISUSE_BKPT
;
150 wrFlag
= !!wrFlag
; /* wrFlag = (wrFlag ? 1 : 0); */
152 sqlite3_mutex_enter(db
->mutex
);
154 pBlob
= (Incrblob
*)sqlite3DbMallocZero(db
, sizeof(Incrblob
));
156 sqlite3ParseObjectInit(&sParse
,db
);
157 if( !pBlob
) goto blob_open_out
;
158 sqlite3DbFree(db
, zErr
);
161 sqlite3BtreeEnterAll(db
);
162 pTab
= sqlite3LocateTable(&sParse
, 0, zTable
, zDb
);
163 if( pTab
&& IsVirtual(pTab
) ){
165 sqlite3ErrorMsg(&sParse
, "cannot open virtual table: %s", zTable
);
167 if( pTab
&& !HasRowid(pTab
) ){
169 sqlite3ErrorMsg(&sParse
, "cannot open table without rowid: %s", zTable
);
171 #ifndef SQLITE_OMIT_VIEW
172 if( pTab
&& IsView(pTab
) ){
174 sqlite3ErrorMsg(&sParse
, "cannot open view: %s", zTable
);
178 if( sParse
.zErrMsg
){
179 sqlite3DbFree(db
, zErr
);
180 zErr
= sParse
.zErrMsg
;
184 sqlite3BtreeLeaveAll(db
);
188 pBlob
->zDb
= db
->aDb
[sqlite3SchemaToIndex(db
, pTab
->pSchema
)].zDbSName
;
190 /* Now search pTab for the exact column. */
191 for(iCol
=0; iCol
<pTab
->nCol
; iCol
++) {
192 if( sqlite3StrICmp(pTab
->aCol
[iCol
].zCnName
, zColumn
)==0 ){
196 if( iCol
==pTab
->nCol
){
197 sqlite3DbFree(db
, zErr
);
198 zErr
= sqlite3MPrintf(db
, "no such column: \"%s\"", zColumn
);
200 sqlite3BtreeLeaveAll(db
);
204 /* If the value is being opened for writing, check that the
205 ** column is not indexed, and that it is not part of a foreign key.
208 const char *zFault
= 0;
210 #ifndef SQLITE_OMIT_FOREIGN_KEY
211 if( db
->flags
&SQLITE_ForeignKeys
){
212 /* Check that the column is not part of an FK child key definition. It
213 ** is not necessary to check if it is part of a parent key, as parent
214 ** key columns must be indexed. The check below will pick up this
217 assert( IsOrdinaryTable(pTab
) );
218 for(pFKey
=pTab
->u
.tab
.pFKey
; pFKey
; pFKey
=pFKey
->pNextFrom
){
220 for(j
=0; j
<pFKey
->nCol
; j
++){
221 if( pFKey
->aCol
[j
].iFrom
==iCol
){
222 zFault
= "foreign key";
228 for(pIdx
=pTab
->pIndex
; pIdx
; pIdx
=pIdx
->pNext
){
230 for(j
=0; j
<pIdx
->nKeyCol
; j
++){
231 /* FIXME: Be smarter about indexes that use expressions */
232 if( pIdx
->aiColumn
[j
]==iCol
|| pIdx
->aiColumn
[j
]==XN_EXPR
){
238 sqlite3DbFree(db
, zErr
);
239 zErr
= sqlite3MPrintf(db
, "cannot open %s column for writing", zFault
);
241 sqlite3BtreeLeaveAll(db
);
246 pBlob
->pStmt
= (sqlite3_stmt
*)sqlite3VdbeCreate(&sParse
);
247 assert( pBlob
->pStmt
|| db
->mallocFailed
);
250 /* This VDBE program seeks a btree cursor to the identified
251 ** db/table/row entry. The reason for using a vdbe program instead
252 ** of writing code to use the b-tree layer directly is that the
253 ** vdbe program will take advantage of the various transaction,
254 ** locking and error handling infrastructure built into the vdbe.
256 ** After seeking the cursor, the vdbe executes an OP_ResultRow.
257 ** Code external to the Vdbe then "borrows" the b-tree cursor and
258 ** uses it to implement the blob_read(), blob_write() and
259 ** blob_bytes() functions.
261 ** The sqlite3_blob_close() function finalizes the vdbe program,
262 ** which closes the b-tree cursor and (possibly) commits the
265 static const int iLn
= VDBE_OFFSET_LINENO(2);
266 static const VdbeOpList openBlob
[] = {
267 {OP_TableLock
, 0, 0, 0}, /* 0: Acquire a read or write lock */
268 {OP_OpenRead
, 0, 0, 0}, /* 1: Open a cursor */
269 /* blobSeekToRow() will initialize r[1] to the desired rowid */
270 {OP_NotExists
, 0, 5, 1}, /* 2: Seek the cursor to rowid=r[1] */
271 {OP_Column
, 0, 0, 1}, /* 3 */
272 {OP_ResultRow
, 1, 0, 0}, /* 4 */
273 {OP_Halt
, 0, 0, 0}, /* 5 */
275 Vdbe
*v
= (Vdbe
*)pBlob
->pStmt
;
276 int iDb
= sqlite3SchemaToIndex(db
, pTab
->pSchema
);
279 sqlite3VdbeAddOp4Int(v
, OP_Transaction
, iDb
, wrFlag
,
280 pTab
->pSchema
->schema_cookie
,
281 pTab
->pSchema
->iGeneration
);
282 sqlite3VdbeChangeP5(v
, 1);
283 assert( sqlite3VdbeCurrentAddr(v
)==2 || db
->mallocFailed
);
284 aOp
= sqlite3VdbeAddOpList(v
, ArraySize(openBlob
), openBlob
, iLn
);
286 /* Make sure a mutex is held on the table to be accessed */
287 sqlite3VdbeUsesBtree(v
, iDb
);
289 if( db
->mallocFailed
==0 ){
291 /* Configure the OP_TableLock instruction */
292 #ifdef SQLITE_OMIT_SHARED_CACHE
293 aOp
[0].opcode
= OP_Noop
;
296 aOp
[0].p2
= pTab
->tnum
;
298 sqlite3VdbeChangeP4(v
, 2, pTab
->zName
, P4_TRANSIENT
);
300 if( db
->mallocFailed
==0 ){
303 /* Remove either the OP_OpenWrite or OpenRead. Set the P2
304 ** parameter of the other to pTab->tnum. */
305 if( wrFlag
) aOp
[1].opcode
= OP_OpenWrite
;
306 aOp
[1].p2
= pTab
->tnum
;
309 /* Configure the number of columns. Configure the cursor to
310 ** think that the table has one more column than it really
311 ** does. An OP_Column to retrieve this imaginary column will
312 ** always return an SQL NULL. This is useful because it means
313 ** we can invoke OP_Column to fill in the vdbe cursors type
314 ** and offset cache without causing any IO.
316 aOp
[1].p4type
= P4_INT32
;
317 aOp
[1].p4
.i
= pTab
->nCol
+1;
318 aOp
[3].p2
= pTab
->nCol
;
323 sqlite3VdbeMakeReady(v
, &sParse
);
329 sqlite3BtreeLeaveAll(db
);
330 if( db
->mallocFailed
){
333 rc
= blobSeekToRow(pBlob
, iRow
, &zErr
);
334 if( (++nAttempt
)>=SQLITE_MAX_SCHEMA_RETRY
|| rc
!=SQLITE_SCHEMA
) break;
335 sqlite3ParseObjectReset(&sParse
);
339 if( rc
==SQLITE_OK
&& db
->mallocFailed
==0 ){
340 *ppBlob
= (sqlite3_blob
*)pBlob
;
342 if( pBlob
&& pBlob
->pStmt
) sqlite3VdbeFinalize((Vdbe
*)pBlob
->pStmt
);
343 sqlite3DbFree(db
, pBlob
);
345 sqlite3ErrorWithMsg(db
, rc
, (zErr
? "%s" : (char*)0), zErr
);
346 sqlite3DbFree(db
, zErr
);
347 sqlite3ParseObjectReset(&sParse
);
348 rc
= sqlite3ApiExit(db
, rc
);
349 sqlite3_mutex_leave(db
->mutex
);
354 ** Close a blob handle that was previously created using
355 ** sqlite3_blob_open().
357 int sqlite3_blob_close(sqlite3_blob
*pBlob
){
358 Incrblob
*p
= (Incrblob
*)pBlob
;
363 sqlite3_stmt
*pStmt
= p
->pStmt
;
365 sqlite3_mutex_enter(db
->mutex
);
366 sqlite3DbFree(db
, p
);
367 sqlite3_mutex_leave(db
->mutex
);
368 rc
= sqlite3_finalize(pStmt
);
376 ** Perform a read or write operation on a blob
378 static int blobReadWrite(
383 int (*xCall
)(BtCursor
*, u32
, u32
, void*)
386 Incrblob
*p
= (Incrblob
*)pBlob
;
390 if( p
==0 ) return SQLITE_MISUSE_BKPT
;
392 sqlite3_mutex_enter(db
->mutex
);
395 if( n
<0 || iOffset
<0 || ((sqlite3_int64
)iOffset
+n
)>p
->nByte
){
396 /* Request is out of range. Return a transient error. */
399 /* If there is no statement handle, then the blob-handle has
400 ** already been invalidated. Return SQLITE_ABORT in this case.
404 /* Call either BtreeData() or BtreePutData(). If SQLITE_ABORT is
405 ** returned, clean-up the statement handle.
407 assert( db
== v
->db
);
408 sqlite3BtreeEnterCursor(p
->pCsr
);
410 #ifdef SQLITE_ENABLE_PREUPDATE_HOOK
411 if( xCall
==sqlite3BtreePutData
&& db
->xPreUpdateCallback
){
412 /* If a pre-update hook is registered and this is a write cursor,
415 ** TODO: The preupdate-hook is passed SQLITE_DELETE, even though this
416 ** operation should really be an SQLITE_UPDATE. This is probably
417 ** incorrect, but is convenient because at this point the new.* values
418 ** are not easily obtainable. And for the sessions module, an
419 ** SQLITE_UPDATE where the PK columns do not change is handled in the
420 ** same way as an SQLITE_DELETE (the SQLITE_DELETE code is actually
421 ** slightly more efficient). Since you cannot write to a PK column
422 ** using the incremental-blob API, this works. For the sessions module
426 iKey
= sqlite3BtreeIntegerKey(p
->pCsr
);
427 assert( v
->apCsr
[0]!=0 );
428 assert( v
->apCsr
[0]->eCurType
==CURTYPE_BTREE
);
429 sqlite3VdbePreUpdateHook(
430 v
, v
->apCsr
[0], SQLITE_DELETE
, p
->zDb
, p
->pTab
, iKey
, -1, p
->iCol
435 rc
= xCall(p
->pCsr
, iOffset
+p
->iOffset
, n
, z
);
436 sqlite3BtreeLeaveCursor(p
->pCsr
);
437 if( rc
==SQLITE_ABORT
){
438 sqlite3VdbeFinalize(v
);
444 sqlite3Error(db
, rc
);
445 rc
= sqlite3ApiExit(db
, rc
);
446 sqlite3_mutex_leave(db
->mutex
);
451 ** Read data from a blob handle.
453 int sqlite3_blob_read(sqlite3_blob
*pBlob
, void *z
, int n
, int iOffset
){
454 return blobReadWrite(pBlob
, z
, n
, iOffset
, sqlite3BtreePayloadChecked
);
458 ** Write data to a blob handle.
460 int sqlite3_blob_write(sqlite3_blob
*pBlob
, const void *z
, int n
, int iOffset
){
461 return blobReadWrite(pBlob
, (void *)z
, n
, iOffset
, sqlite3BtreePutData
);
465 ** Query a blob handle for the size of the data.
467 ** The Incrblob.nByte field is fixed for the lifetime of the Incrblob
468 ** so no mutex is required for access.
470 int sqlite3_blob_bytes(sqlite3_blob
*pBlob
){
471 Incrblob
*p
= (Incrblob
*)pBlob
;
472 return (p
&& p
->pStmt
) ? p
->nByte
: 0;
476 ** Move an existing blob handle to point to a different row of the same
479 ** If an error occurs, or if the specified row does not exist or does not
480 ** contain a blob or text value, then an error code is returned and the
481 ** database handle error code and message set. If this happens, then all
482 ** subsequent calls to sqlite3_blob_xxx() functions (except blob_close())
483 ** immediately return SQLITE_ABORT.
485 int sqlite3_blob_reopen(sqlite3_blob
*pBlob
, sqlite3_int64 iRow
){
487 Incrblob
*p
= (Incrblob
*)pBlob
;
490 if( p
==0 ) return SQLITE_MISUSE_BKPT
;
492 sqlite3_mutex_enter(db
->mutex
);
495 /* If there is no statement handle, then the blob-handle has
496 ** already been invalidated. Return SQLITE_ABORT in this case.
501 ((Vdbe
*)p
->pStmt
)->rc
= SQLITE_OK
;
502 rc
= blobSeekToRow(p
, iRow
, &zErr
);
504 sqlite3ErrorWithMsg(db
, rc
, (zErr
? "%s" : (char*)0), zErr
);
505 sqlite3DbFree(db
, zErr
);
507 assert( rc
!=SQLITE_SCHEMA
);
510 rc
= sqlite3ApiExit(db
, rc
);
511 assert( rc
==SQLITE_OK
|| p
->pStmt
==0 );
512 sqlite3_mutex_leave(db
->mutex
);
516 #endif /* #ifndef SQLITE_OMIT_INCRBLOB */