2003-06-22 Havoc Pennington <hp@pobox.com>
[platform/upstream/dbus.git] / dbus / dbus-threads.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-threads.h  D-BUS threads handling
3  *
4  * Copyright (C) 2002, 2003 Red Hat Inc.
5  *
6  * Licensed under the Academic Free License version 1.2
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23 #include "dbus-threads.h"
24 #include "dbus-internals.h"
25
26 static DBusThreadFunctions thread_functions =
27 {
28   0,
29   NULL, NULL, NULL, NULL,
30   NULL, NULL, NULL, NULL, NULL,
31
32   NULL, NULL, NULL, NULL,
33   NULL, NULL, NULL, NULL
34 };
35 static int thread_init_generation = 0;
36
37 /** This is used for the no-op default mutex pointer, just to be distinct from #NULL */
38 #define _DBUS_DUMMY_MUTEX ((DBusMutex*)0xABCDEF)
39
40 /** This is used for the no-op default mutex pointer, just to be distinct from #NULL */
41 #define _DBUS_DUMMY_CONDVAR ((DBusCondVar*)0xABCDEF2)
42
43 /**
44  * @defgroup DBusThreads Thread functions
45  * @ingroup  DBus
46  * @brief dbus_threads_init(), dbus_mutex_lock(), etc.
47  *
48  * Functions and macros related to threads and thread locks.
49  *
50  * @{
51  */
52
53 /**
54  * Creates a new mutex using the function supplied to dbus_threads_init(),
55  * or creates a no-op mutex if threads are not initialized.
56  * May return #NULL even if threads are initialized, indicating
57  * out-of-memory.
58  *
59  * @returns new mutex or #NULL
60  */
61 DBusMutex*
62 dbus_mutex_new (void)
63 {
64   if (thread_functions.mutex_new)
65     return (* thread_functions.mutex_new) ();
66   else
67     return _DBUS_DUMMY_MUTEX;
68 }
69
70 /**
71  * Frees a mutex created with dbus_mutex_new(); does
72  * nothing if passed a #NULL pointer.
73  */
74 void
75 dbus_mutex_free (DBusMutex *mutex)
76 {
77   if (mutex && thread_functions.mutex_free)
78     (* thread_functions.mutex_free) (mutex);
79 }
80
81 /**
82  * Locks a mutex. Does nothing if passed a #NULL pointer.
83  * Locks are not recursive.
84  *
85  * @returns #TRUE on success
86  */
87 dbus_bool_t
88 dbus_mutex_lock (DBusMutex *mutex)
89 {
90   if (mutex && thread_functions.mutex_lock)
91     return (* thread_functions.mutex_lock) (mutex);
92   else
93     return TRUE;
94 }
95
96 /**
97  * Unlocks a mutex. Does nothing if passed a #NULL pointer.
98  *
99  * @returns #TRUE on success
100  */
101 dbus_bool_t
102 dbus_mutex_unlock (DBusMutex *mutex)
103 {
104   if (mutex && thread_functions.mutex_unlock)
105     return (* thread_functions.mutex_unlock) (mutex);
106   else
107     return TRUE;
108 }
109
110 /**
111  * Creates a new condition variable using the function supplied
112  * to dbus_threads_init(), or creates a no-op condition variable
113  * if threads are not initialized. May return #NULL even if
114  * threads are initialized, indicating out-of-memory.
115  *
116  * @returns new mutex or #NULL
117  */
118 DBusCondVar *
119 dbus_condvar_new (void)
120 {
121   if (thread_functions.condvar_new)
122     return (* thread_functions.condvar_new) ();
123   else
124     return _DBUS_DUMMY_CONDVAR;
125 }
126
127 /**
128  * Frees a conditional variable created with dbus_condvar_new(); does
129  * nothing if passed a #NULL pointer.
130  */
131 void
132 dbus_condvar_free (DBusCondVar *cond)
133 {
134   if (cond && thread_functions.condvar_free)
135     (* thread_functions.condvar_free) (cond);
136 }
137
138 /**
139  * Atomically unlocks the mutex and waits for the conditions
140  * variable to be signalled. Locks the mutex again before
141  * returning.
142  * Does nothing if passed a #NULL pointer.
143  */
144 void
145 dbus_condvar_wait (DBusCondVar *cond,
146                    DBusMutex   *mutex)
147 {
148   if (cond && mutex && thread_functions.condvar_wait)
149     (* thread_functions.condvar_wait) (cond, mutex);
150 }
151
152 /**
153  * Atomically unlocks the mutex and waits for the conditions
154  * variable to be signalled, or for a timeout. Locks the
155  * mutex again before returning.
156  * Does nothing if passed a #NULL pointer.
157  *
158  * @param cond the condition variable
159  * @param mutex the mutex
160  * @param timeout_milliseconds the maximum time to wait
161  * @returns TRUE if the condition was reached, or FALSE if the
162  * timeout was reached.
163  */
164 dbus_bool_t
165 dbus_condvar_wait_timeout (DBusCondVar               *cond,
166                            DBusMutex                 *mutex,
167                            int                        timeout_milliseconds)
168 {
169   if (cond && mutex && thread_functions.condvar_wait)
170     return (* thread_functions.condvar_wait_timeout) (cond, mutex, timeout_milliseconds);
171   else
172     return TRUE;
173 }
174
175 /**
176  * If there are threads waiting on the condition variable, wake
177  * up exactly one. 
178  * Does nothing if passed a #NULL pointer.
179  */
180 void
181 dbus_condvar_wake_one (DBusCondVar *cond)
182 {
183   if (cond && thread_functions.condvar_wake_one)
184     (* thread_functions.condvar_wake_one) (cond);
185 }
186
187 /**
188  * If there are threads waiting on the condition variable, wake
189  * up all of them. 
190  * Does nothing if passed a #NULL pointer.
191  */
192 void
193 dbus_condvar_wake_all (DBusCondVar *cond)
194 {
195   if (cond && thread_functions.condvar_wake_all)
196     (* thread_functions.condvar_wake_all) (cond);
197 }
198
199 static void
200 shutdown_global_locks (void *data)
201 {
202   DBusMutex ***locks = data;
203   int i;
204
205   i = 0;
206   while (i < _DBUS_N_GLOBAL_LOCKS)
207     {
208       dbus_mutex_free (*(locks[i]));
209       *(locks[i]) = NULL;
210       ++i;
211     }
212   
213   dbus_free (locks);
214 }
215
216 static dbus_bool_t
217 init_global_locks (void)
218 {
219   int i;
220   DBusMutex ***dynamic_global_locks;
221   
222   DBusMutex **global_locks[] = {
223 #define LOCK_ADDR(name) (& _dbus_lock_##name)
224     LOCK_ADDR (list),
225     LOCK_ADDR (connection_slots),
226     LOCK_ADDR (server_slots),
227     LOCK_ADDR (message_slots),
228     LOCK_ADDR (atomic),
229     LOCK_ADDR (message_handler),
230     LOCK_ADDR (bus),
231     LOCK_ADDR (shutdown_funcs),
232     LOCK_ADDR (system_users)
233 #undef LOCK_ADDR
234   };
235
236   _dbus_assert (_DBUS_N_ELEMENTS (global_locks) ==
237                 _DBUS_N_GLOBAL_LOCKS);
238
239   i = 0;
240   
241   dynamic_global_locks = dbus_new (DBusMutex**, _DBUS_N_GLOBAL_LOCKS);
242   if (dynamic_global_locks == NULL)
243     goto failed;
244   
245   while (i < _DBUS_N_ELEMENTS (global_locks))
246     {
247       *global_locks[i] = dbus_mutex_new ();
248       
249       if (*global_locks[i] == NULL)
250         goto failed;
251
252       dynamic_global_locks[i] = global_locks[i];
253
254       ++i;
255     }
256   
257   if (!_dbus_register_shutdown_func (shutdown_global_locks,
258                                      dynamic_global_locks))
259     goto failed;
260   
261   return TRUE;
262
263  failed:
264   dbus_free (dynamic_global_locks);
265                                      
266   for (i = i - 1; i >= 0; i--)
267     {
268       dbus_mutex_free (*global_locks[i]);
269       *global_locks[i] = NULL;
270     }
271   return FALSE;
272 }
273
274
275 /**
276  * Initializes threads. If this function is not called,
277  * the D-BUS library will not lock any data structures.
278  * If it is called, D-BUS will do locking, at some cost
279  * in efficiency. Note that this function must be called
280  * BEFORE using any other D-BUS functions.
281  *
282  * This function may be called more than once, as long
283  * as you pass in the same functions each time. If it's
284  * called multiple times with different functions, then
285  * a warning is printed, because someone is confused.
286  *
287  * @param functions functions for using threads
288  * @returns #TRUE on success, #FALSE if no memory
289  */
290 dbus_bool_t
291 dbus_threads_init (const DBusThreadFunctions *functions)
292 {
293   _dbus_assert (functions != NULL);
294
295   /* these base functions are required. Future additions to
296    * DBusThreadFunctions may be optional.
297    */
298   _dbus_assert (functions->mask & DBUS_THREAD_FUNCTIONS_MUTEX_NEW_MASK);
299   _dbus_assert (functions->mask & DBUS_THREAD_FUNCTIONS_MUTEX_FREE_MASK);
300   _dbus_assert (functions->mask & DBUS_THREAD_FUNCTIONS_MUTEX_LOCK_MASK);
301   _dbus_assert (functions->mask & DBUS_THREAD_FUNCTIONS_MUTEX_UNLOCK_MASK);
302   _dbus_assert (functions->mask & DBUS_THREAD_FUNCTIONS_CONDVAR_NEW_MASK);
303   _dbus_assert (functions->mask & DBUS_THREAD_FUNCTIONS_CONDVAR_FREE_MASK);
304   _dbus_assert (functions->mask & DBUS_THREAD_FUNCTIONS_CONDVAR_WAIT_MASK);
305   _dbus_assert (functions->mask & DBUS_THREAD_FUNCTIONS_CONDVAR_WAIT_TIMEOUT_MASK);
306   _dbus_assert (functions->mask & DBUS_THREAD_FUNCTIONS_CONDVAR_WAKE_ONE_MASK);
307   _dbus_assert (functions->mask & DBUS_THREAD_FUNCTIONS_CONDVAR_WAKE_ALL_MASK);
308   _dbus_assert (functions->mutex_new != NULL);
309   _dbus_assert (functions->mutex_free != NULL);
310   _dbus_assert (functions->mutex_lock != NULL);
311   _dbus_assert (functions->mutex_unlock != NULL);
312   _dbus_assert (functions->condvar_new != NULL);
313   _dbus_assert (functions->condvar_free != NULL);
314   _dbus_assert (functions->condvar_wait != NULL);
315   _dbus_assert (functions->condvar_wait_timeout != NULL);
316   _dbus_assert (functions->condvar_wake_one != NULL);
317   _dbus_assert (functions->condvar_wake_all != NULL);
318
319   /* Check that all bits in the mask actually are valid mask bits.
320    * ensures people won't write code that breaks when we add
321    * new bits.
322    */
323   _dbus_assert ((functions->mask & ~DBUS_THREAD_FUNCTIONS_ALL_MASK) == 0);
324
325   if (thread_init_generation != _dbus_current_generation)
326     thread_functions.mask = 0; /* allow re-init in new generation */
327   
328   if (thread_functions.mask != 0)
329     {
330       /* Silently allow multiple init if the functions are the same ones.
331        * Well, we only bother checking two of them, just out of laziness.
332        */
333       if (thread_functions.mask == functions->mask &&
334           thread_functions.mutex_new == functions->mutex_new &&
335           thread_functions.condvar_new == functions->condvar_new)
336         {
337           return TRUE;
338         }
339       else
340         {
341           _dbus_warn ("dbus_threads_init() called twice with two different sets of functions\n");
342           return FALSE;
343         }
344     }
345   
346   thread_functions.mutex_new = functions->mutex_new;
347   thread_functions.mutex_free = functions->mutex_free;
348   thread_functions.mutex_lock = functions->mutex_lock;
349   thread_functions.mutex_unlock = functions->mutex_unlock;
350   
351   thread_functions.condvar_new = functions->condvar_new;
352   thread_functions.condvar_free = functions->condvar_free;
353   thread_functions.condvar_wait = functions->condvar_wait;
354   thread_functions.condvar_wait_timeout = functions->condvar_wait_timeout;
355   thread_functions.condvar_wake_one = functions->condvar_wake_one;
356   thread_functions.condvar_wake_all = functions->condvar_wake_all;
357   
358   thread_functions.mask = functions->mask;
359
360   if (!init_global_locks ())
361     return FALSE;
362
363   thread_init_generation = _dbus_current_generation;
364   
365   return TRUE;
366 }
367
368 /** @} */
369
370 #ifdef DBUS_BUILD_TESTS
371 /** Fake mutex used for debugging */
372 typedef struct DBusFakeMutex DBusFakeMutex;
373 /** Fake mutex used for debugging */
374 struct DBusFakeMutex
375 {
376   dbus_bool_t locked; /**< Mutex is "locked" */
377 };      
378
379 static DBusMutex *  dbus_fake_mutex_new            (void);
380 static void         dbus_fake_mutex_free           (DBusMutex   *mutex);
381 static dbus_bool_t  dbus_fake_mutex_lock           (DBusMutex   *mutex);
382 static dbus_bool_t  dbus_fake_mutex_unlock         (DBusMutex   *mutex);
383 static DBusCondVar* dbus_fake_condvar_new          (void);
384 static void         dbus_fake_condvar_free         (DBusCondVar *cond);
385 static void         dbus_fake_condvar_wait         (DBusCondVar *cond,
386                                                     DBusMutex   *mutex);
387 static dbus_bool_t  dbus_fake_condvar_wait_timeout (DBusCondVar *cond,
388                                                     DBusMutex   *mutex,
389                                                     int          timeout_msec);
390 static void         dbus_fake_condvar_wake_one     (DBusCondVar *cond);
391 static void         dbus_fake_condvar_wake_all     (DBusCondVar *cond);
392
393
394 static const DBusThreadFunctions fake_functions =
395 {
396   DBUS_THREAD_FUNCTIONS_MUTEX_NEW_MASK |
397   DBUS_THREAD_FUNCTIONS_MUTEX_FREE_MASK |
398   DBUS_THREAD_FUNCTIONS_MUTEX_LOCK_MASK |
399   DBUS_THREAD_FUNCTIONS_MUTEX_UNLOCK_MASK |
400   DBUS_THREAD_FUNCTIONS_CONDVAR_NEW_MASK |
401   DBUS_THREAD_FUNCTIONS_CONDVAR_FREE_MASK |
402   DBUS_THREAD_FUNCTIONS_CONDVAR_WAIT_MASK |
403   DBUS_THREAD_FUNCTIONS_CONDVAR_WAIT_TIMEOUT_MASK |
404   DBUS_THREAD_FUNCTIONS_CONDVAR_WAKE_ONE_MASK|
405   DBUS_THREAD_FUNCTIONS_CONDVAR_WAKE_ALL_MASK,
406   dbus_fake_mutex_new,
407   dbus_fake_mutex_free,
408   dbus_fake_mutex_lock,
409   dbus_fake_mutex_unlock,
410   dbus_fake_condvar_new,
411   dbus_fake_condvar_free,
412   dbus_fake_condvar_wait,
413   dbus_fake_condvar_wait_timeout,
414   dbus_fake_condvar_wake_one,
415   dbus_fake_condvar_wake_all
416 };
417
418 static DBusMutex *
419 dbus_fake_mutex_new (void)
420 {
421   DBusFakeMutex *mutex;
422
423   mutex = dbus_new0 (DBusFakeMutex, 1);
424
425   return (DBusMutex *)mutex;
426 }
427
428 static void
429 dbus_fake_mutex_free (DBusMutex *mutex)
430 {
431   DBusFakeMutex *fake = (DBusFakeMutex*) mutex;
432
433   _dbus_assert (!fake->locked);
434   
435   dbus_free (fake);
436 }
437
438 static dbus_bool_t
439 dbus_fake_mutex_lock (DBusMutex *mutex)
440 {
441   DBusFakeMutex *fake = (DBusFakeMutex*) mutex;
442
443   _dbus_assert (!fake->locked);
444
445   fake->locked = TRUE;
446   
447   return TRUE;
448 }
449
450 static dbus_bool_t
451 dbus_fake_mutex_unlock (DBusMutex *mutex)
452 {
453   DBusFakeMutex *fake = (DBusFakeMutex*) mutex;
454
455   _dbus_assert (fake->locked);
456
457   fake->locked = FALSE;
458   
459   return TRUE;
460 }
461
462 static DBusCondVar*
463 dbus_fake_condvar_new (void)
464 {
465   return (DBusCondVar*) _dbus_strdup ("FakeCondvar");
466 }
467
468 static void
469 dbus_fake_condvar_free (DBusCondVar *cond)
470 {
471   dbus_free (cond);
472 }
473
474 static void
475 dbus_fake_condvar_wait (DBusCondVar *cond,
476                         DBusMutex   *mutex)
477 {
478   
479 }
480
481 static dbus_bool_t
482 dbus_fake_condvar_wait_timeout (DBusCondVar *cond,
483                                 DBusMutex   *mutex,
484                                 int         timeout_msec)
485 {
486   return TRUE;
487 }
488
489 static void
490 dbus_fake_condvar_wake_one (DBusCondVar *cond)
491 {
492
493 }
494
495 static void
496 dbus_fake_condvar_wake_all (DBusCondVar *cond)
497 {
498
499 }
500
501 dbus_bool_t
502 _dbus_threads_init_debug (void)
503 {
504   return dbus_threads_init (&fake_functions);
505 }
506
507 #endif /* DBUS_BUILD_TESTS */