| /* |
| ** 2003 September 6 |
| ** |
| ** The author disclaims copyright to this source code. In place of |
| ** a legal notice, here is a blessing: |
| ** |
| ** May you do good and not evil. |
| ** May you find forgiveness for yourself and forgive others. |
| ** May you share freely, never taking more than you give. |
| ** |
| ************************************************************************* |
| ** This file contains code used for creating, destroying, and populating |
| ** a VDBE (or an "sqlite3_stmt" as it is known to the outside world.) |
| */ |
| #include "sqliteInt.h" |
| #include "vdbeInt.h" |
| |
| /* Forward references */ |
| static void freeEphemeralFunction(sqlite3 *db, FuncDef *pDef); |
| static void vdbeFreeOpArray(sqlite3 *, Op *, int); |
| |
| /* |
| ** Create a new virtual database engine. |
| */ |
| Vdbe *sqlite3VdbeCreate(Parse *pParse){ |
| sqlite3 *db = pParse->db; |
| Vdbe *p; |
| p = sqlite3DbMallocRawNN(db, sizeof(Vdbe) ); |
| if( p==0 ) return 0; |
| memset(&p->aOp, 0, sizeof(Vdbe)-offsetof(Vdbe,aOp)); |
| p->db = db; |
| if( db->pVdbe ){ |
| db->pVdbe->pPrev = p; |
| } |
| p->pNext = db->pVdbe; |
| p->pPrev = 0; |
| db->pVdbe = p; |
| p->magic = VDBE_MAGIC_INIT; |
| p->pParse = pParse; |
| pParse->pVdbe = p; |
| assert( pParse->aLabel==0 ); |
| assert( pParse->nLabel==0 ); |
| assert( p->nOpAlloc==0 ); |
| assert( pParse->szOpAlloc==0 ); |
| sqlite3VdbeAddOp2(p, OP_Init, 0, 1); |
| return p; |
| } |
| |
| /* |
| ** Return the Parse object that owns a Vdbe object. |
| */ |
| Parse *sqlite3VdbeParser(Vdbe *p){ |
| return p->pParse; |
| } |
| |
| /* |
| ** Change the error string stored in Vdbe.zErrMsg |
| */ |
| void sqlite3VdbeError(Vdbe *p, const char *zFormat, ...){ |
| va_list ap; |
| sqlite3DbFree(p->db, p->zErrMsg); |
| va_start(ap, zFormat); |
| p->zErrMsg = sqlite3VMPrintf(p->db, zFormat, ap); |
| va_end(ap); |
| } |
| |
| /* |
| ** Remember the SQL string for a prepared statement. |
| */ |
| void sqlite3VdbeSetSql(Vdbe *p, const char *z, int n, u8 prepFlags){ |
| if( p==0 ) return; |
| p->prepFlags = prepFlags; |
| if( (prepFlags & SQLITE_PREPARE_SAVESQL)==0 ){ |
| p->expmask = 0; |
| } |
| assert( p->zSql==0 ); |
| p->zSql = sqlite3DbStrNDup(p->db, z, n); |
| } |
| |
| #ifdef SQLITE_ENABLE_NORMALIZE |
| /* |
| ** Add a new element to the Vdbe->pDblStr list. |
| */ |
| void sqlite3VdbeAddDblquoteStr(sqlite3 *db, Vdbe *p, const char *z){ |
| if( p ){ |
| int n = sqlite3Strlen30(z); |
| DblquoteStr *pStr = sqlite3DbMallocRawNN(db, |
| sizeof(*pStr)+n+1-sizeof(pStr->z)); |
| if( pStr ){ |
| pStr->pNextStr = p->pDblStr; |
| p->pDblStr = pStr; |
| memcpy(pStr->z, z, n+1); |
| } |
| } |
| } |
| #endif |
| |
| #ifdef SQLITE_ENABLE_NORMALIZE |
| /* |
| ** zId of length nId is a double-quoted identifier. Check to see if |
| ** that identifier is really used as a string literal. |
| */ |
| int sqlite3VdbeUsesDoubleQuotedString( |
| Vdbe *pVdbe, /* The prepared statement */ |
| const char *zId /* The double-quoted identifier, already dequoted */ |
| ){ |
| DblquoteStr *pStr; |
| assert( zId!=0 ); |
| if( pVdbe->pDblStr==0 ) return 0; |
| for(pStr=pVdbe->pDblStr; pStr; pStr=pStr->pNextStr){ |
| if( strcmp(zId, pStr->z)==0 ) return 1; |
| } |
| return 0; |
| } |
| #endif |
| |
| /* |
| ** Swap all content between two VDBE structures. |
| */ |
| void sqlite3VdbeSwap(Vdbe *pA, Vdbe *pB){ |
| Vdbe tmp, *pTmp; |
| char *zTmp; |
| assert( pA->db==pB->db ); |
| tmp = *pA; |
| *pA = *pB; |
| *pB = tmp; |
| pTmp = pA->pNext; |
| pA->pNext = pB->pNext; |
| pB->pNext = pTmp; |
| pTmp = pA->pPrev; |
| pA->pPrev = pB->pPrev; |
| pB->pPrev = pTmp; |
| zTmp = pA->zSql; |
| pA->zSql = pB->zSql; |
| pB->zSql = zTmp; |
| #ifdef SQLITE_ENABLE_NORMALIZE |
| zTmp = pA->zNormSql; |
| pA->zNormSql = pB->zNormSql; |
| pB->zNormSql = zTmp; |
| #endif |
| pB->expmask = pA->expmask; |
| pB->prepFlags = pA->prepFlags; |
| memcpy(pB->aCounter, pA->aCounter, sizeof(pB->aCounter)); |
| pB->aCounter[SQLITE_STMTSTATUS_REPREPARE]++; |
| } |
| |
| /* |
| ** Resize the Vdbe.aOp array so that it is at least nOp elements larger |
| ** than its current size. nOp is guaranteed to be less than or equal |
| ** to 1024/sizeof(Op). |
| ** |
| ** If an out-of-memory error occurs while resizing the array, return |
| ** SQLITE_NOMEM. In this case Vdbe.aOp and Vdbe.nOpAlloc remain |
| ** unchanged (this is so that any opcodes already allocated can be |
| ** correctly deallocated along with the rest of the Vdbe). |
| */ |
| static int growOpArray(Vdbe *v, int nOp){ |
| VdbeOp *pNew; |
| Parse *p = v->pParse; |
| |
| /* The SQLITE_TEST_REALLOC_STRESS compile-time option is designed to force |
| ** more frequent reallocs and hence provide more opportunities for |
| ** simulated OOM faults. SQLITE_TEST_REALLOC_STRESS is generally used |
| ** during testing only. With SQLITE_TEST_REALLOC_STRESS grow the op array |
| ** by the minimum* amount required until the size reaches 512. Normal |
| ** operation (without SQLITE_TEST_REALLOC_STRESS) is to double the current |
| ** size of the op array or add 1KB of space, whichever is smaller. */ |
| #ifdef SQLITE_TEST_REALLOC_STRESS |
| sqlite3_int64 nNew = (v->nOpAlloc>=512 ? 2*(sqlite3_int64)v->nOpAlloc |
| : (sqlite3_int64)v->nOpAlloc+nOp); |
| #else |
| sqlite3_int64 nNew = (v->nOpAlloc ? 2*(sqlite3_int64)v->nOpAlloc |
| : (sqlite3_int64)(1024/sizeof(Op))); |
| UNUSED_PARAMETER(nOp); |
| #endif |
| |
| /* Ensure that the size of a VDBE does not grow too large */ |
| if( nNew > p->db->aLimit[SQLITE_LIMIT_VDBE_OP] ){ |
| sqlite3OomFault(p->db); |
| return SQLITE_NOMEM; |
| } |
| |
| assert( nOp<=(1024/sizeof(Op)) ); |
| assert( nNew>=(v->nOpAlloc+nOp) ); |
| pNew = sqlite3DbRealloc(p->db, v->aOp, nNew*sizeof(Op)); |
| if( pNew ){ |
| p->szOpAlloc = sqlite3DbMallocSize(p->db, pNew); |
| v->nOpAlloc = p->szOpAlloc/sizeof(Op); |
| v->aOp = pNew; |
| } |
| return (pNew ? SQLITE_OK : SQLITE_NOMEM_BKPT); |
| } |
| |
| #ifdef SQLITE_DEBUG |
| /* This routine is just a convenient place to set a breakpoint that will |
| ** fire after each opcode is inserted and displayed using |
| ** "PRAGMA vdbe_addoptrace=on". Parameters "pc" (program counter) and |
| ** pOp are available to make the breakpoint conditional. |
| ** |
| ** Other useful labels for breakpoints include: |
| ** test_trace_breakpoint(pc,pOp) |
| ** sqlite3CorruptError(lineno) |
| ** sqlite3MisuseError(lineno) |
| ** sqlite3CantopenError(lineno) |
| */ |
| static void test_addop_breakpoint(int pc, Op *pOp){ |
| static int n = 0; |
| n++; |
| } |
| #endif |
| |
| /* |
| ** Add a new instruction to the list of instructions current in the |
| ** VDBE. Return the address of the new instruction. |
| ** |
| ** Parameters: |
| ** |
| ** p Pointer to the VDBE |
| ** |
| ** op The opcode for this instruction |
| ** |
| ** p1, p2, p3 Operands |
| ** |
| ** Use the sqlite3VdbeResolveLabel() function to fix an address and |
| ** the sqlite3VdbeChangeP4() function to change the value of the P4 |
| ** operand. |
| */ |
| static SQLITE_NOINLINE int growOp3(Vdbe *p, int op, int p1, int p2, int p3){ |
| assert( p->nOpAlloc<=p->nOp ); |
| if( growOpArray(p, 1) ) return 1; |
| assert( p->nOpAlloc>p->nOp ); |
| return sqlite3VdbeAddOp3(p, op, p1, p2, p3); |
| } |
| int sqlite3VdbeAddOp3(Vdbe *p, int op, int p1, int p2, int p3){ |
| int i; |
| VdbeOp *pOp; |
| |
| i = p->nOp; |
| assert( p->magic==VDBE_MAGIC_INIT ); |
| assert( op>=0 && op<0xff ); |
| if( p->nOpAlloc<=i ){ |
| return growOp3(p, op, p1, p2, p3); |
| } |
| p->nOp++; |
| pOp = &p->aOp[i]; |
| pOp->opcode = (u8)op; |
| pOp->p5 = 0; |
| pOp->p1 = p1; |
| pOp->p2 = p2; |
| pOp->p3 = p3; |
| pOp->p4.p = 0; |
| pOp->p4type = P4_NOTUSED; |
| #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS |
| pOp->zComment = 0; |
| #endif |
| #ifdef SQLITE_DEBUG |
| if( p->db->flags & SQLITE_VdbeAddopTrace ){ |
| sqlite3VdbePrintOp(0, i, &p->aOp[i]); |
| test_addop_breakpoint(i, &p->aOp[i]); |
| } |
| #endif |
| #ifdef VDBE_PROFILE |
| pOp->cycles = 0; |
| pOp->cnt = 0; |
| #endif |
| #ifdef SQLITE_VDBE_COVERAGE |
| pOp->iSrcLine = 0; |
| #endif |
| return i; |
| } |
| int sqlite3VdbeAddOp0(Vdbe *p, int op){ |
| return sqlite3VdbeAddOp3(p, op, 0, 0, 0); |
| } |
| int sqlite3VdbeAddOp1(Vdbe *p, int op, int p1){ |
| return sqlite3VdbeAddOp3(p, op, p1, 0, 0); |
| } |
| int sqlite3VdbeAddOp2(Vdbe *p, int op, int p1, int p2){ |
| return sqlite3VdbeAddOp3(p, op, p1, p2, 0); |
| } |
| |
| /* Generate code for an unconditional jump to instruction iDest |
| */ |
| int sqlite3VdbeGoto(Vdbe *p, int iDest){ |
| return sqlite3VdbeAddOp3(p, OP_Goto, 0, iDest, 0); |
| } |
| |
| /* Generate code to cause the string zStr to be loaded into |
| ** register iDest |
| */ |
| int sqlite3VdbeLoadString(Vdbe *p, int iDest, const char *zStr){ |
| return sqlite3VdbeAddOp4(p, OP_String8, 0, iDest, 0, zStr, 0); |
| } |
| |
| /* |
| ** Generate code that initializes multiple registers to string or integer |
| ** constants. The registers begin with iDest and increase consecutively. |
| ** One register is initialized for each characgter in zTypes[]. For each |
| ** "s" character in zTypes[], the register is a string if the argument is |
| ** not NULL, or OP_Null if the value is a null pointer. For each "i" character |
| ** in zTypes[], the register is initialized to an integer. |
| ** |
| ** If the input string does not end with "X" then an OP_ResultRow instruction |
| ** is generated for the values inserted. |
| */ |
| void sqlite3VdbeMultiLoad(Vdbe *p, int iDest, const char *zTypes, ...){ |
| va_list ap; |
| int i; |
| char c; |
| va_start(ap, zTypes); |
| for(i=0; (c = zTypes[i])!=0; i++){ |
| if( c=='s' ){ |
| const char *z = va_arg(ap, const char*); |
| sqlite3VdbeAddOp4(p, z==0 ? OP_Null : OP_String8, 0, iDest+i, 0, z, 0); |
| }else if( c=='i' ){ |
| sqlite3VdbeAddOp2(p, OP_Integer, va_arg(ap, int), iDest+i); |
| }else{ |
| goto skip_op_resultrow; |
| } |
| } |
| sqlite3VdbeAddOp2(p, OP_ResultRow, iDest, i); |
| skip_op_resultrow: |
| va_end(ap); |
| } |
| |
| /* |
| ** Add an opcode that includes the p4 value as a pointer. |
| */ |
| int sqlite3VdbeAddOp4( |
| Vdbe *p, /* Add the opcode to this VM */ |
| int op, /* The new opcode */ |
| int p1, /* The P1 operand */ |
| int p2, /* The P2 operand */ |
| int p3, /* The P3 operand */ |
| const char *zP4, /* The P4 operand */ |
| int p4type /* P4 operand type */ |
| ){ |
| int addr = sqlite3VdbeAddOp3(p, op, p1, p2, p3); |
| sqlite3VdbeChangeP4(p, addr, zP4, p4type); |
| return addr; |
| } |
| |
| /* |
| ** Add an OP_Function or OP_PureFunc opcode. |
| ** |
| ** The eCallCtx argument is information (typically taken from Expr.op2) |
| ** that describes the calling context of the function. 0 means a general |
| ** function call. NC_IsCheck means called by a check constraint, |
| ** NC_IdxExpr means called as part of an index expression. NC_PartIdx |
| ** means in the WHERE clause of a partial index. NC_GenCol means called |
| ** while computing a generated column value. 0 is the usual case. |
| */ |
| int sqlite3VdbeAddFunctionCall( |
| Parse *pParse, /* Parsing context */ |
| int p1, /* Constant argument mask */ |
| int p2, /* First argument register */ |
| int p3, /* Register into which results are written */ |
| int nArg, /* Number of argument */ |
| const FuncDef *pFunc, /* The function to be invoked */ |
| int eCallCtx /* Calling context */ |
| ){ |
| Vdbe *v = pParse->pVdbe; |
| int nByte; |
| int addr; |
| sqlite3_context *pCtx; |
| assert( v ); |
| nByte = sizeof(*pCtx) + (nArg-1)*sizeof(sqlite3_value*); |
| pCtx = sqlite3DbMallocRawNN(pParse->db, nByte); |
| if( pCtx==0 ){ |
| assert( pParse->db->mallocFailed ); |
| freeEphemeralFunction(pParse->db, (FuncDef*)pFunc); |
| return 0; |
| } |
| pCtx->pOut = 0; |
| pCtx->pFunc = (FuncDef*)pFunc; |
| pCtx->pVdbe = 0; |
| pCtx->isError = 0; |
| pCtx->argc = nArg; |
| pCtx->iOp = sqlite3VdbeCurrentAddr(v); |
| addr = sqlite3VdbeAddOp4(v, eCallCtx ? OP_PureFunc : OP_Function, |
| p1, p2, p3, (char*)pCtx, P4_FUNCCTX); |
| sqlite3VdbeChangeP5(v, eCallCtx & NC_SelfRef); |
| return addr; |
| } |
| |
| /* |
| ** Add an opcode that includes the p4 value with a P4_INT64 or |
| ** P4_REAL type. |
| */ |
| int sqlite3VdbeAddOp4Dup8( |
| Vdbe *p, /* Add the opcode to this VM */ |
| int op, /* The new opcode */ |
| int p1, /* The P1 operand */ |
| int p2, /* The P2 operand */ |
| int p3, /* The P3 operand */ |
| const u8 *zP4, /* The P4 operand */ |
| int p4type /* P4 operand type */ |
| ){ |
| char *p4copy = sqlite3DbMallocRawNN(sqlite3VdbeDb(p), 8); |
| if( p4copy ) memcpy(p4copy, zP4, 8); |
| return sqlite3VdbeAddOp4(p, op, p1, p2, p3, p4copy, p4type); |
| } |
| |
| #ifndef SQLITE_OMIT_EXPLAIN |
| /* |
| ** Return the address of the current EXPLAIN QUERY PLAN baseline. |
| ** 0 means "none". |
| */ |
| int sqlite3VdbeExplainParent(Parse *pParse){ |
| VdbeOp *pOp; |
| if( pParse->addrExplain==0 ) return 0; |
| pOp = sqlite3VdbeGetOp(pParse->pVdbe, pParse->addrExplain); |
| return pOp->p2; |
| } |
| |
| /* |
| ** Set a debugger breakpoint on the following routine in order to |
| ** monitor the EXPLAIN QUERY PLAN code generation. |
| */ |
| #if defined(SQLITE_DEBUG) |
| void sqlite3ExplainBreakpoint(const char *z1, const char *z2){ |
| (void)z1; |
| (void)z2; |
| } |
| #endif |
| |
| /* |
| ** Add a new OP_ opcode. |
| ** |
| ** If the bPush flag is true, then make this opcode the parent for |
| ** subsequent Explains until sqlite3VdbeExplainPop() is called. |
| */ |
| void sqlite3VdbeExplain(Parse *pParse, u8 bPush, const char *zFmt, ...){ |
| #ifndef SQLITE_DEBUG |
| /* Always include the OP_Explain opcodes if SQLITE_DEBUG is defined. |
| ** But omit them (for performance) during production builds */ |
| if( pParse->explain==2 ) |
| #endif |
| { |
| char *zMsg; |
| Vdbe *v; |
| va_list ap; |
| int iThis; |
| va_start(ap, zFmt); |
| zMsg = sqlite3VMPrintf(pParse->db, zFmt, ap); |
| va_end(ap); |
| v = pParse->pVdbe; |
| iThis = v->nOp; |
| sqlite3VdbeAddOp4(v, OP_Explain, iThis, pParse->addrExplain, 0, |
| zMsg, P4_DYNAMIC); |
| sqlite3ExplainBreakpoint(bPush?"PUSH":"", sqlite3VdbeGetOp(v,-1)->p4.z); |
| if( bPush){ |
| pParse->addrExplain = iThis; |
| } |
| } |
| } |
| |
| /* |
| ** Pop the EXPLAIN QUERY PLAN stack one level. |
| */ |
| void sqlite3VdbeExplainPop(Parse *pParse){ |
| sqlite3ExplainBreakpoint("POP", 0); |
| pParse->addrExplain = sqlite3VdbeExplainParent(pParse); |
| } |
| #endif /* SQLITE_OMIT_EXPLAIN */ |
| |
| /* |
| ** Add an OP_ParseSchema opcode. This routine is broken out from |
| ** sqlite3VdbeAddOp4() since it needs to also needs to mark all btrees |
| ** as having been used. |
| ** |
| ** The zWhere string must have been obtained from sqlite3_malloc(). |
| ** This routine will take ownership of the allocated memory. |
| */ |
| void sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere){ |
| int j; |
| sqlite3VdbeAddOp4(p, OP_ParseSchema, iDb, 0, 0, zWhere, P4_DYNAMIC); |
| for(j=0; j<p->db->nDb; j++) sqlite3VdbeUsesBtree(p, j); |
| } |
| |
| /* |
| ** Add an opcode that includes the p4 value as an integer. |
| */ |
| int sqlite3VdbeAddOp4Int( |
| Vdbe *p, /* Add the opcode to this VM */ |
| int op, /* The new opcode */ |
| int p1, /* The P1 operand */ |
| int p2, /* The P2 operand */ |
| int p3, /* The P3 operand */ |
| int p4 /* The P4 operand as an integer */ |
| ){ |
| int addr = sqlite3VdbeAddOp3(p, op, p1, p2, p3); |
| if( p->db->mallocFailed==0 ){ |
| VdbeOp *pOp = &p->aOp[addr]; |
| pOp->p4type = P4_INT32; |
| pOp->p4.i = p4; |
| } |
| return addr; |
| } |
| |
| /* Insert the end of a co-routine |
| */ |
| void sqlite3VdbeEndCoroutine(Vdbe *v, int regYield){ |
| sqlite3VdbeAddOp1(v, OP_EndCoroutine, regYield); |
| |
| /* Clear the temporary register cache, thereby ensuring that each |
| ** co-routine has its own independent set of registers, because co-routines |
| ** might expect their registers to be preserved across an OP_Yield, and |
| ** that could cause problems if two or more co-routines are using the same |
| ** temporary register. |
| */ |
| v->pParse->nTempReg = 0; |
| v->pParse->nRangeReg = 0; |
| } |
| |
| /* |
| ** Create a new symbolic label for an instruction that has yet to be |
| ** coded. The symbolic label is really just a negative number. The |
| ** label can be used as the P2 value of an operation. Later, when |
| ** the label is resolved to a specific address, the VDBE will scan |
| ** through its operation list and change all values of P2 which match |
| ** the label into the resolved address. |
| ** |
| ** The VDBE knows that a P2 value is a label because labels are |
| ** always negative and P2 values are suppose to be non-negative. |
| ** Hence, a negative P2 value is a label that has yet to be resolved. |
| ** (Later:) This is only true for opcodes that have the OPFLG_JUMP |
| ** property. |
| ** |
| ** Variable usage notes: |
| ** |
| ** Parse.aLabel[x] Stores the address that the x-th label resolves |
| ** into. For testing (SQLITE_DEBUG), unresolved |
| ** labels stores -1, but that is not required. |
| ** Parse.nLabelAlloc Number of slots allocated to Parse.aLabel[] |
| ** Parse.nLabel The *negative* of the number of labels that have |
| ** been issued. The negative is stored because |
| ** that gives a performance improvement over storing |
| ** the equivalent positive value. |
| */ |
| int sqlite3VdbeMakeLabel(Parse *pParse){ |
| return --pParse->nLabel; |
| } |
| |
| /* |
| ** Resolve label "x" to be the address of the next instruction to |
| ** be inserted. The parameter "x" must have been obtained from |
| ** a prior call to sqlite3VdbeMakeLabel(). |
| */ |
| static SQLITE_NOINLINE void resizeResolveLabel(Parse *p, Vdbe *v, int j){ |
| int nNewSize = 10 - p->nLabel; |
| p->aLabel = sqlite3DbReallocOrFree(p->db, p->aLabel, |
| nNewSize*sizeof(p->aLabel[0])); |
| if( p->aLabel==0 ){ |
| p->nLabelAlloc = 0; |
| }else{ |
| #ifdef SQLITE_DEBUG |
| int i; |
| for(i=p->nLabelAlloc; i<nNewSize; i++) p->aLabel[i] = -1; |
| #endif |
| p->nLabelAlloc = nNewSize; |
| p->aLabel[j] = v->nOp; |
| } |
| } |
| void sqlite3VdbeResolveLabel(Vdbe *v, int x){ |
| Parse *p = v->pParse; |
| int j = ADDR(x); |
| assert( v->magic==VDBE_MAGIC_INIT ); |
| assert( j<-p->nLabel ); |
| assert( j>=0 ); |
| #ifdef SQLITE_DEBUG |
| if( p->db->flags & SQLITE_VdbeAddopTrace ){ |
| printf("RESOLVE LABEL %d to %d\n", x, v->nOp); |
| } |
| #endif |
| if( p->nLabelAlloc + p->nLabel < 0 ){ |
| resizeResolveLabel(p,v,j); |
| }else{ |
| assert( p->aLabel[j]==(-1) ); /* Labels may only be resolved once */ |
| p->aLabel[j] = v->nOp; |
| } |
| } |
| |
| /* |
| ** Mark the VDBE as one that can only be run one time. |
| */ |
| void sqlite3VdbeRunOnlyOnce(Vdbe *p){ |
| p->runOnlyOnce = 1; |
| } |
| |
| /* |
| ** Mark the VDBE as one that can only be run multiple times. |
| */ |
| void sqlite3VdbeReusable(Vdbe *p){ |
| p->runOnlyOnce = 0; |
| } |
| |
| #ifdef SQLITE_DEBUG /* sqlite3AssertMayAbort() logic */ |
| |
| /* |
| ** The following type and function are used to iterate through all opcodes |
| ** in a Vdbe main program and each of the sub-programs (triggers) it may |
| ** invoke directly or indirectly. It should be used as follows: |
| ** |
| ** Op *pOp; |
| ** VdbeOpIter sIter; |
| ** |
| ** memset(&sIter, 0, sizeof(sIter)); |
| ** sIter.v = v; // v is of type Vdbe* |
| ** while( (pOp = opIterNext(&sIter)) ){ |
| ** // Do something with pOp |
| ** } |
| ** sqlite3DbFree(v->db, sIter.apSub); |
| ** |
| */ |
| typedef struct VdbeOpIter VdbeOpIter; |
| struct VdbeOpIter { |
| Vdbe *v; /* Vdbe to iterate through the opcodes of */ |
| SubProgram **apSub; /* Array of subprograms */ |
| int nSub; /* Number of entries in apSub */ |
| int iAddr; /* Address of next instruction to return */ |
| int iSub; /* 0 = main program, 1 = first sub-program etc. */ |
| }; |
| static Op *opIterNext(VdbeOpIter *p){ |
| Vdbe *v = p->v; |
| Op *pRet = 0; |
| Op *aOp; |
| int nOp; |
| |
| if( p->iSub<=p->nSub ){ |
| |
| if( p->iSub==0 ){ |
| aOp = v->aOp; |
| nOp = v->nOp; |
| }else{ |
| aOp = p->apSub[p->iSub-1]->aOp; |
| nOp = p->apSub[p->iSub-1]->nOp; |
| } |
| assert( p->iAddr<nOp ); |
| |
| pRet = &aOp[p->iAddr]; |
| p->iAddr++; |
| if( p->iAddr==nOp ){ |
| p->iSub++; |
| p->iAddr = 0; |
| } |
| |
| if( pRet->p4type==P4_SUBPROGRAM ){ |
| int nByte = (p->nSub+1)*sizeof(SubProgram*); |
| int j; |
| for(j=0; j<p->nSub; j++){ |
| if( p->apSub[j]==pRet->p4.pProgram ) break; |
| } |
| if( j==p->nSub ){ |
| p->apSub = sqlite3DbReallocOrFree(v->db, p->apSub, nByte); |
| if( !p->apSub ){ |
| pRet = 0; |
| }else{ |
| p->apSub[p->nSub++] = pRet->p4.pProgram; |
| } |
| } |
| } |
| } |
| |
| return pRet; |
| } |
| |
| /* |
| ** Check if the program stored in the VM associated with pParse may |
| ** throw an ABORT exception (causing the statement, but not entire transaction |
| ** to be rolled back). This condition is true if the main program or any |
| ** sub-programs contains any of the following: |
| ** |
| ** * OP_Halt with P1=SQLITE_CONSTRAINT and P2=OE_Abort. |
| ** * OP_HaltIfNull with P1=SQLITE_CONSTRAINT and P2=OE_Abort. |
| ** * OP_Destroy |
| ** * OP_VUpdate |
| ** * OP_VCreate |
| ** * OP_VRename |
| ** * OP_FkCounter with P2==0 (immediate foreign key constraint) |
| ** * OP_CreateBtree/BTREE_INTKEY and OP_InitCoroutine |
| ** (for CREATE TABLE AS SELECT ...) |
| ** |
| ** Then check that the value of Parse.mayAbort is true if an |
| ** ABORT may be thrown, or false otherwise. Return true if it does |
| ** match, or false otherwise. This function is intended to be used as |
| ** part of an assert statement in the compiler. Similar to: |
| ** |
| ** assert( sqlite3VdbeAssertMayAbort(pParse->pVdbe, pParse->mayAbort) ); |
| */ |
| int sqlite3VdbeAssertMayAbort(Vdbe *v, int mayAbort){ |
| int hasAbort = 0; |
| int hasFkCounter = 0; |
| int hasCreateTable = 0; |
| int hasCreateIndex = 0; |
| int hasInitCoroutine = 0; |
| Op *pOp; |
| VdbeOpIter sIter; |
| memset(&sIter, 0, sizeof(sIter)); |
| sIter.v = v; |
| |
| while( (pOp = opIterNext(&sIter))!=0 ){ |
| int opcode = pOp->opcode; |
| if( opcode==OP_Destroy || opcode==OP_VUpdate || opcode==OP_VRename |
| || opcode==OP_VDestroy |
| || opcode==OP_VCreate |
| || (opcode==OP_ParseSchema && pOp->p4.z==0) |
| || ((opcode==OP_Halt || opcode==OP_HaltIfNull) |
| && ((pOp->p1)!=SQLITE_OK && pOp->p2==OE_Abort)) |
| ){ |
| hasAbort = 1; |
| break; |
| } |
| if( opcode==OP_CreateBtree && pOp->p3==BTREE_INTKEY ) hasCreateTable = 1; |
| if( mayAbort ){ |
| /* hasCreateIndex may also be set for some DELETE statements that use |
| ** OP_Clear. So this routine may end up returning true in the case |
| ** where a "DELETE FROM tbl" has a statement-journal but does not |
| ** require one. This is not so bad - it is an inefficiency, not a bug. */ |
| if( opcode==OP_CreateBtree && pOp->p3==BTREE_BLOBKEY ) hasCreateIndex = 1; |
| if( opcode==OP_Clear ) hasCreateIndex = 1; |
| } |
| if( opcode==OP_InitCoroutine ) hasInitCoroutine = 1; |
| #ifndef SQLITE_OMIT_FOREIGN_KEY |
| if( opcode==OP_FkCounter && pOp->p1==0 && pOp->p2==1 ){ |
| hasFkCounter = 1; |
| } |
| #endif |
| } |
| sqlite3DbFree(v->db, sIter.apSub); |
| |
| /* Return true if hasAbort==mayAbort. Or if a malloc failure occurred. |
| ** If malloc failed, then the while() loop above may not have iterated |
| ** through all opcodes and hasAbort may be set incorrectly. Return |
| ** true for this case to prevent the assert() in the callers frame |
| ** from failing. */ |
| return ( v->db->mallocFailed || hasAbort==mayAbort || hasFkCounter |
| || (hasCreateTable && hasInitCoroutine) || hasCreateIndex |
| ); |
| } |
| #endif /* SQLITE_DEBUG - the sqlite3AssertMayAbort() function */ |
| |
| #ifdef SQLITE_DEBUG |
| /* |
| ** Increment the nWrite counter in the VDBE if the cursor is not an |
| ** ephemeral cursor, or if the cursor argument is NULL. |
| */ |
| void sqlite3VdbeIncrWriteCounter(Vdbe *p, VdbeCursor *pC){ |
| if( pC==0 |
| || (pC->eCurType!=CURTYPE_SORTER |
| && pC->eCurType!=CURTYPE_PSEUDO |
| && !pC->isEphemeral) |
| ){ |
| p->nWrite++; |
| } |
| } |
| #endif |
| |
| #ifdef SQLITE_DEBUG |
| /* |
| ** Assert if an Abort at this point in time might result in a corrupt |
| ** database. |
| */ |
| void sqlite3VdbeAssertAbortable(Vdbe *p){ |
| assert( p->nWrite==0 || p->usesStmtJournal ); |
| } |
| #endif |
| |
| /* |
| ** This routine is called after all opcodes have been inserted. It loops |
| ** through all the opcodes and fixes up some details. |
| ** |
| ** (1) For each jump instruction with a negative P2 value (a label) |
| ** resolve the P2 value to an actual address. |
| ** |
| ** (2) Compute the maximum number of arguments used by any SQL function |
| ** and store that value in *pMaxFuncArgs. |
| ** |
| ** (3) Update the Vdbe.readOnly and Vdbe.bIsReader flags to accurately |
| ** indicate what the prepared statement actually does. |
| ** |
| ** (4) Initialize the p4.xAdvance pointer on opcodes that use it. |
| ** |
| ** (5) Reclaim the memory allocated for storing labels. |
| ** |
| ** This routine will only function correctly if the mkopcodeh.tcl generator |
| ** script numbers the opcodes correctly. Changes to this routine must be |
| ** coordinated with changes to mkopcodeh.tcl. |
| */ |
| static void resolveP2Values(Vdbe *p, int *pMaxFuncArgs){ |
| int nMaxArgs = *pMaxFuncArgs; |
| Op *pOp; |
| Parse *pParse = p->pParse; |
| int *aLabel = pParse->aLabel; |
| p->readOnly = 1; |
| p->bIsReader = 0; |
| pOp = &p->aOp[p->nOp-1]; |
| while(1){ |
| |
| /* Only JUMP opcodes and the short list of special opcodes in the switch |
| ** below need to be considered. The mkopcodeh.tcl generator script groups |
| ** all these opcodes together near the front of the opcode list. Skip |
| ** any opcode that does not need processing by virtual of the fact that |
| ** it is larger than SQLITE_MX_JUMP_OPCODE, as a performance optimization. |
| */ |
| if( pOp->opcode<=SQLITE_MX_JUMP_OPCODE ){ |
| /* NOTE: Be sure to update mkopcodeh.tcl when adding or removing |
| ** cases from this switch! */ |
| switch( pOp->opcode ){ |
| case OP_Transaction: { |
| if( pOp->p2!=0 ) p->readOnly = 0; |
| /* fall thru */ |
| } |
| case OP_AutoCommit: |
| case OP_Savepoint: { |
| p->bIsReader = 1; |
| break; |
| } |
| #ifndef SQLITE_OMIT_WAL |
| case OP_Checkpoint: |
| #endif |
| case OP_Vacuum: |
| case OP_JournalMode: { |
| p->readOnly = 0; |
| p->bIsReader = 1; |
| break; |
| } |
| case OP_Next: |
| case OP_SorterNext: { |
| pOp->p4.xAdvance = sqlite3BtreeNext; |
| pOp->p4type = P4_ADVANCE; |
| /* The code generator never codes any of these opcodes as a jump |
| ** to a label. They are always coded as a jump backwards to a |
| ** known address */ |
| assert( pOp->p2>=0 ); |
| break; |
| } |
| case OP_Prev: { |
| pOp->p4.xAdvance = sqlite3BtreePrevious; |
| pOp->p4type = P4_ADVANCE; |
| /* The code generator never codes any of these opcodes as a jump |
| ** to a label. They are always coded as a jump backwards to a |
| ** known address */ |
| assert( pOp->p2>=0 ); |
| break; |
| } |
| #ifndef SQLITE_OMIT_VIRTUALTABLE |
| case OP_VUpdate: { |
| if( pOp->p2>nMaxArgs ) nMaxArgs = pOp->p2; |
| break; |
| } |
| case OP_VFilter: { |
| int n; |
| assert( (pOp - p->aOp) >= 3 ); |
| assert( pOp[-1].opcode==OP_Integer ); |
| n = pOp[-1].p1; |
| if( n>nMaxArgs ) nMaxArgs = n; |
| /* Fall through into the default case */ |
| } |
| #endif |
| default: { |
| if( pOp->p2<0 ){ |
| /* The mkopcodeh.tcl script has so arranged things that the only |
| ** non-jump opcodes less than SQLITE_MX_JUMP_CODE are guaranteed to |
| ** have non-negative values for P2. */ |
| assert( (sqlite3OpcodeProperty[pOp->opcode] & OPFLG_JUMP)!=0 ); |
| assert( ADDR(pOp->p2)<-pParse->nLabel ); |
| pOp->p2 = aLabel[ADDR(pOp->p2)]; |
| } |
| break; |
| } |
| } |
| /* The mkopcodeh.tcl script has so arranged things that the only |
| ** non-jump opcodes less than SQLITE_MX_JUMP_CODE are guaranteed to |
| ** have non-negative values for P2. */ |
| assert( (sqlite3OpcodeProperty[pOp->opcode]&OPFLG_JUMP)==0 || pOp->p2>=0); |
| } |
| if( pOp==p->aOp ) break; |
| pOp--; |
| } |
| sqlite3DbFree(p->db, pParse->aLabel); |
| pParse->aLabel = 0; |
| pParse->nLabel = 0; |
| *pMaxFuncArgs = nMaxArgs; |
| assert( p->bIsReader!=0 || DbMaskAllZero(p->btreeMask) ); |
| } |
| |
| /* |
| ** Return the address of the next instruction to be inserted. |
| */ |
| int sqlite3VdbeCurrentAddr(Vdbe *p){ |
| assert( p->magic==VDBE_MAGIC_INIT ); |
| return p->nOp; |
| } |
| |
| /* |
| ** Verify that at least N opcode slots are available in p without |
| ** having to malloc for more space (except when compiled using |
| ** SQLITE_TEST_REALLOC_STRESS). This interface is used during testing |
| ** to verify that certain calls to sqlite3VdbeAddOpList() can never |
| ** fail due to a OOM fault and hence that the return value from |
| ** sqlite3VdbeAddOpList() will always be non-NULL. |
| */ |
| #if defined(SQLITE_DEBUG) && !defined(SQLITE_TEST_REALLOC_STRESS) |
| void sqlite3VdbeVerifyNoMallocRequired(Vdbe *p, int N){ |
| assert( p->nOp + N <= p->nOpAlloc ); |
| } |
| #endif |
| |
| /* |
| ** Verify that the VM passed as the only argument does not contain |
| ** an OP_ResultRow opcode. Fail an assert() if it does. This is used |
| ** by code in pragma.c to ensure that the implementation of certain |
| ** pragmas comports with the flags specified in the mkpragmatab.tcl |
| ** script. |
| */ |
| #if defined(SQLITE_DEBUG) && !defined(SQLITE_TEST_REALLOC_STRESS) |
| void sqlite3VdbeVerifyNoResultRow(Vdbe *p){ |
| int i; |
| for(i=0; i<p->nOp; i++){ |
| assert( p->aOp[i].opcode!=OP_ResultRow ); |
| } |
| } |
| #endif |
| |
| /* |
| ** Generate code (a single OP_Abortable opcode) that will |
| ** verify that the VDBE program can safely call Abort in the current |
| ** context. |
| */ |
| #if defined(SQLITE_DEBUG) |
| void sqlite3VdbeVerifyAbortable(Vdbe *p, int onError){ |
| if( onError==OE_Abort ) sqlite3VdbeAddOp0(p, OP_Abortable); |
| } |
| #endif |
| |
| /* |
| ** This function returns a pointer to the array of opcodes associated with |
| ** the Vdbe passed as the first argument. It is the callers responsibility |
| ** to arrange for the returned array to be eventually freed using the |
| ** vdbeFreeOpArray() function. |
| ** |
| ** Before returning, *pnOp is set to the number of entries in the returned |
| ** array. Also, *pnMaxArg is set to the larger of its current value and |
| ** the number of entries in the Vdbe.apArg[] array required to execute the |
| ** returned program. |
| */ |
| VdbeOp *sqlite3VdbeTakeOpArray(Vdbe *p, int *pnOp, int *pnMaxArg){ |
| VdbeOp *aOp = p->aOp; |
| assert( aOp && !p->db->mallocFailed ); |
| |
| /* Check that sqlite3VdbeUsesBtree() was not called on this VM */ |
| assert( DbMaskAllZero(p->btreeMask) ); |
| |
| resolveP2Values(p, pnMaxArg); |
| *pnOp = p->nOp; |
| p->aOp = 0; |
| return aOp; |
| } |
| |
| /* |
| ** Add a whole list of operations to the operation stack. Return a |
| ** pointer to the first operation inserted. |
| ** |
| ** Non-zero P2 arguments to jump instructions are automatically adjusted |
| ** so that the jump target is relative to the first operation inserted. |
| */ |
| VdbeOp *sqlite3VdbeAddOpList( |
| Vdbe *p, /* Add opcodes to the prepared statement */ |
| int nOp, /* Number of opcodes to add */ |
| VdbeOpList const *aOp, /* The opcodes to be added */ |
| int iLineno /* Source-file line number of first opcode */ |
| ){ |
| int i; |
| VdbeOp *pOut, *pFirst; |
| assert( nOp>0 ); |
| assert( p->magic==VDBE_MAGIC_INIT ); |
| if( p->nOp + nOp > p->nOpAlloc && growOpArray(p, nOp) ){ |
| return 0; |
| } |
| pFirst = pOut = &p->aOp[p->nOp]; |
| for(i=0; i<nOp; i++, aOp++, pOut++){ |
| pOut->opcode = aOp->opcode; |
| pOut->p1 = aOp->p1; |
| pOut->p2 = aOp->p2; |
| assert( aOp->p2>=0 ); |
| if( (sqlite3OpcodeProperty[aOp->opcode] & OPFLG_JUMP)!=0 && aOp->p2>0 ){ |
| pOut->p2 += p->nOp; |
| } |
| pOut->p3 = aOp->p3; |
| pOut->p4type = P4_NOTUSED; |
| pOut->p4.p = 0; |
| pOut->p5 = 0; |
| #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS |
| pOut->zComment = 0; |
| #endif |
| #ifdef SQLITE_VDBE_COVERAGE |
| pOut->iSrcLine = iLineno+i; |
| #else |
| (void)iLineno; |
| #endif |
| #ifdef SQLITE_DEBUG |
| if( p->db->flags & SQLITE_VdbeAddopTrace ){ |
| sqlite3VdbePrintOp(0, i+p->nOp, &p->aOp[i+p->nOp]); |
| } |
| #endif |
| } |
| p->nOp += nOp; |
| return pFirst; |
| } |
| |
| #if defined(SQLITE_ENABLE_STMT_SCANSTATUS) |
| /* |
| ** Add an entry to the array of counters managed by sqlite3_stmt_scanstatus(). |
| */ |
| void sqlite3VdbeScanStatus( |
| Vdbe *p, /* VM to add scanstatus() to */ |
| int addrExplain, /* Address of OP_Explain (or 0) */ |
| int addrLoop, /* Address of loop counter */ |
| int addrVisit, /* Address of rows visited counter */ |
| LogEst nEst, /* Estimated number of output rows */ |
| const char *zName /* Name of table or index being scanned */ |
| ){ |
| sqlite3_int64 nByte = (p->nScan+1) * sizeof(ScanStatus); |
| ScanStatus *aNew; |
| aNew = (ScanStatus*)sqlite3DbRealloc(p->db, p->aScan, nByte); |
| if( aNew ){ |
| ScanStatus *pNew = &aNew[p->nScan++]; |
| pNew->addrExplain = addrExplain; |
| pNew->addrLoop = addrLoop; |
| pNew->addrVisit = addrVisit; |
| pNew->nEst = nEst; |
| pNew->zName = sqlite3DbStrDup(p->db, zName); |
| p->aScan = aNew; |
| } |
| } |
| #endif |
| |
| |
| /* |
| ** Change the value of the opcode, or P1, P2, P3, or P5 operands |
| ** for a specific instruction. |
| */ |
| void sqlite3VdbeChangeOpcode(Vdbe *p, int addr, u8 iNewOpcode){ |
| sqlite3VdbeGetOp(p,addr)->opcode = iNewOpcode; |
| } |
| void sqlite3VdbeChangeP1(Vdbe *p, int addr, int val){ |
| sqlite3VdbeGetOp(p,addr)->p1 = val; |
| } |
| void sqlite3VdbeChangeP2(Vdbe *p, int addr, int val){ |
| sqlite3VdbeGetOp(p,addr)->p2 = val; |
| } |
| void sqlite3VdbeChangeP3(Vdbe *p, int addr, int val){ |
| sqlite3VdbeGetOp(p,addr)->p3 = val; |
| } |
| void sqlite3VdbeChangeP5(Vdbe *p, u16 p5){ |
| assert( p->nOp>0 || p->db->mallocFailed ); |
| if( p->nOp>0 ) p->aOp[p->nOp-1].p5 = p5; |
| } |
| |
| /* |
| ** Change the P2 operand of instruction addr so that it points to |
| ** the address of the next instruction to be coded. |
| */ |
| void sqlite3VdbeJumpHere(Vdbe *p, int addr){ |
| sqlite3VdbeChangeP2(p, addr, p->nOp); |
| } |
| |
| |
| /* |
| ** If the input FuncDef structure is ephemeral, then free it. If |
| ** the FuncDef is not ephermal, then do nothing. |
| */ |
| static void freeEphemeralFunction(sqlite3 *db, FuncDef *pDef){ |
| if( (pDef->funcFlags & SQLITE_FUNC_EPHEM)!=0 ){ |
| sqlite3DbFreeNN(db, pDef); |
| } |
| } |
| |
| /* |
| ** Delete a P4 value if necessary. |
| */ |
| static SQLITE_NOINLINE void freeP4Mem(sqlite3 *db, Mem *p){ |
| if( p->szMalloc ) sqlite3DbFree(db, p->zMalloc); |
| sqlite3DbFreeNN(db, p); |
| } |
| static SQLITE_NOINLINE void freeP4FuncCtx(sqlite3 *db, sqlite3_context *p){ |
| freeEphemeralFunction(db, p->pFunc); |
| sqlite3DbFreeNN(db, p); |
| } |
| static void freeP4(sqlite3 *db, int p4type, void *p4){ |
| assert( db ); |
| switch( p4type ){ |
| case P4_FUNCCTX: { |
| freeP4FuncCtx(db, (sqlite3_context*)p4); |
| break; |
| } |
| case P4_REAL: |
| case P4_INT64: |
| case P4_DYNAMIC: |
| case P4_DYNBLOB: |
| case P4_INTARRAY: { |
| sqlite3DbFree(db, p4); |
| break; |
| } |
| case P4_KEYINFO: { |
| if( db->pnBytesFreed==0 ) sqlite3KeyInfoUnref((KeyInfo*)p4); |
| break; |
| } |
| #ifdef SQLITE_ENABLE_CURSOR_HINTS |
| case P4_EXPR: { |
| sqlite3ExprDelete(db, (Expr*)p4); |
| break; |
| } |
| #endif |
| case P4_FUNCDEF: { |
| freeEphemeralFunction(db, (FuncDef*)p4); |
| break; |
| } |
| case P4_MEM: { |
| if( db->pnBytesFreed==0 ){ |
| sqlite3ValueFree((sqlite3_value*)p4); |
| }else{ |
| freeP4Mem(db, (Mem*)p4); |
| } |
| break; |
| } |
| case P4_VTAB : { |
| if( db->pnBytesFreed==0 ) sqlite3VtabUnlock((VTable *)p4); |
| break; |
| } |
| } |
| } |
| |
| /* |
| ** Free the space allocated for aOp and any p4 values allocated for the |
| ** opcodes contained within. If aOp is not NULL it is assumed to contain |
| ** nOp entries. |
| */ |
| static void vdbeFreeOpArray(sqlite3 *db, Op *aOp, int nOp){ |
| if( aOp ){ |
| Op *pOp; |
| for(pOp=&aOp[nOp-1]; pOp>=aOp; pOp--){ |
| if( pOp->p4type <= P4_FREE_IF_LE ) freeP4(db, pOp->p4type, pOp->p4.p); |
| #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS |
| sqlite3DbFree(db, pOp->zComment); |
| #endif |
| } |
| sqlite3DbFreeNN(db, aOp); |
| } |
| } |
| |
| /* |
| ** Link the SubProgram object passed as the second argument into the linked |
| ** list at Vdbe.pSubProgram. This list is used to delete all sub-program |
| ** objects when the VM is no longer required. |
| */ |
| void sqlite3VdbeLinkSubProgram(Vdbe *pVdbe, SubProgram *p){ |
| p->pNext = pVdbe->pProgram; |
| pVdbe->pProgram = p; |
| } |
| |
| /* |
| ** Return true if the given Vdbe has any SubPrograms. |
| */ |
| int sqlite3VdbeHasSubProgram(Vdbe *pVdbe){ |
| return pVdbe->pProgram!=0; |
| } |
| |
| /* |
| ** Change the opcode at addr into OP_Noop |
| */ |
| int sqlite3VdbeChangeToNoop(Vdbe *p, int addr){ |
| VdbeOp *pOp; |
| if( p->db->mallocFailed ) return 0; |
| assert( addr>=0 && addr<p->nOp ); |
| pOp = &p->aOp[addr]; |
| freeP4(p->db, pOp->p4type, pOp->p4.p); |
| pOp->p4type = P4_NOTUSED; |
| pOp->p4.z = 0; |
| pOp->opcode = OP_Noop; |
| return 1; |
| } |
| |
| /* |
| ** If the last opcode is "op" and it is not a jump destination, |
| ** then remove it. Return true if and only if an opcode was removed. |
| */ |
| int sqlite3VdbeDeletePriorOpcode(Vdbe *p, u8 op){ |
| if( p->nOp>0 && p->aOp[p->nOp-1].opcode==op ){ |
| return sqlite3VdbeChangeToNoop(p, p->nOp-1); |
| }else{ |
| return 0; |
| } |
| } |
| |
| #ifdef SQLITE_DEBUG |
| /* |
| ** Generate an OP_ReleaseReg opcode to indicate that a range of |
| ** registers, except any identified by mask, are no longer in use. |
| */ |
| void sqlite3VdbeReleaseRegisters( |
| Parse *pParse, /* Parsing context */ |
| int iFirst, /* Index of first register to be released */ |
| int N, /* Number of registers to release */ |
| u32 mask, /* Mask of registers to NOT release */ |
| int bUndefine /* If true, mark registers as undefined */ |
| ){ |
| if( N==0 ) return; |
| assert( pParse->pVdbe ); |
| assert( iFirst>=1 ); |
| assert( iFirst+N-1<=pParse->nMem ); |
| if( N<=31 && mask!=0 ){ |
| while( N>0 && (mask&1)!=0 ){ |
| mask >>= 1; |
| iFirst++; |
| N--; |
| } |
| while( N>0 && N<=32 && (mask & MASKBIT32(N-1))!=0 ){ |
| mask &= ~MASKBIT32(N-1); |
| N--; |
| } |
| } |
| if( N>0 ){ |
| sqlite3VdbeAddOp3(pParse->pVdbe, OP_ReleaseReg, iFirst, N, *(int*)&mask); |
| if( bUndefine ) sqlite3VdbeChangeP5(pParse->pVdbe, 1); |
| } |
| } |
| #endif /* SQLITE_DEBUG */ |
| |
| |
| /* |
| ** Change the value of the P4 operand for a specific instruction. |
| ** This routine is useful when a large program is loaded from a |
| ** static array using sqlite3VdbeAddOpList but we want to make a |
| ** few minor changes to the program. |
| ** |
| ** If n>=0 then the P4 operand is dynamic, meaning that a copy of |
| ** the string is made into memory obtained from sqlite3_malloc(). |
| ** A value of n==0 means copy bytes of zP4 up to and including the |
| ** first null byte. If n>0 then copy n+1 bytes of zP4. |
| ** |
| ** Other values of n (P4_STATIC, P4_COLLSEQ etc.) indicate that zP4 points |
| ** to a string or structure that is guaranteed to exist for the lifetime of |
| ** the Vdbe. In these cases we can just copy the pointer. |
| ** |
| ** If addr<0 then change P4 on the most recently inserted instruction. |
| */ |
| static void SQLITE_NOINLINE vdbeChangeP4Full( |
| Vdbe *p, |
| Op *pOp, |
| const char *zP4, |
| int n |
| ){ |
| if( pOp->p4type ){ |
| freeP4(p->db, pOp->p4type, pOp->p4.p); |
| pOp->p4type = 0; |
| pOp->p4.p = 0; |
| } |
| if( n<0 ){ |
| sqlite3VdbeChangeP4(p, (int)(pOp - p->aOp), zP4, n); |
| }else{ |
| if( n==0 ) n = sqlite3Strlen30(zP4); |
| pOp->p4.z = sqlite3DbStrNDup(p->db, zP4, n); |
| pOp->p4type = P4_DYNAMIC; |
| } |
| } |
| void sqlite3VdbeChangeP4(Vdbe *p, int addr, const char *zP4, int n){ |
| Op *pOp; |
| sqlite3 *db; |
| assert( p!=0 ); |
| db = p->db; |
| assert( p->magic==VDBE_MAGIC_INIT ); |
| assert( p->aOp!=0 || db->mallocFailed ); |
| if( db->mallocFailed ){ |
| if( n!=P4_VTAB ) freeP4(db, n, (void*)*(char**)&zP4); |
| return; |
| } |
| assert( p->nOp>0 ); |
| assert( addr<p->nOp ); |
| if( addr<0 ){ |
| addr = p->nOp - 1; |
| } |
| pOp = &p->aOp[addr]; |
| if( n>=0 || pOp->p4type ){ |
| vdbeChangeP4Full(p, pOp, zP4, n); |
| return; |
| } |
| if( n==P4_INT32 ){ |
| /* Note: this cast is safe, because the origin data point was an int |
| ** that was cast to a (const char *). */ |
| pOp->p4.i = SQLITE_PTR_TO_INT(zP4); |
| pOp->p4type = P4_INT32; |
| }else if( zP4!=0 ){ |
| assert( n<0 ); |
| pOp->p4.p = (void*)zP4; |
| pOp->p4type = (signed char)n; |
| if( n==P4_VTAB ) sqlite3VtabLock((VTable*)zP4); |
| } |
| } |
| |
| /* |
| ** Change the P4 operand of the most recently coded instruction |
| ** to the value defined by the arguments. This is a high-speed |
| ** version of sqlite3VdbeChangeP4(). |
| ** |
| ** The P4 operand must not have been previously defined. And the new |
| ** P4 must not be P4_INT32. Use sqlite3VdbeChangeP4() in either of |
| ** those cases. |
| */ |
| void sqlite3VdbeAppendP4(Vdbe *p, void *pP4, int n){ |
| VdbeOp *pOp; |
| assert( n!=P4_INT32 && n!=P4_VTAB ); |
| assert( n<=0 ); |
| if( p->db->mallocFailed ){ |
| freeP4(p->db, n, pP4); |
| }else{ |
| assert( pP4!=0 ); |
| assert( p->nOp>0 ); |
| pOp = &p->aOp[p->nOp-1]; |
| assert( pOp->p4type==P4_NOTUSED ); |
| pOp->p4type = n; |
| pOp->p4.p = pP4; |
| } |
| } |
| |
| /* |
| ** Set the P4 on the most recently added opcode to the KeyInfo for the |
| ** index given. |
| */ |
| void sqlite3VdbeSetP4KeyInfo(Parse *pParse, Index *pIdx){ |
| Vdbe *v = pParse->pVdbe; |
| KeyInfo *pKeyInfo; |
| assert( v!=0 ); |
| assert( pIdx!=0 ); |
| pKeyInfo = sqlite3KeyInfoOfIndex(pParse, pIdx); |
| if( pKeyInfo ) sqlite3VdbeAppendP4(v, pKeyInfo, P4_KEYINFO); |
| } |
| |
| #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS |
| /* |
| ** Change the comment on the most recently coded instruction. Or |
| ** insert a No-op and add the comment to that new instruction. This |
| ** makes the code easier to read during debugging. None of this happens |
| ** in a production build. |
| */ |
| static void vdbeVComment(Vdbe *p, const char *zFormat, va_list ap){ |
| assert( p->nOp>0 || p->aOp==0 ); |
| assert( p->aOp==0 || p->aOp[p->nOp-1].zComment==0 || p->db->mallocFailed |
| || p->pParse->nErr>0 ); |
| if( p->nOp ){ |
| assert( p->aOp ); |
| sqlite3DbFree(p->db, p->aOp[p->nOp-1].zComment); |
| p->aOp[p->nOp-1].zComment = sqlite3VMPrintf(p->db, zFormat, ap); |
| } |
| } |
| void sqlite3VdbeComment(Vdbe *p, const char *zFormat, ...){ |
| va_list ap; |
| if( p ){ |
| va_start(ap, zFormat); |
| vdbeVComment(p, zFormat, ap); |
| va_end(ap); |
| } |
| } |
| void sqlite3VdbeNoopComment(Vdbe *p, const char *zFormat, ...){ |
| va_list ap; |
| if( p ){ |
| sqlite3VdbeAddOp0(p, OP_Noop); |
| va_start(ap, zFormat); |
| vdbeVComment(p, zFormat, ap); |
| va_end(ap); |
| } |
| } |
| #endif /* NDEBUG */ |
| |
| #ifdef SQLITE_VDBE_COVERAGE |
| /* |
| ** Set the value if the iSrcLine field for the previously coded instruction. |
| */ |
| void sqlite3VdbeSetLineNumber(Vdbe *v, int iLine){ |
| sqlite3VdbeGetOp(v,-1)->iSrcLine = iLine; |
| } |
| #endif /* SQLITE_VDBE_COVERAGE */ |
| |
| /* |
| ** Return the opcode for a given address. If the address is -1, then |
| ** return the most recently inserted opcode. |
| ** |
| ** If a memory allocation error has occurred prior to the calling of this |
| ** routine, then a pointer to a dummy VdbeOp will be returned. That opcode |
| ** is readable but not writable, though it is cast to a writable value. |
| ** The return of a dummy opcode allows the call to continue functioning |
| ** after an OOM fault without having to check to see if the return from |
| ** this routine is a valid pointer. But because the dummy.opcode is 0, |
| ** dummy will never be written to. This is verified by code inspection and |
| ** by running with Valgrind. |
| */ |
| VdbeOp *sqlite3VdbeGetOp(Vdbe *p, int addr){ |
| /* C89 specifies that the constant "dummy" will be initialized to all |
| ** zeros, which is correct. MSVC generates a warning, nevertheless. */ |
| static VdbeOp dummy; /* Ignore the MSVC warning about no initializer */ |
| assert( p->magic==VDBE_MAGIC_INIT ); |
| if( addr<0 ){ |
| addr = p->nOp - 1; |
| } |
| assert( (addr>=0 && addr<p->nOp) || p->db->mallocFailed ); |
| if( p->db->mallocFailed ){ |
| return (VdbeOp*)&dummy; |
| }else{ |
| return &p->aOp[addr]; |
| } |
| } |
| |
| #if defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) |
| /* |
| ** Return an integer value for one of the parameters to the opcode pOp |
| ** determined by character c. |
| */ |
| static int translateP(char c, const Op *pOp){ |
| if( c=='1' ) return pOp->p1; |
| if( c=='2' ) return pOp->p2; |
| if( c=='3' ) return pOp->p3; |
| if( c=='4' ) return pOp->p4.i; |
| return pOp->p5; |
| } |
| |
| /* |
| ** Compute a string for the "comment" field of a VDBE opcode listing. |
| ** |
| ** The Synopsis: field in comments in the vdbe.c source file gets converted |
| ** to an extra string that is appended to the sqlite3OpcodeName(). In the |
| ** absence of other comments, this synopsis becomes the comment on the opcode. |
| ** Some translation occurs: |
| ** |
| ** "PX" -> "r[X]" |
| ** "PX@PY" -> "r[X..X+Y-1]" or "r[x]" if y is 0 or 1 |
| ** "PX@PY+1" -> "r[X..X+Y]" or "r[x]" if y is 0 |
| ** "PY..PY" -> "r[X..Y]" or "r[x]" if y<=x |
| */ |
| static int displayComment( |
| const Op *pOp, /* The opcode to be commented */ |
| const char *zP4, /* Previously obtained value for P4 */ |
| char *zTemp, /* Write result here */ |
| int nTemp /* Space available in zTemp[] */ |
| ){ |
| const char *zOpName; |
| const char *zSynopsis; |
| int nOpName; |
| int ii; |
| char zAlt[50]; |
| StrAccum x; |
| sqlite3StrAccumInit(&x, 0, zTemp, nTemp, 0); |
| |
| zOpName = sqlite3OpcodeName(pOp->opcode); |
| nOpName = sqlite3Strlen30(zOpName); |
| if( zOpName[nOpName+1] ){ |
| int seenCom = 0; |
| char c; |
| zSynopsis = zOpName += nOpName + 1; |
| if( strncmp(zSynopsis,"IF ",3)==0 ){ |
| if( pOp->p5 & SQLITE_STOREP2 ){ |
| sqlite3_snprintf(sizeof(zAlt), zAlt, "r[P2] = (%s)", zSynopsis+3); |
| }else{ |
| sqlite3_snprintf(sizeof(zAlt), zAlt, "if %s goto P2", zSynopsis+3); |
| } |
| zSynopsis = zAlt; |
| } |
| for(ii=0; (c = zSynopsis[ii])!=0; ii++){ |
| if( c=='P' ){ |
| c = zSynopsis[++ii]; |
| if( c=='4' ){ |
| sqlite3_str_appendall(&x, zP4); |
| }else if( c=='X' ){ |
| sqlite3_str_appendall(&x, pOp->zComment); |
| seenCom = 1; |
| }else{ |
| int v1 = translateP(c, pOp); |
| int v2; |
| if( strncmp(zSynopsis+ii+1, "@P", 2)==0 ){ |
| ii += 3; |
| v2 = translateP(zSynopsis[ii], pOp); |
| if( strncmp(zSynopsis+ii+1,"+1",2)==0 ){ |
| ii += 2; |
| v2++; |
| } |
| if( v2<2 ){ |
| sqlite3_str_appendf(&x, "%d", v1); |
| }else{ |
| sqlite3_str_appendf(&x, "%d..%d", v1, v1+v2-1); |
| } |
| }else if( strncmp(zSynopsis+ii+1, "@NP", 3)==0 ){ |
| sqlite3_context *pCtx = pOp->p4.pCtx; |
| if( pOp->p4type!=P4_FUNCCTX || pCtx->argc==1 ){ |
| sqlite3_str_appendf(&x, "%d", v1); |
| }else if( pCtx->argc>1 ){ |
| sqlite3_str_appendf(&x, "%d..%d", v1, v1+pCtx->argc-1); |
| }else{ |
| assert( x.nChar>2 ); |
| x.nChar -= 2; |
| ii++; |
| } |
| ii += 3; |
| }else{ |
| sqlite3_str_appendf(&x, "%d", v1); |
| if( strncmp(zSynopsis+ii+1, "..P3", 4)==0 && pOp->p3==0 ){ |
| ii += 4; |
| } |
| } |
| } |
| }else{ |
| sqlite3_str_appendchar(&x, 1, c); |
| } |
| } |
| if( !seenCom && pOp->zComment ){ |
| sqlite3_str_appendf(&x, "; %s", pOp->zComment); |
| } |
| }else if( pOp->zComment ){ |
| sqlite3_str_appendall(&x, pOp->zComment); |
| } |
| sqlite3StrAccumFinish(&x); |
| return x.nChar; |
| } |
| #endif /* SQLITE_DEBUG */ |
| |
| #if VDBE_DISPLAY_P4 && defined(SQLITE_ENABLE_CURSOR_HINTS) |
| /* |
| ** Translate the P4.pExpr value for an OP_CursorHint opcode into text |
| ** that can be displayed in the P4 column of EXPLAIN output. |
| */ |
| static void displayP4Expr(StrAccum *p, Expr *pExpr){ |
| const char *zOp = 0; |
| switch( pExpr->op ){ |
| case TK_STRING: |
| sqlite3_str_appendf(p, "%Q", pExpr->u.zToken); |
| break; |
| case TK_INTEGER: |
| sqlite3_str_appendf(p, "%d", pExpr->u.iValue); |
| break; |
| case TK_NULL: |
| sqlite3_str_appendf(p, "NULL"); |
| break; |
| case TK_REGISTER: { |
| sqlite3_str_appendf(p, "r[%d]", pExpr->iTable); |
| break; |
| } |
| case TK_COLUMN: { |
| if( pExpr->iColumn<0 ){ |
| sqlite3_str_appendf(p, "rowid"); |
| }else{ |
| sqlite3_str_appendf(p, "c%d", (int)pExpr->iColumn); |
| } |
| break; |
| } |
| case TK_LT: zOp = "LT"; break; |
| case TK_LE: zOp = "LE"; break; |
| case TK_GT: zOp = "GT"; break; |
| case TK_GE: zOp = "GE"; break; |
| case TK_NE: zOp = "NE"; break; |
| case TK_EQ: zOp = "EQ"; break; |
| case TK_IS: zOp = "IS"; break; |
| case TK_ISNOT: zOp = "ISNOT"; break; |
| case TK_AND: zOp = "AND"; break; |
| case TK_OR: zOp = "OR"; break; |
| case TK_PLUS: zOp = "ADD"; break; |
| case TK_STAR: zOp = "MUL"; break; |
| case TK_MINUS: zOp = "SUB"; break; |
| case TK_REM: zOp = "REM"; break; |
| case TK_BITAND: zOp = "BITAND"; break; |
| case TK_BITOR: zOp = "BITOR"; break; |
| case TK_SLASH: zOp = "DIV"; break; |
| case TK_LSHIFT: zOp = "LSHIFT"; break; |
| case TK_RSHIFT: zOp = "RSHIFT"; break; |
| case TK_CONCAT: zOp = "CONCAT"; break; |
| case TK_UMINUS: zOp = "MINUS"; break; |
| case TK_UPLUS: zOp = "PLUS"; break; |
| case TK_BITNOT: zOp = "BITNOT"; break; |
| case TK_NOT: zOp = "NOT"; break; |
| case TK_ISNULL: zOp = "ISNULL"; break; |
| case TK_NOTNULL: zOp = "NOTNULL"; break; |
| |
| default: |
| sqlite3_str_appendf(p, "%s", "expr"); |
| break; |
| } |
| |
| if( zOp ){ |
| sqlite3_str_appendf(p, "%s(", zOp); |
| displayP4Expr(p, pExpr->pLeft); |
| if( pExpr->pRight ){ |
| sqlite3_str_append(p, ",", 1); |
| displayP4Expr(p, pExpr->pRight); |
| } |
| sqlite3_str_append(p, ")", 1); |
| } |
| } |
| #endif /* VDBE_DISPLAY_P4 && defined(SQLITE_ENABLE_CURSOR_HINTS) */ |
| |
| |
| #if VDBE_DISPLAY_P4 |
| /* |
| ** Compute a string that describes the P4 parameter for an opcode. |
| ** Use zTemp for any required temporary buffer space. |
| */ |
| static char *displayP4(Op *pOp, char *zTemp, int nTemp){ |
| char *zP4 = zTemp; |
| StrAccum x; |
| assert( nTemp>=20 ); |
| sqlite3StrAccumInit(&x, 0, zTemp, nTemp, 0); |
| switch( pOp->p4type ){ |
| case P4_KEYINFO: { |
| int j; |
| KeyInfo *pKeyInfo = pOp->p4.pKeyInfo; |
| assert( pKeyInfo->aSortFlags!=0 ); |
| sqlite3_str_appendf(&x, "k(%d", pKeyInfo->nKeyField); |
| for(j=0; j<pKeyInfo->nKeyField; j++){ |
| CollSeq *pColl = pKeyInfo->aColl[j]; |
| const char *zColl = pColl ? pColl->zName : ""; |
| if( strcmp(zColl, "BINARY")==0 ) zColl = "B"; |
| sqlite3_str_appendf(&x, ",%s%s%s", |
| (pKeyInfo->aSortFlags[j] & KEYINFO_ORDER_DESC) ? "-" : "", |
| (pKeyInfo->aSortFlags[j] & KEYINFO_ORDER_BIGNULL)? "N." : "", |
| zColl); |
| } |
| sqlite3_str_append(&x, ")", 1); |
| break; |
| } |
| #ifdef SQLITE_ENABLE_CURSOR_HINTS |
| case P4_EXPR: { |
| displayP4Expr(&x, pOp->p4.pExpr); |
| break; |
| } |
| #endif |
| case P4_COLLSEQ: { |
| CollSeq *pColl = pOp->p4.pColl; |
| sqlite3_str_appendf(&x, "(%.20s)", pColl->zName); |
| break; |
| } |
| case P4_FUNCDEF: { |
| FuncDef *pDef = pOp->p4.pFunc; |
| sqlite3_str_appendf(&x, "%s(%d)", pDef->zName, pDef->nArg); |
| break; |
| } |
| case P4_FUNCCTX: { |
| FuncDef *pDef = pOp->p4.pCtx->pFunc; |
| sqlite3_str_appendf(&x, "%s(%d)", pDef->zName, pDef->nArg); |
| break; |
| } |
| case P4_INT64: { |
| sqlite3_str_appendf(&x, "%lld", *pOp->p4.pI64); |
| break; |
| } |
| case P4_INT32: { |
| sqlite3_str_appendf(&x, "%d", pOp->p4.i); |
| break; |
| } |
| case P4_REAL: { |
| sqlite3_str_appendf(&x, "%.16g", *pOp->p4.pReal); |
| break; |
| } |
| case P4_MEM: { |
| Mem *pMem = pOp->p4.pMem; |
| if( pMem->flags & MEM_Str ){ |
| zP4 = pMem->z; |
| }else if( pMem->flags & (MEM_Int|MEM_IntReal) ){ |
| sqlite3_str_appendf(&x, "%lld", pMem->u.i); |
| }else if( pMem->flags & MEM_Real ){ |
| sqlite3_str_appendf(&x, "%.16g", pMem->u.r); |
| }else if( pMem->flags & MEM_Null ){ |
| zP4 = "NULL"; |
| }else{ |
| assert( pMem->flags & MEM_Blob ); |
| zP4 = "(blob)"; |
| } |
| break; |
| } |
| #ifndef SQLITE_OMIT_VIRTUALTABLE |
| case P4_VTAB: { |
| sqlite3_vtab *pVtab = pOp->p4.pVtab->pVtab; |
| sqlite3_str_appendf(&x, "vtab:%p", pVtab); |
| break; |
| } |
| #endif |
| case P4_INTARRAY: { |
| int i; |
| int *ai = pOp->p4.ai; |
| int n = ai[0]; /* The first element of an INTARRAY is always the |
| ** count of the number of elements to follow */ |
| for(i=1; i<=n; i++){ |
| sqlite3_str_appendf(&x, ",%d", ai[i]); |
| } |
| zTemp[0] = '['; |
| sqlite3_str_append(&x, "]", 1); |
| break; |
| } |
| case P4_SUBPROGRAM: { |
| sqlite3_str_appendf(&x, "program"); |
| break; |
| } |
| case P4_DYNBLOB: |
| case P4_ADVANCE: { |
| zTemp[0] = 0; |
| break; |
| } |
| case P4_TABLE: { |
| sqlite3_str_appendf(&x, "%s", pOp->p4.pTab->zName); |
| break; |
| } |
| default: { |
| zP4 = pOp->p4.z; |
| if( zP4==0 ){ |
| zP4 = zTemp; |
| zTemp[0] = 0; |
| } |
| } |
| } |
| sqlite3StrAccumFinish(&x); |
| assert( zP4!=0 ); |
| return zP4; |
| } |
| #endif /* VDBE_DISPLAY_P4 */ |
| |
| /* |
| ** Declare to the Vdbe that the BTree object at db->aDb[i] is used. |
| ** |
| ** The prepared statements need to know in advance the complete set of |
| ** attached databases that will be use. A mask of these databases |
| ** is maintained in p->btreeMask. The p->lockMask value is the subset of |
| ** p->btreeMask of databases that will require a lock. |
| */ |
| void sqlite3VdbeUsesBtree(Vdbe *p, int i){ |
| assert( i>=0 && i<p->db->nDb && i<(int)sizeof(yDbMask)*8 ); |
| assert( i<(int)sizeof(p->btreeMask)*8 ); |
| DbMaskSet(p->btreeMask, i); |
| if( i!=1 && sqlite3BtreeSharable(p->db->aDb[i].pBt) ){ |
| DbMaskSet(p->lockMask, i); |
| } |
| } |
| |
| #if !defined(SQLITE_OMIT_SHARED_CACHE) |
| /* |
| ** If SQLite is compiled to support shared-cache mode and to be threadsafe, |
| ** this routine obtains the mutex associated with each BtShared structure |
| ** that may be accessed by the VM passed as an argument. In doing so it also |
| ** sets the BtShared.db member of each of the BtShared structures, ensuring |
| ** that the correct busy-handler callback is invoked if required. |
| ** |
| ** If SQLite is not threadsafe but does support shared-cache mode, then |
| ** sqlite3BtreeEnter() is invoked to set the BtShared.db variables |
| ** of all of BtShared structures accessible via the database handle |
| ** associated with the VM. |
| ** |
| ** If SQLite is not threadsafe and does not support shared-cache mode, this |
| ** function is a no-op. |
| ** |
| ** The p->btreeMask field is a bitmask of all btrees that the prepared |
| ** statement p will ever use. Let N be the number of bits in p->btreeMask |
| ** corresponding to btrees that use shared cache. Then the runtime of |
| ** this routine is N*N. But as N is rarely more than 1, this should not |
| ** be a problem. |
| */ |
| void sqlite3VdbeEnter(Vdbe *p){ |
| int i; |
| sqlite3 *db; |
| Db *aDb; |
| int nDb; |
| if( DbMaskAllZero(p->lockMask) ) return; /* The common case */ |
| db = p->db; |
| aDb = db->aDb; |
| nDb = db->nDb; |
| for(i=0; i<nDb; i++){ |
| if( i!=1 && DbMaskTest(p->lockMask,i) && ALWAYS(aDb[i].pBt!=0) ){ |
| sqlite3BtreeEnter(aDb[i].pBt); |
| } |
| } |
| } |
| #endif |
| |
| #if !defined(SQLITE_OMIT_SHARED_CACHE) && SQLITE_THREADSAFE>0 |
| /* |
| ** Unlock all of the btrees previously locked by a call to sqlite3VdbeEnter(). |
| */ |
| static SQLITE_NOINLINE void vdbeLeave(Vdbe *p){ |
| int i; |
| sqlite3 *db; |
| Db *aDb; |
| int nDb; |
| db = p->db; |
| aDb = db->aDb; |
| nDb = db->nDb; |
| for(i=0; i<nDb; i++){ |
| if( i!=1 && DbMaskTest(p->lockMask,i) && ALWAYS(aDb[i].pBt!=0) ){ |
| sqlite3BtreeLeave(aDb[i].pBt); |
| } |
| } |
| } |
| void sqlite3VdbeLeave(Vdbe *p){ |
| if( DbMaskAllZero(p->lockMask) ) return; /* The common case */ |
| vdbeLeave(p); |
| } |
| #endif |
| |
| #if defined(VDBE_PROFILE) || defined(SQLITE_DEBUG) |
| /* |
| ** Print a single opcode. This routine is used for debugging only. |
| */ |
| void sqlite3VdbePrintOp(FILE *pOut, int pc, VdbeOp *pOp){ |
| char *zP4; |
| char zPtr[50]; |
| char zCom[100]; |
| static const char *zFormat1 = "%4d %-13s %4d %4d %4d %-13s %.2X %s\n"; |
| if( pOut==0 ) pOut = stdout; |
| zP4 = displayP4(pOp, zPtr, sizeof(zPtr)); |
| #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS |
| displayComment(pOp, zP4, zCom, sizeof(zCom)); |
| #else |
| zCom[0] = 0; |
| #endif |
| /* NB: The sqlite3OpcodeName() function is implemented by code created |
| ** by the mkopcodeh.awk and mkopcodec.awk scripts which extract the |
| ** information from the vdbe.c source text */ |
| fprintf(pOut, zFormat1, pc, |
| sqlite3OpcodeName(pOp->opcode), pOp->p1, pOp->p2, pOp->p3, zP4, pOp->p5, |
| zCom |
| ); |
| fflush(pOut); |
| } |
| #endif |
| |
| /* |
| ** Initialize an array of N Mem element. |
| */ |
| static void initMemArray(Mem *p, int N, sqlite3 *db, u16 flags){ |
| while( (N--)>0 ){ |
| p->db = db; |
| p->flags = flags; |
| p->szMalloc = 0; |
| #ifdef SQLITE_DEBUG |
| p->pScopyFrom = 0; |
| #endif |
| p++; |
| } |
| } |
| |
| /* |
| ** Release an array of N Mem elements |
| */ |
| static void releaseMemArray(Mem *p, int N){ |
| if( p && N ){ |
| Mem *pEnd = &p[N]; |
| sqlite3 *db = p->db; |
| if( db->pnBytesFreed ){ |
| do{ |
| if( p->szMalloc ) sqlite3DbFree(db, p->zMalloc); |
| }while( (++p)<pEnd ); |
| return; |
| } |
| do{ |
| assert( (&p[1])==pEnd || p[0].db==p[1].db ); |
| assert( sqlite3VdbeCheckMemInvariants(p) ); |
| |
| /* This block is really an inlined version of sqlite3VdbeMemRelease() |
| ** that takes advantage of the fact that the memory cell value is |
| ** being set to NULL after releasing any dynamic resources. |
| ** |
| ** The justification for duplicating code is that according to |
| ** callgrind, this causes a certain test case to hit the CPU 4.7 |
| ** percent less (x86 linux, gcc version 4.1.2, -O6) than if |
| ** sqlite3MemRelease() were called from here. With -O2, this jumps |
| ** to 6.6 percent. The test case is inserting 1000 rows into a table |
| ** with no indexes using a single prepared INSERT statement, bind() |
| ** and reset(). Inserts are grouped into a transaction. |
| */ |
| testcase( p->flags & MEM_Agg ); |
| testcase( p->flags & MEM_Dyn ); |
| testcase( p->xDel==sqlite3VdbeFrameMemDel ); |
| if( p->flags&(MEM_Agg|MEM_Dyn) ){ |
| sqlite3VdbeMemRelease(p); |
| }else if( p->szMalloc ){ |
| sqlite3DbFreeNN(db, p->zMalloc); |
| p->szMalloc = 0; |
| } |
| |
| p->flags = MEM_Undefined; |
| }while( (++p)<pEnd ); |
| } |
| } |
| |
| #ifdef SQLITE_DEBUG |
| /* |
| ** Verify that pFrame is a valid VdbeFrame pointer. Return true if it is |
| ** and false if something is wrong. |
| ** |
| ** This routine is intended for use inside of assert() statements only. |
| */ |
| int sqlite3VdbeFrameIsValid(VdbeFrame *pFrame){ |
| if( pFrame->iFrameMagic!=SQLITE_FRAME_MAGIC ) return 0; |
| return 1; |
| } |
| #endif |
| |
| |
| /* |
| ** This is a destructor on a Mem object (which is really an sqlite3_value) |
| ** that deletes the Frame object that is attached to it as a blob. |
| ** |
| ** This routine does not delete the Frame right away. It merely adds the |
| ** frame to a list of frames to be deleted when the Vdbe halts. |
| */ |
| void sqlite3VdbeFrameMemDel(void *pArg){ |
| VdbeFrame *pFrame = (VdbeFrame*)pArg; |
| assert( sqlite3VdbeFrameIsValid(pFrame) ); |
| pFrame->pParent = pFrame->v->pDelFrame; |
| pFrame->v->pDelFrame = pFrame; |
| } |
| |
| |
| /* |
| ** Delete a VdbeFrame object and its contents. VdbeFrame objects are |
| ** allocated by the OP_Program opcode in sqlite3VdbeExec(). |
| */ |
| void sqlite3VdbeFrameDelete(VdbeFrame *p){ |
| int i; |
| Mem *aMem = VdbeFrameMem(p); |
| VdbeCursor **apCsr = (VdbeCursor **)&aMem[p->nChildMem]; |
| assert( sqlite3VdbeFrameIsValid(p) ); |
| for(i=0; i<p->nChildCsr; i++){ |
| sqlite3VdbeFreeCursor(p->v, apCsr[i]); |
| } |
| releaseMemArray(aMem, p->nChildMem); |
| sqlite3VdbeDeleteAuxData(p->v->db, &p->pAuxData, -1, 0); |
| sqlite3DbFree(p->v->db, p); |
| } |
| |
| #ifndef SQLITE_OMIT_EXPLAIN |
| /* |
| ** Give a listing of the program in the virtual machine. |
| ** |
| ** The interface is the same as sqlite3VdbeExec(). But instead of |
| ** running the code, it invokes the callback once for each instruction. |
| ** This feature is used to implement "EXPLAIN". |
| ** |
| ** When p->explain==1, each instruction is listed. When |
| ** p->explain==2, only OP_Explain instructions are listed and these |
| ** are shown in a different format. p->explain==2 is used to implement |
| ** EXPLAIN QUERY PLAN. |
| ** 2018-04-24: In p->explain==2 mode, the OP_Init opcodes of triggers |
| ** are also shown, so that the boundaries between the main program and |
| ** each trigger are clear. |
| ** |
| ** When p->explain==1, first the main program is listed, then each of |
| ** the trigger subprograms are listed one by one. |
| */ |
| int sqlite3VdbeList( |
| Vdbe *p /* The VDBE */ |
| ){ |
| int nRow; /* Stop when row count reaches this */ |
| int nSub = 0; /* Number of sub-vdbes seen so far */ |
| SubProgram **apSub = 0; /* Array of sub-vdbes */ |
| Mem *pSub = 0; /* Memory cell hold array of subprogs */ |
| sqlite3 *db = p->db; /* The database connection */ |
| int i; /* Loop counter */ |
| int rc = SQLITE_OK; /* Return code */ |
| Mem *pMem = &p->aMem[1]; /* First Mem of result set */ |
| int bListSubprogs = (p->explain==1 || (db->flags & SQLITE_TriggerEQP)!=0); |
| Op *pOp = 0; |
| |
| assert( p->explain ); |
| assert( p->magic==VDBE_MAGIC_RUN ); |
| assert( p->rc==SQLITE_OK || p->rc==SQLITE_BUSY || p->rc==SQLITE_NOMEM ); |
| |
| /* Even though this opcode does not use dynamic strings for |
| ** the result, result columns may become dynamic if the user calls |
| ** sqlite3_column_text16(), causing a translation to UTF-16 encoding. |
| */ |
| releaseMemArray(pMem, 8); |
| p->pResultSet = 0; |
| |
| if( p->rc==SQLITE_NOMEM ){ |
| /* This happens if a malloc() inside a call to sqlite3_column_text() or |
| ** sqlite3_column_text16() failed. */ |
| sqlite3OomFault(db); |
| return SQLITE_ERROR; |
| } |
| |
| /* When the number of output rows reaches nRow, that means the |
| ** listing has finished and sqlite3_step() should return SQLITE_DONE. |
| ** nRow is the sum of the number of rows in the main program, plus |
| ** the sum of the number of rows in all trigger subprograms encountered |
| ** so far. The nRow value will increase as new trigger subprograms are |
| ** encountered, but p->pc will eventually catch up to nRow. |
| */ |
| nRow = p->nOp; |
| if( bListSubprogs ){ |
| /* The first 8 memory cells are used for the result set. So we will |
| ** commandeer the 9th cell to use as storage for an array of pointers |
| ** to trigger subprograms. The VDBE is guaranteed to have at least 9 |
| ** cells. */ |
| assert( p->nMem>9 ); |
| pSub = &p->aMem[9]; |
| if( pSub->flags&MEM_Blob ){ |
| /* On the first call to sqlite3_step(), pSub will hold a NULL. It is |
| ** initialized to a BLOB by the P4_SUBPROGRAM processing logic below */ |
| nSub = pSub->n/sizeof(Vdbe*); |
| apSub = (SubProgram **)pSub->z; |
| } |
| for(i=0; i<nSub; i++){ |
| nRow += apSub[i]->nOp; |
| } |
| } |
| |
| while(1){ /* Loop exits via break */ |
| i = p->pc++; |
| if( i>=nRow ){ |
| p->rc = SQLITE_OK; |
| rc = SQLITE_DONE; |
| break; |
| } |
| if( i<p->nOp ){ |
| /* The output line number is small enough that we are still in the |
| ** main program. */ |
| pOp = &p->aOp[i]; |
| }else{ |
| /* We are currently listing subprograms. Figure out which one and |
| ** pick up the appropriate opcode. */ |
| int j; |
| i -= p->nOp; |
| assert( apSub!=0 ); |
| assert( nSub>0 ); |
| for(j=0; i>=apSub[j]->nOp; j++){ |
| i -= apSub[j]->nOp; |
| assert( i<apSub[j]->nOp || j+1<nSub ); |
| } |
| pOp = &apSub[j]->aOp[i]; |
| } |
| |
| /* When an OP_Program opcode is encounter (the only opcode that has |
| ** a P4_SUBPROGRAM argument), expand the size of the array of subprograms |
| ** kept in p->aMem[9].z to hold the new program - assuming this subprogram |
| ** has not already been seen. |
| */ |
| if( bListSubprogs && pOp->p4type==P4_SUBPROGRAM ){ |
| int nByte = (nSub+1)*sizeof(SubProgram*); |
| int j; |
| for(j=0; j<nSub; j++){ |
| if( apSub[j]==pOp->p4.pProgram ) break; |
| } |
| if( j==nSub ){ |
| p->rc = sqlite3VdbeMemGrow(pSub, nByte, nSub!=0); |
| if( p->rc!=SQLITE_OK ){ |
| rc = SQLITE_ERROR; |
| break; |
| } |
| apSub = (SubProgram **)pSub->z; |
| apSub[nSub++] = pOp->p4.pProgram; |
| pSub->flags |= MEM_Blob; |
| pSub->n = nSub*sizeof(SubProgram*); |
| nRow += pOp->p4.pProgram->nOp; |
| } |
| } |
| if( p->explain<2 ) break; |
| if( pOp->opcode==OP_Explain ) break; |
| if( pOp->opcode==OP_Init && p->pc>1 ) break; |
| } |
| |
| if( rc==SQLITE_OK ){ |
| if( db->u1.isInterrupted ){ |
| p->rc = SQLITE_INTERRUPT; |
| rc = SQLITE_ERROR; |
| sqlite3VdbeError(p, sqlite3ErrStr(p->rc)); |
| }else{ |
| char *zP4; |
| if( p->explain==1 ){ |
| pMem->flags = MEM_Int; |
| pMem->u.i = i; /* Program counter */ |
| pMem++; |
| |
| pMem->flags = MEM_Static|MEM_Str|MEM_Term; |
| pMem->z = (char*)sqlite3OpcodeName(pOp->opcode); /* Opcode */ |
| assert( pMem->z!=0 ); |
| pMem->n = sqlite3Strlen30(pMem->z); |
| pMem->enc = SQLITE_UTF8; |
| pMem++; |
| } |
| |
| pMem->flags = MEM_Int; |
| pMem->u.i = pOp->p1; /* P1 */ |
| pMem++; |
| |
| pMem->flags = MEM_Int; |
| pMem->u.i = pOp->p2; /* P2 */ |
| pMem++; |
| |
| pMem->flags = MEM_Int; |
| pMem->u.i = pOp->p3; /* P3 */ |
| pMem++; |
| |
| if( sqlite3VdbeMemClearAndResize(pMem, 100) ){ /* P4 */ |
| assert( p->db->mallocFailed ); |
| return SQLITE_ERROR; |
| } |
| pMem->flags = MEM_Str|MEM_Term; |
| zP4 = displayP4(pOp, pMem->z, pMem->szMalloc); |
| if( zP4!=pMem->z ){ |
| pMem->n = 0; |
| sqlite3VdbeMemSetStr(pMem, zP4, -1, SQLITE_UTF8, 0); |
| }else{ |
| assert( pMem->z!=0 ); |
| pMem->n = sqlite3Strlen30(pMem->z); |
| pMem->enc = SQLITE_UTF8; |
| } |
| pMem++; |
| |
| if( p->explain==1 ){ |
| if( sqlite3VdbeMemClearAndResize(pMem, 4) ){ |
| assert( p->db->mallocFailed ); |
| return SQLITE_ERROR; |
| } |
| pMem->flags = MEM_Str|MEM_Term; |
| pMem->n = 2; |
| sqlite3_snprintf(3, pMem->z, "%.2x", pOp->p5); /* P5 */ |
| pMem->enc = SQLITE_UTF8; |
| pMem++; |
| |
| #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS |
| if( sqlite3VdbeMemClearAndResize(pMem, 500) ){ |
| assert( p->db->mallocFailed ); |
| return SQLITE_ERROR; |
| } |
| pMem->flags = MEM_Str|MEM_Term; |
| pMem->n = displayComment(pOp, zP4, pMem->z, 500); |
| pMem->enc = SQLITE_UTF8; |
| #else |
| pMem->flags = MEM_Null; /* Comment */ |
| #endif |
| } |
| |
| p->nResColumn = 8 - 4*(p->explain-1); |
| p->pResultSet = &p->aMem[1]; |
| p->rc = SQLITE_OK; |
| rc = SQLITE_ROW; |
| } |
| } |
| return rc; |
| } |
| #endif /* SQLITE_OMIT_EXPLAIN */ |
| |
| #ifdef SQLITE_DEBUG |
| /* |
| ** Print the SQL that was used to generate a VDBE program. |
| */ |
| void sqlite3VdbePrintSql(Vdbe *p){ |
| const char *z = 0; |
| if( p->zSql ){ |
| z = p->zSql; |
| }else if( p->nOp>=1 ){ |
| const VdbeOp *pOp = &p->aOp[0]; |
| if( pOp->opcode==OP_Init && pOp->p4.z!=0 ){ |
| z = pOp->p4.z; |
| while( sqlite3Isspace(*z) ) z++; |
| } |
| } |
| if( z ) printf("SQL: [%s]\n", z); |
| } |
| #endif |
| |
| #if !defined(SQLITE_OMIT_TRACE) && defined(SQLITE_ENABLE_IOTRACE) |
| /* |
| ** Print an IOTRACE message showing SQL content. |
| */ |
| void sqlite3VdbeIOTraceSql(Vdbe *p){ |
| int nOp = p->nOp; |
| VdbeOp *pOp; |
| if( sqlite3IoTrace==0 ) return; |
| if( nOp<1 ) return; |
| pOp = &p->aOp[0]; |
| if( pOp->opcode==OP_Init && pOp->p4.z!=0 ){ |
| int i, j; |
| char z[1000]; |
| sqlite3_snprintf(sizeof(z), z, "%s", pOp->p4.z); |
| for(i=0; sqlite3Isspace(z[i]); i++){} |
| for(j=0; z[i]; i++){ |
| if( sqlite3Isspace(z[i]) ){ |
| if( z[i-1]!=' ' ){ |
| z[j++] = ' '; |
| } |
| }else{ |
| z[j++] = z[i]; |
| } |
| } |
| z[j] = 0; |
| sqlite3IoTrace("SQL %s\n", z); |
| } |
| } |
| #endif /* !SQLITE_OMIT_TRACE && SQLITE_ENABLE_IOTRACE */ |
| |
| /* An instance of this object describes bulk memory available for use |
| ** by subcomponents of a prepared statement. Space is allocated out |
| ** of a ReusableSpace object by the allocSpace() routine below. |
| */ |
| struct ReusableSpace { |
| u8 *pSpace; /* Available memory */ |
| sqlite3_int64 nFree; /* Bytes of available memory */ |
| sqlite3_int64 nNeeded; /* Total bytes that could not be allocated */ |
| }; |
| |
| /* Try to allocate nByte bytes of 8-byte aligned bulk memory for pBuf |
| ** from the ReusableSpace object. Return a pointer to the allocated |
| ** memory on success. If insufficient memory is available in the |
| ** ReusableSpace object, increase the ReusableSpace.nNeeded |
| ** value by the amount needed and return NULL. |
| ** |
| ** If pBuf is not initially NULL, that means that the memory has already |
| ** been allocated by a prior call to this routine, so just return a copy |
| ** of pBuf and leave ReusableSpace unchanged. |
| ** |
| ** This allocator is employed to repurpose unused slots at the end of the |
| ** opcode array of prepared state for other memory needs of the prepared |
| ** statement. |
| */ |
| static void *allocSpace( |
| struct ReusableSpace *p, /* Bulk memory available for allocation */ |
| void *pBuf, /* Pointer to a prior allocation */ |
| sqlite3_int64 nByte /* Bytes of memory needed */ |
| ){ |
| assert( EIGHT_BYTE_ALIGNMENT(p->pSpace) ); |
| if( pBuf==0 ){ |
| nByte = ROUND8(nByte); |
| if( nByte <= p->nFree ){ |
| p->nFree -= nByte; |
| pBuf = &p->pSpace[p->nFree]; |
| }else{ |
| p->nNeeded += nByte; |
| } |
| } |
| assert( EIGHT_BYTE_ALIGNMENT(pBuf) ); |
| return pBuf; |
| } |
| |
| /* |
| ** Rewind the VDBE back to the beginning in preparation for |
| ** running it. |
| */ |
| void sqlite3VdbeRewind(Vdbe *p){ |
| #if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) |
| int i; |
| #endif |
| assert( p!=0 ); |
| assert( p->magic==VDBE_MAGIC_INIT || p->magic==VDBE_MAGIC_RESET ); |
| |
| /* There should be at least one opcode. |
| */ |
| assert( p->nOp>0 ); |
| |
| /* Set the magic to VDBE_MAGIC_RUN sooner rather than later. */ |
| p->magic = VDBE_MAGIC_RUN; |
| |
| #ifdef SQLITE_DEBUG |
| for(i=0; i<p->nMem; i++){ |
| assert( p->aMem[i].db==p->db ); |
| } |
| #endif |
| p->pc = -1; |
| p->rc = SQLITE_OK; |
| p->errorAction = OE_Abort; |
| p->nChange = 0; |
| p->cacheCtr = 1; |
| p->minWriteFileFormat = 255; |
| p->iStatement = 0; |
| p->nFkConstraint = 0; |
| #ifdef VDBE_PROFILE |
| for(i=0; i<p->nOp; i++){ |
| p->aOp[i].cnt = 0; |
| p->aOp[i].cycles = 0; |
| } |
| #endif |
| } |
| |
| /* |
| ** Prepare a virtual machine for execution for the first time after |
| ** creating the virtual machine. This involves things such |
| ** as allocating registers and initializing the program counter. |
| ** After the VDBE has be prepped, it can be executed by one or more |
| ** calls to sqlite3VdbeExec(). |
| ** |
| ** This function may be called exactly once on each virtual machine. |
| ** After this routine is called the VM has been "packaged" and is ready |
| ** to run. After this routine is called, further calls to |
| ** sqlite3VdbeAddOp() functions are prohibited. This routine disconnects |
| ** the Vdbe from the Parse object that helped generate it so that the |
| ** the Vdbe becomes an independent entity and the Parse object can be |
| ** destroyed. |
| ** |
| ** Use the sqlite3VdbeRewind() procedure to restore a virtual machine back |
| ** to its initial state after it has been run. |
| */ |
| void sqlite3VdbeMakeReady( |
| Vdbe *p, /* The VDBE */ |
| Parse *pParse /* Parsing context */ |
| ){ |
| sqlite3 *db; /* The database connection */ |
| int nVar; /* Number of parameters */ |
| int nMem; /* Number of VM memory registers */ |
| int nCursor; /* Number of cursors required */ |
| int nArg; /* Number of arguments in subprograms */ |
| int n; /* Loop counter */ |
| struct ReusableSpace x; /* Reusable bulk memory */ |
| |
| assert( p!=0 ); |
| assert( p->nOp>0 ); |
| assert( pParse!=0 ); |
| assert( p->magic==VDBE_MAGIC_INIT ); |
| assert( pParse==p->pParse ); |
| db = p->db; |
| assert( db->mallocFailed==0 ); |
| nVar = pParse->nVar; |
| nMem = pParse->nMem; |
| nCursor = pParse->nTab; |
| nArg = pParse->nMaxArg; |
| |
| /* Each cursor uses a memory cell. The first cursor (cursor 0) can |
| ** use aMem[0] which is not otherwise used by the VDBE program. Allocate |
| ** space at the end of aMem[] for cursors 1 and greater. |
| ** See also: allocateCursor(). |
| */ |
| nMem += nCursor; |
| if( nCursor==0 && nMem>0 ) nMem++; /* Space for aMem[0] even if not used */ |
| |
| /* Figure out how much reusable memory is available at the end of the |
| ** opcode array. This extra memory will be reallocated for other elements |
| ** of the prepared statement. |
| */ |
| n = ROUND8(sizeof(Op)*p->nOp); /* Bytes of opcode memory used */ |
| x.pSpace = &((u8*)p->aOp)[n]; /* Unused opcode memory */ |
| assert( EIGHT_BYTE_ALIGNMENT(x.pSpace) ); |
| x.nFree = ROUNDDOWN8(pParse->szOpAlloc - n); /* Bytes of unused memory */ |
| assert( x.nFree>=0 ); |
| assert( EIGHT_BYTE_ALIGNMENT(&x.pSpace[x.nFree]) ); |
| |
| resolveP2Values(p, &nArg); |
| p->usesStmtJournal = (u8)(pParse->isMultiWrite && pParse->mayAbort); |
| if( pParse->explain ){ |
| static const char * const azColName[] = { |
| "addr", "opcode", "p1", "p2", "p3", "p4", "p5", "comment", |
| "id", "parent", "notused", "detail" |
| }; |
| int iFirst, mx, i; |
| if( nMem<10 ) nMem = 10; |
| if( pParse->explain==2 ){ |
| sqlite3VdbeSetNumCols(p, 4); |
| iFirst = 8; |
| mx = 12; |
| }else{ |
| sqlite3VdbeSetNumCols(p, 8); |
| iFirst = 0; |
| mx = 8; |
| } |
| for(i=iFirst; i<mx; i++){ |
| sqlite3VdbeSetColName(p, i-iFirst, COLNAME_NAME, |
| azColName[i], SQLITE_STATIC); |
| } |
| } |
| p->expired = 0; |
| |
| /* Memory for registers, parameters, cursor, etc, is allocated in one or two |
| ** passes. On the first pass, we try to reuse unused memory at the |
| ** end of the opcode array. If we are unable to satisfy all memory |
| ** requirements by reusing the opcode array tail, then the second |
| ** pass will fill in the remainder using a fresh memory allocation. |
| ** |
| ** This two-pass approach that reuses as much memory as possible from |
| ** the leftover memory at the end of the opcode array. This can significantly |
| ** reduce the amount of memory held by a prepared statement. |
| */ |
| x.nNeeded = 0; |
| p->aMem = allocSpace(&x, 0, nMem*sizeof(Mem)); |
| p->aVar = allocSpace(&x, 0, nVar*sizeof(Mem)); |
| p->apArg = allocSpace(&x, 0, nArg*sizeof(Mem*)); |
| p->apCsr = allocSpace(&x, 0, nCursor*sizeof(VdbeCursor*)); |
| #ifdef SQLITE_ENABLE_STMT_SCANSTATUS |
| p->anExec = allocSpace(&x, 0, p->nOp*sizeof(i64)); |
| #endif |
| if( x.nNeeded ){ |
| x.pSpace = p->pFree = sqlite3DbMallocRawNN(db, x.nNeeded); |
| x.nFree = x.nNeeded; |
| if( !db->mallocFailed ){ |
| p->aMem = allocSpace(&x, p->aMem, nMem*sizeof(Mem)); |
| p->aVar = allocSpace(&x, p->aVar, nVar*sizeof(Mem)); |
| p->apArg = allocSpace(&x, p->apArg, nArg*sizeof(Mem*)); |
| p->apCsr = allocSpace(&x, p->apCsr, nCursor*sizeof(VdbeCursor*)); |
| #ifdef SQLITE_ENABLE_STMT_SCANSTATUS |
| p->anExec = allocSpace(&x, p->anExec, p->nOp*sizeof(i64)); |
| #endif |
| } |
| } |
| |
| p->pVList = pParse->pVList; |
| pParse->pVList = 0; |
| p->explain = pParse->explain; |
| if( db->mallocFailed ){ |
| p->nVar = 0; |
| p->nCursor = 0; |
| p->nMem = 0; |
| }else{ |
| p->nCursor = nCursor; |
| p->nVar = (ynVar)nVar; |
| initMemArray(p->aVar, nVar, db, MEM_Null); |
| p->nMem = nMem; |
| initMemArray(p->aMem, nMem, db, MEM_Undefined); |
| memset(p->apCsr, 0, nCursor*sizeof(VdbeCursor*)); |
| #ifdef SQLITE_ENABLE_STMT_SCANSTATUS |
| memset(p->anExec, 0, p->nOp*sizeof(i64)); |
| #endif |
| } |
| sqlite3VdbeRewind(p); |
| } |
| |
| /* |
| ** Close a VDBE cursor and release all the resources that cursor |
| ** happens to hold. |
| */ |
| void sqlite3VdbeFreeCursor(Vdbe *p, VdbeCursor *pCx){ |
| if( pCx==0 ){ |
| return; |
| } |
| assert( pCx->pBtx==0 || pCx->eCurType==CURTYPE_BTREE ); |
| switch( pCx->eCurType ){ |
| case CURTYPE_SORTER: { |
| sqlite3VdbeSorterClose(p->db, pCx); |
| break; |
| } |
| case CURTYPE_BTREE: { |
| if( pCx->isEphemeral ){ |
| if( pCx->pBtx ) sqlite3BtreeClose(pCx->pBtx); |
| /* The pCx->pCursor will be close automatically, if it exists, by |
| ** the call above. */ |
| }else{ |
| assert( pCx->uc.pCursor!=0 ); |
| sqlite3BtreeCloseCursor(pCx->uc.pCursor); |
| } |
| break; |
| } |
| #ifndef SQLITE_OMIT_VIRTUALTABLE |
| case CURTYPE_VTAB: { |
| sqlite3_vtab_cursor *pVCur = pCx->uc.pVCur; |
| const sqlite3_module *pModule = pVCur->pVtab->pModule; |
| assert( pVCur->pVtab->nRef>0 ); |
| pVCur->pVtab->nRef--; |
| pModule->xClose(pVCur); |
| break; |
| } |
| #endif |
| } |
| } |
| |
| /* |
| ** Close all cursors in the current frame. |
| */ |
| static void closeCursorsInFrame(Vdbe *p){ |
| if( p->apCsr ){ |
| int i; |
| for(i=0; i<p->nCursor; i++){ |
| VdbeCursor *pC = p->apCsr[i]; |
| if( pC ){ |
| sqlite3VdbeFreeCursor(p, pC); |
| p->apCsr[i] = 0; |
| } |
| } |
| } |
| } |
| |
| /* |
| ** Copy the values stored in the VdbeFrame structure to its Vdbe. This |
| ** is used, for example, when a trigger sub-program is halted to restore |
| ** control to the main program. |
| */ |
| int sqlite3VdbeFrameRestore(VdbeFrame *pFrame){ |
| Vdbe *v = pFrame->v; |
| closeCursorsInFrame(v); |
| #ifdef SQLITE_ENABLE_STMT_SCANSTATUS |
| v->anExec = pFrame->anExec; |
| #endif |
| v->aOp = pFrame->aOp; |
| v->nOp = pFrame->nOp; |
| v->aMem = pFrame->aMem; |
| v->nMem = pFrame->nMem; |
| v->apCsr = pFrame->apCsr; |
| v->nCursor = pFrame->nCursor; |
| v->db->lastRowid = pFrame->lastRowid; |
| v->nChange = pFrame->nChange; |
| v->db->nChange = pFrame->nDbChange; |
| sqlite3VdbeDeleteAuxData(v->db, &v->pAuxData, -1, 0); |
| v->pAuxData = pFrame->pAuxData; |
| pFrame->pAuxData = 0; |
| return pFrame->pc; |
| } |
| |
| /* |
| ** Close all cursors. |
| ** |
| ** Also release any dynamic memory held by the VM in the Vdbe.aMem memory |
| ** cell array. This is necessary as the memory cell array may contain |
| ** pointers to VdbeFrame objects, which may in turn contain pointers to |
| ** open cursors. |
| */ |
| static void closeAllCursors(Vdbe *p){ |
| if( p->pFrame ){ |
| VdbeFrame *pFrame; |
| for(pFrame=p->pFrame; pFrame->pParent; pFrame=pFrame->pParent); |
| sqlite3VdbeFrameRestore(pFrame); |
| p->pFrame = 0; |
| p->nFrame = 0; |
| } |
| assert( p->nFrame==0 ); |
| closeCursorsInFrame(p); |
| if( p->aMem ){ |
| releaseMemArray(p->aMem, p->nMem); |
| } |
| while( p->pDelFrame ){ |
| VdbeFrame *pDel = p->pDelFrame; |
| p->pDelFrame = pDel->pParent; |
| sqlite3VdbeFrameDelete(pDel); |
| } |
| |
| /* Delete any auxdata allocations made by the VM */ |
| if( p->pAuxData ) sqlite3VdbeDeleteAuxData(p->db, &p->pAuxData, -1, 0); |
| assert( p->pAuxData==0 ); |
| } |
| |
| /* |
| ** Set the number of result columns that will be returned by this SQL |
| ** statement. This is now set at compile time, rather than during |
| ** execution of the vdbe program so that sqlite3_column_count() can |
| ** be called on an SQL statement before sqlite3_step(). |
| */ |
| void sqlite3VdbeSetNumCols(Vdbe *p, int nResColumn){ |
| int n; |
| sqlite3 *db = p->db; |
| |
| if( p->nResColumn ){ |
| releaseMemArray(p->aColName, p->nResColumn*COLNAME_N); |
| sqlite3DbFree(db, p->aColName); |
| } |
| n = nResColumn*COLNAME_N; |
| p->nResColumn = (u16)nResColumn; |
| p->aColName = (Mem*)sqlite3DbMallocRawNN(db, sizeof(Mem)*n ); |
| if( p->aColName==0 ) return; |
| initMemArray(p->aColName, n, db, MEM_Null); |
| } |
| |
| /* |
| ** Set the name of the idx'th column to be returned by the SQL statement. |
| ** zName must be a pointer to a nul terminated string. |
| ** |
| ** This call must be made after a call to sqlite3VdbeSetNumCols(). |
| ** |
| ** The final parameter, xDel, must be one of SQLITE_DYNAMIC, SQLITE_STATIC |
| ** or SQLITE_TRANSIENT. If it is SQLITE_DYNAMIC, then the buffer pointed |
| ** to by zName will be freed by sqlite3DbFree() when the vdbe is destroyed. |
| */ |
| int sqlite3VdbeSetColName( |
| Vdbe *p, /* Vdbe being configured */ |
| int idx, /* Index of column zName applies to */ |
| int var, /* One of the COLNAME_* constants */ |
| const char *zName, /* Pointer to buffer containing name */ |
| void (*xDel)(void*) /* Memory management strategy for zName */ |
| ){ |
| int rc; |
| Mem *pColName; |
| assert( idx<p->nResColumn ); |
| assert( var<COLNAME_N ); |
| if( p->db->mallocFailed ){ |
| assert( !zName || xDel!=SQLITE_DYNAMIC ); |
| return SQLITE_NOMEM_BKPT; |
| } |
| assert( p->aColName!=0 ); |
| pColName = &(p->aColName[idx+var*p->nResColumn]); |
| rc = sqlite3VdbeMemSetStr(pColName, zName, -1, SQLITE_UTF8, xDel); |
| assert( rc!=0 || !zName || (pColName->flags&MEM_Term)!=0 ); |
| return rc; |
| } |
| |
| /* |
| ** A read or write transaction may or may not be active on database handle |
| ** db. If a transaction is active, commit it. If there is a |
| ** write-transaction spanning more than one database file, this routine |
| ** takes care of the master journal trickery. |
| */ |
| static int vdbeCommit(sqlite3 *db, Vdbe *p){ |
| int i; |
| int nTrans = 0; /* Number of databases with an active write-transaction |
| ** that are candidates for a two-phase commit using a |
| ** master-journal */ |
| int rc = SQLITE_OK; |
| int needXcommit = 0; |
| |
| #ifdef SQLITE_OMIT_VIRTUALTABLE |
| /* With this option, sqlite3VtabSync() is defined to be simply |
| ** SQLITE_OK so p is not used. |
| */ |
| UNUSED_PARAMETER(p); |
| #endif |
| |
| /* Before doing anything else, call the xSync() callback for any |
| ** virtual module tables written in this transaction. This has to |
| ** be done before determining whether a master journal file is |
| ** required, as an xSync() callback may add an attached database |
| ** to the transaction. |
| */ |
| rc = sqlite3VtabSync(db, p); |
| |
| /* This loop determines (a) if the commit hook should be invoked and |
| ** (b) how many database files have open write transactions, not |
| ** including the temp database. (b) is important because if more than |
| ** one database file has an open write transaction, a master journal |
| ** file is required for an atomic commit. |
| */ |
| for(i=0; rc==SQLITE_OK && i<db->nDb; i++){ |
| Btree *pBt = db->aDb[i].pBt; |
| if( sqlite3BtreeIsInTrans(pBt) ){ |
| /* Whether or not a database might need a master journal depends upon |
| ** its journal mode (among other things). This matrix determines which |
| ** journal modes use a master journal and which do not */ |
| static const u8 aMJNeeded[] = { |
| /* DELETE */ 1, |
| /* PERSIST */ 1, |
| /* OFF */ 0, |
| /* TRUNCATE */ 1, |
| /* MEMORY */ 0, |
| /* WAL */ 0 |
| }; |
| Pager *pPager; /* Pager associated with pBt */ |
| needXcommit = 1; |
| sqlite3BtreeEnter(pBt); |
| pPager = sqlite3BtreePager(pBt); |
| if( db->aDb[i].safety_level!=PAGER_SYNCHRONOUS_OFF |
| && aMJNeeded[sqlite3PagerGetJournalMode(pPager)] |
| && sqlite3PagerIsMemdb(pPager)==0 |
| ){ |
| assert( i!=1 ); |
| nTrans++; |
| } |
| rc = sqlite3PagerExclusiveLock(pPager); |
| sqlite3BtreeLeave(pBt); |
| } |
| } |
| if( rc!=SQLITE_OK ){ |
| return rc; |
| } |
| |
| /* If there are any write-transactions at all, invoke the commit hook */ |
| if( needXcommit && db->xCommitCallback ){ |
| rc = db->xCommitCallback(db->pCommitArg); |
| if( rc ){ |
| return SQLITE_CONSTRAINT_COMMITHOOK; |
| } |
| } |
| |
| /* The simple case - no more than one database file (not counting the |
| ** TEMP database) has a transaction active. There is no need for the |
| ** master-journal. |
| ** |
| ** If the return value of sqlite3BtreeGetFilename() is a zero length |
| ** string, it means the main database is :memory: or a temp file. In |
| ** that case we do not support atomic multi-file commits, so use the |
| ** simple case then too. |
| */ |
| if( 0==sqlite3Strlen30(sqlite3BtreeGetFilename(db->aDb[0].pBt)) |
| || nTrans<=1 |
| ){ |
| for(i=0; rc==SQLITE_OK && i<db->nDb; i++){ |
| Btree *pBt = db->aDb[i].pBt; |
| if( pBt ){ |
| rc = sqlite3BtreeCommitPhaseOne(pBt, 0); |
| } |
| } |
| |
| /* Do the commit only if all databases successfully complete phase 1. |
| ** If one of the BtreeCommitPhaseOne() calls fails, this indicates an |
| ** IO error while deleting or truncating a journal file. It is unlikely, |
| ** but could happen. In this case abandon processing and return the error. |
| */ |
| for(i=0; rc==SQLITE_OK && i<db->nDb; i++){ |
| Btree *pBt = db->aDb[i].pBt; |
| if( pBt ){ |
| rc = sqlite3BtreeCommitPhaseTwo(pBt, 0); |
| } |
| } |
| if( rc==SQLITE_OK ){ |
| sqlite3VtabCommit(db); |
| } |
| } |
| |
| /* The complex case - There is a multi-file write-transaction active. |
| ** This requires a master journal file to ensure the transaction is |
| ** committed atomically. |
| */ |
| #ifndef SQLITE_OMIT_DISKIO |
| else{ |
| sqlite3_vfs *pVfs = db->pVfs; |
| char *zMaster = 0; /* File-name for the master journal */ |
| char const *zMainFile = sqlite3BtreeGetFilename(db->aDb[0].pBt); |
| sqlite3_file *pMaster = 0; |
| i64 offset = 0; |
| int res; |
| int retryCount = 0; |
| int nMainFile; |
| |
| /* Select a master journal file name */ |
| nMainFile = sqlite3Strlen30(zMainFile); |
| zMaster = sqlite3MPrintf(db, "%s-mjXXXXXX9XXz%c%c", zMainFile, 0, 0); |
| if( zMaster==0 ) return SQLITE_NOMEM_BKPT; |
| do { |
| u32 iRandom; |
| if( retryCount ){ |
| if( retryCount>100 ){ |
| sqlite3_log(SQLITE_FULL, "MJ delete: %s", zMaster); |
| sqlite3OsDelete(pVfs, zMaster, 0); |
| break; |
| }else if( retryCount==1 ){ |
| sqlite3_log(SQLITE_FULL, "MJ collide: %s", zMaster); |
| } |
| } |
| retryCount++; |
| sqlite3_randomness(sizeof(iRandom), &iRandom); |
| sqlite3_snprintf(13, &zMaster[nMainFile], "-mj%06X9%02X", |
| (iRandom>>8)&0xffffff, iRandom&0xff); |
| /* The antipenultimate character of the master journal name must |
| ** be "9" to avoid name collisions when using 8+3 filenames. */ |
| assert( zMaster[sqlite3Strlen30(zMaster)-3]=='9' ); |
| sqlite3FileSuffix3(zMainFile, zMaster); |
| rc = sqlite3OsAccess(pVfs, zMaster, SQLITE_ACCESS_EXISTS, &res); |
| }while( rc==SQLITE_OK && res ); |
| if( rc==SQLITE_OK ){ |
| /* Open the master journal. */ |
| rc = sqlite3OsOpenMalloc(pVfs, zMaster, &pMaster, |
| SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE| |
| SQLITE_OPEN_EXCLUSIVE|SQLITE_OPEN_MASTER_JOURNAL, 0 |
| ); |
| } |
| if( rc!=SQLITE_OK ){ |
| sqlite3DbFree(db, zMaster); |
| return rc; |
| } |
| |
| /* Write the name of each database file in the transaction into the new |
| ** master journal file. If an error occurs at this point close |
| ** and delete the master journal file. All the individual journal files |
| ** still have 'null' as the master journal pointer, so they will roll |
| ** back independently if a failure occurs. |
| */ |
| for(i=0; i<db->nDb; i++){ |
| Btree *pBt = db->aDb[i].pBt; |
| if( sqlite3BtreeIsInTrans(pBt) ){ |
| char const *zFile = sqlite3BtreeGetJournalname(pBt); |
| if( zFile==0 ){ |
| continue; /* Ignore TEMP and :memory: databases */ |
| } |
| assert( zFile[0]!=0 ); |
| rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset); |
| offset += sqlite3Strlen30(zFile)+1; |
| if( rc!=SQLITE_OK ){ |
| sqlite3OsCloseFree(pMaster); |
| sqlite3OsDelete(pVfs, zMaster, 0); |
| sqlite3DbFree(db, zMaster); |
| return rc; |
| } |
| } |
| } |
| |
| /* Sync the master journal file. If the IOCAP_SEQUENTIAL device |
| ** flag is set this is not required. |
| */ |
| if( 0==(sqlite3OsDeviceCharacteristics(pMaster)&SQLITE_IOCAP_SEQUENTIAL) |
| && SQLITE_OK!=(rc = sqlite3OsSync(pMaster, SQLITE_SYNC_NORMAL)) |
| ){ |
| sqlite3OsCloseFree(pMaster); |
| sqlite3OsDelete(pVfs, zMaster, 0); |
| sqlite3DbFree(db, zMaster); |
| return rc; |
| } |
| |
| /* Sync all the db files involved in the transaction. The same call |
| ** sets the master journal pointer in each individual journal. If |
| ** an error occurs here, do not delete the master journal file. |
| ** |
| ** If the error occurs during the first call to |
| ** sqlite3BtreeCommitPhaseOne(), then there is a chance that the |
| ** master journal file will be orphaned. But we cannot delete it, |
| ** in case the master journal file name was written into the journal |
| ** file before the failure occurred. |
| */ |
| for(i=0; rc==SQLITE_OK && i<db->nDb; i++){ |
| Btree *pBt = db->aDb[i].pBt; |
| if( pBt ){ |
| rc = sqlite3BtreeCommitPhaseOne(pBt, zMaster); |
| } |
| } |
| sqlite3OsCloseFree(pMaster); |
| assert( rc!=SQLITE_BUSY ); |
| if( rc!=SQLITE_OK ){ |
| sqlite3DbFree(db, zMaster); |
| return rc; |
| } |
| |
| /* Delete the master journal file. This commits the transaction. After |
| ** doing this the directory is synced again before any individual |
| ** transaction files are deleted. |
| */ |
| rc = sqlite3OsDelete(pVfs, zMaster, 1); |
| sqlite3DbFree(db, zMaster); |
| zMaster = 0; |
| if( rc ){ |
| return rc; |
| } |
| |
| /* All files and directories have already been synced, so the following |
| ** calls to sqlite3BtreeCommitPhaseTwo() are only closing files and |
| ** deleting or truncating journals. If something goes wrong while |
| ** this is happening we don't really care. The integrity of the |
| ** transaction is already guaranteed, but some stray 'cold' journals |
| ** may be lying around. Returning an error code won't help matters. |
| */ |
| disable_simulated_io_errors(); |
| sqlite3BeginBenignMalloc(); |
| for(i=0; i<db->nDb; i++){ |
| Btree *pBt = db->aDb[i].pBt; |
| if( pBt ){ |
| sqlite3BtreeCommitPhaseTwo(pBt, 1); |
| } |
| } |
| sqlite3EndBenignMalloc(); |
| enable_simulated_io_errors(); |
| |
| sqlite3VtabCommit(db); |
| } |
| #endif |
| |
| return rc; |
| } |
| |
| /* |
| ** This routine checks that the sqlite3.nVdbeActive count variable |
| ** matches the number of vdbe's in the list sqlite3.pVdbe that are |
| ** currently active. An assertion fails if the two counts do not match. |
| ** This is an internal self-check only - it is not an essential processing |
| ** step. |
| ** |
| ** This is a no-op if NDEBUG is defined. |
| */ |
| #ifndef NDEBUG |
| static void checkActiveVdbeCnt(sqlite3 *db){ |
| Vdbe *p; |
| int cnt = 0; |
| int nWrite = 0; |
| int nRead = 0; |
| p = db->pVdbe; |
| while( p ){ |
| if( sqlite3_stmt_busy((sqlite3_stmt*)p) ){ |
| cnt++; |
| if( p->readOnly==0 ) nWrite++; |
| if( p->bIsReader ) nRead++; |
| } |
| p = p->pNext; |
| } |
| assert( cnt==db->nVdbeActive ); |
| assert( nWrite==db->nVdbeWrite ); |
| assert( nRead==db->nVdbeRead ); |
| } |
| #else |
| #define checkActiveVdbeCnt(x) |
| #endif |
| |
| /* |
| ** If the Vdbe passed as the first argument opened a statement-transaction, |
| ** close it now. Argument eOp must be either SAVEPOINT_ROLLBACK or |
| ** SAVEPOINT_RELEASE. If it is SAVEPOINT_ROLLBACK, then the statement |
| ** transaction is rolled back. If eOp is SAVEPOINT_RELEASE, then the |
| ** statement transaction is committed. |
| ** |
| ** If an IO error occurs, an SQLITE_IOERR_XXX error code is returned. |
| ** Otherwise SQLITE_OK. |
| */ |
| static SQLITE_NOINLINE int vdbeCloseStatement(Vdbe *p, int eOp){ |
| sqlite3 *const db = p->db; |
| int rc = SQLITE_OK; |
| int i; |
| const int iSavepoint = p->iStatement-1; |
| |
| assert( eOp==SAVEPOINT_ROLLBACK || eOp==SAVEPOINT_RELEASE); |
| assert( db->nStatement>0 ); |
| assert( p->iStatement==(db->nStatement+db->nSavepoint) ); |
| |
| for(i=0; i<db->nDb; i++){ |
| int rc2 = SQLITE_OK; |
| Btree *pBt = db->aDb[i].pBt; |
| if( pBt ){ |
| if( eOp==SAVEPOINT_ROLLBACK ){ |
| rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint); |
| } |
| if( rc2==SQLITE_OK ){ |
| rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint); |
| } |
| if( rc==SQLITE_OK ){ |
| rc = rc2; |
| } |
| } |
| } |
| db->nStatement--; |
| p->iStatement = 0; |
| |
| if( rc==SQLITE_OK ){ |
| if( eOp==SAVEPOINT_ROLLBACK ){ |
| rc = sqlite3VtabSavepoint(db, SAVEPOINT_ROLLBACK, iSavepoint); |
| } |
| if( rc==SQLITE_OK ){ |
| rc = sqlite3VtabSavepoint(db, SAVEPOINT_RELEASE, iSavepoint); |
| } |
| } |
| |
| /* If the statement transaction is being rolled back, also restore the |
| ** database handles deferred constraint counter to the value it had when |
| ** the statement transaction was opened. */ |
| if( eOp==SAVEPOINT_ROLLBACK ){ |
| db->nDeferredCons = p->nStmtDefCons; |
| db->nDeferredImmCons = p->nStmtDefImmCons; |
| } |
| return rc; |
| } |
| int sqlite3VdbeCloseStatement(Vdbe *p, int eOp){ |
| if( p->db->nStatement && p->iStatement ){ |
| return vdbeCloseStatement(p, eOp); |
| } |
| return SQLITE_OK; |
| } |
| |
| |
| /* |
| ** This function is called when a transaction opened by the database |
| ** handle associated with the VM passed as an argument is about to be |
| ** committed. If there are outstanding deferred foreign key constraint |
| ** violations, return SQLITE_ERROR. Otherwise, SQLITE_OK. |
| ** |
| ** If there are outstanding FK violations and this function returns |
| ** SQLITE_ERROR, set the result of the VM to SQLITE_CONSTRAINT_FOREIGNKEY |
| ** and write an error message to it. Then return SQLITE_ERROR. |
| */ |
| #ifndef SQLITE_OMIT_FOREIGN_KEY |
| int sqlite3VdbeCheckFk(Vdbe *p, int deferred){ |
| sqlite3 *db = p->db; |
| if( (deferred && (db->nDeferredCons+db->nDeferredImmCons)>0) |
| || (!deferred && p->nFkConstraint>0) |
| ){ |
| p->rc = SQLITE_CONSTRAINT_FOREIGNKEY; |
| p->errorAction = OE_Abort; |
| sqlite3VdbeError(p, "FOREIGN KEY constraint failed"); |
| return SQLITE_ERROR; |
| } |
| return SQLITE_OK; |
| } |
| #endif |
| |
| /* |
| ** This routine is called the when a VDBE tries to halt. If the VDBE |
| ** has made changes and is in autocommit mode, then commit those |
| ** changes. If a rollback is needed, then do the rollback. |
| ** |
| ** This routine is the only way to move the state of a VM from |
| ** SQLITE_MAGIC_RUN to SQLITE_MAGIC_HALT. It is harmless to |
| ** call this on a VM that is in the SQLITE_MAGIC_HALT state. |
| ** |
| ** Return an error code. If the commit could not complete because of |
| ** lock contention, return SQLITE_BUSY. If SQLITE_BUSY is returned, it |
| ** means the close did not happen and needs to be repeated. |
| */ |
| int sqlite3VdbeHalt(Vdbe *p){ |
| int rc; /* Used to store transient return codes */ |
| sqlite3 *db = p->db; |
| |
| /* This function contains the logic that determines if a statement or |
| ** transaction will be committed or rolled back as a result of the |
| ** execution of this virtual machine. |
| ** |
| ** If any of the following errors occur: |
| ** |
| ** SQLITE_NOMEM |
| ** SQLITE_IOERR
|