os/persistentdata/persistentstorage/sql/SQLite/os.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
** 2001 September 16
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 header file (together with is companion C source-code file
sl@0
    14
** "os.c") attempt to abstract the underlying operating system so that
sl@0
    15
** the SQLite library will work on both POSIX and windows systems.
sl@0
    16
**
sl@0
    17
** This header file is #include-ed by sqliteInt.h and thus ends up
sl@0
    18
** being included by every source file.
sl@0
    19
**
sl@0
    20
** $Id: os.h,v 1.105 2008/06/26 10:41:19 danielk1977 Exp $
sl@0
    21
*/
sl@0
    22
#ifndef _SQLITE_OS_H_
sl@0
    23
#define _SQLITE_OS_H_
sl@0
    24
sl@0
    25
/*
sl@0
    26
** Figure out if we are dealing with Unix, Windows, or some other
sl@0
    27
** operating system.  After the following block of preprocess macros,
sl@0
    28
** all of SQLITE_OS_UNIX, SQLITE_OS_WIN, SQLITE_OS_OS2, and SQLITE_OS_OTHER 
sl@0
    29
** will defined to either 1 or 0.  One of the four will be 1.  The other 
sl@0
    30
** three will be 0.
sl@0
    31
*/
sl@0
    32
#if defined(SQLITE_OS_OTHER)
sl@0
    33
# if SQLITE_OS_OTHER==1
sl@0
    34
#   undef SQLITE_OS_UNIX
sl@0
    35
#   define SQLITE_OS_UNIX 0
sl@0
    36
#   undef SQLITE_OS_WIN
sl@0
    37
#   define SQLITE_OS_WIN 0
sl@0
    38
#   undef SQLITE_OS_OS2
sl@0
    39
#   define SQLITE_OS_OS2 0
sl@0
    40
# else
sl@0
    41
#   undef SQLITE_OS_OTHER
sl@0
    42
# endif
sl@0
    43
#endif
sl@0
    44
#if !defined(SQLITE_OS_UNIX) && !defined(SQLITE_OS_OTHER)
sl@0
    45
# define SQLITE_OS_OTHER 0
sl@0
    46
# ifndef SQLITE_OS_WIN
sl@0
    47
#   if defined(_WIN32) || defined(WIN32) || defined(__CYGWIN__) || defined(__MINGW32__) || defined(__BORLANDC__)
sl@0
    48
#     define SQLITE_OS_WIN 1
sl@0
    49
#     define SQLITE_OS_UNIX 0
sl@0
    50
#     define SQLITE_OS_OS2 0
sl@0
    51
#   elif defined(__EMX__) || defined(_OS2) || defined(OS2) || defined(_OS2_) || defined(__OS2__)
sl@0
    52
#     define SQLITE_OS_WIN 0
sl@0
    53
#     define SQLITE_OS_UNIX 0
sl@0
    54
#     define SQLITE_OS_OS2 1
sl@0
    55
#   else
sl@0
    56
#     define SQLITE_OS_WIN 0
sl@0
    57
#     define SQLITE_OS_UNIX 1
sl@0
    58
#     define SQLITE_OS_OS2 0
sl@0
    59
#  endif
sl@0
    60
# else
sl@0
    61
#  define SQLITE_OS_UNIX 0
sl@0
    62
#  define SQLITE_OS_OS2 0
sl@0
    63
# endif
sl@0
    64
#else
sl@0
    65
# ifndef SQLITE_OS_WIN
sl@0
    66
#  define SQLITE_OS_WIN 0
sl@0
    67
# endif
sl@0
    68
#endif
sl@0
    69
sl@0
    70
/*
sl@0
    71
** Determine if we are dealing with WindowsCE - which has a much
sl@0
    72
** reduced API.
sl@0
    73
*/
sl@0
    74
#if defined(_WIN32_WCE)
sl@0
    75
# define SQLITE_OS_WINCE 1
sl@0
    76
#else
sl@0
    77
# define SQLITE_OS_WINCE 0
sl@0
    78
#endif
sl@0
    79
sl@0
    80
sl@0
    81
/*
sl@0
    82
** Define the maximum size of a temporary filename
sl@0
    83
*/
sl@0
    84
#if SQLITE_OS_WIN
sl@0
    85
