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