blob: 3e66e215b2a84af474fa7fee9084c7ff6c3c4f6c [file] [log] [blame]
danielk197739281b42008-10-17 19:13:04 +00001/*
drh27c3bd72008-10-28 18:12:36 +00002** 2008 October 7
danielk197739281b42008-10-17 19:13:04 +00003**
4** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
6**
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.
10**
11*************************************************************************
12**
drh27c3bd72008-10-28 18:12:36 +000013** This file contains code use to implement an in-memory rollback journal.
14** The in-memory rollback journal is used to journal transactions for
15** ":memory:" databases and when the journal_mode=MEMORY pragma is used.
danielk197739281b42008-10-17 19:13:04 +000016*/
danielk197739281b42008-10-17 19:13:04 +000017#include "sqliteInt.h"
18
drh27c3bd72008-10-28 18:12:36 +000019/* Forward references to internal structures */
danielk197739281b42008-10-17 19:13:04 +000020typedef struct MemJournal MemJournal;
21typedef struct FilePoint FilePoint;
22typedef struct FileChunk FileChunk;
23
drh27c3bd72008-10-28 18:12:36 +000024/* Space to hold the rollback journal is allocated in increments of
25** this many bytes.
drh2206a2b2009-04-01 23:09:43 +000026**
27** The size chosen is a little less than a power of two. That way,
28** the FileChunk object will have a size that almost exactly fills
29** a power-of-two allocation. This mimimizes wasted space in power-of-two
30** memory allocators.
drh27c3bd72008-10-28 18:12:36 +000031*/
drhde467982009-04-02 17:22:41 +000032#define JOURNAL_CHUNKSIZE ((int)(1024-sizeof(FileChunk*)))
danielk197739281b42008-10-17 19:13:04 +000033
drh27c3bd72008-10-28 18:12:36 +000034/* Macro to find the minimum of two numeric values.
35*/
drh7ab49bf2008-11-12 15:24:27 +000036#ifndef MIN
37# define MIN(x,y) ((x)<(y)?(x):(y))
38#endif
danielk197739281b42008-10-17 19:13:04 +000039
drh27c3bd72008-10-28 18:12:36 +000040/*
41** The rollback journal is composed of a linked list of these structures.
42*/
danielk197739281b42008-10-17 19:13:04 +000043struct FileChunk {
drh27c3bd72008-10-28 18:12:36 +000044 FileChunk *pNext; /* Next chunk in the journal */
45 u8 zChunk[JOURNAL_CHUNKSIZE]; /* Content of this chunk */
danielk197739281b42008-10-17 19:13:04 +000046};
47
drh27c3bd72008-10-28 18:12:36 +000048/*
49** An instance of this object serves as a cursor into the rollback journal.
50** The cursor can be either for reading or writing.
51*/
danielk197739281b42008-10-17 19:13:04 +000052struct FilePoint {
drh27c3bd72008-10-28 18:12:36 +000053 sqlite3_int64 iOffset; /* Offset from the beginning of the file */
54 FileChunk *pChunk; /* Specific chunk into which cursor points */
danielk197739281b42008-10-17 19:13:04 +000055};
56
drh27c3bd72008-10-28 18:12:36 +000057/*
58** This subclass is a subclass of sqlite3_file. Each open memory-journal
59** is an instance of this class.
60*/
danielk197739281b42008-10-17 19:13:04 +000061struct MemJournal {
drh27c3bd72008-10-28 18:12:36 +000062 sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */
danielk197739281b42008-10-17 19:13:04 +000063 FileChunk *pFirst; /* Head of in-memory chunk-list */
64 FilePoint endpoint; /* Pointer to the end of the file */
65 FilePoint readpoint; /* Pointer to the end of the last xRead() */
66};
67
68/*
drh2206a2b2009-04-01 23:09:43 +000069** Read data from the in-memory journal file. This is the implementation
70** of the sqlite3_vfs.xRead method.
danielk197739281b42008-10-17 19:13:04 +000071*/
72static int memjrnlRead(
73 sqlite3_file *pJfd, /* The journal file from which to read */
74 void *zBuf, /* Put the results here */
75 int iAmt, /* Number of bytes to read */
76 sqlite_int64 iOfst /* Begin reading at this offset */
77){
78 MemJournal *p = (MemJournal *)pJfd;
79 u8 *zOut = zBuf;
80 int nRead = iAmt;
81 int iChunkOffset;
82 FileChunk *pChunk;
83
drh2206a2b2009-04-01 23:09:43 +000084 /* SQLite never tries to read past the end of a rollback journal file */
danielk197739281b42008-10-17 19:13:04 +000085 assert( iOfst+iAmt<=p->endpoint.iOffset );
86
87 if( p->readpoint.iOffset!=iOfst || iOfst==0 ){
88 sqlite3_int64 iOff = 0;
89 for(pChunk=p->pFirst;
drh2206a2b2009-04-01 23:09:43 +000090 ALWAYS(pChunk) && (iOff+JOURNAL_CHUNKSIZE)<=iOfst;
danielk197739281b42008-10-17 19:13:04 +000091 pChunk=pChunk->pNext
92 ){
93 iOff += JOURNAL_CHUNKSIZE;
94 }
95 }else{
96 pChunk = p->readpoint.pChunk;
97 }
98
drh1bd10f82008-12-10 21:19:56 +000099 iChunkOffset = (int)(iOfst%JOURNAL_CHUNKSIZE);
danielk197739281b42008-10-17 19:13:04 +0000100 do {
101 int iSpace = JOURNAL_CHUNKSIZE - iChunkOffset;
102 int nCopy = MIN(nRead, (JOURNAL_CHUNKSIZE - iChunkOffset));
103 memcpy(zOut, &pChunk->zChunk[iChunkOffset], nCopy);
104 zOut += nCopy;
105 nRead -= iSpace;
106 iChunkOffset = 0;
drhea678832008-12-10 19:26:22 +0000107 } while( nRead>=0 && (pChunk=pChunk->pNext)!=0 && nRead>0 );
danielk197739281b42008-10-17 19:13:04 +0000108 p->readpoint.iOffset = iOfst+iAmt;
109 p->readpoint.pChunk = pChunk;
110
111 return SQLITE_OK;
112}
113
114/*
115** Write data to the file.
116*/
117static int memjrnlWrite(
118 sqlite3_file *pJfd, /* The journal file into which to write */
119 const void *zBuf, /* Take data to be written from here */
120 int iAmt, /* Number of bytes to write */
121 sqlite_int64 iOfst /* Begin writing at this offset into the file */
122){
123 MemJournal *p = (MemJournal *)pJfd;
124 int nWrite = iAmt;
125 u8 *zWrite = (u8 *)zBuf;
126
127 /* An in-memory journal file should only ever be appended to. Random
128 ** access writes are not required by sqlite.
129 */
danielk1977de630352009-05-04 11:42:29 +0000130 assert( iOfst==p->endpoint.iOffset );
danielk1977f3d3c272008-11-19 16:52:44 +0000131 UNUSED_PARAMETER(iOfst);
danielk197739281b42008-10-17 19:13:04 +0000132
133 while( nWrite>0 ){
134 FileChunk *pChunk = p->endpoint.pChunk;
drh1bd10f82008-12-10 21:19:56 +0000135 int iChunkOffset = (int)(p->endpoint.iOffset%JOURNAL_CHUNKSIZE);
danielk197739281b42008-10-17 19:13:04 +0000136 int iSpace = MIN(nWrite, JOURNAL_CHUNKSIZE - iChunkOffset);
137
138 if( iChunkOffset==0 ){
139 /* New chunk is required to extend the file. */
140 FileChunk *pNew = sqlite3_malloc(sizeof(FileChunk));
141 if( !pNew ){
142 return SQLITE_IOERR_NOMEM;
143 }
144 pNew->pNext = 0;
145 if( pChunk ){
146 assert( p->pFirst );
147 pChunk->pNext = pNew;
148 }else{
149 assert( !p->pFirst );
150 p->pFirst = pNew;
151 }
152 p->endpoint.pChunk = pNew;
153 }
154
155 memcpy(&p->endpoint.pChunk->zChunk[iChunkOffset], zWrite, iSpace);
156 zWrite += iSpace;
157 nWrite -= iSpace;
158 p->endpoint.iOffset += iSpace;
159 }
160
161 return SQLITE_OK;
162}
163
164/*
165** Truncate the file.
166*/
167static int memjrnlTruncate(sqlite3_file *pJfd, sqlite_int64 size){
168 MemJournal *p = (MemJournal *)pJfd;
169 FileChunk *pChunk;
170 assert(size==0);
danielk1977f3d3c272008-11-19 16:52:44 +0000171 UNUSED_PARAMETER(size);
danielk197739281b42008-10-17 19:13:04 +0000172 pChunk = p->pFirst;
173 while( pChunk ){
174 FileChunk *pTmp = pChunk;
175 pChunk = pChunk->pNext;
176 sqlite3_free(pTmp);
177 }
178 sqlite3MemJournalOpen(pJfd);
179 return SQLITE_OK;
180}
181
182/*
183** Close the file.
184*/
185static int memjrnlClose(sqlite3_file *pJfd){
186 memjrnlTruncate(pJfd, 0);
187 return SQLITE_OK;
188}
189
190
191/*
192** Sync the file.
drh2206a2b2009-04-01 23:09:43 +0000193**
194** Syncing an in-memory journal is a no-op. And, in fact, this routine
195** is never called in a working implementation. This implementation
196** exists purely as a contingency, in case some malfunction in some other
197** part of SQLite causes Sync to be called by mistake.
danielk197739281b42008-10-17 19:13:04 +0000198*/
drh09c0f6d2010-04-12 19:44:22 +0000199static int memjrnlSync(sqlite3_file *NotUsed, int NotUsed2){
200 UNUSED_PARAMETER2(NotUsed, NotUsed2);
201 return SQLITE_OK;
202}
danielk197739281b42008-10-17 19:13:04 +0000203
204/*
205** Query the size of the file in bytes.
206*/
207static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){
208 MemJournal *p = (MemJournal *)pJfd;
209 *pSize = (sqlite_int64) p->endpoint.iOffset;
210 return SQLITE_OK;
211}
212
213/*
214** Table of methods for MemJournal sqlite3_file object.
215*/
drhf83dc1e2010-06-03 12:09:52 +0000216static const struct sqlite3_io_methods MemJournalMethods = {
danielk197739281b42008-10-17 19:13:04 +0000217 1, /* iVersion */
218 memjrnlClose, /* xClose */
219 memjrnlRead, /* xRead */
220 memjrnlWrite, /* xWrite */
221 memjrnlTruncate, /* xTruncate */
222 memjrnlSync, /* xSync */
223 memjrnlFileSize, /* xFileSize */
224 0, /* xLock */
225 0, /* xUnlock */
226 0, /* xCheckReservedLock */
227 0, /* xFileControl */
228 0, /* xSectorSize */
drhff828942010-06-26 21:34:06 +0000229 0, /* xDeviceCharacteristics */
drhff828942010-06-26 21:34:06 +0000230 0, /* xShmMap */
drh6e1f4822010-07-13 23:41:40 +0000231 0, /* xShmLock */
drhff828942010-06-26 21:34:06 +0000232 0, /* xShmBarrier */
drh6e1f4822010-07-13 23:41:40 +0000233 0 /* xShmUnlock */
danielk197739281b42008-10-17 19:13:04 +0000234};
235
236/*
237** Open a journal file.
238*/
239void sqlite3MemJournalOpen(sqlite3_file *pJfd){
240 MemJournal *p = (MemJournal *)pJfd;
drhea598cb2009-04-05 12:22:08 +0000241 assert( EIGHT_BYTE_ALIGNMENT(p) );
danielk197739281b42008-10-17 19:13:04 +0000242 memset(p, 0, sqlite3MemJournalSize());
drhf83dc1e2010-06-03 12:09:52 +0000243 p->pMethod = (sqlite3_io_methods*)&MemJournalMethods;
danielk197739281b42008-10-17 19:13:04 +0000244}
245
246/*
247** Return true if the file-handle passed as an argument is
248** an in-memory journal
249*/
250int sqlite3IsMemJournal(sqlite3_file *pJfd){
251 return pJfd->pMethods==&MemJournalMethods;
252}
253
254/*
drh2fcc7bd2010-09-16 23:18:57 +0000255** Return the number of bytes required to store a MemJournal file descriptor.
danielk197739281b42008-10-17 19:13:04 +0000256*/
drh3a5990a2008-12-20 02:14:39 +0000257int sqlite3MemJournalSize(void){
danielk197739281b42008-10-17 19:13:04 +0000258 return sizeof(MemJournal);
259}