blob: 3a879fca8975ec950836f966f9c3da7c060c0237 [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 Veillard0ba59232002-02-10 13:20:39 +0000154xmlMutexLock(xmlMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000155{
156#ifdef HAVE_PTHREAD_H
157 pthread_mutex_lock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000158#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000159 WaitForSingleObject(tok->mutex, INFINITE);
Daniel Veillardb8478642001-10-12 17:29:10 +0000160#endif
161
162}
163
164/**
165 * xmlMutexUnlock:
166 * @tok: the simple mutex
167 *
168 * xmlMutexUnlock() is used to unlock a libxml2 token.
169 */
170void
Daniel Veillard0ba59232002-02-10 13:20:39 +0000171xmlMutexUnlock(xmlMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000172{
173#ifdef HAVE_PTHREAD_H
174 pthread_mutex_unlock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000175#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000176 ReleaseMutex(tok->mutex);
Daniel Veillardb8478642001-10-12 17:29:10 +0000177#endif
178}
179
180/**
Daniel Veillard01c13b52002-12-10 15:19:08 +0000181 * xmlNewRMutex:
Daniel Veillardb8478642001-10-12 17:29:10 +0000182 *
183 * xmlRNewMutex() is used to allocate a reentrant mutex for use in
184 * synchronizing access to data. token_r is a re-entrant lock and thus useful
185 * for synchronizing access to data structures that may be manipulated in a
186 * recursive fashion.
187 *
188 * Returns the new reentrant mutex pointer or NULL in case of error
189 */
190xmlRMutexPtr
191xmlNewRMutex(void)
192{
193 xmlRMutexPtr tok;
194
195 if ((tok = malloc(sizeof(xmlRMutex))) == NULL)
196 return (NULL);
197#ifdef HAVE_PTHREAD_H
198 pthread_mutex_init(&tok->lock, NULL);
199 tok->held = 0;
200 tok->waiters = 0;
William M. Brack59002e72003-07-04 17:01:59 +0000201 pthread_cond_init(&tok->cv, NULL);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000202#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000203 InitializeCriticalSection(&tok->cs);
204 tok->count = 0;
Daniel Veillardb8478642001-10-12 17:29:10 +0000205#endif
206 return (tok);
207}
208
209/**
Daniel Veillard01c13b52002-12-10 15:19:08 +0000210 * xmlFreeRMutex:
Daniel Veillardb8478642001-10-12 17:29:10 +0000211 * @tok: the reentrant mutex
212 *
213 * xmlRFreeMutex() is used to reclaim resources associated with a
214 * reentrant mutex.
215 */
216void
Daniel Veillard0ba59232002-02-10 13:20:39 +0000217xmlFreeRMutex(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000218{
219#ifdef HAVE_PTHREAD_H
220 pthread_mutex_destroy(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000221#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000222 DeleteCriticalSection(&tok->cs);
Daniel Veillardb8478642001-10-12 17:29:10 +0000223#endif
224 free(tok);
225}
226
227/**
228 * xmlRMutexLock:
229 * @tok: the reentrant mutex
230 *
231 * xmlRMutexLock() is used to lock a libxml2 token_r.
232 */
233void
Daniel Veillard0ba59232002-02-10 13:20:39 +0000234xmlRMutexLock(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000235{
236#ifdef HAVE_PTHREAD_H
237 pthread_mutex_lock(&tok->lock);
238 if (tok->held) {
239 if (pthread_equal(tok->tid, pthread_self())) {
240 tok->held++;
241 pthread_mutex_unlock(&tok->lock);
242 return;
243 } else {
244 tok->waiters++;
245 while (tok->held)
246 pthread_cond_wait(&tok->cv, &tok->lock);
247 tok->waiters--;
248 }
249 }
250 tok->tid = pthread_self();
251 tok->held = 1;
252 pthread_mutex_unlock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000253#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000254 EnterCriticalSection(&tok->cs);
255 ++tok->count;
Daniel Veillardb8478642001-10-12 17:29:10 +0000256#endif
257}
258
259/**
260 * xmlRMutexUnlock:
261 * @tok: the reentrant mutex
262 *
263 * xmlRMutexUnlock() is used to unlock a libxml2 token_r.
264 */
265void
Daniel Veillard0ba59232002-02-10 13:20:39 +0000266xmlRMutexUnlock(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000267{
268#ifdef HAVE_PTHREAD_H
269 pthread_mutex_lock(&tok->lock);
270 tok->held--;
271 if (tok->held == 0) {
272 if (tok->waiters)
273 pthread_cond_signal(&tok->cv);
274 tok->tid = 0;
275 }
276 pthread_mutex_unlock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000277#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000278 if (!--tok->count)
279 LeaveCriticalSection(&tok->cs);
Daniel Veillardb8478642001-10-12 17:29:10 +0000280#endif
281}
282
283/************************************************************************
284 * *
285 * Per thread global state handling *
286 * *
287 ************************************************************************/
288
Daniel Veillard8bdb91d2001-10-31 17:52:43 +0000289#ifdef LIBXML_THREAD_ENABLED
Daniel Veillardb8478642001-10-12 17:29:10 +0000290/**
291 * xmlFreeGlobalState:
292 * @state: a thread global state
293 *
294 * xmlFreeGlobalState() is called when a thread terminates with a non-NULL
295 * global state. It is is used here to reclaim memory resources.
296 */
297static void
298xmlFreeGlobalState(void *state)
299{
300 free(state);
301}
302
303/**
304 * xmlNewGlobalState:
305 *
306 * xmlNewGlobalState() allocates a global state. This structure is used to
307 * hold all data for use by a thread when supporting backwards compatibility
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000308 * of libxml2 to pre-thread-safe behaviour.
Daniel Veillardb8478642001-10-12 17:29:10 +0000309 *
310 * Returns the newly allocated xmlGlobalStatePtr or NULL in case of error
311 */
312static xmlGlobalStatePtr
313xmlNewGlobalState(void)
314{
315 xmlGlobalState *gs;
316
317 gs = malloc(sizeof(xmlGlobalState));
318 if (gs == NULL)
319 return(NULL);
320
William M. Brack8b2c7f12002-11-22 05:07:29 +0000321 memset(gs, 0, sizeof(xmlGlobalState));
Daniel Veillardb8478642001-10-12 17:29:10 +0000322 xmlInitializeGlobalState(gs);
323 return (gs);
324}
Daniel Veillard8bdb91d2001-10-31 17:52:43 +0000325#endif /* LIBXML_THREAD_ENABLED */
Daniel Veillardb8478642001-10-12 17:29:10 +0000326
327
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000328#ifdef HAVE_WIN32_THREADS
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000329#if !defined(HAVE_COMPILER_TLS) && defined(LIBXML_STATIC)
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000330typedef struct _xmlGlobalStateCleanupHelperParams
331{
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000332 HANDLE thread;
333 void *memory;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000334} xmlGlobalStateCleanupHelperParams;
335
Daniel Veillard01c13b52002-12-10 15:19:08 +0000336static void xmlGlobalStateCleanupHelper (void *p)
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000337{
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000338 xmlGlobalStateCleanupHelperParams *params = (xmlGlobalStateCleanupHelperParams *) p;
339 WaitForSingleObject(params->thread, INFINITE);
340 CloseHandle(params->thread);
341 xmlFreeGlobalState(params->memory);
342 free(params);
343 _endthread();
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000344}
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000345#endif /* HAVE_COMPILER_TLS && LIBXML_STATIC */
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000346#endif /* HAVE_WIN32_THREADS */
347
Daniel Veillard01c13b52002-12-10 15:19:08 +0000348/**
349 * xmlGetGlobalState:
350 *
351 * xmlGetGlobalState() is called to retrieve the global state for a thread.
352 *
353 * Returns the thread global state or NULL in case of error
354 */
Daniel Veillardb8478642001-10-12 17:29:10 +0000355xmlGlobalStatePtr
356xmlGetGlobalState(void)
357{
358#ifdef HAVE_PTHREAD_H
359 xmlGlobalState *globalval;
360
Daniel Veillarde28313b2001-12-06 14:08:31 +0000361 pthread_once(&once_control, xmlOnceInit);
362
Daniel Veillardb8478642001-10-12 17:29:10 +0000363 if ((globalval = (xmlGlobalState *)
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000364 pthread_getspecific(globalkey)) == NULL) {
Daniel Veillardb8478642001-10-12 17:29:10 +0000365 xmlGlobalState *tsd = xmlNewGlobalState();
366
367 pthread_setspecific(globalkey, tsd);
368 return (tsd);
Daniel Veillard6f350292001-10-14 09:56:15 +0000369 }
370 return (globalval);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000371#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000372#if defined(HAVE_COMPILER_TLS)
373 if (!tlstate_inited) {
374 tlstate_inited = 1;
375 xmlInitializeGlobalState(&tlstate);
376 }
377 return &tlstate;
378#else /* HAVE_COMPILER_TLS */
379 xmlGlobalState *globalval;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000380
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000381 if (run_once_init) {
382 run_once_init = 0;
383 xmlOnceInit();
384 }
385 if ((globalval = (xmlGlobalState *) TlsGetValue(globalkey)) == NULL) {
386 xmlGlobalState *tsd = xmlNewGlobalState();
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000387#if defined(LIBXML_STATIC)
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000388 xmlGlobalStateCleanupHelperParams *p =
389 (xmlGlobalStateCleanupHelperParams *) malloc(sizeof(xmlGlobalStateCleanupHelperParams));
390 p->memory = tsd;
391 DuplicateHandle(GetCurrentProcess(), GetCurrentThread(),
392 GetCurrentProcess(), &p->thread, 0, TRUE, DUPLICATE_SAME_ACCESS);
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000393#endif
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000394 TlsSetValue(globalkey, tsd);
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000395#if defined(LIBXML_STATIC)
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000396 _beginthread(xmlGlobalStateCleanupHelper, 0, p);
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000397#endif
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000398
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000399 return (tsd);
400 }
401 return (globalval);
402#endif /* HAVE_COMPILER_TLS */
Daniel Veillard6f350292001-10-14 09:56:15 +0000403#else
404 return(NULL);
Daniel Veillardb8478642001-10-12 17:29:10 +0000405#endif
406}
407
Daniel Veillardb8478642001-10-12 17:29:10 +0000408/************************************************************************
409 * *
410 * Library wide thread interfaces *
411 * *
412 ************************************************************************/
413
414/**
Daniel Veillard3c01b1d2001-10-17 15:58:35 +0000415 * xmlGetThreadId:
416 *
417 * xmlGetThreadId() find the current thread ID number
418 *
419 * Returns the current thread ID number
420 */
421int
422xmlGetThreadId(void)
423{
424#ifdef HAVE_PTHREAD_H
425 return((int) pthread_self());
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000426#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000427 return GetCurrentThreadId();
Daniel Veillard3c01b1d2001-10-17 15:58:35 +0000428#else
429 return((int) 0);
430#endif
431}
432
433/**
Daniel Veillard6f350292001-10-14 09:56:15 +0000434 * xmlIsMainThread:
435 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000436 * xmlIsMainThread() check whether the current thread is the main thread.
Daniel Veillard6f350292001-10-14 09:56:15 +0000437 *
438 * Returns 1 if the current thread is the main thread, 0 otherwise
439 */
440int
441xmlIsMainThread(void)
442{
Daniel Veillarde28313b2001-12-06 14:08:31 +0000443#ifdef HAVE_PTHREAD_H
444 pthread_once(&once_control, xmlOnceInit);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000445#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000446 if (run_once_init) {
447 run_once_init = 0;
448 xmlOnceInit ();
449 }
Daniel Veillarde28313b2001-12-06 14:08:31 +0000450#endif
Daniel Veillard6f350292001-10-14 09:56:15 +0000451
452#ifdef DEBUG_THREADS
453 xmlGenericError(xmlGenericErrorContext, "xmlIsMainThread()\n");
454#endif
455#ifdef HAVE_PTHREAD_H
456 return(mainthread == pthread_self());
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000457#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000458 return(mainthread == GetCurrentThreadId ());
Daniel Veillard6f350292001-10-14 09:56:15 +0000459#else
460 return(1);
461#endif
462}
463
464/**
Daniel Veillardb8478642001-10-12 17:29:10 +0000465 * xmlLockLibrary:
466 *
467 * xmlLockLibrary() is used to take out a re-entrant lock on the libxml2
468 * library.
469 */
470void
471xmlLockLibrary(void)
472{
Daniel Veillard6f350292001-10-14 09:56:15 +0000473#ifdef DEBUG_THREADS
474 xmlGenericError(xmlGenericErrorContext, "xmlLockLibrary()\n");
475#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000476 xmlRMutexLock(xmlLibraryLock);
477}
478
479/**
480 * xmlUnlockLibrary:
481 *
482 * xmlUnlockLibrary() is used to release a re-entrant lock on the libxml2
483 * library.
484 */
485void
486xmlUnlockLibrary(void)
487{
Daniel Veillard6f350292001-10-14 09:56:15 +0000488#ifdef DEBUG_THREADS
489 xmlGenericError(xmlGenericErrorContext, "xmlUnlockLibrary()\n");
490#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000491 xmlRMutexUnlock(xmlLibraryLock);
492}
493
494/**
495 * xmlInitThreads:
496 *
497 * xmlInitThreads() is used to to initialize all the thread related
498 * data of the libxml2 library.
499 */
500void
501xmlInitThreads(void)
502{
Daniel Veillard6f350292001-10-14 09:56:15 +0000503#ifdef DEBUG_THREADS
504 xmlGenericError(xmlGenericErrorContext, "xmlInitThreads()\n");
505#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000506}
507
508/**
509 * xmlCleanupThreads:
510 *
511 * xmlCleanupThreads() is used to to cleanup all the thread related
512 * data of the libxml2 library once processing has ended.
513 */
514void
515xmlCleanupThreads(void)
516{
Daniel Veillard6f350292001-10-14 09:56:15 +0000517#ifdef DEBUG_THREADS
518 xmlGenericError(xmlGenericErrorContext, "xmlCleanupThreads()\n");
519#endif
Daniel Veillarde28313b2001-12-06 14:08:31 +0000520}
Daniel Veillard6f350292001-10-14 09:56:15 +0000521
Daniel Veillarde28313b2001-12-06 14:08:31 +0000522/**
523 * xmlOnceInit
524 *
525 * xmlOnceInit() is used to initialize the value of mainthread for use
526 * in other routines. This function should only be called using
527 * pthread_once() in association with the once_control variable to ensure
528 * that the function is only called once. See man pthread_once for more
529 * details.
530 */
531static void
532xmlOnceInit(void) {
533#ifdef HAVE_PTHREAD_H
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000534 (void) pthread_key_create(&globalkey, xmlFreeGlobalState);
Daniel Veillarde28313b2001-12-06 14:08:31 +0000535 mainthread = pthread_self();
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000536#endif
537
538#if defined(HAVE_WIN32_THREADS)
539#if !defined(HAVE_COMPILER_TLS)
540 globalkey = TlsAlloc();
541#endif
542 mainthread = GetCurrentThreadId();
Daniel Veillarde28313b2001-12-06 14:08:31 +0000543#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000544}
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000545
546/**
547 * DllMain
548 *
549 * Entry point for Windows library. It is being used to free thread-specific
550 * storage.
551 */
552#if defined(HAVE_WIN32_THREADS) && !defined(LIBXML_STATIC)
553BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
554{
555 switch(fdwReason) {
556 case DLL_THREAD_DETACH:
557 if (globalkey != TLS_OUT_OF_INDEXES) {
558 xmlGlobalState *globalval = (xmlGlobalState *)TlsGetValue(globalkey);
559 if (globalval) {
560 xmlFreeGlobalState(globalval);
561 TlsSetValue(globalkey, NULL);
562 }
563 }
564 break;
565 case DLL_PROCESS_DETACH:
566 if (globalkey != TLS_OUT_OF_INDEXES) {
567 TlsFree(globalkey);
568 globalkey = TLS_OUT_OF_INDEXES;
569 }
570 break;
571 }
572 return TRUE;
573}
574#endif
575