# include <windows.h>
sl@0
    86
# define SQLITE_TEMPNAME_SIZE (MAX_PATH+50)
sl@0
    87
#elif SQLITE_OS_OS2
sl@0
    88
# if (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ >= 3) && defined(OS2_HIGH_MEMORY)
sl@0
    89
#  include <os2safe.h> /* has to be included before os2.h for linking to work */
sl@0
    90
# endif
sl@0
    91
# define INCL_DOSDATETIME
sl@0
    92
# define INCL_DOSFILEMGR
sl@0
    93
# define INCL_DOSERRORS
sl@0
    94
# define INCL_DOSMISC
sl@0
    95
# define INCL_DOSPROCESS
sl@0
    96
# define INCL_DOSMODULEMGR
sl@0
    97
# define INCL_DOSSEMAPHORES
sl@0
    98
# include <os2.h>
sl@0
    99
# include <uconv.h>
sl@0
   100
# define SQLITE_TEMPNAME_SIZE (CCHMAXPATHCOMP)
sl@0
   101
#else
sl@0
   102
# define SQLITE_TEMPNAME_SIZE 200
sl@0
   103
#endif
sl@0
   104
sl@0
   105
/* If the SET_FULLSYNC macro is not defined above, then make it
sl@0
   106
** a no-op
sl@0
   107
*/
sl@0
   108
#ifndef SET_FULLSYNC
sl@0
   109
# define SET_FULLSYNC(x,y)
sl@0
   110
#endif
sl@0
   111
sl@0
   112
/*
sl@0
   113
** The default size of a disk sector
sl@0
   114
*/
sl@0
   115
#ifndef SQLITE_DEFAULT_SECTOR_SIZE
sl@0
   116
# define SQLITE_DEFAULT_SECTOR_SIZE 512
sl@0
   117
#endif
sl@0
   118
sl@0
   119
/*
sl@0
   120
** Temporary files are named starting with this prefix followed by 16 random
sl@0
   121
** alphanumeric characters, and no file extension. They are stored in the
sl@0
   122
** OS's standard temporary file directory, and are deleted prior to exit.
sl@0
   123
** If sqlite is being embedded in another program, you may wish to change the
sl@0
   124
** prefix to reflect your program's name, so that if your program exits
sl@0
   125
** prematurely, old temporary files can be easily identified. This can be done
sl@0
   126
** using -DSQLITE_TEMP_FILE_PREFIX=myprefix_ on the compiler command line.
sl@0
   127
**
sl@0
   128
** 2006-10-31:  The default prefix used to be "sqlite_".  But then
sl@0
   129
** Mcafee started using SQLite in their anti-virus product and it
sl@0
   130
** started putting files with the "sqlite" name in the c:/temp folder.
sl@0
   131
** This annoyed many windows users.  Those users would then do a 
sl@0
   132
** Google search for "sqlite", find the telephone numbers of the
sl@0
   133
** developers and call to wake them up at night and complain.
sl@0
   134
** For this reason, the default name prefix is changed to be "sqlite" 
sl@0
   135
** spelled backwards.  So the temp files are still identified, but
sl@0
   136
** anybody smart enough to figure out the code is also likely smart
sl@0
   137
** enough to know that calling the developer will not help get rid
sl@0
   138
** of the file.
sl@0
   139
*/
sl@0
   140
#ifndef SQLITE_TEMP_FILE_PREFIX
sl@0
   141
# define SQLITE_TEMP_FILE_PREFIX "etilqs_"
sl@0
   142
#endif
sl@0
   143
sl@0
   144
/*
sl@0
   145
** The following values may be passed as the second argument to
sl@0
   146
** sqlite3OsLock(). The various locks exhibit the following semantics:
sl@0
   147
**
sl@0
   148
** SHARED:    Any number of processes may hold a SHARED lock simultaneously.
sl@0
   149
** RESERVED:  A single process may hold a RESERVED lock on a file at
sl@0
   150
**            any time. Other processes may hold and obtain new SHARED locks.
sl@0
   151
** PENDING:   A single process may hold a PENDING lock on a file at
sl@0
   152
**            any one time. Existing SHARED locks may persist, but no new
sl@0
   153
**            SHARED locks may be obtained by other processes.
sl@0
   154
** EXCLUSIVE: An EXCLUSIVE lock precludes all other locks.
sl@0
   155
**
sl@0
   156
** PENDING_LOCK may not be passed directly to sqlite3OsLock(). Instead, a
sl@0
   157
** process that requests an EXCLUSIVE lock may actually obtain a PENDING
sl@0
   158
** lock. This can be upgraded to an EXCLUSIVE lock by a subsequent call to
sl@0
   159
** sqlite3OsLock().
sl@0
   160
*/
sl@0
   161
