sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2007 August 14
|
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 |
** This file contains the C functions that implement mutexes for win32
|
sl@0
|
13 |
**
|
sl@0
|
14 |
** $Id: mutex_w32.c,v 1.11 2008/06/26 10:41:19 danielk1977 Exp $
|
sl@0
|
15 |
*/
|
sl@0
|
16 |
#include "sqliteInt.h"
|
sl@0
|
17 |
|
sl@0
|
18 |
/*
|
sl@0
|
19 |
** The code in this file is only used if we are compiling multithreaded
|
sl@0
|
20 |
** on a win32 system.
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
#ifdef SQLITE_MUTEX_W32
|
sl@0
|
23 |
|
sl@0
|
24 |
/*
|
sl@0
|
25 |
** Each recursive mutex is an instance of the following structure.
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
struct sqlite3_mutex {
|
sl@0
|
28 |
CRITICAL_SECTION mutex; /* Mutex controlling the lock */
|
sl@0
|
29 |
int id; /* Mutex type */
|
sl@0
|
30 |
int nRef; /* Number of enterances */
|
sl@0
|
31 |
DWORD owner; /* Thread holding this mutex */
|
sl@0
|
32 |
};
|
sl@0
|
33 |
|
sl@0
|
34 |
/*
|
sl@0
|
35 |
** Return true (non-zero) if we are running under WinNT, Win2K, WinXP,
|
sl@0
|
36 |
** or WinCE. Return false (zero) for Win95, Win98, or WinME.
|
sl@0
|
37 |
**
|
sl@0
|
38 |
** Here is an interesting observation: Win95, Win98, and WinME lack
|
sl@0
|
39 |
** the LockFileEx() API. But we can still statically link against that
|
sl@0
|
40 |
** API as long as we don't call it win running Win95/98/ME. A call to
|
sl@0
|
41 |
** this routine is used to determine if the host is Win95/98/ME or
|
sl@0
|
42 |
** WinNT/2K/XP so that we will know whether or not we can safely call
|
sl@0
|
43 |
** the LockFileEx() API.
|
sl@0
|
44 |
*/
|
sl@0
|
45 |
#if SQLITE_OS_WINCE
|
sl@0
|
46 |
# define mutexIsNT() (1)
|
sl@0
|
47 |
#else
|
sl@0
|
48 |
static int mutexIsNT(void){
|
sl@0
|
49 |
static int osType = 0;
|
sl@0
|
50 |
if( osType==0 ){
|
sl@0
|
51 |
OSVERSIONINFO sInfo;
|
sl@0
|
52 |
sInfo.dwOSVersionInfoSize = sizeof(sInfo);
|
sl@0
|
53 |
GetVersionEx(&sInfo);
|
sl@0
|
54 |
osType = sInfo.dwPlatformId==VER_PLATFORM_WIN32_NT ? 2 : 1;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
return osType==2;
|
sl@0
|
57 |
}
|
sl@0
|
58 |
#endif /* SQLITE_OS_WINCE */
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
#ifdef SQLITE_DEBUG
|
sl@0
|
62 |
/*
|
sl@0
|
63 |
** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routine are
|
sl@0
|
64 |
** intended for use only inside assert() statements.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
static int winMutexHeld(sqlite3_mutex *p){
|
sl@0
|
67 |
return p->nRef!=0 && p->owner==GetCurrentThreadId();
|
sl@0
|
68 |
}
|
sl@0
|
69 |
static int winMutexNotheld(sqlite3_mutex *p){
|
sl@0
|
70 |
return p->nRef==0 || p->owner!=GetCurrentThreadId();
|
sl@0
|
71 |
}
|
sl@0
|
72 |
#endif
|
sl@0
|
73 |
|
sl@0
|
74 |
|
sl@0
|
75 |
/*
|
sl@0
|
76 |
** Initialize and deinitialize the mutex subsystem.
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
static int winMutexInit(void){ return SQLITE_OK; }
|
sl@0
|
79 |
static int winMutexEnd(void){ return SQLITE_OK; }
|
sl@0
|
80 |
|
sl@0
|
81 |
/*
|
sl@0
|
82 |
** The sqlite3_mutex_alloc() routine allocates a new
|
sl@0
|
83 |
** mutex and returns a pointer to it. If it returns NULL
|
sl@0
|
84 |
** that means that a mutex could not be allocated. SQLite
|
sl@0
|
85 |
** will unwind its stack and return an error. The argument
|
sl@0
|
86 |
** to sqlite3_mutex_alloc() is one of these integer constants:
|
sl@0
|
87 |
**
|
sl@0
|
88 |
** <ul>
|
sl@0
|
89 |
** <li> SQLITE_MUTEX_FAST 0
|
sl@0
|
90 |
** <li> SQLITE_MUTEX_RECURSIVE 1
|
sl@0
|
91 |
** <li> SQLITE_MUTEX_STATIC_MASTER 2
|
sl@0
|
92 |
** <li> SQLITE_MUTEX_STATIC_MEM 3
|
sl@0
|
93 |
** <li> SQLITE_MUTEX_STATIC_PRNG 4
|
sl@0
|
94 |
** </ul>
|
sl@0
|
95 |
**
|
sl@0
|
96 |
** The first two constants cause sqlite3_mutex_alloc() to create
|
sl@0
|
97 |
** a new mutex. The new mutex is recursive when SQLITE_MUTEX_RECURSIVE
|
sl@0
|
98 |
** is used but not necessarily so when SQLITE_MUTEX_FAST is used.
|
sl@0
|
99 |
** The mutex implementation does not need to make a distinction
|
sl@0
|
100 |
** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does
|
sl@0
|
101 |
** not want to. But SQLite will only request a recursive mutex in
|
sl@0
|
102 |
** cases where it really needs one. If a faster non-recursive mutex
|
sl@0
|
103 |
** implementation is available on the host platform, the mutex subsystem
|
sl@0
|
104 |
** might return such a mutex in response to SQLITE_MUTEX_FAST.
|
sl@0
|
105 |
**
|
sl@0
|
106 |
** The other allowed parameters to sqlite3_mutex_alloc() each return
|
sl@0
|
107 |
** a pointer to a static preexisting mutex. Three static mutexes are
|
sl@0
|
108 |
** used by the current version of SQLite. Future versions of SQLite
|
sl@0
|
109 |
** may add additional static mutexes. Static mutexes are for internal
|
sl@0
|
110 |
** use by SQLite only. Applications that use SQLite mutexes should
|
sl@0
|
111 |
** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or
|
sl@0
|
112 |
** SQLITE_MUTEX_RECURSIVE.
|
sl@0
|
113 |
**
|
sl@0
|
114 |
** Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST
|
sl@0
|
115 |
** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
|
sl@0
|
116 |
** returns a different mutex on every call. But for the static
|
sl@0
|
117 |
** mutex types, the same mutex is returned on every call that has
|
sl@0
|
118 |
** the same type number.
|
sl@0
|
119 |
*/
|
sl@0
|
120 |
static sqlite3_mutex *winMutexAlloc(int iType){
|
sl@0
|
121 |
sqlite3_mutex *p;
|
sl@0
|
122 |
|
sl@0
|
123 |
switch( iType ){
|
sl@0
|
124 |
case SQLITE_MUTEX_FAST:
|
sl@0
|
125 |
case SQLITE_MUTEX_RECURSIVE: {
|
sl@0
|
126 |
p = sqlite3MallocZero( sizeof(*p) );
|
sl@0
|
127 |
if( p ){
|
sl@0
|
128 |
p->id = iType;
|
sl@0
|
129 |
InitializeCriticalSection(&p->mutex);
|
sl@0
|
130 |
}
|
sl@0
|
131 |
break;
|
sl@0
|
132 |
}
|
sl@0
|
133 |
default: {
|
sl@0
|
134 |
static sqlite3_mutex staticMutexes[6];
|
sl@0
|
135 |
static int isInit = 0;
|
sl@0
|
136 |
while( !isInit ){
|
sl@0
|
137 |
static long lock = 0;
|
sl@0
|
138 |
if( InterlockedIncrement(&lock)==1 ){
|
sl@0
|
139 |
int i;
|
sl@0
|
140 |
for(i=0; i<sizeof(staticMutexes)/sizeof(staticMutexes[0]); i++){
|
sl@0
|
141 |
InitializeCriticalSection(&staticMutexes[i].mutex);
|
sl@0
|
142 |
}
|
sl@0
|
143 |
isInit = 1;
|
sl@0
|
144 |
}else{
|
sl@0
|
145 |
Sleep(1);
|
sl@0
|
146 |
}
|
sl@0
|
147 |
}
|
sl@0
|
148 |
assert( iType-2 >= 0 );
|
sl@0
|
149 |
assert( iType-2 < sizeof(staticMutexes)/sizeof(staticMutexes[0]) );
|
sl@0
|
150 |
p = &staticMutexes[iType-2];
|
sl@0
|
151 |
p->id = iType;
|
sl@0
|
152 |
break;
|
sl@0
|
153 |
}
|
sl@0
|
154 |
}
|
sl@0
|
155 |
return p;
|
sl@0
|
156 |
}
|
sl@0
|
157 |
|
sl@0
|
158 |
|
sl@0
|
159 |
/*
|
sl@0
|
160 |
** This routine deallocates a previously
|
sl@0
|
161 |
** allocated mutex. SQLite is careful to deallocate every
|
sl@0
|
162 |
** mutex that it allocates.
|
sl@0
|
163 |
*/
|
sl@0
|
164 |
static void winMutexFree(sqlite3_mutex *p){
|
sl@0
|
165 |
assert( p );
|
sl@0
|
166 |
assert( p->nRef==0 );
|
sl@0
|
167 |
assert( p->id==SQLITE_MUTEX_FAST || p->id==SQLITE_MUTEX_RECURSIVE );
|
sl@0
|
168 |
DeleteCriticalSection(&p->mutex);
|
sl@0
|
169 |
sqlite3_free(p);
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
/*
|
sl@0
|
173 |
** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
|
sl@0
|
174 |
** to enter a mutex. If another thread is already within the mutex,
|
sl@0
|
175 |
** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
|
sl@0
|
176 |
** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
|
sl@0
|
177 |
** upon successful entry. Mutexes created using SQLITE_MUTEX_RECURSIVE can
|
sl@0
|
178 |
** be entered multiple times by the same thread. In such cases the,
|
sl@0
|
179 |
** mutex must be exited an equal number of times before another thread
|
sl@0
|
180 |
** can enter. If the same thread tries to enter any other kind of mutex
|
sl@0
|
181 |
** more than once, the behavior is undefined.
|
sl@0
|
182 |
*/
|
sl@0
|
183 |
static void winMutexEnter(sqlite3_mutex *p){
|
sl@0
|
184 |
assert( p->id==SQLITE_MUTEX_RECURSIVE || winMutexNotheld(p) );
|
sl@0
|
185 |
EnterCriticalSection(&p->mutex);
|
sl@0
|
186 |
p->owner = GetCurrentThreadId();
|
sl@0
|
187 |
p->nRef++;
|
sl@0
|
188 |
}
|
sl@0
|
189 |
static int winMutexTry(sqlite3_mutex *p){
|
sl@0
|
190 |
int rc = SQLITE_BUSY;
|
sl@0
|
191 |
assert( p->id==SQLITE_MUTEX_RECURSIVE || winMutexNotheld(p) );
|
sl@0
|
192 |
/*
|
sl@0
|
193 |
** The sqlite3_mutex_try() routine is very rarely used, and when it
|
sl@0
|
194 |
** is used it is merely an optimization. So it is OK for it to always
|
sl@0
|
195 |
** fail.
|
sl@0
|
196 |
**
|
sl@0
|
197 |
** The TryEnterCriticalSection() interface is only available on WinNT.
|
sl@0
|
198 |
** And some windows compilers complain if you try to use it without
|
sl@0
|
199 |
** first doing some #defines that prevent SQLite from building on Win98.
|
sl@0
|
200 |
** For that reason, we will omit this optimization for now. See
|
sl@0
|
201 |
** ticket #2685.
|
sl@0
|
202 |
*/
|
sl@0
|
203 |
#if 0
|
sl@0
|
204 |
if( mutexIsNT() && TryEnterCriticalSection(&p->mutex) ){
|
sl@0
|
205 |
p->owner = GetCurrentThreadId();
|
sl@0
|
206 |
p->nRef++;
|
sl@0
|
207 |
rc = SQLITE_OK;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
#endif
|
sl@0
|
210 |
return rc;
|
sl@0
|
211 |
}
|
sl@0
|
212 |
|
sl@0
|
213 |
/*
|
sl@0
|
214 |
** The sqlite3_mutex_leave() routine exits a mutex that was
|
sl@0
|
215 |
** previously entered by the same thread. The behavior
|
sl@0
|
216 |
** is undefined if the mutex is not currently entered or
|
sl@0
|
217 |
** is not currently allocated. SQLite will never do either.
|
sl@0
|
218 |
*/
|
sl@0
|
219 |
static void winMutexLeave(sqlite3_mutex *p){
|
sl@0
|
220 |
assert( p->nRef>0 );
|
sl@0
|
221 |
assert( p->owner==GetCurrentThreadId() );
|
sl@0
|
222 |
p->nRef--;
|
sl@0
|
223 |
assert( p->nRef==0 || p->id==SQLITE_MUTEX_RECURSIVE );
|
sl@0
|
224 |
LeaveCriticalSection(&p->mutex);
|
sl@0
|
225 |
}
|
sl@0
|
226 |
|
sl@0
|
227 |
sqlite3_mutex_methods *sqlite3DefaultMutex(void){
|
sl@0
|
228 |
static sqlite3_mutex_methods sMutex = {
|
sl@0
|
229 |
winMutexInit,
|
sl@0
|
230 |
winMutexEnd,
|
sl@0
|
231 |
winMutexAlloc,
|
sl@0
|
232 |
winMutexFree,
|
sl@0
|
233 |
winMutexEnter,
|
sl@0
|
234 |
winMutexTry,
|
sl@0
|
235 |
winMutexLeave,
|
sl@0
|
236 |
#ifdef SQLITE_DEBUG
|
sl@0
|
237 |
winMutexHeld,
|
sl@0
|
238 |
winMutexNotheld
|
sl@0
|
239 |
#endif
|
sl@0
|
240 |
};
|
sl@0
|
241 |
|
sl@0
|
242 |
return &sMutex;
|
sl@0
|
243 |
}
|
sl@0
|
244 |
#endif /* SQLITE_MUTEX_W32 */
|