sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2001 September 15
|
sl@0
|
3 |
**
|
sl@0
|
4 |
** The author disclaims copyright to this source code. In place of
|
sl@0
|
5 |
** a legal notice, here is a blessing:
|
sl@0
|
6 |
**
|
sl@0
|
7 |
** May you do good and not evil.
|
sl@0
|
8 |
** May you find forgiveness for yourself and forgive others.
|
sl@0
|
9 |
** May you share freely, never taking more than you give.
|
sl@0
|
10 |
**
|
sl@0
|
11 |
*************************************************************************
|
sl@0
|
12 |
** This header file defines the interface that the sqlite B-Tree file
|
sl@0
|
13 |
** subsystem. See comments in the source code for a detailed description
|
sl@0
|
14 |
** of what each interface routine does.
|
sl@0
|
15 |
**
|
sl@0
|
16 |
** @(#) $Id: btree.h,v 1.104 2008/10/08 17:58:49 danielk1977 Exp $
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
#ifndef _BTREE_H_
|
sl@0
|
19 |
#define _BTREE_H_
|
sl@0
|
20 |
|
sl@0
|
21 |
/* TODO: This definition is just included so other modules compile. It
|
sl@0
|
22 |
** needs to be revisited.
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
#define SQLITE_N_BTREE_META 10
|
sl@0
|
25 |
|
sl@0
|
26 |
/*
|
sl@0
|
27 |
** If defined as non-zero, auto-vacuum is enabled by default. Otherwise
|
sl@0
|
28 |
** it must be turned on for each database using "PRAGMA auto_vacuum = 1".
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
#ifndef SQLITE_DEFAULT_AUTOVACUUM
|
sl@0
|
31 |
#define SQLITE_DEFAULT_AUTOVACUUM 0
|
sl@0
|
32 |
#endif
|
sl@0
|
33 |
|
sl@0
|
34 |
#define BTREE_AUTOVACUUM_NONE 0 /* Do not do auto-vacuum */
|
sl@0
|
35 |
#define BTREE_AUTOVACUUM_FULL 1 /* Do full auto-vacuum */
|
sl@0
|
36 |
#define BTREE_AUTOVACUUM_INCR 2 /* Incremental vacuum */
|
sl@0
|
37 |
|
sl@0
|
38 |
/*
|
sl@0
|
39 |
** Forward declarations of structure
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
typedef struct Btree Btree;
|
sl@0
|
42 |
typedef struct BtCursor BtCursor;
|
sl@0
|
43 |
typedef struct BtShared BtShared;
|
sl@0
|
44 |
typedef struct BtreeMutexArray BtreeMutexArray;
|
sl@0
|
45 |
|
sl@0
|
46 |
/*
|
sl@0
|
47 |
** This structure records all of the Btrees that need to hold
|
sl@0
|
48 |
** a mutex before we enter sqlite3VdbeExec(). The Btrees are
|
sl@0
|
49 |
** are placed in aBtree[] in order of aBtree[]->pBt. That way,
|
sl@0
|
50 |
** we can always lock and unlock them all quickly.
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
struct BtreeMutexArray {
|
sl@0
|
53 |
int nMutex;
|
sl@0
|
54 |
Btree *aBtree[SQLITE_MAX_ATTACHED+1];
|
sl@0
|
55 |
};
|
sl@0
|
56 |
|
sl@0
|
57 |
|
sl@0
|
58 |
int sqlite3BtreeOpen(
|
sl@0
|
59 |
const char *zFilename, /* Name of database file to open */
|
sl@0
|
60 |
sqlite3 *db, /* Associated database connection */
|
sl@0
|
61 |
Btree **, /* Return open Btree* here */
|
sl@0
|
62 |
int flags, /* Flags */
|
sl@0
|
63 |
int vfsFlags /* Flags passed through to VFS open */
|
sl@0
|
64 |
);
|
sl@0
|
65 |
|
sl@0
|
66 |
/* The flags parameter to sqlite3BtreeOpen can be the bitwise or of the
|
sl@0
|
67 |
** following values.
|
sl@0
|
68 |
**
|
sl@0
|
69 |
** NOTE: These values must match the corresponding PAGER_ values in
|
sl@0
|
70 |
** pager.h.
|
sl@0
|
71 |
*/
|
sl@0
|
72 |
#define BTREE_OMIT_JOURNAL 1 /* Do not use journal. No argument */
|
sl@0
|
73 |
#define BTREE_NO_READLOCK 2 /* Omit readlocks on readonly files */
|
sl@0
|
74 |
#define BTREE_MEMORY 4 /* In-memory DB. No argument */
|
sl@0
|
75 |
#define BTREE_READONLY 8 /* Open the database in read-only mode */
|
sl@0
|
76 |
#define BTREE_READWRITE 16 /* Open for both reading and writing */
|
sl@0
|
77 |
#define BTREE_CREATE 32 /* Create the database if it does not exist */
|
sl@0
|
78 |
|
sl@0
|
79 |
int sqlite3BtreeClose(Btree*);
|
sl@0
|
80 |
int sqlite3BtreeSetCacheSize(Btree*,int);
|
sl@0
|
81 |
int sqlite3BtreeSetSafetyLevel(Btree*,int,int);
|
sl@0
|
82 |
int sqlite3BtreeSyncDisabled(Btree*);
|
sl@0
|
83 |
int sqlite3BtreeSetPageSize(Btree*,int,int);
|
sl@0
|
84 |
int sqlite3BtreeGetPageSize(Btree*);
|
sl@0
|
85 |
int sqlite3BtreeMaxPageCount(Btree*,int);
|
sl@0
|
86 |
int sqlite3BtreeGetReserve(Btree*);
|
sl@0
|
87 |
int sqlite3BtreeSetAutoVacuum(Btree *, int);
|
sl@0
|
88 |
int sqlite3BtreeGetAutoVacuum(Btree *);
|
sl@0
|
89 |
int sqlite3BtreeBeginTrans(Btree*,int);
|
sl@0
|
90 |
int sqlite3BtreeCommitPhaseOne(Btree*, const char *zMaster);
|
sl@0
|
91 |
int sqlite3BtreeCommitPhaseTwo(Btree*);
|
sl@0
|
92 |
int sqlite3BtreeCommit(Btree*);
|
sl@0
|
93 |
int sqlite3BtreeRollback(Btree*);
|
sl@0
|
94 |
int sqlite3BtreeBeginStmt(Btree*);
|
sl@0
|
95 |
int sqlite3BtreeCommitStmt(Btree*);
|
sl@0
|
96 |
int sqlite3BtreeRollbackStmt(Btree*);
|
sl@0
|
97 |
int sqlite3BtreeCreateTable(Btree*, int*, int flags);
|
sl@0
|
98 |
int sqlite3BtreeIsInTrans(Btree*);
|
sl@0
|
99 |
int sqlite3BtreeIsInStmt(Btree*);
|
sl@0
|
100 |
int sqlite3BtreeIsInReadTrans(Btree*);
|
sl@0
|
101 |
void *sqlite3BtreeSchema(Btree *, int, void(*)(void *));
|
sl@0
|
102 |
int sqlite3BtreeSchemaLocked(Btree *);
|
sl@0
|
103 |
int sqlite3BtreeLockTable(Btree *, int, u8);
|
sl@0
|
104 |
|
sl@0
|
105 |
const char *sqlite3BtreeGetFilename(Btree *);
|
sl@0
|
106 |
const char *sqlite3BtreeGetDirname(Btree *);
|
sl@0
|
107 |
const char *sqlite3BtreeGetJournalname(Btree *);
|
sl@0
|
108 |
int sqlite3BtreeCopyFile(Btree *, Btree *);
|
sl@0
|
109 |
|
sl@0
|
110 |
int sqlite3BtreeIncrVacuum(Btree *);
|
sl@0
|
111 |
|
sl@0
|
112 |
/* The flags parameter to sqlite3BtreeCreateTable can be the bitwise OR
|
sl@0
|
113 |
** of the following flags:
|
sl@0
|
114 |
*/
|
sl@0
|
115 |
#define BTREE_INTKEY 1 /* Table has only 64-bit signed integer keys */
|
sl@0
|
116 |
#define BTREE_ZERODATA 2 /* Table has keys only - no data */
|
sl@0
|
117 |
#define BTREE_LEAFDATA 4 /* Data stored in leaves only. Implies INTKEY */
|
sl@0
|
118 |
|
sl@0
|
119 |
int sqlite3BtreeDropTable(Btree*, int, int*);
|
sl@0
|
120 |
int sqlite3BtreeClearTable(Btree*, int);
|
sl@0
|
121 |
int sqlite3BtreeGetMeta(Btree*, int idx, u32 *pValue);
|
sl@0
|
122 |
int sqlite3BtreeUpdateMeta(Btree*, int idx, u32 value);
|
sl@0
|
123 |
void sqlite3BtreeTripAllCursors(Btree*, int);
|
sl@0
|
124 |
|
sl@0
|
125 |
int sqlite3BtreeCursor(
|
sl@0
|
126 |
Btree*, /* BTree containing table to open */
|
sl@0
|
127 |
int iTable, /* Index of root page */
|
sl@0
|
128 |
int wrFlag, /* 1 for writing. 0 for read-only */
|
sl@0
|
129 |
struct KeyInfo*, /* First argument to compare function */
|
sl@0
|
130 |
BtCursor *pCursor /* Space to write cursor structure */
|
sl@0
|
131 |
);
|
sl@0
|
132 |
int sqlite3BtreeCursorSize(void);
|
sl@0
|
133 |
|
sl@0
|
134 |
int sqlite3BtreeCloseCursor(BtCursor*);
|
sl@0
|
135 |
int sqlite3BtreeMoveto(
|
sl@0
|
136 |
BtCursor*,
|
sl@0
|
137 |
const void *pKey,
|
sl@0
|
138 |
i64 nKey,
|
sl@0
|
139 |
int bias,
|
sl@0
|
140 |
int *pRes
|
sl@0
|
141 |
);
|
sl@0
|
142 |
int sqlite3BtreeMovetoUnpacked(
|
sl@0
|
143 |
BtCursor*,
|
sl@0
|
144 |
UnpackedRecord *pUnKey,
|
sl@0
|
145 |
i64 intKey,
|
sl@0
|
146 |
int bias,
|
sl@0
|
147 |
int *pRes
|
sl@0
|
148 |
);
|
sl@0
|
149 |
int sqlite3BtreeCursorHasMoved(BtCursor*, int*);
|
sl@0
|
150 |
int sqlite3BtreeDelete(BtCursor*);
|
sl@0
|
151 |
int sqlite3BtreeInsert(BtCursor*, const void *pKey, i64 nKey,
|
sl@0
|
152 |
const void *pData, int nData,
|
sl@0
|
153 |
int nZero, int bias);
|
sl@0
|
154 |
int sqlite3BtreeFirst(BtCursor*, int *pRes);
|
sl@0
|
155 |
int sqlite3BtreeLast(BtCursor*, int *pRes);
|
sl@0
|
156 |
int sqlite3BtreeNext(BtCursor*, int *pRes);
|
sl@0
|
157 |
int sqlite3BtreeEof(BtCursor*);
|
sl@0
|
158 |
int sqlite3BtreeFlags(BtCursor*);
|
sl@0
|
159 |
int sqlite3BtreePrevious(BtCursor*, int *pRes);
|
sl@0
|
160 |
int sqlite3BtreeKeySize(BtCursor*, i64 *pSize);
|
sl@0
|
161 |
int sqlite3BtreeKey(BtCursor*, u32 offset, u32 amt, void*);
|
sl@0
|
162 |
sqlite3 *sqlite3BtreeCursorDb(const BtCursor*);
|
sl@0
|
163 |
const void *sqlite3BtreeKeyFetch(BtCursor*, int *pAmt);
|
sl@0
|
164 |
const void *sqlite3BtreeDataFetch(BtCursor*, int *pAmt);
|
sl@0
|
165 |
int sqlite3BtreeDataSize(BtCursor*, u32 *pSize);
|
sl@0
|
166 |
int sqlite3BtreeData(BtCursor*, u32 offset, u32 amt, void*);
|
sl@0
|
167 |
|
sl@0
|
168 |
char *sqlite3BtreeIntegrityCheck(Btree*, int *aRoot, int nRoot, int, int*);
|
sl@0
|
169 |
struct Pager *sqlite3BtreePager(Btree*);
|
sl@0
|
170 |
|
sl@0
|
171 |
int sqlite3BtreePutData(BtCursor*, u32 offset, u32 amt, void*);
|
sl@0
|
172 |
void sqlite3BtreeCacheOverflow(BtCursor *);
|
sl@0
|
173 |
void sqlite3BtreeClearCursor(BtCursor *);
|
sl@0
|
174 |
|
sl@0
|
175 |
#ifdef SQLITE_TEST
|
sl@0
|
176 |
int sqlite3BtreeCursorInfo(BtCursor*, int*, int);
|
sl@0
|
177 |
void sqlite3BtreeCursorList(Btree*);
|
sl@0
|
178 |
#endif
|
sl@0
|
179 |
|
sl@0
|
180 |
/*
|
sl@0
|
181 |
** If we are not using shared cache, then there is no need to
|
sl@0
|
182 |
** use mutexes to access the BtShared structures. So make the
|
sl@0
|
183 |
** Enter and Leave procedures no-ops.
|
sl@0
|
184 |
*/
|
sl@0
|
185 |
#if !defined(SQLITE_OMIT_SHARED_CACHE) && SQLITE_THREADSAFE
|
sl@0
|
186 |
void sqlite3BtreeEnter(Btree*);
|
sl@0
|
187 |
void sqlite3BtreeLeave(Btree*);
|
sl@0
|
188 |
#ifndef NDEBUG
|
sl@0
|
189 |
/* This routine is used inside assert() statements only. */
|
sl@0
|
190 |
int sqlite3BtreeHoldsMutex(Btree*);
|
sl@0
|
191 |
#endif
|
sl@0
|
192 |
void sqlite3BtreeEnterCursor(BtCursor*);
|
sl@0
|
193 |
void sqlite3BtreeLeaveCursor(BtCursor*);
|
sl@0
|
194 |
void sqlite3BtreeEnterAll(sqlite3*);
|
sl@0
|
195 |
void sqlite3BtreeLeaveAll(sqlite3*);
|
sl@0
|
196 |
#ifndef NDEBUG
|
sl@0
|
197 |
/* This routine is used inside assert() statements only. */
|
sl@0
|
198 |
int sqlite3BtreeHoldsAllMutexes(sqlite3*);
|
sl@0
|
199 |
#endif
|
sl@0
|
200 |
void sqlite3BtreeMutexArrayEnter(BtreeMutexArray*);
|
sl@0
|
201 |
void sqlite3BtreeMutexArrayLeave(BtreeMutexArray*);
|
sl@0
|
202 |
void sqlite3BtreeMutexArrayInsert(BtreeMutexArray*, Btree*);
|
sl@0
|
203 |
#else
|
sl@0
|
204 |
# define sqlite3BtreeEnter(X)
|
sl@0
|
205 |
# define sqlite3BtreeLeave(X)
|
sl@0
|
206 |
#ifndef NDEBUG
|
sl@0
|
207 |
/* This routine is used inside assert() statements only. */
|
sl@0
|
208 |
# define sqlite3BtreeHoldsMutex(X) 1
|
sl@0
|
209 |
#endif
|
sl@0
|
210 |
# define sqlite3BtreeEnterCursor(X)
|
sl@0
|
211 |
# define sqlite3BtreeLeaveCursor(X)
|
sl@0
|
212 |
# define sqlite3BtreeEnterAll(X)
|
sl@0
|
213 |
# define sqlite3BtreeLeaveAll(X)
|
sl@0
|
214 |
#ifndef NDEBUG
|
sl@0
|
215 |
/* This routine is used inside assert() statements only. */
|
sl@0
|
216 |
# define sqlite3BtreeHoldsAllMutexes(X) 1
|
sl@0
|
217 |
#endif
|
sl@0
|
218 |
# define sqlite3BtreeMutexArrayEnter(X)
|
sl@0
|
219 |
# define sqlite3BtreeMutexArrayLeave(X)
|
sl@0
|
220 |
# define sqlite3BtreeMutexArrayInsert(X,Y)
|
sl@0
|
221 |
#endif
|
sl@0
|
222 |
|
sl@0
|
223 |
|
sl@0
|
224 |
#endif /* _BTREE_H_ */
|