#define NO_LOCK         0
sl@0
   162
#define SHARED_LOCK     1
sl@0
   163
#define RESERVED_LOCK   2
sl@0
   164
#define PENDING_LOCK    3
sl@0
   165
#define EXCLUSIVE_LOCK  4
sl@0
   166
sl@0
   167
/*
sl@0
   168
** File Locking Notes:  (Mostly about windows but also some info for Unix)
sl@0
   169
**
sl@0
   170
** We cannot use LockFileEx() or UnlockFileEx() on Win95/98/ME because
sl@0
   171
** those functions are not available.  So we use only LockFile() and
sl@0
   172
** UnlockFile().
sl@0
   173
**
sl@0
   174
** LockFile() prevents not just writing but also reading by other processes.
sl@0
   175
** A SHARED_LOCK is obtained by locking a single randomly-chosen 
sl@0
   176
** byte out of a specific range of bytes. The lock byte is obtained at 
sl@0
   177
** random so two separate readers can probably access the file at the 
sl@0
   178
** same time, unless they are unlucky and choose the same lock byte.
sl@0
   179
** An EXCLUSIVE_LOCK is obtained by locking all bytes in the range.
sl@0
   180
** There can only be one writer.  A RESERVED_LOCK is obtained by locking
sl@0
   181
** a single byte of the file that is designated as the reserved lock byte.
sl@0
   182
** A PENDING_LOCK is obtained by locking a designated byte different from
sl@0
   183
** the RESERVED_LOCK byte.
sl@0
   184
**
sl@0
   185
** On WinNT/2K/XP systems, LockFileEx() and UnlockFileEx() are available,
sl@0
   186
** which means we can use reader/writer locks.  When reader/writer locks
sl@0
   187
** are used, the lock is placed on the same range of bytes that is used
sl@0
   188
** for probabilistic locking in Win95/98/ME.  Hence, the locking scheme
sl@0
   189
** will support two or more Win95 readers or two or more WinNT readers.
sl@0
   190
** But a single Win95 reader will lock out all WinNT readers and a single
sl@0
   191
** WinNT reader will lock out all other Win95 readers.
sl@0
   192
**
sl@0
   193
** The following #defines specify the range of bytes used for locking.
sl@0
   194
** SHARED_SIZE is the number of bytes available in the pool from which
sl@0
   195
** a random byte is selected for a shared lock.  The pool of bytes for
sl@0
   196
** shared locks begins at SHARED_FIRST. 
sl@0
   197
**
sl@0
   198
** These #defines are available in sqlite_aux.h so that adaptors for
sl@0
   199
** connecting SQLite to other operating systems can use the same byte
sl@0
   200
** ranges for locking.  In particular, the same locking strategy and
sl@0
   201
** byte ranges are used for Unix.  This leaves open the possiblity of having
sl@0
   202
** clients on win95, winNT, and unix all talking to the same shared file
sl@0
   203
** and all locking correctly.  To do so would require that samba (or whatever
sl@0
   204
** tool is being used for file sharing) implements locks correctly between
sl@0
   205
** windows and unix.  I'm guessing that isn't likely to happen, but by
sl@0
   206
** using the same locking range we are at least open to the possibility.
sl@0
   207
**
sl@0
   208
** Locking in windows is manditory.  For this reason, we cannot store
sl@0
   209
** actual data in the bytes used for locking.  The pager never allocates
sl@0
   210
** the pages involved in locking therefore.  SHARED_SIZE is selected so
sl@0
   211
** that all locks will fit on a single page even at the minimum page size.
sl@0
   212
** PENDING_BYTE defines the beginning of the locks.  By default PENDING_BYTE
sl@0
   213
** is set high so that we don't have to allocate an unused page except
sl@0
   214
** for very large databases.  But one should test the page skipping logic 
sl@0
   215
** by setting PENDING_BYTE low and running the entire regression suite.
sl@0
   216
**
sl@0
   217
** Changing the value of PENDING_BYTE results in a subtly incompatible
sl@0
   218
** file format.  Depending on how it is changed, you might not notice
sl@0
   219
** the incompatibility right away, even running a full regression test.
sl@0
   220
** The default location of PENDING_BYTE is the first byte past the
sl@0
   221
** 1GB boundary.
sl@0
   222
**
sl@0
   223
*/
sl@0
   224
