sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2008 August 05
|
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 page cache
|
sl@0
|
13 |
** subsystem.
|
sl@0
|
14 |
**
|
sl@0
|
15 |
** @(#) $Id: pcache.h,v 1.13 2008/10/11 17:42:29 drh Exp $
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef _PCACHE_H_
|
sl@0
|
19 |
|
sl@0
|
20 |
typedef struct PgHdr PgHdr;
|
sl@0
|
21 |
typedef struct PCache PCache;
|
sl@0
|
22 |
|
sl@0
|
23 |
/*
|
sl@0
|
24 |
** Every page in the cache is controlled by an instance of the following
|
sl@0
|
25 |
** structure.
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
struct PgHdr {
|
sl@0
|
28 |
void *pData; /* Content of this page */
|
sl@0
|
29 |
void *pExtra; /* Extra content */
|
sl@0
|
30 |
PgHdr *pDirty; /* Transient list of dirty pages */
|
sl@0
|
31 |
Pgno pgno; /* Page number for this page */
|
sl@0
|
32 |
Pager *pPager; /* The pager this page is part of */
|
sl@0
|
33 |
#ifdef SQLITE_CHECK_PAGES
|
sl@0
|
34 |
u32 pageHash; /* Hash of page content */
|
sl@0
|
35 |
#endif
|
sl@0
|
36 |
u16 flags; /* PGHDR flags defined below */
|
sl@0
|
37 |
/**********************************************************************
|
sl@0
|
38 |
** Elements above are public. All that follows is private to pcache.c
|
sl@0
|
39 |
** and should not be accessed by other modules.
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
i16 nRef; /* Number of users of this page */
|
sl@0
|
42 |
PCache *pCache; /* Cache that owns this page */
|
sl@0
|
43 |
void *apSave[2]; /* Journal entries for in-memory databases */
|
sl@0
|
44 |
/**********************************************************************
|
sl@0
|
45 |
** Elements above are accessible at any time by the owner of the cache
|
sl@0
|
46 |
** without the need for a mutex. The elements that follow can only be
|
sl@0
|
47 |
** accessed while holding the SQLITE_MUTEX_STATIC_LRU mutex.
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
PgHdr *pNextHash, *pPrevHash; /* Hash collision chain for PgHdr.pgno */
|
sl@0
|
50 |
PgHdr *pNext, *pPrev; /* List of clean or dirty pages */
|
sl@0
|
51 |
PgHdr *pNextLru, *pPrevLru; /* Part of global LRU list */
|
sl@0
|
52 |
};
|
sl@0
|
53 |
|
sl@0
|
54 |
/* Bit values for PgHdr.flags */
|
sl@0
|
55 |
#define PGHDR_IN_JOURNAL 0x001 /* Page is in rollback journal */
|
sl@0
|
56 |
#define PGHDR_DIRTY 0x002 /* Page has changed */
|
sl@0
|
57 |
#define PGHDR_NEED_SYNC 0x004 /* Fsync the rollback journal before
|
sl@0
|
58 |
** writing this page to the database */
|
sl@0
|
59 |
#define PGHDR_NEED_READ 0x008 /* Content is unread */
|
sl@0
|
60 |
#define PGHDR_REUSE_UNLIKELY 0x010 /* A hint that reuse is unlikely */
|
sl@0
|
61 |
#define PGHDR_DONT_WRITE 0x020 /* Do not write content to disk */
|
sl@0
|
62 |
|
sl@0
|
63 |
/* Initialize and shutdown the page cache subsystem */
|
sl@0
|
64 |
int sqlite3PcacheInitialize(void);
|
sl@0
|
65 |
void sqlite3PcacheShutdown(void);
|
sl@0
|
66 |
|
sl@0
|
67 |
/* Page cache buffer management:
|
sl@0
|
68 |
** These routines implement SQLITE_CONFIG_PAGECACHE.
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
void sqlite3PCacheBufferSetup(void *, int sz, int n);
|
sl@0
|
71 |
void *sqlite3PCacheMalloc(int sz);
|
sl@0
|
72 |
void sqlite3PCacheFree(void*);
|
sl@0
|
73 |
|
sl@0
|
74 |
/* Create a new pager cache.
|
sl@0
|
75 |
** Under memory stress, invoke xStress to try to make pages clean.
|
sl@0
|
76 |
** Only clean and unpinned pages can be reclaimed.
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
void sqlite3PcacheOpen(
|
sl@0
|
79 |
int szPage, /* Size of every page */
|
sl@0
|
80 |
int szExtra, /* Extra space associated with each page */
|
sl@0
|
81 |
int bPurgeable, /* True if pages are on backing store */
|
sl@0
|
82 |
int (*xStress)(void*, PgHdr*), /* Call to try to make pages clean */
|
sl@0
|
83 |
void *pStress, /* Argument to xStress */
|
sl@0
|
84 |
PCache *pToInit /* Preallocated space for the PCache */
|
sl@0
|
85 |
);
|
sl@0
|
86 |
|
sl@0
|
87 |
/* Modify the page-size after the cache has been created. */
|
sl@0
|
88 |
void sqlite3PcacheSetPageSize(PCache *, int);
|
sl@0
|
89 |
|
sl@0
|
90 |
/* Return the size in bytes of a PCache object. Used to preallocate
|
sl@0
|
91 |
** storage space.
|
sl@0
|
92 |
*/
|
sl@0
|
93 |
int sqlite3PcacheSize(void);
|
sl@0
|
94 |
|
sl@0
|
95 |
/* One release per successful fetch. Page is pinned until released.
|
sl@0
|
96 |
** Reference counted.
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
int sqlite3PcacheFetch(PCache*, Pgno, int createFlag, PgHdr**);
|
sl@0
|
99 |
void sqlite3PcacheRelease(PgHdr*);
|
sl@0
|
100 |
|
sl@0
|
101 |
void sqlite3PcacheDrop(PgHdr*); /* Remove page from cache */
|
sl@0
|
102 |
void sqlite3PcacheMakeDirty(PgHdr*); /* Make sure page is marked dirty */
|
sl@0
|
103 |
void sqlite3PcacheMakeClean(PgHdr*); /* Mark a single page as clean */
|
sl@0
|
104 |
void sqlite3PcacheCleanAll(PCache*); /* Mark all dirty list pages as clean */
|
sl@0
|
105 |
|
sl@0
|
106 |
/* Change a page number. Used by incr-vacuum. */
|
sl@0
|
107 |
void sqlite3PcacheMove(PgHdr*, Pgno);
|
sl@0
|
108 |
|
sl@0
|
109 |
/* Remove all pages with pgno>x. Reset the cache if x==0 */
|
sl@0
|
110 |
void sqlite3PcacheTruncate(PCache*, Pgno x);
|
sl@0
|
111 |
|
sl@0
|
112 |
/* Routines used to implement transactions on memory-only databases. */
|
sl@0
|
113 |
int sqlite3PcachePreserve(PgHdr*, int); /* Preserve current page content */
|
sl@0
|
114 |
void sqlite3PcacheCommit(PCache*, int); /* Drop preserved copy */
|
sl@0
|
115 |
void sqlite3PcacheRollback(PCache*, int, void (*xReiniter)(PgHdr*));
|
sl@0
|
116 |
|
sl@0
|
117 |
/* Get a list of all dirty pages in the cache, sorted by page number */
|
sl@0
|
118 |
PgHdr *sqlite3PcacheDirtyList(PCache*);
|
sl@0
|
119 |
|
sl@0
|
120 |
/* Reset and close the cache object */
|
sl@0
|
121 |
void sqlite3PcacheClose(PCache*);
|
sl@0
|
122 |
|
sl@0
|
123 |
/* Clear flags from pages of the page cache */
|
sl@0
|
124 |
void sqlite3PcacheClearFlags(PCache*, int mask);
|
sl@0
|
125 |
|
sl@0
|
126 |
/* Assert flags settings on all pages. Debugging only */
|
sl@0
|
127 |
#ifndef NDEBUG
|
sl@0
|
128 |
void sqlite3PcacheAssertFlags(PCache*, int trueMask, int falseMask);
|
sl@0
|
129 |
#else
|
sl@0
|
130 |
# define sqlite3PcacheAssertFlags(A,B,C)
|
sl@0
|
131 |
#endif
|
sl@0
|
132 |
|
sl@0
|
133 |
/* Return true if the number of dirty pages is 0 or 1 */
|
sl@0
|
134 |
int sqlite3PcacheZeroOrOneDirtyPages(PCache*);
|
sl@0
|
135 |
|
sl@0
|
136 |
/* Discard the contents of the cache */
|
sl@0
|
137 |
int sqlite3PcacheClear(PCache*);
|
sl@0
|
138 |
|
sl@0
|
139 |
/* Return the total number of outstanding page references */
|
sl@0
|
140 |
int sqlite3PcacheRefCount(PCache*);
|
sl@0
|
141 |
|
sl@0
|
142 |
/* Increment the reference count of an existing page */
|
sl@0
|
143 |
void sqlite3PcacheRef(PgHdr*);
|
sl@0
|
144 |
|
sl@0
|
145 |
int sqlite3PcachePageRefcount(PgHdr*);
|
sl@0
|
146 |
|
sl@0
|
147 |
/* Return the total number of pages stored in the cache */
|
sl@0
|
148 |
int sqlite3PcachePagecount(PCache*);
|
sl@0
|
149 |
|
sl@0
|
150 |
#ifdef SQLITE_CHECK_PAGES
|
sl@0
|
151 |
/* Iterate through all pages currently stored in the cache. This interface
|
sl@0
|
152 |
** is only available if SQLITE_CHECK_PAGES is defined when the library is
|
sl@0
|
153 |
** built.
|
sl@0
|
154 |
*/
|
sl@0
|
155 |
void sqlite3PcacheIterate(PCache *pCache, void (*xIter)(PgHdr *));
|
sl@0
|
156 |
#endif
|
sl@0
|
157 |
|
sl@0
|
158 |
/* Set and get the suggested cache-size for the specified pager-cache.
|
sl@0
|
159 |
**
|
sl@0
|
160 |
** If no global maximum is configured, then the system attempts to limit
|
sl@0
|
161 |
** the total number of pages cached by purgeable pager-caches to the sum
|
sl@0
|
162 |
** of the suggested cache-sizes.
|
sl@0
|
163 |
*/
|
sl@0
|
164 |
int sqlite3PcacheGetCachesize(PCache *);
|
sl@0
|
165 |
void sqlite3PcacheSetCachesize(PCache *, int);
|
sl@0
|
166 |
|
sl@0
|
167 |
#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT
|
sl@0
|
168 |
/* Try to return memory used by the pcache module to the main memory heap */
|
sl@0
|
169 |
int sqlite3PcacheReleaseMemory(int);
|
sl@0
|
170 |
#endif
|
sl@0
|
171 |
|
sl@0
|
172 |
#ifdef SQLITE_TEST
|
sl@0
|
173 |
void sqlite3PcacheStats(int*,int*,int*,int*);
|
sl@0
|
174 |
#endif
|
sl@0
|
175 |
|
sl@0
|
176 |
#endif /* _PCACHE_H_ */
|