sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2008 Jan 22
|
sl@0
|
3 |
**
|
sl@0
|
4 |
** The author disclaims copyright to this source code. In place of
|
sl@0
|
5 |
** a legal notice, here is a blessing:
|
sl@0
|
6 |
**
|
sl@0
|
7 |
** May you do good and not evil.
|
sl@0
|
8 |
** May you find forgiveness for yourself and forgive others.
|
sl@0
|
9 |
** May you share freely, never taking more than you give.
|
sl@0
|
10 |
**
|
sl@0
|
11 |
******************************************************************************
|
sl@0
|
12 |
**
|
sl@0
|
13 |
** This file contains code that modified the OS layer in order to simulate
|
sl@0
|
14 |
** different device types (by overriding the return values of the
|
sl@0
|
15 |
** xDeviceCharacteristics() and xSectorSize() methods).
|
sl@0
|
16 |
**
|
sl@0
|
17 |
** $Id: test_devsym.c,v 1.8 2008/09/12 10:22:40 danielk1977 Exp $
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
#if SQLITE_TEST /* This file is used for testing only */
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "sqlite3.h"
|
sl@0
|
22 |
#include "sqliteInt.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
/*
|
sl@0
|
25 |
** Maximum pathname length supported by the devsym backend.
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
#define DEVSYM_MAX_PATHNAME 512
|
sl@0
|
28 |
|
sl@0
|
29 |
/*
|
sl@0
|
30 |
** Name used to identify this VFS.
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
#define DEVSYM_VFS_NAME "devsym"
|
sl@0
|
33 |
|
sl@0
|
34 |
typedef struct devsym_file devsym_file;
|
sl@0
|
35 |
struct devsym_file {
|
sl@0
|
36 |
sqlite3_file base;
|
sl@0
|
37 |
sqlite3_file *pReal;
|
sl@0
|
38 |
};
|
sl@0
|
39 |
|
sl@0
|
40 |
/*
|
sl@0
|
41 |
** Method declarations for devsym_file.
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
static int devsymClose(sqlite3_file*);
|
sl@0
|
44 |
static int devsymRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
|
sl@0
|
45 |
static int devsymWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst);
|
sl@0
|
46 |
static int devsymTruncate(sqlite3_file*, sqlite3_int64 size);
|
sl@0
|
47 |
static int devsymSync(sqlite3_file*, int flags);
|
sl@0
|
48 |
static int devsymFileSize(sqlite3_file*, sqlite3_int64 *pSize);
|
sl@0
|
49 |
static int devsymLock(sqlite3_file*, int);
|
sl@0
|
50 |
static int devsymUnlock(sqlite3_file*, int);
|
sl@0
|
51 |
static int devsymCheckReservedLock(sqlite3_file*, int *);
|
sl@0
|
52 |
static int devsymFileControl(sqlite3_file*, int op, void *pArg);
|
sl@0
|
53 |
static int devsymSectorSize(sqlite3_file*);
|
sl@0
|
54 |
static int devsymDeviceCharacteristics(sqlite3_file*);
|
sl@0
|
55 |
|
sl@0
|
56 |
/*
|
sl@0
|
57 |
** Method declarations for devsym_vfs.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
static int devsymOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *);
|
sl@0
|
60 |
static int devsymDelete(sqlite3_vfs*, const char *zName, int syncDir);
|
sl@0
|
61 |
static int devsymAccess(sqlite3_vfs*, const char *zName, int flags, int *);
|
sl@0
|
62 |
static int devsymFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
|
sl@0
|
63 |
#ifndef SQLITE_OMIT_LOAD_EXTENSION
|
sl@0
|
64 |
static void *devsymDlOpen(sqlite3_vfs*, const char *zFilename);
|
sl@0
|
65 |
static void devsymDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
|
sl@0
|
66 |
static void *devsymDlSym(sqlite3_vfs*,void*, const char *zSymbol);
|
sl@0
|
67 |
static void devsymDlClose(sqlite3_vfs*, void*);
|
sl@0
|
68 |
#endif /* SQLITE_OMIT_LOAD_EXTENSION */
|
sl@0
|
69 |
static int devsymRandomness(sqlite3_vfs*, int nByte, char *zOut);
|
sl@0
|
70 |
static int devsymSleep(sqlite3_vfs*, int microseconds);
|
sl@0
|
71 |
static int devsymCurrentTime(sqlite3_vfs*, double*);
|
sl@0
|
72 |
|
sl@0
|
73 |
static sqlite3_vfs devsym_vfs = {
|
sl@0
|
74 |
1, /* iVersion */
|
sl@0
|
75 |
sizeof(devsym_file), /* szOsFile */
|
sl@0
|
76 |
DEVSYM_MAX_PATHNAME, /* mxPathname */
|
sl@0
|
77 |
0, /* pNext */
|
sl@0
|
78 |
DEVSYM_VFS_NAME, /* zName */
|
sl@0
|
79 |
0, /* pAppData */
|
sl@0
|
80 |
devsymOpen, /* xOpen */
|
sl@0
|
81 |
devsymDelete, /* xDelete */
|
sl@0
|
82 |
devsymAccess, /* xAccess */
|
sl@0
|
83 |
devsymFullPathname, /* xFullPathname */
|
sl@0
|
84 |
#ifndef SQLITE_OMIT_LOAD_EXTENSION
|
sl@0
|
85 |
devsymDlOpen, /* xDlOpen */
|
sl@0
|
86 |
devsymDlError, /* xDlError */
|
sl@0
|
87 |
devsymDlSym, /* xDlSym */
|
sl@0
|
88 |
devsymDlClose, /* xDlClose */
|
sl@0
|
89 |
#else
|
sl@0
|
90 |
0, /* xDlOpen */
|
sl@0
|
91 |
0, /* xDlError */
|
sl@0
|
92 |
0, /* xDlSym */
|
sl@0
|
93 |
0, /* xDlClose */
|
sl@0
|
94 |
#endif /* SQLITE_OMIT_LOAD_EXTENSION */
|
sl@0
|
95 |
devsymRandomness, /* xRandomness */
|
sl@0
|
96 |
devsymSleep, /* xSleep */
|
sl@0
|
97 |
devsymCurrentTime /* xCurrentTime */
|
sl@0
|
98 |
};
|
sl@0
|
99 |
|
sl@0
|
100 |
static sqlite3_io_methods devsym_io_methods = {
|
sl@0
|
101 |
1, /* iVersion */
|
sl@0
|
102 |
devsymClose, /* xClose */
|
sl@0
|
103 |
devsymRead, /* xRead */
|
sl@0
|
104 |
devsymWrite, /* xWrite */
|
sl@0
|
105 |
devsymTruncate, /* xTruncate */
|
sl@0
|
106 |
devsymSync, /* xSync */
|
sl@0
|
107 |
devsymFileSize, /* xFileSize */
|
sl@0
|
108 |
devsymLock, /* xLock */
|
sl@0
|
109 |
devsymUnlock, /* xUnlock */
|
sl@0
|
110 |
devsymCheckReservedLock, /* xCheckReservedLock */
|
sl@0
|
111 |
devsymFileControl, /* xFileControl */
|
sl@0
|
112 |
devsymSectorSize, /* xSectorSize */
|
sl@0
|
113 |
devsymDeviceCharacteristics /* xDeviceCharacteristics */
|
sl@0
|
114 |
};
|
sl@0
|
115 |
|
sl@0
|
116 |
struct DevsymGlobal {
|
sl@0
|
117 |
sqlite3_vfs *pVfs;
|
sl@0
|
118 |
int iDeviceChar;
|
sl@0
|
119 |
int iSectorSize;
|
sl@0
|
120 |
};
|
sl@0
|
121 |
struct DevsymGlobal g = {0, 0, 512};
|
sl@0
|
122 |
|
sl@0
|
123 |
/*
|
sl@0
|
124 |
** Close an devsym-file.
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
static int devsymClose(sqlite3_file *pFile){
|
sl@0
|
127 |
devsym_file *p = (devsym_file *)pFile;
|
sl@0
|
128 |
return sqlite3OsClose(p->pReal);
|
sl@0
|
129 |
}
|
sl@0
|
130 |
|
sl@0
|
131 |
/*
|
sl@0
|
132 |
** Read data from an devsym-file.
|
sl@0
|
133 |
*/
|
sl@0
|
134 |
static int devsymRead(
|
sl@0
|
135 |
sqlite3_file *pFile,
|
sl@0
|
136 |
void *zBuf,
|
sl@0
|
137 |
int iAmt,
|
sl@0
|
138 |
sqlite_int64 iOfst
|
sl@0
|
139 |
){
|
sl@0
|
140 |
devsym_file *p = (devsym_file *)pFile;
|
sl@0
|
141 |
return sqlite3OsRead(p->pReal, zBuf, iAmt, iOfst);
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
/*
|
sl@0
|
145 |
** Write data to an devsym-file.
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
static int devsymWrite(
|
sl@0
|
148 |
sqlite3_file *pFile,
|
sl@0
|
149 |
const void *zBuf,
|
sl@0
|
150 |
int iAmt,
|
sl@0
|
151 |
sqlite_int64 iOfst
|
sl@0
|
152 |
){
|
sl@0
|
153 |
devsym_file *p = (devsym_file *)pFile;
|
sl@0
|
154 |
return sqlite3OsWrite(p->pReal, zBuf, iAmt, iOfst);
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
/*
|
sl@0
|
158 |
** Truncate an devsym-file.
|
sl@0
|
159 |
*/
|
sl@0
|
160 |
static int devsymTruncate(sqlite3_file *pFile, sqlite_int64 size){
|
sl@0
|
161 |
devsym_file *p = (devsym_file *)pFile;
|
sl@0
|
162 |
return sqlite3OsTruncate(p->pReal, size);
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
/*
|
sl@0
|
166 |
** Sync an devsym-file.
|
sl@0
|
167 |
*/
|
sl@0
|
168 |
static int devsymSync(sqlite3_file *pFile, int flags){
|
sl@0
|
169 |
devsym_file *p = (devsym_file *)pFile;
|
sl@0
|
170 |
return sqlite3OsSync(p->pReal, flags);
|
sl@0
|
171 |
}
|
sl@0
|
172 |
|
sl@0
|
173 |
/*
|
sl@0
|
174 |
** Return the current file-size of an devsym-file.
|
sl@0
|
175 |
*/
|
sl@0
|
176 |
static int devsymFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){
|
sl@0
|
177 |
devsym_file *p = (devsym_file *)pFile;
|
sl@0
|
178 |
return sqlite3OsFileSize(p->pReal, pSize);
|
sl@0
|
179 |
}
|
sl@0
|
180 |
|
sl@0
|
181 |
/*
|
sl@0
|
182 |
** Lock an devsym-file.
|
sl@0
|
183 |
*/
|
sl@0
|
184 |
static int devsymLock(sqlite3_file *pFile, int eLock){
|
sl@0
|
185 |
devsym_file *p = (devsym_file *)pFile;
|
sl@0
|
186 |
return sqlite3OsLock(p->pReal, eLock);
|
sl@0
|
187 |
}
|
sl@0
|
188 |
|
sl@0
|
189 |
/*
|
sl@0
|
190 |
** Unlock an devsym-file.
|
sl@0
|
191 |
*/
|
sl@0
|
192 |
static int devsymUnlock(sqlite3_file *pFile, int eLock){
|
sl@0
|
193 |
devsym_file *p = (devsym_file *)pFile;
|
sl@0
|
194 |
return sqlite3OsUnlock(p->pReal, eLock);
|
sl@0
|
195 |
}
|
sl@0
|
196 |
|
sl@0
|
197 |
/*
|
sl@0
|
198 |
** Check if another file-handle holds a RESERVED lock on an devsym-file.
|
sl@0
|
199 |
*/
|
sl@0
|
200 |
static int devsymCheckReservedLock(sqlite3_file *pFile, int *pResOut){
|
sl@0
|
201 |
devsym_file *p = (devsym_file *)pFile;
|
sl@0
|
202 |
return sqlite3OsCheckReservedLock(p->pReal, pResOut);
|
sl@0
|
203 |
}
|
sl@0
|
204 |
|
sl@0
|
205 |
/*
|
sl@0
|
206 |
** File control method. For custom operations on an devsym-file.
|
sl@0
|
207 |
*/
|
sl@0
|
208 |
static int devsymFileControl(sqlite3_file *pFile, int op, void *pArg){
|
sl@0
|
209 |
devsym_file *p = (devsym_file *)pFile;
|
sl@0
|
210 |
return sqlite3OsFileControl(p->pReal, op, pArg);
|
sl@0
|
211 |
}
|
sl@0
|
212 |
|
sl@0
|
213 |
/*
|
sl@0
|
214 |
** Return the sector-size in bytes for an devsym-file.
|
sl@0
|
215 |
*/
|
sl@0
|
216 |
static int devsymSectorSize(sqlite3_file *pFile){
|
sl@0
|
217 |
return g.iSectorSize;
|
sl@0
|
218 |
}
|
sl@0
|
219 |
|
sl@0
|
220 |
/*
|
sl@0
|
221 |
** Return the device characteristic flags supported by an devsym-file.
|
sl@0
|
222 |
*/
|
sl@0
|
223 |
static int devsymDeviceCharacteristics(sqlite3_file *pFile){
|
sl@0
|
224 |
return g.iDeviceChar;
|
sl@0
|
225 |
}
|
sl@0
|
226 |
|
sl@0
|
227 |
/*
|
sl@0
|
228 |
** Open an devsym file handle.
|
sl@0
|
229 |
*/
|
sl@0
|
230 |
static int devsymOpen(
|
sl@0
|
231 |
sqlite3_vfs *pVfs,
|
sl@0
|
232 |
const char *zName,
|
sl@0
|
233 |
sqlite3_file *pFile,
|
sl@0
|
234 |
int flags,
|
sl@0
|
235 |
int *pOutFlags
|
sl@0
|
236 |
){
|
sl@0
|
237 |
int rc;
|
sl@0
|
238 |
devsym_file *p = (devsym_file *)pFile;
|
sl@0
|
239 |
p->pReal = (sqlite3_file *)&p[1];
|
sl@0
|
240 |
rc = sqlite3OsOpen(g.pVfs, zName, p->pReal, flags, pOutFlags);
|
sl@0
|
241 |
if( p->pReal->pMethods ){
|
sl@0
|
242 |
pFile->pMethods = &devsym_io_methods;
|
sl@0
|
243 |
}
|
sl@0
|
244 |
return rc;
|
sl@0
|
245 |
}
|
sl@0
|
246 |
|
sl@0
|
247 |
/*
|
sl@0
|
248 |
** Delete the file located at zPath. If the dirSync argument is true,
|
sl@0
|
249 |
** ensure the file-system modifications are synced to disk before
|
sl@0
|
250 |
** returning.
|
sl@0
|
251 |
*/
|
sl@0
|
252 |
static int devsymDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
|
sl@0
|
253 |
return sqlite3OsDelete(g.pVfs, zPath, dirSync);
|
sl@0
|
254 |
}
|
sl@0
|
255 |
|
sl@0
|
256 |
/*
|
sl@0
|
257 |
** Test for access permissions. Return true if the requested permission
|
sl@0
|
258 |
** is available, or false otherwise.
|
sl@0
|
259 |
*/
|
sl@0
|
260 |
static int devsymAccess(
|
sl@0
|
261 |
sqlite3_vfs *pVfs,
|
sl@0
|
262 |
const char *zPath,
|
sl@0
|
263 |
int flags,
|
sl@0
|
264 |
int *pResOut
|
sl@0
|
265 |
){
|
sl@0
|
266 |
return sqlite3OsAccess(g.pVfs, zPath, flags, pResOut);
|
sl@0
|
267 |
}
|
sl@0
|
268 |
|
sl@0
|
269 |
/*
|
sl@0
|
270 |
** Populate buffer zOut with the full canonical pathname corresponding
|
sl@0
|
271 |
** to the pathname in zPath. zOut is guaranteed to point to a buffer
|
sl@0
|
272 |
** of at least (DEVSYM_MAX_PATHNAME+1) bytes.
|
sl@0
|
273 |
*/
|
sl@0
|
274 |
static int devsymFullPathname(
|
sl@0
|
275 |
sqlite3_vfs *pVfs,
|
sl@0
|
276 |
const char *zPath,
|
sl@0
|
277 |
int nOut,
|
sl@0
|
278 |
char *zOut
|
sl@0
|
279 |
){
|
sl@0
|
280 |
return sqlite3OsFullPathname(g.pVfs, zPath, nOut, zOut);
|
sl@0
|
281 |
}
|
sl@0
|
282 |
|
sl@0
|
283 |
#ifndef SQLITE_OMIT_LOAD_EXTENSION
|
sl@0
|
284 |
/*
|
sl@0
|
285 |
** Open the dynamic library located at zPath and return a handle.
|
sl@0
|
286 |
*/
|
sl@0
|
287 |
static void *devsymDlOpen(sqlite3_vfs *pVfs, const char *zPath){
|
sl@0
|
288 |
return sqlite3OsDlOpen(g.pVfs, zPath);
|
sl@0
|
289 |
}
|
sl@0
|
290 |
|
sl@0
|
291 |
/*
|
sl@0
|
292 |
** Populate the buffer zErrMsg (size nByte bytes) with a human readable
|
sl@0
|
293 |
** utf-8 string describing the most recent error encountered associated
|
sl@0
|
294 |
** with dynamic libraries.
|
sl@0
|
295 |
*/
|
sl@0
|
296 |
static void devsymDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){
|
sl@0
|
297 |
sqlite3OsDlError(g.pVfs, nByte, zErrMsg);
|
sl@0
|
298 |
}
|
sl@0
|
299 |
|
sl@0
|
300 |
/*
|
sl@0
|
301 |
** Return a pointer to the symbol zSymbol in the dynamic library pHandle.
|
sl@0
|
302 |
*/
|
sl@0
|
303 |
static void *devsymDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol){
|
sl@0
|
304 |
return sqlite3OsDlSym(g.pVfs, pHandle, zSymbol);
|
sl@0
|
305 |
}
|
sl@0
|
306 |
|
sl@0
|
307 |
/*
|
sl@0
|
308 |
** Close the dynamic library handle pHandle.
|
sl@0
|
309 |
*/
|
sl@0
|
310 |
static void devsymDlClose(sqlite3_vfs *pVfs, void *pHandle){
|
sl@0
|
311 |
sqlite3OsDlClose(g.pVfs, pHandle);
|
sl@0
|
312 |
}
|
sl@0
|
313 |
#endif /* SQLITE_OMIT_LOAD_EXTENSION */
|
sl@0
|
314 |
|
sl@0
|
315 |
/*
|
sl@0
|
316 |
** Populate the buffer pointed to by zBufOut with nByte bytes of
|
sl@0
|
317 |
** random data.
|
sl@0
|
318 |
*/
|
sl@0
|
319 |
static int devsymRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){
|
sl@0
|
320 |
return sqlite3OsRandomness(g.pVfs, nByte, zBufOut);
|
sl@0
|
321 |
}
|
sl@0
|
322 |
|
sl@0
|
323 |
/*
|
sl@0
|
324 |
** Sleep for nMicro microseconds. Return the number of microseconds
|
sl@0
|
325 |
** actually slept.
|
sl@0
|
326 |
*/
|
sl@0
|
327 |
static int devsymSleep(sqlite3_vfs *pVfs, int nMicro){
|
sl@0
|
328 |
return sqlite3OsSleep(g.pVfs, nMicro);
|
sl@0
|
329 |
}
|
sl@0
|
330 |
|
sl@0
|
331 |
/*
|
sl@0
|
332 |
** Return the current time as a Julian Day number in *pTimeOut.
|
sl@0
|
333 |
*/
|
sl@0
|
334 |
static int devsymCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){
|
sl@0
|
335 |
return sqlite3OsCurrentTime(g.pVfs, pTimeOut);
|
sl@0
|
336 |
}
|
sl@0
|
337 |
|
sl@0
|
338 |
/*
|
sl@0
|
339 |
** This procedure registers the devsym vfs with SQLite. If the argument is
|
sl@0
|
340 |
** true, the devsym vfs becomes the new default vfs. It is the only publicly
|
sl@0
|
341 |
** available function in this file.
|
sl@0
|
342 |
*/
|
sl@0
|
343 |
void devsym_register(int iDeviceChar, int iSectorSize){
|
sl@0
|
344 |
if( g.pVfs==0 ){
|
sl@0
|
345 |
g.pVfs = sqlite3_vfs_find(0);
|
sl@0
|
346 |
devsym_vfs.szOsFile += g.pVfs->szOsFile;
|
sl@0
|
347 |
sqlite3_vfs_register(&devsym_vfs, 0);
|
sl@0
|
348 |
}
|
sl@0
|
349 |
if( iDeviceChar>=0 ){
|
sl@0
|
350 |
g.iDeviceChar = iDeviceChar;
|
sl@0
|
351 |
}
|
sl@0
|
352 |
if( iSectorSize>=0 ){
|
sl@0
|
353 |
g.iSectorSize = iSectorSize;
|
sl@0
|
354 |
}
|
sl@0
|
355 |
}
|
sl@0
|
356 |
|
sl@0
|
357 |
#endif
|