os/persistentdata/persistentstorage/sqlite3api/SQLite/os_win.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 ** 2004 May 22
     3 **
     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 **
    13 ** This file contains code that is specific to windows.
    14 **
    15 ** $Id: os_win.c,v 1.134 2008/09/30 04:20:08 shane Exp $
    16 */
    17 #include "sqliteInt.h"
    18 #if SQLITE_OS_WIN               /* This file is used for windows only */
    19 
    20 
    21 /*
    22 ** A Note About Memory Allocation:
    23 **
    24 ** This driver uses malloc()/free() directly rather than going through
    25 ** the SQLite-wrappers sqlite3_malloc()/sqlite3_free().  Those wrappers
    26 ** are designed for use on embedded systems where memory is scarce and
    27 ** malloc failures happen frequently.  Win32 does not typically run on
    28 ** embedded systems, and when it does the developers normally have bigger
    29 ** problems to worry about than running out of memory.  So there is not
    30 ** a compelling need to use the wrappers.
    31 **
    32 ** But there is a good reason to not use the wrappers.  If we use the
    33 ** wrappers then we will get simulated malloc() failures within this
    34 ** driver.  And that causes all kinds of problems for our tests.  We
    35 ** could enhance SQLite to deal with simulated malloc failures within
    36 ** the OS driver, but the code to deal with those failure would not
    37 ** be exercised on Linux (which does not need to malloc() in the driver)
    38 ** and so we would have difficulty writing coverage tests for that
    39 ** code.  Better to leave the code out, we think.
    40 **
    41 ** The point of this discussion is as follows:  When creating a new
    42 ** OS layer for an embedded system, if you use this file as an example,
    43 ** avoid the use of malloc()/free().  Those routines work ok on windows
    44 ** desktops but not so well in embedded systems.
    45 */
    46 
    47 #include <winbase.h>
    48 
    49 #ifdef __CYGWIN__
    50 # include <sys/cygwin.h>
    51 #endif
    52 
    53 /*
    54 ** Macros used to determine whether or not to use threads.
    55 */
    56 #if defined(THREADSAFE) && THREADSAFE
    57 # define SQLITE_W32_THREADS 1
    58 #endif
    59 
    60 /*
    61 ** Include code that is common to all os_*.c files
    62 */
    63 #include "os_common.h"
    64 
    65 /*
    66 ** Some microsoft compilers lack this definition.
    67 */
    68 #ifndef INVALID_FILE_ATTRIBUTES
    69 # define INVALID_FILE_ATTRIBUTES ((DWORD)-1) 
    70 #endif
    71 
    72 /*
    73 ** Determine if we are dealing with WindowsCE - which has a much
    74 ** reduced API.
    75 */
    76 #if defined(SQLITE_OS_WINCE)
    77 # define AreFileApisANSI() 1
    78 #endif
    79 
    80 /*
    81 ** WinCE lacks native support for file locking so we have to fake it
    82 ** with some code of our own.
    83 */
    84 #if SQLITE_OS_WINCE
    85 typedef struct winceLock {
    86   int nReaders;       /* Number of reader locks obtained */
    87   BOOL bPending;      /* Indicates a pending lock has been obtained */
    88   BOOL bReserved;     /* Indicates a reserved lock has been obtained */
    89   BOOL bExclusive;    /* Indicates an exclusive lock has been obtained */
    90 } winceLock;
    91 #endif
    92 
    93 /*
    94 ** The winFile structure is a subclass of sqlite3_file* specific to the win32
    95 ** portability layer.
    96 */
    97 typedef struct winFile winFile;
    98 struct winFile {
    99   const sqlite3_io_methods *pMethod;/* Must be first */
   100   HANDLE h;               /* Handle for accessing the file */
   101   unsigned char locktype; /* Type of lock currently held on this file */
   102   short sharedLockByte;   /* Randomly chosen byte used as a shared lock */
   103 #if SQLITE_OS_WINCE
   104   WCHAR *zDeleteOnClose;  /* Name of file to delete when closing */
   105   HANDLE hMutex;          /* Mutex used to control access to shared lock */  
   106   HANDLE hShared;         /* Shared memory segment used for locking */
   107   winceLock local;        /* Locks obtained by this instance of winFile */
   108   winceLock *shared;      /* Global shared lock memory for the file  */
   109 #endif
   110 };
   111 
   112 
   113 /*
   114 ** The following variable is (normally) set once and never changes
   115 ** thereafter.  It records whether the operating system is Win95
   116 ** or WinNT.
   117 **
   118 ** 0:   Operating system unknown.
   119 ** 1:   Operating system is Win95.
   120 ** 2:   Operating system is WinNT.
   121 **
   122 ** In order to facilitate testing on a WinNT system, the test fixture
   123 ** can manually set this value to 1 to emulate Win98 behavior.
   124 */
   125 #ifdef SQLITE_TEST
   126 int sqlite3_os_type = 0;
   127 #else
   128 static int sqlite3_os_type = 0;
   129 #endif
   130 
   131 /*
   132 ** Return true (non-zero) if we are running under WinNT, Win2K, WinXP,
   133 ** or WinCE.  Return false (zero) for Win95, Win98, or WinME.
   134 **
   135 ** Here is an interesting observation:  Win95, Win98, and WinME lack
   136 ** the LockFileEx() API.  But we can still statically link against that
   137 ** API as long as we don't call it win running Win95/98/ME.  A call to
   138 ** this routine is used to determine if the host is Win95/98/ME or
   139 ** WinNT/2K/XP so that we will know whether or not we can safely call
   140 ** the LockFileEx() API.
   141 */
   142 #if SQLITE_OS_WINCE
   143 # define isNT()  (1)
   144 #else
   145   static int isNT(void){
   146     if( sqlite3_os_type==0 ){
   147       OSVERSIONINFO sInfo;
   148       sInfo.dwOSVersionInfoSize = sizeof(sInfo);
   149       GetVersionEx(&sInfo);
   150       sqlite3_os_type = sInfo.dwPlatformId==VER_PLATFORM_WIN32_NT ? 2 : 1;
   151     }
   152     return sqlite3_os_type==2;
   153   }
   154 #endif /* SQLITE_OS_WINCE */
   155 
   156 /*
   157 ** Convert a UTF-8 string to microsoft unicode (UTF-16?). 
   158 **
   159 ** Space to hold the returned string is obtained from malloc.
   160 */
   161 static WCHAR *utf8ToUnicode(const char *zFilename){
   162   int nChar;
   163   WCHAR *zWideFilename;
   164 
   165   nChar = MultiByteToWideChar(CP_UTF8, 0, zFilename, -1, NULL, 0);
   166   zWideFilename = malloc( nChar*sizeof(zWideFilename[0]) );
   167   if( zWideFilename==0 ){
   168     return 0;
   169   }
   170   nChar = MultiByteToWideChar(CP_UTF8, 0, zFilename, -1, zWideFilename, nChar);
   171   if( nChar==0 ){
   172     free(zWideFilename);
   173     zWideFilename = 0;
   174   }
   175   return zWideFilename;
   176 }
   177 
   178 /*
   179 ** Convert microsoft unicode to UTF-8.  Space to hold the returned string is
   180 ** obtained from malloc().
   181 */
   182 static char *unicodeToUtf8(const WCHAR *zWideFilename){
   183   int nByte;
   184   char *zFilename;
   185 
   186   nByte = WideCharToMultiByte(CP_UTF8, 0, zWideFilename, -1, 0, 0, 0, 0);
   187   zFilename = malloc( nByte );
   188   if( zFilename==0 ){
   189     return 0;
   190   }
   191   nByte = WideCharToMultiByte(CP_UTF8, 0, zWideFilename, -1, zFilename, nByte,
   192                               0, 0);
   193   if( nByte == 0 ){
   194     free(zFilename);
   195     zFilename = 0;
   196   }
   197   return zFilename;
   198 }
   199 
   200 /*
   201 ** Convert an ansi string to microsoft unicode, based on the
   202 ** current codepage settings for file apis.
   203 ** 
   204 ** Space to hold the returned string is obtained
   205 ** from malloc.
   206 */
   207 static WCHAR *mbcsToUnicode(const char *zFilename){
   208   int nByte;
   209   WCHAR *zMbcsFilename;
   210   int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP;
   211 
   212   nByte = MultiByteToWideChar(codepage, 0, zFilename, -1, NULL,0)*sizeof(WCHAR);
   213   zMbcsFilename = malloc( nByte*sizeof(zMbcsFilename[0]) );
   214   if( zMbcsFilename==0 ){
   215     return 0;
   216   }
   217   nByte = MultiByteToWideChar(codepage, 0, zFilename, -1, zMbcsFilename, nByte);
   218   if( nByte==0 ){
   219     free(zMbcsFilename);
   220     zMbcsFilename = 0;
   221   }
   222   return zMbcsFilename;
   223 }
   224 
   225 /*
   226 ** Convert microsoft unicode to multibyte character string, based on the
   227 ** user's Ansi codepage.
   228 **
   229 ** Space to hold the returned string is obtained from
   230 ** malloc().
   231 */
   232 static char *unicodeToMbcs(const WCHAR *zWideFilename){
   233   int nByte;
   234   char *zFilename;
   235   int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP;
   236 
   237   nByte = WideCharToMultiByte(codepage, 0, zWideFilename, -1, 0, 0, 0, 0);
   238   zFilename = malloc( nByte );
   239   if( zFilename==0 ){
   240     return 0;
   241   }
   242   nByte = WideCharToMultiByte(codepage, 0, zWideFilename, -1, zFilename, nByte,
   243                               0, 0);
   244   if( nByte == 0 ){
   245     free(zFilename);
   246     zFilename = 0;
   247   }
   248   return zFilename;
   249 }
   250 
   251 /*
   252 ** Convert multibyte character string to UTF-8.  Space to hold the
   253 ** returned string is obtained from malloc().
   254 */
   255 static char *mbcsToUtf8(const char *zFilename){
   256   char *zFilenameUtf8;
   257   WCHAR *zTmpWide;
   258 
   259   zTmpWide = mbcsToUnicode(zFilename);
   260   if( zTmpWide==0 ){
   261     return 0;
   262   }
   263   zFilenameUtf8 = unicodeToUtf8(zTmpWide);
   264   free(zTmpWide);
   265   return zFilenameUtf8;
   266 }
   267 
   268 /*
   269 ** Convert UTF-8 to multibyte character string.  Space to hold the 
   270 ** returned string is obtained from malloc().
   271 */
   272 static char *utf8ToMbcs(const char *zFilename){
   273   char *zFilenameMbcs;
   274   WCHAR *zTmpWide;
   275 
   276   zTmpWide = utf8ToUnicode(zFilename);
   277   if( zTmpWide==0 ){
   278     return 0;
   279   }
   280   zFilenameMbcs = unicodeToMbcs(zTmpWide);
   281   free(zTmpWide);
   282   return zFilenameMbcs;
   283 }
   284 
   285 #if SQLITE_OS_WINCE
   286 /*************************************************************************
   287 ** This section contains code for WinCE only.
   288 */
   289 /*
   290 ** WindowsCE does not have a localtime() function.  So create a
   291 ** substitute.
   292 */
   293 #include <time.h>
   294 struct tm *__cdecl localtime(const time_t *t)
   295 {
   296   static struct tm y;
   297   FILETIME uTm, lTm;
   298   SYSTEMTIME pTm;
   299   sqlite3_int64 t64;
   300   t64 = *t;
   301   t64 = (t64 + 11644473600)*10000000;
   302   uTm.dwLowDateTime = t64 & 0xFFFFFFFF;
   303   uTm.dwHighDateTime= t64 >> 32;
   304   FileTimeToLocalFileTime(&uTm,&lTm);
   305   FileTimeToSystemTime(&lTm,&pTm);
   306   y.tm_year = pTm.wYear - 1900;
   307   y.tm_mon = pTm.wMonth - 1;
   308   y.tm_wday = pTm.wDayOfWeek;
   309   y.tm_mday = pTm.wDay;
   310   y.tm_hour = pTm.wHour;
   311   y.tm_min = pTm.wMinute;
   312   y.tm_sec = pTm.wSecond;
   313   return &y;
   314 }
   315 
   316 /* This will never be called, but defined to make the code compile */
   317 #define GetTempPathA(a,b)
   318 
   319 #define LockFile(a,b,c,d,e)       winceLockFile(&a, b, c, d, e)
   320 #define UnlockFile(a,b,c,d,e)     winceUnlockFile(&a, b, c, d, e)
   321 #define LockFileEx(a,b,c,d,e,f)   winceLockFileEx(&a, b, c, d, e, f)
   322 
   323 #define HANDLE_TO_WINFILE(a) (winFile*)&((char*)a)[-offsetof(winFile,h)]
   324 
   325 /*
   326 ** Acquire a lock on the handle h
   327 */
   328 static void winceMutexAcquire(HANDLE h){
   329    DWORD dwErr;
   330    do {
   331      dwErr = WaitForSingleObject(h, INFINITE);
   332    } while (dwErr != WAIT_OBJECT_0 && dwErr != WAIT_ABANDONED);
   333 }
   334 /*
   335 ** Release a lock acquired by winceMutexAcquire()
   336 */
   337 #define winceMutexRelease(h) ReleaseMutex(h)
   338 
   339 /*
   340 ** Create the mutex and shared memory used for locking in the file
   341 ** descriptor pFile
   342 */
   343 static BOOL winceCreateLock(const char *zFilename, winFile *pFile){
   344   WCHAR *zTok;
   345   WCHAR *zName = utf8ToUnicode(zFilename);
   346   BOOL bInit = TRUE;
   347 
   348   /* Initialize the local lockdata */
   349   ZeroMemory(&pFile->local, sizeof(pFile->local));
   350 
   351   /* Replace the backslashes from the filename and lowercase it
   352   ** to derive a mutex name. */
   353   zTok = CharLowerW(zName);
   354   for (;*zTok;zTok++){
   355     if (*zTok == '\\') *zTok = '_';
   356   }
   357 
   358   /* Create/open the named mutex */
   359   pFile->hMutex = CreateMutexW(NULL, FALSE, zName);
   360   if (!pFile->hMutex){
   361     free(zName);
   362     return FALSE;
   363   }
   364 
   365   /* Acquire the mutex before continuing */
   366   winceMutexAcquire(pFile->hMutex);
   367   
   368   /* Since the names of named mutexes, semaphores, file mappings etc are 
   369   ** case-sensitive, take advantage of that by uppercasing the mutex name
   370   ** and using that as the shared filemapping name.
   371   */
   372   CharUpperW(zName);
   373   pFile->hShared = CreateFileMappingW(INVALID_HANDLE_VALUE, NULL,
   374                                        PAGE_READWRITE, 0, sizeof(winceLock),
   375                                        zName);  
   376 
   377   /* Set a flag that indicates we're the first to create the memory so it 
   378   ** must be zero-initialized */
   379   if (GetLastError() == ERROR_ALREADY_EXISTS){
   380     bInit = FALSE;
   381   }
   382 
   383   free(zName);
   384 
   385   /* If we succeeded in making the shared memory handle, map it. */
   386   if (pFile->hShared){
   387     pFile->shared = (winceLock*)MapViewOfFile(pFile->hShared, 
   388              FILE_MAP_READ|FILE_MAP_WRITE, 0, 0, sizeof(winceLock));
   389     /* If mapping failed, close the shared memory handle and erase it */
   390     if (!pFile->shared){
   391       CloseHandle(pFile->hShared);
   392       pFile->hShared = NULL;
   393     }
   394   }
   395 
   396   /* If shared memory could not be created, then close the mutex and fail */
   397   if (pFile->hShared == NULL){
   398     winceMutexRelease(pFile->hMutex);
   399     CloseHandle(pFile->hMutex);
   400     pFile->hMutex = NULL;
   401     return FALSE;
   402   }
   403   
   404   /* Initialize the shared memory if we're supposed to */
   405   if (bInit) {
   406     ZeroMemory(pFile->shared, sizeof(winceLock));
   407   }
   408 
   409   winceMutexRelease(pFile->hMutex);
   410   return TRUE;
   411 }
   412 
   413 /*
   414 ** Destroy the part of winFile that deals with wince locks
   415 */
   416 static void winceDestroyLock(winFile *pFile){
   417   if (pFile->hMutex){
   418     /* Acquire the mutex */
   419     winceMutexAcquire(pFile->hMutex);
   420 
   421     /* The following blocks should probably assert in debug mode, but they
   422        are to cleanup in case any locks remained open */
   423     if (pFile->local.nReaders){
   424       pFile->shared->nReaders --;
   425     }
   426     if (pFile->local.bReserved){
   427       pFile->shared->bReserved = FALSE;
   428     }
   429     if (pFile->local.bPending){
   430       pFile->shared->bPending = FALSE;
   431     }
   432     if (pFile->local.bExclusive){
   433       pFile->shared->bExclusive = FALSE;
   434     }
   435 
   436     /* De-reference and close our copy of the shared memory handle */
   437     UnmapViewOfFile(pFile->shared);
   438     CloseHandle(pFile->hShared);
   439 
   440     /* Done with the mutex */
   441     winceMutexRelease(pFile->hMutex);    
   442     CloseHandle(pFile->hMutex);
   443     pFile->hMutex = NULL;
   444   }
   445 }
   446 
   447 /* 
   448 ** An implementation of the LockFile() API of windows for wince
   449 */
   450 static BOOL winceLockFile(
   451   HANDLE *phFile,
   452   DWORD dwFileOffsetLow,
   453   DWORD dwFileOffsetHigh,
   454   DWORD nNumberOfBytesToLockLow,
   455   DWORD nNumberOfBytesToLockHigh
   456 ){
   457   winFile *pFile = HANDLE_TO_WINFILE(phFile);
   458   BOOL bReturn = FALSE;
   459 
   460   if (!pFile->hMutex) return TRUE;
   461   winceMutexAcquire(pFile->hMutex);
   462 
   463   /* Wanting an exclusive lock? */
   464   if (dwFileOffsetLow == SHARED_FIRST
   465        && nNumberOfBytesToLockLow == SHARED_SIZE){
   466     if (pFile->shared->nReaders == 0 && pFile->shared->bExclusive == 0){
   467        pFile->shared->bExclusive = TRUE;
   468        pFile->local.bExclusive = TRUE;
   469        bReturn = TRUE;
   470     }
   471   }
   472 
   473   /* Want a read-only lock? */
   474   else if ((dwFileOffsetLow >= SHARED_FIRST &&
   475             dwFileOffsetLow < SHARED_FIRST + SHARED_SIZE) &&
   476             nNumberOfBytesToLockLow == 1){
   477     if (pFile->shared->bExclusive == 0){
   478       pFile->local.nReaders ++;
   479       if (pFile->local.nReaders == 1){
   480         pFile->shared->nReaders ++;
   481       }
   482       bReturn = TRUE;
   483     }
   484   }
   485 
   486   /* Want a pending lock? */
   487   else if (dwFileOffsetLow == PENDING_BYTE && nNumberOfBytesToLockLow == 1){
   488     /* If no pending lock has been acquired, then acquire it */
   489     if (pFile->shared->bPending == 0) {
   490       pFile->shared->bPending = TRUE;
   491       pFile->local.bPending = TRUE;
   492       bReturn = TRUE;
   493     }
   494   }
   495   /* Want a reserved lock? */
   496   else if (dwFileOffsetLow == RESERVED_BYTE && nNumberOfBytesToLockLow == 1){
   497     if (pFile->shared->bReserved == 0) {
   498       pFile->shared->bReserved = TRUE;
   499       pFile->local.bReserved = TRUE;
   500       bReturn = TRUE;
   501     }
   502   }
   503 
   504   winceMutexRelease(pFile->hMutex);
   505   return bReturn;
   506 }
   507 
   508 /*
   509 ** An implementation of the UnlockFile API of windows for wince
   510 */
   511 static BOOL winceUnlockFile(
   512   HANDLE *phFile,
   513   DWORD dwFileOffsetLow,
   514   DWORD dwFileOffsetHigh,
   515   DWORD nNumberOfBytesToUnlockLow,
   516   DWORD nNumberOfBytesToUnlockHigh
   517 ){
   518   winFile *pFile = HANDLE_TO_WINFILE(phFile);
   519   BOOL bReturn = FALSE;
   520 
   521   if (!pFile->hMutex) return TRUE;
   522   winceMutexAcquire(pFile->hMutex);
   523 
   524   /* Releasing a reader lock or an exclusive lock */
   525   if (dwFileOffsetLow >= SHARED_FIRST &&
   526        dwFileOffsetLow < SHARED_FIRST + SHARED_SIZE){
   527     /* Did we have an exclusive lock? */
   528     if (pFile->local.bExclusive){
   529       pFile->local.bExclusive = FALSE;
   530       pFile->shared->bExclusive = FALSE;
   531       bReturn = TRUE;
   532     }
   533 
   534     /* Did we just have a reader lock? */
   535     else if (pFile->local.nReaders){
   536       pFile->local.nReaders --;
   537       if (pFile->local.nReaders == 0)
   538       {
   539         pFile->shared->nReaders --;
   540       }
   541       bReturn = TRUE;
   542     }
   543   }
   544 
   545   /* Releasing a pending lock */
   546   else if (dwFileOffsetLow == PENDING_BYTE && nNumberOfBytesToUnlockLow == 1){
   547     if (pFile->local.bPending){
   548       pFile->local.bPending = FALSE;
   549       pFile->shared->bPending = FALSE;
   550       bReturn = TRUE;
   551     }
   552   }
   553   /* Releasing a reserved lock */
   554   else if (dwFileOffsetLow == RESERVED_BYTE && nNumberOfBytesToUnlockLow == 1){
   555     if (pFile->local.bReserved) {
   556       pFile->local.bReserved = FALSE;
   557       pFile->shared->bReserved = FALSE;
   558       bReturn = TRUE;
   559     }
   560   }
   561 
   562   winceMutexRelease(pFile->hMutex);
   563   return bReturn;
   564 }
   565 
   566 /*
   567 ** An implementation of the LockFileEx() API of windows for wince
   568 */
   569 static BOOL winceLockFileEx(
   570   HANDLE *phFile,
   571   DWORD dwFlags,
   572   DWORD dwReserved,
   573   DWORD nNumberOfBytesToLockLow,
   574   DWORD nNumberOfBytesToLockHigh,
   575   LPOVERLAPPED lpOverlapped
   576 ){
   577   /* If the caller wants a shared read lock, forward this call
   578   ** to winceLockFile */
   579   if (lpOverlapped->Offset == SHARED_FIRST &&
   580       dwFlags == 1 &&
   581       nNumberOfBytesToLockLow == SHARED_SIZE){
   582     return winceLockFile(phFile, SHARED_FIRST, 0, 1, 0);
   583   }
   584   return FALSE;
   585 }
   586 /*
   587 ** End of the special code for wince
   588 *****************************************************************************/
   589 #endif /* SQLITE_OS_WINCE */
   590 
   591 /*****************************************************************************
   592 ** The next group of routines implement the I/O methods specified
   593 ** by the sqlite3_io_methods object.
   594 ******************************************************************************/
   595 
   596 /*
   597 ** Close a file.
   598 **
   599 ** It is reported that an attempt to close a handle might sometimes
   600 ** fail.  This is a very unreasonable result, but windows is notorious
   601 ** for being unreasonable so I do not doubt that it might happen.  If
   602 ** the close fails, we pause for 100 milliseconds and try again.  As
   603 ** many as MX_CLOSE_ATTEMPT attempts to close the handle are made before
   604 ** giving up and returning an error.
   605 */
   606 #define MX_CLOSE_ATTEMPT 3
   607 static int winClose(sqlite3_file *id){
   608   int rc, cnt = 0;
   609   winFile *pFile = (winFile*)id;
   610   OSTRACE2("CLOSE %d\n", pFile->h);
   611   do{
   612     rc = CloseHandle(pFile->h);
   613   }while( rc==0 && ++cnt < MX_CLOSE_ATTEMPT && (Sleep(100), 1) );
   614 #if SQLITE_OS_WINCE
   615 #define WINCE_DELETION_ATTEMPTS 3
   616   winceDestroyLock(pFile);
   617   if( pFile->zDeleteOnClose ){
   618     int cnt = 0;
   619     while(
   620            DeleteFileW(pFile->zDeleteOnClose)==0
   621         && GetFileAttributesW(pFile->zDeleteOnClose)!=0xffffffff 
   622         && cnt++ < WINCE_DELETION_ATTEMPTS
   623     ){
   624        Sleep(100);  /* Wait a little before trying again */
   625     }
   626     free(pFile->zDeleteOnClose);
   627   }
   628 #endif
   629   OpenCounter(-1);
   630   return rc ? SQLITE_OK : SQLITE_IOERR;
   631 }
   632 
   633 /*
   634 ** Some microsoft compilers lack this definition.
   635 */
   636 #ifndef INVALID_SET_FILE_POINTER
   637 # define INVALID_SET_FILE_POINTER ((DWORD)-1)
   638 #endif
   639 
   640 /*
   641 ** Read data from a file into a buffer.  Return SQLITE_OK if all
   642 ** bytes were read successfully and SQLITE_IOERR if anything goes
   643 ** wrong.
   644 */
   645 static int winRead(
   646   sqlite3_file *id,          /* File to read from */
   647   void *pBuf,                /* Write content into this buffer */
   648   int amt,                   /* Number of bytes to read */
   649   sqlite3_int64 offset       /* Begin reading at this offset */
   650 ){
   651   LONG upperBits = (offset>>32) & 0x7fffffff;
   652   LONG lowerBits = offset & 0xffffffff;
   653   DWORD rc;
   654   DWORD got;
   655   winFile *pFile = (winFile*)id;
   656   assert( id!=0 );
   657   SimulateIOError(return SQLITE_IOERR_READ);
   658   OSTRACE3("READ %d lock=%d\n", pFile->h, pFile->locktype);
   659   rc = SetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
   660   if( rc==INVALID_SET_FILE_POINTER && GetLastError()!=NO_ERROR ){
   661     return SQLITE_FULL;
   662   }
   663   if( !ReadFile(pFile->h, pBuf, amt, &got, 0) ){
   664     return SQLITE_IOERR_READ;
   665   }
   666   if( got==(DWORD)amt ){
   667     return SQLITE_OK;
   668   }else{
   669     memset(&((char*)pBuf)[got], 0, amt-got);
   670     return SQLITE_IOERR_SHORT_READ;
   671   }
   672 }
   673 
   674 /*
   675 ** Write data from a buffer into a file.  Return SQLITE_OK on success
   676 ** or some other error code on failure.
   677 */
   678 static int winWrite(
   679   sqlite3_file *id,         /* File to write into */
   680   const void *pBuf,         /* The bytes to be written */
   681   int amt,                  /* Number of bytes to write */
   682   sqlite3_int64 offset      /* Offset into the file to begin writing at */
   683 ){
   684   LONG upperBits = (offset>>32) & 0x7fffffff;
   685   LONG lowerBits = offset & 0xffffffff;
   686   DWORD rc;
   687   DWORD wrote;
   688   winFile *pFile = (winFile*)id;
   689   assert( id!=0 );
   690   SimulateIOError(return SQLITE_IOERR_WRITE);
   691   SimulateDiskfullError(return SQLITE_FULL);
   692   OSTRACE3("WRITE %d lock=%d\n", pFile->h, pFile->locktype);
   693   rc = SetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
   694   if( rc==INVALID_SET_FILE_POINTER && GetLastError()!=NO_ERROR ){
   695     return SQLITE_FULL;
   696   }
   697   assert( amt>0 );
   698   while(
   699      amt>0
   700      && (rc = WriteFile(pFile->h, pBuf, amt, &wrote, 0))!=0
   701      && wrote>0
   702   ){
   703     amt -= wrote;
   704     pBuf = &((char*)pBuf)[wrote];
   705   }
   706   if( !rc || amt>(int)wrote ){
   707     return SQLITE_FULL;
   708   }
   709   return SQLITE_OK;
   710 }
   711 
   712 /*
   713 ** Truncate an open file to a specified size
   714 */
   715 static int winTruncate(sqlite3_file *id, sqlite3_int64 nByte){
   716   LONG upperBits = (nByte>>32) & 0x7fffffff;
   717   LONG lowerBits = nByte & 0xffffffff;
   718   winFile *pFile = (winFile*)id;
   719   OSTRACE3("TRUNCATE %d %lld\n", pFile->h, nByte);
   720   SimulateIOError(return SQLITE_IOERR_TRUNCATE);
   721   SetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
   722   SetEndOfFile(pFile->h);
   723   return SQLITE_OK;
   724 }
   725 
   726 #ifdef SQLITE_TEST
   727 /*
   728 ** Count the number of fullsyncs and normal syncs.  This is used to test
   729 ** that syncs and fullsyncs are occuring at the right times.
   730 */
   731 int sqlite3_sync_count = 0;
   732 int sqlite3_fullsync_count = 0;
   733 #endif
   734 
   735 /*
   736 ** Make sure all writes to a particular file are committed to disk.
   737 */
   738 static int winSync(sqlite3_file *id, int flags){
   739   winFile *pFile = (winFile*)id;
   740   OSTRACE3("SYNC %d lock=%d\n", pFile->h, pFile->locktype);
   741 #ifdef SQLITE_TEST
   742   if( flags & SQLITE_SYNC_FULL ){
   743     sqlite3_fullsync_count++;
   744   }
   745   sqlite3_sync_count++;
   746 #endif
   747   if( FlushFileBuffers(pFile->h) ){
   748     return SQLITE_OK;
   749   }else{
   750     return SQLITE_IOERR;
   751   }
   752 }
   753 
   754 /*
   755 ** Determine the current size of a file in bytes
   756 */
   757 static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){
   758   winFile *pFile = (winFile*)id;
   759   DWORD upperBits, lowerBits;
   760   SimulateIOError(return SQLITE_IOERR_FSTAT);
   761   lowerBits = GetFileSize(pFile->h, &upperBits);
   762   *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;
   763   return SQLITE_OK;
   764 }
   765 
   766 /*
   767 ** LOCKFILE_FAIL_IMMEDIATELY is undefined on some Windows systems.
   768 */
   769 #ifndef LOCKFILE_FAIL_IMMEDIATELY
   770 # define LOCKFILE_FAIL_IMMEDIATELY 1
   771 #endif
   772 
   773 /*
   774 ** Acquire a reader lock.
   775 ** Different API routines are called depending on whether or not this
   776 ** is Win95 or WinNT.
   777 */
   778 static int getReadLock(winFile *pFile){
   779   int res;
   780   if( isNT() ){
   781     OVERLAPPED ovlp;
   782     ovlp.Offset = SHARED_FIRST;
   783     ovlp.OffsetHigh = 0;
   784     ovlp.hEvent = 0;
   785     res = LockFileEx(pFile->h, LOCKFILE_FAIL_IMMEDIATELY,
   786                      0, SHARED_SIZE, 0, &ovlp);
   787   }else{
   788     int lk;
   789     sqlite3_randomness(sizeof(lk), &lk);
   790     pFile->sharedLockByte = (lk & 0x7fffffff)%(SHARED_SIZE - 1);
   791     res = LockFile(pFile->h, SHARED_FIRST+pFile->sharedLockByte, 0, 1, 0);
   792   }
   793   return res;
   794 }
   795 
   796 /*
   797 ** Undo a readlock
   798 */
   799 static int unlockReadLock(winFile *pFile){
   800   int res;
   801   if( isNT() ){
   802     res = UnlockFile(pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0);
   803   }else{
   804     res = UnlockFile(pFile->h, SHARED_FIRST + pFile->sharedLockByte, 0, 1, 0);
   805   }
   806   return res;
   807 }
   808 
   809 /*
   810 ** Lock the file with the lock specified by parameter locktype - one
   811 ** of the following:
   812 **
   813 **     (1) SHARED_LOCK
   814 **     (2) RESERVED_LOCK
   815 **     (3) PENDING_LOCK
   816 **     (4) EXCLUSIVE_LOCK
   817 **
   818 ** Sometimes when requesting one lock state, additional lock states
   819 ** are inserted in between.  The locking might fail on one of the later
   820 ** transitions leaving the lock state different from what it started but
   821 ** still short of its goal.  The following chart shows the allowed
   822 ** transitions and the inserted intermediate states:
   823 **
   824 **    UNLOCKED -> SHARED
   825 **    SHARED -> RESERVED
   826 **    SHARED -> (PENDING) -> EXCLUSIVE
   827 **    RESERVED -> (PENDING) -> EXCLUSIVE
   828 **    PENDING -> EXCLUSIVE
   829 **
   830 ** This routine will only increase a lock.  The winUnlock() routine
   831 ** erases all locks at once and returns us immediately to locking level 0.
   832 ** It is not possible to lower the locking level one step at a time.  You
   833 ** must go straight to locking level 0.
   834 */
   835 static int winLock(sqlite3_file *id, int locktype){
   836   int rc = SQLITE_OK;    /* Return code from subroutines */
   837   int res = 1;           /* Result of a windows lock call */
   838   int newLocktype;       /* Set pFile->locktype to this value before exiting */
   839   int gotPendingLock = 0;/* True if we acquired a PENDING lock this time */
   840   winFile *pFile = (winFile*)id;
   841 
   842   assert( pFile!=0 );
   843   OSTRACE5("LOCK %d %d was %d(%d)\n",
   844           pFile->h, locktype, pFile->locktype, pFile->sharedLockByte);
   845 
   846   /* If there is already a lock of this type or more restrictive on the
   847   ** OsFile, do nothing. Don't use the end_lock: exit path, as
   848   ** sqlite3OsEnterMutex() hasn't been called yet.
   849   */
   850   if( pFile->locktype>=locktype ){
   851     return SQLITE_OK;
   852   }
   853 
   854   /* Make sure the locking sequence is correct
   855   */
   856   assert( pFile->locktype!=NO_LOCK || locktype==SHARED_LOCK );
   857   assert( locktype!=PENDING_LOCK );
   858   assert( locktype!=RESERVED_LOCK || pFile->locktype==SHARED_LOCK );
   859 
   860   /* Lock the PENDING_LOCK byte if we need to acquire a PENDING lock or
   861   ** a SHARED lock.  If we are acquiring a SHARED lock, the acquisition of
   862   ** the PENDING_LOCK byte is temporary.
   863   */
   864   newLocktype = pFile->locktype;
   865   if( pFile->locktype==NO_LOCK
   866    || (locktype==EXCLUSIVE_LOCK && pFile->locktype==RESERVED_LOCK)
   867   ){
   868     int cnt = 3;
   869     while( cnt-->0 && (res = LockFile(pFile->h, PENDING_BYTE, 0, 1, 0))==0 ){
   870       /* Try 3 times to get the pending lock.  The pending lock might be
   871       ** held by another reader process who will release it momentarily.
   872       */
   873       OSTRACE2("could not get a PENDING lock. cnt=%d\n", cnt);
   874       Sleep(1);
   875     }
   876     gotPendingLock = res;
   877   }
   878 
   879   /* Acquire a shared lock
   880   */
   881   if( locktype==SHARED_LOCK && res ){
   882     assert( pFile->locktype==NO_LOCK );
   883     res = getReadLock(pFile);
   884     if( res ){
   885       newLocktype = SHARED_LOCK;
   886     }
   887   }
   888 
   889   /* Acquire a RESERVED lock
   890   */
   891   if( locktype==RESERVED_LOCK && res ){
   892     assert( pFile->locktype==SHARED_LOCK );
   893     res = LockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
   894     if( res ){
   895       newLocktype = RESERVED_LOCK;
   896     }
   897   }
   898 
   899   /* Acquire a PENDING lock
   900   */
   901   if( locktype==EXCLUSIVE_LOCK && res ){
   902     newLocktype = PENDING_LOCK;
   903     gotPendingLock = 0;
   904   }
   905 
   906   /* Acquire an EXCLUSIVE lock
   907   */
   908   if( locktype==EXCLUSIVE_LOCK && res ){
   909     assert( pFile->locktype>=SHARED_LOCK );
   910     res = unlockReadLock(pFile);
   911     OSTRACE2("unreadlock = %d\n", res);
   912     res = LockFile(pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0);
   913     if( res ){
   914       newLocktype = EXCLUSIVE_LOCK;
   915     }else{
   916       OSTRACE2("error-code = %d\n", GetLastError());
   917       getReadLock(pFile);
   918     }
   919   }
   920 
   921   /* If we are holding a PENDING lock that ought to be released, then
   922   ** release it now.
   923   */
   924   if( gotPendingLock && locktype==SHARED_LOCK ){
   925     UnlockFile(pFile->h, PENDING_BYTE, 0, 1, 0);
   926   }
   927 
   928   /* Update the state of the lock has held in the file descriptor then
   929   ** return the appropriate result code.
   930   */
   931   if( res ){
   932     rc = SQLITE_OK;
   933   }else{
   934     OSTRACE4("LOCK FAILED %d trying for %d but got %d\n", pFile->h,
   935            locktype, newLocktype);
   936     rc = SQLITE_BUSY;
   937   }
   938   pFile->locktype = newLocktype;
   939   return rc;
   940 }
   941 
   942 /*
   943 ** This routine checks if there is a RESERVED lock held on the specified
   944 ** file by this or any other process. If such a lock is held, return
   945 ** non-zero, otherwise zero.
   946 */
   947 static int winCheckReservedLock(sqlite3_file *id, int *pResOut){
   948   int rc;
   949   winFile *pFile = (winFile*)id;
   950   assert( pFile!=0 );
   951   if( pFile->locktype>=RESERVED_LOCK ){
   952     rc = 1;
   953     OSTRACE3("TEST WR-LOCK %d %d (local)\n", pFile->h, rc);
   954   }else{
   955     rc = LockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
   956     if( rc ){
   957       UnlockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
   958     }
   959     rc = !rc;
   960     OSTRACE3("TEST WR-LOCK %d %d (remote)\n", pFile->h, rc);
   961   }
   962   *pResOut = rc;
   963   return SQLITE_OK;
   964 }
   965 
   966 /*
   967 ** Lower the locking level on file descriptor id to locktype.  locktype
   968 ** must be either NO_LOCK or SHARED_LOCK.
   969 **
   970 ** If the locking level of the file descriptor is already at or below
   971 ** the requested locking level, this routine is a no-op.
   972 **
   973 ** It is not possible for this routine to fail if the second argument
   974 ** is NO_LOCK.  If the second argument is SHARED_LOCK then this routine
   975 ** might return SQLITE_IOERR;
   976 */
   977 static int winUnlock(sqlite3_file *id, int locktype){
   978   int type;
   979   winFile *pFile = (winFile*)id;
   980   int rc = SQLITE_OK;
   981   assert( pFile!=0 );
   982   assert( locktype<=SHARED_LOCK );
   983   OSTRACE5("UNLOCK %d to %d was %d(%d)\n", pFile->h, locktype,
   984           pFile->locktype, pFile->sharedLockByte);
   985   type = pFile->locktype;
   986   if( type>=EXCLUSIVE_LOCK ){
   987     UnlockFile(pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0);
   988     if( locktype==SHARED_LOCK && !getReadLock(pFile) ){
   989       /* This should never happen.  We should always be able to
   990       ** reacquire the read lock */
   991       rc = SQLITE_IOERR_UNLOCK;
   992     }
   993   }
   994   if( type>=RESERVED_LOCK ){
   995     UnlockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
   996   }
   997   if( locktype==NO_LOCK && type>=SHARED_LOCK ){
   998     unlockReadLock(pFile);
   999   }
  1000   if( type>=PENDING_LOCK ){
  1001     UnlockFile(pFile->h, PENDING_BYTE, 0, 1, 0);
  1002   }
  1003   pFile->locktype = locktype;
  1004   return rc;
  1005 }
  1006 
  1007 /*
  1008 ** Control and query of the open file handle.
  1009 */
  1010 static int winFileControl(sqlite3_file *id, int op, void *pArg){
  1011   switch( op ){
  1012     case SQLITE_FCNTL_LOCKSTATE: {
  1013       *(int*)pArg = ((winFile*)id)->locktype;
  1014       return SQLITE_OK;
  1015     }
  1016   }
  1017   return SQLITE_ERROR;
  1018 }
  1019 
  1020 /*
  1021 ** Return the sector size in bytes of the underlying block device for
  1022 ** the specified file. This is almost always 512 bytes, but may be
  1023 ** larger for some devices.
  1024 **
  1025 ** SQLite code assumes this function cannot fail. It also assumes that
  1026 ** if two files are created in the same file-system directory (i.e.
  1027 ** a database and its journal file) that the sector size will be the
  1028 ** same for both.
  1029 */
  1030 static int winSectorSize(sqlite3_file *id){
  1031   return SQLITE_DEFAULT_SECTOR_SIZE;
  1032 }
  1033 
  1034 /*
  1035 ** Return a vector of device characteristics.
  1036 */
  1037 static int winDeviceCharacteristics(sqlite3_file *id){
  1038   return 0;
  1039 }
  1040 
  1041 /*
  1042 ** This vector defines all the methods that can operate on an
  1043 ** sqlite3_file for win32.
  1044 */
  1045 static const sqlite3_io_methods winIoMethod = {
  1046   1,                        /* iVersion */
  1047   winClose,
  1048   winRead,
  1049   winWrite,
  1050   winTruncate,
  1051   winSync,
  1052   winFileSize,
  1053   winLock,
  1054   winUnlock,
  1055   winCheckReservedLock,
  1056   winFileControl,
  1057   winSectorSize,
  1058   winDeviceCharacteristics
  1059 };
  1060 
  1061 /***************************************************************************
  1062 ** Here ends the I/O methods that form the sqlite3_io_methods object.
  1063 **
  1064 ** The next block of code implements the VFS methods.
  1065 ****************************************************************************/
  1066 
  1067 /*
  1068 ** Convert a UTF-8 filename into whatever form the underlying
  1069 ** operating system wants filenames in.  Space to hold the result
  1070 ** is obtained from malloc and must be freed by the calling
  1071 ** function.
  1072 */
  1073 static void *convertUtf8Filename(const char *zFilename){
  1074   void *zConverted = 0;
  1075   if( isNT() ){
  1076     zConverted = utf8ToUnicode(zFilename);
  1077   }else{
  1078     zConverted = utf8ToMbcs(zFilename);
  1079   }
  1080   /* caller will handle out of memory */
  1081   return zConverted;
  1082 }
  1083 
  1084 /*
  1085 ** Create a temporary file name in zBuf.  zBuf must be big enough to
  1086 ** hold at pVfs->mxPathname characters.
  1087 */
  1088 static int getTempname(int nBuf, char *zBuf){
  1089   static char zChars[] =
  1090     "abcdefghijklmnopqrstuvwxyz"
  1091     "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  1092     "0123456789";
  1093   size_t i, j;
  1094   char zTempPath[MAX_PATH+1];
  1095   if( sqlite3_temp_directory ){
  1096     sqlite3_snprintf(MAX_PATH-30, zTempPath, "%s", sqlite3_temp_directory);
  1097   }else if( isNT() ){
  1098     char *zMulti;
  1099     WCHAR zWidePath[MAX_PATH];
  1100     GetTempPathW(MAX_PATH-30, zWidePath);
  1101     zMulti = unicodeToUtf8(zWidePath);
  1102     if( zMulti ){
  1103       sqlite3_snprintf(MAX_PATH-30, zTempPath, "%s", zMulti);
  1104       free(zMulti);
  1105     }else{
  1106       return SQLITE_NOMEM;
  1107     }
  1108   }else{
  1109     char *zUtf8;
  1110     char zMbcsPath[MAX_PATH];
  1111     GetTempPathA(MAX_PATH-30, zMbcsPath);
  1112     zUtf8 = mbcsToUtf8(zMbcsPath);
  1113     if( zUtf8 ){
  1114       sqlite3_snprintf(MAX_PATH-30, zTempPath, "%s", zUtf8);
  1115       free(zUtf8);
  1116     }else{
  1117       return SQLITE_NOMEM;
  1118     }
  1119   }
  1120   for(i=strlen(zTempPath); i>0 && zTempPath[i-1]=='\\'; i--){}
  1121   zTempPath[i] = 0;
  1122   sqlite3_snprintf(nBuf-30, zBuf,
  1123                    "%s\\"SQLITE_TEMP_FILE_PREFIX, zTempPath);
  1124   j = strlen(zBuf);
  1125   sqlite3_randomness(20, &zBuf[j]);
  1126   for(i=0; i<20; i++, j++){
  1127     zBuf[j] = (char)zChars[ ((unsigned char)zBuf[j])%(sizeof(zChars)-1) ];
  1128   }
  1129   zBuf[j] = 0;
  1130   OSTRACE2("TEMP FILENAME: %s\n", zBuf);
  1131   return SQLITE_OK; 
  1132 }
  1133 
  1134 /*
  1135 ** The return value of getLastErrorMsg
  1136 ** is zero if the error message fits in the buffer, or non-zero
  1137 ** otherwise (if the message was truncated).
  1138 */
  1139 static int getLastErrorMsg(int nBuf, char *zBuf){
  1140   DWORD error = GetLastError();
  1141 
  1142 #if SQLITE_OS_WINCE
  1143   sqlite3_snprintf(nBuf, zBuf, "OsError 0x%x (%u)", error, error);
  1144 #else
  1145   /* FormatMessage returns 0 on failure.  Otherwise it
  1146   ** returns the number of TCHARs written to the output
  1147   ** buffer, excluding the terminating null char.
  1148   */
  1149   if (!FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM,
  1150                       NULL,
  1151                       error,
  1152                       0,
  1153                       zBuf,
  1154                       nBuf-1,
  1155                       0))
  1156   {
  1157     sqlite3_snprintf(nBuf, zBuf, "OsError 0x%x (%u)", error, error);
  1158   }
  1159 #endif
  1160 
  1161   return 0;
  1162 }
  1163 
  1164 
  1165 /*
  1166 ** Open a file.
  1167 */
  1168 static int winOpen(
  1169   sqlite3_vfs *pVfs,        /* Not used */
  1170   const char *zName,        /* Name of the file (UTF-8) */
  1171   sqlite3_file *id,         /* Write the SQLite file handle here */
  1172   int flags,                /* Open mode flags */
  1173   int *pOutFlags            /* Status return flags */
  1174 ){
  1175   HANDLE h;
  1176   DWORD dwDesiredAccess;
  1177   DWORD dwShareMode;
  1178   DWORD dwCreationDisposition;
  1179   DWORD dwFlagsAndAttributes = 0;
  1180 #if SQLITE_OS_WINCE
  1181   int isTemp = 0;
  1182 #endif
  1183   winFile *pFile = (winFile*)id;
  1184   void *zConverted;                 /* Filename in OS encoding */
  1185   const char *zUtf8Name = zName;    /* Filename in UTF-8 encoding */
  1186   char zTmpname[MAX_PATH+1];        /* Buffer used to create temp filename */
  1187 
  1188   /* If the second argument to this function is NULL, generate a 
  1189   ** temporary file name to use 
  1190   */
  1191   if( !zUtf8Name ){
  1192     int rc = getTempname(MAX_PATH+1, zTmpname);
  1193     if( rc!=SQLITE_OK ){
  1194       return rc;
  1195     }
  1196     zUtf8Name = zTmpname;
  1197   }
  1198 
  1199   /* Convert the filename to the system encoding. */
  1200   zConverted = convertUtf8Filename(zUtf8Name);
  1201   if( zConverted==0 ){
  1202     return SQLITE_NOMEM;
  1203   }
  1204 
  1205   if( flags & SQLITE_OPEN_READWRITE ){
  1206     dwDesiredAccess = GENERIC_READ | GENERIC_WRITE;
  1207   }else{
  1208     dwDesiredAccess = GENERIC_READ;
  1209   }
  1210   if( flags & SQLITE_OPEN_CREATE ){
  1211     dwCreationDisposition = OPEN_ALWAYS;
  1212   }else{
  1213     dwCreationDisposition = OPEN_EXISTING;
  1214   }
  1215   if( flags & SQLITE_OPEN_MAIN_DB ){
  1216     dwShareMode = FILE_SHARE_READ | FILE_SHARE_WRITE;
  1217   }else{
  1218     dwShareMode = 0;
  1219   }
  1220   if( flags & SQLITE_OPEN_DELETEONCLOSE ){
  1221 #if SQLITE_OS_WINCE
  1222     dwFlagsAndAttributes = FILE_ATTRIBUTE_HIDDEN;
  1223     isTemp = 1;
  1224 #else
  1225     dwFlagsAndAttributes = FILE_ATTRIBUTE_TEMPORARY
  1226                                | FILE_ATTRIBUTE_HIDDEN
  1227                                | FILE_FLAG_DELETE_ON_CLOSE;
  1228 #endif
  1229   }else{
  1230     dwFlagsAndAttributes = FILE_ATTRIBUTE_NORMAL;
  1231   }
  1232   /* Reports from the internet are that performance is always
  1233   ** better if FILE_FLAG_RANDOM_ACCESS is used.  Ticket #2699. */
  1234 #if SQLITE_OS_WINCE
  1235   dwFlagsAndAttributes |= FILE_FLAG_RANDOM_ACCESS;
  1236 #endif
  1237   if( isNT() ){
  1238     h = CreateFileW((WCHAR*)zConverted,
  1239        dwDesiredAccess,
  1240        dwShareMode,
  1241        NULL,
  1242        dwCreationDisposition,
  1243        dwFlagsAndAttributes,
  1244        NULL
  1245     );
  1246   }else{
  1247     h = CreateFileA((char*)zConverted,
  1248        dwDesiredAccess,
  1249        dwShareMode,
  1250        NULL,
  1251        dwCreationDisposition,
  1252        dwFlagsAndAttributes,
  1253        NULL
  1254     );
  1255   }
  1256   if( h==INVALID_HANDLE_VALUE ){
  1257     free(zConverted);
  1258     if( flags & SQLITE_OPEN_READWRITE ){
  1259       return winOpen(0, zName, id, 
  1260              ((flags|SQLITE_OPEN_READONLY)&~SQLITE_OPEN_READWRITE), pOutFlags);
  1261     }else{
  1262       return SQLITE_CANTOPEN;
  1263     }
  1264   }
  1265   if( pOutFlags ){
  1266     if( flags & SQLITE_OPEN_READWRITE ){
  1267       *pOutFlags = SQLITE_OPEN_READWRITE;
  1268     }else{
  1269       *pOutFlags = SQLITE_OPEN_READONLY;
  1270     }
  1271   }
  1272   memset(pFile, 0, sizeof(*pFile));
  1273   pFile->pMethod = &winIoMethod;
  1274   pFile->h = h;
  1275 #if SQLITE_OS_WINCE
  1276   if( (flags & (SQLITE_OPEN_READWRITE|SQLITE_OPEN_MAIN_DB)) ==
  1277                (SQLITE_OPEN_READWRITE|SQLITE_OPEN_MAIN_DB)
  1278        && !winceCreateLock(zName, pFile)
  1279   ){
  1280     CloseHandle(h);
  1281     free(zConverted);
  1282     return SQLITE_CANTOPEN;
  1283   }
  1284   if( isTemp ){
  1285     pFile->zDeleteOnClose = zConverted;
  1286   }else
  1287 #endif
  1288   {
  1289     free(zConverted);
  1290   }
  1291   OpenCounter(+1);
  1292   return SQLITE_OK;
  1293 }
  1294 
  1295 /*
  1296 ** Delete the named file.
  1297 **
  1298 ** Note that windows does not allow a file to be deleted if some other
  1299 ** process has it open.  Sometimes a virus scanner or indexing program
  1300 ** will open a journal file shortly after it is created in order to do
  1301 ** whatever it does.  While this other process is holding the
  1302 ** file open, we will be unable to delete it.  To work around this
  1303 ** problem, we delay 100 milliseconds and try to delete again.  Up
  1304 ** to MX_DELETION_ATTEMPTs deletion attempts are run before giving
  1305 ** up and returning an error.
  1306 */
  1307 #define MX_DELETION_ATTEMPTS 5
  1308 static int winDelete(
  1309   sqlite3_vfs *pVfs,          /* Not used on win32 */
  1310   const char *zFilename,      /* Name of file to delete */
  1311   int syncDir                 /* Not used on win32 */
  1312 ){
  1313   int cnt = 0;
  1314   DWORD rc;
  1315   DWORD error;
  1316   void *zConverted = convertUtf8Filename(zFilename);
  1317   if( zConverted==0 ){
  1318     return SQLITE_NOMEM;
  1319   }
  1320   SimulateIOError(return SQLITE_IOERR_DELETE);
  1321   if( isNT() ){
  1322     do{
  1323       DeleteFileW(zConverted);
  1324     }while(   (   ((rc = GetFileAttributesW(zConverted)) != INVALID_FILE_ATTRIBUTES)
  1325                || ((error = GetLastError()) == ERROR_ACCESS_DENIED))
  1326            && (++cnt < MX_DELETION_ATTEMPTS)
  1327            && (Sleep(100), 1) );
  1328   }else{
  1329     do{
  1330       DeleteFileA(zConverted);
  1331     }while(   (   ((rc = GetFileAttributesA(zConverted)) != INVALID_FILE_ATTRIBUTES)
  1332                || ((error = GetLastError()) == ERROR_ACCESS_DENIED))
  1333            && (++cnt < MX_DELETION_ATTEMPTS)
  1334            && (Sleep(100), 1) );
  1335   }
  1336   free(zConverted);
  1337   OSTRACE2("DELETE \"%s\"\n", zFilename);
  1338   return (   (rc == INVALID_FILE_ATTRIBUTES) 
  1339           && (error == ERROR_FILE_NOT_FOUND)) ? SQLITE_OK : SQLITE_IOERR_DELETE;
  1340 }
  1341 
  1342 /*
  1343 ** Check the existance and status of a file.
  1344 */
  1345 static int winAccess(
  1346   sqlite3_vfs *pVfs,         /* Not used on win32 */
  1347   const char *zFilename,     /* Name of file to check */
  1348   int flags,                 /* Type of test to make on this file */
  1349   int *pResOut               /* OUT: Result */
  1350 ){
  1351   DWORD attr;
  1352   int rc;
  1353   void *zConverted = convertUtf8Filename(zFilename);
  1354   if( zConverted==0 ){
  1355     return SQLITE_NOMEM;
  1356   }
  1357   if( isNT() ){
  1358     attr = GetFileAttributesW((WCHAR*)zConverted);
  1359   }else{
  1360     attr = GetFileAttributesA((char*)zConverted);
  1361   }
  1362   free(zConverted);
  1363   switch( flags ){
  1364     case SQLITE_ACCESS_READ:
  1365     case SQLITE_ACCESS_EXISTS:
  1366       rc = attr!=INVALID_FILE_ATTRIBUTES;
  1367       break;
  1368     case SQLITE_ACCESS_READWRITE:
  1369       rc = (attr & FILE_ATTRIBUTE_READONLY)==0;
  1370       break;
  1371     default:
  1372       assert(!"Invalid flags argument");
  1373   }
  1374   *pResOut = rc;
  1375   return SQLITE_OK;
  1376 }
  1377 
  1378 
  1379 /*
  1380 ** Turn a relative pathname into a full pathname.  Write the full
  1381 ** pathname into zOut[].  zOut[] will be at least pVfs->mxPathname
  1382 ** bytes in size.
  1383 */
  1384 static int winFullPathname(
  1385   sqlite3_vfs *pVfs,            /* Pointer to vfs object */
  1386   const char *zRelative,        /* Possibly relative input path */
  1387   int nFull,                    /* Size of output buffer in bytes */
  1388   char *zFull                   /* Output buffer */
  1389 ){
  1390 
  1391 #if defined(__CYGWIN__)
  1392   cygwin_conv_to_full_win32_path(zRelative, zFull);
  1393   return SQLITE_OK;
  1394 #endif
  1395 
  1396 #if SQLITE_OS_WINCE
  1397   /* WinCE has no concept of a relative pathname, or so I am told. */
  1398   sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zRelative);
  1399   return SQLITE_OK;
  1400 #endif
  1401 
  1402 #if !SQLITE_OS_WINCE && !defined(__CYGWIN__)
  1403   int nByte;
  1404   void *zConverted;
  1405   char *zOut;
  1406   zConverted = convertUtf8Filename(zRelative);
  1407   if( isNT() ){
  1408     WCHAR *zTemp;
  1409     nByte = GetFullPathNameW((WCHAR*)zConverted, 0, 0, 0) + 3;
  1410     zTemp = malloc( nByte*sizeof(zTemp[0]) );
  1411     if( zTemp==0 ){
  1412       free(zConverted);
  1413       return SQLITE_NOMEM;
  1414     }
  1415     GetFullPathNameW((WCHAR*)zConverted, nByte, zTemp, 0);
  1416     free(zConverted);
  1417     zOut = unicodeToUtf8(zTemp);
  1418     free(zTemp);
  1419   }else{
  1420     char *zTemp;
  1421     nByte = GetFullPathNameA((char*)zConverted, 0, 0, 0) + 3;
  1422     zTemp = malloc( nByte*sizeof(zTemp[0]) );
  1423     if( zTemp==0 ){
  1424       free(zConverted);
  1425       return SQLITE_NOMEM;
  1426     }
  1427     GetFullPathNameA((char*)zConverted, nByte, zTemp, 0);
  1428     free(zConverted);
  1429     zOut = mbcsToUtf8(zTemp);
  1430     free(zTemp);
  1431   }
  1432   if( zOut ){
  1433     sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zOut);
  1434     free(zOut);
  1435     return SQLITE_OK;
  1436   }else{
  1437     return SQLITE_NOMEM;
  1438   }
  1439 #endif
  1440 }
  1441 
  1442 #ifndef SQLITE_OMIT_LOAD_EXTENSION
  1443 /*
  1444 ** Interfaces for opening a shared library, finding entry points
  1445 ** within the shared library, and closing the shared library.
  1446 */
  1447 /*
  1448 ** Interfaces for opening a shared library, finding entry points
  1449 ** within the shared library, and closing the shared library.
  1450 */
  1451 static void *winDlOpen(sqlite3_vfs *pVfs, const char *zFilename){
  1452   HANDLE h;
  1453   void *zConverted = convertUtf8Filename(zFilename);
  1454   if( zConverted==0 ){
  1455     return 0;
  1456   }
  1457   if( isNT() ){
  1458     h = LoadLibraryW((WCHAR*)zConverted);
  1459   }else{
  1460     h = LoadLibraryA((char*)zConverted);
  1461   }
  1462   free(zConverted);
  1463   return (void*)h;
  1464 }
  1465 static void winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){
  1466   getLastErrorMsg(nBuf, zBufOut);
  1467 }
  1468 void *winDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol){
  1469 #if SQLITE_OS_WINCE
  1470   /* The GetProcAddressA() routine is only available on wince. */
  1471   return GetProcAddressA((HANDLE)pHandle, zSymbol);
  1472 #else
  1473   /* All other windows platforms expect GetProcAddress() to take
  1474   ** an Ansi string regardless of the _UNICODE setting */
  1475   return GetProcAddress((HANDLE)pHandle, zSymbol);
  1476 #endif
  1477 }
  1478 void winDlClose(sqlite3_vfs *pVfs, void *pHandle){
  1479   FreeLibrary((HANDLE)pHandle);
  1480 }
  1481 #else /* if SQLITE_OMIT_LOAD_EXTENSION is defined: */
  1482   #define winDlOpen  0
  1483   #define winDlError 0
  1484   #define winDlSym   0
  1485   #define winDlClose 0
  1486 #endif
  1487 
  1488 
  1489 /*
  1490 ** Write up to nBuf bytes of randomness into zBuf.
  1491 */
  1492 static int winRandomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf){
  1493   int n = 0;
  1494   if( sizeof(SYSTEMTIME)<=nBuf-n ){
  1495     SYSTEMTIME x;
  1496     GetSystemTime(&x);
  1497     memcpy(&zBuf[n], &x, sizeof(x));
  1498     n += sizeof(x);
  1499   }
  1500   if( sizeof(DWORD)<=nBuf-n ){
  1501     DWORD pid = GetCurrentProcessId();
  1502     memcpy(&zBuf[n], &pid, sizeof(pid));
  1503     n += sizeof(pid);
  1504   }
  1505   if( sizeof(DWORD)<=nBuf-n ){
  1506     DWORD cnt = GetTickCount();
  1507     memcpy(&zBuf[n], &cnt, sizeof(cnt));
  1508     n += sizeof(cnt);
  1509   }
  1510   if( sizeof(LARGE_INTEGER)<=nBuf-n ){
  1511     LARGE_INTEGER i;
  1512     QueryPerformanceCounter(&i);
  1513     memcpy(&zBuf[n], &i, sizeof(i));
  1514     n += sizeof(i);
  1515   }
  1516   return n;
  1517 }
  1518 
  1519 
  1520 /*
  1521 ** Sleep for a little while.  Return the amount of time slept.
  1522 */
  1523 static int winSleep(sqlite3_vfs *pVfs, int microsec){
  1524   Sleep((microsec+999)/1000);
  1525   return ((microsec+999)/1000)*1000;
  1526 }
  1527 
  1528 /*
  1529 ** The following variable, if set to a non-zero value, becomes the result
  1530 ** returned from sqlite3OsCurrentTime().  This is used for testing.
  1531 */
  1532 #ifdef SQLITE_TEST
  1533 int sqlite3_current_time = 0;
  1534 #endif
  1535 
  1536 /*
  1537 ** Find the current time (in Universal Coordinated Time).  Write the
  1538 ** current time and date as a Julian Day number into *prNow and
  1539 ** return 0.  Return 1 if the time and date cannot be found.
  1540 */
  1541 int winCurrentTime(sqlite3_vfs *pVfs, double *prNow){
  1542   FILETIME ft;
  1543   /* FILETIME structure is a 64-bit value representing the number of 
  1544      100-nanosecond intervals since January 1, 1601 (= JD 2305813.5). 
  1545   */
  1546   double now;
  1547 #if SQLITE_OS_WINCE
  1548   SYSTEMTIME time;
  1549   GetSystemTime(&time);
  1550   /* if SystemTimeToFileTime() fails, it returns zero. */
  1551   if (!SystemTimeToFileTime(&time,&ft)){
  1552     return 1;
  1553   }
  1554 #else
  1555   GetSystemTimeAsFileTime( &ft );
  1556 #endif
  1557   now = ((double)ft.dwHighDateTime) * 4294967296.0; 
  1558   *prNow = (now + ft.dwLowDateTime)/864000000000.0 + 2305813.5;
  1559 #ifdef SQLITE_TEST
  1560   if( sqlite3_current_time ){
  1561     *prNow = sqlite3_current_time/86400.0 + 2440587.5;
  1562   }
  1563 #endif
  1564   return 0;
  1565 }
  1566 
  1567 /*
  1568 ** The idea is that this function works like a combination of
  1569 ** GetLastError() and FormatMessage() on windows (or errno and
  1570 ** strerror_r() on unix). After an error is returned by an OS
  1571 ** function, SQLite calls this function with zBuf pointing to
  1572 ** a buffer of nBuf bytes. The OS layer should populate the
  1573 ** buffer with a nul-terminated UTF-8 encoded error message
  1574 ** describing the last IO error to have occured within the calling
  1575 ** thread.
  1576 **
  1577 ** If the error message is too large for the supplied buffer,
  1578 ** it should be truncated. The return value of xGetLastError
  1579 ** is zero if the error message fits in the buffer, or non-zero
  1580 ** otherwise (if the message was truncated). If non-zero is returned,
  1581 ** then it is not necessary to include the nul-terminator character
  1582 ** in the output buffer.
  1583 **
  1584 ** Not supplying an error message will have no adverse effect
  1585 ** on SQLite. It is fine to have an implementation that never
  1586 ** returns an error message:
  1587 **
  1588 **   int xGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){
  1589 **     assert(zBuf[0]=='\0');
  1590 **     return 0;
  1591 **   }
  1592 **
  1593 ** However if an error message is supplied, it will be incorporated
  1594 ** by sqlite into the error message available to the user using
  1595 ** sqlite3_errmsg(), possibly making IO errors easier to debug.
  1596 */
  1597 static int winGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){
  1598   return getLastErrorMsg(nBuf, zBuf);
  1599 }
  1600 
  1601 /*
  1602 ** Initialize and deinitialize the operating system interface.
  1603 */
  1604 int sqlite3_os_init(void){
  1605   static sqlite3_vfs winVfs = {
  1606     1,                 /* iVersion */
  1607     sizeof(winFile),   /* szOsFile */
  1608     MAX_PATH,          /* mxPathname */
  1609     0,                 /* pNext */
  1610     "win32",           /* zName */
  1611     0,                 /* pAppData */
  1612  
  1613     winOpen,           /* xOpen */
  1614     winDelete,         /* xDelete */
  1615     winAccess,         /* xAccess */
  1616     winFullPathname,   /* xFullPathname */
  1617     winDlOpen,         /* xDlOpen */
  1618     winDlError,        /* xDlError */
  1619     winDlSym,          /* xDlSym */
  1620     winDlClose,        /* xDlClose */
  1621     winRandomness,     /* xRandomness */
  1622     winSleep,          /* xSleep */
  1623     winCurrentTime,    /* xCurrentTime */
  1624     winGetLastError    /* xGetLastError */
  1625   };
  1626   sqlite3_vfs_register(&winVfs, 1);
  1627   return SQLITE_OK; 
  1628 }
  1629 int sqlite3_os_end(void){ 
  1630   return SQLITE_OK;
  1631 }
  1632 
  1633 #endif /* SQLITE_OS_WIN */