sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2007 May 1
|
sl@0
|
3 |
**
|
sl@0
|
4 |
** The author disclaims copyright to this source code. In place of
|
sl@0
|
5 |
** a legal notice, here is a blessing:
|
sl@0
|
6 |
**
|
sl@0
|
7 |
** May you do good and not evil.
|
sl@0
|
8 |
** May you find forgiveness for yourself and forgive others.
|
sl@0
|
9 |
** May you share freely, never taking more than you give.
|
sl@0
|
10 |
**
|
sl@0
|
11 |
*************************************************************************
|
sl@0
|
12 |
**
|
sl@0
|
13 |
** This file contains code used to implement incremental BLOB I/O.
|
sl@0
|
14 |
**
|
sl@0
|
15 |
** $Id: vdbeblob.c,v 1.25 2008/07/28 19:34:54 drh Exp $
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "sqliteInt.h"
|
sl@0
|
19 |
#include "vdbeInt.h"
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifndef SQLITE_OMIT_INCRBLOB
|
sl@0
|
22 |
|
sl@0
|
23 |
/*
|
sl@0
|
24 |
** Valid sqlite3_blob* handles point to Incrblob structures.
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
typedef struct Incrblob Incrblob;
|
sl@0
|
27 |
struct Incrblob {
|
sl@0
|
28 |
int flags; /* Copy of "flags" passed to sqlite3_blob_open() */
|
sl@0
|
29 |
int nByte; /* Size of open blob, in bytes */
|
sl@0
|
30 |
int iOffset; /* Byte offset of blob in cursor data */
|
sl@0
|
31 |
BtCursor *pCsr; /* Cursor pointing at blob row */
|
sl@0
|
32 |
sqlite3_stmt *pStmt; /* Statement holding cursor open */
|
sl@0
|
33 |
sqlite3 *db; /* The associated database */
|
sl@0
|
34 |
};
|
sl@0
|
35 |
|
sl@0
|
36 |
/*
|
sl@0
|
37 |
** Open a blob handle.
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
int sqlite3_blob_open(
|
sl@0
|
40 |
sqlite3* db, /* The database connection */
|
sl@0
|
41 |
const char *zDb, /* The attached database containing the blob */
|
sl@0
|
42 |
const char *zTable, /* The table containing the blob */
|
sl@0
|
43 |
const char *zColumn, /* The column containing the blob */
|
sl@0
|
44 |
sqlite_int64 iRow, /* The row containing the glob */
|
sl@0
|
45 |
int flags, /* True -> read/write access, false -> read-only */
|
sl@0
|
46 |
sqlite3_blob **ppBlob /* Handle for accessing the blob returned here */
|
sl@0
|
47 |
){
|
sl@0
|
48 |
int nAttempt = 0;
|
sl@0
|
49 |
int iCol; /* Index of zColumn in row-record */
|
sl@0
|
50 |
|
sl@0
|
51 |
/* This VDBE program seeks a btree cursor to the identified
|
sl@0
|
52 |
** db/table/row entry. The reason for using a vdbe program instead
|
sl@0
|
53 |
** of writing code to use the b-tree layer directly is that the
|
sl@0
|
54 |
** vdbe program will take advantage of the various transaction,
|
sl@0
|
55 |
** locking and error handling infrastructure built into the vdbe.
|
sl@0
|
56 |
**
|
sl@0
|
57 |
** After seeking the cursor, the vdbe executes an OP_ResultRow.
|
sl@0
|
58 |
** Code external to the Vdbe then "borrows" the b-tree cursor and
|
sl@0
|
59 |
** uses it to implement the blob_read(), blob_write() and
|
sl@0
|
60 |
** blob_bytes() functions.
|
sl@0
|
61 |
**
|
sl@0
|
62 |
** The sqlite3_blob_close() function finalizes the vdbe program,
|
sl@0
|
63 |
** which closes the b-tree cursor and (possibly) commits the
|
sl@0
|
64 |
** transaction.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
static const VdbeOpList openBlob[] = {
|
sl@0
|
67 |
{OP_Transaction, 0, 0, 0}, /* 0: Start a transaction */
|
sl@0
|
68 |
{OP_VerifyCookie, 0, 0, 0}, /* 1: Check the schema cookie */
|
sl@0
|
69 |
|
sl@0
|
70 |
/* One of the following two instructions is replaced by an
|
sl@0
|
71 |
** OP_Noop before exection.
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
{OP_SetNumColumns, 0, 0, 0}, /* 2: Num cols for cursor */
|
sl@0
|
74 |
{OP_OpenRead, 0, 0, 0}, /* 3: Open cursor 0 for reading */
|
sl@0
|
75 |
{OP_SetNumColumns, 0, 0, 0}, /* 4: Num cols for cursor */
|
sl@0
|
76 |
{OP_OpenWrite, 0, 0, 0}, /* 5: Open cursor 0 for read/write */
|
sl@0
|
77 |
|
sl@0
|
78 |
{OP_Variable, 1, 1, 0}, /* 6: Push the rowid to the stack */
|
sl@0
|
79 |
{OP_NotExists, 0, 10, 1}, /* 7: Seek the cursor */
|
sl@0
|
80 |
{OP_Column, 0, 0, 1}, /* 8 */
|
sl@0
|
81 |
{OP_ResultRow, 1, 0, 0}, /* 9 */
|
sl@0
|
82 |
{OP_Close, 0, 0, 0}, /* 10 */
|
sl@0
|
83 |
{OP_Halt, 0, 0, 0}, /* 11 */
|
sl@0
|
84 |
};
|
sl@0
|
85 |
|
sl@0
|
86 |
Vdbe *v = 0;
|
sl@0
|
87 |
int rc = SQLITE_OK;
|
sl@0
|
88 |
char zErr[128];
|
sl@0
|
89 |
|
sl@0
|
90 |
zErr[0] = 0;
|
sl@0
|
91 |
sqlite3_mutex_enter(db->mutex);
|
sl@0
|
92 |
do {
|
sl@0
|
93 |
Parse sParse;
|
sl@0
|
94 |
Table *pTab;
|
sl@0
|
95 |
|
sl@0
|
96 |
memset(&sParse, 0, sizeof(Parse));
|
sl@0
|
97 |
sParse.db = db;
|
sl@0
|
98 |
|
sl@0
|
99 |
if( sqlite3SafetyOn(db) ){
|
sl@0
|
100 |
sqlite3_mutex_leave(db->mutex);
|
sl@0
|
101 |
return SQLITE_MISUSE;
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
sqlite3BtreeEnterAll(db);
|
sl@0
|
105 |
pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb);
|
sl@0
|
106 |
if( pTab && IsVirtual(pTab) ){
|
sl@0
|
107 |
pTab = 0;
|
sl@0
|
108 |
sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
#ifndef SQLITE_OMIT_VIEW
|
sl@0
|
111 |
if( pTab && pTab->pSelect ){
|
sl@0
|
112 |
pTab = 0;
|
sl@0
|
113 |
sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable);
|
sl@0
|
114 |
}
|
sl@0
|
115 |
#endif
|
sl@0
|
116 |
if( !pTab ){
|
sl@0
|
117 |
if( sParse.zErrMsg ){
|
sl@0
|
118 |
sqlite3_snprintf(sizeof(zErr), zErr, "%s", sParse.zErrMsg);
|
sl@0
|
119 |
}
|
sl@0
|
120 |
sqlite3DbFree(db, sParse.zErrMsg);
|
sl@0
|
121 |
rc = SQLITE_ERROR;
|
sl@0
|
122 |
(void)sqlite3SafetyOff(db);
|
sl@0
|
123 |
sqlite3BtreeLeaveAll(db);
|
sl@0
|
124 |
goto blob_open_out;
|
sl@0
|
125 |
}
|
sl@0
|
126 |
|
sl@0
|
127 |
/* Now search pTab for the exact column. */
|
sl@0
|
128 |
for(iCol=0; iCol < pTab->nCol; iCol++) {
|
sl@0
|
129 |
if( sqlite3StrICmp(pTab->aCol[iCol].zName, zColumn)==0 ){
|
sl@0
|
130 |
break;
|
sl@0
|
131 |
}
|
sl@0
|
132 |
}
|
sl@0
|
133 |
if( iCol==pTab->nCol ){
|
sl@0
|
134 |
sqlite3_snprintf(sizeof(zErr), zErr, "no such column: \"%s\"", zColumn);
|
sl@0
|
135 |
rc = SQLITE_ERROR;
|
sl@0
|
136 |
(void)sqlite3SafetyOff(db);
|
sl@0
|
137 |
sqlite3BtreeLeaveAll(db);
|
sl@0
|
138 |
goto blob_open_out;
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
/* If the value is being opened for writing, check that the
|
sl@0
|
142 |
** column is not indexed. It is against the rules to open an
|
sl@0
|
143 |
** indexed column for writing.
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
if( flags ){
|
sl@0
|
146 |
Index *pIdx;
|
sl@0
|
147 |
for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
|
sl@0
|
148 |
int j;
|
sl@0
|
149 |
for(j=0; j<pIdx->nColumn; j++){
|
sl@0
|
150 |
if( pIdx->aiColumn[j]==iCol ){
|
sl@0
|
151 |
sqlite3_snprintf(sizeof(zErr), zErr,
|
sl@0
|
152 |
"cannot open indexed column for writing");
|
sl@0
|
153 |
rc = SQLITE_ERROR;
|
sl@0
|
154 |
(void)sqlite3SafetyOff(db);
|
sl@0
|
155 |
sqlite3BtreeLeaveAll(db);
|
sl@0
|
156 |
goto blob_open_out;
|
sl@0
|
157 |
}
|
sl@0
|
158 |
}
|
sl@0
|
159 |
}
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
v = sqlite3VdbeCreate(db);
|
sl@0
|
163 |
if( v ){
|
sl@0
|
164 |
int iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
|
sl@0
|
165 |
sqlite3VdbeAddOpList(v, sizeof(openBlob)/sizeof(VdbeOpList), openBlob);
|
sl@0
|
166 |
|
sl@0
|
167 |
/* Configure the OP_Transaction */
|
sl@0
|
168 |
sqlite3VdbeChangeP1(v, 0, iDb);
|
sl@0
|
169 |
sqlite3VdbeChangeP2(v, 0, (flags ? 1 : 0));
|
sl@0
|
170 |
|
sl@0
|
171 |
/* Configure the OP_VerifyCookie */
|
sl@0
|
172 |
sqlite3VdbeChangeP1(v, 1, iDb);
|
sl@0
|
173 |
sqlite3VdbeChangeP2(v, 1, pTab->pSchema->schema_cookie);
|
sl@0
|
174 |
|
sl@0
|
175 |
/* Make sure a mutex is held on the table to be accessed */
|
sl@0
|
176 |
sqlite3VdbeUsesBtree(v, iDb);
|
sl@0
|
177 |
|
sl@0
|
178 |
/* Remove either the OP_OpenWrite or OpenRead. Set the P2
|
sl@0
|
179 |
** parameter of the other to pTab->tnum.
|
sl@0
|
180 |
*/
|
sl@0
|
181 |
sqlite3VdbeChangeToNoop(v, (flags ? 3 : 5), 1);
|
sl@0
|
182 |
sqlite3VdbeChangeP2(v, (flags ? 5 : 3), pTab->tnum);
|
sl@0
|
183 |
sqlite3VdbeChangeP3(v, (flags ? 5 : 3), iDb);
|
sl@0
|
184 |
|
sl@0
|
185 |
/* Configure the OP_SetNumColumns. Configure the cursor to
|
sl@0
|
186 |
** think that the table has one more column than it really
|
sl@0
|
187 |
** does. An OP_Column to retrieve this imaginary column will
|
sl@0
|
188 |
** always return an SQL NULL. This is useful because it means
|
sl@0
|
189 |
** we can invoke OP_Column to fill in the vdbe cursors type
|
sl@0
|
190 |
** and offset cache without causing any IO.
|
sl@0
|
191 |
*/
|
sl@0
|
192 |
sqlite3VdbeChangeP2(v, flags ? 4 : 2, pTab->nCol+1);
|
sl@0
|
193 |
sqlite3VdbeChangeP2(v, 8, pTab->nCol);
|
sl@0
|
194 |
if( !db->mallocFailed ){
|
sl@0
|
195 |
sqlite3VdbeMakeReady(v, 1, 1, 1, 0);
|
sl@0
|
196 |
}
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
sqlite3BtreeLeaveAll(db);
|
sl@0
|
200 |
rc = sqlite3SafetyOff(db);
|
sl@0
|
201 |
if( rc!=SQLITE_OK || db->mallocFailed ){
|
sl@0
|
202 |
goto blob_open_out;
|
sl@0
|
203 |
}
|
sl@0
|
204 |
|
sl@0
|
205 |
sqlite3_bind_int64((sqlite3_stmt *)v, 1, iRow);
|
sl@0
|
206 |
rc = sqlite3_step((sqlite3_stmt *)v);
|
sl@0
|
207 |
if( rc!=SQLITE_ROW ){
|
sl@0
|
208 |
nAttempt++;
|
sl@0
|
209 |
rc = sqlite3_finalize((sqlite3_stmt *)v);
|
sl@0
|
210 |
sqlite3_snprintf(sizeof(zErr), zErr, sqlite3_errmsg(db));
|
sl@0
|
211 |
v = 0;
|
sl@0
|
212 |
}
|
sl@0
|
213 |
} while( nAttempt<5 && rc==SQLITE_SCHEMA );
|
sl@0
|
214 |
|
sl@0
|
215 |
if( rc==SQLITE_ROW ){
|
sl@0
|
216 |
/* The row-record has been opened successfully. Check that the
|
sl@0
|
217 |
** column in question contains text or a blob. If it contains
|
sl@0
|
218 |
** text, it is up to the caller to get the encoding right.
|
sl@0
|
219 |
*/
|
sl@0
|
220 |
Incrblob *pBlob;
|
sl@0
|
221 |
u32 type = v->apCsr[0]->aType[iCol];
|
sl@0
|
222 |
|
sl@0
|
223 |
if( type<12 ){
|
sl@0
|
224 |
sqlite3_snprintf(sizeof(zErr), zErr, "cannot open value of type %s",
|
sl@0
|
225 |
type==0?"null": type==7?"real": "integer"
|
sl@0
|
226 |
);
|
sl@0
|
227 |
rc = SQLITE_ERROR;
|
sl@0
|
228 |
goto blob_open_out;
|
sl@0
|
229 |
}
|
sl@0
|
230 |
pBlob = (Incrblob *)sqlite3DbMallocZero(db, sizeof(Incrblob));
|
sl@0
|
231 |
if( db->mallocFailed ){
|
sl@0
|
232 |
sqlite3DbFree(db, pBlob);
|
sl@0
|
233 |
goto blob_open_out;
|
sl@0
|
234 |
}
|
sl@0
|
235 |
pBlob->flags = flags;
|
sl@0
|
236 |
pBlob->pCsr = v->apCsr[0]->pCursor;
|
sl@0
|
237 |
sqlite3BtreeEnterCursor(pBlob->pCsr);
|
sl@0
|
238 |
sqlite3BtreeCacheOverflow(pBlob->pCsr);
|
sl@0
|
239 |
sqlite3BtreeLeaveCursor(pBlob->pCsr);
|
sl@0
|
240 |
pBlob->pStmt = (sqlite3_stmt *)v;
|
sl@0
|
241 |
pBlob->iOffset = v->apCsr[0]->aOffset[iCol];
|
sl@0
|
242 |
pBlob->nByte = sqlite3VdbeSerialTypeLen(type);
|
sl@0
|
243 |
pBlob->db = db;
|
sl@0
|
244 |
*ppBlob = (sqlite3_blob *)pBlob;
|
sl@0
|
245 |
rc = SQLITE_OK;
|
sl@0
|
246 |
}else if( rc==SQLITE_OK ){
|
sl@0
|
247 |
sqlite3_snprintf(sizeof(zErr), zErr, "no such rowid: %lld", iRow);
|
sl@0
|
248 |
rc = SQLITE_ERROR;
|
sl@0
|
249 |
}
|
sl@0
|
250 |
|
sl@0
|
251 |
blob_open_out:
|
sl@0
|
252 |
zErr[sizeof(zErr)-1] = '\0';
|
sl@0
|
253 |
if( rc!=SQLITE_OK || db->mallocFailed ){
|
sl@0
|
254 |
sqlite3_finalize((sqlite3_stmt *)v);
|
sl@0
|
255 |
}
|
sl@0
|
256 |
sqlite3Error(db, rc, (rc==SQLITE_OK?0:zErr));
|
sl@0
|
257 |
rc = sqlite3ApiExit(db, rc);
|
sl@0
|
258 |
sqlite3_mutex_leave(db->mutex);
|
sl@0
|
259 |
return rc;
|
sl@0
|
260 |
}
|
sl@0
|
261 |
|
sl@0
|
262 |
/*
|
sl@0
|
263 |
** Close a blob handle that was previously created using
|
sl@0
|
264 |
** sqlite3_blob_open().
|
sl@0
|
265 |
*/
|
sl@0
|
266 |
int sqlite3_blob_close(sqlite3_blob *pBlob){
|
sl@0
|
267 |
Incrblob *p = (Incrblob *)pBlob;
|
sl@0
|
268 |
int rc;
|
sl@0
|
269 |
|
sl@0
|
270 |
rc = sqlite3_finalize(p->pStmt);
|
sl@0
|
271 |
sqlite3DbFree(p->db, p);
|
sl@0
|
272 |
return rc;
|
sl@0
|
273 |
}
|
sl@0
|
274 |
|
sl@0
|
275 |
/*
|
sl@0
|
276 |
** Perform a read or write operation on a blob
|
sl@0
|
277 |
*/
|
sl@0
|
278 |
static int blobReadWrite(
|
sl@0
|
279 |
sqlite3_blob *pBlob,
|
sl@0
|
280 |
void *z,
|
sl@0
|
281 |
int n,
|
sl@0
|
282 |
int iOffset,
|
sl@0
|
283 |
int (*xCall)(BtCursor*, u32, u32, void*)
|
sl@0
|
284 |
){
|
sl@0
|
285 |
int rc;
|
sl@0
|
286 |
Incrblob *p = (Incrblob *)pBlob;
|
sl@0
|
287 |
Vdbe *v;
|
sl@0
|
288 |
sqlite3 *db = p->db;
|
sl@0
|
289 |
|
sl@0
|
290 |
/* Request is out of range. Return a transient error. */
|
sl@0
|
291 |
if( (iOffset+n)>p->nByte ){
|
sl@0
|
292 |
return SQLITE_ERROR;
|
sl@0
|
293 |
}
|
sl@0
|
294 |
sqlite3_mutex_enter(db->mutex);
|
sl@0
|
295 |
|
sl@0
|
296 |
/* If there is no statement handle, then the blob-handle has
|
sl@0
|
297 |
** already been invalidated. Return SQLITE_ABORT in this case.
|
sl@0
|
298 |
*/
|
sl@0
|
299 |
v = (Vdbe*)p->pStmt;
|
sl@0
|
300 |
if( v==0 ){
|
sl@0
|
301 |
rc = SQLITE_ABORT;
|
sl@0
|
302 |
}else{
|
sl@0
|
303 |
/* Call either BtreeData() or BtreePutData(). If SQLITE_ABORT is
|
sl@0
|
304 |
** returned, clean-up the statement handle.
|
sl@0
|
305 |
*/
|
sl@0
|
306 |
assert( db == v->db );
|
sl@0
|
307 |
sqlite3BtreeEnterCursor(p->pCsr);
|
sl@0
|
308 |
rc = xCall(p->pCsr, iOffset+p->iOffset, n, z);
|
sl@0
|
309 |
sqlite3BtreeLeaveCursor(p->pCsr);
|
sl@0
|
310 |
if( rc==SQLITE_ABORT ){
|
sl@0
|
311 |
sqlite3VdbeFinalize(v);
|
sl@0
|
312 |
p->pStmt = 0;
|
sl@0
|
313 |
}else{
|
sl@0
|
314 |
db->errCode = rc;
|
sl@0
|
315 |
v->rc = rc;
|
sl@0
|
316 |
}
|
sl@0
|
317 |
}
|
sl@0
|
318 |
rc = sqlite3ApiExit(db, rc);
|
sl@0
|
319 |
sqlite3_mutex_leave(db->mutex);
|
sl@0
|
320 |
return rc;
|
sl@0
|
321 |
}
|
sl@0
|
322 |
|
sl@0
|
323 |
/*
|
sl@0
|
324 |
** Read data from a blob handle.
|
sl@0
|
325 |
*/
|
sl@0
|
326 |
int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){
|
sl@0
|
327 |
return blobReadWrite(pBlob, z, n, iOffset, sqlite3BtreeData);
|
sl@0
|
328 |
}
|
sl@0
|
329 |
|
sl@0
|
330 |
/*
|
sl@0
|
331 |
** Write data to a blob handle.
|
sl@0
|
332 |
*/
|
sl@0
|
333 |
int sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){
|
sl@0
|
334 |
return blobReadWrite(pBlob, (void *)z, n, iOffset, sqlite3BtreePutData);
|
sl@0
|
335 |
}
|
sl@0
|
336 |
|
sl@0
|
337 |
/*
|
sl@0
|
338 |
** Query a blob handle for the size of the data.
|
sl@0
|
339 |
**
|
sl@0
|
340 |
** The Incrblob.nByte field is fixed for the lifetime of the Incrblob
|
sl@0
|
341 |
** so no mutex is required for access.
|
sl@0
|
342 |
*/
|
sl@0
|
343 |
int sqlite3_blob_bytes(sqlite3_blob *pBlob){
|
sl@0
|
344 |
Incrblob *p = (Incrblob *)pBlob;
|
sl@0
|
345 |
return p->nByte;
|
sl@0
|
346 |
}
|
sl@0
|
347 |
|
sl@0
|
348 |
#endif /* #ifndef SQLITE_OMIT_INCRBLOB */
|