Make the magic and location arguments to the error-checking-mutex
[platform/upstream/glib.git] / glib / gthread.h
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GLib Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __G_THREAD_H__
28 #define __G_THREAD_H__
29
30 #include <glib/gerror.h>
31 #include <glib/gtypes.h>
32 #include <glib/gatomic.h>  /* for g_atomic_pointer_get */
33
34 G_BEGIN_DECLS
35
36 /* GLib Thread support
37  */
38
39 extern GQuark g_thread_error_quark (void);
40 #define G_THREAD_ERROR g_thread_error_quark ()
41
42 typedef enum
43 {
44   G_THREAD_ERROR_AGAIN /* Resource temporarily unavailable */
45 } GThreadError;
46
47 typedef gpointer (*GThreadFunc) (gpointer data);
48
49 typedef enum
50 {
51   G_THREAD_PRIORITY_LOW,
52   G_THREAD_PRIORITY_NORMAL,
53   G_THREAD_PRIORITY_HIGH,
54   G_THREAD_PRIORITY_URGENT
55 } GThreadPriority;
56
57 typedef struct _GThread         GThread;
58 struct  _GThread
59 {
60   /*< private >*/
61   GThreadFunc func;
62   gpointer data;
63   gboolean joinable;
64   GThreadPriority priority;
65 };
66
67 typedef struct _GMutex          GMutex;
68 typedef struct _GCond           GCond;
69 typedef struct _GPrivate        GPrivate;
70 typedef struct _GStaticPrivate  GStaticPrivate;
71
72 typedef struct _GThreadFunctions GThreadFunctions;
73 struct _GThreadFunctions
74 {
75   GMutex*  (*mutex_new)           (void);
76   void     (*mutex_lock)          (GMutex               *mutex);
77   gboolean (*mutex_trylock)       (GMutex               *mutex);
78   void     (*mutex_unlock)        (GMutex               *mutex);
79   void     (*mutex_free)          (GMutex               *mutex);
80   GCond*   (*cond_new)            (void);
81   void     (*cond_signal)         (GCond                *cond);
82   void     (*cond_broadcast)      (GCond                *cond);
83   void     (*cond_wait)           (GCond                *cond,
84                                    GMutex               *mutex);
85   gboolean (*cond_timed_wait)     (GCond                *cond,
86                                    GMutex               *mutex,
87                                    GTimeVal             *end_time);
88   void      (*cond_free)          (GCond                *cond);
89   GPrivate* (*private_new)        (GDestroyNotify        destructor);
90   gpointer  (*private_get)        (GPrivate             *private_key);
91   void      (*private_set)        (GPrivate             *private_key,
92                                    gpointer              data);
93   void      (*thread_create)      (GThreadFunc           func,
94                                    gpointer              data,
95                                    gulong                stack_size,
96                                    gboolean              joinable,
97                                    gboolean              bound,
98                                    GThreadPriority       priority,
99                                    gpointer              thread,
100                                    GError              **error);
101   void      (*thread_yield)       (void);
102   void      (*thread_join)        (gpointer              thread);
103   void      (*thread_exit)        (void);
104   void      (*thread_set_priority)(gpointer              thread,
105                                    GThreadPriority       priority);
106   void      (*thread_self)        (gpointer              thread);
107   gboolean  (*thread_equal)       (gpointer              thread1,
108                                    gpointer              thread2);
109 };
110
111 GLIB_VAR GThreadFunctions       g_thread_functions_for_glib_use;
112 GLIB_VAR gboolean               g_thread_use_default_impl;
113 GLIB_VAR gboolean               g_threads_got_initialized;
114
115 /* initializes the mutex/cond/private implementation for glib, might
116  * only be called once, and must not be called directly or indirectly
117  * from another glib-function, e.g. as a callback.
118  */
119 void    g_thread_init   (GThreadFunctions       *vtable);
120
121 /* Errorcheck mutexes. If you define G_ERRORCHECK_MUTEXES, then all
122  * mutexes will check for re-locking and re-unlocking */
123
124 /* Initialize thread system with errorcheck mutexes. vtable must be
125  * NULL. Do not call directly. Use #define G_ERRORCHECK_MUTEXES
126  * instead.
127  */
128 void    g_thread_init_with_errorcheck_mutexes (GThreadFunctions* vtable);
129
130 /* A random number to recognize debug calls to g_mutex_... */
131 #define G_MUTEX_DEBUG_MAGIC 0xf8e18ad7
132
133 #ifdef G_ERRORCHECK_MUTEXES
134 #define g_thread_init(vtable) g_thread_init_with_errorcheck_mutexes (vtable)
135 #endif
136
137 /* internal function for fallback static mutex implementation */
138 GMutex* g_static_mutex_get_mutex_impl   (GMutex **mutex);
139
140 #define g_static_mutex_get_mutex_impl_shortcut(mutex) \
141   (g_atomic_pointer_get ((gpointer*)(void*)mutex) ? *(mutex) : \
142    g_static_mutex_get_mutex_impl (mutex))
143
144 /* shorthands for conditional and unconditional function calls */
145
146 #define G_THREAD_UF(op, arglist)                                        \
147     (*g_thread_functions_for_glib_use . op) arglist
148 #define G_THREAD_CF(op, fail, arg)                                      \
149     (g_thread_supported () ? G_THREAD_UF (op, arg) : (fail))
150 #define G_THREAD_ECF(op, fail, mutex, type)                             \
151     (g_thread_supported () ?                                            \
152       ((type(*)(GMutex*, const gulong, gchar const*))                   \
153       (*g_thread_functions_for_glib_use . op))                          \
154      (mutex, G_MUTEX_DEBUG_MAGIC, G_STRLOC) : (fail))
155
156 #ifndef G_ERRORCHECK_MUTEXES
157 # define g_mutex_lock(mutex)                                            \
158     G_THREAD_CF (mutex_lock,     (void)0, (mutex))
159 # define g_mutex_trylock(mutex)                                         \
160     G_THREAD_CF (mutex_trylock,  TRUE,    (mutex))
161 # define g_mutex_unlock(mutex)                                          \
162     G_THREAD_CF (mutex_unlock,   (void)0, (mutex))
163 # define g_mutex_free(mutex)                                            \
164     G_THREAD_CF (mutex_free,     (void)0, (mutex))
165 # define g_cond_wait(cond, mutex)                                       \
166     G_THREAD_CF (cond_wait,      (void)0, (cond, mutex))
167 # define g_cond_timed_wait(cond, mutex, abs_time)                       \
168     G_THREAD_CF (cond_timed_wait, TRUE,   (cond, mutex, abs_time))
169 #else /* G_ERRORCHECK_MUTEXES */
170 # define g_mutex_lock(mutex)                                            \
171     G_THREAD_ECF (mutex_lock,    (void)0, (mutex), void)
172 # define g_mutex_trylock(mutex)                                         \
173     G_THREAD_ECF (mutex_trylock, TRUE,    (mutex), gboolean)
174 # define g_mutex_unlock(mutex)                                          \
175     G_THREAD_ECF (mutex_unlock,  (void)0, (mutex), void)
176 # define g_mutex_free(mutex)                                            \
177     G_THREAD_ECF (mutex_free,    (void)0, (mutex), void)
178 # define g_cond_wait(cond, mutex)                                       \
179     (g_thread_supported () ? ((void(*)(GCond*, GMutex*, gulong, gchar*))\
180       g_thread_functions_for_glib_use.cond_wait)                        \
181         (cond, mutex, G_MUTEX_DEBUG_MAGIC, G_STRLOC) : (void) 0)
182 # define g_cond_timed_wait(cond, mutex, abs_time)                       \
183     (g_thread_supported () ?                                            \
184       ((gboolean(*)(GCond*, GMutex*, GTimeVal*, gulong, gchar*))        \
185         g_thread_functions_for_glib_use.cond_timed_wait)                \
186           (cond, mutex, abs_time, G_MUTEX_DEBUG_MAGIC, G_STRLOC) : TRUE)
187 #endif /* G_ERRORCHECK_MUTEXES */
188
189 #define g_thread_supported()    (g_threads_got_initialized)
190 #define g_mutex_new()            G_THREAD_UF (mutex_new,      ())
191 #define g_cond_new()             G_THREAD_UF (cond_new,       ())
192 #define g_cond_signal(cond)      G_THREAD_CF (cond_signal,    (void)0, (cond))
193 #define g_cond_broadcast(cond)   G_THREAD_CF (cond_broadcast, (void)0, (cond))
194 #define g_cond_free(cond)        G_THREAD_CF (cond_free,      (void)0, (cond))
195 #define g_private_new(destructor) G_THREAD_UF (private_new, (destructor))
196 #define g_private_get(private_key) G_THREAD_CF (private_get, \
197                                                 ((gpointer)private_key), \
198                                                 (private_key))
199 #define g_private_set(private_key, value) G_THREAD_CF (private_set, \
200                                                        (void) (private_key = \
201                                                         (GPrivate*) (value)), \
202                                                        (private_key, value))
203 #define g_thread_yield()              G_THREAD_CF (thread_yield, (void)0, ())
204
205 #define g_thread_create(func, data, joinable, error)                    \
206   (g_thread_create_full (func, data, 0, joinable, FALSE,                \
207                          G_THREAD_PRIORITY_NORMAL, error))
208
209 GThread* g_thread_create_full  (GThreadFunc            func,
210                                 gpointer               data,
211                                 gulong                 stack_size,
212                                 gboolean               joinable,
213                                 gboolean               bound,
214                                 GThreadPriority        priority,
215                                 GError               **error);
216 GThread* g_thread_self         (void);
217 void     g_thread_exit         (gpointer               retval);
218 gpointer g_thread_join         (GThread               *thread);
219
220 void     g_thread_set_priority (GThread               *thread,
221                                 GThreadPriority        priority);
222
223 /* GStaticMutexes can be statically initialized with the value
224  * G_STATIC_MUTEX_INIT, and then they can directly be used, that is
225  * much easier, than having to explicitly allocate the mutex before
226  * use
227  */
228 #define g_static_mutex_lock(mutex) \
229     g_mutex_lock (g_static_mutex_get_mutex (mutex))
230 #define g_static_mutex_trylock(mutex) \
231     g_mutex_trylock (g_static_mutex_get_mutex (mutex))
232 #define g_static_mutex_unlock(mutex) \
233     g_mutex_unlock (g_static_mutex_get_mutex (mutex))
234 void g_static_mutex_init (GStaticMutex *mutex);
235 void g_static_mutex_free (GStaticMutex *mutex);
236
237 struct _GStaticPrivate
238 {
239   /*< private >*/
240   guint index;
241 };
242 #define G_STATIC_PRIVATE_INIT { 0 }
243 void     g_static_private_init           (GStaticPrivate   *private_key);
244 gpointer g_static_private_get            (GStaticPrivate   *private_key);
245 void     g_static_private_set            (GStaticPrivate   *private_key,
246                                           gpointer          data,
247                                           GDestroyNotify    notify);
248 void     g_static_private_free           (GStaticPrivate   *private_key);
249
250 typedef struct _GStaticRecMutex GStaticRecMutex;
251 struct _GStaticRecMutex
252 {
253   /*< private >*/
254   GStaticMutex mutex;
255   guint depth;
256   GSystemThread owner;
257 };
258
259 #define G_STATIC_REC_MUTEX_INIT { G_STATIC_MUTEX_INIT }
260 void     g_static_rec_mutex_init        (GStaticRecMutex *mutex);
261 void     g_static_rec_mutex_lock        (GStaticRecMutex *mutex);
262 gboolean g_static_rec_mutex_trylock     (GStaticRecMutex *mutex);
263 void     g_static_rec_mutex_unlock      (GStaticRecMutex *mutex);
264 void     g_static_rec_mutex_lock_full   (GStaticRecMutex *mutex,
265                                          guint            depth);
266 guint    g_static_rec_mutex_unlock_full (GStaticRecMutex *mutex);
267 void     g_static_rec_mutex_free        (GStaticRecMutex *mutex);
268
269 typedef struct _GStaticRWLock GStaticRWLock;
270 struct _GStaticRWLock
271 {
272   /*< private >*/
273   GStaticMutex mutex;
274   GCond *read_cond;
275   GCond *write_cond;
276   guint read_counter;
277   gboolean have_writer;
278   guint want_to_read;
279   guint want_to_write;
280 };
281
282 #define G_STATIC_RW_LOCK_INIT { G_STATIC_MUTEX_INIT, NULL, NULL, 0, FALSE, 0, 0 }
283
284 void      g_static_rw_lock_init           (GStaticRWLock* lock);
285 void      g_static_rw_lock_reader_lock    (GStaticRWLock* lock);
286 gboolean  g_static_rw_lock_reader_trylock (GStaticRWLock* lock);
287 void      g_static_rw_lock_reader_unlock  (GStaticRWLock* lock);
288 void      g_static_rw_lock_writer_lock    (GStaticRWLock* lock);
289 gboolean  g_static_rw_lock_writer_trylock (GStaticRWLock* lock);
290 void      g_static_rw_lock_writer_unlock  (GStaticRWLock* lock);
291 void      g_static_rw_lock_free           (GStaticRWLock* lock);
292
293 void      g_thread_foreach                (GFunc          thread_func,
294                                            gpointer       user_data);
295
296 typedef enum
297 {
298   G_ONCE_STATUS_NOTCALLED,
299   G_ONCE_STATUS_PROGRESS,
300   G_ONCE_STATUS_READY  
301 } GOnceStatus;
302
303 typedef struct _GOnce GOnce;
304 struct _GOnce
305 {
306   volatile GOnceStatus status;
307   volatile gpointer retval;
308 };
309
310 #define G_ONCE_INIT { G_ONCE_STATUS_NOTCALLED, NULL }
311
312 gpointer g_once_impl (GOnce *once, GThreadFunc func, gpointer arg);
313
314 #ifdef G_ATOMIC_OP_MEMORY_BARRIER_NEEDED
315 # define g_once(once, func, arg) g_once_impl ((once), (func), (arg))
316 #else /* !G_ATOMIC_OP_MEMORY_BARRIER_NEEDED*/
317 # define g_once(once, func, arg) \
318   (((once)->status == G_ONCE_STATUS_READY) ? \
319    (once)->retval : \
320    g_once_impl ((once), (func), (arg)))
321 #endif /* G_ATOMIC_OP_MEMORY_BARRIER_NEEDED */
322     
323 /* these are some convenience macros that expand to nothing if GLib
324  * was configured with --disable-threads. for using StaticMutexes,
325  * you define them with G_LOCK_DEFINE_STATIC (name) or G_LOCK_DEFINE (name)
326  * if you need to export the mutex. With G_LOCK_EXTERN (name) you can
327  * declare such an globally defined lock. name is a unique identifier
328  * for the protected varibale or code portion. locking, testing and
329  * unlocking of such mutexes can be done with G_LOCK(), G_UNLOCK() and
330  * G_TRYLOCK() respectively.
331  */
332 extern void glib_dummy_decl (void);
333 #define G_LOCK_NAME(name)               g__ ## name ## _lock
334 #ifdef  G_THREADS_ENABLED
335 #  define G_LOCK_DEFINE_STATIC(name)    static G_LOCK_DEFINE (name)
336 #  define G_LOCK_DEFINE(name)           \
337     GStaticMutex G_LOCK_NAME (name) = G_STATIC_MUTEX_INIT
338 #  define G_LOCK_EXTERN(name)           extern GStaticMutex G_LOCK_NAME (name)
339
340 #  ifdef G_DEBUG_LOCKS
341 #    define G_LOCK(name)                G_STMT_START{             \
342         g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG,                   \
343                "file %s: line %d (%s): locking: %s ",             \
344                __FILE__,        __LINE__, G_GNUC_PRETTY_FUNCTION, \
345                #name);                                            \
346         g_static_mutex_lock (&G_LOCK_NAME (name));                \
347      }G_STMT_END
348 #    define G_UNLOCK(name)              G_STMT_START{             \
349         g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG,                   \
350                "file %s: line %d (%s): unlocking: %s ",           \
351                __FILE__,        __LINE__, G_GNUC_PRETTY_FUNCTION, \
352                #name);                                            \
353        g_static_mutex_unlock (&G_LOCK_NAME (name));               \
354      }G_STMT_END
355 #    define G_TRYLOCK(name)                                       \
356         (g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG,                  \
357                "file %s: line %d (%s): try locking: %s ",         \
358                __FILE__,        __LINE__, G_GNUC_PRETTY_FUNCTION, \
359                #name), g_static_mutex_trylock (&G_LOCK_NAME (name)))
360 #  else  /* !G_DEBUG_LOCKS */
361 #    define G_LOCK(name) g_static_mutex_lock       (&G_LOCK_NAME (name))
362 #    define G_UNLOCK(name) g_static_mutex_unlock   (&G_LOCK_NAME (name))
363 #    define G_TRYLOCK(name) g_static_mutex_trylock (&G_LOCK_NAME (name))
364 #  endif /* !G_DEBUG_LOCKS */
365 #else   /* !G_THREADS_ENABLED */
366 #  define G_LOCK_DEFINE_STATIC(name)    extern void glib_dummy_decl (void)
367 #  define G_LOCK_DEFINE(name)           extern void glib_dummy_decl (void)
368 #  define G_LOCK_EXTERN(name)           extern void glib_dummy_decl (void)
369 #  define G_LOCK(name)
370 #  define G_UNLOCK(name)
371 #  define G_TRYLOCK(name)               (TRUE)
372 #endif  /* !G_THREADS_ENABLED */
373
374
375 G_END_DECLS
376
377 #endif /* __G_THREAD_H__ */