#ifndef SQLITE_TEST
sl@0
   225
#define PENDING_BYTE      0x40000000  /* First byte past the 1GB boundary */
sl@0
   226
#else
sl@0
   227
extern unsigned int sqlite3_pending_byte;
sl@0
   228
#define PENDING_BYTE sqlite3_pending_byte
sl@0
   229
#endif
sl@0
   230
sl@0
   231
#define RESERVED_BYTE     (PENDING_BYTE+1)
sl@0
   232
#define SHARED_FIRST      (PENDING_BYTE+2)
sl@0
   233
#define SHARED_SIZE       510
sl@0
   234
sl@0
   235
/* 
sl@0
   236
** Functions for accessing sqlite3_file methods 
sl@0
   237
*/
sl@0
   238
int sqlite3OsClose(sqlite3_file*);
sl@0
   239
int sqlite3OsRead(sqlite3_file*, void*, int amt, i64 offset);
sl@0
   240
int sqlite3OsWrite(sqlite3_file*, const void*, int amt, i64 offset);
sl@0
   241
int sqlite3OsTruncate(sqlite3_file*, i64 size);
sl@0
   242
int sqlite3OsSync(sqlite3_file*, int);
sl@0
   243
int sqlite3OsFileSize(sqlite3_file*, i64 *pSize);
sl@0
   244
int sqlite3OsLock(sqlite3_file*, int);
sl@0
   245
int sqlite3OsUnlock(sqlite3_file*, int);
sl@0
   246
int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut);
sl@0
   247
int sqlite3OsFileControl(sqlite3_file*,int,void*);
sl@0
   248
int sqlite3OsSectorSize(sqlite3_file *id);
sl@0
   249
int sqlite3OsDeviceCharacteristics(sqlite3_file *id);
sl@0
   250
sl@0
   251
/* 
sl@0
   252
** Functions for accessing sqlite3_vfs methods 
sl@0
   253
*/
sl@0
   254
int sqlite3OsOpen(sqlite3_vfs *, const char *, sqlite3_file*, int, int *);
sl@0
   255
int sqlite3OsDelete(sqlite3_vfs *, const char *, int);
sl@0
   256
int sqlite3OsAccess(sqlite3_vfs *, const char *, int, int *pResOut);
sl@0
   257
int sqlite3OsFullPathname(sqlite3_vfs *, const char *, int, char *);
sl@0
   258
#ifndef SQLITE_OMIT_LOAD_EXTENSION
sl@0
   259
void *sqlite3OsDlOpen(sqlite3_vfs *, const char *);
sl@0
   260
void sqlite3OsDlError(sqlite3_vfs *, int, char *);
sl@0
   261
void *sqlite3OsDlSym(sqlite3_vfs *, void *, const char *);
sl@0
   262
void sqlite3OsDlClose(sqlite3_vfs *, void *);
sl@0
   263
#endif /* SQLITE_OMIT_LOAD_EXTENSION */
sl@0
   264
int sqlite3OsRandomness(sqlite3_vfs *, int, char *);
sl@0
   265
int sqlite3OsSleep(sqlite3_vfs *, int);
sl@0
   266
int sqlite3OsCurrentTime(sqlite3_vfs *, double*);
sl@0
   267
sl@0
   268
/*
sl@0
   269
** Convenience functions for opening and closing files using 
sl@0
   270
** sqlite3_malloc() to obtain space for the file-handle structure.
sl@0
   271
*/
sl@0
   272
int sqlite3OsOpenMalloc(sqlite3_vfs *, const char *, sqlite3_file **, int,int*);
sl@0
   273
int sqlite3OsCloseFree(sqlite3_file *);
sl@0
   274
sl@0
   275
#endif /* _SQLITE_OS_H_ */