blob: fd03e66ccddf588707b5d0d321070898fb845b26 [file] [log] [blame]
Daniel Veillardb8478642001-10-12 17:29:10 +00001/**
2 * threads.c: set of generic threading related routines
3 *
4 * See Copyright for the status of this software.
5 *
6 * Gary Pennington <Gary.Pennington@uk.sun.com>
7 * daniel@veillard.com
8 */
9
Daniel Veillard34ce8be2002-03-18 19:37:11 +000010#define IN_LIBXML
Daniel Veillardb8478642001-10-12 17:29:10 +000011#include "libxml.h"
12
13#include <string.h>
14
15#include <libxml/threads.h>
16#include <libxml/globals.h>
17
18#ifdef HAVE_SYS_TYPES_H
19#include <sys/types.h>
20#endif
21#ifdef HAVE_UNISTD_H
22#include <unistd.h>
23#endif
24#ifdef HAVE_STDLIB_H
25#include <stdlib.h>
26#endif
27#ifdef HAVE_PTHREAD_H
28#include <pthread.h>
29#endif
Igor Zlatkovicf2160a02002-10-31 15:58:42 +000030
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +000031#ifdef HAVE_WIN32_THREADS
32#include <windows.h>
Igor Zlatkovicf2160a02002-10-31 15:58:42 +000033#ifndef HAVE_COMPILER_TLS
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +000034#include <process.h>
35#endif
36#endif
Daniel Veillardb8478642001-10-12 17:29:10 +000037
38#if defined(SOLARIS)
39#include <note.h>
40#endif
41
Daniel Veillard6f350292001-10-14 09:56:15 +000042/* #define DEBUG_THREADS */
Daniel Veillardb8478642001-10-12 17:29:10 +000043
44/*
45 * TODO: this module still uses malloc/free and not xmlMalloc/xmlFree
46 * to avoid some crazyness since xmlMalloc/xmlFree may actually
47 * be hosted on allocated blocks needing them for the allocation ...
48 */
49
50/*
51 * xmlMutex are a simple mutual exception locks
52 */
53struct _xmlMutex {
54#ifdef HAVE_PTHREAD_H
55 pthread_mutex_t lock;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +000056#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +000057 HANDLE mutex;
Daniel Veillardb8478642001-10-12 17:29:10 +000058#else
59 int empty;
60#endif
61};
62
63/*
64 * xmlRMutex are reentrant mutual exception locks
65 */
66struct _xmlRMutex {
67#ifdef HAVE_PTHREAD_H
68 pthread_mutex_t lock;
69 unsigned int held;
70 unsigned int waiters;
71 pthread_t tid;
72 pthread_cond_t cv;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +000073#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +000074 CRITICAL_SECTION cs;
75 unsigned int count;
Daniel Veillardb8478642001-10-12 17:29:10 +000076#else
77 int empty;
78#endif
79};
80/*
81 * This module still has some internal static data.
82 * - xmlLibraryLock a global lock
83 * - globalkey used for per-thread data
Daniel Veillardb8478642001-10-12 17:29:10 +000084 */
Daniel Veillard6f350292001-10-14 09:56:15 +000085
Daniel Veillardb8478642001-10-12 17:29:10 +000086#ifdef HAVE_PTHREAD_H
Daniel Veillardb8478642001-10-12 17:29:10 +000087static pthread_key_t globalkey;
Daniel Veillard6f350292001-10-14 09:56:15 +000088static pthread_t mainthread;
Daniel Veillarde28313b2001-12-06 14:08:31 +000089static pthread_once_t once_control = PTHREAD_ONCE_INIT;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +000090#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +000091#if defined(HAVE_COMPILER_TLS)
92static __declspec(thread) xmlGlobalState tlstate;
93static __declspec(thread) int tlstate_inited = 0;
94#else /* HAVE_COMPILER_TLS */
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +000095static DWORD globalkey = TLS_OUT_OF_INDEXES;
Igor Zlatkovicf2160a02002-10-31 15:58:42 +000096#endif /* HAVE_COMPILER_TLS */
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +000097static DWORD mainthread;
98static int run_once_init = 1;
99#endif /* HAVE_WIN32_THREADS */
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000100
Daniel Veillardb8478642001-10-12 17:29:10 +0000101static xmlRMutexPtr xmlLibraryLock = NULL;
Daniel Veillarde28313b2001-12-06 14:08:31 +0000102static void xmlOnceInit(void);
Daniel Veillardb8478642001-10-12 17:29:10 +0000103
104/**
Daniel Veillard01c13b52002-12-10 15:19:08 +0000105 * xmlNewMutex:
Daniel Veillardb8478642001-10-12 17:29:10 +0000106 *
107 * xmlNewMutex() is used to allocate a libxml2 token struct for use in
108 * synchronizing access to data.
109 *
110 * Returns a new simple mutex pointer or NULL in case of error
111 */
112xmlMutexPtr
113xmlNewMutex(void)
114{
115 xmlMutexPtr tok;
116
117 if ((tok = malloc(sizeof(xmlMutex))) == NULL)
118 return (NULL);
119#ifdef HAVE_PTHREAD_H
120 pthread_mutex_init(&tok->lock, NULL);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000121#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000122 tok->mutex = CreateMutex(NULL, FALSE, NULL);
Daniel Veillardb8478642001-10-12 17:29:10 +0000123#endif
124 return (tok);
125}
126
127/**
128 * xmlFreeMutex:
129 * @tok: the simple mutex
130 *
131 * xmlFreeMutex() is used to reclaim resources associated with a libxml2 token
132 * struct.
133 */
134void
135xmlFreeMutex(xmlMutexPtr tok)
136{
Daniel Veillarddf101d82003-07-08 14:03:36 +0000137 if (tok == NULL) return;
138
Daniel Veillardb8478642001-10-12 17:29:10 +0000139#ifdef HAVE_PTHREAD_H
140 pthread_mutex_destroy(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000141#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000142 CloseHandle(tok->mutex);
Daniel Veillardb8478642001-10-12 17:29:10 +0000143#endif
144 free(tok);
145}
146
147/**
148 * xmlMutexLock:
149 * @tok: the simple mutex
150 *
151 * xmlMutexLock() is used to lock a libxml2 token.
152 */
153void
Daniel Veillard70bcb0e2003-08-08 14:00:28 +0000154xmlMutexLock(xmlMutexPtr tok)
Daniel Veillardb8478642001-10-12 17:29:10 +0000155{
Daniel Veillard70bcb0e2003-08-08 14:00:28 +0000156 if (tok == NULL)
157 return;
Daniel Veillardb8478642001-10-12 17:29:10 +0000158#ifdef HAVE_PTHREAD_H
159 pthread_mutex_lock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000160#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000161 WaitForSingleObject(tok->mutex, INFINITE);
Daniel Veillardb8478642001-10-12 17:29:10 +0000162#endif
163
164}
165
166/**
167 * xmlMutexUnlock:
168 * @tok: the simple mutex
169 *
170 * xmlMutexUnlock() is used to unlock a libxml2 token.
171 */
172void
Daniel Veillard5805be22003-08-28 08:03:23 +0000173xmlMutexUnlock(xmlMutexPtr tok)
Daniel Veillardb8478642001-10-12 17:29:10 +0000174{
Daniel Veillard5805be22003-08-28 08:03:23 +0000175 if (tok == NULL)
176 return;
Daniel Veillardb8478642001-10-12 17:29:10 +0000177#ifdef HAVE_PTHREAD_H
178 pthread_mutex_unlock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000179#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000180 ReleaseMutex(tok->mutex);
Daniel Veillardb8478642001-10-12 17:29:10 +0000181#endif
182}
183
184/**
Daniel Veillard01c13b52002-12-10 15:19:08 +0000185 * xmlNewRMutex:
Daniel Veillardb8478642001-10-12 17:29:10 +0000186 *
187 * xmlRNewMutex() is used to allocate a reentrant mutex for use in
188 * synchronizing access to data. token_r is a re-entrant lock and thus useful
189 * for synchronizing access to data structures that may be manipulated in a
190 * recursive fashion.
191 *
192 * Returns the new reentrant mutex pointer or NULL in case of error
193 */
194xmlRMutexPtr
195xmlNewRMutex(void)
196{
197 xmlRMutexPtr tok;
198
199 if ((tok = malloc(sizeof(xmlRMutex))) == NULL)
200 return (NULL);
201#ifdef HAVE_PTHREAD_H
202 pthread_mutex_init(&tok->lock, NULL);
203 tok->held = 0;
204 tok->waiters = 0;
William M. Brack59002e72003-07-04 17:01:59 +0000205 pthread_cond_init(&tok->cv, NULL);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000206#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000207 InitializeCriticalSection(&tok->cs);
208 tok->count = 0;
Daniel Veillardb8478642001-10-12 17:29:10 +0000209#endif
210 return (tok);
211}
212
213/**
Daniel Veillard01c13b52002-12-10 15:19:08 +0000214 * xmlFreeRMutex:
Daniel Veillardb8478642001-10-12 17:29:10 +0000215 * @tok: the reentrant mutex
216 *
217 * xmlRFreeMutex() is used to reclaim resources associated with a
218 * reentrant mutex.
219 */
220void
Daniel Veillard0ba59232002-02-10 13:20:39 +0000221xmlFreeRMutex(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000222{
223#ifdef HAVE_PTHREAD_H
224 pthread_mutex_destroy(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000225#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000226 DeleteCriticalSection(&tok->cs);
Daniel Veillardb8478642001-10-12 17:29:10 +0000227#endif
228 free(tok);
229}
230
231/**
232 * xmlRMutexLock:
233 * @tok: the reentrant mutex
234 *
235 * xmlRMutexLock() is used to lock a libxml2 token_r.
236 */
237void
Daniel Veillard0ba59232002-02-10 13:20:39 +0000238xmlRMutexLock(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000239{
240#ifdef HAVE_PTHREAD_H
241 pthread_mutex_lock(&tok->lock);
242 if (tok->held) {
243 if (pthread_equal(tok->tid, pthread_self())) {
244 tok->held++;
245 pthread_mutex_unlock(&tok->lock);
246 return;
247 } else {
248 tok->waiters++;
249 while (tok->held)
250 pthread_cond_wait(&tok->cv, &tok->lock);
251 tok->waiters--;
252 }
253 }
254 tok->tid = pthread_self();
255 tok->held = 1;
256 pthread_mutex_unlock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000257#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000258 EnterCriticalSection(&tok->cs);
259 ++tok->count;
Daniel Veillardb8478642001-10-12 17:29:10 +0000260#endif
261}
262
263/**
264 * xmlRMutexUnlock:
265 * @tok: the reentrant mutex
266 *
267 * xmlRMutexUnlock() is used to unlock a libxml2 token_r.
268 */
269void
Daniel Veillard0ba59232002-02-10 13:20:39 +0000270xmlRMutexUnlock(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000271{
272#ifdef HAVE_PTHREAD_H
273 pthread_mutex_lock(&tok->lock);
274 tok->held--;
275 if (tok->held == 0) {
276 if (tok->waiters)
277 pthread_cond_signal(&tok->cv);
278 tok->tid = 0;
279 }
280 pthread_mutex_unlock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000281#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000282 if (!--tok->count)
283 LeaveCriticalSection(&tok->cs);
Daniel Veillardb8478642001-10-12 17:29:10 +0000284#endif
285}
286
287/************************************************************************
288 * *
289 * Per thread global state handling *
290 * *
291 ************************************************************************/
292
Daniel Veillard8bdb91d2001-10-31 17:52:43 +0000293#ifdef LIBXML_THREAD_ENABLED
Daniel Veillardb8478642001-10-12 17:29:10 +0000294/**
295 * xmlFreeGlobalState:
296 * @state: a thread global state
297 *
298 * xmlFreeGlobalState() is called when a thread terminates with a non-NULL
299 * global state. It is is used here to reclaim memory resources.
300 */
301static void
302xmlFreeGlobalState(void *state)
303{
304 free(state);
305}
306
307/**
308 * xmlNewGlobalState:
309 *
310 * xmlNewGlobalState() allocates a global state. This structure is used to
311 * hold all data for use by a thread when supporting backwards compatibility
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000312 * of libxml2 to pre-thread-safe behaviour.
Daniel Veillardb8478642001-10-12 17:29:10 +0000313 *
314 * Returns the newly allocated xmlGlobalStatePtr or NULL in case of error
315 */
316static xmlGlobalStatePtr
317xmlNewGlobalState(void)
318{
319 xmlGlobalState *gs;
320
321 gs = malloc(sizeof(xmlGlobalState));
322 if (gs == NULL)
323 return(NULL);
324
William M. Brack8b2c7f12002-11-22 05:07:29 +0000325 memset(gs, 0, sizeof(xmlGlobalState));
Daniel Veillardb8478642001-10-12 17:29:10 +0000326 xmlInitializeGlobalState(gs);
327 return (gs);
328}
Daniel Veillard8bdb91d2001-10-31 17:52:43 +0000329#endif /* LIBXML_THREAD_ENABLED */
Daniel Veillardb8478642001-10-12 17:29:10 +0000330
331
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000332#ifdef HAVE_WIN32_THREADS
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000333#if !defined(HAVE_COMPILER_TLS) && defined(LIBXML_STATIC)
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000334typedef struct _xmlGlobalStateCleanupHelperParams
335{
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000336 HANDLE thread;
337 void *memory;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000338} xmlGlobalStateCleanupHelperParams;
339
Daniel Veillard01c13b52002-12-10 15:19:08 +0000340static void xmlGlobalStateCleanupHelper (void *p)
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000341{
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000342 xmlGlobalStateCleanupHelperParams *params = (xmlGlobalStateCleanupHelperParams *) p;
343 WaitForSingleObject(params->thread, INFINITE);
344 CloseHandle(params->thread);
345 xmlFreeGlobalState(params->memory);
346 free(params);
347 _endthread();
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000348}
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000349#endif /* HAVE_COMPILER_TLS && LIBXML_STATIC */
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000350#endif /* HAVE_WIN32_THREADS */
351
Daniel Veillard01c13b52002-12-10 15:19:08 +0000352/**
353 * xmlGetGlobalState:
354 *
355 * xmlGetGlobalState() is called to retrieve the global state for a thread.
356 *
357 * Returns the thread global state or NULL in case of error
358 */
Daniel Veillardb8478642001-10-12 17:29:10 +0000359xmlGlobalStatePtr
360xmlGetGlobalState(void)
361{
362#ifdef HAVE_PTHREAD_H
363 xmlGlobalState *globalval;
364
Daniel Veillarde28313b2001-12-06 14:08:31 +0000365 pthread_once(&once_control, xmlOnceInit);
366
Daniel Veillardb8478642001-10-12 17:29:10 +0000367 if ((globalval = (xmlGlobalState *)
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000368 pthread_getspecific(globalkey)) == NULL) {
Daniel Veillardb8478642001-10-12 17:29:10 +0000369 xmlGlobalState *tsd = xmlNewGlobalState();
370
371 pthread_setspecific(globalkey, tsd);
372 return (tsd);
Daniel Veillard6f350292001-10-14 09:56:15 +0000373 }
374 return (globalval);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000375#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000376#if defined(HAVE_COMPILER_TLS)
377 if (!tlstate_inited) {
378 tlstate_inited = 1;
379 xmlInitializeGlobalState(&tlstate);
380 }
381 return &tlstate;
382#else /* HAVE_COMPILER_TLS */
383 xmlGlobalState *globalval;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000384
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000385 if (run_once_init) {
386 run_once_init = 0;
387 xmlOnceInit();
388 }
389 if ((globalval = (xmlGlobalState *) TlsGetValue(globalkey)) == NULL) {
390 xmlGlobalState *tsd = xmlNewGlobalState();
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000391#if defined(LIBXML_STATIC)
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000392 xmlGlobalStateCleanupHelperParams *p =
393 (xmlGlobalStateCleanupHelperParams *) malloc(sizeof(xmlGlobalStateCleanupHelperParams));
394 p->memory = tsd;
395 DuplicateHandle(GetCurrentProcess(), GetCurrentThread(),
396 GetCurrentProcess(), &p->thread, 0, TRUE, DUPLICATE_SAME_ACCESS);
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000397#endif
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000398 TlsSetValue(globalkey, tsd);
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000399#if defined(LIBXML_STATIC)
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000400 _beginthread(xmlGlobalStateCleanupHelper, 0, p);
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000401#endif
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000402
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000403 return (tsd);
404 }
405 return (globalval);
406#endif /* HAVE_COMPILER_TLS */
Daniel Veillard6f350292001-10-14 09:56:15 +0000407#else
408 return(NULL);
Daniel Veillardb8478642001-10-12 17:29:10 +0000409#endif
410}
411
Daniel Veillardb8478642001-10-12 17:29:10 +0000412/************************************************************************
413 * *
414 * Library wide thread interfaces *
415 * *
416 ************************************************************************/
417
418/**
Daniel Veillard3c01b1d2001-10-17 15:58:35 +0000419 * xmlGetThreadId:
420 *
421 * xmlGetThreadId() find the current thread ID number
422 *
423 * Returns the current thread ID number
424 */
425int
426xmlGetThreadId(void)
427{
428#ifdef HAVE_PTHREAD_H
429 return((int) pthread_self());
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000430#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000431 return GetCurrentThreadId();
Daniel Veillard3c01b1d2001-10-17 15:58:35 +0000432#else
433 return((int) 0);
434#endif
435}
436
437/**
Daniel Veillard6f350292001-10-14 09:56:15 +0000438 * xmlIsMainThread:
439 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000440 * xmlIsMainThread() check whether the current thread is the main thread.
Daniel Veillard6f350292001-10-14 09:56:15 +0000441 *
442 * Returns 1 if the current thread is the main thread, 0 otherwise
443 */
444int
445xmlIsMainThread(void)
446{
Daniel Veillarde28313b2001-12-06 14:08:31 +0000447#ifdef HAVE_PTHREAD_H
448 pthread_once(&once_control, xmlOnceInit);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000449#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000450 if (run_once_init) {
451 run_once_init = 0;
452 xmlOnceInit ();
453 }
Daniel Veillarde28313b2001-12-06 14:08:31 +0000454#endif
Daniel Veillard6f350292001-10-14 09:56:15 +0000455
456#ifdef DEBUG_THREADS
457 xmlGenericError(xmlGenericErrorContext, "xmlIsMainThread()\n");
458#endif
459#ifdef HAVE_PTHREAD_H
460 return(mainthread == pthread_self());
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000461#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000462 return(mainthread == GetCurrentThreadId ());
Daniel Veillard6f350292001-10-14 09:56:15 +0000463#else
464 return(1);
465#endif
466}
467
468/**
Daniel Veillardb8478642001-10-12 17:29:10 +0000469 * xmlLockLibrary:
470 *
471 * xmlLockLibrary() is used to take out a re-entrant lock on the libxml2
472 * library.
473 */
474void
475xmlLockLibrary(void)
476{
Daniel Veillard6f350292001-10-14 09:56:15 +0000477#ifdef DEBUG_THREADS
478 xmlGenericError(xmlGenericErrorContext, "xmlLockLibrary()\n");
479#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000480 xmlRMutexLock(xmlLibraryLock);
481}
482
483/**
484 * xmlUnlockLibrary:
485 *
486 * xmlUnlockLibrary() is used to release a re-entrant lock on the libxml2
487 * library.
488 */
489void
490xmlUnlockLibrary(void)
491{
Daniel Veillard6f350292001-10-14 09:56:15 +0000492#ifdef DEBUG_THREADS
493 xmlGenericError(xmlGenericErrorContext, "xmlUnlockLibrary()\n");
494#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000495 xmlRMutexUnlock(xmlLibraryLock);
496}
497
498/**
499 * xmlInitThreads:
500 *
501 * xmlInitThreads() is used to to initialize all the thread related
502 * data of the libxml2 library.
503 */
504void
505xmlInitThreads(void)
506{
Daniel Veillard6f350292001-10-14 09:56:15 +0000507#ifdef DEBUG_THREADS
508 xmlGenericError(xmlGenericErrorContext, "xmlInitThreads()\n");
509#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000510}
511
512/**
513 * xmlCleanupThreads:
514 *
515 * xmlCleanupThreads() is used to to cleanup all the thread related
516 * data of the libxml2 library once processing has ended.
517 */
518void
519xmlCleanupThreads(void)
520{
Daniel Veillard6f350292001-10-14 09:56:15 +0000521#ifdef DEBUG_THREADS
522 xmlGenericError(xmlGenericErrorContext, "xmlCleanupThreads()\n");
523#endif
Daniel Veillarde28313b2001-12-06 14:08:31 +0000524}
Daniel Veillard6f350292001-10-14 09:56:15 +0000525
Daniel Veillarde28313b2001-12-06 14:08:31 +0000526/**
527 * xmlOnceInit
528 *
529 * xmlOnceInit() is used to initialize the value of mainthread for use
530 * in other routines. This function should only be called using
531 * pthread_once() in association with the once_control variable to ensure
532 * that the function is only called once. See man pthread_once for more
533 * details.
534 */
535static void
536xmlOnceInit(void) {
537#ifdef HAVE_PTHREAD_H
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000538 (void) pthread_key_create(&globalkey, xmlFreeGlobalState);
Daniel Veillarde28313b2001-12-06 14:08:31 +0000539 mainthread = pthread_self();
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000540#endif
541
542#if defined(HAVE_WIN32_THREADS)
543#if !defined(HAVE_COMPILER_TLS)
544 globalkey = TlsAlloc();
545#endif
546 mainthread = GetCurrentThreadId();
Daniel Veillarde28313b2001-12-06 14:08:31 +0000547#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000548}
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000549
550/**
William M. Brack7a821652003-08-15 07:27:40 +0000551 * DllMain:
552 * @hinstDLL: handle to DLL instance
553 * @fdwReason: Reason code for entry
554 * @lpvReserved: generic pointer (depends upon reason code)
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000555 *
556 * Entry point for Windows library. It is being used to free thread-specific
557 * storage.
William M. Brack7a821652003-08-15 07:27:40 +0000558 *
559 * Returns TRUE always
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000560 */
561#if defined(HAVE_WIN32_THREADS) && !defined(LIBXML_STATIC)
562BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
563{
564 switch(fdwReason) {
565 case DLL_THREAD_DETACH:
566 if (globalkey != TLS_OUT_OF_INDEXES) {
567 xmlGlobalState *globalval = (xmlGlobalState *)TlsGetValue(globalkey);
568 if (globalval) {
569 xmlFreeGlobalState(globalval);
570 TlsSetValue(globalkey, NULL);
571 }
572 }
573 break;
574 case DLL_PROCESS_DETACH:
575 if (globalkey != TLS_OUT_OF_INDEXES) {
576 TlsFree(globalkey);
577 globalkey = TLS_OUT_OF_INDEXES;
578 }
579 break;
580 }
581 return TRUE;
582}
583#endif
584