1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sql/SQLite364/vdbeInt.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,423 @@
1.4 +/*
1.5 +** 2003 September 6
1.6 +**
1.7 +** The author disclaims copyright to this source code. In place of
1.8 +** a legal notice, here is a blessing:
1.9 +**
1.10 +** May you do good and not evil.
1.11 +** May you find forgiveness for yourself and forgive others.
1.12 +** May you share freely, never taking more than you give.
1.13 +**
1.14 +*************************************************************************
1.15 +** This is the header file for information that is private to the
1.16 +** VDBE. This information used to all be at the top of the single
1.17 +** source code file "vdbe.c". When that file became too big (over
1.18 +** 6000 lines long) it was split up into several smaller files and
1.19 +** this header information was factored out.
1.20 +**
1.21 +** $Id: vdbeInt.h,v 1.155 2008/10/07 23:46:38 drh Exp $
1.22 +*/
1.23 +#ifndef _VDBEINT_H_
1.24 +#define _VDBEINT_H_
1.25 +
1.26 +/*
1.27 +** intToKey() and keyToInt() used to transform the rowid. But with
1.28 +** the latest versions of the design they are no-ops.
1.29 +*/
1.30 +#define keyToInt(X) (X)
1.31 +#define intToKey(X) (X)
1.32 +
1.33 +
1.34 +/*
1.35 +** SQL is translated into a sequence of instructions to be
1.36 +** executed by a virtual machine. Each instruction is an instance
1.37 +** of the following structure.
1.38 +*/
1.39 +typedef struct VdbeOp Op;
1.40 +
1.41 +/*
1.42 +** Boolean values
1.43 +*/
1.44 +typedef unsigned char Bool;
1.45 +
1.46 +/*
1.47 +** A cursor is a pointer into a single BTree within a database file.
1.48 +** The cursor can seek to a BTree entry with a particular key, or
1.49 +** loop over all entries of the Btree. You can also insert new BTree
1.50 +** entries or retrieve the key or data from the entry that the cursor
1.51 +** is currently pointing to.
1.52 +**
1.53 +** Every cursor that the virtual machine has open is represented by an
1.54 +** instance of the following structure.
1.55 +**
1.56 +** If the Cursor.isTriggerRow flag is set it means that this cursor is
1.57 +** really a single row that represents the NEW or OLD pseudo-table of
1.58 +** a row trigger. The data for the row is stored in Cursor.pData and
1.59 +** the rowid is in Cursor.iKey.
1.60 +*/
1.61 +struct Cursor {
1.62 + BtCursor *pCursor; /* The cursor structure of the backend */
1.63 + int iDb; /* Index of cursor database in db->aDb[] (or -1) */
1.64 + i64 lastRowid; /* Last rowid from a Next or NextIdx operation */
1.65 + i64 nextRowid; /* Next rowid returned by OP_NewRowid */
1.66 + Bool zeroed; /* True if zeroed out and ready for reuse */
1.67 + Bool rowidIsValid; /* True if lastRowid is valid */
1.68 + Bool atFirst; /* True if pointing to first entry */
1.69 + Bool useRandomRowid; /* Generate new record numbers semi-randomly */
1.70 + Bool nullRow; /* True if pointing to a row with no data */
1.71 + Bool nextRowidValid; /* True if the nextRowid field is valid */
1.72 + Bool pseudoTable; /* This is a NEW or OLD pseudo-tables of a trigger */
1.73 + Bool ephemPseudoTable;
1.74 + Bool deferredMoveto; /* A call to sqlite3BtreeMoveto() is needed */
1.75 + Bool isTable; /* True if a table requiring integer keys */
1.76 + Bool isIndex; /* True if an index containing keys only - no data */
1.77 + i64 movetoTarget; /* Argument to the deferred sqlite3BtreeMoveto() */
1.78 + Btree *pBt; /* Separate file holding temporary table */
1.79 + int nData; /* Number of bytes in pData */
1.80 + char *pData; /* Data for a NEW or OLD pseudo-table */
1.81 + i64 iKey; /* Key for the NEW or OLD pseudo-table row */
1.82 + KeyInfo *pKeyInfo; /* Info about index keys needed by index cursors */
1.83 + int nField; /* Number of fields in the header */
1.84 + i64 seqCount; /* Sequence counter */
1.85 + sqlite3_vtab_cursor *pVtabCursor; /* The cursor for a virtual table */
1.86 + const sqlite3_module *pModule; /* Module for cursor pVtabCursor */
1.87 +
1.88 + /* Cached information about the header for the data record that the
1.89 + ** cursor is currently pointing to. Only valid if cacheValid is true.
1.90 + ** aRow might point to (ephemeral) data for the current row, or it might
1.91 + ** be NULL.
1.92 + */
1.93 + int cacheStatus; /* Cache is valid if this matches Vdbe.cacheCtr */
1.94 + int payloadSize; /* Total number of bytes in the record */
1.95 + u32 *aType; /* Type values for all entries in the record */
1.96 + u32 *aOffset; /* Cached offsets to the start of each columns data */
1.97 + u8 *aRow; /* Data for the current row, if all on one page */
1.98 +};
1.99 +typedef struct Cursor Cursor;
1.100 +
1.101 +/*
1.102 +** A value for Cursor.cacheValid that means the cache is always invalid.
1.103 +*/
1.104 +#define CACHE_STALE 0
1.105 +
1.106 +/*
1.107 +** Internally, the vdbe manipulates nearly all SQL values as Mem
1.108 +** structures. Each Mem struct may cache multiple representations (string,
1.109 +** integer etc.) of the same value. A value (and therefore Mem structure)
1.110 +** has the following properties:
1.111 +**
1.112 +** Each value has a manifest type. The manifest type of the value stored
1.113 +** in a Mem struct is returned by the MemType(Mem*) macro. The type is
1.114 +** one of SQLITE_NULL, SQLITE_INTEGER, SQLITE_REAL, SQLITE_TEXT or
1.115 +** SQLITE_BLOB.
1.116 +*/
1.117 +struct Mem {
1.118 + union {
1.119 + i64 i; /* Integer value. Or FuncDef* when flags==MEM_Agg */
1.120 + FuncDef *pDef; /* Used only when flags==MEM_Agg */
1.121 + } u;
1.122 + double r; /* Real value */
1.123 + sqlite3 *db; /* The associated database connection */
1.124 + char *z; /* String or BLOB value */
1.125 + int n; /* Number of characters in string value, excluding '\0' */
1.126 + u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
1.127 + u8 type; /* One of SQLITE_NULL, SQLITE_TEXT, SQLITE_INTEGER, etc */
1.128 + u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */
1.129 + void (*xDel)(void *); /* If not null, call this function to delete Mem.z */
1.130 + char *zMalloc; /* Dynamic buffer allocated by sqlite3_malloc() */
1.131 +};
1.132 +
1.133 +/* One or more of the following flags are set to indicate the validOK
1.134 +** representations of the value stored in the Mem struct.
1.135 +**
1.136 +** If the MEM_Null flag is set, then the value is an SQL NULL value.
1.137 +** No other flags may be set in this case.
1.138 +**
1.139 +** If the MEM_Str flag is set then Mem.z points at a string representation.
1.140 +** Usually this is encoded in the same unicode encoding as the main
1.141 +** database (see below for exceptions). If the MEM_Term flag is also
1.142 +** set, then the string is nul terminated. The MEM_Int and MEM_Real
1.143 +** flags may coexist with the MEM_Str flag.
1.144 +**
1.145 +** Multiple of these values can appear in Mem.flags. But only one
1.146 +** at a time can appear in Mem.type.
1.147 +*/
1.148 +#define MEM_Null 0x0001 /* Value is NULL */
1.149 +#define MEM_Str 0x0002 /* Value is a string */
1.150 +#define MEM_Int 0x0004 /* Value is an integer */
1.151 +#define MEM_Real 0x0008 /* Value is a real number */
1.152 +#define MEM_Blob 0x0010 /* Value is a BLOB */
1.153 +
1.154 +#define MemSetTypeFlag(p, f) \
1.155 + ((p)->flags = ((p)->flags&~(MEM_Int|MEM_Real|MEM_Null|MEM_Blob|MEM_Str))|f)
1.156 +
1.157 +/* Whenever Mem contains a valid string or blob representation, one of
1.158 +** the following flags must be set to determine the memory management
1.159 +** policy for Mem.z. The MEM_Term flag tells us whether or not the
1.160 +** string is \000 or \u0000 terminated
1.161 +*/
1.162 +#define MEM_Term 0x0020 /* String rep is nul terminated */
1.163 +#define MEM_Dyn 0x0040 /* Need to call sqliteFree() on Mem.z */
1.164 +#define MEM_Static 0x0080 /* Mem.z points to a static string */
1.165 +#define MEM_Ephem 0x0100 /* Mem.z points to an ephemeral string */
1.166 +#define MEM_Agg 0x0400 /* Mem.z points to an agg function context */
1.167 +#define MEM_Zero 0x0800 /* Mem.i contains count of 0s appended to blob */
1.168 +
1.169 +#ifdef SQLITE_OMIT_INCRBLOB
1.170 + #undef MEM_Zero
1.171 + #define MEM_Zero 0x0000
1.172 +#endif
1.173 +
1.174 +
1.175 +/* A VdbeFunc is just a FuncDef (defined in sqliteInt.h) that contains
1.176 +** additional information about auxiliary information bound to arguments
1.177 +** of the function. This is used to implement the sqlite3_get_auxdata()
1.178 +** and sqlite3_set_auxdata() APIs. The "auxdata" is some auxiliary data
1.179 +** that can be associated with a constant argument to a function. This
1.180 +** allows functions such as "regexp" to compile their constant regular
1.181 +** expression argument once and reused the compiled code for multiple
1.182 +** invocations.
1.183 +*/
1.184 +struct VdbeFunc {
1.185 + FuncDef *pFunc; /* The definition of the function */
1.186 + int nAux; /* Number of entries allocated for apAux[] */
1.187 + struct AuxData {
1.188 + void *pAux; /* Aux data for the i-th argument */
1.189 + void (*xDelete)(void *); /* Destructor for the aux data */
1.190 + } apAux[1]; /* One slot for each function argument */
1.191 +};
1.192 +
1.193 +/*
1.194 +** The "context" argument for a installable function. A pointer to an
1.195 +** instance of this structure is the first argument to the routines used
1.196 +** implement the SQL functions.
1.197 +**
1.198 +** There is a typedef for this structure in sqlite.h. So all routines,
1.199 +** even the public interface to SQLite, can use a pointer to this structure.
1.200 +** But this file is the only place where the internal details of this
1.201 +** structure are known.
1.202 +**
1.203 +** This structure is defined inside of vdbeInt.h because it uses substructures
1.204 +** (Mem) which are only defined there.
1.205 +*/
1.206 +struct sqlite3_context {
1.207 + FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */
1.208 + VdbeFunc *pVdbeFunc; /* Auxilary data, if created. */
1.209 + Mem s; /* The return value is stored here */
1.210 + Mem *pMem; /* Memory cell used to store aggregate context */
1.211 + int isError; /* Error code returned by the function. */
1.212 + CollSeq *pColl; /* Collating sequence */
1.213 +};
1.214 +
1.215 +/*
1.216 +** A Set structure is used for quick testing to see if a value
1.217 +** is part of a small set. Sets are used to implement code like
1.218 +** this:
1.219 +** x.y IN ('hi','hoo','hum')
1.220 +*/
1.221 +typedef struct Set Set;
1.222 +struct Set {
1.223 + Hash hash; /* A set is just a hash table */
1.224 + HashElem *prev; /* Previously accessed hash elemen */
1.225 +};
1.226 +
1.227 +/*
1.228 +** A FifoPage structure holds a single page of valves. Pages are arranged
1.229 +** in a list.
1.230 +*/
1.231 +typedef struct FifoPage FifoPage;
1.232 +struct FifoPage {
1.233 + int nSlot; /* Number of entries aSlot[] */
1.234 + int iWrite; /* Push the next value into this entry in aSlot[] */
1.235 + int iRead; /* Read the next value from this entry in aSlot[] */
1.236 + FifoPage *pNext; /* Next page in the fifo */
1.237 + i64 aSlot[1]; /* One or more slots for rowid values */
1.238 +};
1.239 +
1.240 +/*
1.241 +** The Fifo structure is typedef-ed in vdbeInt.h. But the implementation
1.242 +** of that structure is private to this file.
1.243 +**
1.244 +** The Fifo structure describes the entire fifo.
1.245 +*/
1.246 +typedef struct Fifo Fifo;
1.247 +struct Fifo {
1.248 + int nEntry; /* Total number of entries */
1.249 + sqlite3 *db; /* The associated database connection */
1.250 + FifoPage *pFirst; /* First page on the list */
1.251 + FifoPage *pLast; /* Last page on the list */
1.252 +};
1.253 +
1.254 +/*
1.255 +** A Context stores the last insert rowid, the last statement change count,
1.256 +** and the current statement change count (i.e. changes since last statement).
1.257 +** The current keylist is also stored in the context.
1.258 +** Elements of Context structure type make up the ContextStack, which is
1.259 +** updated by the ContextPush and ContextPop opcodes (used by triggers).
1.260 +** The context is pushed before executing a trigger a popped when the
1.261 +** trigger finishes.
1.262 +*/
1.263 +typedef struct Context Context;
1.264 +struct Context {
1.265 + i64 lastRowid; /* Last insert rowid (sqlite3.lastRowid) */
1.266 + int nChange; /* Statement changes (Vdbe.nChanges) */
1.267 + Fifo sFifo; /* Records that will participate in a DELETE or UPDATE */
1.268 +};
1.269 +
1.270 +/*
1.271 +** An instance of the virtual machine. This structure contains the complete
1.272 +** state of the virtual machine.
1.273 +**
1.274 +** The "sqlite3_stmt" structure pointer that is returned by sqlite3_compile()
1.275 +** is really a pointer to an instance of this structure.
1.276 +**
1.277 +** The Vdbe.inVtabMethod variable is set to non-zero for the duration of
1.278 +** any virtual table method invocations made by the vdbe program. It is
1.279 +** set to 2 for xDestroy method calls and 1 for all other methods. This
1.280 +** variable is used for two purposes: to allow xDestroy methods to execute
1.281 +** "DROP TABLE" statements and to prevent some nasty side effects of
1.282 +** malloc failure when SQLite is invoked recursively by a virtual table
1.283 +** method function.
1.284 +*/
1.285 +struct Vdbe {
1.286 + sqlite3 *db; /* The whole database */
1.287 + Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */
1.288 + int nOp; /* Number of instructions in the program */
1.289 + int nOpAlloc; /* Number of slots allocated for aOp[] */
1.290 + Op *aOp; /* Space to hold the virtual machine's program */
1.291 + int nLabel; /* Number of labels used */
1.292 + int nLabelAlloc; /* Number of slots allocated in aLabel[] */
1.293 + int *aLabel; /* Space to hold the labels */
1.294 + Mem **apArg; /* Arguments to currently executing user function */
1.295 + Mem *aColName; /* Column names to return */
1.296 + int nCursor; /* Number of slots in apCsr[] */
1.297 + Cursor **apCsr; /* One element of this array for each open cursor */
1.298 + int nVar; /* Number of entries in aVar[] */
1.299 + Mem *aVar; /* Values for the OP_Variable opcode. */
1.300 + char **azVar; /* Name of variables */
1.301 + int okVar; /* True if azVar[] has been initialized */
1.302 + int magic; /* Magic number for sanity checking */
1.303 + int nMem; /* Number of memory locations currently allocated */
1.304 + Mem *aMem; /* The memory locations */
1.305 + int nCallback; /* Number of callbacks invoked so far */
1.306 + int cacheCtr; /* Cursor row cache generation counter */
1.307 + Fifo sFifo; /* A list of ROWIDs */
1.308 + int contextStackTop; /* Index of top element in the context stack */
1.309 + int contextStackDepth; /* The size of the "context" stack */
1.310 + Context *contextStack; /* Stack used by opcodes ContextPush & ContextPop*/
1.311 + int pc; /* The program counter */
1.312 + int rc; /* Value to return */
1.313 + unsigned uniqueCnt; /* Used by OP_MakeRecord when P2!=0 */
1.314 + int errorAction; /* Recovery action to do in case of an error */
1.315 + int inTempTrans; /* True if temp database is transactioned */
1.316 + int nResColumn; /* Number of columns in one row of the result set */
1.317 + char **azResColumn; /* Values for one row of result */
1.318 + char *zErrMsg; /* Error message written here */
1.319 + Mem *pResultSet; /* Pointer to an array of results */
1.320 + u8 explain; /* True if EXPLAIN present on SQL command */
1.321 + u8 changeCntOn; /* True to update the change-counter */
1.322 + u8 expired; /* True if the VM needs to be recompiled */
1.323 + u8 minWriteFileFormat; /* Minimum file format for writable database files */
1.324 + u8 inVtabMethod; /* See comments above */
1.325 + int nChange; /* Number of db changes made since last reset */
1.326 + i64 startTime; /* Time when query started - used for profiling */
1.327 + int btreeMask; /* Bitmask of db->aDb[] entries referenced */
1.328 + BtreeMutexArray aMutex; /* An array of Btree used here and needing locks */
1.329 + int aCounter[2]; /* Counters used by sqlite3_stmt_status() */
1.330 + int nSql; /* Number of bytes in zSql */
1.331 + char *zSql; /* Text of the SQL statement that generated this */
1.332 +#ifdef SQLITE_DEBUG
1.333 + FILE *trace; /* Write an execution trace here, if not NULL */
1.334 +#endif
1.335 + int openedStatement; /* True if this VM has opened a statement journal */
1.336 +#ifdef SQLITE_SSE
1.337 + int fetchId; /* Statement number used by sqlite3_fetch_statement */
1.338 + int lru; /* Counter used for LRU cache replacement */
1.339 +#endif
1.340 +#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT
1.341 + Vdbe *pLruPrev;
1.342 + Vdbe *pLruNext;
1.343 +#endif
1.344 +};
1.345 +
1.346 +/*
1.347 +** The following are allowed values for Vdbe.magic
1.348 +*/
1.349 +#define VDBE_MAGIC_INIT 0x26bceaa5 /* Building a VDBE program */
1.350 +#define VDBE_MAGIC_RUN 0xbdf20da3 /* VDBE is ready to execute */
1.351 +#define VDBE_MAGIC_HALT 0x519c2973 /* VDBE has completed execution */
1.352 +#define VDBE_MAGIC_DEAD 0xb606c3c8 /* The VDBE has been deallocated */
1.353 +
1.354 +/*
1.355 +** Function prototypes
1.356 +*/
1.357 +void sqlite3VdbeFreeCursor(Vdbe *, Cursor*);
1.358 +void sqliteVdbePopStack(Vdbe*,int);
1.359 +int sqlite3VdbeCursorMoveto(Cursor*);
1.360 +#if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE)
1.361 +void sqlite3VdbePrintOp(FILE*, int, Op*);
1.362 +#endif
1.363 +int sqlite3VdbeSerialTypeLen(u32);
1.364 +u32 sqlite3VdbeSerialType(Mem*, int);
1.365 +int sqlite3VdbeSerialPut(unsigned char*, int, Mem*, int);
1.366 +int sqlite3VdbeSerialGet(const unsigned char*, u32, Mem*);
1.367 +void sqlite3VdbeDeleteAuxData(VdbeFunc*, int);
1.368 +
1.369 +int sqlite2BtreeKeyCompare(BtCursor *, const void *, int, int, int *);
1.370 +int sqlite3VdbeIdxKeyCompare(Cursor*,UnpackedRecord*,int*);
1.371 +int sqlite3VdbeIdxRowid(BtCursor *, i64 *);
1.372 +int sqlite3MemCompare(const Mem*, const Mem*, const CollSeq*);
1.373 +int sqlite3VdbeExec(Vdbe*);
1.374 +int sqlite3VdbeList(Vdbe*);
1.375 +int sqlite3VdbeHalt(Vdbe*);
1.376 +int sqlite3VdbeChangeEncoding(Mem *, int);
1.377 +int sqlite3VdbeMemTooBig(Mem*);
1.378 +int sqlite3VdbeMemCopy(Mem*, const Mem*);
1.379 +void sqlite3VdbeMemShallowCopy(Mem*, const Mem*, int);
1.380 +void sqlite3VdbeMemMove(Mem*, Mem*);
1.381 +int sqlite3VdbeMemNulTerminate(Mem*);
1.382 +int sqlite3VdbeMemSetStr(Mem*, const char*, int, u8, void(*)(void*));
1.383 +void sqlite3VdbeMemSetInt64(Mem*, i64);
1.384 +void sqlite3VdbeMemSetDouble(Mem*, double);
1.385 +void sqlite3VdbeMemSetNull(Mem*);
1.386 +void sqlite3VdbeMemSetZeroBlob(Mem*,int);
1.387 +int sqlite3VdbeMemMakeWriteable(Mem*);
1.388 +int sqlite3VdbeMemStringify(Mem*, int);
1.389 +i64 sqlite3VdbeIntValue(Mem*);
1.390 +int sqlite3VdbeMemIntegerify(Mem*);
1.391 +double sqlite3VdbeRealValue(Mem*);
1.392 +void sqlite3VdbeIntegerAffinity(Mem*);
1.393 +int sqlite3VdbeMemRealify(Mem*);
1.394 +int sqlite3VdbeMemNumerify(Mem*);
1.395 +int sqlite3VdbeMemFromBtree(BtCursor*,int,int,int,Mem*);
1.396 +void sqlite3VdbeMemRelease(Mem *p);
1.397 +void sqlite3VdbeMemReleaseExternal(Mem *p);
1.398 +int sqlite3VdbeMemFinalize(Mem*, FuncDef*);
1.399 +const char *sqlite3OpcodeName(int);
1.400 +int sqlite3VdbeOpcodeHasProperty(int, int);
1.401 +int sqlite3VdbeMemGrow(Mem *pMem, int n, int preserve);
1.402 +#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT
1.403 +int sqlite3VdbeReleaseBuffers(Vdbe *p);
1.404 +#endif
1.405 +
1.406 +#ifndef NDEBUG
1.407 + void sqlite3VdbeMemSanity(Mem*);
1.408 +#endif
1.409 +int sqlite3VdbeMemTranslate(Mem*, u8);
1.410 +#ifdef SQLITE_DEBUG
1.411 + void sqlite3VdbePrintSql(Vdbe*);
1.412 + void sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf);
1.413 +#endif
1.414 +int sqlite3VdbeMemHandleBom(Mem *pMem);
1.415 +void sqlite3VdbeFifoInit(Fifo*, sqlite3*);
1.416 +int sqlite3VdbeFifoPush(Fifo*, i64);
1.417 +int sqlite3VdbeFifoPop(Fifo*, i64*);
1.418 +void sqlite3VdbeFifoClear(Fifo*);
1.419 +
1.420 +#ifndef SQLITE_OMIT_INCRBLOB
1.421 + int sqlite3VdbeMemExpandBlob(Mem *);
1.422 +#else
1.423 + #define sqlite3VdbeMemExpandBlob(x) SQLITE_OK
1.424 +#endif
1.425 +
1.426 +#endif /* !defined(_VDBEINT_H_) */