| /* |
| ** 2001 September 15 |
| ** |
| ** 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 header file defines the interface that the sqlite page cache |
| ** subsystem. The page cache subsystem reads and writes a file a page |
| ** at a time and provides a journal for rollback. |
| ** |
| ** @(#) $Id: pager.h,v 1.87 2008/11/19 10:22:33 danielk1977 Exp $ |
| */ |
| |
| #ifndef _PAGER_H_ |
| #define _PAGER_H_ |
| |
| /* |
| ** If defined as non-zero, auto-vacuum is enabled by default. Otherwise |
| ** it must be turned on for each database using "PRAGMA auto_vacuum = 1". |
| */ |
| #ifndef SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT |
| #define SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT -1 |
| #endif |
| |
| /* |
| ** The type used to represent a page number. The first page in a file |
| ** is called page 1. 0 is used to represent "not a page". |
| */ |
| typedef u32 Pgno; |
| |
| /* |
| ** Each open file is managed by a separate instance of the "Pager" structure. |
| */ |
| typedef struct Pager Pager; |
| |
| /* |
| ** Handle type for pages. |
| */ |
| typedef struct PgHdr DbPage; |
| |
| /* |
| ** Allowed values for the flags parameter to sqlite3PagerOpen(). |
| ** |
| ** NOTE: This values must match the corresponding BTREE_ values in btree.h. |
| */ |
| #define PAGER_OMIT_JOURNAL 0x0001 /* Do not use a rollback journal */ |
| #define PAGER_NO_READLOCK 0x0002 /* Omit readlocks on readonly files */ |
| |
| /* |
| ** Valid values for the second argument to sqlite3PagerLockingMode(). |
| */ |
| #define PAGER_LOCKINGMODE_QUERY -1 |
| #define PAGER_LOCKINGMODE_NORMAL 0 |
| #define PAGER_LOCKINGMODE_EXCLUSIVE 1 |
| |
| /* |
| ** Valid values for the second argument to sqlite3PagerJournalMode(). |
| */ |
| #define PAGER_JOURNALMODE_QUERY -1 |
| #define PAGER_JOURNALMODE_DELETE 0 /* Commit by deleting journal file */ |
| #define PAGER_JOURNALMODE_PERSIST 1 /* Commit by zeroing journal header */ |
| #define PAGER_JOURNALMODE_OFF 2 /* Journal omitted. */ |
| #define PAGER_JOURNALMODE_TRUNCATE 3 /* Commit by truncating journal */ |
| #define PAGER_JOURNALMODE_MEMORY 4 /* In-memory journal file */ |
| |
| /* |
| ** See source code comments for a detailed description of the following |
| ** routines: |
| */ |
| int sqlite3PagerOpen(sqlite3_vfs *, Pager **ppPager, const char*, int,int,int); |
| void sqlite3PagerSetBusyhandler(Pager*, int(*)(void *), void *); |
| void sqlite3PagerSetReiniter(Pager*, void(*)(DbPage*)); |
| int sqlite3PagerSetPagesize(Pager*, u16*); |
| int sqlite3PagerMaxPageCount(Pager*, int); |
| int sqlite3PagerReadFileheader(Pager*, int, unsigned char*); |
| void sqlite3PagerSetCachesize(Pager*, int); |
| int sqlite3PagerClose(Pager *pPager); |
| int sqlite3PagerAcquire(Pager *pPager, Pgno pgno, DbPage **ppPage, int clrFlag); |
| #define sqlite3PagerGet(A,B,C) sqlite3PagerAcquire(A,B,C,0) |
| DbPage *sqlite3PagerLookup(Pager *pPager, Pgno pgno); |
| int sqlite3PagerPageRefcount(DbPage*); |
| int sqlite3PagerRef(DbPage*); |
| int sqlite3PagerUnref(DbPage*); |
| int sqlite3PagerWrite(DbPage*); |
| int sqlite3PagerPagecount(Pager*, int*); |
| int sqlite3PagerTruncate(Pager*,Pgno); |
| int sqlite3PagerBegin(DbPage*, int exFlag); |
| int sqlite3PagerCommitPhaseOne(Pager*,const char *zMaster, Pgno, int); |
| int sqlite3PagerCommitPhaseTwo(Pager*); |
| int sqlite3PagerRollback(Pager*); |
| int sqlite3PagerIsreadonly(Pager*); |
| int sqlite3PagerStmtBegin(Pager*); |
| int sqlite3PagerStmtCommit(Pager*); |
| int sqlite3PagerStmtRollback(Pager*); |
| void sqlite3PagerDontRollback(DbPage*); |
| int sqlite3PagerDontWrite(DbPage*); |
| int sqlite3PagerRefcount(Pager*); |
| void sqlite3PagerSetSafetyLevel(Pager*,int,int); |
| const char *sqlite3PagerFilename(Pager*); |
| const sqlite3_vfs *sqlite3PagerVfs(Pager*); |
| sqlite3_file *sqlite3PagerFile(Pager*); |
| const char *sqlite3PagerDirname(Pager*); |
| const char *sqlite3PagerJournalname(Pager*); |
| int sqlite3PagerNosync(Pager*); |
| int sqlite3PagerMovepage(Pager*,DbPage*,Pgno,int); |
| void *sqlite3PagerGetData(DbPage *); |
| void *sqlite3PagerGetExtra(DbPage *); |
| int sqlite3PagerLockingMode(Pager *, int); |
| int sqlite3PagerJournalMode(Pager *, int); |
| i64 sqlite3PagerJournalSizeLimit(Pager *, i64); |
| void *sqlite3PagerTempSpace(Pager*); |
| int sqlite3PagerSync(Pager *pPager); |
| |
| #ifdef SQLITE_HAS_CODEC |
| void sqlite3PagerSetCodec(Pager*,void*(*)(void*,void*,Pgno,int),void*); |
| #endif |
| |
| #if !defined(NDEBUG) || defined(SQLITE_TEST) |
| Pgno sqlite3PagerPagenumber(DbPage*); |
| int sqlite3PagerIswriteable(DbPage*); |
| #endif |
| |
| #ifdef SQLITE_TEST |
| int *sqlite3PagerStats(Pager*); |
| void sqlite3PagerRefdump(Pager*); |
| int sqlite3PagerIsMemdb(Pager*); |
| #endif |
| |
| #ifdef SQLITE_TEST |
| void disable_simulated_io_errors(void); |
| void enable_simulated_io_errors(void); |
| #else |
| # define disable_simulated_io_errors() |
| # define enable_simulated_io_errors() |
| #endif |
| |
| #endif /* _PAGER_H_ */ |