blob: 8e7a08cb4c11a9fd84f8b1cdeac6c686181c5fc9 [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 Veillard0ba59232002-02-10 13:20:39 +0000173xmlMutexUnlock(xmlMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000174{
175#ifdef HAVE_PTHREAD_H
176 pthread_mutex_unlock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000177#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000178 ReleaseMutex(tok->mutex);
Daniel Veillardb8478642001-10-12 17:29:10 +0000179#endif
180}
181
182/**
Daniel Veillard01c13b52002-12-10 15:19:08 +0000183 * xmlNewRMutex:
Daniel Veillardb8478642001-10-12 17:29:10 +0000184 *
185 * xmlRNewMutex() is used to allocate a reentrant mutex for use in
186 * synchronizing access to data. token_r is a re-entrant lock and thus useful
187 * for synchronizing access to data structures that may be manipulated in a
188 * recursive fashion.
189 *
190 * Returns the new reentrant mutex pointer or NULL in case of error
191 */
192xmlRMutexPtr
193xmlNewRMutex(void)
194{
195 xmlRMutexPtr tok;
196
197 if ((tok = malloc(sizeof(xmlRMutex))) == NULL)
198 return (NULL);
199#ifdef HAVE_PTHREAD_H
200 pthread_mutex_init(&tok->lock, NULL);
201 tok->held = 0;
202 tok->waiters = 0;
William M. Brack59002e72003-07-04 17:01:59 +0000203 pthread_cond_init(&tok->cv, NULL);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000204#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000205 InitializeCriticalSection(&tok->cs);
206 tok->count = 0;
Daniel Veillardb8478642001-10-12 17:29:10 +0000207#endif
208 return (tok);
209}
210
211/**
Daniel Veillard01c13b52002-12-10 15:19:08 +0000212 * xmlFreeRMutex:
Daniel Veillardb8478642001-10-12 17:29:10 +0000213 * @tok: the reentrant mutex
214 *
215 * xmlRFreeMutex() is used to reclaim resources associated with a
216 * reentrant mutex.
217 */
218void
Daniel Veillard0ba59232002-02-10 13:20:39 +0000219xmlFreeRMutex(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000220{
221#ifdef HAVE_PTHREAD_H
222 pthread_mutex_destroy(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000223#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000224 DeleteCriticalSection(&tok->cs);
Daniel Veillardb8478642001-10-12 17:29:10 +0000225#endif
226 free(tok);
227}
228
229/**
230 * xmlRMutexLock:
231 * @tok: the reentrant mutex
232 *
233 * xmlRMutexLock() is used to lock a libxml2 token_r.
234 */
235void
Daniel Veillard0ba59232002-02-10 13:20:39 +0000236xmlRMutexLock(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000237{
238#ifdef HAVE_PTHREAD_H
239 pthread_mutex_lock(&tok->lock);
240 if (tok->held) {
241 if (pthread_equal(tok->tid, pthread_self())) {
242 tok->held++;
243 pthread_mutex_unlock(&tok->lock);
244 return;
245 } else {
246 tok->waiters++;
247 while (tok->held)
248 pthread_cond_wait(&tok->cv, &tok->lock);
249 tok->waiters--;
250 }
251 }
252 tok->tid = pthread_self();
253 tok->held = 1;
254 pthread_mutex_unlock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000255#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000256 EnterCriticalSection(&tok->cs);
257 ++tok->count;
Daniel Veillardb8478642001-10-12 17:29:10 +0000258#endif
259}
260
261/**
262 * xmlRMutexUnlock:
263 * @tok: the reentrant mutex
264 *
265 * xmlRMutexUnlock() is used to unlock a libxml2 token_r.
266 */
267void
Daniel Veillard0ba59232002-02-10 13:20:39 +0000268xmlRMutexUnlock(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000269{
270#ifdef HAVE_PTHREAD_H
271 pthread_mutex_lock(&tok->lock);
272 tok->held--;
273 if (tok->held == 0) {
274 if (tok->waiters)
275 pthread_cond_signal(&tok->cv);
276 tok->tid = 0;
277 }
278 pthread_mutex_unlock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000279#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000280 if (!--tok->count)
281 LeaveCriticalSection(&tok->cs);
Daniel Veillardb8478642001-10-12 17:29:10 +0000282#endif
283}
284
285/************************************************************************
286 * *
287 * Per thread global state handling *
288 * *
289 ************************************************************************/
290
Daniel Veillard8bdb91d2001-10-31 17:52:43 +0000291#ifdef LIBXML_THREAD_ENABLED
Daniel Veillardb8478642001-10-12 17:29:10 +0000292/**
293 * xmlFreeGlobalState:
294 * @state: a thread global state
295 *
296 * xmlFreeGlobalState() is called when a thread terminates with a non-NULL
297 * global state. It is is used here to reclaim memory resources.
298 */
299static void
300xmlFreeGlobalState(void *state)
301{
302 free(state);
303}
304
305/**
306 * xmlNewGlobalState:
307 *
308 * xmlNewGlobalState() allocates a global state. This structure is used to
309 * hold all data for use by a thread when supporting backwards compatibility
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000310 * of libxml2 to pre-thread-safe behaviour.
Daniel Veillardb8478642001-10-12 17:29:10 +0000311 *
312 * Returns the newly allocated xmlGlobalStatePtr or NULL in case of error
313 */
314static xmlGlobalStatePtr
315xmlNewGlobalState(void)
316{
317 xmlGlobalState *gs;
318
319 gs = malloc(sizeof(xmlGlobalState));
320 if (gs == NULL)
321 return(NULL);
322
William M. Brack8b2c7f12002-11-22 05:07:29 +0000323 memset(gs, 0, sizeof(xmlGlobalState));
Daniel Veillardb8478642001-10-12 17:29:10 +0000324 xmlInitializeGlobalState(gs);
325 return (gs);
326}
Daniel Veillard8bdb91d2001-10-31 17:52:43 +0000327#endif /* LIBXML_THREAD_ENABLED */
Daniel Veillardb8478642001-10-12 17:29:10 +0000328
329
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000330#ifdef HAVE_WIN32_THREADS
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000331#if !defined(HAVE_COMPILER_TLS) && defined(LIBXML_STATIC)
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000332typedef struct _xmlGlobalStateCleanupHelperParams
333{
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000334 HANDLE thread;
335 void *memory;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000336} xmlGlobalStateCleanupHelperParams;
337
Daniel Veillard01c13b52002-12-10 15:19:08 +0000338static void xmlGlobalStateCleanupHelper (void *p)
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000339{
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000340 xmlGlobalStateCleanupHelperParams *params = (xmlGlobalStateCleanupHelperParams *) p;
341 WaitForSingleObject(params->thread, INFINITE);
342 CloseHandle(params->thread);
343 xmlFreeGlobalState(params->memory);
344 free(params);
345 _endthread();
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000346}
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000347#endif /* HAVE_COMPILER_TLS && LIBXML_STATIC */
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000348#endif /* HAVE_WIN32_THREADS */
349
Daniel Veillard01c13b52002-12-10 15:19:08 +0000350/**
351 * xmlGetGlobalState:
352 *
353 * xmlGetGlobalState() is called to retrieve the global state for a thread.
354 *
355 * Returns the thread global state or NULL in case of error
356 */
Daniel Veillardb8478642001-10-12 17:29:10 +0000357xmlGlobalStatePtr
358xmlGetGlobalState(void)
359{
360#ifdef HAVE_PTHREAD_H
361 xmlGlobalState *globalval;
362
Daniel Veillarde28313b2001-12-06 14:08:31 +0000363 pthread_once(&once_control, xmlOnceInit);
364
Daniel Veillardb8478642001-10-12 17:29:10 +0000365 if ((globalval = (xmlGlobalState *)
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000366 pthread_getspecific(globalkey)) == NULL) {
Daniel Veillardb8478642001-10-12 17:29:10 +0000367 xmlGlobalState *tsd = xmlNewGlobalState();
368
369 pthread_setspecific(globalkey, tsd);
370 return (tsd);
Daniel Veillard6f350292001-10-14 09:56:15 +0000371 }
372 return (globalval);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000373#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000374#if defined(HAVE_COMPILER_TLS)
375 if (!tlstate_inited) {
376 tlstate_inited = 1;
377 xmlInitializeGlobalState(&tlstate);
378 }
379 return &tlstate;
380#else /* HAVE_COMPILER_TLS */
381 xmlGlobalState *globalval;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000382
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000383 if (run_once_init) {
384 run_once_init = 0;
385 xmlOnceInit();
386 }
387 if ((globalval = (xmlGlobalState *) TlsGetValue(globalkey)) == NULL) {
388 xmlGlobalState *tsd = xmlNewGlobalState();
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000389#if defined(LIBXML_STATIC)
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000390 xmlGlobalStateCleanupHelperParams *p =
391 (xmlGlobalStateCleanupHelperParams *) malloc(sizeof(xmlGlobalStateCleanupHelperParams));
392 p->memory = tsd;
393 DuplicateHandle(GetCurrentProcess(), GetCurrentThread(),
394 GetCurrentProcess(), &p->thread, 0, TRUE, DUPLICATE_SAME_ACCESS);
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000395#endif
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000396 TlsSetValue(globalkey, tsd);
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000397#if defined(LIBXML_STATIC)
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000398 _beginthread(xmlGlobalStateCleanupHelper, 0, p);
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000399#endif
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000400
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000401 return (tsd);
402 }
403 return (globalval);
404#endif /* HAVE_COMPILER_TLS */
Daniel Veillard6f350292001-10-14 09:56:15 +0000405#else
406 return(NULL);
Daniel Veillardb8478642001-10-12 17:29:10 +0000407#endif
408}
409
Daniel Veillardb8478642001-10-12 17:29:10 +0000410/************************************************************************
411 * *
412 * Library wide thread interfaces *
413 * *
414 ************************************************************************/
415
416/**
Daniel Veillard3c01b1d2001-10-17 15:58:35 +0000417 * xmlGetThreadId:
418 *
419 * xmlGetThreadId() find the current thread ID number
420 *
421 * Returns the current thread ID number
422 */
423int
424xmlGetThreadId(void)
425{
426#ifdef HAVE_PTHREAD_H
427 return((int) pthread_self());
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000428#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000429 return GetCurrentThreadId();
Daniel Veillard3c01b1d2001-10-17 15:58:35 +0000430#else
431 return((int) 0);
432#endif
433}
434
435/**
Daniel Veillard6f350292001-10-14 09:56:15 +0000436 * xmlIsMainThread:
437 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000438 * xmlIsMainThread() check whether the current thread is the main thread.
Daniel Veillard6f350292001-10-14 09:56:15 +0000439 *
440 * Returns 1 if the current thread is the main thread, 0 otherwise
441 */
442int
443xmlIsMainThread(void)
444{
Daniel Veillarde28313b2001-12-06 14:08:31 +0000445#ifdef HAVE_PTHREAD_H
446 pthread_once(&once_control, xmlOnceInit);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000447#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000448 if (run_once_init) {
449 run_once_init = 0;
450 xmlOnceInit ();
451 }
Daniel Veillarde28313b2001-12-06 14:08:31 +0000452#endif
Daniel Veillard6f350292001-10-14 09:56:15 +0000453
454#ifdef DEBUG_THREADS
455 xmlGenericError(xmlGenericErrorContext, "xmlIsMainThread()\n");
456#endif
457#ifdef HAVE_PTHREAD_H
458 return(mainthread == pthread_self());
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000459#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000460 return(mainthread == GetCurrentThreadId ());
Daniel Veillard6f350292001-10-14 09:56:15 +0000461#else
462 return(1);
463#endif
464}
465
466/**
Daniel Veillardb8478642001-10-12 17:29:10 +0000467 * xmlLockLibrary:
468 *
469 * xmlLockLibrary() is used to take out a re-entrant lock on the libxml2
470 * library.
471 */
472void
473xmlLockLibrary(void)
474{
Daniel Veillard6f350292001-10-14 09:56:15 +0000475#ifdef DEBUG_THREADS
476 xmlGenericError(xmlGenericErrorContext, "xmlLockLibrary()\n");
477#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000478 xmlRMutexLock(xmlLibraryLock);
479}
480
481/**
482 * xmlUnlockLibrary:
483 *
484 * xmlUnlockLibrary() is used to release a re-entrant lock on the libxml2
485 * library.
486 */
487void
488xmlUnlockLibrary(void)
489{
Daniel Veillard6f350292001-10-14 09:56:15 +0000490#ifdef DEBUG_THREADS
491 xmlGenericError(xmlGenericErrorContext, "xmlUnlockLibrary()\n");
492#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000493 xmlRMutexUnlock(xmlLibraryLock);
494}
495
496/**
497 * xmlInitThreads:
498 *
499 * xmlInitThreads() is used to to initialize all the thread related
500 * data of the libxml2 library.
501 */
502void
503xmlInitThreads(void)
504{
Daniel Veillard6f350292001-10-14 09:56:15 +0000505#ifdef DEBUG_THREADS
506 xmlGenericError(xmlGenericErrorContext, "xmlInitThreads()\n");
507#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000508}
509
510/**
511 * xmlCleanupThreads:
512 *
513 * xmlCleanupThreads() is used to to cleanup all the thread related
514 * data of the libxml2 library once processing has ended.
515 */
516void
517xmlCleanupThreads(void)
518{
Daniel Veillard6f350292001-10-14 09:56:15 +0000519#ifdef DEBUG_THREADS
520 xmlGenericError(xmlGenericErrorContext, "xmlCleanupThreads()\n");
521#endif
Daniel Veillarde28313b2001-12-06 14:08:31 +0000522}
Daniel Veillard6f350292001-10-14 09:56:15 +0000523
Daniel Veillarde28313b2001-12-06 14:08:31 +0000524/**
525 * xmlOnceInit
526 *
527 * xmlOnceInit() is used to initialize the value of mainthread for use
528 * in other routines. This function should only be called using
529 * pthread_once() in association with the once_control variable to ensure
530 * that the function is only called once. See man pthread_once for more
531 * details.
532 */
533static void
534xmlOnceInit(void) {
535#ifdef HAVE_PTHREAD_H
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000536 (void) pthread_key_create(&globalkey, xmlFreeGlobalState);
Daniel Veillarde28313b2001-12-06 14:08:31 +0000537 mainthread = pthread_self();
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000538#endif
539
540#if defined(HAVE_WIN32_THREADS)
541#if !defined(HAVE_COMPILER_TLS)
542 globalkey = TlsAlloc();
543#endif
544 mainthread = GetCurrentThreadId();
Daniel Veillarde28313b2001-12-06 14:08:31 +0000545#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000546}
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000547
548/**
549 * DllMain
550 *
551 * Entry point for Windows library. It is being used to free thread-specific
552 * storage.
553 */
554#if defined(HAVE_WIN32_THREADS) && !defined(LIBXML_STATIC)
555BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
556{
557 switch(fdwReason) {
558 case DLL_THREAD_DETACH:
559 if (globalkey != TLS_OUT_OF_INDEXES) {
560 xmlGlobalState *globalval = (xmlGlobalState *)TlsGetValue(globalkey);
561 if (globalval) {
562 xmlFreeGlobalState(globalval);
563 TlsSetValue(globalkey, NULL);
564 }
565 }
566 break;
567 case DLL_PROCESS_DETACH:
568 if (globalkey != TLS_OUT_OF_INDEXES) {
569 TlsFree(globalkey);
570 globalkey = TLS_OUT_OF_INDEXES;
571 }
572 break;
573 }
574 return TRUE;
575}
576#endif
577