drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1 | /* |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 2 | ** 2001 September 15 |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 3 | ** |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 4 | ** The author disclaims copyright to this source code. In place of |
| 5 | ** a legal notice, here is a blessing: |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 6 | ** |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 7 | ** May you do good and not evil. |
| 8 | ** May you find forgiveness for yourself and forgive others. |
| 9 | ** May you share freely, never taking more than you give. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 10 | ** |
| 11 | ************************************************************************* |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 12 | ** This is the implementation of the page cache subsystem or "pager". |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 13 | ** |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 14 | ** The pager is used to access a database disk file. It implements |
| 15 | ** atomic commit and rollback through the use of a journal file that |
| 16 | ** is separate from the database file. The pager also implements file |
| 17 | ** locking to prevent two processes from writing the same database |
| 18 | ** file simultaneously, or one process from reading the database while |
| 19 | ** another is writing. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 20 | ** |
drh | 2e6d11b | 2003-04-25 15:37:57 +0000 | [diff] [blame^] | 21 | ** @(#) $Id: pager.c,v 1.83 2003/04/25 15:37:58 drh Exp $ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 22 | */ |
drh | 829e802 | 2002-11-06 14:08:11 +0000 | [diff] [blame] | 23 | #include "os.h" /* Must be first to enable large file support */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 24 | #include "sqliteInt.h" |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 25 | #include "pager.h" |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 26 | #include <assert.h> |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 27 | #include <string.h> |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 28 | |
| 29 | /* |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 30 | ** Macros for troubleshooting. Normally turned off |
| 31 | */ |
| 32 | #if 0 |
| 33 | static Pager *mainPager = 0; |
| 34 | #define SET_PAGER(X) if( mainPager==0 ) mainPager = (X) |
| 35 | #define CLR_PAGER(X) if( mainPager==(X) ) mainPager = 0 |
| 36 | #define TRACE1(X) if( pPager==mainPager ) fprintf(stderr,X) |
| 37 | #define TRACE2(X,Y) if( pPager==mainPager ) fprintf(stderr,X,Y) |
| 38 | #define TRACE3(X,Y,Z) if( pPager==mainPager ) fprintf(stderr,X,Y,Z) |
| 39 | #else |
| 40 | #define SET_PAGER(X) |
| 41 | #define CLR_PAGER(X) |
| 42 | #define TRACE1(X) |
| 43 | #define TRACE2(X,Y) |
| 44 | #define TRACE3(X,Y,Z) |
| 45 | #endif |
| 46 | |
| 47 | |
| 48 | /* |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 49 | ** The page cache as a whole is always in one of the following |
| 50 | ** states: |
| 51 | ** |
| 52 | ** SQLITE_UNLOCK The page cache is not currently reading or |
| 53 | ** writing the database file. There is no |
| 54 | ** data held in memory. This is the initial |
| 55 | ** state. |
| 56 | ** |
| 57 | ** SQLITE_READLOCK The page cache is reading the database. |
| 58 | ** Writing is not permitted. There can be |
| 59 | ** multiple readers accessing the same database |
drh | 69688d5 | 2001-04-14 16:38:23 +0000 | [diff] [blame] | 60 | ** file at the same time. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 61 | ** |
| 62 | ** SQLITE_WRITELOCK The page cache is writing the database. |
| 63 | ** Access is exclusive. No other processes or |
| 64 | ** threads can be reading or writing while one |
| 65 | ** process is writing. |
| 66 | ** |
drh | 306dc21 | 2001-05-21 13:45:10 +0000 | [diff] [blame] | 67 | ** The page cache comes up in SQLITE_UNLOCK. The first time a |
| 68 | ** sqlite_page_get() occurs, the state transitions to SQLITE_READLOCK. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 69 | ** After all pages have been released using sqlite_page_unref(), |
drh | 306dc21 | 2001-05-21 13:45:10 +0000 | [diff] [blame] | 70 | ** the state transitions back to SQLITE_UNLOCK. The first time |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 71 | ** that sqlite_page_write() is called, the state transitions to |
drh | 306dc21 | 2001-05-21 13:45:10 +0000 | [diff] [blame] | 72 | ** SQLITE_WRITELOCK. (Note that sqlite_page_write() can only be |
| 73 | ** called on an outstanding page which means that the pager must |
| 74 | ** be in SQLITE_READLOCK before it transitions to SQLITE_WRITELOCK.) |
| 75 | ** The sqlite_page_rollback() and sqlite_page_commit() functions |
| 76 | ** transition the state from SQLITE_WRITELOCK back to SQLITE_READLOCK. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 77 | */ |
| 78 | #define SQLITE_UNLOCK 0 |
| 79 | #define SQLITE_READLOCK 1 |
| 80 | #define SQLITE_WRITELOCK 2 |
| 81 | |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 82 | |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 83 | /* |
| 84 | ** Each in-memory image of a page begins with the following header. |
drh | bd03cae | 2001-06-02 02:40:57 +0000 | [diff] [blame] | 85 | ** This header is only visible to this pager module. The client |
| 86 | ** code that calls pager sees only the data that follows the header. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 87 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 88 | typedef struct PgHdr PgHdr; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 89 | struct PgHdr { |
| 90 | Pager *pPager; /* The pager to which this page belongs */ |
| 91 | Pgno pgno; /* The page number for this page */ |
drh | 69688d5 | 2001-04-14 16:38:23 +0000 | [diff] [blame] | 92 | PgHdr *pNextHash, *pPrevHash; /* Hash collision chain for PgHdr.pgno */ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 93 | int nRef; /* Number of users of this page */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 94 | PgHdr *pNextFree, *pPrevFree; /* Freelist of pages where nRef==0 */ |
| 95 | PgHdr *pNextAll, *pPrevAll; /* A list of all pages */ |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 96 | PgHdr *pNextCkpt, *pPrevCkpt; /* List of pages in the checkpoint journal */ |
drh | 193a6b4 | 2002-07-07 16:52:46 +0000 | [diff] [blame] | 97 | u8 inJournal; /* TRUE if has been written to journal */ |
| 98 | u8 inCkpt; /* TRUE if written to the checkpoint journal */ |
| 99 | u8 dirty; /* TRUE if we need to write back changes */ |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 100 | u8 needSync; /* Sync journal before writing this page */ |
drh | 193a6b4 | 2002-07-07 16:52:46 +0000 | [diff] [blame] | 101 | u8 alwaysRollback; /* Disable dont_rollback() for this page */ |
drh | 2554f8b | 2003-01-22 01:26:44 +0000 | [diff] [blame] | 102 | PgHdr *pDirty; /* Dirty pages sorted by PgHdr.pgno */ |
drh | 69688d5 | 2001-04-14 16:38:23 +0000 | [diff] [blame] | 103 | /* SQLITE_PAGE_SIZE bytes of page data follow this header */ |
drh | 973b6e3 | 2003-02-12 14:09:42 +0000 | [diff] [blame] | 104 | /* Pager.nExtra bytes of local data follow the page data */ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | /* |
drh | 69688d5 | 2001-04-14 16:38:23 +0000 | [diff] [blame] | 108 | ** Convert a pointer to a PgHdr into a pointer to its data |
| 109 | ** and back again. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 110 | */ |
| 111 | #define PGHDR_TO_DATA(P) ((void*)(&(P)[1])) |
| 112 | #define DATA_TO_PGHDR(D) (&((PgHdr*)(D))[-1]) |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 113 | #define PGHDR_TO_EXTRA(P) ((void*)&((char*)(&(P)[1]))[SQLITE_PAGE_SIZE]) |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 114 | |
| 115 | /* |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 116 | ** How big to make the hash table used for locating in-memory pages |
drh | 836faa4 | 2003-01-11 13:30:57 +0000 | [diff] [blame] | 117 | ** by page number. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 118 | */ |
drh | 836faa4 | 2003-01-11 13:30:57 +0000 | [diff] [blame] | 119 | #define N_PG_HASH 2048 |
| 120 | |
| 121 | /* |
| 122 | ** Hash a page number |
| 123 | */ |
| 124 | #define pager_hash(PN) ((PN)&(N_PG_HASH-1)) |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 125 | |
| 126 | /* |
| 127 | ** A open page cache is an instance of the following structure. |
| 128 | */ |
| 129 | struct Pager { |
| 130 | char *zFilename; /* Name of the database file */ |
| 131 | char *zJournal; /* Name of the journal file */ |
drh | 8cfbf08 | 2001-09-19 13:22:39 +0000 | [diff] [blame] | 132 | OsFile fd, jfd; /* File descriptors for database and journal */ |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 133 | OsFile cpfd; /* File descriptor for the checkpoint journal */ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 134 | int dbSize; /* Number of pages in the file */ |
drh | 69688d5 | 2001-04-14 16:38:23 +0000 | [diff] [blame] | 135 | int origDbSize; /* dbSize before the current change */ |
drh | 28be87c | 2002-11-05 23:03:02 +0000 | [diff] [blame] | 136 | int ckptSize; /* Size of database (in pages) at ckpt_begin() */ |
| 137 | off_t ckptJSize; /* Size of journal at ckpt_begin() */ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 138 | int nRec; /* Number of pages written to the journal */ |
| 139 | u32 cksumInit; /* Quasi-random value added to every checksum */ |
drh | 9bd47a9 | 2003-01-07 14:46:08 +0000 | [diff] [blame] | 140 | int ckptNRec; /* Number of records in the checkpoint journal */ |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 141 | int nExtra; /* Add this many bytes to each in-memory page */ |
drh | 72f8286 | 2001-05-24 21:06:34 +0000 | [diff] [blame] | 142 | void (*xDestructor)(void*); /* Call this routine when freeing pages */ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 143 | int nPage; /* Total number of in-memory pages */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 144 | int nRef; /* Number of in-memory pages with PgHdr.nRef>0 */ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 145 | int mxPage; /* Maximum number of pages to hold in cache */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 146 | int nHit, nMiss, nOvfl; /* Cache hits, missing, and LRU overflows */ |
drh | 603240c | 2002-03-05 01:11:12 +0000 | [diff] [blame] | 147 | u8 journalOpen; /* True if journal file descriptors is valid */ |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 148 | u8 journalStarted; /* True if initial magic of journal is synced */ |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 149 | u8 useJournal; /* Do not use a rollback journal on this file */ |
drh | 603240c | 2002-03-05 01:11:12 +0000 | [diff] [blame] | 150 | u8 ckptOpen; /* True if the checkpoint journal is open */ |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 151 | u8 ckptInUse; /* True we are in a checkpoint */ |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 152 | u8 ckptAutoopen; /* Open ckpt journal when main journal is opened*/ |
drh | 603240c | 2002-03-05 01:11:12 +0000 | [diff] [blame] | 153 | u8 noSync; /* Do not sync the journal if true */ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 154 | u8 fullSync; /* Do extra syncs of the journal for robustness */ |
drh | 603240c | 2002-03-05 01:11:12 +0000 | [diff] [blame] | 155 | u8 state; /* SQLITE_UNLOCK, _READLOCK or _WRITELOCK */ |
| 156 | u8 errMask; /* One of several kinds of errors */ |
| 157 | u8 tempFile; /* zFilename is a temporary file */ |
| 158 | u8 readOnly; /* True for a read-only database */ |
| 159 | u8 needSync; /* True if an fsync() is needed on the journal */ |
drh | a168045 | 2002-04-18 01:56:57 +0000 | [diff] [blame] | 160 | u8 dirtyFile; /* True if database file has changed in any way */ |
drh | 193a6b4 | 2002-07-07 16:52:46 +0000 | [diff] [blame] | 161 | u8 alwaysRollback; /* Disable dont_rollback() for all pages */ |
drh | 603240c | 2002-03-05 01:11:12 +0000 | [diff] [blame] | 162 | u8 *aInJournal; /* One bit for each page in the database file */ |
| 163 | u8 *aInCkpt; /* One bit for each page in the database */ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 164 | PgHdr *pFirst, *pLast; /* List of free pages */ |
drh | 341eae8 | 2003-01-21 02:39:36 +0000 | [diff] [blame] | 165 | PgHdr *pFirstSynced; /* First free page with PgHdr.needSync==0 */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 166 | PgHdr *pAll; /* List of all pages */ |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 167 | PgHdr *pCkpt; /* List of pages in the checkpoint journal */ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 168 | PgHdr *aHash[N_PG_HASH]; /* Hash table to map page number of PgHdr */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 169 | }; |
| 170 | |
| 171 | /* |
| 172 | ** These are bits that can be set in Pager.errMask. |
| 173 | */ |
| 174 | #define PAGER_ERR_FULL 0x01 /* a write() failed */ |
| 175 | #define PAGER_ERR_MEM 0x02 /* malloc() failed */ |
| 176 | #define PAGER_ERR_LOCK 0x04 /* error in the locking protocol */ |
| 177 | #define PAGER_ERR_CORRUPT 0x08 /* database or journal corruption */ |
drh | 81a20f2 | 2001-10-12 17:30:04 +0000 | [diff] [blame] | 178 | #define PAGER_ERR_DISK 0x10 /* general disk I/O error - bad hard drive? */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 179 | |
| 180 | /* |
| 181 | ** The journal file contains page records in the following |
| 182 | ** format. |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 183 | ** |
| 184 | ** Actually, this structure is the complete page record for pager |
| 185 | ** formats less than 3. Beginning with format 3, this record is surrounded |
| 186 | ** by two checksums. |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 187 | */ |
| 188 | typedef struct PageRecord PageRecord; |
| 189 | struct PageRecord { |
| 190 | Pgno pgno; /* The page number */ |
| 191 | char aData[SQLITE_PAGE_SIZE]; /* Original data for page pgno */ |
| 192 | }; |
| 193 | |
| 194 | /* |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 195 | ** Journal files begin with the following magic string. The data |
| 196 | ** was obtained from /dev/random. It is used only as a sanity check. |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 197 | ** |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 198 | ** There are three journal formats (so far). The 1st journal format writes |
| 199 | ** 32-bit integers in the byte-order of the host machine. New |
| 200 | ** formats writes integers as big-endian. All new journals use the |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 201 | ** new format, but we have to be able to read an older journal in order |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 202 | ** to rollback journals created by older versions of the library. |
| 203 | ** |
| 204 | ** The 3rd journal format (added for 2.8.0) adds additional sanity |
| 205 | ** checking information to the journal. If the power fails while the |
| 206 | ** journal is being written, semi-random garbage data might appear in |
| 207 | ** the journal file after power is restored. If an attempt is then made |
| 208 | ** to roll the journal back, the database could be corrupted. The additional |
| 209 | ** sanity checking data is an attempt to discover the garbage in the |
| 210 | ** journal and ignore it. |
| 211 | ** |
| 212 | ** The sanity checking information for the 3rd journal format consists |
| 213 | ** of a 32-bit checksum on each page of data. The checksum covers both |
| 214 | ** the page number and the SQLITE_PAGE_SIZE bytes of data for the page. |
| 215 | ** This cksum is initialized to a 32-bit random value that appears in the |
| 216 | ** journal file right after the header. The random initializer is important, |
| 217 | ** because garbage data that appears at the end of a journal is likely |
| 218 | ** data that was once in other files that have now been deleted. If the |
| 219 | ** garbage data came from an obsolete journal file, the checksums might |
| 220 | ** be correct. But by initializing the checksum to random value which |
| 221 | ** is different for every journal, we minimize that risk. |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 222 | */ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 223 | static const unsigned char aJournalMagic1[] = { |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 224 | 0xd9, 0xd5, 0x05, 0xf9, 0x20, 0xa1, 0x63, 0xd4, |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 225 | }; |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 226 | static const unsigned char aJournalMagic2[] = { |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 227 | 0xd9, 0xd5, 0x05, 0xf9, 0x20, 0xa1, 0x63, 0xd5, |
| 228 | }; |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 229 | static const unsigned char aJournalMagic3[] = { |
| 230 | 0xd9, 0xd5, 0x05, 0xf9, 0x20, 0xa1, 0x63, 0xd6, |
| 231 | }; |
| 232 | #define JOURNAL_FORMAT_1 1 |
| 233 | #define JOURNAL_FORMAT_2 2 |
| 234 | #define JOURNAL_FORMAT_3 3 |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 235 | |
| 236 | /* |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 237 | ** The following integer determines what format to use when creating |
| 238 | ** new primary journal files. By default we always use format 3. |
| 239 | ** When testing, we can set this value to older journal formats in order to |
| 240 | ** make sure that newer versions of the library are able to rollback older |
| 241 | ** journal files. |
| 242 | ** |
| 243 | ** Note that checkpoint journals always use format 2 and omit the header. |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 244 | */ |
| 245 | #ifdef SQLITE_TEST |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 246 | int journal_format = 3; |
drh | 74587e5 | 2002-08-13 00:01:16 +0000 | [diff] [blame] | 247 | #else |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 248 | # define journal_format 3 |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 249 | #endif |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 250 | |
| 251 | /* |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 252 | ** The size of the header and of each page in the journal varies according |
| 253 | ** to which journal format is being used. The following macros figure out |
| 254 | ** the sizes based on format numbers. |
| 255 | */ |
| 256 | #define JOURNAL_HDR_SZ(X) \ |
| 257 | (sizeof(aJournalMagic1) + sizeof(Pgno) + ((X)>=3)*2*sizeof(u32)) |
| 258 | #define JOURNAL_PG_SZ(X) \ |
| 259 | (SQLITE_PAGE_SIZE + sizeof(Pgno) + ((X)>=3)*sizeof(u32)) |
| 260 | |
| 261 | /* |
drh | dd79342 | 2001-06-28 01:54:48 +0000 | [diff] [blame] | 262 | ** Enable reference count tracking here: |
| 263 | */ |
drh | 74587e5 | 2002-08-13 00:01:16 +0000 | [diff] [blame] | 264 | #ifdef SQLITE_TEST |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 265 | int pager_refinfo_enable = 0; |
drh | dd79342 | 2001-06-28 01:54:48 +0000 | [diff] [blame] | 266 | static void pager_refinfo(PgHdr *p){ |
| 267 | static int cnt = 0; |
| 268 | if( !pager_refinfo_enable ) return; |
| 269 | printf( |
| 270 | "REFCNT: %4d addr=0x%08x nRef=%d\n", |
| 271 | p->pgno, (int)PGHDR_TO_DATA(p), p->nRef |
| 272 | ); |
| 273 | cnt++; /* Something to set a breakpoint on */ |
| 274 | } |
| 275 | # define REFINFO(X) pager_refinfo(X) |
| 276 | #else |
| 277 | # define REFINFO(X) |
| 278 | #endif |
| 279 | |
| 280 | /* |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 281 | ** Read a 32-bit integer from the given file descriptor |
| 282 | */ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 283 | static int read32bits(int format, OsFile *fd, u32 *pRes){ |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 284 | u32 res; |
| 285 | int rc; |
| 286 | rc = sqliteOsRead(fd, &res, sizeof(res)); |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 287 | if( rc==SQLITE_OK && format>JOURNAL_FORMAT_1 ){ |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 288 | unsigned char ac[4]; |
| 289 | memcpy(ac, &res, 4); |
| 290 | res = (ac[0]<<24) | (ac[1]<<16) | (ac[2]<<8) | ac[3]; |
| 291 | } |
| 292 | *pRes = res; |
| 293 | return rc; |
| 294 | } |
| 295 | |
| 296 | /* |
| 297 | ** Write a 32-bit integer into the given file descriptor. Writing |
| 298 | ** is always done using the new journal format. |
| 299 | */ |
| 300 | static int write32bits(OsFile *fd, u32 val){ |
| 301 | unsigned char ac[4]; |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 302 | if( journal_format<=1 ){ |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 303 | return sqliteOsWrite(fd, &val, 4); |
| 304 | } |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 305 | ac[0] = (val>>24) & 0xff; |
| 306 | ac[1] = (val>>16) & 0xff; |
| 307 | ac[2] = (val>>8) & 0xff; |
| 308 | ac[3] = val & 0xff; |
| 309 | return sqliteOsWrite(fd, ac, 4); |
| 310 | } |
| 311 | |
drh | 2554f8b | 2003-01-22 01:26:44 +0000 | [diff] [blame] | 312 | /* |
| 313 | ** Write a 32-bit integer into a page header right before the |
| 314 | ** page data. This will overwrite the PgHdr.pDirty pointer. |
| 315 | */ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 316 | static void store32bits(u32 val, PgHdr *p, int offset){ |
drh | 2554f8b | 2003-01-22 01:26:44 +0000 | [diff] [blame] | 317 | unsigned char *ac; |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 318 | ac = &((char*)PGHDR_TO_DATA(p))[offset]; |
| 319 | if( journal_format<=1 ){ |
drh | 2554f8b | 2003-01-22 01:26:44 +0000 | [diff] [blame] | 320 | memcpy(ac, &val, 4); |
| 321 | }else{ |
| 322 | ac[0] = (val>>24) & 0xff; |
| 323 | ac[1] = (val>>16) & 0xff; |
| 324 | ac[2] = (val>>8) & 0xff; |
| 325 | ac[3] = val & 0xff; |
| 326 | } |
| 327 | } |
| 328 | |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 329 | |
| 330 | /* |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 331 | ** Convert the bits in the pPager->errMask into an approprate |
| 332 | ** return code. |
| 333 | */ |
| 334 | static int pager_errcode(Pager *pPager){ |
| 335 | int rc = SQLITE_OK; |
| 336 | if( pPager->errMask & PAGER_ERR_LOCK ) rc = SQLITE_PROTOCOL; |
drh | 81a20f2 | 2001-10-12 17:30:04 +0000 | [diff] [blame] | 337 | if( pPager->errMask & PAGER_ERR_DISK ) rc = SQLITE_IOERR; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 338 | if( pPager->errMask & PAGER_ERR_FULL ) rc = SQLITE_FULL; |
| 339 | if( pPager->errMask & PAGER_ERR_MEM ) rc = SQLITE_NOMEM; |
| 340 | if( pPager->errMask & PAGER_ERR_CORRUPT ) rc = SQLITE_CORRUPT; |
| 341 | return rc; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | /* |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 345 | ** Add or remove a page from the list of all pages that are in the |
| 346 | ** checkpoint journal. |
| 347 | ** |
| 348 | ** The Pager keeps a separate list of pages that are currently in |
| 349 | ** the checkpoint journal. This helps the sqlitepager_ckpt_commit() |
| 350 | ** routine run MUCH faster for the common case where there are many |
| 351 | ** pages in memory but only a few are in the checkpoint journal. |
| 352 | */ |
| 353 | static void page_add_to_ckpt_list(PgHdr *pPg){ |
| 354 | Pager *pPager = pPg->pPager; |
| 355 | if( pPg->inCkpt ) return; |
| 356 | assert( pPg->pPrevCkpt==0 && pPg->pNextCkpt==0 ); |
| 357 | pPg->pPrevCkpt = 0; |
| 358 | if( pPager->pCkpt ){ |
| 359 | pPager->pCkpt->pPrevCkpt = pPg; |
| 360 | } |
| 361 | pPg->pNextCkpt = pPager->pCkpt; |
| 362 | pPager->pCkpt = pPg; |
| 363 | pPg->inCkpt = 1; |
| 364 | } |
| 365 | static void page_remove_from_ckpt_list(PgHdr *pPg){ |
| 366 | if( !pPg->inCkpt ) return; |
| 367 | if( pPg->pPrevCkpt ){ |
| 368 | assert( pPg->pPrevCkpt->pNextCkpt==pPg ); |
| 369 | pPg->pPrevCkpt->pNextCkpt = pPg->pNextCkpt; |
| 370 | }else{ |
| 371 | assert( pPg->pPager->pCkpt==pPg ); |
| 372 | pPg->pPager->pCkpt = pPg->pNextCkpt; |
| 373 | } |
| 374 | if( pPg->pNextCkpt ){ |
| 375 | assert( pPg->pNextCkpt->pPrevCkpt==pPg ); |
| 376 | pPg->pNextCkpt->pPrevCkpt = pPg->pPrevCkpt; |
| 377 | } |
| 378 | pPg->pNextCkpt = 0; |
| 379 | pPg->pPrevCkpt = 0; |
| 380 | pPg->inCkpt = 0; |
| 381 | } |
| 382 | |
| 383 | /* |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 384 | ** Find a page in the hash table given its page number. Return |
| 385 | ** a pointer to the page or NULL if not found. |
| 386 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 387 | static PgHdr *pager_lookup(Pager *pPager, Pgno pgno){ |
drh | 836faa4 | 2003-01-11 13:30:57 +0000 | [diff] [blame] | 388 | PgHdr *p = pPager->aHash[pager_hash(pgno)]; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 389 | while( p && p->pgno!=pgno ){ |
| 390 | p = p->pNextHash; |
| 391 | } |
| 392 | return p; |
| 393 | } |
| 394 | |
| 395 | /* |
| 396 | ** Unlock the database and clear the in-memory cache. This routine |
| 397 | ** sets the state of the pager back to what it was when it was first |
| 398 | ** opened. Any outstanding pages are invalidated and subsequent attempts |
| 399 | ** to access those pages will likely result in a coredump. |
| 400 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 401 | static void pager_reset(Pager *pPager){ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 402 | PgHdr *pPg, *pNext; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 403 | for(pPg=pPager->pAll; pPg; pPg=pNext){ |
| 404 | pNext = pPg->pNextAll; |
| 405 | sqliteFree(pPg); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 406 | } |
| 407 | pPager->pFirst = 0; |
drh | 341eae8 | 2003-01-21 02:39:36 +0000 | [diff] [blame] | 408 | pPager->pFirstSynced = 0; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 409 | pPager->pLast = 0; |
| 410 | pPager->pAll = 0; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 411 | memset(pPager->aHash, 0, sizeof(pPager->aHash)); |
| 412 | pPager->nPage = 0; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 413 | if( pPager->state>=SQLITE_WRITELOCK ){ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 414 | sqlitepager_rollback(pPager); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 415 | } |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 416 | sqliteOsUnlock(&pPager->fd); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 417 | pPager->state = SQLITE_UNLOCK; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 418 | pPager->dbSize = -1; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 419 | pPager->nRef = 0; |
drh | 8cfbf08 | 2001-09-19 13:22:39 +0000 | [diff] [blame] | 420 | assert( pPager->journalOpen==0 ); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | /* |
| 424 | ** When this routine is called, the pager has the journal file open and |
| 425 | ** a write lock on the database. This routine releases the database |
| 426 | ** write lock and acquires a read lock in its place. The journal file |
| 427 | ** is deleted and closed. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 428 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 429 | static int pager_unwritelock(Pager *pPager){ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 430 | int rc; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 431 | PgHdr *pPg; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 432 | if( pPager->state<SQLITE_WRITELOCK ) return SQLITE_OK; |
drh | 663fc63 | 2002-02-02 18:49:19 +0000 | [diff] [blame] | 433 | sqlitepager_ckpt_commit(pPager); |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 434 | if( pPager->ckptOpen ){ |
| 435 | sqliteOsClose(&pPager->cpfd); |
| 436 | pPager->ckptOpen = 0; |
| 437 | } |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 438 | if( pPager->journalOpen ){ |
| 439 | sqliteOsClose(&pPager->jfd); |
| 440 | pPager->journalOpen = 0; |
| 441 | sqliteOsDelete(pPager->zJournal); |
| 442 | sqliteFree( pPager->aInJournal ); |
| 443 | pPager->aInJournal = 0; |
| 444 | for(pPg=pPager->pAll; pPg; pPg=pPg->pNextAll){ |
| 445 | pPg->inJournal = 0; |
| 446 | pPg->dirty = 0; |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 447 | pPg->needSync = 0; |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 448 | } |
| 449 | }else{ |
| 450 | assert( pPager->dirtyFile==0 || pPager->useJournal==0 ); |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 451 | } |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 452 | rc = sqliteOsReadLock(&pPager->fd); |
drh | 8e298f9 | 2002-07-06 16:28:47 +0000 | [diff] [blame] | 453 | if( rc==SQLITE_OK ){ |
| 454 | pPager->state = SQLITE_READLOCK; |
| 455 | }else{ |
| 456 | /* This can only happen if a process does a BEGIN, then forks and the |
| 457 | ** child process does the COMMIT. Because of the semantics of unix |
| 458 | ** file locking, the unlock will fail. |
| 459 | */ |
| 460 | pPager->state = SQLITE_UNLOCK; |
| 461 | } |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 462 | return rc; |
| 463 | } |
| 464 | |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 465 | /* |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 466 | ** Compute and return a checksum for the page of data. |
| 467 | */ |
| 468 | static u32 pager_cksum(Pager *pPager, Pgno pgno, const char *aData){ |
| 469 | u32 cksum = pPager->cksumInit + pgno; |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 470 | return cksum; |
| 471 | } |
| 472 | |
| 473 | /* |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 474 | ** Read a single page from the journal file opened on file descriptor |
| 475 | ** jfd. Playback this one page. |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 476 | ** |
| 477 | ** There are three different journal formats. The format parameter determines |
| 478 | ** which format is used by the journal that is played back. |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 479 | */ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 480 | static int pager_playback_one_page(Pager *pPager, OsFile *jfd, int format){ |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 481 | int rc; |
| 482 | PgHdr *pPg; /* An existing page in the cache */ |
| 483 | PageRecord pgRec; |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 484 | u32 cksum; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 485 | |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 486 | rc = read32bits(format, jfd, &pgRec.pgno); |
drh | 99ee360 | 2003-02-16 19:13:36 +0000 | [diff] [blame] | 487 | if( rc!=SQLITE_OK ) return rc; |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 488 | rc = sqliteOsRead(jfd, &pgRec.aData, sizeof(pgRec.aData)); |
drh | 99ee360 | 2003-02-16 19:13:36 +0000 | [diff] [blame] | 489 | if( rc!=SQLITE_OK ) return rc; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 490 | |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 491 | /* Sanity checking on the page. This is more important that I originally |
| 492 | ** thought. If a power failure occurs while the journal is being written, |
| 493 | ** it could cause invalid data to be written into the journal. We need to |
| 494 | ** detect this invalid data (with high probability) and ignore it. |
| 495 | */ |
| 496 | if( pgRec.pgno==0 ){ |
| 497 | return SQLITE_DONE; |
| 498 | } |
| 499 | if( pgRec.pgno>pPager->dbSize ){ |
| 500 | return SQLITE_OK; |
| 501 | } |
| 502 | if( format>=JOURNAL_FORMAT_3 ){ |
| 503 | rc = read32bits(format, jfd, &cksum); |
drh | 99ee360 | 2003-02-16 19:13:36 +0000 | [diff] [blame] | 504 | if( rc ) return rc; |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 505 | if( pager_cksum(pPager, pgRec.pgno, pgRec.aData)!=cksum ){ |
| 506 | return SQLITE_DONE; |
| 507 | } |
| 508 | } |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 509 | |
| 510 | /* Playback the page. Update the in-memory copy of the page |
| 511 | ** at the same time, if there is one. |
| 512 | */ |
| 513 | pPg = pager_lookup(pPager, pgRec.pgno); |
drh | 99ee360 | 2003-02-16 19:13:36 +0000 | [diff] [blame] | 514 | TRACE2("PLAYBACK %d\n", pgRec.pgno); |
| 515 | sqliteOsSeek(&pPager->fd, (pgRec.pgno-1)*(off_t)SQLITE_PAGE_SIZE); |
| 516 | rc = sqliteOsWrite(&pPager->fd, pgRec.aData, SQLITE_PAGE_SIZE); |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 517 | if( pPg ){ |
drh | 3a84069 | 2003-01-29 22:58:26 +0000 | [diff] [blame] | 518 | if( pPg->nRef==0 || |
| 519 | memcmp(PGHDR_TO_DATA(pPg), pgRec.aData, SQLITE_PAGE_SIZE)==0 |
| 520 | ){ |
| 521 | /* Do not update the data on this page if the page is in use |
| 522 | ** and the page has never been modified. This avoids resetting |
| 523 | ** the "extra" data. That in turn avoids invalidating BTree cursors |
| 524 | ** in trees that have never been modified. The end result is that |
| 525 | ** you can have a SELECT going on in one table and ROLLBACK changes |
| 526 | ** to a different table and the SELECT is unaffected by the ROLLBACK. |
| 527 | */ |
| 528 | memcpy(PGHDR_TO_DATA(pPg), pgRec.aData, SQLITE_PAGE_SIZE); |
| 529 | memset(PGHDR_TO_EXTRA(pPg), 0, pPager->nExtra); |
| 530 | } |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 531 | pPg->dirty = 0; |
| 532 | pPg->needSync = 0; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 533 | } |
| 534 | return rc; |
| 535 | } |
| 536 | |
| 537 | /* |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 538 | ** Playback the journal and thus restore the database file to |
| 539 | ** the state it was in before we started making changes. |
| 540 | ** |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 541 | ** The journal file format is as follows: There is an initial |
| 542 | ** file-type string for sanity checking. Then there is a single |
| 543 | ** Pgno number which is the number of pages in the database before |
| 544 | ** changes were made. The database is truncated to this size. |
drh | 306dc21 | 2001-05-21 13:45:10 +0000 | [diff] [blame] | 545 | ** Next come zero or more page records where each page record |
| 546 | ** consists of a Pgno and SQLITE_PAGE_SIZE bytes of data. See |
| 547 | ** the PageRecord structure for details. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 548 | ** |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 549 | ** If the file opened as the journal file is not a well-formed |
| 550 | ** journal file (as determined by looking at the magic number |
| 551 | ** at the beginning) then this routine returns SQLITE_PROTOCOL. |
| 552 | ** If any other errors occur during playback, the database will |
| 553 | ** likely be corrupted, so the PAGER_ERR_CORRUPT bit is set in |
| 554 | ** pPager->errMask and SQLITE_CORRUPT is returned. If it all |
| 555 | ** works, then this routine returns SQLITE_OK. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 556 | */ |
drh | 99ee360 | 2003-02-16 19:13:36 +0000 | [diff] [blame] | 557 | static int pager_playback(Pager *pPager, int useJournalSize){ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 558 | off_t szJ; /* Size of the journal file in bytes */ |
| 559 | int nRec; /* Number of Records in the journal */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 560 | int i; /* Loop counter */ |
| 561 | Pgno mxPg = 0; /* Size of the original file in pages */ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 562 | int format; /* Format of the journal file. */ |
| 563 | unsigned char aMagic[sizeof(aJournalMagic1)]; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 564 | int rc; |
| 565 | |
drh | c3a64ba | 2001-11-22 00:01:27 +0000 | [diff] [blame] | 566 | /* Figure out how many records are in the journal. Abort early if |
| 567 | ** the journal is empty. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 568 | */ |
drh | 8cfbf08 | 2001-09-19 13:22:39 +0000 | [diff] [blame] | 569 | assert( pPager->journalOpen ); |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 570 | sqliteOsSeek(&pPager->jfd, 0); |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 571 | rc = sqliteOsFileSize(&pPager->jfd, &szJ); |
drh | c3a64ba | 2001-11-22 00:01:27 +0000 | [diff] [blame] | 572 | if( rc!=SQLITE_OK ){ |
| 573 | goto end_playback; |
| 574 | } |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 575 | if( szJ < sizeof(aMagic)+sizeof(Pgno) ){ |
drh | c3a64ba | 2001-11-22 00:01:27 +0000 | [diff] [blame] | 576 | goto end_playback; |
| 577 | } |
| 578 | |
| 579 | /* Read the beginning of the journal and truncate the |
| 580 | ** database file back to its original size. |
| 581 | */ |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 582 | rc = sqliteOsRead(&pPager->jfd, aMagic, sizeof(aMagic)); |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 583 | if( rc!=SQLITE_OK ){ |
drh | 81a20f2 | 2001-10-12 17:30:04 +0000 | [diff] [blame] | 584 | rc = SQLITE_PROTOCOL; |
| 585 | goto end_playback; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 586 | } |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 587 | if( memcmp(aMagic, aJournalMagic3, sizeof(aMagic))==0 ){ |
| 588 | format = JOURNAL_FORMAT_3; |
| 589 | }else if( memcmp(aMagic, aJournalMagic2, sizeof(aMagic))==0 ){ |
| 590 | format = JOURNAL_FORMAT_2; |
| 591 | }else if( memcmp(aMagic, aJournalMagic1, sizeof(aMagic))==0 ){ |
| 592 | format = JOURNAL_FORMAT_1; |
drh | 94f3331 | 2002-08-12 12:29:56 +0000 | [diff] [blame] | 593 | }else{ |
| 594 | rc = SQLITE_PROTOCOL; |
| 595 | goto end_playback; |
| 596 | } |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 597 | if( format>=JOURNAL_FORMAT_3 ){ |
| 598 | rc = read32bits(format, &pPager->jfd, &nRec); |
| 599 | if( rc ) goto end_playback; |
| 600 | rc = read32bits(format, &pPager->jfd, &pPager->cksumInit); |
| 601 | if( rc ) goto end_playback; |
drh | 99ee360 | 2003-02-16 19:13:36 +0000 | [diff] [blame] | 602 | if( nRec==0xffffffff || useJournalSize ){ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 603 | nRec = (szJ - JOURNAL_HDR_SZ(3))/JOURNAL_PG_SZ(3); |
| 604 | } |
| 605 | }else{ |
drh | d8d66e8 | 2003-02-12 02:10:15 +0000 | [diff] [blame] | 606 | nRec = (szJ - JOURNAL_HDR_SZ(2))/JOURNAL_PG_SZ(2); |
| 607 | assert( nRec*JOURNAL_PG_SZ(2)+JOURNAL_HDR_SZ(2)==szJ ); |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 608 | } |
| 609 | rc = read32bits(format, &pPager->jfd, &mxPg); |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 610 | if( rc!=SQLITE_OK ){ |
drh | 81a20f2 | 2001-10-12 17:30:04 +0000 | [diff] [blame] | 611 | goto end_playback; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 612 | } |
drh | d8d66e8 | 2003-02-12 02:10:15 +0000 | [diff] [blame] | 613 | assert( pPager->origDbSize==0 || pPager->origDbSize==mxPg ); |
drh | 28be87c | 2002-11-05 23:03:02 +0000 | [diff] [blame] | 614 | rc = sqliteOsTruncate(&pPager->fd, SQLITE_PAGE_SIZE*(off_t)mxPg); |
drh | 81a20f2 | 2001-10-12 17:30:04 +0000 | [diff] [blame] | 615 | if( rc!=SQLITE_OK ){ |
| 616 | goto end_playback; |
| 617 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 618 | pPager->dbSize = mxPg; |
| 619 | |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 620 | /* Copy original pages out of the journal and back into the database file. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 621 | */ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 622 | for(i=0; i<nRec; i++){ |
| 623 | rc = pager_playback_one_page(pPager, &pPager->jfd, format); |
| 624 | if( rc!=SQLITE_OK ){ |
| 625 | if( rc==SQLITE_DONE ){ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 626 | rc = SQLITE_OK; |
| 627 | } |
| 628 | break; |
| 629 | } |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 630 | } |
drh | 81a20f2 | 2001-10-12 17:30:04 +0000 | [diff] [blame] | 631 | |
drh | 4a0681e | 2003-02-13 01:58:20 +0000 | [diff] [blame] | 632 | /* Pages that have been written to the journal but never synced |
| 633 | ** where not restored by the loop above. We have to restore those |
| 634 | ** pages by reading the back from the original database. |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 635 | */ |
| 636 | if( rc==SQLITE_OK ){ |
| 637 | PgHdr *pPg; |
| 638 | for(pPg=pPager->pAll; pPg; pPg=pPg->pNextAll){ |
drh | 3a84069 | 2003-01-29 22:58:26 +0000 | [diff] [blame] | 639 | char zBuf[SQLITE_PAGE_SIZE]; |
drh | 4a0681e | 2003-02-13 01:58:20 +0000 | [diff] [blame] | 640 | if( !pPg->dirty ) continue; |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 641 | if( (int)pPg->pgno <= pPager->origDbSize ){ |
| 642 | sqliteOsSeek(&pPager->fd, SQLITE_PAGE_SIZE*(off_t)(pPg->pgno-1)); |
drh | 3a84069 | 2003-01-29 22:58:26 +0000 | [diff] [blame] | 643 | rc = sqliteOsRead(&pPager->fd, zBuf, SQLITE_PAGE_SIZE); |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 644 | if( rc ) break; |
| 645 | }else{ |
drh | 3a84069 | 2003-01-29 22:58:26 +0000 | [diff] [blame] | 646 | memset(zBuf, 0, SQLITE_PAGE_SIZE); |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 647 | } |
drh | 3a84069 | 2003-01-29 22:58:26 +0000 | [diff] [blame] | 648 | if( pPg->nRef==0 || memcmp(zBuf, PGHDR_TO_DATA(pPg), SQLITE_PAGE_SIZE) ){ |
| 649 | memcpy(PGHDR_TO_DATA(pPg), zBuf, SQLITE_PAGE_SIZE); |
| 650 | memset(PGHDR_TO_EXTRA(pPg), 0, pPager->nExtra); |
| 651 | } |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 652 | pPg->needSync = 0; |
| 653 | pPg->dirty = 0; |
| 654 | } |
| 655 | } |
drh | 4a0681e | 2003-02-13 01:58:20 +0000 | [diff] [blame] | 656 | |
| 657 | end_playback: |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 658 | if( rc!=SQLITE_OK ){ |
| 659 | pager_unwritelock(pPager); |
| 660 | pPager->errMask |= PAGER_ERR_CORRUPT; |
| 661 | rc = SQLITE_CORRUPT; |
| 662 | }else{ |
| 663 | rc = pager_unwritelock(pPager); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 664 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 665 | return rc; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 666 | } |
| 667 | |
| 668 | /* |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 669 | ** Playback the checkpoint journal. |
| 670 | ** |
| 671 | ** This is similar to playing back the transaction journal but with |
| 672 | ** a few extra twists. |
| 673 | ** |
drh | 663fc63 | 2002-02-02 18:49:19 +0000 | [diff] [blame] | 674 | ** (1) The number of pages in the database file at the start of |
| 675 | ** the checkpoint is stored in pPager->ckptSize, not in the |
| 676 | ** journal file itself. |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 677 | ** |
| 678 | ** (2) In addition to playing back the checkpoint journal, also |
| 679 | ** playback all pages of the transaction journal beginning |
| 680 | ** at offset pPager->ckptJSize. |
| 681 | */ |
| 682 | static int pager_ckpt_playback(Pager *pPager){ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 683 | off_t szJ; /* Size of the full journal */ |
| 684 | int nRec; /* Number of Records */ |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 685 | int i; /* Loop counter */ |
| 686 | int rc; |
| 687 | |
| 688 | /* Truncate the database back to its original size. |
| 689 | */ |
drh | 28be87c | 2002-11-05 23:03:02 +0000 | [diff] [blame] | 690 | rc = sqliteOsTruncate(&pPager->fd, SQLITE_PAGE_SIZE*(off_t)pPager->ckptSize); |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 691 | pPager->dbSize = pPager->ckptSize; |
| 692 | |
| 693 | /* Figure out how many records are in the checkpoint journal. |
| 694 | */ |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 695 | assert( pPager->ckptInUse && pPager->journalOpen ); |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 696 | sqliteOsSeek(&pPager->cpfd, 0); |
drh | 9bd47a9 | 2003-01-07 14:46:08 +0000 | [diff] [blame] | 697 | nRec = pPager->ckptNRec; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 698 | |
| 699 | /* Copy original pages out of the checkpoint journal and back into the |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 700 | ** database file. Note that the checkpoint journal always uses format |
| 701 | ** 2 instead of format 3 since it does not need to be concerned with |
| 702 | ** power failures corrupting the journal and can thus omit the checksums. |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 703 | */ |
| 704 | for(i=nRec-1; i>=0; i--){ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 705 | rc = pager_playback_one_page(pPager, &pPager->cpfd, 2); |
| 706 | assert( rc!=SQLITE_DONE ); |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 707 | if( rc!=SQLITE_OK ) goto end_ckpt_playback; |
| 708 | } |
| 709 | |
| 710 | /* Figure out how many pages need to be copied out of the transaction |
| 711 | ** journal. |
| 712 | */ |
| 713 | rc = sqliteOsSeek(&pPager->jfd, pPager->ckptJSize); |
| 714 | if( rc!=SQLITE_OK ){ |
| 715 | goto end_ckpt_playback; |
| 716 | } |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 717 | rc = sqliteOsFileSize(&pPager->jfd, &szJ); |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 718 | if( rc!=SQLITE_OK ){ |
| 719 | goto end_ckpt_playback; |
| 720 | } |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 721 | nRec = (szJ - pPager->ckptJSize)/JOURNAL_PG_SZ(journal_format); |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 722 | for(i=nRec-1; i>=0; i--){ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 723 | rc = pager_playback_one_page(pPager, &pPager->jfd, journal_format); |
| 724 | if( rc!=SQLITE_OK ){ |
| 725 | assert( rc!=SQLITE_DONE ); |
| 726 | goto end_ckpt_playback; |
| 727 | } |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 728 | } |
| 729 | |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 730 | end_ckpt_playback: |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 731 | if( rc!=SQLITE_OK ){ |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 732 | pPager->errMask |= PAGER_ERR_CORRUPT; |
| 733 | rc = SQLITE_CORRUPT; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 734 | } |
| 735 | return rc; |
| 736 | } |
| 737 | |
| 738 | /* |
drh | f57b14a | 2001-09-14 18:54:08 +0000 | [diff] [blame] | 739 | ** Change the maximum number of in-memory pages that are allowed. |
drh | cd61c28 | 2002-03-06 22:01:34 +0000 | [diff] [blame] | 740 | ** |
| 741 | ** The maximum number is the absolute value of the mxPage parameter. |
| 742 | ** If mxPage is negative, the noSync flag is also set. noSync bypasses |
| 743 | ** calls to sqliteOsSync(). The pager runs much faster with noSync on, |
| 744 | ** but if the operating system crashes or there is an abrupt power |
| 745 | ** failure, the database file might be left in an inconsistent and |
| 746 | ** unrepairable state. |
drh | f57b14a | 2001-09-14 18:54:08 +0000 | [diff] [blame] | 747 | */ |
| 748 | void sqlitepager_set_cachesize(Pager *pPager, int mxPage){ |
drh | 603240c | 2002-03-05 01:11:12 +0000 | [diff] [blame] | 749 | if( mxPage>=0 ){ |
drh | a168045 | 2002-04-18 01:56:57 +0000 | [diff] [blame] | 750 | pPager->noSync = pPager->tempFile; |
drh | 603240c | 2002-03-05 01:11:12 +0000 | [diff] [blame] | 751 | }else{ |
| 752 | pPager->noSync = 1; |
| 753 | mxPage = -mxPage; |
| 754 | } |
drh | f57b14a | 2001-09-14 18:54:08 +0000 | [diff] [blame] | 755 | if( mxPage>10 ){ |
| 756 | pPager->mxPage = mxPage; |
| 757 | } |
| 758 | } |
| 759 | |
| 760 | /* |
drh | 973b6e3 | 2003-02-12 14:09:42 +0000 | [diff] [blame] | 761 | ** Adjust the robustness of the database to damage due to OS crashes |
| 762 | ** or power failures by changing the number of syncs()s when writing |
| 763 | ** the rollback journal. There are three levels: |
| 764 | ** |
| 765 | ** OFF sqliteOsSync() is never called. This is the default |
| 766 | ** for temporary and transient files. |
| 767 | ** |
| 768 | ** NORMAL The journal is synced once before writes begin on the |
| 769 | ** database. This is normally adequate protection, but |
| 770 | ** it is theoretically possible, though very unlikely, |
| 771 | ** that an inopertune power failure could leave the journal |
| 772 | ** in a state which would cause damage to the database |
| 773 | ** when it is rolled back. |
| 774 | ** |
| 775 | ** FULL The journal is synced twice before writes begin on the |
| 776 | ** database (with some additional information being written |
| 777 | ** in between the two syncs. If we assume that writing a |
| 778 | ** single disk sector is atomic, then this mode provides |
| 779 | ** assurance that the journal will not be corrupted to the |
| 780 | ** point of causing damage to the database during rollback. |
| 781 | ** |
| 782 | ** Numeric values associated with these states are OFF==1, NORMAL=2, |
| 783 | ** and FULL=3. |
| 784 | */ |
| 785 | void sqlitepager_set_safety_level(Pager *pPager, int level){ |
| 786 | pPager->noSync = level==1 || pPager->tempFile; |
| 787 | pPager->fullSync = level==3 && !pPager->tempFile; |
| 788 | } |
| 789 | |
| 790 | /* |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 791 | ** Open a temporary file. Write the name of the file into zName |
| 792 | ** (zName must be at least SQLITE_TEMPNAME_SIZE bytes long.) Write |
| 793 | ** the file descriptor into *fd. Return SQLITE_OK on success or some |
| 794 | ** other error code if we fail. |
| 795 | ** |
| 796 | ** The OS will automatically delete the temporary file when it is |
| 797 | ** closed. |
| 798 | */ |
| 799 | static int sqlitepager_opentemp(char *zFile, OsFile *fd){ |
| 800 | int cnt = 8; |
| 801 | int rc; |
| 802 | do{ |
| 803 | cnt--; |
| 804 | sqliteOsTempFileName(zFile); |
| 805 | rc = sqliteOsOpenExclusive(zFile, fd, 1); |
| 806 | }while( cnt>0 && rc!=SQLITE_OK ); |
| 807 | return rc; |
| 808 | } |
| 809 | |
| 810 | /* |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 811 | ** Create a new page cache and put a pointer to the page cache in *ppPager. |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 812 | ** The file to be cached need not exist. The file is not locked until |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 813 | ** the first call to sqlitepager_get() and is only held open until the |
| 814 | ** last page is released using sqlitepager_unref(). |
drh | 382c024 | 2001-10-06 16:33:02 +0000 | [diff] [blame] | 815 | ** |
drh | 6446c4d | 2001-12-15 14:22:18 +0000 | [diff] [blame] | 816 | ** If zFilename is NULL then a randomly-named temporary file is created |
| 817 | ** and used as the file to be cached. The file will be deleted |
| 818 | ** automatically when it is closed. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 819 | */ |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 820 | int sqlitepager_open( |
| 821 | Pager **ppPager, /* Return the Pager structure here */ |
| 822 | const char *zFilename, /* Name of the database file to open */ |
| 823 | int mxPage, /* Max number of in-memory cache pages */ |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 824 | int nExtra, /* Extra bytes append to each in-memory page */ |
| 825 | int useJournal /* TRUE to use a rollback journal on this file */ |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 826 | ){ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 827 | Pager *pPager; |
drh | 3e7a609 | 2002-12-07 21:45:14 +0000 | [diff] [blame] | 828 | char *zFullPathname; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 829 | int nameLen; |
drh | 8cfbf08 | 2001-09-19 13:22:39 +0000 | [diff] [blame] | 830 | OsFile fd; |
| 831 | int rc; |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 832 | int tempFile; |
| 833 | int readOnly = 0; |
drh | 8cfbf08 | 2001-09-19 13:22:39 +0000 | [diff] [blame] | 834 | char zTemp[SQLITE_TEMPNAME_SIZE]; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 835 | |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 836 | *ppPager = 0; |
| 837 | if( sqlite_malloc_failed ){ |
| 838 | return SQLITE_NOMEM; |
| 839 | } |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 840 | if( zFilename ){ |
drh | 3e7a609 | 2002-12-07 21:45:14 +0000 | [diff] [blame] | 841 | zFullPathname = sqliteOsFullPathname(zFilename); |
| 842 | rc = sqliteOsOpenReadWrite(zFullPathname, &fd, &readOnly); |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 843 | tempFile = 0; |
| 844 | }else{ |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 845 | rc = sqlitepager_opentemp(zTemp, &fd); |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 846 | zFilename = zTemp; |
drh | 3e7a609 | 2002-12-07 21:45:14 +0000 | [diff] [blame] | 847 | zFullPathname = sqliteOsFullPathname(zFilename); |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 848 | tempFile = 1; |
| 849 | } |
drh | 3e7a609 | 2002-12-07 21:45:14 +0000 | [diff] [blame] | 850 | if( sqlite_malloc_failed ){ |
| 851 | return SQLITE_NOMEM; |
| 852 | } |
drh | 8cfbf08 | 2001-09-19 13:22:39 +0000 | [diff] [blame] | 853 | if( rc!=SQLITE_OK ){ |
drh | 3e7a609 | 2002-12-07 21:45:14 +0000 | [diff] [blame] | 854 | sqliteFree(zFullPathname); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 855 | return SQLITE_CANTOPEN; |
| 856 | } |
drh | 3e7a609 | 2002-12-07 21:45:14 +0000 | [diff] [blame] | 857 | nameLen = strlen(zFullPathname); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 858 | pPager = sqliteMalloc( sizeof(*pPager) + nameLen*2 + 30 ); |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 859 | if( pPager==0 ){ |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 860 | sqliteOsClose(&fd); |
drh | 3e7a609 | 2002-12-07 21:45:14 +0000 | [diff] [blame] | 861 | sqliteFree(zFullPathname); |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 862 | return SQLITE_NOMEM; |
| 863 | } |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 864 | SET_PAGER(pPager); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 865 | pPager->zFilename = (char*)&pPager[1]; |
| 866 | pPager->zJournal = &pPager->zFilename[nameLen+1]; |
drh | 3e7a609 | 2002-12-07 21:45:14 +0000 | [diff] [blame] | 867 | strcpy(pPager->zFilename, zFullPathname); |
| 868 | strcpy(pPager->zJournal, zFullPathname); |
| 869 | sqliteFree(zFullPathname); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 870 | strcpy(&pPager->zJournal[nameLen], "-journal"); |
| 871 | pPager->fd = fd; |
drh | 8cfbf08 | 2001-09-19 13:22:39 +0000 | [diff] [blame] | 872 | pPager->journalOpen = 0; |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 873 | pPager->useJournal = useJournal; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 874 | pPager->ckptOpen = 0; |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 875 | pPager->ckptInUse = 0; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 876 | pPager->nRef = 0; |
| 877 | pPager->dbSize = -1; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 878 | pPager->ckptSize = 0; |
| 879 | pPager->ckptJSize = 0; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 880 | pPager->nPage = 0; |
drh | d79caeb | 2001-04-15 02:27:24 +0000 | [diff] [blame] | 881 | pPager->mxPage = mxPage>5 ? mxPage : 10; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 882 | pPager->state = SQLITE_UNLOCK; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 883 | pPager->errMask = 0; |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 884 | pPager->tempFile = tempFile; |
| 885 | pPager->readOnly = readOnly; |
drh | f57b14a | 2001-09-14 18:54:08 +0000 | [diff] [blame] | 886 | pPager->needSync = 0; |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 887 | pPager->noSync = pPager->tempFile || !useJournal; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 888 | pPager->pFirst = 0; |
drh | 341eae8 | 2003-01-21 02:39:36 +0000 | [diff] [blame] | 889 | pPager->pFirstSynced = 0; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 890 | pPager->pLast = 0; |
drh | 7c717f7 | 2001-06-24 20:39:41 +0000 | [diff] [blame] | 891 | pPager->nExtra = nExtra; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 892 | memset(pPager->aHash, 0, sizeof(pPager->aHash)); |
| 893 | *ppPager = pPager; |
| 894 | return SQLITE_OK; |
| 895 | } |
| 896 | |
| 897 | /* |
drh | 72f8286 | 2001-05-24 21:06:34 +0000 | [diff] [blame] | 898 | ** Set the destructor for this pager. If not NULL, the destructor is called |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 899 | ** when the reference count on each page reaches zero. The destructor can |
| 900 | ** be used to clean up information in the extra segment appended to each page. |
drh | 72f8286 | 2001-05-24 21:06:34 +0000 | [diff] [blame] | 901 | ** |
| 902 | ** The destructor is not called as a result sqlitepager_close(). |
| 903 | ** Destructors are only called by sqlitepager_unref(). |
| 904 | */ |
| 905 | void sqlitepager_set_destructor(Pager *pPager, void (*xDesc)(void*)){ |
| 906 | pPager->xDestructor = xDesc; |
| 907 | } |
| 908 | |
| 909 | /* |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 910 | ** Return the total number of pages in the disk file associated with |
| 911 | ** pPager. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 912 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 913 | int sqlitepager_pagecount(Pager *pPager){ |
drh | 28be87c | 2002-11-05 23:03:02 +0000 | [diff] [blame] | 914 | off_t n; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 915 | assert( pPager!=0 ); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 916 | if( pPager->dbSize>=0 ){ |
| 917 | return pPager->dbSize; |
| 918 | } |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 919 | if( sqliteOsFileSize(&pPager->fd, &n)!=SQLITE_OK ){ |
drh | 81a20f2 | 2001-10-12 17:30:04 +0000 | [diff] [blame] | 920 | pPager->errMask |= PAGER_ERR_DISK; |
drh | 8cfbf08 | 2001-09-19 13:22:39 +0000 | [diff] [blame] | 921 | return 0; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 922 | } |
drh | 8cfbf08 | 2001-09-19 13:22:39 +0000 | [diff] [blame] | 923 | n /= SQLITE_PAGE_SIZE; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 924 | if( pPager->state!=SQLITE_UNLOCK ){ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 925 | pPager->dbSize = n; |
| 926 | } |
| 927 | return n; |
| 928 | } |
| 929 | |
| 930 | /* |
drh | f7c5753 | 2003-04-25 13:22:51 +0000 | [diff] [blame] | 931 | ** Forward declaration |
| 932 | */ |
| 933 | static int syncAllPages(Pager*); |
| 934 | |
| 935 | /* |
| 936 | ** Truncate the file to the number of pages specified. |
| 937 | */ |
| 938 | int sqlitepager_truncate(Pager *pPager, Pgno nPage){ |
| 939 | int rc; |
drh | 2e6d11b | 2003-04-25 15:37:57 +0000 | [diff] [blame^] | 940 | if( pPager->dbSize<0 ){ |
| 941 | sqlitepager_pagecount(pPager); |
| 942 | } |
| 943 | if( pPager->errMask!=0 ){ |
| 944 | rc = pager_errcode(pPager); |
| 945 | return rc; |
| 946 | } |
drh | f7c5753 | 2003-04-25 13:22:51 +0000 | [diff] [blame] | 947 | if( nPage>=pPager->dbSize ){ |
| 948 | return SQLITE_OK; |
| 949 | } |
| 950 | syncAllPages(pPager); |
| 951 | rc = sqliteOsTruncate(&pPager->fd, SQLITE_PAGE_SIZE*(off_t)nPage); |
| 952 | if( rc==SQLITE_OK ){ |
| 953 | pPager->dbSize = nPage; |
| 954 | } |
| 955 | return rc; |
| 956 | } |
| 957 | |
| 958 | /* |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 959 | ** Shutdown the page cache. Free all memory and close all files. |
| 960 | ** |
| 961 | ** If a transaction was in progress when this routine is called, that |
| 962 | ** transaction is rolled back. All outstanding pages are invalidated |
| 963 | ** and their memory is freed. Any attempt to use a page associated |
| 964 | ** with this page cache after this function returns will likely |
| 965 | ** result in a coredump. |
| 966 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 967 | int sqlitepager_close(Pager *pPager){ |
| 968 | PgHdr *pPg, *pNext; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 969 | switch( pPager->state ){ |
| 970 | case SQLITE_WRITELOCK: { |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 971 | sqlitepager_rollback(pPager); |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 972 | sqliteOsUnlock(&pPager->fd); |
drh | 8cfbf08 | 2001-09-19 13:22:39 +0000 | [diff] [blame] | 973 | assert( pPager->journalOpen==0 ); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 974 | break; |
| 975 | } |
| 976 | case SQLITE_READLOCK: { |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 977 | sqliteOsUnlock(&pPager->fd); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 978 | break; |
| 979 | } |
| 980 | default: { |
| 981 | /* Do nothing */ |
| 982 | break; |
| 983 | } |
| 984 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 985 | for(pPg=pPager->pAll; pPg; pPg=pNext){ |
| 986 | pNext = pPg->pNextAll; |
| 987 | sqliteFree(pPg); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 988 | } |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 989 | sqliteOsClose(&pPager->fd); |
drh | 8cfbf08 | 2001-09-19 13:22:39 +0000 | [diff] [blame] | 990 | assert( pPager->journalOpen==0 ); |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 991 | /* Temp files are automatically deleted by the OS |
| 992 | ** if( pPager->tempFile ){ |
| 993 | ** sqliteOsDelete(pPager->zFilename); |
| 994 | ** } |
| 995 | */ |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 996 | CLR_PAGER(pPager); |
drh | 73509ee | 2003-04-06 20:44:45 +0000 | [diff] [blame] | 997 | if( pPager->zFilename!=(char*)&pPager[1] ){ |
| 998 | sqliteFree(pPager->zFilename); |
| 999 | sqliteFree(pPager->zJournal); |
| 1000 | } |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1001 | sqliteFree(pPager); |
| 1002 | return SQLITE_OK; |
| 1003 | } |
| 1004 | |
| 1005 | /* |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 1006 | ** Return the page number for the given page data. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1007 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1008 | Pgno sqlitepager_pagenumber(void *pData){ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1009 | PgHdr *p = DATA_TO_PGHDR(pData); |
| 1010 | return p->pgno; |
| 1011 | } |
| 1012 | |
| 1013 | /* |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1014 | ** Increment the reference count for a page. If the page is |
| 1015 | ** currently on the freelist (the reference count is zero) then |
| 1016 | ** remove it from the freelist. |
| 1017 | */ |
drh | 836faa4 | 2003-01-11 13:30:57 +0000 | [diff] [blame] | 1018 | #define page_ref(P) ((P)->nRef==0?_page_ref(P):(void)(P)->nRef++) |
| 1019 | static void _page_ref(PgHdr *pPg){ |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1020 | if( pPg->nRef==0 ){ |
| 1021 | /* The page is currently on the freelist. Remove it. */ |
drh | 341eae8 | 2003-01-21 02:39:36 +0000 | [diff] [blame] | 1022 | if( pPg==pPg->pPager->pFirstSynced ){ |
| 1023 | PgHdr *p = pPg->pNextFree; |
| 1024 | while( p && p->needSync ){ p = p->pNextFree; } |
| 1025 | pPg->pPager->pFirstSynced = p; |
| 1026 | } |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1027 | if( pPg->pPrevFree ){ |
| 1028 | pPg->pPrevFree->pNextFree = pPg->pNextFree; |
| 1029 | }else{ |
| 1030 | pPg->pPager->pFirst = pPg->pNextFree; |
| 1031 | } |
| 1032 | if( pPg->pNextFree ){ |
| 1033 | pPg->pNextFree->pPrevFree = pPg->pPrevFree; |
| 1034 | }else{ |
| 1035 | pPg->pPager->pLast = pPg->pPrevFree; |
| 1036 | } |
| 1037 | pPg->pPager->nRef++; |
| 1038 | } |
| 1039 | pPg->nRef++; |
drh | dd79342 | 2001-06-28 01:54:48 +0000 | [diff] [blame] | 1040 | REFINFO(pPg); |
drh | df0b3b0 | 2001-06-23 11:36:20 +0000 | [diff] [blame] | 1041 | } |
| 1042 | |
| 1043 | /* |
| 1044 | ** Increment the reference count for a page. The input pointer is |
| 1045 | ** a reference to the page data. |
| 1046 | */ |
| 1047 | int sqlitepager_ref(void *pData){ |
| 1048 | PgHdr *pPg = DATA_TO_PGHDR(pData); |
| 1049 | page_ref(pPg); |
drh | 8c42ca9 | 2001-06-22 19:15:00 +0000 | [diff] [blame] | 1050 | return SQLITE_OK; |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1051 | } |
| 1052 | |
| 1053 | /* |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 1054 | ** Sync the journal and then write all free dirty pages to the database |
| 1055 | ** file. |
| 1056 | ** |
| 1057 | ** Writing all free dirty pages to the database after the sync is a |
| 1058 | ** non-obvious optimization. fsync() is an expensive operation so we |
drh | aaab572 | 2002-02-19 13:39:21 +0000 | [diff] [blame] | 1059 | ** want to minimize the number ot times it is called. After an fsync() call, |
drh | 6446c4d | 2001-12-15 14:22:18 +0000 | [diff] [blame] | 1060 | ** we are free to write dirty pages back to the database. It is best |
| 1061 | ** to go ahead and write as many dirty pages as possible to minimize |
| 1062 | ** the risk of having to do another fsync() later on. Writing dirty |
| 1063 | ** free pages in this way was observed to make database operations go |
| 1064 | ** up to 10 times faster. |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1065 | ** |
| 1066 | ** If we are writing to temporary database, there is no need to preserve |
| 1067 | ** the integrity of the journal file, so we can save time and skip the |
| 1068 | ** fsync(). |
drh | 50e5dad | 2001-09-15 00:57:28 +0000 | [diff] [blame] | 1069 | */ |
| 1070 | static int syncAllPages(Pager *pPager){ |
| 1071 | PgHdr *pPg; |
| 1072 | int rc = SQLITE_OK; |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 1073 | |
| 1074 | /* Sync the journal before modifying the main database |
| 1075 | ** (assuming there is a journal and it needs to be synced.) |
| 1076 | */ |
drh | 50e5dad | 2001-09-15 00:57:28 +0000 | [diff] [blame] | 1077 | if( pPager->needSync ){ |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1078 | if( !pPager->tempFile ){ |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1079 | assert( pPager->journalOpen ); |
| 1080 | assert( !pPager->noSync ); |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1081 | #ifndef NDEBUG |
| 1082 | { |
drh | 4a0681e | 2003-02-13 01:58:20 +0000 | [diff] [blame] | 1083 | off_t hdrSz, pgSz, jSz; |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1084 | hdrSz = JOURNAL_HDR_SZ(journal_format); |
| 1085 | pgSz = JOURNAL_PG_SZ(journal_format); |
drh | 4a0681e | 2003-02-13 01:58:20 +0000 | [diff] [blame] | 1086 | rc = sqliteOsFileSize(&pPager->jfd, &jSz); |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1087 | if( rc!=0 ) return rc; |
drh | 4a0681e | 2003-02-13 01:58:20 +0000 | [diff] [blame] | 1088 | assert( pPager->nRec*pgSz+hdrSz==jSz ); |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1089 | } |
| 1090 | #endif |
drh | d8d66e8 | 2003-02-12 02:10:15 +0000 | [diff] [blame] | 1091 | if( journal_format>=3 ){ |
| 1092 | off_t szJ; |
| 1093 | if( pPager->fullSync ){ |
| 1094 | TRACE1("SYNC\n"); |
| 1095 | rc = sqliteOsSync(&pPager->jfd); |
| 1096 | if( rc!=0 ) return rc; |
| 1097 | } |
| 1098 | sqliteOsSeek(&pPager->jfd, sizeof(aJournalMagic1)); |
drh | 99ee360 | 2003-02-16 19:13:36 +0000 | [diff] [blame] | 1099 | rc = write32bits(&pPager->jfd, pPager->nRec); |
| 1100 | if( rc ) return rc; |
drh | d8d66e8 | 2003-02-12 02:10:15 +0000 | [diff] [blame] | 1101 | szJ = JOURNAL_HDR_SZ(journal_format) + |
| 1102 | pPager->nRec*JOURNAL_PG_SZ(journal_format); |
| 1103 | sqliteOsSeek(&pPager->jfd, szJ); |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1104 | } |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1105 | TRACE1("SYNC\n"); |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1106 | rc = sqliteOsSync(&pPager->jfd); |
| 1107 | if( rc!=0 ) return rc; |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1108 | pPager->journalStarted = 1; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1109 | } |
drh | 50e5dad | 2001-09-15 00:57:28 +0000 | [diff] [blame] | 1110 | pPager->needSync = 0; |
drh | 341eae8 | 2003-01-21 02:39:36 +0000 | [diff] [blame] | 1111 | |
| 1112 | /* Erase the needSync flag from every page. |
| 1113 | */ |
| 1114 | for(pPg=pPager->pAll; pPg; pPg=pPg->pNextAll){ |
| 1115 | pPg->needSync = 0; |
| 1116 | } |
| 1117 | pPager->pFirstSynced = pPager->pFirst; |
drh | 50e5dad | 2001-09-15 00:57:28 +0000 | [diff] [blame] | 1118 | } |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 1119 | |
drh | 341eae8 | 2003-01-21 02:39:36 +0000 | [diff] [blame] | 1120 | #ifndef NDEBUG |
| 1121 | /* If the Pager.needSync flag is clear then the PgHdr.needSync |
| 1122 | ** flag must also be clear for all pages. Verify that this |
| 1123 | ** invariant is true. |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 1124 | */ |
drh | 341eae8 | 2003-01-21 02:39:36 +0000 | [diff] [blame] | 1125 | else{ |
| 1126 | for(pPg=pPager->pAll; pPg; pPg=pPg->pNextAll){ |
| 1127 | assert( pPg->needSync==0 ); |
| 1128 | } |
| 1129 | assert( pPager->pFirstSynced==pPager->pFirst ); |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 1130 | } |
drh | 341eae8 | 2003-01-21 02:39:36 +0000 | [diff] [blame] | 1131 | #endif |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1132 | |
drh | 81a20f2 | 2001-10-12 17:30:04 +0000 | [diff] [blame] | 1133 | return rc; |
drh | 50e5dad | 2001-09-15 00:57:28 +0000 | [diff] [blame] | 1134 | } |
| 1135 | |
| 1136 | /* |
drh | 2554f8b | 2003-01-22 01:26:44 +0000 | [diff] [blame] | 1137 | ** Given a list of pages (connected by the PgHdr.pDirty pointer) write |
| 1138 | ** every one of those pages out to the database file and mark them all |
| 1139 | ** as clean. |
| 1140 | */ |
| 1141 | static int pager_write_pagelist(PgHdr *pList){ |
| 1142 | Pager *pPager; |
| 1143 | int rc; |
| 1144 | |
| 1145 | if( pList==0 ) return SQLITE_OK; |
| 1146 | pPager = pList->pPager; |
| 1147 | while( pList ){ |
| 1148 | assert( pList->dirty ); |
| 1149 | sqliteOsSeek(&pPager->fd, (pList->pgno-1)*(off_t)SQLITE_PAGE_SIZE); |
| 1150 | rc = sqliteOsWrite(&pPager->fd, PGHDR_TO_DATA(pList), SQLITE_PAGE_SIZE); |
| 1151 | if( rc ) return rc; |
| 1152 | pList->dirty = 0; |
| 1153 | pList = pList->pDirty; |
| 1154 | } |
| 1155 | return SQLITE_OK; |
| 1156 | } |
| 1157 | |
| 1158 | /* |
| 1159 | ** Collect every dirty page into a dirty list and |
| 1160 | ** return a pointer to the head of that list. All pages are |
| 1161 | ** collected even if they are still in use. |
| 1162 | */ |
| 1163 | static PgHdr *pager_get_all_dirty_pages(Pager *pPager){ |
| 1164 | PgHdr *p, *pList; |
| 1165 | pList = 0; |
| 1166 | for(p=pPager->pAll; p; p=p->pNextAll){ |
| 1167 | if( p->dirty ){ |
| 1168 | p->pDirty = pList; |
| 1169 | pList = p; |
| 1170 | } |
| 1171 | } |
| 1172 | return pList; |
| 1173 | } |
| 1174 | |
| 1175 | /* |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1176 | ** Acquire a page. |
| 1177 | ** |
drh | 58a1168 | 2001-11-10 13:51:08 +0000 | [diff] [blame] | 1178 | ** A read lock on the disk file is obtained when the first page is acquired. |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 1179 | ** This read lock is dropped when the last page is released. |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1180 | ** |
drh | 306dc21 | 2001-05-21 13:45:10 +0000 | [diff] [blame] | 1181 | ** A _get works for any page number greater than 0. If the database |
| 1182 | ** file is smaller than the requested page, then no actual disk |
| 1183 | ** read occurs and the memory image of the page is initialized to |
| 1184 | ** all zeros. The extra data appended to a page is always initialized |
| 1185 | ** to zeros the first time a page is loaded into memory. |
| 1186 | ** |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1187 | ** The acquisition might fail for several reasons. In all cases, |
| 1188 | ** an appropriate error code is returned and *ppPage is set to NULL. |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1189 | ** |
| 1190 | ** See also sqlitepager_lookup(). Both this routine and _lookup() attempt |
| 1191 | ** to find a page in the in-memory cache first. If the page is not already |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 1192 | ** in memory, this routine goes to disk to read it in whereas _lookup() |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1193 | ** just returns 0. This routine acquires a read-lock the first time it |
| 1194 | ** has to go to disk, and could also playback an old journal if necessary. |
| 1195 | ** Since _lookup() never goes to disk, it never has to deal with locks |
| 1196 | ** or journal files. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1197 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1198 | int sqlitepager_get(Pager *pPager, Pgno pgno, void **ppPage){ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1199 | PgHdr *pPg; |
drh | 8766c34 | 2002-11-09 00:33:15 +0000 | [diff] [blame] | 1200 | int rc; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1201 | |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1202 | /* Make sure we have not hit any critical errors. |
| 1203 | */ |
drh | 836faa4 | 2003-01-11 13:30:57 +0000 | [diff] [blame] | 1204 | assert( pPager!=0 ); |
| 1205 | assert( pgno!=0 ); |
drh | 2e6d11b | 2003-04-25 15:37:57 +0000 | [diff] [blame^] | 1206 | *ppPage = 0; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1207 | if( pPager->errMask & ~(PAGER_ERR_FULL) ){ |
| 1208 | return pager_errcode(pPager); |
| 1209 | } |
| 1210 | |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1211 | /* If this is the first page accessed, then get a read lock |
| 1212 | ** on the database file. |
| 1213 | */ |
| 1214 | if( pPager->nRef==0 ){ |
drh | 8766c34 | 2002-11-09 00:33:15 +0000 | [diff] [blame] | 1215 | rc = sqliteOsReadLock(&pPager->fd); |
| 1216 | if( rc!=SQLITE_OK ){ |
drh | 8766c34 | 2002-11-09 00:33:15 +0000 | [diff] [blame] | 1217 | return rc; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1218 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1219 | pPager->state = SQLITE_READLOCK; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1220 | |
| 1221 | /* If a journal file exists, try to play it back. |
| 1222 | */ |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1223 | if( pPager->useJournal && sqliteOsFileExists(pPager->zJournal) ){ |
drh | f57b339 | 2001-10-08 13:22:32 +0000 | [diff] [blame] | 1224 | int rc, dummy; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1225 | |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 1226 | /* Get a write lock on the database |
| 1227 | */ |
| 1228 | rc = sqliteOsWriteLock(&pPager->fd); |
| 1229 | if( rc!=SQLITE_OK ){ |
drh | 8766c34 | 2002-11-09 00:33:15 +0000 | [diff] [blame] | 1230 | if( sqliteOsUnlock(&pPager->fd)!=SQLITE_OK ){ |
| 1231 | /* This should never happen! */ |
| 1232 | rc = SQLITE_INTERNAL; |
| 1233 | } |
drh | 8766c34 | 2002-11-09 00:33:15 +0000 | [diff] [blame] | 1234 | return rc; |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 1235 | } |
| 1236 | pPager->state = SQLITE_WRITELOCK; |
| 1237 | |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1238 | /* Open the journal for exclusive access. Return SQLITE_BUSY if |
drh | f57b339 | 2001-10-08 13:22:32 +0000 | [diff] [blame] | 1239 | ** we cannot get exclusive access to the journal file. |
| 1240 | ** |
| 1241 | ** Even though we will only be reading from the journal, not writing, |
| 1242 | ** we have to open the journal for writing in order to obtain an |
| 1243 | ** exclusive access lock. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1244 | */ |
drh | f57b339 | 2001-10-08 13:22:32 +0000 | [diff] [blame] | 1245 | rc = sqliteOsOpenReadWrite(pPager->zJournal, &pPager->jfd, &dummy); |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 1246 | if( rc!=SQLITE_OK ){ |
| 1247 | rc = sqliteOsUnlock(&pPager->fd); |
| 1248 | assert( rc==SQLITE_OK ); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1249 | return SQLITE_BUSY; |
| 1250 | } |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 1251 | pPager->journalOpen = 1; |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1252 | pPager->journalStarted = 0; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1253 | |
| 1254 | /* Playback and delete the journal. Drop the database write |
| 1255 | ** lock and reacquire the read lock. |
| 1256 | */ |
drh | 99ee360 | 2003-02-16 19:13:36 +0000 | [diff] [blame] | 1257 | rc = pager_playback(pPager, 0); |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1258 | if( rc!=SQLITE_OK ){ |
| 1259 | return rc; |
| 1260 | } |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1261 | } |
| 1262 | pPg = 0; |
| 1263 | }else{ |
| 1264 | /* Search for page in cache */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1265 | pPg = pager_lookup(pPager, pgno); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1266 | } |
| 1267 | if( pPg==0 ){ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1268 | /* The requested page is not in the page cache. */ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1269 | int h; |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1270 | pPager->nMiss++; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1271 | if( pPager->nPage<pPager->mxPage || pPager->pFirst==0 ){ |
| 1272 | /* Create a new page */ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1273 | pPg = sqliteMallocRaw( sizeof(*pPg) + SQLITE_PAGE_SIZE |
| 1274 | + sizeof(u32) + pPager->nExtra ); |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1275 | if( pPg==0 ){ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1276 | pager_unwritelock(pPager); |
| 1277 | pPager->errMask |= PAGER_ERR_MEM; |
| 1278 | return SQLITE_NOMEM; |
| 1279 | } |
drh | 8c1238a | 2003-01-02 14:43:55 +0000 | [diff] [blame] | 1280 | memset(pPg, 0, sizeof(*pPg)); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1281 | pPg->pPager = pPager; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1282 | pPg->pNextAll = pPager->pAll; |
| 1283 | if( pPager->pAll ){ |
| 1284 | pPager->pAll->pPrevAll = pPg; |
| 1285 | } |
| 1286 | pPg->pPrevAll = 0; |
drh | d79caeb | 2001-04-15 02:27:24 +0000 | [diff] [blame] | 1287 | pPager->pAll = pPg; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1288 | pPager->nPage++; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1289 | }else{ |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1290 | /* Find a page to recycle. Try to locate a page that does not |
| 1291 | ** require us to do an fsync() on the journal. |
| 1292 | */ |
drh | 341eae8 | 2003-01-21 02:39:36 +0000 | [diff] [blame] | 1293 | pPg = pPager->pFirstSynced; |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 1294 | |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1295 | /* If we could not find a page that does not require an fsync() |
| 1296 | ** on the journal file then fsync the journal file. This is a |
| 1297 | ** very slow operation, so we work hard to avoid it. But sometimes |
| 1298 | ** it can't be helped. |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 1299 | */ |
drh | 603240c | 2002-03-05 01:11:12 +0000 | [diff] [blame] | 1300 | if( pPg==0 ){ |
drh | 50e5dad | 2001-09-15 00:57:28 +0000 | [diff] [blame] | 1301 | int rc = syncAllPages(pPager); |
| 1302 | if( rc!=0 ){ |
| 1303 | sqlitepager_rollback(pPager); |
drh | 50e5dad | 2001-09-15 00:57:28 +0000 | [diff] [blame] | 1304 | return SQLITE_IOERR; |
| 1305 | } |
| 1306 | pPg = pPager->pFirst; |
| 1307 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1308 | assert( pPg->nRef==0 ); |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1309 | |
| 1310 | /* Write the page to the database file if it is dirty. |
| 1311 | */ |
| 1312 | if( pPg->dirty ){ |
| 1313 | assert( pPg->needSync==0 ); |
drh | 2554f8b | 2003-01-22 01:26:44 +0000 | [diff] [blame] | 1314 | pPg->pDirty = 0; |
| 1315 | rc = pager_write_pagelist( pPg ); |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1316 | if( rc!=SQLITE_OK ){ |
| 1317 | sqlitepager_rollback(pPager); |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1318 | return SQLITE_IOERR; |
| 1319 | } |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1320 | } |
drh | 50e5dad | 2001-09-15 00:57:28 +0000 | [diff] [blame] | 1321 | assert( pPg->dirty==0 ); |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1322 | |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1323 | /* If the page we are recycling is marked as alwaysRollback, then |
drh | 193a6b4 | 2002-07-07 16:52:46 +0000 | [diff] [blame] | 1324 | ** set the global alwaysRollback flag, thus disabling the |
| 1325 | ** sqlite_dont_rollback() optimization for the rest of this transaction. |
| 1326 | ** It is necessary to do this because the page marked alwaysRollback |
| 1327 | ** might be reloaded at a later time but at that point we won't remember |
| 1328 | ** that is was marked alwaysRollback. This means that all pages must |
| 1329 | ** be marked as alwaysRollback from here on out. |
| 1330 | */ |
| 1331 | if( pPg->alwaysRollback ){ |
| 1332 | pPager->alwaysRollback = 1; |
| 1333 | } |
| 1334 | |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1335 | /* Unlink the old page from the free list and the hash table |
| 1336 | */ |
drh | 341eae8 | 2003-01-21 02:39:36 +0000 | [diff] [blame] | 1337 | if( pPg==pPager->pFirstSynced ){ |
| 1338 | PgHdr *p = pPg->pNextFree; |
| 1339 | while( p && p->needSync ){ p = p->pNextFree; } |
| 1340 | pPager->pFirstSynced = p; |
| 1341 | } |
drh | 6019e16 | 2001-07-02 17:51:45 +0000 | [diff] [blame] | 1342 | if( pPg->pPrevFree ){ |
| 1343 | pPg->pPrevFree->pNextFree = pPg->pNextFree; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1344 | }else{ |
drh | 6019e16 | 2001-07-02 17:51:45 +0000 | [diff] [blame] | 1345 | assert( pPager->pFirst==pPg ); |
| 1346 | pPager->pFirst = pPg->pNextFree; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1347 | } |
drh | 6019e16 | 2001-07-02 17:51:45 +0000 | [diff] [blame] | 1348 | if( pPg->pNextFree ){ |
| 1349 | pPg->pNextFree->pPrevFree = pPg->pPrevFree; |
| 1350 | }else{ |
| 1351 | assert( pPager->pLast==pPg ); |
| 1352 | pPager->pLast = pPg->pPrevFree; |
| 1353 | } |
| 1354 | pPg->pNextFree = pPg->pPrevFree = 0; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1355 | if( pPg->pNextHash ){ |
| 1356 | pPg->pNextHash->pPrevHash = pPg->pPrevHash; |
| 1357 | } |
| 1358 | if( pPg->pPrevHash ){ |
| 1359 | pPg->pPrevHash->pNextHash = pPg->pNextHash; |
| 1360 | }else{ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1361 | h = pager_hash(pPg->pgno); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1362 | assert( pPager->aHash[h]==pPg ); |
| 1363 | pPager->aHash[h] = pPg->pNextHash; |
| 1364 | } |
drh | 6019e16 | 2001-07-02 17:51:45 +0000 | [diff] [blame] | 1365 | pPg->pNextHash = pPg->pPrevHash = 0; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1366 | pPager->nOvfl++; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1367 | } |
| 1368 | pPg->pgno = pgno; |
drh | 1ab4300 | 2002-01-14 09:28:19 +0000 | [diff] [blame] | 1369 | if( pPager->aInJournal && (int)pgno<=pPager->origDbSize ){ |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 1370 | sqliteCheckMemory(pPager->aInJournal, pgno/8); |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1371 | assert( pPager->journalOpen ); |
drh | 6019e16 | 2001-07-02 17:51:45 +0000 | [diff] [blame] | 1372 | pPg->inJournal = (pPager->aInJournal[pgno/8] & (1<<(pgno&7)))!=0; |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1373 | pPg->needSync = 0; |
drh | 6019e16 | 2001-07-02 17:51:45 +0000 | [diff] [blame] | 1374 | }else{ |
| 1375 | pPg->inJournal = 0; |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1376 | pPg->needSync = 0; |
drh | 6019e16 | 2001-07-02 17:51:45 +0000 | [diff] [blame] | 1377 | } |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 1378 | if( pPager->aInCkpt && (int)pgno<=pPager->ckptSize |
| 1379 | && (pPager->aInCkpt[pgno/8] & (1<<(pgno&7)))!=0 ){ |
| 1380 | page_add_to_ckpt_list(pPg); |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1381 | }else{ |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 1382 | page_remove_from_ckpt_list(pPg); |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1383 | } |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1384 | pPg->dirty = 0; |
| 1385 | pPg->nRef = 1; |
drh | dd79342 | 2001-06-28 01:54:48 +0000 | [diff] [blame] | 1386 | REFINFO(pPg); |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1387 | pPager->nRef++; |
| 1388 | h = pager_hash(pgno); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1389 | pPg->pNextHash = pPager->aHash[h]; |
| 1390 | pPager->aHash[h] = pPg; |
| 1391 | if( pPg->pNextHash ){ |
| 1392 | assert( pPg->pNextHash->pPrevHash==0 ); |
| 1393 | pPg->pNextHash->pPrevHash = pPg; |
| 1394 | } |
drh | 2e6d11b | 2003-04-25 15:37:57 +0000 | [diff] [blame^] | 1395 | if( pPager->nExtra>0 ){ |
| 1396 | memset(PGHDR_TO_EXTRA(pPg), 0, pPager->nExtra); |
| 1397 | } |
drh | 306dc21 | 2001-05-21 13:45:10 +0000 | [diff] [blame] | 1398 | if( pPager->dbSize<0 ) sqlitepager_pagecount(pPager); |
drh | 2e6d11b | 2003-04-25 15:37:57 +0000 | [diff] [blame^] | 1399 | if( pPager->errMask!=0 ){ |
| 1400 | sqlitepager_unref(PGHDR_TO_DATA(pPg)); |
| 1401 | rc = pager_errcode(pPager); |
| 1402 | return rc; |
| 1403 | } |
drh | 1ab4300 | 2002-01-14 09:28:19 +0000 | [diff] [blame] | 1404 | if( pPager->dbSize<(int)pgno ){ |
drh | 306dc21 | 2001-05-21 13:45:10 +0000 | [diff] [blame] | 1405 | memset(PGHDR_TO_DATA(pPg), 0, SQLITE_PAGE_SIZE); |
| 1406 | }else{ |
drh | 81a20f2 | 2001-10-12 17:30:04 +0000 | [diff] [blame] | 1407 | int rc; |
drh | d0d006e | 2002-12-01 02:00:57 +0000 | [diff] [blame] | 1408 | sqliteOsSeek(&pPager->fd, (pgno-1)*(off_t)SQLITE_PAGE_SIZE); |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 1409 | rc = sqliteOsRead(&pPager->fd, PGHDR_TO_DATA(pPg), SQLITE_PAGE_SIZE); |
drh | 81a20f2 | 2001-10-12 17:30:04 +0000 | [diff] [blame] | 1410 | if( rc!=SQLITE_OK ){ |
drh | 28be87c | 2002-11-05 23:03:02 +0000 | [diff] [blame] | 1411 | off_t fileSize; |
drh | 4e371ee | 2002-09-05 16:08:27 +0000 | [diff] [blame] | 1412 | if( sqliteOsFileSize(&pPager->fd,&fileSize)!=SQLITE_OK |
| 1413 | || fileSize>=pgno*SQLITE_PAGE_SIZE ){ |
drh | 2e6d11b | 2003-04-25 15:37:57 +0000 | [diff] [blame^] | 1414 | sqlitepager_unref(PGHDR_TO_DATA(pPg)); |
drh | 4e371ee | 2002-09-05 16:08:27 +0000 | [diff] [blame] | 1415 | return rc; |
| 1416 | }else{ |
| 1417 | memset(PGHDR_TO_DATA(pPg), 0, SQLITE_PAGE_SIZE); |
| 1418 | } |
drh | 81a20f2 | 2001-10-12 17:30:04 +0000 | [diff] [blame] | 1419 | } |
drh | 306dc21 | 2001-05-21 13:45:10 +0000 | [diff] [blame] | 1420 | } |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1421 | }else{ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1422 | /* The requested page is in the page cache. */ |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1423 | pPager->nHit++; |
drh | df0b3b0 | 2001-06-23 11:36:20 +0000 | [diff] [blame] | 1424 | page_ref(pPg); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1425 | } |
| 1426 | *ppPage = PGHDR_TO_DATA(pPg); |
| 1427 | return SQLITE_OK; |
| 1428 | } |
| 1429 | |
| 1430 | /* |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1431 | ** Acquire a page if it is already in the in-memory cache. Do |
| 1432 | ** not read the page from disk. Return a pointer to the page, |
| 1433 | ** or 0 if the page is not in cache. |
| 1434 | ** |
| 1435 | ** See also sqlitepager_get(). The difference between this routine |
| 1436 | ** and sqlitepager_get() is that _get() will go to the disk and read |
| 1437 | ** in the page if the page is not already in cache. This routine |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 1438 | ** returns NULL if the page is not in cache or if a disk I/O error |
| 1439 | ** has ever happened. |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1440 | */ |
| 1441 | void *sqlitepager_lookup(Pager *pPager, Pgno pgno){ |
| 1442 | PgHdr *pPg; |
| 1443 | |
drh | 836faa4 | 2003-01-11 13:30:57 +0000 | [diff] [blame] | 1444 | assert( pPager!=0 ); |
| 1445 | assert( pgno!=0 ); |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1446 | if( pPager->errMask & ~(PAGER_ERR_FULL) ){ |
| 1447 | return 0; |
| 1448 | } |
drh | 836faa4 | 2003-01-11 13:30:57 +0000 | [diff] [blame] | 1449 | /* if( pPager->nRef==0 ){ |
| 1450 | ** return 0; |
| 1451 | ** } |
| 1452 | */ |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1453 | pPg = pager_lookup(pPager, pgno); |
| 1454 | if( pPg==0 ) return 0; |
drh | df0b3b0 | 2001-06-23 11:36:20 +0000 | [diff] [blame] | 1455 | page_ref(pPg); |
drh | 7e3b0a0 | 2001-04-28 16:52:40 +0000 | [diff] [blame] | 1456 | return PGHDR_TO_DATA(pPg); |
| 1457 | } |
| 1458 | |
| 1459 | /* |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1460 | ** Release a page. |
| 1461 | ** |
| 1462 | ** If the number of references to the page drop to zero, then the |
| 1463 | ** page is added to the LRU list. When all references to all pages |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1464 | ** are released, a rollback occurs and the lock on the database is |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1465 | ** removed. |
| 1466 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1467 | int sqlitepager_unref(void *pData){ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1468 | PgHdr *pPg; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1469 | |
| 1470 | /* Decrement the reference count for this page |
| 1471 | */ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1472 | pPg = DATA_TO_PGHDR(pData); |
| 1473 | assert( pPg->nRef>0 ); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1474 | pPg->nRef--; |
drh | dd79342 | 2001-06-28 01:54:48 +0000 | [diff] [blame] | 1475 | REFINFO(pPg); |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1476 | |
drh | 72f8286 | 2001-05-24 21:06:34 +0000 | [diff] [blame] | 1477 | /* When the number of references to a page reach 0, call the |
| 1478 | ** destructor and add the page to the freelist. |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1479 | */ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1480 | if( pPg->nRef==0 ){ |
drh | 1eaa269 | 2001-09-18 02:02:23 +0000 | [diff] [blame] | 1481 | Pager *pPager; |
| 1482 | pPager = pPg->pPager; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1483 | pPg->pNextFree = 0; |
| 1484 | pPg->pPrevFree = pPager->pLast; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1485 | pPager->pLast = pPg; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1486 | if( pPg->pPrevFree ){ |
| 1487 | pPg->pPrevFree->pNextFree = pPg; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1488 | }else{ |
| 1489 | pPager->pFirst = pPg; |
| 1490 | } |
drh | 341eae8 | 2003-01-21 02:39:36 +0000 | [diff] [blame] | 1491 | if( pPg->needSync==0 && pPager->pFirstSynced==0 ){ |
| 1492 | pPager->pFirstSynced = pPg; |
| 1493 | } |
drh | 72f8286 | 2001-05-24 21:06:34 +0000 | [diff] [blame] | 1494 | if( pPager->xDestructor ){ |
| 1495 | pPager->xDestructor(pData); |
| 1496 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1497 | |
| 1498 | /* When all pages reach the freelist, drop the read lock from |
| 1499 | ** the database file. |
| 1500 | */ |
| 1501 | pPager->nRef--; |
| 1502 | assert( pPager->nRef>=0 ); |
| 1503 | if( pPager->nRef==0 ){ |
| 1504 | pager_reset(pPager); |
| 1505 | } |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1506 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1507 | return SQLITE_OK; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1508 | } |
| 1509 | |
| 1510 | /* |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1511 | ** Create a journal file for pPager. There should already be a write |
| 1512 | ** lock on the database file when this routine is called. |
| 1513 | ** |
| 1514 | ** Return SQLITE_OK if everything. Return an error code and release the |
| 1515 | ** write lock if anything goes wrong. |
| 1516 | */ |
| 1517 | static int pager_open_journal(Pager *pPager){ |
| 1518 | int rc; |
| 1519 | assert( pPager->state==SQLITE_WRITELOCK ); |
| 1520 | assert( pPager->journalOpen==0 ); |
| 1521 | assert( pPager->useJournal ); |
| 1522 | pPager->aInJournal = sqliteMalloc( pPager->dbSize/8 + 1 ); |
| 1523 | if( pPager->aInJournal==0 ){ |
| 1524 | sqliteOsReadLock(&pPager->fd); |
| 1525 | pPager->state = SQLITE_READLOCK; |
| 1526 | return SQLITE_NOMEM; |
| 1527 | } |
| 1528 | rc = sqliteOsOpenExclusive(pPager->zJournal, &pPager->jfd,pPager->tempFile); |
| 1529 | if( rc!=SQLITE_OK ){ |
| 1530 | sqliteFree(pPager->aInJournal); |
| 1531 | pPager->aInJournal = 0; |
| 1532 | sqliteOsReadLock(&pPager->fd); |
| 1533 | pPager->state = SQLITE_READLOCK; |
| 1534 | return SQLITE_CANTOPEN; |
| 1535 | } |
| 1536 | pPager->journalOpen = 1; |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1537 | pPager->journalStarted = 0; |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1538 | pPager->needSync = 0; |
| 1539 | pPager->alwaysRollback = 0; |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1540 | pPager->nRec = 0; |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1541 | sqlitepager_pagecount(pPager); |
drh | 2e6d11b | 2003-04-25 15:37:57 +0000 | [diff] [blame^] | 1542 | if( pPager->errMask!=0 ){ |
| 1543 | rc = pager_errcode(pPager); |
| 1544 | return rc; |
| 1545 | } |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1546 | pPager->origDbSize = pPager->dbSize; |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1547 | if( journal_format==JOURNAL_FORMAT_3 ){ |
| 1548 | rc = sqliteOsWrite(&pPager->jfd, aJournalMagic3, sizeof(aJournalMagic3)); |
| 1549 | if( rc==SQLITE_OK ){ |
drh | 4303fee | 2003-02-15 23:09:17 +0000 | [diff] [blame] | 1550 | rc = write32bits(&pPager->jfd, pPager->noSync ? 0xffffffff : 0); |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1551 | } |
| 1552 | if( rc==SQLITE_OK ){ |
| 1553 | pPager->cksumInit = (u32)sqliteRandomInteger(); |
| 1554 | rc = write32bits(&pPager->jfd, pPager->cksumInit); |
| 1555 | } |
| 1556 | }else if( journal_format==JOURNAL_FORMAT_2 ){ |
| 1557 | rc = sqliteOsWrite(&pPager->jfd, aJournalMagic2, sizeof(aJournalMagic2)); |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1558 | }else{ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1559 | assert( journal_format==JOURNAL_FORMAT_1 ); |
| 1560 | rc = sqliteOsWrite(&pPager->jfd, aJournalMagic1, sizeof(aJournalMagic1)); |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1561 | } |
| 1562 | if( rc==SQLITE_OK ){ |
| 1563 | rc = write32bits(&pPager->jfd, pPager->dbSize); |
| 1564 | } |
| 1565 | if( pPager->ckptAutoopen && rc==SQLITE_OK ){ |
| 1566 | rc = sqlitepager_ckpt_begin(pPager); |
| 1567 | } |
| 1568 | if( rc!=SQLITE_OK ){ |
| 1569 | rc = pager_unwritelock(pPager); |
| 1570 | if( rc==SQLITE_OK ){ |
| 1571 | rc = SQLITE_FULL; |
| 1572 | } |
| 1573 | } |
| 1574 | return rc; |
| 1575 | } |
| 1576 | |
| 1577 | /* |
drh | 4b845d7 | 2002-03-05 12:41:19 +0000 | [diff] [blame] | 1578 | ** Acquire a write-lock on the database. The lock is removed when |
| 1579 | ** the any of the following happen: |
| 1580 | ** |
| 1581 | ** * sqlitepager_commit() is called. |
| 1582 | ** * sqlitepager_rollback() is called. |
| 1583 | ** * sqlitepager_close() is called. |
| 1584 | ** * sqlitepager_unref() is called to on every outstanding page. |
| 1585 | ** |
| 1586 | ** The parameter to this routine is a pointer to any open page of the |
| 1587 | ** database file. Nothing changes about the page - it is used merely |
| 1588 | ** to acquire a pointer to the Pager structure and as proof that there |
| 1589 | ** is already a read-lock on the database. |
| 1590 | ** |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1591 | ** A journal file is opened if this is not a temporary file. For |
| 1592 | ** temporary files, the opening of the journal file is deferred until |
| 1593 | ** there is an actual need to write to the journal. |
| 1594 | ** |
drh | 4b845d7 | 2002-03-05 12:41:19 +0000 | [diff] [blame] | 1595 | ** If the database is already write-locked, this routine is a no-op. |
| 1596 | */ |
| 1597 | int sqlitepager_begin(void *pData){ |
| 1598 | PgHdr *pPg = DATA_TO_PGHDR(pData); |
| 1599 | Pager *pPager = pPg->pPager; |
| 1600 | int rc = SQLITE_OK; |
| 1601 | assert( pPg->nRef>0 ); |
| 1602 | assert( pPager->state!=SQLITE_UNLOCK ); |
| 1603 | if( pPager->state==SQLITE_READLOCK ){ |
| 1604 | assert( pPager->aInJournal==0 ); |
| 1605 | rc = sqliteOsWriteLock(&pPager->fd); |
| 1606 | if( rc!=SQLITE_OK ){ |
| 1607 | return rc; |
| 1608 | } |
drh | 4b845d7 | 2002-03-05 12:41:19 +0000 | [diff] [blame] | 1609 | pPager->state = SQLITE_WRITELOCK; |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1610 | pPager->dirtyFile = 0; |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1611 | TRACE1("TRANSACTION\n"); |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1612 | if( pPager->useJournal && !pPager->tempFile ){ |
| 1613 | rc = pager_open_journal(pPager); |
drh | 4b845d7 | 2002-03-05 12:41:19 +0000 | [diff] [blame] | 1614 | } |
| 1615 | } |
| 1616 | return rc; |
| 1617 | } |
| 1618 | |
| 1619 | /* |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1620 | ** Mark a data page as writeable. The page is written into the journal |
| 1621 | ** if it is not there already. This routine must be called before making |
| 1622 | ** changes to a page. |
| 1623 | ** |
| 1624 | ** The first time this routine is called, the pager creates a new |
| 1625 | ** journal and acquires a write lock on the database. If the write |
| 1626 | ** lock could not be acquired, this routine returns SQLITE_BUSY. The |
drh | 306dc21 | 2001-05-21 13:45:10 +0000 | [diff] [blame] | 1627 | ** calling routine must check for that return value and be careful not to |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1628 | ** change any page data until this routine returns SQLITE_OK. |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1629 | ** |
| 1630 | ** If the journal file could not be written because the disk is full, |
| 1631 | ** then this routine returns SQLITE_FULL and does an immediate rollback. |
| 1632 | ** All subsequent write attempts also return SQLITE_FULL until there |
| 1633 | ** is a call to sqlitepager_commit() or sqlitepager_rollback() to |
| 1634 | ** reset. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1635 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1636 | int sqlitepager_write(void *pData){ |
drh | 69688d5 | 2001-04-14 16:38:23 +0000 | [diff] [blame] | 1637 | PgHdr *pPg = DATA_TO_PGHDR(pData); |
| 1638 | Pager *pPager = pPg->pPager; |
drh | d79caeb | 2001-04-15 02:27:24 +0000 | [diff] [blame] | 1639 | int rc = SQLITE_OK; |
drh | 69688d5 | 2001-04-14 16:38:23 +0000 | [diff] [blame] | 1640 | |
drh | 6446c4d | 2001-12-15 14:22:18 +0000 | [diff] [blame] | 1641 | /* Check for errors |
| 1642 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1643 | if( pPager->errMask ){ |
| 1644 | return pager_errcode(pPager); |
| 1645 | } |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 1646 | if( pPager->readOnly ){ |
| 1647 | return SQLITE_PERM; |
| 1648 | } |
drh | 6446c4d | 2001-12-15 14:22:18 +0000 | [diff] [blame] | 1649 | |
| 1650 | /* Mark the page as dirty. If the page has already been written |
| 1651 | ** to the journal then we can return right away. |
| 1652 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1653 | pPg->dirty = 1; |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 1654 | if( pPg->inJournal && (pPg->inCkpt || pPager->ckptInUse==0) ){ |
drh | a168045 | 2002-04-18 01:56:57 +0000 | [diff] [blame] | 1655 | pPager->dirtyFile = 1; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1656 | return SQLITE_OK; |
| 1657 | } |
drh | 6446c4d | 2001-12-15 14:22:18 +0000 | [diff] [blame] | 1658 | |
| 1659 | /* If we get this far, it means that the page needs to be |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1660 | ** written to the transaction journal or the ckeckpoint journal |
| 1661 | ** or both. |
| 1662 | ** |
| 1663 | ** First check to see that the transaction journal exists and |
| 1664 | ** create it if it does not. |
drh | 6446c4d | 2001-12-15 14:22:18 +0000 | [diff] [blame] | 1665 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1666 | assert( pPager->state!=SQLITE_UNLOCK ); |
drh | 4b845d7 | 2002-03-05 12:41:19 +0000 | [diff] [blame] | 1667 | rc = sqlitepager_begin(pData); |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1668 | if( rc!=SQLITE_OK ){ |
| 1669 | return rc; |
| 1670 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1671 | assert( pPager->state==SQLITE_WRITELOCK ); |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1672 | if( !pPager->journalOpen && pPager->useJournal ){ |
| 1673 | rc = pager_open_journal(pPager); |
| 1674 | if( rc!=SQLITE_OK ) return rc; |
| 1675 | } |
| 1676 | assert( pPager->journalOpen || !pPager->useJournal ); |
| 1677 | pPager->dirtyFile = 1; |
drh | 6446c4d | 2001-12-15 14:22:18 +0000 | [diff] [blame] | 1678 | |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1679 | /* The transaction journal now exists and we have a write lock on the |
| 1680 | ** main database file. Write the current page to the transaction |
| 1681 | ** journal if it is not there already. |
drh | 6446c4d | 2001-12-15 14:22:18 +0000 | [diff] [blame] | 1682 | */ |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1683 | if( !pPg->inJournal && pPager->useJournal ){ |
| 1684 | if( (int)pPg->pgno <= pPager->origDbSize ){ |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1685 | int szPg; |
| 1686 | u32 saved; |
| 1687 | if( journal_format>=JOURNAL_FORMAT_3 ){ |
| 1688 | u32 cksum = pager_cksum(pPager, pPg->pgno, pData); |
| 1689 | saved = *(u32*)PGHDR_TO_EXTRA(pPg); |
| 1690 | store32bits(cksum, pPg, SQLITE_PAGE_SIZE); |
| 1691 | szPg = SQLITE_PAGE_SIZE+8; |
| 1692 | }else{ |
| 1693 | szPg = SQLITE_PAGE_SIZE+4; |
| 1694 | } |
| 1695 | store32bits(pPg->pgno, pPg, -4); |
| 1696 | rc = sqliteOsWrite(&pPager->jfd, &((char*)pData)[-4], szPg); |
| 1697 | if( journal_format>=JOURNAL_FORMAT_3 ){ |
| 1698 | *(u32*)PGHDR_TO_EXTRA(pPg) = saved; |
| 1699 | } |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1700 | if( rc!=SQLITE_OK ){ |
| 1701 | sqlitepager_rollback(pPager); |
| 1702 | pPager->errMask |= PAGER_ERR_FULL; |
| 1703 | return rc; |
| 1704 | } |
drh | 99ee360 | 2003-02-16 19:13:36 +0000 | [diff] [blame] | 1705 | pPager->nRec++; |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1706 | assert( pPager->aInJournal!=0 ); |
| 1707 | pPager->aInJournal[pPg->pgno/8] |= 1<<(pPg->pgno&7); |
| 1708 | pPg->needSync = !pPager->noSync; |
| 1709 | pPg->inJournal = 1; |
| 1710 | if( pPager->ckptInUse ){ |
| 1711 | pPager->aInCkpt[pPg->pgno/8] |= 1<<(pPg->pgno&7); |
| 1712 | page_add_to_ckpt_list(pPg); |
| 1713 | } |
| 1714 | TRACE3("JOURNAL %d %d\n", pPg->pgno, pPg->needSync); |
| 1715 | }else{ |
| 1716 | pPg->needSync = !pPager->journalStarted && !pPager->noSync; |
| 1717 | TRACE3("APPEND %d %d\n", pPg->pgno, pPg->needSync); |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1718 | } |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1719 | if( pPg->needSync ){ |
| 1720 | pPager->needSync = 1; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1721 | } |
drh | 69688d5 | 2001-04-14 16:38:23 +0000 | [diff] [blame] | 1722 | } |
drh | 6446c4d | 2001-12-15 14:22:18 +0000 | [diff] [blame] | 1723 | |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1724 | /* If the checkpoint journal is open and the page is not in it, |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1725 | ** then write the current page to the checkpoint journal. Note that |
| 1726 | ** the checkpoint journal always uses the simplier format 2 that lacks |
| 1727 | ** checksums. The header is also omitted from the checkpoint journal. |
drh | 6446c4d | 2001-12-15 14:22:18 +0000 | [diff] [blame] | 1728 | */ |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 1729 | if( pPager->ckptInUse && !pPg->inCkpt && (int)pPg->pgno<=pPager->ckptSize ){ |
drh | 1e336b4 | 2002-02-14 12:50:33 +0000 | [diff] [blame] | 1730 | assert( pPg->inJournal || (int)pPg->pgno>pPager->origDbSize ); |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 1731 | store32bits(pPg->pgno, pPg, -4); |
drh | 2554f8b | 2003-01-22 01:26:44 +0000 | [diff] [blame] | 1732 | rc = sqliteOsWrite(&pPager->cpfd, &((char*)pData)[-4], SQLITE_PAGE_SIZE+4); |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1733 | if( rc!=SQLITE_OK ){ |
| 1734 | sqlitepager_rollback(pPager); |
| 1735 | pPager->errMask |= PAGER_ERR_FULL; |
| 1736 | return rc; |
| 1737 | } |
drh | 9bd47a9 | 2003-01-07 14:46:08 +0000 | [diff] [blame] | 1738 | pPager->ckptNRec++; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1739 | assert( pPager->aInCkpt!=0 ); |
| 1740 | pPager->aInCkpt[pPg->pgno/8] |= 1<<(pPg->pgno&7); |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 1741 | page_add_to_ckpt_list(pPg); |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1742 | } |
| 1743 | |
| 1744 | /* Update the database size and return. |
| 1745 | */ |
drh | 1ab4300 | 2002-01-14 09:28:19 +0000 | [diff] [blame] | 1746 | if( pPager->dbSize<(int)pPg->pgno ){ |
drh | 306dc21 | 2001-05-21 13:45:10 +0000 | [diff] [blame] | 1747 | pPager->dbSize = pPg->pgno; |
| 1748 | } |
drh | 69688d5 | 2001-04-14 16:38:23 +0000 | [diff] [blame] | 1749 | return rc; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1750 | } |
| 1751 | |
| 1752 | /* |
drh | aacc543 | 2002-01-06 17:07:40 +0000 | [diff] [blame] | 1753 | ** Return TRUE if the page given in the argument was previously passed |
drh | 6019e16 | 2001-07-02 17:51:45 +0000 | [diff] [blame] | 1754 | ** to sqlitepager_write(). In other words, return TRUE if it is ok |
| 1755 | ** to change the content of the page. |
| 1756 | */ |
| 1757 | int sqlitepager_iswriteable(void *pData){ |
| 1758 | PgHdr *pPg = DATA_TO_PGHDR(pData); |
| 1759 | return pPg->dirty; |
| 1760 | } |
| 1761 | |
| 1762 | /* |
drh | 001bbcb | 2003-03-19 03:14:00 +0000 | [diff] [blame] | 1763 | ** Replace the content of a single page with the information in the third |
| 1764 | ** argument. |
| 1765 | */ |
| 1766 | int sqlitepager_overwrite(Pager *pPager, Pgno pgno, void *pData){ |
| 1767 | void *pPage; |
| 1768 | int rc; |
| 1769 | |
| 1770 | rc = sqlitepager_get(pPager, pgno, &pPage); |
| 1771 | if( rc==SQLITE_OK ){ |
| 1772 | rc = sqlitepager_write(pPage); |
| 1773 | if( rc==SQLITE_OK ){ |
| 1774 | memcpy(pPage, pData, SQLITE_PAGE_SIZE); |
| 1775 | } |
| 1776 | sqlitepager_unref(pPage); |
| 1777 | } |
| 1778 | return rc; |
| 1779 | } |
| 1780 | |
| 1781 | /* |
drh | 30e5875 | 2002-03-02 20:41:57 +0000 | [diff] [blame] | 1782 | ** A call to this routine tells the pager that it is not necessary to |
| 1783 | ** write the information on page "pgno" back to the disk, even though |
| 1784 | ** that page might be marked as dirty. |
| 1785 | ** |
| 1786 | ** The overlying software layer calls this routine when all of the data |
| 1787 | ** on the given page is unused. The pager marks the page as clean so |
| 1788 | ** that it does not get written to disk. |
| 1789 | ** |
| 1790 | ** Tests show that this optimization, together with the |
| 1791 | ** sqlitepager_dont_rollback() below, more than double the speed |
| 1792 | ** of large INSERT operations and quadruple the speed of large DELETEs. |
drh | 8e298f9 | 2002-07-06 16:28:47 +0000 | [diff] [blame] | 1793 | ** |
| 1794 | ** When this routine is called, set the alwaysRollback flag to true. |
| 1795 | ** Subsequent calls to sqlitepager_dont_rollback() for the same page |
| 1796 | ** will thereafter be ignored. This is necessary to avoid a problem |
| 1797 | ** where a page with data is added to the freelist during one part of |
| 1798 | ** a transaction then removed from the freelist during a later part |
| 1799 | ** of the same transaction and reused for some other purpose. When it |
| 1800 | ** is first added to the freelist, this routine is called. When reused, |
| 1801 | ** the dont_rollback() routine is called. But because the page contains |
| 1802 | ** critical data, we still need to be sure it gets rolled back in spite |
| 1803 | ** of the dont_rollback() call. |
drh | 30e5875 | 2002-03-02 20:41:57 +0000 | [diff] [blame] | 1804 | */ |
| 1805 | void sqlitepager_dont_write(Pager *pPager, Pgno pgno){ |
| 1806 | PgHdr *pPg; |
drh | 8e298f9 | 2002-07-06 16:28:47 +0000 | [diff] [blame] | 1807 | |
drh | 30e5875 | 2002-03-02 20:41:57 +0000 | [diff] [blame] | 1808 | pPg = pager_lookup(pPager, pgno); |
drh | 8e298f9 | 2002-07-06 16:28:47 +0000 | [diff] [blame] | 1809 | pPg->alwaysRollback = 1; |
drh | 30e5875 | 2002-03-02 20:41:57 +0000 | [diff] [blame] | 1810 | if( pPg && pPg->dirty ){ |
drh | 8124a30 | 2002-06-25 14:43:57 +0000 | [diff] [blame] | 1811 | if( pPager->dbSize==(int)pPg->pgno && pPager->origDbSize<pPager->dbSize ){ |
| 1812 | /* If this pages is the last page in the file and the file has grown |
| 1813 | ** during the current transaction, then do NOT mark the page as clean. |
| 1814 | ** When the database file grows, we must make sure that the last page |
| 1815 | ** gets written at least once so that the disk file will be the correct |
| 1816 | ** size. If you do not write this page and the size of the file |
| 1817 | ** on the disk ends up being too small, that can lead to database |
| 1818 | ** corruption during the next transaction. |
| 1819 | */ |
| 1820 | }else{ |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1821 | TRACE2("DONT_WRITE %d\n", pgno); |
drh | 8124a30 | 2002-06-25 14:43:57 +0000 | [diff] [blame] | 1822 | pPg->dirty = 0; |
| 1823 | } |
drh | 30e5875 | 2002-03-02 20:41:57 +0000 | [diff] [blame] | 1824 | } |
| 1825 | } |
| 1826 | |
| 1827 | /* |
| 1828 | ** A call to this routine tells the pager that if a rollback occurs, |
| 1829 | ** it is not necessary to restore the data on the given page. This |
| 1830 | ** means that the pager does not have to record the given page in the |
| 1831 | ** rollback journal. |
| 1832 | */ |
| 1833 | void sqlitepager_dont_rollback(void *pData){ |
| 1834 | PgHdr *pPg = DATA_TO_PGHDR(pData); |
| 1835 | Pager *pPager = pPg->pPager; |
| 1836 | |
| 1837 | if( pPager->state!=SQLITE_WRITELOCK || pPager->journalOpen==0 ) return; |
drh | 193a6b4 | 2002-07-07 16:52:46 +0000 | [diff] [blame] | 1838 | if( pPg->alwaysRollback || pPager->alwaysRollback ) return; |
drh | 30e5875 | 2002-03-02 20:41:57 +0000 | [diff] [blame] | 1839 | if( !pPg->inJournal && (int)pPg->pgno <= pPager->origDbSize ){ |
| 1840 | assert( pPager->aInJournal!=0 ); |
| 1841 | pPager->aInJournal[pPg->pgno/8] |= 1<<(pPg->pgno&7); |
| 1842 | pPg->inJournal = 1; |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 1843 | if( pPager->ckptInUse ){ |
drh | 30e5875 | 2002-03-02 20:41:57 +0000 | [diff] [blame] | 1844 | pPager->aInCkpt[pPg->pgno/8] |= 1<<(pPg->pgno&7); |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 1845 | page_add_to_ckpt_list(pPg); |
drh | 30e5875 | 2002-03-02 20:41:57 +0000 | [diff] [blame] | 1846 | } |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1847 | TRACE2("DONT_ROLLBACK %d\n", pPg->pgno); |
drh | 30e5875 | 2002-03-02 20:41:57 +0000 | [diff] [blame] | 1848 | } |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 1849 | if( pPager->ckptInUse && !pPg->inCkpt && (int)pPg->pgno<=pPager->ckptSize ){ |
drh | 30e5875 | 2002-03-02 20:41:57 +0000 | [diff] [blame] | 1850 | assert( pPg->inJournal || (int)pPg->pgno>pPager->origDbSize ); |
| 1851 | assert( pPager->aInCkpt!=0 ); |
| 1852 | pPager->aInCkpt[pPg->pgno/8] |= 1<<(pPg->pgno&7); |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 1853 | page_add_to_ckpt_list(pPg); |
drh | 30e5875 | 2002-03-02 20:41:57 +0000 | [diff] [blame] | 1854 | } |
| 1855 | } |
| 1856 | |
| 1857 | /* |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1858 | ** Commit all changes to the database and release the write lock. |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1859 | ** |
| 1860 | ** If the commit fails for any reason, a rollback attempt is made |
| 1861 | ** and an error code is returned. If the commit worked, SQLITE_OK |
| 1862 | ** is returned. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1863 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1864 | int sqlitepager_commit(Pager *pPager){ |
drh | a1b351a | 2001-09-14 16:42:12 +0000 | [diff] [blame] | 1865 | int rc; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1866 | PgHdr *pPg; |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1867 | |
| 1868 | if( pPager->errMask==PAGER_ERR_FULL ){ |
| 1869 | rc = sqlitepager_rollback(pPager); |
drh | 4e371ee | 2002-09-05 16:08:27 +0000 | [diff] [blame] | 1870 | if( rc==SQLITE_OK ){ |
| 1871 | rc = SQLITE_FULL; |
| 1872 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1873 | return rc; |
| 1874 | } |
| 1875 | if( pPager->errMask!=0 ){ |
| 1876 | rc = pager_errcode(pPager); |
| 1877 | return rc; |
| 1878 | } |
| 1879 | if( pPager->state!=SQLITE_WRITELOCK ){ |
| 1880 | return SQLITE_ERROR; |
| 1881 | } |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1882 | TRACE1("COMMIT\n"); |
drh | a168045 | 2002-04-18 01:56:57 +0000 | [diff] [blame] | 1883 | if( pPager->dirtyFile==0 ){ |
| 1884 | /* Exit early (without doing the time-consuming sqliteOsSync() calls) |
| 1885 | ** if there have been no changes to the database file. */ |
drh | 341eae8 | 2003-01-21 02:39:36 +0000 | [diff] [blame] | 1886 | assert( pPager->needSync==0 ); |
drh | a168045 | 2002-04-18 01:56:57 +0000 | [diff] [blame] | 1887 | rc = pager_unwritelock(pPager); |
| 1888 | pPager->dbSize = -1; |
| 1889 | return rc; |
| 1890 | } |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1891 | assert( pPager->journalOpen ); |
drh | a7fcb05 | 2001-12-14 15:09:55 +0000 | [diff] [blame] | 1892 | if( pPager->needSync && sqliteOsSync(&pPager->jfd)!=SQLITE_OK ){ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1893 | goto commit_abort; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1894 | } |
drh | 2554f8b | 2003-01-22 01:26:44 +0000 | [diff] [blame] | 1895 | pPg = pager_get_all_dirty_pages(pPager); |
| 1896 | if( pPg ){ |
| 1897 | rc = pager_write_pagelist(pPg); |
| 1898 | if( rc || (!pPager->noSync && sqliteOsSync(&pPager->fd)!=SQLITE_OK) ){ |
| 1899 | goto commit_abort; |
| 1900 | } |
drh | 603240c | 2002-03-05 01:11:12 +0000 | [diff] [blame] | 1901 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1902 | rc = pager_unwritelock(pPager); |
| 1903 | pPager->dbSize = -1; |
| 1904 | return rc; |
| 1905 | |
| 1906 | /* Jump here if anything goes wrong during the commit process. |
| 1907 | */ |
| 1908 | commit_abort: |
| 1909 | rc = sqlitepager_rollback(pPager); |
| 1910 | if( rc==SQLITE_OK ){ |
| 1911 | rc = SQLITE_FULL; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1912 | } |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1913 | return rc; |
| 1914 | } |
| 1915 | |
| 1916 | /* |
| 1917 | ** Rollback all changes. The database falls back to read-only mode. |
| 1918 | ** All in-memory cache pages revert to their original data contents. |
| 1919 | ** The journal is deleted. |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1920 | ** |
| 1921 | ** This routine cannot fail unless some other process is not following |
| 1922 | ** the correct locking protocol (SQLITE_PROTOCOL) or unless some other |
| 1923 | ** process is writing trash into the journal file (SQLITE_CORRUPT) or |
| 1924 | ** unless a prior malloc() failed (SQLITE_NOMEM). Appropriate error |
| 1925 | ** codes are returned for all these occasions. Otherwise, |
| 1926 | ** SQLITE_OK is returned. |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1927 | */ |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1928 | int sqlitepager_rollback(Pager *pPager){ |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1929 | int rc; |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1930 | TRACE1("ROLLBACK\n"); |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1931 | if( !pPager->dirtyFile || !pPager->journalOpen ){ |
| 1932 | rc = pager_unwritelock(pPager); |
| 1933 | pPager->dbSize = -1; |
| 1934 | return rc; |
| 1935 | } |
drh | db48ee0 | 2003-01-16 13:42:43 +0000 | [diff] [blame] | 1936 | |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1937 | if( pPager->errMask!=0 && pPager->errMask!=PAGER_ERR_FULL ){ |
drh | 4b845d7 | 2002-03-05 12:41:19 +0000 | [diff] [blame] | 1938 | if( pPager->state>=SQLITE_WRITELOCK ){ |
drh | 99ee360 | 2003-02-16 19:13:36 +0000 | [diff] [blame] | 1939 | pager_playback(pPager, 1); |
drh | 4b845d7 | 2002-03-05 12:41:19 +0000 | [diff] [blame] | 1940 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1941 | return pager_errcode(pPager); |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1942 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1943 | if( pPager->state!=SQLITE_WRITELOCK ){ |
| 1944 | return SQLITE_OK; |
| 1945 | } |
drh | 99ee360 | 2003-02-16 19:13:36 +0000 | [diff] [blame] | 1946 | rc = pager_playback(pPager, 1); |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1947 | if( rc!=SQLITE_OK ){ |
| 1948 | rc = SQLITE_CORRUPT; |
| 1949 | pPager->errMask |= PAGER_ERR_CORRUPT; |
| 1950 | } |
| 1951 | pPager->dbSize = -1; |
drh | ed7c855 | 2001-04-11 14:29:21 +0000 | [diff] [blame] | 1952 | return rc; |
drh | 98808ba | 2001-10-18 12:34:46 +0000 | [diff] [blame] | 1953 | } |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1954 | |
| 1955 | /* |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 1956 | ** Return TRUE if the database file is opened read-only. Return FALSE |
| 1957 | ** if the database is (in theory) writable. |
| 1958 | */ |
| 1959 | int sqlitepager_isreadonly(Pager *pPager){ |
drh | be0072d | 2001-09-13 14:46:09 +0000 | [diff] [blame] | 1960 | return pPager->readOnly; |
drh | 5e00f6c | 2001-09-13 13:46:56 +0000 | [diff] [blame] | 1961 | } |
| 1962 | |
| 1963 | /* |
drh | d9b0257 | 2001-04-15 00:37:09 +0000 | [diff] [blame] | 1964 | ** This routine is used for testing and analysis only. |
| 1965 | */ |
| 1966 | int *sqlitepager_stats(Pager *pPager){ |
| 1967 | static int a[9]; |
| 1968 | a[0] = pPager->nRef; |
| 1969 | a[1] = pPager->nPage; |
| 1970 | a[2] = pPager->mxPage; |
| 1971 | a[3] = pPager->dbSize; |
| 1972 | a[4] = pPager->state; |
| 1973 | a[5] = pPager->errMask; |
| 1974 | a[6] = pPager->nHit; |
| 1975 | a[7] = pPager->nMiss; |
| 1976 | a[8] = pPager->nOvfl; |
| 1977 | return a; |
| 1978 | } |
drh | dd79342 | 2001-06-28 01:54:48 +0000 | [diff] [blame] | 1979 | |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1980 | /* |
| 1981 | ** Set the checkpoint. |
| 1982 | ** |
| 1983 | ** This routine should be called with the transaction journal already |
| 1984 | ** open. A new checkpoint journal is created that can be used to rollback |
drh | aaab572 | 2002-02-19 13:39:21 +0000 | [diff] [blame] | 1985 | ** changes of a single SQL command within a larger transaction. |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1986 | */ |
| 1987 | int sqlitepager_ckpt_begin(Pager *pPager){ |
| 1988 | int rc; |
| 1989 | char zTemp[SQLITE_TEMPNAME_SIZE]; |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 1990 | if( !pPager->journalOpen ){ |
| 1991 | pPager->ckptAutoopen = 1; |
| 1992 | return SQLITE_OK; |
| 1993 | } |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1994 | assert( pPager->journalOpen ); |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 1995 | assert( !pPager->ckptInUse ); |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 1996 | pPager->aInCkpt = sqliteMalloc( pPager->dbSize/8 + 1 ); |
| 1997 | if( pPager->aInCkpt==0 ){ |
| 1998 | sqliteOsReadLock(&pPager->fd); |
| 1999 | return SQLITE_NOMEM; |
| 2000 | } |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 2001 | #ifndef NDEBUG |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 2002 | rc = sqliteOsFileSize(&pPager->jfd, &pPager->ckptJSize); |
| 2003 | if( rc ) goto ckpt_begin_failed; |
drh | 968af52 | 2003-02-11 14:55:40 +0000 | [diff] [blame] | 2004 | assert( pPager->ckptJSize == |
| 2005 | pPager->nRec*JOURNAL_PG_SZ(journal_format)+JOURNAL_HDR_SZ(journal_format) ); |
| 2006 | #endif |
| 2007 | pPager->ckptJSize = pPager->nRec*JOURNAL_PG_SZ(journal_format) |
| 2008 | + JOURNAL_HDR_SZ(journal_format); |
drh | 663fc63 | 2002-02-02 18:49:19 +0000 | [diff] [blame] | 2009 | pPager->ckptSize = pPager->dbSize; |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 2010 | if( !pPager->ckptOpen ){ |
| 2011 | rc = sqlitepager_opentemp(zTemp, &pPager->cpfd); |
| 2012 | if( rc ) goto ckpt_begin_failed; |
| 2013 | pPager->ckptOpen = 1; |
drh | 9bd47a9 | 2003-01-07 14:46:08 +0000 | [diff] [blame] | 2014 | pPager->ckptNRec = 0; |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 2015 | } |
| 2016 | pPager->ckptInUse = 1; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 2017 | return SQLITE_OK; |
| 2018 | |
| 2019 | ckpt_begin_failed: |
| 2020 | if( pPager->aInCkpt ){ |
| 2021 | sqliteFree(pPager->aInCkpt); |
| 2022 | pPager->aInCkpt = 0; |
| 2023 | } |
| 2024 | return rc; |
| 2025 | } |
| 2026 | |
| 2027 | /* |
| 2028 | ** Commit a checkpoint. |
| 2029 | */ |
| 2030 | int sqlitepager_ckpt_commit(Pager *pPager){ |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 2031 | if( pPager->ckptInUse ){ |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 2032 | PgHdr *pPg, *pNext; |
drh | 96ddd6d | 2002-09-05 19:10:33 +0000 | [diff] [blame] | 2033 | sqliteOsSeek(&pPager->cpfd, 0); |
drh | 9bd47a9 | 2003-01-07 14:46:08 +0000 | [diff] [blame] | 2034 | /* sqliteOsTruncate(&pPager->cpfd, 0); */ |
| 2035 | pPager->ckptNRec = 0; |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 2036 | pPager->ckptInUse = 0; |
drh | 663fc63 | 2002-02-02 18:49:19 +0000 | [diff] [blame] | 2037 | sqliteFree( pPager->aInCkpt ); |
| 2038 | pPager->aInCkpt = 0; |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 2039 | for(pPg=pPager->pCkpt; pPg; pPg=pNext){ |
| 2040 | pNext = pPg->pNextCkpt; |
| 2041 | assert( pPg->inCkpt ); |
drh | 663fc63 | 2002-02-02 18:49:19 +0000 | [diff] [blame] | 2042 | pPg->inCkpt = 0; |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 2043 | pPg->pPrevCkpt = pPg->pNextCkpt = 0; |
drh | 663fc63 | 2002-02-02 18:49:19 +0000 | [diff] [blame] | 2044 | } |
drh | 03eb96a | 2002-11-10 23:32:56 +0000 | [diff] [blame] | 2045 | pPager->pCkpt = 0; |
drh | 663fc63 | 2002-02-02 18:49:19 +0000 | [diff] [blame] | 2046 | } |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 2047 | pPager->ckptAutoopen = 0; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 2048 | return SQLITE_OK; |
| 2049 | } |
| 2050 | |
| 2051 | /* |
| 2052 | ** Rollback a checkpoint. |
| 2053 | */ |
| 2054 | int sqlitepager_ckpt_rollback(Pager *pPager){ |
| 2055 | int rc; |
drh | 0f89253 | 2002-05-30 12:27:03 +0000 | [diff] [blame] | 2056 | if( pPager->ckptInUse ){ |
drh | 663fc63 | 2002-02-02 18:49:19 +0000 | [diff] [blame] | 2057 | rc = pager_ckpt_playback(pPager); |
| 2058 | sqlitepager_ckpt_commit(pPager); |
| 2059 | }else{ |
| 2060 | rc = SQLITE_OK; |
| 2061 | } |
drh | da47d77 | 2002-12-02 04:25:19 +0000 | [diff] [blame] | 2062 | pPager->ckptAutoopen = 0; |
drh | fa86c41 | 2002-02-02 15:01:15 +0000 | [diff] [blame] | 2063 | return rc; |
| 2064 | } |
| 2065 | |
drh | 73509ee | 2003-04-06 20:44:45 +0000 | [diff] [blame] | 2066 | /* |
| 2067 | ** Return the full pathname of the database file. |
| 2068 | */ |
| 2069 | const char *sqlitepager_filename(Pager *pPager){ |
| 2070 | return pPager->zFilename; |
| 2071 | } |
| 2072 | |
drh | 74587e5 | 2002-08-13 00:01:16 +0000 | [diff] [blame] | 2073 | #ifdef SQLITE_TEST |
drh | dd79342 | 2001-06-28 01:54:48 +0000 | [diff] [blame] | 2074 | /* |
| 2075 | ** Print a listing of all referenced pages and their ref count. |
| 2076 | */ |
| 2077 | void sqlitepager_refdump(Pager *pPager){ |
| 2078 | PgHdr *pPg; |
| 2079 | for(pPg=pPager->pAll; pPg; pPg=pPg->pNextAll){ |
| 2080 | if( pPg->nRef<=0 ) continue; |
| 2081 | printf("PAGE %3d addr=0x%08x nRef=%d\n", |
| 2082 | pPg->pgno, (int)PGHDR_TO_DATA(pPg), pPg->nRef); |
| 2083 | } |
| 2084 | } |
| 2085 | #endif |