99de6a8fa56716cc3efff3771c89d61ca7714f7c
[platform/upstream/glib.git] / glib / gmain.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * gmain.c: Main loop abstraction, timeouts, and idle functions
5  * Copyright 1998 Owen Taylor
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /*
24  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
25  * file for a list of people on the GLib Team.  See the ChangeLog
26  * files for a list of changes.  These files are distributed with
27  * GLib at ftp://ftp.gtk.org/pub/gtk/.
28  */
29
30 /*
31  * MT safe
32  */
33
34 #include "config.h"
35 #include "glibconfig.h"
36
37 /* Uncomment the next line (and the corresponding line in gpoll.c) to
38  * enable debugging printouts if the environment variable
39  * G_MAIN_POLL_DEBUG is set to some value.
40  */
41 /* #define G_MAIN_POLL_DEBUG */
42
43 #ifdef _WIN32
44 /* Always enable debugging printout on Windows, as it is more often
45  * needed there...
46  */
47 #define G_MAIN_POLL_DEBUG
48 #endif
49
50 #ifdef G_OS_UNIX
51 #include "glib-unix.h"
52 #include <pthread.h>
53 #ifdef HAVE_EVENTFD
54 #include <sys/eventfd.h>
55 #endif
56 #endif
57
58 #include <signal.h>
59 #include <sys/types.h>
60 #include <time.h>
61 #include <stdlib.h>
62 #ifdef HAVE_SYS_TIME_H
63 #include <sys/time.h>
64 #endif /* HAVE_SYS_TIME_H */
65 #ifdef HAVE_UNISTD_H
66 #include <unistd.h>
67 #endif /* HAVE_UNISTD_H */
68 #include <errno.h>
69 #include <string.h>
70
71 #ifdef G_OS_WIN32
72 #define STRICT
73 #include <windows.h>
74 #endif /* G_OS_WIN32 */
75
76 #ifdef G_OS_BEOS
77 #include <sys/socket.h>
78 #include <sys/wait.h>
79 #endif /* G_OS_BEOS */
80
81 #include "gmain.h"
82
83 #include "garray.h"
84 #include "giochannel.h"
85 #include "ghash.h"
86 #include "ghook.h"
87 #include "gqueue.h"
88 #include "gstrfuncs.h"
89 #include "gtestutils.h"
90
91 #ifdef G_OS_WIN32
92 #include "gwin32.h"
93 #endif
94
95 #ifdef  G_MAIN_POLL_DEBUG
96 #include "gtimer.h"
97 #endif
98
99 #include "gwakeup.h"
100 #include "gmain-internal.h"
101 #include "glib-init.h"
102 #include "glib-private.h"
103
104 /**
105  * SECTION:main
106  * @title: The Main Event Loop
107  * @short_description: manages all available sources of events
108  *
109  * The main event loop manages all the available sources of events for
110  * GLib and GTK+ applications. These events can come from any number of
111  * different types of sources such as file descriptors (plain files,
112  * pipes or sockets) and timeouts. New types of event sources can also
113  * be added using g_source_attach().
114  *
115  * To allow multiple independent sets of sources to be handled in
116  * different threads, each source is associated with a #GMainContext.
117  * A GMainContext can only be running in a single thread, but
118  * sources can be added to it and removed from it from other threads.
119  *
120  * Each event source is assigned a priority. The default priority,
121  * #G_PRIORITY_DEFAULT, is 0. Values less than 0 denote higher priorities.
122  * Values greater than 0 denote lower priorities. Events from high priority
123  * sources are always processed before events from lower priority sources.
124  *
125  * Idle functions can also be added, and assigned a priority. These will
126  * be run whenever no events with a higher priority are ready to be processed.
127  *
128  * The #GMainLoop data type represents a main event loop. A GMainLoop is
129  * created with g_main_loop_new(). After adding the initial event sources,
130  * g_main_loop_run() is called. This continuously checks for new events from
131  * each of the event sources and dispatches them. Finally, the processing of
132  * an event from one of the sources leads to a call to g_main_loop_quit() to
133  * exit the main loop, and g_main_loop_run() returns.
134  *
135  * It is possible to create new instances of #GMainLoop recursively.
136  * This is often used in GTK+ applications when showing modal dialog
137  * boxes. Note that event sources are associated with a particular
138  * #GMainContext, and will be checked and dispatched for all main
139  * loops associated with that GMainContext.
140  *
141  * GTK+ contains wrappers of some of these functions, e.g. gtk_main(),
142  * gtk_main_quit() and gtk_events_pending().
143  *
144  * <refsect2><title>Creating new source types</title>
145  * <para>One of the unusual features of the #GMainLoop functionality
146  * is that new types of event source can be created and used in
147  * addition to the builtin type of event source. A new event source
148  * type is used for handling GDK events. A new source type is created
149  * by <firstterm>deriving</firstterm> from the #GSource structure.
150  * The derived type of source is represented by a structure that has
151  * the #GSource structure as a first element, and other elements specific
152  * to the new source type. To create an instance of the new source type,
153  * call g_source_new() passing in the size of the derived structure and
154  * a table of functions. These #GSourceFuncs determine the behavior of
155  * the new source type.</para>
156  * <para>New source types basically interact with the main context
157  * in two ways. Their prepare function in #GSourceFuncs can set a timeout
158  * to determine the maximum amount of time that the main loop will sleep
159  * before checking the source again. In addition, or as well, the source
160  * can add file descriptors to the set that the main context checks using
161  * g_source_add_poll().</para>
162  * </refsect2>
163  * <refsect2><title>Customizing the main loop iteration</title>
164  * <para>Single iterations of a #GMainContext can be run with
165  * g_main_context_iteration(). In some cases, more detailed control
166  * of exactly how the details of the main loop work is desired, for
167  * instance, when integrating the #GMainLoop with an external main loop.
168  * In such cases, you can call the component functions of
169  * g_main_context_iteration() directly. These functions are
170  * g_main_context_prepare(), g_main_context_query(),
171  * g_main_context_check() and g_main_context_dispatch().</para>
172  * <para>The operation of these functions can best be seen in terms
173  * of a state diagram, as shown in <xref linkend="mainloop-states"/>.</para>
174  * <figure id="mainloop-states"><title>States of a Main Context</title>
175  * <graphic fileref="mainloop-states.gif" format="GIF"></graphic>
176  * </figure>
177  * </refsect2>
178  *
179  * On Unix, the GLib mainloop is incompatible with fork().  Any program
180  * using the mainloop must either exec() or exit() from the child
181  * without returning to the mainloop.
182  */
183
184 /* Types */
185
186 typedef struct _GTimeoutSource GTimeoutSource;
187 typedef struct _GChildWatchSource GChildWatchSource;
188 typedef struct _GUnixSignalWatchSource GUnixSignalWatchSource;
189 typedef struct _GPollRec GPollRec;
190 typedef struct _GSourceCallback GSourceCallback;
191
192 typedef enum
193 {
194   G_SOURCE_READY = 1 << G_HOOK_FLAG_USER_SHIFT,
195   G_SOURCE_CAN_RECURSE = 1 << (G_HOOK_FLAG_USER_SHIFT + 1),
196   G_SOURCE_BLOCKED = 1 << (G_HOOK_FLAG_USER_SHIFT + 2)
197 } GSourceFlags;
198
199 typedef struct _GSourceList GSourceList;
200
201 struct _GSourceList
202 {
203   GSource *head, *tail;
204   gint priority;
205 };
206
207 typedef struct _GMainWaiter GMainWaiter;
208
209 struct _GMainWaiter
210 {
211   GCond *cond;
212   GMutex *mutex;
213 };
214
215 typedef struct _GMainDispatch GMainDispatch;
216
217 struct _GMainDispatch
218 {
219   gint depth;
220   GSource *source;
221 };
222
223 #ifdef G_MAIN_POLL_DEBUG
224 gboolean _g_main_poll_debug = FALSE;
225 #endif
226
227 struct _GMainContext
228 {
229   /* The following lock is used for both the list of sources
230    * and the list of poll records
231    */
232   GMutex mutex;
233   GCond cond;
234   GThread *owner;
235   guint owner_count;
236   GSList *waiters;
237
238   gint ref_count;
239
240   GPtrArray *pending_dispatches;
241   gint timeout;                 /* Timeout for current iteration */
242
243   guint next_id;
244   GHashTable *overflow_used_source_ids; /* set<guint> */
245   GList *source_lists;
246   gint in_check_or_prepare;
247
248   GPollRec *poll_records, *poll_records_tail;
249   guint n_poll_records;
250   GPollFD *cached_poll_array;
251   guint cached_poll_array_size;
252
253   GWakeup *wakeup;
254
255   GPollFD wake_up_rec;
256
257 /* Flag indicating whether the set of fd's changed during a poll */
258   gboolean poll_changed;
259
260   GPollFunc poll_func;
261
262   gint64   time;
263   gboolean time_is_fresh;
264 };
265
266 struct _GSourceCallback
267 {
268   guint ref_count;
269   GSourceFunc func;
270   gpointer    data;
271   GDestroyNotify notify;
272 };
273
274 struct _GMainLoop
275 {
276   GMainContext *context;
277   gboolean is_running;
278   gint ref_count;
279 };
280
281 struct _GTimeoutSource
282 {
283   GSource     source;
284   guint       interval;
285   gboolean    seconds;
286 };
287
288 struct _GChildWatchSource
289 {
290   GSource     source;
291   GPid        pid;
292   gint        child_status;
293 #ifdef G_OS_WIN32
294   GPollFD     poll;
295 #else /* G_OS_WIN32 */
296   gboolean    child_exited;
297 #endif /* G_OS_WIN32 */
298 };
299
300 struct _GUnixSignalWatchSource
301 {
302   GSource     source;
303   int         signum;
304   gboolean    pending;
305 };
306
307 struct _GPollRec
308 {
309   GPollFD *fd;
310   GPollRec *prev;
311   GPollRec *next;
312   gint priority;
313 };
314
315 struct _GSourcePrivate
316 {
317   GSList *child_sources;
318   GSource *parent_source;
319
320   gint64 ready_time;
321
322   /* This is currently only used on UNIX, but we always declare it (and
323    * let it remain empty on Windows) to avoid #ifdef all over the place.
324    */
325   GSList *fds;
326 };
327
328 typedef struct _GSourceIter
329 {
330   GMainContext *context;
331   gboolean may_modify;
332   GList *current_list;
333   GSource *source;
334 } GSourceIter;
335
336 #define LOCK_CONTEXT(context) g_mutex_lock (&context->mutex)
337 #define UNLOCK_CONTEXT(context) g_mutex_unlock (&context->mutex)
338 #define G_THREAD_SELF g_thread_self ()
339
340 #define SOURCE_DESTROYED(source) (((source)->flags & G_HOOK_FLAG_ACTIVE) == 0)
341 #define SOURCE_BLOCKED(source) (((source)->flags & G_SOURCE_BLOCKED) != 0)
342
343 #define SOURCE_UNREF(source, context)                       \
344    G_STMT_START {                                           \
345     if ((source)->ref_count > 1)                            \
346       (source)->ref_count--;                                \
347     else                                                    \
348       g_source_unref_internal ((source), (context), TRUE);  \
349    } G_STMT_END
350
351
352 /* Forward declarations */
353
354 static void g_source_unref_internal             (GSource      *source,
355                                                  GMainContext *context,
356                                                  gboolean      have_lock);
357 static void g_source_destroy_internal           (GSource      *source,
358                                                  GMainContext *context,
359                                                  gboolean      have_lock);
360 static void g_source_set_priority_unlocked      (GSource      *source,
361                                                  GMainContext *context,
362                                                  gint          priority);
363 static void g_child_source_remove_internal      (GSource      *child_source,
364                                                  GMainContext *context);
365
366 static void g_main_context_poll                 (GMainContext *context,
367                                                  gint          timeout,
368                                                  gint          priority,
369                                                  GPollFD      *fds,
370                                                  gint          n_fds);
371 static void g_main_context_add_poll_unlocked    (GMainContext *context,
372                                                  gint          priority,
373                                                  GPollFD      *fd);
374 static void g_main_context_remove_poll_unlocked (GMainContext *context,
375                                                  GPollFD      *fd);
376
377 static void     g_source_iter_init  (GSourceIter   *iter,
378                                      GMainContext  *context,
379                                      gboolean       may_modify);
380 static gboolean g_source_iter_next  (GSourceIter   *iter,
381                                      GSource      **source);
382 static void     g_source_iter_clear (GSourceIter   *iter);
383
384 static gboolean g_timeout_dispatch (GSource     *source,
385                                     GSourceFunc  callback,
386                                     gpointer     user_data);
387 static gboolean g_child_watch_prepare  (GSource     *source,
388                                         gint        *timeout);
389 static gboolean g_child_watch_check    (GSource     *source);
390 static gboolean g_child_watch_dispatch (GSource     *source,
391                                         GSourceFunc  callback,
392                                         gpointer     user_data);
393 static void     g_child_watch_finalize (GSource     *source);
394 #ifdef G_OS_UNIX
395 static void g_unix_signal_handler (int signum);
396 static gboolean g_unix_signal_watch_prepare  (GSource     *source,
397                                               gint        *timeout);
398 static gboolean g_unix_signal_watch_check    (GSource     *source);
399 static gboolean g_unix_signal_watch_dispatch (GSource     *source,
400                                               GSourceFunc  callback,
401                                               gpointer     user_data);
402 static void     g_unix_signal_watch_finalize  (GSource     *source);
403 #endif
404 static gboolean g_idle_prepare     (GSource     *source,
405                                     gint        *timeout);
406 static gboolean g_idle_check       (GSource     *source);
407 static gboolean g_idle_dispatch    (GSource     *source,
408                                     GSourceFunc  callback,
409                                     gpointer     user_data);
410
411 static void block_source (GSource *source);
412
413 static GMainContext *glib_worker_context;
414
415 G_LOCK_DEFINE_STATIC (main_loop);
416 static GMainContext *default_main_context;
417
418 #ifndef G_OS_WIN32
419
420
421 /* UNIX signals work by marking one of these variables then waking the
422  * worker context to check on them and dispatch accordingly.
423  */
424 #ifdef HAVE_SIG_ATOMIC_T
425 static volatile sig_atomic_t unix_signal_pending[NSIG];
426 static volatile sig_atomic_t any_unix_signal_pending;
427 #else
428 static volatile int unix_signal_pending[NSIG];
429 static volatile int any_unix_signal_pending;
430 #endif
431 static volatile guint unix_signal_refcount[NSIG];
432
433 /* Guards all the data below */
434 G_LOCK_DEFINE_STATIC (unix_signal_lock);
435 static GSList *unix_signal_watches;
436 static GSList *unix_child_watches;
437
438 GSourceFuncs g_unix_signal_funcs =
439 {
440   g_unix_signal_watch_prepare,
441   g_unix_signal_watch_check,
442   g_unix_signal_watch_dispatch,
443   g_unix_signal_watch_finalize
444 };
445 #endif /* !G_OS_WIN32 */
446 G_LOCK_DEFINE_STATIC (main_context_list);
447 static GSList *main_context_list = NULL;
448
449 GSourceFuncs g_timeout_funcs =
450 {
451   NULL, /* prepare */
452   NULL, /* check */
453   g_timeout_dispatch,
454   NULL
455 };
456
457 GSourceFuncs g_child_watch_funcs =
458 {
459   g_child_watch_prepare,
460   g_child_watch_check,
461   g_child_watch_dispatch,
462   g_child_watch_finalize
463 };
464
465 GSourceFuncs g_idle_funcs =
466 {
467   g_idle_prepare,
468   g_idle_check,
469   g_idle_dispatch,
470   NULL
471 };
472
473 /**
474  * g_main_context_ref:
475  * @context: a #GMainContext
476  * 
477  * Increases the reference count on a #GMainContext object by one.
478  *
479  * Returns: the @context that was passed in (since 2.6)
480  **/
481 GMainContext *
482 g_main_context_ref (GMainContext *context)
483 {
484   g_return_val_if_fail (context != NULL, NULL);
485   g_return_val_if_fail (g_atomic_int_get (&context->ref_count) > 0, NULL); 
486
487   g_atomic_int_inc (&context->ref_count);
488
489   return context;
490 }
491
492 static inline void
493 poll_rec_list_free (GMainContext *context,
494                     GPollRec     *list)
495 {
496   g_slice_free_chain (GPollRec, list, next);
497 }
498
499 /**
500  * g_main_context_unref:
501  * @context: a #GMainContext
502  * 
503  * Decreases the reference count on a #GMainContext object by one. If
504  * the result is zero, free the context and free all associated memory.
505  **/
506 void
507 g_main_context_unref (GMainContext *context)
508 {
509   GSourceIter iter;
510   GSource *source;
511   GList *sl_iter;
512   GSourceList *list;
513
514   g_return_if_fail (context != NULL);
515   g_return_if_fail (g_atomic_int_get (&context->ref_count) > 0); 
516
517   if (!g_atomic_int_dec_and_test (&context->ref_count))
518     return;
519
520   G_LOCK (main_context_list);
521   main_context_list = g_slist_remove (main_context_list, context);
522   G_UNLOCK (main_context_list);
523
524   /* g_source_iter_next() assumes the context is locked. */
525   LOCK_CONTEXT (context);
526   g_source_iter_init (&iter, context, TRUE);
527   while (g_source_iter_next (&iter, &source))
528     {
529       source->context = NULL;
530       g_source_destroy_internal (source, context, TRUE);
531     }
532   UNLOCK_CONTEXT (context);
533
534   for (sl_iter = context->source_lists; sl_iter; sl_iter = sl_iter->next)
535     {
536       list = sl_iter->data;
537       g_slice_free (GSourceList, list);
538     }
539   g_list_free (context->source_lists);
540
541   if (context->overflow_used_source_ids)
542     g_hash_table_destroy (context->overflow_used_source_ids);
543
544   g_mutex_clear (&context->mutex);
545
546   g_ptr_array_free (context->pending_dispatches, TRUE);
547   g_free (context->cached_poll_array);
548
549   poll_rec_list_free (context, context->poll_records);
550
551   g_wakeup_free (context->wakeup);
552   g_cond_clear (&context->cond);
553
554   g_free (context);
555 }
556
557 /* Helper function used by mainloop/overflow test.
558  */
559 GMainContext *
560 g_main_context_new_with_next_id (guint next_id)
561 {
562   GMainContext *ret = g_main_context_new ();
563   
564   ret->next_id = next_id;
565   
566   return ret;
567 }
568
569 /**
570  * g_main_context_new:
571  * 
572  * Creates a new #GMainContext structure.
573  * 
574  * Return value: the new #GMainContext
575  **/
576 GMainContext *
577 g_main_context_new (void)
578 {
579   static gsize initialised;
580   GMainContext *context;
581
582   if (g_once_init_enter (&initialised))
583     {
584 #ifdef G_MAIN_POLL_DEBUG
585       if (getenv ("G_MAIN_POLL_DEBUG") != NULL)
586         _g_main_poll_debug = TRUE;
587 #endif
588
589       g_once_init_leave (&initialised, TRUE);
590     }
591
592   context = g_new0 (GMainContext, 1);
593
594   g_mutex_init (&context->mutex);
595   g_cond_init (&context->cond);
596
597   context->owner = NULL;
598   context->waiters = NULL;
599
600   context->ref_count = 1;
601
602   context->next_id = 1;
603   
604   context->source_lists = NULL;
605   
606   context->poll_func = g_poll;
607   
608   context->cached_poll_array = NULL;
609   context->cached_poll_array_size = 0;
610   
611   context->pending_dispatches = g_ptr_array_new ();
612   
613   context->time_is_fresh = FALSE;
614   
615   context->wakeup = g_wakeup_new ();
616   g_wakeup_get_pollfd (context->wakeup, &context->wake_up_rec);
617   g_main_context_add_poll_unlocked (context, 0, &context->wake_up_rec);
618
619   G_LOCK (main_context_list);
620   main_context_list = g_slist_append (main_context_list, context);
621
622 #ifdef G_MAIN_POLL_DEBUG
623   if (_g_main_poll_debug)
624     g_print ("created context=%p\n", context);
625 #endif
626
627   G_UNLOCK (main_context_list);
628
629   return context;
630 }
631
632 /**
633  * g_main_context_default:
634  * 
635  * Returns the global default main context. This is the main context
636  * used for main loop functions when a main loop is not explicitly
637  * specified, and corresponds to the "main" main loop. See also
638  * g_main_context_get_thread_default().
639  * 
640  * Return value: (transfer none): the global default main context.
641  **/
642 GMainContext *
643 g_main_context_default (void)
644 {
645   /* Slow, but safe */
646   
647   G_LOCK (main_loop);
648
649   if (!default_main_context)
650     {
651       default_main_context = g_main_context_new ();
652 #ifdef G_MAIN_POLL_DEBUG
653       if (_g_main_poll_debug)
654         g_print ("default context=%p\n", default_main_context);
655 #endif
656     }
657
658   G_UNLOCK (main_loop);
659
660   return default_main_context;
661 }
662
663 static void
664 free_context (gpointer data)
665 {
666   GMainContext *context = data;
667
668   g_main_context_release (context);
669   if (context)
670     g_main_context_unref (context);
671 }
672
673 static void
674 free_context_stack (gpointer data)
675 {
676   g_queue_free_full((GQueue *) data, (GDestroyNotify) free_context);
677 }
678
679 static GPrivate thread_context_stack = G_PRIVATE_INIT (free_context_stack);
680
681 /**
682  * g_main_context_push_thread_default:
683  * @context: (allow-none): a #GMainContext, or %NULL for the global default context
684  *
685  * Acquires @context and sets it as the thread-default context for the
686  * current thread. This will cause certain asynchronous operations
687  * (such as most <link linkend="gio">gio</link>-based I/O) which are
688  * started in this thread to run under @context and deliver their
689  * results to its main loop, rather than running under the global
690  * default context in the main thread. Note that calling this function
691  * changes the context returned by
692  * g_main_context_get_thread_default(), <emphasis>not</emphasis> the
693  * one returned by g_main_context_default(), so it does not affect the
694  * context used by functions like g_idle_add().
695  *
696  * Normally you would call this function shortly after creating a new
697  * thread, passing it a #GMainContext which will be run by a
698  * #GMainLoop in that thread, to set a new default context for all
699  * async operations in that thread. (In this case, you don't need to
700  * ever call g_main_context_pop_thread_default().) In some cases
701  * however, you may want to schedule a single operation in a
702  * non-default context, or temporarily use a non-default context in
703  * the main thread. In that case, you can wrap the call to the
704  * asynchronous operation inside a
705  * g_main_context_push_thread_default() /
706  * g_main_context_pop_thread_default() pair, but it is up to you to
707  * ensure that no other asynchronous operations accidentally get
708  * started while the non-default context is active.
709  *
710  * Beware that libraries that predate this function may not correctly
711  * handle being used from a thread with a thread-default context. Eg,
712  * see g_file_supports_thread_contexts().
713  *
714  * Since: 2.22
715  **/
716 void
717 g_main_context_push_thread_default (GMainContext *context)
718 {
719   GQueue *stack;
720   gboolean acquired_context;
721
722   acquired_context = g_main_context_acquire (context);
723   g_return_if_fail (acquired_context);
724
725   if (context == g_main_context_default ())
726     context = NULL;
727   else if (context)
728     g_main_context_ref (context);
729
730   stack = g_private_get (&thread_context_stack);
731   if (!stack)
732     {
733       stack = g_queue_new ();
734       g_private_set (&thread_context_stack, stack);
735     }
736
737   g_queue_push_head (stack, context);
738 }
739
740 /**
741  * g_main_context_pop_thread_default:
742  * @context: (allow-none): a #GMainContext object, or %NULL
743  *
744  * Pops @context off the thread-default context stack (verifying that
745  * it was on the top of the stack).
746  *
747  * Since: 2.22
748  **/
749 void
750 g_main_context_pop_thread_default (GMainContext *context)
751 {
752   GQueue *stack;
753
754   if (context == g_main_context_default ())
755     context = NULL;
756
757   stack = g_private_get (&thread_context_stack);
758
759   g_return_if_fail (stack != NULL);
760   g_return_if_fail (g_queue_peek_head (stack) == context);
761
762   g_queue_pop_head (stack);
763
764   g_main_context_release (context);
765   if (context)
766     g_main_context_unref (context);
767 }
768
769 /**
770  * g_main_context_get_thread_default:
771  *
772  * Gets the thread-default #GMainContext for this thread. Asynchronous
773  * operations that want to be able to be run in contexts other than
774  * the default one should call this method or
775  * g_main_context_ref_thread_default() to get a #GMainContext to add
776  * their #GSource<!-- -->s to. (Note that even in single-threaded
777  * programs applications may sometimes want to temporarily push a
778  * non-default context, so it is not safe to assume that this will
779  * always return %NULL if you are running in the default thread.)
780  *
781  * If you need to hold a reference on the context, use
782  * g_main_context_ref_thread_default() instead.
783  *
784  * Returns: (transfer none): the thread-default #GMainContext, or
785  * %NULL if the thread-default context is the global default context.
786  *
787  * Since: 2.22
788  **/
789 GMainContext *
790 g_main_context_get_thread_default (void)
791 {
792   GQueue *stack;
793
794   stack = g_private_get (&thread_context_stack);
795   if (stack)
796     return g_queue_peek_head (stack);
797   else
798     return NULL;
799 }
800
801 /**
802  * g_main_context_ref_thread_default:
803  *
804  * Gets the thread-default #GMainContext for this thread, as with
805  * g_main_context_get_thread_default(), but also adds a reference to
806  * it with g_main_context_ref(). In addition, unlike
807  * g_main_context_get_thread_default(), if the thread-default context
808  * is the global default context, this will return that #GMainContext
809  * (with a ref added to it) rather than returning %NULL.
810  *
811  * Returns: (transfer full): the thread-default #GMainContext. Unref
812  *     with g_main_context_unref() when you are done with it.
813  *
814  * Since: 2.32
815  */
816 GMainContext *
817 g_main_context_ref_thread_default (void)
818 {
819   GMainContext *context;
820
821   context = g_main_context_get_thread_default ();
822   if (!context)
823     context = g_main_context_default ();
824   return g_main_context_ref (context);
825 }
826
827 /* Hooks for adding to the main loop */
828
829 /**
830  * g_source_new:
831  * @source_funcs: structure containing functions that implement
832  *                the sources behavior.
833  * @struct_size: size of the #GSource structure to create.
834  * 
835  * Creates a new #GSource structure. The size is specified to
836  * allow creating structures derived from #GSource that contain
837  * additional data. The size passed in must be at least
838  * <literal>sizeof (GSource)</literal>.
839  * 
840  * The source will not initially be associated with any #GMainContext
841  * and must be added to one with g_source_attach() before it will be
842  * executed.
843  * 
844  * Return value: the newly-created #GSource.
845  **/
846 GSource *
847 g_source_new (GSourceFuncs *source_funcs,
848               guint         struct_size)
849 {
850   GSource *source;
851
852   g_return_val_if_fail (source_funcs != NULL, NULL);
853   g_return_val_if_fail (struct_size >= sizeof (GSource), NULL);
854   
855   source = (GSource*) g_malloc0 (struct_size);
856   source->priv = g_slice_new0 (GSourcePrivate);
857   source->source_funcs = source_funcs;
858   source->ref_count = 1;
859   
860   source->priority = G_PRIORITY_DEFAULT;
861
862   source->flags = G_HOOK_FLAG_ACTIVE;
863
864   source->priv->ready_time = -1;
865
866   /* NULL/0 initialization for all other fields */
867   
868   return source;
869 }
870
871 /* Holds context's lock */
872 static void
873 g_source_iter_init (GSourceIter  *iter,
874                     GMainContext *context,
875                     gboolean      may_modify)
876 {
877   iter->context = context;
878   iter->current_list = NULL;
879   iter->source = NULL;
880   iter->may_modify = may_modify;
881 }
882
883 /* Holds context's lock */
884 static gboolean
885 g_source_iter_next (GSourceIter *iter, GSource **source)
886 {
887   GSource *next_source;
888
889   if (iter->source)
890     next_source = iter->source->next;
891   else
892     next_source = NULL;
893
894   if (!next_source)
895     {
896       if (iter->current_list)
897         iter->current_list = iter->current_list->next;
898       else
899         iter->current_list = iter->context->source_lists;
900
901       if (iter->current_list)
902         {
903           GSourceList *source_list = iter->current_list->data;
904
905           next_source = source_list->head;
906         }
907     }
908
909   /* Note: unreffing iter->source could potentially cause its
910    * GSourceList to be removed from source_lists (if iter->source is
911    * the only source in its list, and it is destroyed), so we have to
912    * keep it reffed until after we advance iter->current_list, above.
913    */
914
915   if (iter->source && iter->may_modify)
916     SOURCE_UNREF (iter->source, iter->context);
917   iter->source = next_source;
918   if (iter->source && iter->may_modify)
919     iter->source->ref_count++;
920
921   *source = iter->source;
922   return *source != NULL;
923 }
924
925 /* Holds context's lock. Only necessary to call if you broke out of
926  * the g_source_iter_next() loop early.
927  */
928 static void
929 g_source_iter_clear (GSourceIter *iter)
930 {
931   if (iter->source && iter->may_modify)
932     {
933       SOURCE_UNREF (iter->source, iter->context);
934       iter->source = NULL;
935     }
936 }
937
938 /* Holds context's lock
939  */
940 static GSourceList *
941 find_source_list_for_priority (GMainContext *context,
942                                gint          priority,
943                                gboolean      create)
944 {
945   GList *iter, *last;
946   GSourceList *source_list;
947
948   last = NULL;
949   for (iter = context->source_lists; iter != NULL; last = iter, iter = iter->next)
950     {
951       source_list = iter->data;
952
953       if (source_list->priority == priority)
954         return source_list;
955
956       if (source_list->priority > priority)
957         {
958           if (!create)
959             return NULL;
960
961           source_list = g_slice_new0 (GSourceList);
962           source_list->priority = priority;
963           context->source_lists = g_list_insert_before (context->source_lists,
964                                                         iter,
965                                                         source_list);
966           return source_list;
967         }
968     }
969
970   if (!create)
971     return NULL;
972
973   source_list = g_slice_new0 (GSourceList);
974   source_list->priority = priority;
975
976   if (!last)
977     context->source_lists = g_list_append (NULL, source_list);
978   else
979     {
980       /* This just appends source_list to the end of
981        * context->source_lists without having to walk the list again.
982        */
983       last = g_list_append (last, source_list);
984     }
985   return source_list;
986 }
987
988 /* Holds context's lock
989  */
990 static void
991 source_add_to_context (GSource      *source,
992                        GMainContext *context)
993 {
994   GSourceList *source_list;
995   GSource *prev, *next;
996
997   source_list = find_source_list_for_priority (context, source->priority, TRUE);
998
999   if (source->priv->parent_source)
1000     {
1001       g_assert (source_list->head != NULL);
1002
1003       /* Put the source immediately before its parent */
1004       prev = source->priv->parent_source->prev;
1005       next = source->priv->parent_source;
1006     }
1007   else
1008     {
1009       prev = source_list->tail;
1010       next = NULL;
1011     }
1012
1013   source->next = next;
1014   if (next)
1015     next->prev = source;
1016   else
1017     source_list->tail = source;
1018   
1019   source->prev = prev;
1020   if (prev)
1021     prev->next = source;
1022   else
1023     source_list->head = source;
1024 }
1025
1026 /* Holds context's lock
1027  */
1028 static void
1029 source_remove_from_context (GSource      *source,
1030                             GMainContext *context)
1031 {
1032   GSourceList *source_list;
1033
1034   source_list = find_source_list_for_priority (context, source->priority, FALSE);
1035   g_return_if_fail (source_list != NULL);
1036
1037   if (source->prev)
1038     source->prev->next = source->next;
1039   else
1040     source_list->head = source->next;
1041
1042   if (source->next)
1043     source->next->prev = source->prev;
1044   else
1045     source_list->tail = source->prev;
1046
1047   source->prev = NULL;
1048   source->next = NULL;
1049
1050   if (source_list->head == NULL)
1051     {
1052       context->source_lists = g_list_remove (context->source_lists, source_list);
1053       g_slice_free (GSourceList, source_list);
1054     }
1055
1056   if (context->overflow_used_source_ids)
1057     g_hash_table_remove (context->overflow_used_source_ids,
1058                          GUINT_TO_POINTER (source->source_id));
1059   
1060 }
1061
1062 static void
1063 assign_source_id_unlocked (GMainContext   *context,
1064                            GSource        *source)
1065 {
1066   guint id;
1067
1068   /* Are we about to overflow back to 0? 
1069    * See https://bugzilla.gnome.org/show_bug.cgi?id=687098
1070    */
1071   if (G_UNLIKELY (context->next_id == G_MAXUINT &&
1072                   context->overflow_used_source_ids == NULL))
1073     {
1074       GSourceIter iter;
1075       GSource *source;
1076
1077       context->overflow_used_source_ids = g_hash_table_new (NULL, NULL);
1078   
1079       g_source_iter_init (&iter, context, FALSE);
1080       while (g_source_iter_next (&iter, &source))
1081         {
1082           g_hash_table_add (context->overflow_used_source_ids,
1083                             GUINT_TO_POINTER (source->source_id));
1084         }
1085       id = G_MAXUINT;
1086     }
1087   else if (context->overflow_used_source_ids == NULL)
1088     {
1089       id = context->next_id++;
1090     }
1091   else
1092     {
1093       /*
1094        * If we overran G_MAXUINT, we fall back to randomly probing the
1095        * source ids for the current context.  This will be slower the more
1096        * sources there are, but we're mainly concerned right now about
1097        * correctness and code size.  There's time for a more clever solution
1098        * later.
1099        */
1100       do
1101         id = g_random_int ();
1102       while (id == 0 ||
1103              g_hash_table_contains (context->overflow_used_source_ids,
1104                                     GUINT_TO_POINTER (id)));
1105       g_hash_table_add (context->overflow_used_source_ids, GUINT_TO_POINTER (id));
1106     }
1107
1108   source->source_id = id;
1109 }
1110
1111 static guint
1112 g_source_attach_unlocked (GSource      *source,
1113                           GMainContext *context)
1114 {
1115   GSList *tmp_list;
1116
1117   source->context = context;
1118   assign_source_id_unlocked (context, source);
1119   source->ref_count++;
1120   source_add_to_context (source, context);
1121
1122   if (!SOURCE_BLOCKED (source))
1123     {
1124       tmp_list = source->poll_fds;
1125       while (tmp_list)
1126         {
1127           g_main_context_add_poll_unlocked (context, source->priority, tmp_list->data);
1128           tmp_list = tmp_list->next;
1129         }
1130
1131       for (tmp_list = source->priv->fds; tmp_list; tmp_list = tmp_list->next)
1132         g_main_context_add_poll_unlocked (context, source->priority, tmp_list->data);
1133     }
1134
1135   tmp_list = source->priv->child_sources;
1136   while (tmp_list)
1137     {
1138       g_source_attach_unlocked (tmp_list->data, context);
1139       tmp_list = tmp_list->next;
1140     }
1141
1142   return source->source_id;
1143 }
1144
1145 /**
1146  * g_source_attach:
1147  * @source: a #GSource
1148  * @context: (allow-none): a #GMainContext (if %NULL, the default context will be used)
1149  * 
1150  * Adds a #GSource to a @context so that it will be executed within
1151  * that context. Remove it by calling g_source_destroy().
1152  *
1153  * Return value: the ID (greater than 0) for the source within the 
1154  *   #GMainContext. 
1155  **/
1156 guint
1157 g_source_attach (GSource      *source,
1158                  GMainContext *context)
1159 {
1160   guint result = 0;
1161
1162   g_return_val_if_fail (source->context == NULL, 0);
1163   g_return_val_if_fail (!SOURCE_DESTROYED (source), 0);
1164   
1165   if (!context)
1166     context = g_main_context_default ();
1167
1168   LOCK_CONTEXT (context);
1169
1170   result = g_source_attach_unlocked (source, context);
1171
1172   /* If another thread has acquired the context, wake it up since it
1173    * might be in poll() right now.
1174    */
1175   if (context->owner && context->owner != G_THREAD_SELF)
1176     g_wakeup_signal (context->wakeup);
1177
1178   UNLOCK_CONTEXT (context);
1179
1180   return result;
1181 }
1182
1183 static void
1184 g_source_destroy_internal (GSource      *source,
1185                            GMainContext *context,
1186                            gboolean      have_lock)
1187 {
1188   if (!have_lock)
1189     LOCK_CONTEXT (context);
1190   
1191   if (!SOURCE_DESTROYED (source))
1192     {
1193       GSList *tmp_list;
1194       gpointer old_cb_data;
1195       GSourceCallbackFuncs *old_cb_funcs;
1196       
1197       source->flags &= ~G_HOOK_FLAG_ACTIVE;
1198
1199       old_cb_data = source->callback_data;
1200       old_cb_funcs = source->callback_funcs;
1201
1202       source->callback_data = NULL;
1203       source->callback_funcs = NULL;
1204
1205       if (old_cb_funcs)
1206         {
1207           UNLOCK_CONTEXT (context);
1208           old_cb_funcs->unref (old_cb_data);
1209           LOCK_CONTEXT (context);
1210         }
1211
1212       if (!SOURCE_BLOCKED (source))
1213         {
1214           tmp_list = source->poll_fds;
1215           while (tmp_list)
1216             {
1217               g_main_context_remove_poll_unlocked (context, tmp_list->data);
1218               tmp_list = tmp_list->next;
1219             }
1220
1221           for (tmp_list = source->priv->fds; tmp_list; tmp_list = tmp_list->next)
1222             g_main_context_remove_poll_unlocked (context, tmp_list->data);
1223         }
1224
1225       while (source->priv->child_sources)
1226         g_child_source_remove_internal (source->priv->child_sources->data, context);
1227
1228       if (source->priv->parent_source)
1229         g_child_source_remove_internal (source, context);
1230           
1231       g_source_unref_internal (source, context, TRUE);
1232     }
1233
1234   if (!have_lock)
1235     UNLOCK_CONTEXT (context);
1236 }
1237
1238 /**
1239  * g_source_destroy:
1240  * @source: a #GSource
1241  * 
1242  * Removes a source from its #GMainContext, if any, and mark it as
1243  * destroyed.  The source cannot be subsequently added to another
1244  * context.
1245  **/
1246 void
1247 g_source_destroy (GSource *source)
1248 {
1249   GMainContext *context;
1250   
1251   g_return_if_fail (source != NULL);
1252   
1253   context = source->context;
1254   
1255   if (context)
1256     g_source_destroy_internal (source, context, FALSE);
1257   else
1258     source->flags &= ~G_HOOK_FLAG_ACTIVE;
1259 }
1260
1261 /**
1262  * g_source_get_id:
1263  * @source: a #GSource
1264  * 
1265  * Returns the numeric ID for a particular source. The ID of a source
1266  * is a positive integer which is unique within a particular main loop 
1267  * context. The reverse
1268  * mapping from ID to source is done by g_main_context_find_source_by_id().
1269  *
1270  * Return value: the ID (greater than 0) for the source
1271  **/
1272 guint
1273 g_source_get_id (GSource *source)
1274 {
1275   guint result;
1276   
1277   g_return_val_if_fail (source != NULL, 0);
1278   g_return_val_if_fail (source->context != NULL, 0);
1279
1280   LOCK_CONTEXT (source->context);
1281   result = source->source_id;
1282   UNLOCK_CONTEXT (source->context);
1283   
1284   return result;
1285 }
1286
1287 /**
1288  * g_source_get_context:
1289  * @source: a #GSource
1290  * 
1291  * Gets the #GMainContext with which the source is associated.
1292  *
1293  * You can call this on a source that has been destroyed, provided
1294  * that the #GMainContext it was attached to still exists (in which
1295  * case it will return that #GMainContext). In particular, you can
1296  * always call this function on the source returned from
1297  * g_main_current_source(). But calling this function on a source
1298  * whose #GMainContext has been destroyed is an error.
1299  * 
1300  * Return value: (transfer none) (allow-none): the #GMainContext with which the
1301  *               source is associated, or %NULL if the context has not
1302  *               yet been added to a source.
1303  **/
1304 GMainContext *
1305 g_source_get_context (GSource *source)
1306 {
1307   g_return_val_if_fail (source->context != NULL || !SOURCE_DESTROYED (source), NULL);
1308
1309   return source->context;
1310 }
1311
1312 /**
1313  * g_source_add_poll:
1314  * @source:a #GSource 
1315  * @fd: a #GPollFD structure holding information about a file
1316  *      descriptor to watch.
1317  *
1318  * Adds a file descriptor to the set of file descriptors polled for
1319  * this source. This is usually combined with g_source_new() to add an
1320  * event source. The event source's check function will typically test
1321  * the @revents field in the #GPollFD struct and return %TRUE if events need
1322  * to be processed.
1323  *
1324  * Using this API forces the linear scanning of event sources on each
1325  * main loop iteration.  Newly-written event sources should try to use
1326  * g_source_add_unix_fd() instead of this API.
1327  **/
1328 void
1329 g_source_add_poll (GSource *source,
1330                    GPollFD *fd)
1331 {
1332   GMainContext *context;
1333   
1334   g_return_if_fail (source != NULL);
1335   g_return_if_fail (fd != NULL);
1336   g_return_if_fail (!SOURCE_DESTROYED (source));
1337   
1338   context = source->context;
1339
1340   if (context)
1341     LOCK_CONTEXT (context);
1342   
1343   source->poll_fds = g_slist_prepend (source->poll_fds, fd);
1344
1345   if (context)
1346     {
1347       if (!SOURCE_BLOCKED (source))
1348         g_main_context_add_poll_unlocked (context, source->priority, fd);
1349       UNLOCK_CONTEXT (context);
1350     }
1351 }
1352
1353 /**
1354  * g_source_remove_poll:
1355  * @source:a #GSource 
1356  * @fd: a #GPollFD structure previously passed to g_source_add_poll().
1357  * 
1358  * Removes a file descriptor from the set of file descriptors polled for
1359  * this source. 
1360  **/
1361 void
1362 g_source_remove_poll (GSource *source,
1363                       GPollFD *fd)
1364 {
1365   GMainContext *context;
1366   
1367   g_return_if_fail (source != NULL);
1368   g_return_if_fail (fd != NULL);
1369   g_return_if_fail (!SOURCE_DESTROYED (source));
1370   
1371   context = source->context;
1372
1373   if (context)
1374     LOCK_CONTEXT (context);
1375   
1376   source->poll_fds = g_slist_remove (source->poll_fds, fd);
1377
1378   if (context)
1379     {
1380       if (!SOURCE_BLOCKED (source))
1381         g_main_context_remove_poll_unlocked (context, fd);
1382       UNLOCK_CONTEXT (context);
1383     }
1384 }
1385
1386 /**
1387  * g_source_add_child_source:
1388  * @source:a #GSource
1389  * @child_source: a second #GSource that @source should "poll"
1390  *
1391  * Adds @child_source to @source as a "polled" source; when @source is
1392  * added to a #GMainContext, @child_source will be automatically added
1393  * with the same priority, when @child_source is triggered, it will
1394  * cause @source to dispatch (in addition to calling its own
1395  * callback), and when @source is destroyed, it will destroy
1396  * @child_source as well. (@source will also still be dispatched if
1397  * its own prepare/check functions indicate that it is ready.)
1398  *
1399  * If you don't need @child_source to do anything on its own when it
1400  * triggers, you can call g_source_set_dummy_callback() on it to set a
1401  * callback that does nothing (except return %TRUE if appropriate).
1402  *
1403  * @source will hold a reference on @child_source while @child_source
1404  * is attached to it.
1405  *
1406  * Since: 2.28
1407  **/
1408 void
1409 g_source_add_child_source (GSource *source,
1410                            GSource *child_source)
1411 {
1412   GMainContext *context;
1413
1414   g_return_if_fail (source != NULL);
1415   g_return_if_fail (child_source != NULL);
1416   g_return_if_fail (!SOURCE_DESTROYED (source));
1417   g_return_if_fail (!SOURCE_DESTROYED (child_source));
1418   g_return_if_fail (child_source->context == NULL);
1419   g_return_if_fail (child_source->priv->parent_source == NULL);
1420
1421   context = source->context;
1422
1423   if (context)
1424     LOCK_CONTEXT (context);
1425
1426   source->priv->child_sources = g_slist_prepend (source->priv->child_sources,
1427                                                  g_source_ref (child_source));
1428   child_source->priv->parent_source = source;
1429   g_source_set_priority_unlocked (child_source, NULL, source->priority);
1430   if (SOURCE_BLOCKED (source))
1431     block_source (child_source);
1432
1433   if (context)
1434     {
1435       UNLOCK_CONTEXT (context);
1436       g_source_attach (child_source, context);
1437     }
1438 }
1439
1440 static void
1441 g_child_source_remove_internal (GSource *child_source,
1442                                 GMainContext *context)
1443 {
1444   GSource *parent_source = child_source->priv->parent_source;
1445
1446   parent_source->priv->child_sources =
1447     g_slist_remove (parent_source->priv->child_sources, child_source);
1448   child_source->priv->parent_source = NULL;
1449
1450   g_source_destroy_internal (child_source, context, TRUE);
1451   g_source_unref_internal (child_source, context, TRUE);
1452 }
1453
1454 /**
1455  * g_source_remove_child_source:
1456  * @source:a #GSource
1457  * @child_source: a #GSource previously passed to
1458  *     g_source_add_child_source().
1459  *
1460  * Detaches @child_source from @source and destroys it.
1461  *
1462  * Since: 2.28
1463  **/
1464 void
1465 g_source_remove_child_source (GSource *source,
1466                               GSource *child_source)
1467 {
1468   GMainContext *context;
1469
1470   g_return_if_fail (source != NULL);
1471   g_return_if_fail (child_source != NULL);
1472   g_return_if_fail (child_source->priv->parent_source == source);
1473   g_return_if_fail (!SOURCE_DESTROYED (source));
1474   g_return_if_fail (!SOURCE_DESTROYED (child_source));
1475
1476   context = source->context;
1477
1478   if (context)
1479     LOCK_CONTEXT (context);
1480
1481   g_child_source_remove_internal (child_source, context);
1482
1483   if (context)
1484     UNLOCK_CONTEXT (context);
1485 }
1486
1487 /**
1488  * g_source_set_callback_indirect:
1489  * @source: the source
1490  * @callback_data: pointer to callback data "object"
1491  * @callback_funcs: functions for reference counting @callback_data
1492  *                  and getting the callback and data
1493  * 
1494  * Sets the callback function storing the data as a refcounted callback
1495  * "object". This is used internally. Note that calling 
1496  * g_source_set_callback_indirect() assumes
1497  * an initial reference count on @callback_data, and thus
1498  * @callback_funcs->unref will eventually be called once more
1499  * than @callback_funcs->ref.
1500  **/
1501 void
1502 g_source_set_callback_indirect (GSource              *source,
1503                                 gpointer              callback_data,
1504                                 GSourceCallbackFuncs *callback_funcs)
1505 {
1506   GMainContext *context;
1507   gpointer old_cb_data;
1508   GSourceCallbackFuncs *old_cb_funcs;
1509   
1510   g_return_if_fail (source != NULL);
1511   g_return_if_fail (callback_funcs != NULL || callback_data == NULL);
1512
1513   context = source->context;
1514
1515   if (context)
1516     LOCK_CONTEXT (context);
1517
1518   old_cb_data = source->callback_data;
1519   old_cb_funcs = source->callback_funcs;
1520
1521   source->callback_data = callback_data;
1522   source->callback_funcs = callback_funcs;
1523   
1524   if (context)
1525     UNLOCK_CONTEXT (context);
1526   
1527   if (old_cb_funcs)
1528     old_cb_funcs->unref (old_cb_data);
1529 }
1530
1531 static void
1532 g_source_callback_ref (gpointer cb_data)
1533 {
1534   GSourceCallback *callback = cb_data;
1535
1536   callback->ref_count++;
1537 }
1538
1539
1540 static void
1541 g_source_callback_unref (gpointer cb_data)
1542 {
1543   GSourceCallback *callback = cb_data;
1544
1545   callback->ref_count--;
1546   if (callback->ref_count == 0)
1547     {
1548       if (callback->notify)
1549         callback->notify (callback->data);
1550       g_free (callback);
1551     }
1552 }
1553
1554 static void
1555 g_source_callback_get (gpointer     cb_data,
1556                        GSource     *source, 
1557                        GSourceFunc *func,
1558                        gpointer    *data)
1559 {
1560   GSourceCallback *callback = cb_data;
1561
1562   *func = callback->func;
1563   *data = callback->data;
1564 }
1565
1566 static GSourceCallbackFuncs g_source_callback_funcs = {
1567   g_source_callback_ref,
1568   g_source_callback_unref,
1569   g_source_callback_get,
1570 };
1571
1572 /**
1573  * g_source_set_callback:
1574  * @source: the source
1575  * @func: a callback function
1576  * @data: the data to pass to callback function
1577  * @notify: (allow-none): a function to call when @data is no longer in use, or %NULL.
1578  * 
1579  * Sets the callback function for a source. The callback for a source is
1580  * called from the source's dispatch function.
1581  *
1582  * The exact type of @func depends on the type of source; ie. you
1583  * should not count on @func being called with @data as its first
1584  * parameter.
1585  * 
1586  * Typically, you won't use this function. Instead use functions specific
1587  * to the type of source you are using.
1588  **/
1589 void
1590 g_source_set_callback (GSource        *source,
1591                        GSourceFunc     func,
1592                        gpointer        data,
1593                        GDestroyNotify  notify)
1594 {
1595   GSourceCallback *new_callback;
1596
1597   g_return_if_fail (source != NULL);
1598
1599   new_callback = g_new (GSourceCallback, 1);
1600
1601   new_callback->ref_count = 1;
1602   new_callback->func = func;
1603   new_callback->data = data;
1604   new_callback->notify = notify;
1605
1606   g_source_set_callback_indirect (source, new_callback, &g_source_callback_funcs);
1607 }
1608
1609
1610 /**
1611  * g_source_set_funcs:
1612  * @source: a #GSource
1613  * @funcs: the new #GSourceFuncs
1614  * 
1615  * Sets the source functions (can be used to override 
1616  * default implementations) of an unattached source.
1617  * 
1618  * Since: 2.12
1619  */
1620 void
1621 g_source_set_funcs (GSource     *source,
1622                    GSourceFuncs *funcs)
1623 {
1624   g_return_if_fail (source != NULL);
1625   g_return_if_fail (source->context == NULL);
1626   g_return_if_fail (source->ref_count > 0);
1627   g_return_if_fail (funcs != NULL);
1628
1629   source->source_funcs = funcs;
1630 }
1631
1632 static void
1633 g_source_set_priority_unlocked (GSource      *source,
1634                                 GMainContext *context,
1635                                 gint          priority)
1636 {
1637   GSList *tmp_list;
1638   
1639   g_return_if_fail (source->priv->parent_source == NULL ||
1640                     source->priv->parent_source->priority == priority);
1641
1642   if (context)
1643     {
1644       /* Remove the source from the context's source and then
1645        * add it back after so it is sorted in the correct place
1646        */
1647       source_remove_from_context (source, source->context);
1648     }
1649
1650   source->priority = priority;
1651
1652   if (context)
1653     {
1654       source_add_to_context (source, source->context);
1655
1656       if (!SOURCE_BLOCKED (source))
1657         {
1658           tmp_list = source->poll_fds;
1659           while (tmp_list)
1660             {
1661               g_main_context_remove_poll_unlocked (context, tmp_list->data);
1662               g_main_context_add_poll_unlocked (context, priority, tmp_list->data);
1663               
1664               tmp_list = tmp_list->next;
1665             }
1666
1667           for (tmp_list = source->priv->fds; tmp_list; tmp_list = tmp_list->next)
1668             {
1669               g_main_context_remove_poll_unlocked (context, tmp_list->data);
1670               g_main_context_add_poll_unlocked (context, priority, tmp_list->data);
1671             }
1672         }
1673     }
1674
1675   if (source->priv->child_sources)
1676     {
1677       tmp_list = source->priv->child_sources;
1678       while (tmp_list)
1679         {
1680           g_source_set_priority_unlocked (tmp_list->data, context, priority);
1681           tmp_list = tmp_list->next;
1682         }
1683     }
1684 }
1685
1686 /**
1687  * g_source_set_priority:
1688  * @source: a #GSource
1689  * @priority: the new priority.
1690  *
1691  * Sets the priority of a source. While the main loop is being run, a
1692  * source will be dispatched if it is ready to be dispatched and no
1693  * sources at a higher (numerically smaller) priority are ready to be
1694  * dispatched.
1695  **/
1696 void
1697 g_source_set_priority (GSource  *source,
1698                        gint      priority)
1699 {
1700   GMainContext *context;
1701
1702   g_return_if_fail (source != NULL);
1703
1704   context = source->context;
1705
1706   if (context)
1707     LOCK_CONTEXT (context);
1708   g_source_set_priority_unlocked (source, context, priority);
1709   if (context)
1710     UNLOCK_CONTEXT (source->context);
1711 }
1712
1713 /**
1714  * g_source_get_priority:
1715  * @source: a #GSource
1716  * 
1717  * Gets the priority of a source.
1718  * 
1719  * Return value: the priority of the source
1720  **/
1721 gint
1722 g_source_get_priority (GSource *source)
1723 {
1724   g_return_val_if_fail (source != NULL, 0);
1725
1726   return source->priority;
1727 }
1728
1729 /**
1730  * g_source_set_ready_time:
1731  * @source: a #GSource
1732  * @ready_time: the monotonic time at which the source will be ready,
1733  *              0 for "immediately", -1 for "never"
1734  *
1735  * Sets a #GSource to be dispatched when the given monotonic time is
1736  * reached (or passed).  If the monotonic time is in the past (as it
1737  * always will be if @ready_time is 0) then the source will be
1738  * dispatched immediately.
1739  *
1740  * If @ready_time is -1 then the source is never woken up on the basis
1741  * of the passage of time.
1742  *
1743  * Dispatching the source does not reset the ready time.  You should do
1744  * so yourself, from the source dispatch function.
1745  *
1746  * Note that if you have a pair of sources where the ready time of one
1747  * suggests that it will be delivered first but the priority for the
1748  * other suggests that it would be delivered first, and the ready time
1749  * for both sources is reached during the same main context iteration
1750  * then the order of dispatch is undefined.
1751  *
1752  * Since: 2.36
1753  **/
1754 void
1755 g_source_set_ready_time (GSource *source,
1756                          gint64   ready_time)
1757 {
1758   GMainContext *context;
1759
1760   g_return_if_fail (source != NULL);
1761   g_return_if_fail (source->ref_count > 0);
1762
1763   if (source->priv->ready_time == ready_time)
1764     return;
1765
1766   context = source->context;
1767
1768   if (context)
1769     LOCK_CONTEXT (context);
1770
1771   source->priv->ready_time = ready_time;
1772
1773   if (context)
1774     {
1775       /* Quite likely that we need to change the timeout on the poll */
1776       if (!SOURCE_BLOCKED (source))
1777         g_wakeup_signal (context->wakeup);
1778       UNLOCK_CONTEXT (context);
1779     }
1780 }
1781
1782 /**
1783  * g_source_get_ready_time:
1784  * @source: a #GSource
1785  *
1786  * Gets the "ready time" of @source, as set by
1787  * g_source_set_ready_time().
1788  *
1789  * Any time before the current monotonic time (including 0) is an
1790  * indication that the source will fire immediately.
1791  *
1792  * Returns: the monotonic ready time, -1 for "never"
1793  **/
1794 gint64
1795 g_source_get_ready_time (GSource *source)
1796 {
1797   g_return_val_if_fail (source != NULL, -1);
1798
1799   return source->priv->ready_time;
1800 }
1801
1802 /**
1803  * g_source_set_can_recurse:
1804  * @source: a #GSource
1805  * @can_recurse: whether recursion is allowed for this source
1806  * 
1807  * Sets whether a source can be called recursively. If @can_recurse is
1808  * %TRUE, then while the source is being dispatched then this source
1809  * will be processed normally. Otherwise, all processing of this
1810  * source is blocked until the dispatch function returns.
1811  **/
1812 void
1813 g_source_set_can_recurse (GSource  *source,
1814                           gboolean  can_recurse)
1815 {
1816   GMainContext *context;
1817   
1818   g_return_if_fail (source != NULL);
1819
1820   context = source->context;
1821
1822   if (context)
1823     LOCK_CONTEXT (context);
1824   
1825   if (can_recurse)
1826     source->flags |= G_SOURCE_CAN_RECURSE;
1827   else
1828     source->flags &= ~G_SOURCE_CAN_RECURSE;
1829
1830   if (context)
1831     UNLOCK_CONTEXT (context);
1832 }
1833
1834 /**
1835  * g_source_get_can_recurse:
1836  * @source: a #GSource
1837  * 
1838  * Checks whether a source is allowed to be called recursively.
1839  * see g_source_set_can_recurse().
1840  * 
1841  * Return value: whether recursion is allowed.
1842  **/
1843 gboolean
1844 g_source_get_can_recurse (GSource  *source)
1845 {
1846   g_return_val_if_fail (source != NULL, FALSE);
1847   
1848   return (source->flags & G_SOURCE_CAN_RECURSE) != 0;
1849 }
1850
1851
1852 /**
1853  * g_source_set_name:
1854  * @source: a #GSource
1855  * @name: debug name for the source
1856  *
1857  * Sets a name for the source, used in debugging and profiling.
1858  * The name defaults to #NULL.
1859  *
1860  * The source name should describe in a human-readable way
1861  * what the source does. For example, "X11 event queue"
1862  * or "GTK+ repaint idle handler" or whatever it is.
1863  *
1864  * It is permitted to call this function multiple times, but is not
1865  * recommended due to the potential performance impact.  For example,
1866  * one could change the name in the "check" function of a #GSourceFuncs 
1867  * to include details like the event type in the source name.
1868  *
1869  * Since: 2.26
1870  **/
1871 void
1872 g_source_set_name (GSource    *source,
1873                    const char *name)
1874 {
1875   g_return_if_fail (source != NULL);
1876
1877   /* setting back to NULL is allowed, just because it's
1878    * weird if get_name can return NULL but you can't
1879    * set that.
1880    */
1881
1882   g_free (source->name);
1883   source->name = g_strdup (name);
1884 }
1885
1886 /**
1887  * g_source_get_name:
1888  * @source: a #GSource
1889  *
1890  * Gets a name for the source, used in debugging and profiling.
1891  * The name may be #NULL if it has never been set with
1892  * g_source_set_name().
1893  *
1894  * Return value: the name of the source
1895  * Since: 2.26
1896  **/
1897 const char *
1898 g_source_get_name (GSource *source)
1899 {
1900   g_return_val_if_fail (source != NULL, NULL);
1901
1902   return source->name;
1903 }
1904
1905 /**
1906  * g_source_set_name_by_id:
1907  * @tag: a #GSource ID
1908  * @name: debug name for the source
1909  *
1910  * Sets the name of a source using its ID.
1911  *
1912  * This is a convenience utility to set source names from the return
1913  * value of g_idle_add(), g_timeout_add(), etc.
1914  *
1915  * Since: 2.26
1916  **/
1917 void
1918 g_source_set_name_by_id (guint           tag,
1919                          const char     *name)
1920 {
1921   GSource *source;
1922
1923   g_return_if_fail (tag > 0);
1924
1925   source = g_main_context_find_source_by_id (NULL, tag);
1926   if (source == NULL)
1927     return;
1928
1929   g_source_set_name (source, name);
1930 }
1931
1932
1933 /**
1934  * g_source_ref:
1935  * @source: a #GSource
1936  * 
1937  * Increases the reference count on a source by one.
1938  * 
1939  * Return value: @source
1940  **/
1941 GSource *
1942 g_source_ref (GSource *source)
1943 {
1944   GMainContext *context;
1945   
1946   g_return_val_if_fail (source != NULL, NULL);
1947
1948   context = source->context;
1949
1950   if (context)
1951     LOCK_CONTEXT (context);
1952
1953   source->ref_count++;
1954
1955   if (context)
1956     UNLOCK_CONTEXT (context);
1957
1958   return source;
1959 }
1960
1961 /* g_source_unref() but possible to call within context lock
1962  */
1963 static void
1964 g_source_unref_internal (GSource      *source,
1965                          GMainContext *context,
1966                          gboolean      have_lock)
1967 {
1968   gpointer old_cb_data = NULL;
1969   GSourceCallbackFuncs *old_cb_funcs = NULL;
1970
1971   g_return_if_fail (source != NULL);
1972   
1973   if (!have_lock && context)
1974     LOCK_CONTEXT (context);
1975
1976   source->ref_count--;
1977   if (source->ref_count == 0)
1978     {
1979       old_cb_data = source->callback_data;
1980       old_cb_funcs = source->callback_funcs;
1981
1982       source->callback_data = NULL;
1983       source->callback_funcs = NULL;
1984
1985       if (context)
1986         {
1987           if (!SOURCE_DESTROYED (source))
1988             g_warning (G_STRLOC ": ref_count == 0, but source was still attached to a context!");
1989           source_remove_from_context (source, context);
1990         }
1991
1992       if (source->source_funcs->finalize)
1993         {
1994           if (context)
1995             UNLOCK_CONTEXT (context);
1996           source->source_funcs->finalize (source);
1997           if (context)
1998             LOCK_CONTEXT (context);
1999         }
2000
2001       g_free (source->name);
2002       source->name = NULL;
2003
2004       g_slist_free (source->poll_fds);
2005       source->poll_fds = NULL;
2006
2007       g_slist_free_full (source->priv->fds, g_free);
2008
2009       g_slice_free (GSourcePrivate, source->priv);
2010       source->priv = NULL;
2011
2012       g_free (source);
2013     }
2014   
2015   if (!have_lock && context)
2016     UNLOCK_CONTEXT (context);
2017
2018   if (old_cb_funcs)
2019     {
2020       if (have_lock)
2021         UNLOCK_CONTEXT (context);
2022       
2023       old_cb_funcs->unref (old_cb_data);
2024
2025       if (have_lock)
2026         LOCK_CONTEXT (context);
2027     }
2028 }
2029
2030 /**
2031  * g_source_unref:
2032  * @source: a #GSource
2033  * 
2034  * Decreases the reference count of a source by one. If the
2035  * resulting reference count is zero the source and associated
2036  * memory will be destroyed. 
2037  **/
2038 void
2039 g_source_unref (GSource *source)
2040 {
2041   g_return_if_fail (source != NULL);
2042
2043   g_source_unref_internal (source, source->context, FALSE);
2044 }
2045
2046 /**
2047  * g_main_context_find_source_by_id:
2048  * @context: (allow-none): a #GMainContext (if %NULL, the default context will be used)
2049  * @source_id: the source ID, as returned by g_source_get_id(). 
2050  * 
2051  * Finds a #GSource given a pair of context and ID.
2052  * 
2053  * Return value: (transfer none): the #GSource if found, otherwise, %NULL
2054  **/
2055 GSource *
2056 g_main_context_find_source_by_id (GMainContext *context,
2057                                   guint         source_id)
2058 {
2059   GSourceIter iter;
2060   GSource *source;
2061   
2062   g_return_val_if_fail (source_id > 0, NULL);
2063
2064   if (context == NULL)
2065     context = g_main_context_default ();
2066   
2067   LOCK_CONTEXT (context);
2068   
2069   g_source_iter_init (&iter, context, FALSE);
2070   while (g_source_iter_next (&iter, &source))
2071     {
2072       if (!SOURCE_DESTROYED (source) &&
2073           source->source_id == source_id)
2074         break;
2075     }
2076   g_source_iter_clear (&iter);
2077
2078   UNLOCK_CONTEXT (context);
2079
2080   return source;
2081 }
2082
2083 /**
2084  * g_main_context_find_source_by_funcs_user_data:
2085  * @context: (allow-none): a #GMainContext (if %NULL, the default context will be used).
2086  * @funcs: the @source_funcs passed to g_source_new().
2087  * @user_data: the user data from the callback.
2088  * 
2089  * Finds a source with the given source functions and user data.  If
2090  * multiple sources exist with the same source function and user data,
2091  * the first one found will be returned.
2092  * 
2093  * Return value: (transfer none): the source, if one was found, otherwise %NULL
2094  **/
2095 GSource *
2096 g_main_context_find_source_by_funcs_user_data (GMainContext *context,
2097                                                GSourceFuncs *funcs,
2098                                                gpointer      user_data)
2099 {
2100   GSourceIter iter;
2101   GSource *source;
2102   
2103   g_return_val_if_fail (funcs != NULL, NULL);
2104
2105   if (context == NULL)
2106     context = g_main_context_default ();
2107   
2108   LOCK_CONTEXT (context);
2109
2110   g_source_iter_init (&iter, context, FALSE);
2111   while (g_source_iter_next (&iter, &source))
2112     {
2113       if (!SOURCE_DESTROYED (source) &&
2114           source->source_funcs == funcs &&
2115           source->callback_funcs)
2116         {
2117           GSourceFunc callback;
2118           gpointer callback_data;
2119
2120           source->callback_funcs->get (source->callback_data, source, &callback, &callback_data);
2121           
2122           if (callback_data == user_data)
2123             break;
2124         }
2125     }
2126   g_source_iter_clear (&iter);
2127
2128   UNLOCK_CONTEXT (context);
2129
2130   return source;
2131 }
2132
2133 /**
2134  * g_main_context_find_source_by_user_data:
2135  * @context: a #GMainContext
2136  * @user_data: the user_data for the callback.
2137  * 
2138  * Finds a source with the given user data for the callback.  If
2139  * multiple sources exist with the same user data, the first
2140  * one found will be returned.
2141  * 
2142  * Return value: (transfer none): the source, if one was found, otherwise %NULL
2143  **/
2144 GSource *
2145 g_main_context_find_source_by_user_data (GMainContext *context,
2146                                          gpointer      user_data)
2147 {
2148   GSourceIter iter;
2149   GSource *source;
2150   
2151   if (context == NULL)
2152     context = g_main_context_default ();
2153   
2154   LOCK_CONTEXT (context);
2155
2156   g_source_iter_init (&iter, context, FALSE);
2157   while (g_source_iter_next (&iter, &source))
2158     {
2159       if (!SOURCE_DESTROYED (source) &&
2160           source->callback_funcs)
2161         {
2162           GSourceFunc callback;
2163           gpointer callback_data = NULL;
2164
2165           source->callback_funcs->get (source->callback_data, source, &callback, &callback_data);
2166
2167           if (callback_data == user_data)
2168             break;
2169         }
2170     }
2171   g_source_iter_clear (&iter);
2172
2173   UNLOCK_CONTEXT (context);
2174
2175   return source;
2176 }
2177
2178 /**
2179  * g_source_remove:
2180  * @tag: the ID of the source to remove.
2181  * 
2182  * Removes the source with the given id from the default main context. 
2183  * The id of
2184  * a #GSource is given by g_source_get_id(), or will be returned by the
2185  * functions g_source_attach(), g_idle_add(), g_idle_add_full(),
2186  * g_timeout_add(), g_timeout_add_full(), g_child_watch_add(),
2187  * g_child_watch_add_full(), g_io_add_watch(), and g_io_add_watch_full().
2188  *
2189  * See also g_source_destroy(). You must use g_source_destroy() for sources
2190  * added to a non-default main context.
2191  *
2192  * Return value: %TRUE if the source was found and removed.
2193  **/
2194 gboolean
2195 g_source_remove (guint tag)
2196 {
2197   GSource *source;
2198   
2199   g_return_val_if_fail (tag > 0, FALSE);
2200
2201   source = g_main_context_find_source_by_id (NULL, tag);
2202   if (source)
2203     g_source_destroy (source);
2204
2205   return source != NULL;
2206 }
2207
2208 /**
2209  * g_source_remove_by_user_data:
2210  * @user_data: the user_data for the callback.
2211  * 
2212  * Removes a source from the default main loop context given the user
2213  * data for the callback. If multiple sources exist with the same user
2214  * data, only one will be destroyed.
2215  * 
2216  * Return value: %TRUE if a source was found and removed. 
2217  **/
2218 gboolean
2219 g_source_remove_by_user_data (gpointer user_data)
2220 {
2221   GSource *source;
2222   
2223   source = g_main_context_find_source_by_user_data (NULL, user_data);
2224   if (source)
2225     {
2226       g_source_destroy (source);
2227       return TRUE;
2228     }
2229   else
2230     return FALSE;
2231 }
2232
2233 /**
2234  * g_source_remove_by_funcs_user_data:
2235  * @funcs: The @source_funcs passed to g_source_new()
2236  * @user_data: the user data for the callback
2237  * 
2238  * Removes a source from the default main loop context given the
2239  * source functions and user data. If multiple sources exist with the
2240  * same source functions and user data, only one will be destroyed.
2241  * 
2242  * Return value: %TRUE if a source was found and removed. 
2243  **/
2244 gboolean
2245 g_source_remove_by_funcs_user_data (GSourceFuncs *funcs,
2246                                     gpointer      user_data)
2247 {
2248   GSource *source;
2249
2250   g_return_val_if_fail (funcs != NULL, FALSE);
2251
2252   source = g_main_context_find_source_by_funcs_user_data (NULL, funcs, user_data);
2253   if (source)
2254     {
2255       g_source_destroy (source);
2256       return TRUE;
2257     }
2258   else
2259     return FALSE;
2260 }
2261
2262 #ifdef G_OS_UNIX
2263 /**
2264  * g_source_add_unix_fd:
2265  * @source: a #GSource
2266  * @fd: the fd to monitor
2267  * @events: an event mask
2268  *
2269  * Monitors @fd for the IO events in @events.
2270  *
2271  * The tag returned by this function can be used to remove or modify the
2272  * monitoring of the fd using g_source_remove_unix_fd() or
2273  * g_source_modify_unix_fd().
2274  *
2275  * It is not necessary to remove the fd before destroying the source; it
2276  * will be cleaned up automatically.
2277  *
2278  * As the name suggests, this function is not available on Windows.
2279  *
2280  * Returns: an opaque tag
2281  *
2282  * Since: 2.36
2283  **/
2284 gpointer
2285 g_source_add_unix_fd (GSource      *source,
2286                       gint          fd,
2287                       GIOCondition  events)
2288 {
2289   GMainContext *context;
2290   GPollFD *poll_fd;
2291
2292   g_return_val_if_fail (source != NULL, NULL);
2293   g_return_val_if_fail (!SOURCE_DESTROYED (source), NULL);
2294
2295   poll_fd = g_new (GPollFD, 1);
2296   poll_fd->fd = fd;
2297   poll_fd->events = events;
2298   poll_fd->revents = 0;
2299
2300   context = source->context;
2301
2302   if (context)
2303     LOCK_CONTEXT (context);
2304
2305   source->priv->fds = g_slist_prepend (source->priv->fds, poll_fd);
2306
2307   if (context)
2308     {
2309       if (!SOURCE_BLOCKED (source))
2310         g_main_context_add_poll_unlocked (context, source->priority, poll_fd);
2311       UNLOCK_CONTEXT (context);
2312     }
2313
2314   return poll_fd;
2315 }
2316
2317 /**
2318  * g_source_modify_unix_fd:
2319  * @source: a #GSource
2320  * @tag: the tag from g_source_add_unix_fd()
2321  * @new_events: the new event mask to watch
2322  *
2323  * Updates the event mask to watch for the fd identified by @tag.
2324  *
2325  * @tag is the tag returned from g_source_add_unix_fd().
2326  *
2327  * If you want to remove a fd, don't set its event mask to zero.
2328  * Instead, call g_source_remove_unix_fd().
2329  *
2330  * As the name suggests, this function is not available on Windows.
2331  *
2332  * Since: 2.36
2333  **/
2334 void
2335 g_source_modify_unix_fd (GSource      *source,
2336                          gpointer      tag,
2337                          GIOCondition  new_events)
2338 {
2339   GMainContext *context;
2340   GPollFD *poll_fd;
2341
2342   g_return_if_fail (source != NULL);
2343   g_return_if_fail (g_slist_find (source->priv->fds, tag));
2344
2345   context = source->context;
2346   poll_fd = tag;
2347
2348   poll_fd->events = new_events;
2349
2350   if (context)
2351     g_main_context_wakeup (context);
2352 }
2353
2354 /**
2355  * g_source_remove_unix_fd:
2356  * @source: a #GSource
2357  * @tag: the tag from g_source_add_unix_fd()
2358  *
2359  * Reverses the effect of a previous call to g_source_add_unix_fd().
2360  *
2361  * You only need to call this if you want to remove an fd from being
2362  * watched while keeping the same source around.  In the normal case you
2363  * will just want to destroy the source.
2364  *
2365  * As the name suggests, this function is not available on Windows.
2366  *
2367  * Since: 2.36
2368  **/
2369 void
2370 g_source_remove_unix_fd (GSource  *source,
2371                          gpointer  tag)
2372 {
2373   GMainContext *context;
2374   GPollFD *poll_fd;
2375
2376   g_return_if_fail (source != NULL);
2377   g_return_if_fail (g_slist_find (source->priv->fds, tag));
2378
2379   context = source->context;
2380   poll_fd = tag;
2381
2382   if (context)
2383     LOCK_CONTEXT (context);
2384
2385   source->priv->fds = g_slist_remove (source->priv->fds, poll_fd);
2386
2387   if (context)
2388     {
2389       if (!SOURCE_BLOCKED (source))
2390         g_main_context_remove_poll_unlocked (context, poll_fd);
2391
2392       UNLOCK_CONTEXT (context);
2393     }
2394
2395   g_free (poll_fd);
2396 }
2397
2398 /**
2399  * g_source_query_unix_fd:
2400  * @source: a #GSource
2401  * @tag: the tag from g_source_add_unix_fd()
2402  *
2403  * Queries the events reported for the fd corresponding to @tag on
2404  * @source during the last poll.
2405  *
2406  * The return value of this function is only defined when the function
2407  * is called from the check or dispatch functions for @source.
2408  *
2409  * As the name suggests, this function is not available on Windows.
2410  *
2411  * Returns: the conditions reported on the fd
2412  *
2413  * Since: 2.36
2414  **/
2415 GIOCondition
2416 g_source_query_unix_fd (GSource  *source,
2417                         gpointer  tag)
2418 {
2419   GPollFD *poll_fd;
2420
2421   g_return_val_if_fail (source != NULL, 0);
2422   g_return_val_if_fail (g_slist_find (source->priv->fds, tag), 0);
2423
2424   poll_fd = tag;
2425
2426   return poll_fd->revents;
2427 }
2428 #endif /* G_OS_UNIX */
2429
2430 /**
2431  * g_get_current_time:
2432  * @result: #GTimeVal structure in which to store current time.
2433  *
2434  * Equivalent to the UNIX gettimeofday() function, but portable.
2435  *
2436  * You may find g_get_real_time() to be more convenient.
2437  **/
2438 void
2439 g_get_current_time (GTimeVal *result)
2440 {
2441 #ifndef G_OS_WIN32
2442   struct timeval r;
2443
2444   g_return_if_fail (result != NULL);
2445
2446   /*this is required on alpha, there the timeval structs are int's
2447     not longs and a cast only would fail horribly*/
2448   gettimeofday (&r, NULL);
2449   result->tv_sec = r.tv_sec;
2450   result->tv_usec = r.tv_usec;
2451 #else
2452   FILETIME ft;
2453   guint64 time64;
2454
2455   g_return_if_fail (result != NULL);
2456
2457   GetSystemTimeAsFileTime (&ft);
2458   memmove (&time64, &ft, sizeof (FILETIME));
2459
2460   /* Convert from 100s of nanoseconds since 1601-01-01
2461    * to Unix epoch. Yes, this is Y2038 unsafe.
2462    */
2463   time64 -= G_GINT64_CONSTANT (116444736000000000);
2464   time64 /= 10;
2465
2466   result->tv_sec = time64 / 1000000;
2467   result->tv_usec = time64 % 1000000;
2468 #endif
2469 }
2470
2471 /**
2472  * g_get_real_time:
2473  *
2474  * Queries the system wall-clock time.
2475  *
2476  * This call is functionally equivalent to g_get_current_time() except
2477  * that the return value is often more convenient than dealing with a
2478  * #GTimeVal.
2479  *
2480  * You should only use this call if you are actually interested in the real
2481  * wall-clock time.  g_get_monotonic_time() is probably more useful for
2482  * measuring intervals.
2483  *
2484  * Returns: the number of microseconds since January 1, 1970 UTC.
2485  *
2486  * Since: 2.28
2487  **/
2488 gint64
2489 g_get_real_time (void)
2490 {
2491   GTimeVal tv;
2492
2493   g_get_current_time (&tv);
2494
2495   return (((gint64) tv.tv_sec) * 1000000) + tv.tv_usec;
2496 }
2497
2498 #ifdef G_OS_WIN32
2499 static ULONGLONG (*g_GetTickCount64) (void) = NULL;
2500 static guint32 g_win32_tick_epoch = 0;
2501
2502 void
2503 g_clock_win32_init (void)
2504 {
2505   HMODULE kernel32;
2506
2507   g_GetTickCount64 = NULL;
2508   kernel32 = GetModuleHandle ("KERNEL32.DLL");
2509   if (kernel32 != NULL)
2510     g_GetTickCount64 = (void *) GetProcAddress (kernel32, "GetTickCount64");
2511   g_win32_tick_epoch = ((guint32)GetTickCount()) >> 31;
2512 }
2513 #endif
2514
2515 /**
2516  * g_get_monotonic_time:
2517  *
2518  * Queries the system monotonic time, if available.
2519  *
2520  * On POSIX systems with clock_gettime() and <literal>CLOCK_MONOTONIC</literal> this call
2521  * is a very shallow wrapper for that.  Otherwise, we make a best effort
2522  * that probably involves returning the wall clock time (with at least
2523  * microsecond accuracy, subject to the limitations of the OS kernel).
2524  *
2525  * It's important to note that POSIX <literal>CLOCK_MONOTONIC</literal> does
2526  * not count time spent while the machine is suspended.
2527  *
2528  * On Windows, "limitations of the OS kernel" is a rather substantial
2529  * statement.  Depending on the configuration of the system, the wall
2530  * clock time is updated as infrequently as 64 times a second (which
2531  * is approximately every 16ms). Also, on XP (but not on Vista or later)
2532  * the monotonic clock is locally monotonic, but may differ in exact
2533  * value between processes due to timer wrap handling.
2534  *
2535  * Returns: the monotonic time, in microseconds
2536  *
2537  * Since: 2.28
2538  **/
2539 gint64
2540 g_get_monotonic_time (void)
2541 {
2542 #ifdef HAVE_CLOCK_GETTIME
2543   /* librt clock_gettime() is our first choice */
2544   struct timespec ts;
2545
2546 #ifdef CLOCK_MONOTONIC
2547   clock_gettime (CLOCK_MONOTONIC, &ts);
2548 #else
2549   clock_gettime (CLOCK_REALTIME, &ts);
2550 #endif
2551
2552   /* In theory monotonic time can have any epoch.
2553    *
2554    * glib presently assumes the following:
2555    *
2556    *   1) The epoch comes some time after the birth of Jesus of Nazareth, but
2557    *      not more than 10000 years later.
2558    *
2559    *   2) The current time also falls sometime within this range.
2560    *
2561    * These two reasonable assumptions leave us with a maximum deviation from
2562    * the epoch of 10000 years, or 315569520000000000 seconds.
2563    *
2564    * If we restrict ourselves to this range then the number of microseconds
2565    * will always fit well inside the constraints of a int64 (by a factor of
2566    * about 29).
2567    *
2568    * If you actually hit the following assertion, probably you should file a
2569    * bug against your operating system for being excessively silly.
2570    **/
2571   g_assert (G_GINT64_CONSTANT (-315569520000000000) < ts.tv_sec &&
2572             ts.tv_sec < G_GINT64_CONSTANT (315569520000000000));
2573
2574   return (((gint64) ts.tv_sec) * 1000000) + (ts.tv_nsec / 1000);
2575
2576 #elif defined (G_OS_WIN32)
2577   guint64 ticks;
2578   guint32 ticks32;
2579
2580   /* There are four sources for the monotonic time on Windows:
2581    *
2582    * Three are based on a (1 msec accuracy, but only read periodically) clock chip:
2583    * - GetTickCount (GTC)
2584    *    32bit msec counter, updated each ~15msec, wraps in ~50 days
2585    * - GetTickCount64 (GTC64)
2586    *    Same as GetTickCount, but extended to 64bit, so no wrap
2587    *    Only available in Vista or later
2588    * - timeGetTime (TGT)
2589    *    similar to GetTickCount by default: 15msec, 50 day wrap.
2590    *    available in winmm.dll (thus known as the multimedia timers)
2591    *    However apps can raise the system timer clock frequency using timeBeginPeriod()
2592    *    increasing the accuracy up to 1 msec, at a cost in general system performance
2593    *    and battery use.
2594    *
2595    * One is based on high precision clocks:
2596    * - QueryPrecisionCounter (QPC)
2597    *    This has much higher accuracy, but is not guaranteed monotonic, and
2598    *    has lots of complications like clock jumps and different times on different
2599    *    CPUs. It also has lower long term accuracy (i.e. it will drift compared to
2600    *    the low precision clocks.
2601    *
2602    * Additionally, the precision available in the timer-based wakeup such as
2603    * MsgWaitForMultipleObjectsEx (which is what the mainloop is based on) is based
2604    * on the TGT resolution, so by default it is ~15msec, but can be increased by apps.
2605    *
2606    * The QPC timer has too many issues to be used as is. The only way it could be used
2607    * is to use it to interpolate the lower precision clocks. Firefox does something like
2608    * this:
2609    *   https://bugzilla.mozilla.org/show_bug.cgi?id=363258
2610    * 
2611    * However this seems quite complicated, so we're not doing this right now.
2612    *
2613    * The approach we take instead is to use the TGT timer, extending it to 64bit
2614    * either by using the GTC64 value, or if that is not available, a process local
2615    * time epoch that we increment when we detect a timer wrap (assumes that we read
2616    * the time at least once every 50 days).
2617    *
2618    * This means that:
2619    *  - We have a globally consistent monotonic clock on Vista and later
2620    *  - We have a locally monotonic clock on XP
2621    *  - Apps that need higher precision in timeouts and clock reads can call 
2622    *    timeBeginPeriod() to increase it as much as they want
2623    */
2624
2625   if (g_GetTickCount64 != NULL)
2626     {
2627       guint32 ticks_as_32bit;
2628
2629       ticks = g_GetTickCount64 ();
2630       ticks32 = timeGetTime();
2631
2632       /* GTC64 and TGT are sampled at different times, however they 
2633        * have the same base and source (msecs since system boot). 
2634        * They can differ by as much as -16 to +16 msecs.
2635        * We can't just inject the low bits into the 64bit counter 
2636        * as one of the counters can have wrapped in 32bit space and
2637        * the other not. Instead we calculate the signed difference
2638        * in 32bit space and apply that difference to the 64bit counter.
2639        */
2640       ticks_as_32bit = (guint32)ticks;
2641
2642       /* We could do some 2's complement hack, but we play it safe */
2643       if (ticks32 - ticks_as_32bit <= G_MAXINT32)
2644         ticks += ticks32 - ticks_as_32bit;
2645       else
2646         ticks -= ticks_as_32bit - ticks32;
2647     }
2648   else
2649     {
2650       guint32 epoch;
2651
2652       epoch = g_atomic_int_get (&g_win32_tick_epoch);
2653
2654       /* Must read ticks after the epoch. Then we're guaranteed
2655        * that the ticks value we read is higher or equal to any
2656        * previous ones that lead to the writing of the epoch.
2657        */
2658       ticks32 = timeGetTime();
2659
2660       /* We store the MSB of the current time as the LSB
2661        * of the epoch. Comparing these bits lets us detect when
2662        * the 32bit counter has wrapped so we can increase the
2663        * epoch.
2664        *
2665        * This will work as long as this function is called at
2666        * least once every ~24 days, which is half the wrap time
2667        * of a 32bit msec counter. I think this is pretty likely.
2668        *
2669        * Note that g_win32_tick_epoch is a process local state,
2670        * so the monotonic clock will not be the same between
2671        * processes.
2672        */
2673       if ((ticks32 >> 31) != (epoch & 1))
2674         {
2675           epoch++;
2676           g_atomic_int_set (&g_win32_tick_epoch, epoch);
2677         }
2678
2679
2680       ticks = (guint64)ticks32 | ((guint64)epoch) << 31;
2681     }
2682
2683   return ticks * 1000;
2684
2685 #else /* !HAVE_CLOCK_GETTIME && ! G_OS_WIN32*/
2686
2687   GTimeVal tv;
2688
2689   g_get_current_time (&tv);
2690
2691   return (((gint64) tv.tv_sec) * 1000000) + tv.tv_usec;
2692 #endif
2693 }
2694
2695 static void
2696 g_main_dispatch_free (gpointer dispatch)
2697 {
2698   g_slice_free (GMainDispatch, dispatch);
2699 }
2700
2701 /* Running the main loop */
2702
2703 static GMainDispatch *
2704 get_dispatch (void)
2705 {
2706   static GPrivate depth_private = G_PRIVATE_INIT (g_main_dispatch_free);
2707   GMainDispatch *dispatch;
2708
2709   dispatch = g_private_get (&depth_private);
2710
2711   if (!dispatch)
2712     {
2713       dispatch = g_slice_new0 (GMainDispatch);
2714       g_private_set (&depth_private, dispatch);
2715     }
2716
2717   return dispatch;
2718 }
2719
2720 /**
2721  * g_main_depth:
2722  *
2723  * Returns the depth of the stack of calls to
2724  * g_main_context_dispatch() on any #GMainContext in the current thread.
2725  *  That is, when called from the toplevel, it gives 0. When
2726  * called from within a callback from g_main_context_iteration()
2727  * (or g_main_loop_run(), etc.) it returns 1. When called from within 
2728  * a callback to a recursive call to g_main_context_iteration(),
2729  * it returns 2. And so forth.
2730  *
2731  * This function is useful in a situation like the following:
2732  * Imagine an extremely simple "garbage collected" system.
2733  *
2734  * |[
2735  * static GList *free_list;
2736  * 
2737  * gpointer
2738  * allocate_memory (gsize size)
2739  * { 
2740  *   gpointer result = g_malloc (size);
2741  *   free_list = g_list_prepend (free_list, result);
2742  *   return result;
2743  * }
2744  * 
2745  * void
2746  * free_allocated_memory (void)
2747  * {
2748  *   GList *l;
2749  *   for (l = free_list; l; l = l->next);
2750  *     g_free (l->data);
2751  *   g_list_free (free_list);
2752  *   free_list = NULL;
2753  *  }
2754  * 
2755  * [...]
2756  * 
2757  * while (TRUE); 
2758  *  {
2759  *    g_main_context_iteration (NULL, TRUE);
2760  *    free_allocated_memory();
2761  *   }
2762  * ]|
2763  *
2764  * This works from an application, however, if you want to do the same
2765  * thing from a library, it gets more difficult, since you no longer
2766  * control the main loop. You might think you can simply use an idle
2767  * function to make the call to free_allocated_memory(), but that
2768  * doesn't work, since the idle function could be called from a
2769  * recursive callback. This can be fixed by using g_main_depth()
2770  *
2771  * |[
2772  * gpointer
2773  * allocate_memory (gsize size)
2774  * { 
2775  *   FreeListBlock *block = g_new (FreeListBlock, 1);
2776  *   block->mem = g_malloc (size);
2777  *   block->depth = g_main_depth ();   
2778  *   free_list = g_list_prepend (free_list, block);
2779  *   return block->mem;
2780  * }
2781  * 
2782  * void
2783  * free_allocated_memory (void)
2784  * {
2785  *   GList *l;
2786  *   
2787  *   int depth = g_main_depth ();
2788  *   for (l = free_list; l; );
2789  *     {
2790  *       GList *next = l->next;
2791  *       FreeListBlock *block = l->data;
2792  *       if (block->depth > depth)
2793  *         {
2794  *           g_free (block->mem);
2795  *           g_free (block);
2796  *           free_list = g_list_delete_link (free_list, l);
2797  *         }
2798  *               
2799  *       l = next;
2800  *     }
2801  *   }
2802  * ]|
2803  *
2804  * There is a temptation to use g_main_depth() to solve
2805  * problems with reentrancy. For instance, while waiting for data
2806  * to be received from the network in response to a menu item,
2807  * the menu item might be selected again. It might seem that
2808  * one could make the menu item's callback return immediately
2809  * and do nothing if g_main_depth() returns a value greater than 1.
2810  * However, this should be avoided since the user then sees selecting
2811  * the menu item do nothing. Furthermore, you'll find yourself adding
2812  * these checks all over your code, since there are doubtless many,
2813  * many things that the user could do. Instead, you can use the
2814  * following techniques:
2815  *
2816  * <orderedlist>
2817  *  <listitem>
2818  *   <para>
2819  *     Use gtk_widget_set_sensitive() or modal dialogs to prevent
2820  *     the user from interacting with elements while the main
2821  *     loop is recursing.
2822  *   </para>
2823  *  </listitem>
2824  *  <listitem>
2825  *   <para>
2826  *     Avoid main loop recursion in situations where you can't handle
2827  *     arbitrary  callbacks. Instead, structure your code so that you
2828  *     simply return to the main loop and then get called again when
2829  *     there is more work to do.
2830  *   </para>
2831  *  </listitem>
2832  * </orderedlist>
2833  * 
2834  * Return value: The main loop recursion level in the current thread
2835  **/
2836 int
2837 g_main_depth (void)
2838 {
2839   GMainDispatch *dispatch = get_dispatch ();
2840   return dispatch->depth;
2841 }
2842
2843 /**
2844  * g_main_current_source:
2845  *
2846  * Returns the currently firing source for this thread.
2847  * 
2848  * Return value: (transfer none): The currently firing source or %NULL.
2849  *
2850  * Since: 2.12
2851  */
2852 GSource *
2853 g_main_current_source (void)
2854 {
2855   GMainDispatch *dispatch = get_dispatch ();
2856   return dispatch->source;
2857 }
2858
2859 /**
2860  * g_source_is_destroyed:
2861  * @source: a #GSource
2862  *
2863  * Returns whether @source has been destroyed.
2864  *
2865  * This is important when you operate upon your objects 
2866  * from within idle handlers, but may have freed the object 
2867  * before the dispatch of your idle handler.
2868  *
2869  * |[
2870  * static gboolean 
2871  * idle_callback (gpointer data)
2872  * {
2873  *   SomeWidget *self = data;
2874  *    
2875  *   GDK_THREADS_ENTER (<!-- -->);
2876  *   /<!-- -->* do stuff with self *<!-- -->/
2877  *   self->idle_id = 0;
2878  *   GDK_THREADS_LEAVE (<!-- -->);
2879  *    
2880  *   return G_SOURCE_REMOVE;
2881  * }
2882  *  
2883  * static void 
2884  * some_widget_do_stuff_later (SomeWidget *self)
2885  * {
2886  *   self->idle_id = g_idle_add (idle_callback, self);
2887  * }
2888  *  
2889  * static void 
2890  * some_widget_finalize (GObject *object)
2891  * {
2892  *   SomeWidget *self = SOME_WIDGET (object);
2893  *    
2894  *   if (self->idle_id)
2895  *     g_source_remove (self->idle_id);
2896  *    
2897  *   G_OBJECT_CLASS (parent_class)->finalize (object);
2898  * }
2899  * ]|
2900  *
2901  * This will fail in a multi-threaded application if the 
2902  * widget is destroyed before the idle handler fires due 
2903  * to the use after free in the callback. A solution, to 
2904  * this particular problem, is to check to if the source
2905  * has already been destroy within the callback.
2906  *
2907  * |[
2908  * static gboolean 
2909  * idle_callback (gpointer data)
2910  * {
2911  *   SomeWidget *self = data;
2912  *   
2913  *   GDK_THREADS_ENTER ();
2914  *   if (!g_source_is_destroyed (g_main_current_source ()))
2915  *     {
2916  *       /<!-- -->* do stuff with self *<!-- -->/
2917  *     }
2918  *   GDK_THREADS_LEAVE ();
2919  *   
2920  *   return FALSE;
2921  * }
2922  * ]|
2923  *
2924  * Return value: %TRUE if the source has been destroyed
2925  *
2926  * Since: 2.12
2927  */
2928 gboolean
2929 g_source_is_destroyed (GSource *source)
2930 {
2931   return SOURCE_DESTROYED (source);
2932 }
2933
2934 /* Temporarily remove all this source's file descriptors from the
2935  * poll(), so that if data comes available for one of the file descriptors
2936  * we don't continually spin in the poll()
2937  */
2938 /* HOLDS: source->context's lock */
2939 static void
2940 block_source (GSource *source)
2941 {
2942   GSList *tmp_list;
2943
2944   g_return_if_fail (!SOURCE_BLOCKED (source));
2945
2946   source->flags |= G_SOURCE_BLOCKED;
2947
2948   if (source->context)
2949     {
2950       tmp_list = source->poll_fds;
2951       while (tmp_list)
2952         {
2953           g_main_context_remove_poll_unlocked (source->context, tmp_list->data);
2954           tmp_list = tmp_list->next;
2955         }
2956
2957       for (tmp_list = source->priv->fds; tmp_list; tmp_list = tmp_list->next)
2958         g_main_context_remove_poll_unlocked (source->context, tmp_list->data);
2959     }
2960
2961   if (source->priv && source->priv->child_sources)
2962     {
2963       tmp_list = source->priv->child_sources;
2964       while (tmp_list)
2965         {
2966           block_source (tmp_list->data);
2967           tmp_list = tmp_list->next;
2968         }
2969     }
2970 }
2971
2972 /* HOLDS: source->context's lock */
2973 static void
2974 unblock_source (GSource *source)
2975 {
2976   GSList *tmp_list;
2977
2978   g_return_if_fail (SOURCE_BLOCKED (source)); /* Source already unblocked */
2979   g_return_if_fail (!SOURCE_DESTROYED (source));
2980   
2981   source->flags &= ~G_SOURCE_BLOCKED;
2982
2983   tmp_list = source->poll_fds;
2984   while (tmp_list)
2985     {
2986       g_main_context_add_poll_unlocked (source->context, source->priority, tmp_list->data);
2987       tmp_list = tmp_list->next;
2988     }
2989
2990   for (tmp_list = source->priv->fds; tmp_list; tmp_list = tmp_list->next)
2991     g_main_context_add_poll_unlocked (source->context, source->priority, tmp_list->data);
2992
2993   if (source->priv && source->priv->child_sources)
2994     {
2995       tmp_list = source->priv->child_sources;
2996       while (tmp_list)
2997         {
2998           unblock_source (tmp_list->data);
2999           tmp_list = tmp_list->next;
3000         }
3001     }
3002 }
3003
3004 /* HOLDS: context's lock */
3005 static void
3006 g_main_dispatch (GMainContext *context)
3007 {
3008   GMainDispatch *current = get_dispatch ();
3009   guint i;
3010
3011   for (i = 0; i < context->pending_dispatches->len; i++)
3012     {
3013       GSource *source = context->pending_dispatches->pdata[i];
3014
3015       context->pending_dispatches->pdata[i] = NULL;
3016       g_assert (source);
3017
3018       source->flags &= ~G_SOURCE_READY;
3019
3020       if (!SOURCE_DESTROYED (source))
3021         {
3022           gboolean was_in_call;
3023           gpointer user_data = NULL;
3024           GSourceFunc callback = NULL;
3025           GSourceCallbackFuncs *cb_funcs;
3026           gpointer cb_data;
3027           gboolean need_destroy;
3028
3029           gboolean (*dispatch) (GSource *,
3030                                 GSourceFunc,
3031                                 gpointer);
3032           GSource *prev_source;
3033
3034           dispatch = source->source_funcs->dispatch;
3035           cb_funcs = source->callback_funcs;
3036           cb_data = source->callback_data;
3037
3038           if (cb_funcs)
3039             cb_funcs->ref (cb_data);
3040           
3041           if ((source->flags & G_SOURCE_CAN_RECURSE) == 0)
3042             block_source (source);
3043           
3044           was_in_call = source->flags & G_HOOK_FLAG_IN_CALL;
3045           source->flags |= G_HOOK_FLAG_IN_CALL;
3046
3047           if (cb_funcs)
3048             cb_funcs->get (cb_data, source, &callback, &user_data);
3049
3050           UNLOCK_CONTEXT (context);
3051
3052           /* These operations are safe because 'current' is thread-local
3053            * and not modified from anywhere but this function.
3054            */
3055           prev_source = current->source;
3056           current->source = source;
3057           current->depth++;
3058
3059           need_destroy = !(* dispatch) (source, callback, user_data);
3060
3061           current->source = prev_source;
3062           current->depth--;
3063
3064           if (cb_funcs)
3065             cb_funcs->unref (cb_data);
3066
3067           LOCK_CONTEXT (context);
3068           
3069           if (!was_in_call)
3070             source->flags &= ~G_HOOK_FLAG_IN_CALL;
3071
3072           if (SOURCE_BLOCKED (source) && !SOURCE_DESTROYED (source))
3073             unblock_source (source);
3074           
3075           /* Note: this depends on the fact that we can't switch
3076            * sources from one main context to another
3077            */
3078           if (need_destroy && !SOURCE_DESTROYED (source))
3079             {
3080               g_assert (source->context == context);
3081               g_source_destroy_internal (source, context, TRUE);
3082             }
3083         }
3084       
3085       SOURCE_UNREF (source, context);
3086     }
3087
3088   g_ptr_array_set_size (context->pending_dispatches, 0);
3089 }
3090
3091 /**
3092  * g_main_context_acquire:
3093  * @context: a #GMainContext
3094  * 
3095  * Tries to become the owner of the specified context.
3096  * If some other thread is the owner of the context,
3097  * returns %FALSE immediately. Ownership is properly
3098  * recursive: the owner can require ownership again
3099  * and will release ownership when g_main_context_release()
3100  * is called as many times as g_main_context_acquire().
3101  *
3102  * You must be the owner of a context before you
3103  * can call g_main_context_prepare(), g_main_context_query(),
3104  * g_main_context_check(), g_main_context_dispatch().
3105  * 
3106  * Return value: %TRUE if the operation succeeded, and
3107  *   this thread is now the owner of @context.
3108  **/
3109 gboolean 
3110 g_main_context_acquire (GMainContext *context)
3111 {
3112   gboolean result = FALSE;
3113   GThread *self = G_THREAD_SELF;
3114
3115   if (context == NULL)
3116     context = g_main_context_default ();
3117   
3118   LOCK_CONTEXT (context);
3119
3120   if (!context->owner)
3121     {
3122       context->owner = self;
3123       g_assert (context->owner_count == 0);
3124     }
3125
3126   if (context->owner == self)
3127     {
3128       context->owner_count++;
3129       result = TRUE;
3130     }
3131
3132   UNLOCK_CONTEXT (context); 
3133   
3134   return result;
3135 }
3136
3137 /**
3138  * g_main_context_release:
3139  * @context: a #GMainContext
3140  * 
3141  * Releases ownership of a context previously acquired by this thread
3142  * with g_main_context_acquire(). If the context was acquired multiple
3143  * times, the ownership will be released only when g_main_context_release()
3144  * is called as many times as it was acquired.
3145  **/
3146 void
3147 g_main_context_release (GMainContext *context)
3148 {
3149   if (context == NULL)
3150     context = g_main_context_default ();
3151   
3152   LOCK_CONTEXT (context);
3153
3154   context->owner_count--;
3155   if (context->owner_count == 0)
3156     {
3157       context->owner = NULL;
3158
3159       if (context->waiters)
3160         {
3161           GMainWaiter *waiter = context->waiters->data;
3162           gboolean loop_internal_waiter = (waiter->mutex == &context->mutex);
3163           context->waiters = g_slist_delete_link (context->waiters,
3164                                                   context->waiters);
3165           if (!loop_internal_waiter)
3166             g_mutex_lock (waiter->mutex);
3167           
3168           g_cond_signal (waiter->cond);
3169           
3170           if (!loop_internal_waiter)
3171             g_mutex_unlock (waiter->mutex);
3172         }
3173     }
3174
3175   UNLOCK_CONTEXT (context); 
3176 }
3177
3178 /**
3179  * g_main_context_wait:
3180  * @context: a #GMainContext
3181  * @cond: a condition variable
3182  * @mutex: a mutex, currently held
3183  * 
3184  * Tries to become the owner of the specified context,
3185  * as with g_main_context_acquire(). But if another thread
3186  * is the owner, atomically drop @mutex and wait on @cond until 
3187  * that owner releases ownership or until @cond is signaled, then
3188  * try again (once) to become the owner.
3189  * 
3190  * Return value: %TRUE if the operation succeeded, and
3191  *   this thread is now the owner of @context.
3192  **/
3193 gboolean
3194 g_main_context_wait (GMainContext *context,
3195                      GCond        *cond,
3196                      GMutex       *mutex)
3197 {
3198   gboolean result = FALSE;
3199   GThread *self = G_THREAD_SELF;
3200   gboolean loop_internal_waiter;
3201   
3202   if (context == NULL)
3203     context = g_main_context_default ();
3204
3205   loop_internal_waiter = (mutex == &context->mutex);
3206   
3207   if (!loop_internal_waiter)
3208     LOCK_CONTEXT (context);
3209
3210   if (context->owner && context->owner != self)
3211     {
3212       GMainWaiter waiter;
3213
3214       waiter.cond = cond;
3215       waiter.mutex = mutex;
3216
3217       context->waiters = g_slist_append (context->waiters, &waiter);
3218       
3219       if (!loop_internal_waiter)
3220         UNLOCK_CONTEXT (context);
3221       g_cond_wait (cond, mutex);
3222       if (!loop_internal_waiter)      
3223         LOCK_CONTEXT (context);
3224
3225       context->waiters = g_slist_remove (context->waiters, &waiter);
3226     }
3227
3228   if (!context->owner)
3229     {
3230       context->owner = self;
3231       g_assert (context->owner_count == 0);
3232     }
3233
3234   if (context->owner == self)
3235     {
3236       context->owner_count++;
3237       result = TRUE;
3238     }
3239
3240   if (!loop_internal_waiter)
3241     UNLOCK_CONTEXT (context); 
3242   
3243   return result;
3244 }
3245
3246 /**
3247  * g_main_context_prepare:
3248  * @context: a #GMainContext
3249  * @priority: location to store priority of highest priority
3250  *            source already ready.
3251  * 
3252  * Prepares to poll sources within a main loop. The resulting information
3253  * for polling is determined by calling g_main_context_query ().
3254  * 
3255  * Return value: %TRUE if some source is ready to be dispatched
3256  *               prior to polling.
3257  **/
3258 gboolean
3259 g_main_context_prepare (GMainContext *context,
3260                         gint         *priority)
3261 {
3262   gint i;
3263   gint n_ready = 0;
3264   gint current_priority = G_MAXINT;
3265   GSource *source;
3266   GSourceIter iter;
3267
3268   if (context == NULL)
3269     context = g_main_context_default ();
3270   
3271   LOCK_CONTEXT (context);
3272
3273   context->time_is_fresh = FALSE;
3274
3275   if (context->in_check_or_prepare)
3276     {
3277       g_warning ("g_main_context_prepare() called recursively from within a source's check() or "
3278                  "prepare() member.");
3279       UNLOCK_CONTEXT (context);
3280       return FALSE;
3281     }
3282
3283 #if 0
3284   /* If recursing, finish up current dispatch, before starting over */
3285   if (context->pending_dispatches)
3286     {
3287       if (dispatch)
3288         g_main_dispatch (context, &current_time);
3289       
3290       UNLOCK_CONTEXT (context);
3291       return TRUE;
3292     }
3293 #endif
3294
3295   /* If recursing, clear list of pending dispatches */
3296
3297   for (i = 0; i < context->pending_dispatches->len; i++)
3298     {
3299       if (context->pending_dispatches->pdata[i])
3300         SOURCE_UNREF ((GSource *)context->pending_dispatches->pdata[i], context);
3301     }
3302   g_ptr_array_set_size (context->pending_dispatches, 0);
3303   
3304   /* Prepare all sources */
3305
3306   context->timeout = -1;
3307   
3308   g_source_iter_init (&iter, context, TRUE);
3309   while (g_source_iter_next (&iter, &source))
3310     {
3311       gint source_timeout = -1;
3312
3313       if (SOURCE_DESTROYED (source) || SOURCE_BLOCKED (source))
3314         continue;
3315       if ((n_ready > 0) && (source->priority > current_priority))
3316         break;
3317
3318       if (!(source->flags & G_SOURCE_READY))
3319         {
3320           gboolean result;
3321           gboolean (* prepare) (GSource  *source,
3322                                 gint     *timeout);
3323
3324           prepare = source->source_funcs->prepare;
3325
3326           if (prepare)
3327             {
3328               context->in_check_or_prepare++;
3329               UNLOCK_CONTEXT (context);
3330
3331               result = (* prepare) (source, &source_timeout);
3332
3333               LOCK_CONTEXT (context);
3334               context->in_check_or_prepare--;
3335             }
3336           else
3337             {
3338               source_timeout = -1;
3339               result = FALSE;
3340             }
3341
3342           if (result == FALSE && source->priv->ready_time != -1)
3343             {
3344               if (!context->time_is_fresh)
3345                 {
3346                   context->time = g_get_monotonic_time ();
3347                   context->time_is_fresh = TRUE;
3348                 }
3349
3350               if (source->priv->ready_time <= context->time)
3351                 {
3352                   source_timeout = 0;
3353                   result = TRUE;
3354                 }
3355               else
3356                 {
3357                   gint timeout;
3358
3359                   /* rounding down will lead to spinning, so always round up */
3360                   timeout = (source->priv->ready_time - context->time + 999) / 1000;
3361
3362                   if (source_timeout < 0 || timeout < source_timeout)
3363                     source_timeout = timeout;
3364                 }
3365             }
3366
3367           if (result)
3368             {
3369               GSource *ready_source = source;
3370
3371               while (ready_source)
3372                 {
3373                   ready_source->flags |= G_SOURCE_READY;
3374                   ready_source = ready_source->priv->parent_source;
3375                 }
3376             }
3377         }
3378
3379       if (source->flags & G_SOURCE_READY)
3380         {
3381           n_ready++;
3382           current_priority = source->priority;
3383           context->timeout = 0;
3384         }
3385       
3386       if (source_timeout >= 0)
3387         {
3388           if (context->timeout < 0)
3389             context->timeout = source_timeout;
3390           else
3391             context->timeout = MIN (context->timeout, source_timeout);
3392         }
3393     }
3394   g_source_iter_clear (&iter);
3395
3396   UNLOCK_CONTEXT (context);
3397   
3398   if (priority)
3399     *priority = current_priority;
3400   
3401   return (n_ready > 0);
3402 }
3403
3404 /**
3405  * g_main_context_query:
3406  * @context: a #GMainContext
3407  * @max_priority: maximum priority source to check
3408  * @timeout_: (out): location to store timeout to be used in polling
3409  * @fds: (out caller-allocates) (array length=n_fds): location to
3410  *       store #GPollFD records that need to be polled.
3411  * @n_fds: length of @fds.
3412  * 
3413  * Determines information necessary to poll this main loop.
3414  * 
3415  * Return value: the number of records actually stored in @fds,
3416  *   or, if more than @n_fds records need to be stored, the number
3417  *   of records that need to be stored.
3418  **/
3419 gint
3420 g_main_context_query (GMainContext *context,
3421                       gint          max_priority,
3422                       gint         *timeout,
3423                       GPollFD      *fds,
3424                       gint          n_fds)
3425 {
3426   gint n_poll;
3427   GPollRec *pollrec;
3428   
3429   LOCK_CONTEXT (context);
3430
3431   pollrec = context->poll_records;
3432   n_poll = 0;
3433   while (pollrec && max_priority >= pollrec->priority)
3434     {
3435       /* We need to include entries with fd->events == 0 in the array because
3436        * otherwise if the application changes fd->events behind our back and 
3437        * makes it non-zero, we'll be out of sync when we check the fds[] array.
3438        * (Changing fd->events after adding an FD wasn't an anticipated use of 
3439        * this API, but it occurs in practice.) */
3440       if (n_poll < n_fds)
3441         {
3442           fds[n_poll].fd = pollrec->fd->fd;
3443           /* In direct contradiction to the Unix98 spec, IRIX runs into
3444            * difficulty if you pass in POLLERR, POLLHUP or POLLNVAL
3445            * flags in the events field of the pollfd while it should
3446            * just ignoring them. So we mask them out here.
3447            */
3448           fds[n_poll].events = pollrec->fd->events & ~(G_IO_ERR|G_IO_HUP|G_IO_NVAL);
3449           fds[n_poll].revents = 0;
3450         }
3451
3452       pollrec = pollrec->next;
3453       n_poll++;
3454     }
3455
3456   context->poll_changed = FALSE;
3457   
3458   if (timeout)
3459     {
3460       *timeout = context->timeout;
3461       if (*timeout != 0)
3462         context->time_is_fresh = FALSE;
3463     }
3464   
3465   UNLOCK_CONTEXT (context);
3466
3467   return n_poll;
3468 }
3469
3470 /**
3471  * g_main_context_check:
3472  * @context: a #GMainContext
3473  * @max_priority: the maximum numerical priority of sources to check
3474  * @fds: (array length=n_fds): array of #GPollFD's that was passed to
3475  *       the last call to g_main_context_query()
3476  * @n_fds: return value of g_main_context_query()
3477  * 
3478  * Passes the results of polling back to the main loop.
3479  * 
3480  * Return value: %TRUE if some sources are ready to be dispatched.
3481  **/
3482 gboolean
3483 g_main_context_check (GMainContext *context,
3484                       gint          max_priority,
3485                       GPollFD      *fds,
3486                       gint          n_fds)
3487 {
3488   GSource *source;
3489   GSourceIter iter;
3490   GPollRec *pollrec;
3491   gint n_ready = 0;
3492   gint i;
3493    
3494   LOCK_CONTEXT (context);
3495
3496   if (context->in_check_or_prepare)
3497     {
3498       g_warning ("g_main_context_check() called recursively from within a source's check() or "
3499                  "prepare() member.");
3500       UNLOCK_CONTEXT (context);
3501       return FALSE;
3502     }
3503
3504   if (context->wake_up_rec.revents)
3505     g_wakeup_acknowledge (context->wakeup);
3506
3507   /* If the set of poll file descriptors changed, bail out
3508    * and let the main loop rerun
3509    */
3510   if (context->poll_changed)
3511     {
3512       UNLOCK_CONTEXT (context);
3513       return FALSE;
3514     }
3515   
3516   pollrec = context->poll_records;
3517   i = 0;
3518   while (i < n_fds)
3519     {
3520       if (pollrec->fd->events)
3521         pollrec->fd->revents = fds[i].revents;
3522
3523       pollrec = pollrec->next;
3524       i++;
3525     }
3526
3527   g_source_iter_init (&iter, context, TRUE);
3528   while (g_source_iter_next (&iter, &source))
3529     {
3530       if (SOURCE_DESTROYED (source) || SOURCE_BLOCKED (source))
3531         continue;
3532       if ((n_ready > 0) && (source->priority > max_priority))
3533         break;
3534
3535       if (!(source->flags & G_SOURCE_READY))
3536         {
3537           gboolean result;
3538           gboolean (* check) (GSource *source);
3539
3540           check = source->source_funcs->check;
3541
3542           if (check)
3543             {
3544               /* If the check function is set, call it. */
3545               context->in_check_or_prepare++;
3546               UNLOCK_CONTEXT (context);
3547
3548               result = (* check) (source);
3549
3550               LOCK_CONTEXT (context);
3551               context->in_check_or_prepare--;
3552             }
3553           else
3554             result = FALSE;
3555
3556           if (result == FALSE)
3557             {
3558               GSList *tmp_list;
3559
3560               /* If not already explicitly flagged ready by ->check()
3561                * (or if we have no check) then we can still be ready if
3562                * any of our fds poll as ready.
3563                */
3564               for (tmp_list = source->priv->fds; tmp_list; tmp_list = tmp_list->next)
3565                 {
3566                   GPollFD *pollfd = tmp_list->data;
3567
3568                   if (pollfd->revents)
3569                     {
3570                       result = TRUE;
3571                       break;
3572                     }
3573                 }
3574             }
3575
3576           if (result == FALSE && source->priv->ready_time != -1)
3577             {
3578               if (!context->time_is_fresh)
3579                 {
3580                   context->time = g_get_monotonic_time ();
3581                   context->time_is_fresh = TRUE;
3582                 }
3583
3584               if (source->priv->ready_time <= context->time)
3585                 result = TRUE;
3586             }
3587
3588           if (result)
3589             {
3590               GSource *ready_source = source;
3591
3592               while (ready_source)
3593                 {
3594                   ready_source->flags |= G_SOURCE_READY;
3595                   ready_source = ready_source->priv->parent_source;
3596                 }
3597             }
3598         }
3599
3600       if (source->flags & G_SOURCE_READY)
3601         {
3602           source->ref_count++;
3603           g_ptr_array_add (context->pending_dispatches, source);
3604
3605           n_ready++;
3606
3607           /* never dispatch sources with less priority than the first
3608            * one we choose to dispatch
3609            */
3610           max_priority = source->priority;
3611         }
3612     }
3613   g_source_iter_clear (&iter);
3614
3615   UNLOCK_CONTEXT (context);
3616
3617   return n_ready > 0;
3618 }
3619
3620 /**
3621  * g_main_context_dispatch:
3622  * @context: a #GMainContext
3623  * 
3624  * Dispatches all pending sources.
3625  **/
3626 void
3627 g_main_context_dispatch (GMainContext *context)
3628 {
3629   LOCK_CONTEXT (context);
3630
3631   if (context->pending_dispatches->len > 0)
3632     {
3633       g_main_dispatch (context);
3634     }
3635
3636   UNLOCK_CONTEXT (context);
3637 }
3638
3639 /* HOLDS context lock */
3640 static gboolean
3641 g_main_context_iterate (GMainContext *context,
3642                         gboolean      block,
3643                         gboolean      dispatch,
3644                         GThread      *self)
3645 {
3646   gint max_priority;
3647   gint timeout;
3648   gboolean some_ready;
3649   gint nfds, allocated_nfds;
3650   GPollFD *fds = NULL;
3651
3652   UNLOCK_CONTEXT (context);
3653
3654   if (!g_main_context_acquire (context))
3655     {
3656       gboolean got_ownership;
3657
3658       LOCK_CONTEXT (context);
3659
3660       if (!block)
3661         return FALSE;
3662
3663       got_ownership = g_main_context_wait (context,
3664                                            &context->cond,
3665                                            &context->mutex);
3666
3667       if (!got_ownership)
3668         return FALSE;
3669     }
3670   else
3671     LOCK_CONTEXT (context);
3672   
3673   if (!context->cached_poll_array)
3674     {
3675       context->cached_poll_array_size = context->n_poll_records;
3676       context->cached_poll_array = g_new (GPollFD, context->n_poll_records);
3677     }
3678
3679   allocated_nfds = context->cached_poll_array_size;
3680   fds = context->cached_poll_array;
3681   
3682   UNLOCK_CONTEXT (context);
3683
3684   g_main_context_prepare (context, &max_priority); 
3685   
3686   while ((nfds = g_main_context_query (context, max_priority, &timeout, fds, 
3687                                        allocated_nfds)) > allocated_nfds)
3688     {
3689       LOCK_CONTEXT (context);
3690       g_free (fds);
3691       context->cached_poll_array_size = allocated_nfds = nfds;
3692       context->cached_poll_array = fds = g_new (GPollFD, nfds);
3693       UNLOCK_CONTEXT (context);
3694     }
3695
3696   if (!block)
3697     timeout = 0;
3698   
3699   g_main_context_poll (context, timeout, max_priority, fds, nfds);
3700   
3701   some_ready = g_main_context_check (context, max_priority, fds, nfds);
3702   
3703   if (dispatch)
3704     g_main_context_dispatch (context);
3705   
3706   g_main_context_release (context);
3707
3708   LOCK_CONTEXT (context);
3709
3710   return some_ready;
3711 }
3712
3713 /**
3714  * g_main_context_pending:
3715  * @context: (allow-none): a #GMainContext (if %NULL, the default context will be used)
3716  *
3717  * Checks if any sources have pending events for the given context.
3718  * 
3719  * Return value: %TRUE if events are pending.
3720  **/
3721 gboolean 
3722 g_main_context_pending (GMainContext *context)
3723 {
3724   gboolean retval;
3725
3726   if (!context)
3727     context = g_main_context_default();
3728
3729   LOCK_CONTEXT (context);
3730   retval = g_main_context_iterate (context, FALSE, FALSE, G_THREAD_SELF);
3731   UNLOCK_CONTEXT (context);
3732   
3733   return retval;
3734 }
3735
3736 /**
3737  * g_main_context_iteration:
3738  * @context: (allow-none): a #GMainContext (if %NULL, the default context will be used) 
3739  * @may_block: whether the call may block.
3740  *
3741  * Runs a single iteration for the given main loop. This involves
3742  * checking to see if any event sources are ready to be processed,
3743  * then if no events sources are ready and @may_block is %TRUE, waiting
3744  * for a source to become ready, then dispatching the highest priority
3745  * events sources that are ready. Otherwise, if @may_block is %FALSE
3746  * sources are not waited to become ready, only those highest priority
3747  * events sources will be dispatched (if any), that are ready at this
3748  * given moment without further waiting.
3749  *
3750  * Note that even when @may_block is %TRUE, it is still possible for
3751  * g_main_context_iteration() to return %FALSE, since the wait may
3752  * be interrupted for other reasons than an event source becoming ready.
3753  *
3754  * Return value: %TRUE if events were dispatched.
3755  **/
3756 gboolean
3757 g_main_context_iteration (GMainContext *context, gboolean may_block)
3758 {
3759   gboolean retval;
3760
3761   if (!context)
3762     context = g_main_context_default();
3763   
3764   LOCK_CONTEXT (context);
3765   retval = g_main_context_iterate (context, may_block, TRUE, G_THREAD_SELF);
3766   UNLOCK_CONTEXT (context);
3767   
3768   return retval;
3769 }
3770
3771 /**
3772  * g_main_loop_new:
3773  * @context: (allow-none): a #GMainContext  (if %NULL, the default context will be used).
3774  * @is_running: set to %TRUE to indicate that the loop is running. This
3775  * is not very important since calling g_main_loop_run() will set this to
3776  * %TRUE anyway.
3777  * 
3778  * Creates a new #GMainLoop structure.
3779  * 
3780  * Return value: a new #GMainLoop.
3781  **/
3782 GMainLoop *
3783 g_main_loop_new (GMainContext *context,
3784                  gboolean      is_running)
3785 {
3786   GMainLoop *loop;
3787
3788   if (!context)
3789     context = g_main_context_default();
3790   
3791   g_main_context_ref (context);
3792
3793   loop = g_new0 (GMainLoop, 1);
3794   loop->context = context;
3795   loop->is_running = is_running != FALSE;
3796   loop->ref_count = 1;
3797   
3798   return loop;
3799 }
3800
3801 /**
3802  * g_main_loop_ref:
3803  * @loop: a #GMainLoop
3804  * 
3805  * Increases the reference count on a #GMainLoop object by one.
3806  * 
3807  * Return value: @loop
3808  **/
3809 GMainLoop *
3810 g_main_loop_ref (GMainLoop *loop)
3811 {
3812   g_return_val_if_fail (loop != NULL, NULL);
3813   g_return_val_if_fail (g_atomic_int_get (&loop->ref_count) > 0, NULL);
3814
3815   g_atomic_int_inc (&loop->ref_count);
3816
3817   return loop;
3818 }
3819
3820 /**
3821  * g_main_loop_unref:
3822  * @loop: a #GMainLoop
3823  * 
3824  * Decreases the reference count on a #GMainLoop object by one. If
3825  * the result is zero, free the loop and free all associated memory.
3826  **/
3827 void
3828 g_main_loop_unref (GMainLoop *loop)
3829 {
3830   g_return_if_fail (loop != NULL);
3831   g_return_if_fail (g_atomic_int_get (&loop->ref_count) > 0);
3832
3833   if (!g_atomic_int_dec_and_test (&loop->ref_count))
3834     return;
3835
3836   g_main_context_unref (loop->context);
3837   g_free (loop);
3838 }
3839
3840 /**
3841  * g_main_loop_run:
3842  * @loop: a #GMainLoop
3843  * 
3844  * Runs a main loop until g_main_loop_quit() is called on the loop.
3845  * If this is called for the thread of the loop's #GMainContext,
3846  * it will process events from the loop, otherwise it will
3847  * simply wait.
3848  **/
3849 void 
3850 g_main_loop_run (GMainLoop *loop)
3851 {
3852   GThread *self = G_THREAD_SELF;
3853
3854   g_return_if_fail (loop != NULL);
3855   g_return_if_fail (g_atomic_int_get (&loop->ref_count) > 0);
3856
3857   if (!g_main_context_acquire (loop->context))
3858     {
3859       gboolean got_ownership = FALSE;
3860       
3861       /* Another thread owns this context */
3862       LOCK_CONTEXT (loop->context);
3863
3864       g_atomic_int_inc (&loop->ref_count);
3865
3866       if (!loop->is_running)
3867         loop->is_running = TRUE;
3868
3869       while (loop->is_running && !got_ownership)
3870         got_ownership = g_main_context_wait (loop->context,
3871                                              &loop->context->cond,
3872                                              &loop->context->mutex);
3873       
3874       if (!loop->is_running)
3875         {
3876           UNLOCK_CONTEXT (loop->context);
3877           if (got_ownership)
3878             g_main_context_release (loop->context);
3879           g_main_loop_unref (loop);
3880           return;
3881         }
3882
3883       g_assert (got_ownership);
3884     }
3885   else
3886     LOCK_CONTEXT (loop->context);
3887
3888   if (loop->context->in_check_or_prepare)
3889     {
3890       g_warning ("g_main_loop_run(): called recursively from within a source's "
3891                  "check() or prepare() member, iteration not possible.");
3892       return;
3893     }
3894
3895   g_atomic_int_inc (&loop->ref_count);
3896   loop->is_running = TRUE;
3897   while (loop->is_running)
3898     g_main_context_iterate (loop->context, TRUE, TRUE, self);
3899
3900   UNLOCK_CONTEXT (loop->context);
3901   
3902   g_main_context_release (loop->context);
3903   
3904   g_main_loop_unref (loop);
3905 }
3906
3907 /**
3908  * g_main_loop_quit:
3909  * @loop: a #GMainLoop
3910  * 
3911  * Stops a #GMainLoop from running. Any calls to g_main_loop_run()
3912  * for the loop will return. 
3913  *
3914  * Note that sources that have already been dispatched when 
3915  * g_main_loop_quit() is called will still be executed.
3916  **/
3917 void 
3918 g_main_loop_quit (GMainLoop *loop)
3919 {
3920   g_return_if_fail (loop != NULL);
3921   g_return_if_fail (g_atomic_int_get (&loop->ref_count) > 0);
3922
3923   LOCK_CONTEXT (loop->context);
3924   loop->is_running = FALSE;
3925   g_wakeup_signal (loop->context->wakeup);
3926
3927   g_cond_broadcast (&loop->context->cond);
3928
3929   UNLOCK_CONTEXT (loop->context);
3930 }
3931
3932 /**
3933  * g_main_loop_is_running:
3934  * @loop: a #GMainLoop.
3935  * 
3936  * Checks to see if the main loop is currently being run via g_main_loop_run().
3937  * 
3938  * Return value: %TRUE if the mainloop is currently being run.
3939  **/
3940 gboolean
3941 g_main_loop_is_running (GMainLoop *loop)
3942 {
3943   g_return_val_if_fail (loop != NULL, FALSE);
3944   g_return_val_if_fail (g_atomic_int_get (&loop->ref_count) > 0, FALSE);
3945
3946   return loop->is_running;
3947 }
3948
3949 /**
3950  * g_main_loop_get_context:
3951  * @loop: a #GMainLoop.
3952  * 
3953  * Returns the #GMainContext of @loop.
3954  * 
3955  * Return value: (transfer none): the #GMainContext of @loop
3956  **/
3957 GMainContext *
3958 g_main_loop_get_context (GMainLoop *loop)
3959 {
3960   g_return_val_if_fail (loop != NULL, NULL);
3961   g_return_val_if_fail (g_atomic_int_get (&loop->ref_count) > 0, NULL);
3962  
3963   return loop->context;
3964 }
3965
3966 /* HOLDS: context's lock */
3967 static void
3968 g_main_context_poll (GMainContext *context,
3969                      gint          timeout,
3970                      gint          priority,
3971                      GPollFD      *fds,
3972                      gint          n_fds)
3973 {
3974 #ifdef  G_MAIN_POLL_DEBUG
3975   GTimer *poll_timer;
3976   GPollRec *pollrec;
3977   gint i;
3978 #endif
3979
3980   GPollFunc poll_func;
3981
3982   if (n_fds || timeout != 0)
3983     {
3984 #ifdef  G_MAIN_POLL_DEBUG
3985       if (_g_main_poll_debug)
3986         {
3987           g_print ("polling context=%p n=%d timeout=%d\n",
3988                    context, n_fds, timeout);
3989           poll_timer = g_timer_new ();
3990         }
3991 #endif
3992
3993       LOCK_CONTEXT (context);
3994
3995       poll_func = context->poll_func;
3996       
3997       UNLOCK_CONTEXT (context);
3998       if ((*poll_func) (fds, n_fds, timeout) < 0 && errno != EINTR)
3999         {
4000 #ifndef G_OS_WIN32
4001           g_warning ("poll(2) failed due to: %s.",
4002                      g_strerror (errno));
4003 #else
4004           /* If g_poll () returns -1, it has already called g_warning() */
4005 #endif
4006         }
4007       
4008 #ifdef  G_MAIN_POLL_DEBUG
4009       if (_g_main_poll_debug)
4010         {
4011           LOCK_CONTEXT (context);
4012
4013           g_print ("g_main_poll(%d) timeout: %d - elapsed %12.10f seconds",
4014                    n_fds,
4015                    timeout,
4016                    g_timer_elapsed (poll_timer, NULL));
4017           g_timer_destroy (poll_timer);
4018           pollrec = context->poll_records;
4019
4020           while (pollrec != NULL)
4021             {
4022               i = 0;
4023               while (i < n_fds)
4024                 {
4025                   if (fds[i].fd == pollrec->fd->fd &&
4026                       pollrec->fd->events &&
4027                       fds[i].revents)
4028                     {
4029                       g_print (" [" G_POLLFD_FORMAT " :", fds[i].fd);
4030                       if (fds[i].revents & G_IO_IN)
4031                         g_print ("i");
4032                       if (fds[i].revents & G_IO_OUT)
4033                         g_print ("o");
4034                       if (fds[i].revents & G_IO_PRI)
4035                         g_print ("p");
4036                       if (fds[i].revents & G_IO_ERR)
4037                         g_print ("e");
4038                       if (fds[i].revents & G_IO_HUP)
4039                         g_print ("h");
4040                       if (fds[i].revents & G_IO_NVAL)
4041                         g_print ("n");
4042                       g_print ("]");
4043                     }
4044                   i++;
4045                 }
4046               pollrec = pollrec->next;
4047             }
4048           g_print ("\n");
4049
4050           UNLOCK_CONTEXT (context);
4051         }
4052 #endif
4053     } /* if (n_fds || timeout != 0) */
4054 }
4055
4056 /**
4057  * g_main_context_add_poll:
4058  * @context: (allow-none): a #GMainContext (or %NULL for the default context)
4059  * @fd: a #GPollFD structure holding information about a file
4060  *      descriptor to watch.
4061  * @priority: the priority for this file descriptor which should be
4062  *      the same as the priority used for g_source_attach() to ensure that the
4063  *      file descriptor is polled whenever the results may be needed.
4064  *
4065  * Adds a file descriptor to the set of file descriptors polled for
4066  * this context. This will very seldom be used directly. Instead
4067  * a typical event source will use g_source_add_unix_fd() instead.
4068  **/
4069 void
4070 g_main_context_add_poll (GMainContext *context,
4071                          GPollFD      *fd,
4072                          gint          priority)
4073 {
4074   if (!context)
4075     context = g_main_context_default ();
4076   
4077   g_return_if_fail (g_atomic_int_get (&context->ref_count) > 0);
4078   g_return_if_fail (fd);
4079
4080   LOCK_CONTEXT (context);
4081   g_main_context_add_poll_unlocked (context, priority, fd);
4082   UNLOCK_CONTEXT (context);
4083 }
4084
4085 /* HOLDS: main_loop_lock */
4086 static void 
4087 g_main_context_add_poll_unlocked (GMainContext *context,
4088                                   gint          priority,
4089                                   GPollFD      *fd)
4090 {
4091   GPollRec *prevrec, *nextrec;
4092   GPollRec *newrec = g_slice_new (GPollRec);
4093
4094   /* This file descriptor may be checked before we ever poll */
4095   fd->revents = 0;
4096   newrec->fd = fd;
4097   newrec->priority = priority;
4098
4099   prevrec = context->poll_records_tail;
4100   nextrec = NULL;
4101   while (prevrec && priority < prevrec->priority)
4102     {
4103       nextrec = prevrec;
4104       prevrec = prevrec->prev;
4105     }
4106
4107   if (prevrec)
4108     prevrec->next = newrec;
4109   else
4110     context->poll_records = newrec;
4111
4112   newrec->prev = prevrec;
4113   newrec->next = nextrec;
4114
4115   if (nextrec)
4116     nextrec->prev = newrec;
4117   else 
4118     context->poll_records_tail = newrec;
4119
4120   context->n_poll_records++;
4121
4122   context->poll_changed = TRUE;
4123
4124   /* Now wake up the main loop if it is waiting in the poll() */
4125   g_wakeup_signal (context->wakeup);
4126 }
4127
4128 /**
4129  * g_main_context_remove_poll:
4130  * @context:a #GMainContext 
4131  * @fd: a #GPollFD descriptor previously added with g_main_context_add_poll()
4132  * 
4133  * Removes file descriptor from the set of file descriptors to be
4134  * polled for a particular context.
4135  **/
4136 void
4137 g_main_context_remove_poll (GMainContext *context,
4138                             GPollFD      *fd)
4139 {
4140   if (!context)
4141     context = g_main_context_default ();
4142   
4143   g_return_if_fail (g_atomic_int_get (&context->ref_count) > 0);
4144   g_return_if_fail (fd);
4145
4146   LOCK_CONTEXT (context);
4147   g_main_context_remove_poll_unlocked (context, fd);
4148   UNLOCK_CONTEXT (context);
4149 }
4150
4151 static void
4152 g_main_context_remove_poll_unlocked (GMainContext *context,
4153                                      GPollFD      *fd)
4154 {
4155   GPollRec *pollrec, *prevrec, *nextrec;
4156
4157   prevrec = NULL;
4158   pollrec = context->poll_records;
4159
4160   while (pollrec)
4161     {
4162       nextrec = pollrec->next;
4163       if (pollrec->fd == fd)
4164         {
4165           if (prevrec != NULL)
4166             prevrec->next = nextrec;
4167           else
4168             context->poll_records = nextrec;
4169
4170           if (nextrec != NULL)
4171             nextrec->prev = prevrec;
4172           else
4173             context->poll_records_tail = prevrec;
4174
4175           g_slice_free (GPollRec, pollrec);
4176
4177           context->n_poll_records--;
4178           break;
4179         }
4180       prevrec = pollrec;
4181       pollrec = nextrec;
4182     }
4183
4184   context->poll_changed = TRUE;
4185   
4186   /* Now wake up the main loop if it is waiting in the poll() */
4187   g_wakeup_signal (context->wakeup);
4188 }
4189
4190 /**
4191  * g_source_get_current_time:
4192  * @source:  a #GSource
4193  * @timeval: #GTimeVal structure in which to store current time.
4194  *
4195  * This function ignores @source and is otherwise the same as
4196  * g_get_current_time().
4197  *
4198  * Deprecated: 2.28: use g_source_get_time() instead
4199  **/
4200 void
4201 g_source_get_current_time (GSource  *source,
4202                            GTimeVal *timeval)
4203 {
4204   g_get_current_time (timeval);
4205 }
4206
4207 /**
4208  * g_source_get_time:
4209  * @source: a #GSource
4210  *
4211  * Gets the time to be used when checking this source. The advantage of
4212  * calling this function over calling g_get_monotonic_time() directly is
4213  * that when checking multiple sources, GLib can cache a single value
4214  * instead of having to repeatedly get the system monotonic time.
4215  *
4216  * The time here is the system monotonic time, if available, or some
4217  * other reasonable alternative otherwise.  See g_get_monotonic_time().
4218  *
4219  * Returns: the monotonic time in microseconds
4220  *
4221  * Since: 2.28
4222  **/
4223 gint64
4224 g_source_get_time (GSource *source)
4225 {
4226   GMainContext *context;
4227   gint64 result;
4228
4229   g_return_val_if_fail (source->context != NULL, 0);
4230
4231   context = source->context;
4232
4233   LOCK_CONTEXT (context);
4234
4235   if (!context->time_is_fresh)
4236     {
4237       context->time = g_get_monotonic_time ();
4238       context->time_is_fresh = TRUE;
4239     }
4240
4241   result = context->time;
4242
4243   UNLOCK_CONTEXT (context);
4244
4245   return result;
4246 }
4247
4248 /**
4249  * g_main_context_set_poll_func:
4250  * @context: a #GMainContext
4251  * @func: the function to call to poll all file descriptors
4252  * 
4253  * Sets the function to use to handle polling of file descriptors. It
4254  * will be used instead of the poll() system call 
4255  * (or GLib's replacement function, which is used where 
4256  * poll() isn't available).
4257  *
4258  * This function could possibly be used to integrate the GLib event
4259  * loop with an external event loop.
4260  **/
4261 void
4262 g_main_context_set_poll_func (GMainContext *context,
4263                               GPollFunc     func)
4264 {
4265   if (!context)
4266     context = g_main_context_default ();
4267   
4268   g_return_if_fail (g_atomic_int_get (&context->ref_count) > 0);
4269
4270   LOCK_CONTEXT (context);
4271   
4272   if (func)
4273     context->poll_func = func;
4274   else
4275     context->poll_func = g_poll;
4276
4277   UNLOCK_CONTEXT (context);
4278 }
4279
4280 /**
4281  * g_main_context_get_poll_func:
4282  * @context: a #GMainContext
4283  * 
4284  * Gets the poll function set by g_main_context_set_poll_func().
4285  * 
4286  * Return value: the poll function
4287  **/
4288 GPollFunc
4289 g_main_context_get_poll_func (GMainContext *context)
4290 {
4291   GPollFunc result;
4292   
4293   if (!context)
4294     context = g_main_context_default ();
4295   
4296   g_return_val_if_fail (g_atomic_int_get (&context->ref_count) > 0, NULL);
4297
4298   LOCK_CONTEXT (context);
4299   result = context->poll_func;
4300   UNLOCK_CONTEXT (context);
4301
4302   return result;
4303 }
4304
4305 /**
4306  * g_main_context_wakeup:
4307  * @context: a #GMainContext
4308  * 
4309  * If @context is currently blocking in g_main_context_iteration()
4310  * waiting for a source to become ready, cause it to stop blocking
4311  * and return.  Otherwise, cause the next invocation of
4312  * g_main_context_iteration() to return without blocking.
4313  *
4314  * This API is useful for low-level control over #GMainContext; for
4315  * example, integrating it with main loop implementations such as
4316  * #GMainLoop.
4317  *
4318  * Another related use for this function is when implementing a main
4319  * loop with a termination condition, computed from multiple threads:
4320  *
4321  * |[
4322  *   #define NUM_TASKS 10
4323  *   static volatile gint tasks_remaining = NUM_TASKS;
4324  *   ...
4325  *  
4326  *   while (g_atomic_int_get (&tasks_remaining) != 0)
4327  *     g_main_context_iteration (NULL, TRUE);
4328  * ]|
4329  *  
4330  * Then in a thread:
4331  * |[
4332  *   perform_work();
4333  *
4334  *   if (g_atomic_int_dec_and_test (&tasks_remaining))
4335  *     g_main_context_wakeup (NULL);
4336  * ]|
4337  **/
4338 void
4339 g_main_context_wakeup (GMainContext *context)
4340 {
4341   if (!context)
4342     context = g_main_context_default ();
4343
4344   g_return_if_fail (g_atomic_int_get (&context->ref_count) > 0);
4345
4346   g_wakeup_signal (context->wakeup);
4347 }
4348
4349 /**
4350  * g_main_context_is_owner:
4351  * @context: a #GMainContext
4352  * 
4353  * Determines whether this thread holds the (recursive)
4354  * ownership of this #GMainContext. This is useful to
4355  * know before waiting on another thread that may be
4356  * blocking to get ownership of @context.
4357  *
4358  * Returns: %TRUE if current thread is owner of @context.
4359  *
4360  * Since: 2.10
4361  **/
4362 gboolean
4363 g_main_context_is_owner (GMainContext *context)
4364 {
4365   gboolean is_owner;
4366
4367   if (!context)
4368     context = g_main_context_default ();
4369
4370   LOCK_CONTEXT (context);
4371   is_owner = context->owner == G_THREAD_SELF;
4372   UNLOCK_CONTEXT (context);
4373
4374   return is_owner;
4375 }
4376
4377 /* Timeouts */
4378
4379 static void
4380 g_timeout_set_expiration (GTimeoutSource *timeout_source,
4381                           gint64          current_time)
4382 {
4383   gint64 expiration;
4384
4385   expiration = current_time + (guint64) timeout_source->interval * 1000;
4386
4387   if (timeout_source->seconds)
4388     {
4389       gint64 remainder;
4390       static gint timer_perturb = -1;
4391
4392       if (timer_perturb == -1)
4393         {
4394           /*
4395            * we want a per machine/session unique 'random' value; try the dbus
4396            * address first, that has a UUID in it. If there is no dbus, use the
4397            * hostname for hashing.
4398            */
4399           const char *session_bus_address = g_getenv ("DBUS_SESSION_BUS_ADDRESS");
4400           if (!session_bus_address)
4401             session_bus_address = g_getenv ("HOSTNAME");
4402           if (session_bus_address)
4403             timer_perturb = ABS ((gint) g_str_hash (session_bus_address)) % 1000000;
4404           else
4405             timer_perturb = 0;
4406         }
4407
4408       /* We want the microseconds part of the timeout to land on the
4409        * 'timer_perturb' mark, but we need to make sure we don't try to
4410        * set the timeout in the past.  We do this by ensuring that we
4411        * always only *increase* the expiration time by adding a full
4412        * second in the case that the microsecond portion decreases.
4413        */
4414       expiration -= timer_perturb;
4415
4416       remainder = expiration % 1000000;
4417       if (remainder >= 1000000/4)
4418         expiration += 1000000;
4419
4420       expiration -= remainder;
4421       expiration += timer_perturb;
4422     }
4423
4424   g_source_set_ready_time ((GSource *) timeout_source, expiration);
4425 }
4426
4427 static gboolean
4428 g_timeout_dispatch (GSource     *source,
4429                     GSourceFunc  callback,
4430                     gpointer     user_data)
4431 {
4432   GTimeoutSource *timeout_source = (GTimeoutSource *)source;
4433   gboolean again;
4434
4435   if (!callback)
4436     {
4437       g_warning ("Timeout source dispatched without callback\n"
4438                  "You must call g_source_set_callback().");
4439       return FALSE;
4440     }
4441
4442   again = callback (user_data);
4443
4444   if (again)
4445     g_timeout_set_expiration (timeout_source, g_source_get_time (source));
4446
4447   return again;
4448 }
4449
4450 /**
4451  * g_timeout_source_new:
4452  * @interval: the timeout interval in milliseconds.
4453  * 
4454  * Creates a new timeout source.
4455  *
4456  * The source will not initially be associated with any #GMainContext
4457  * and must be added to one with g_source_attach() before it will be
4458  * executed.
4459  *
4460  * The interval given is in terms of monotonic time, not wall clock
4461  * time.  See g_get_monotonic_time().
4462  * 
4463  * Return value: the newly-created timeout source
4464  **/
4465 GSource *
4466 g_timeout_source_new (guint interval)
4467 {
4468   GSource *source = g_source_new (&g_timeout_funcs, sizeof (GTimeoutSource));
4469   GTimeoutSource *timeout_source = (GTimeoutSource *)source;
4470
4471   timeout_source->interval = interval;
4472   g_timeout_set_expiration (timeout_source, g_get_monotonic_time ());
4473
4474   return source;
4475 }
4476
4477 /**
4478  * g_timeout_source_new_seconds:
4479  * @interval: the timeout interval in seconds
4480  *
4481  * Creates a new timeout source.
4482  *
4483  * The source will not initially be associated with any #GMainContext
4484  * and must be added to one with g_source_attach() before it will be
4485  * executed.
4486  *
4487  * The scheduling granularity/accuracy of this timeout source will be
4488  * in seconds.
4489  *
4490  * The interval given in terms of monotonic time, not wall clock time.
4491  * See g_get_monotonic_time().
4492  *
4493  * Return value: the newly-created timeout source
4494  *
4495  * Since: 2.14  
4496  **/
4497 GSource *
4498 g_timeout_source_new_seconds (guint interval)
4499 {
4500   GSource *source = g_source_new (&g_timeout_funcs, sizeof (GTimeoutSource));
4501   GTimeoutSource *timeout_source = (GTimeoutSource *)source;
4502
4503   timeout_source->interval = 1000 * interval;
4504   timeout_source->seconds = TRUE;
4505
4506   g_timeout_set_expiration (timeout_source, g_get_monotonic_time ());
4507
4508   return source;
4509 }
4510
4511
4512 /**
4513  * g_timeout_add_full:
4514  * @priority: the priority of the timeout source. Typically this will be in
4515  *            the range between #G_PRIORITY_DEFAULT and #G_PRIORITY_HIGH.
4516  * @interval: the time between calls to the function, in milliseconds
4517  *             (1/1000ths of a second)
4518  * @function: function to call
4519  * @data:     data to pass to @function
4520  * @notify: (allow-none): function to call when the timeout is removed, or %NULL
4521  * 
4522  * Sets a function to be called at regular intervals, with the given
4523  * priority.  The function is called repeatedly until it returns
4524  * %FALSE, at which point the timeout is automatically destroyed and
4525  * the function will not be called again.  The @notify function is
4526  * called when the timeout is destroyed.  The first call to the
4527  * function will be at the end of the first @interval.
4528  *
4529  * Note that timeout functions may be delayed, due to the processing of other
4530  * event sources. Thus they should not be relied on for precise timing.
4531  * After each call to the timeout function, the time of the next
4532  * timeout is recalculated based on the current time and the given interval
4533  * (it does not try to 'catch up' time lost in delays).
4534  *
4535  * This internally creates a main loop source using g_timeout_source_new()
4536  * and attaches it to the main loop context using g_source_attach(). You can
4537  * do these steps manually if you need greater control.
4538  *
4539  * The interval given in terms of monotonic time, not wall clock time.
4540  * See g_get_monotonic_time().
4541  * 
4542  * Return value: the ID (greater than 0) of the event source.
4543  * Rename to: g_timeout_add
4544  **/
4545 guint
4546 g_timeout_add_full (gint           priority,
4547                     guint          interval,
4548                     GSourceFunc    function,
4549                     gpointer       data,
4550                     GDestroyNotify notify)
4551 {
4552   GSource *source;
4553   guint id;
4554   
4555   g_return_val_if_fail (function != NULL, 0);
4556
4557   source = g_timeout_source_new (interval);
4558
4559   if (priority != G_PRIORITY_DEFAULT)
4560     g_source_set_priority (source, priority);
4561
4562   g_source_set_callback (source, function, data, notify);
4563   id = g_source_attach (source, NULL);
4564   g_source_unref (source);
4565
4566   return id;
4567 }
4568
4569 /**
4570  * g_timeout_add:
4571  * @interval: the time between calls to the function, in milliseconds
4572  *             (1/1000ths of a second)
4573  * @function: function to call
4574  * @data:     data to pass to @function
4575  * 
4576  * Sets a function to be called at regular intervals, with the default
4577  * priority, #G_PRIORITY_DEFAULT.  The function is called repeatedly
4578  * until it returns %FALSE, at which point the timeout is automatically
4579  * destroyed and the function will not be called again.  The first call
4580  * to the function will be at the end of the first @interval.
4581  *
4582  * Note that timeout functions may be delayed, due to the processing of other
4583  * event sources. Thus they should not be relied on for precise timing.
4584  * After each call to the timeout function, the time of the next
4585  * timeout is recalculated based on the current time and the given interval
4586  * (it does not try to 'catch up' time lost in delays).
4587  *
4588  * If you want to have a timer in the "seconds" range and do not care
4589  * about the exact time of the first call of the timer, use the
4590  * g_timeout_add_seconds() function; this function allows for more
4591  * optimizations and more efficient system power usage.
4592  *
4593  * This internally creates a main loop source using g_timeout_source_new()
4594  * and attaches it to the main loop context using g_source_attach(). You can
4595  * do these steps manually if you need greater control.
4596  * 
4597  * The interval given is in terms of monotonic time, not wall clock
4598  * time.  See g_get_monotonic_time().
4599  * 
4600  * Return value: the ID (greater than 0) of the event source.
4601  **/
4602 guint
4603 g_timeout_add (guint32        interval,
4604                GSourceFunc    function,
4605                gpointer       data)
4606 {
4607   return g_timeout_add_full (G_PRIORITY_DEFAULT, 
4608                              interval, function, data, NULL);
4609 }
4610
4611 /**
4612  * g_timeout_add_seconds_full:
4613  * @priority: the priority of the timeout source. Typically this will be in
4614  *            the range between #G_PRIORITY_DEFAULT and #G_PRIORITY_HIGH.
4615  * @interval: the time between calls to the function, in seconds
4616  * @function: function to call
4617  * @data:     data to pass to @function
4618  * @notify: (allow-none): function to call when the timeout is removed, or %NULL
4619  *
4620  * Sets a function to be called at regular intervals, with @priority.
4621  * The function is called repeatedly until it returns %FALSE, at which
4622  * point the timeout is automatically destroyed and the function will
4623  * not be called again.
4624  *
4625  * Unlike g_timeout_add(), this function operates at whole second granularity.
4626  * The initial starting point of the timer is determined by the implementation
4627  * and the implementation is expected to group multiple timers together so that
4628  * they fire all at the same time.
4629  * To allow this grouping, the @interval to the first timer is rounded
4630  * and can deviate up to one second from the specified interval.
4631  * Subsequent timer iterations will generally run at the specified interval.
4632  *
4633  * Note that timeout functions may be delayed, due to the processing of other
4634  * event sources. Thus they should not be relied on for precise timing.
4635  * After each call to the timeout function, the time of the next
4636  * timeout is recalculated based on the current time and the given @interval
4637  *
4638  * If you want timing more precise than whole seconds, use g_timeout_add()
4639  * instead.
4640  *
4641  * The grouping of timers to fire at the same time results in a more power
4642  * and CPU efficient behavior so if your timer is in multiples of seconds
4643  * and you don't require the first timer exactly one second from now, the
4644  * use of g_timeout_add_seconds() is preferred over g_timeout_add().
4645  *
4646  * This internally creates a main loop source using 
4647  * g_timeout_source_new_seconds() and attaches it to the main loop context 
4648  * using g_source_attach(). You can do these steps manually if you need 
4649  * greater control.
4650  * 
4651  * The interval given is in terms of monotonic time, not wall clock
4652  * time.  See g_get_monotonic_time().
4653  * 
4654  * Return value: the ID (greater than 0) of the event source.
4655  *
4656  * Rename to: g_timeout_add_seconds
4657  * Since: 2.14
4658  **/
4659 guint
4660 g_timeout_add_seconds_full (gint           priority,
4661                             guint32        interval,
4662                             GSourceFunc    function,
4663                             gpointer       data,
4664                             GDestroyNotify notify)
4665 {
4666   GSource *source;
4667   guint id;
4668
4669   g_return_val_if_fail (function != NULL, 0);
4670
4671   source = g_timeout_source_new_seconds (interval);
4672
4673   if (priority != G_PRIORITY_DEFAULT)
4674     g_source_set_priority (source, priority);
4675
4676   g_source_set_callback (source, function, data, notify);
4677   id = g_source_attach (source, NULL);
4678   g_source_unref (source);
4679
4680   return id;
4681 }
4682
4683 /**
4684  * g_timeout_add_seconds:
4685  * @interval: the time between calls to the function, in seconds
4686  * @function: function to call
4687  * @data: data to pass to @function
4688  *
4689  * Sets a function to be called at regular intervals with the default
4690  * priority, #G_PRIORITY_DEFAULT. The function is called repeatedly until
4691  * it returns %FALSE, at which point the timeout is automatically destroyed
4692  * and the function will not be called again.
4693  *
4694  * This internally creates a main loop source using
4695  * g_timeout_source_new_seconds() and attaches it to the main loop context
4696  * using g_source_attach(). You can do these steps manually if you need
4697  * greater control. Also see g_timeout_add_seconds_full().
4698  *
4699  * Note that the first call of the timer may not be precise for timeouts
4700  * of one second. If you need finer precision and have such a timeout,
4701  * you may want to use g_timeout_add() instead.
4702  *
4703  * The interval given is in terms of monotonic time, not wall clock
4704  * time.  See g_get_monotonic_time().
4705  * 
4706  * Return value: the ID (greater than 0) of the event source.
4707  *
4708  * Since: 2.14
4709  **/
4710 guint
4711 g_timeout_add_seconds (guint       interval,
4712                        GSourceFunc function,
4713                        gpointer    data)
4714 {
4715   g_return_val_if_fail (function != NULL, 0);
4716
4717   return g_timeout_add_seconds_full (G_PRIORITY_DEFAULT, interval, function, data, NULL);
4718 }
4719
4720 /* Child watch functions */
4721
4722 #ifdef G_OS_WIN32
4723
4724 static gboolean
4725 g_child_watch_prepare (GSource *source,
4726                        gint    *timeout)
4727 {
4728   *timeout = -1;
4729   return FALSE;
4730 }
4731
4732 static gboolean 
4733 g_child_watch_check (GSource  *source)
4734 {
4735   GChildWatchSource *child_watch_source;
4736   gboolean child_exited;
4737
4738   child_watch_source = (GChildWatchSource *) source;
4739
4740   child_exited = child_watch_source->poll.revents & G_IO_IN;
4741
4742   if (child_exited)
4743     {
4744       DWORD child_status;
4745
4746       /*
4747        * Note: We do _not_ check for the special value of STILL_ACTIVE
4748        * since we know that the process has exited and doing so runs into
4749        * problems if the child process "happens to return STILL_ACTIVE(259)"
4750        * as Microsoft's Platform SDK puts it.
4751        */
4752       if (!GetExitCodeProcess (child_watch_source->pid, &child_status))
4753         {
4754           gchar *emsg = g_win32_error_message (GetLastError ());
4755           g_warning (G_STRLOC ": GetExitCodeProcess() failed: %s", emsg);
4756           g_free (emsg);
4757
4758           child_watch_source->child_status = -1;
4759         }
4760       else
4761         child_watch_source->child_status = child_status;
4762     }
4763
4764   return child_exited;
4765 }
4766
4767 static void
4768 g_child_watch_finalize (GSource *source)
4769 {
4770 }
4771
4772 #else /* G_OS_WIN32 */
4773
4774 static void
4775 wake_source (GSource *source)
4776 {
4777   GMainContext *context;
4778
4779   /* This should be thread-safe:
4780    *
4781    *  - if the source is currently being added to a context, that
4782    *    context will be woken up anyway
4783    *
4784    *  - if the source is currently being destroyed, we simply need not
4785    *    to crash:
4786    *
4787    *    - the memory for the source will remain valid until after the
4788    *      source finalize function was called (which would remove the
4789    *      source from the global list which we are currently holding the
4790    *      lock for)
4791    *
4792    *    - the GMainContext will either be NULL or point to a live
4793    *      GMainContext
4794    *
4795    *    - the GMainContext will remain valid since we hold the
4796    *      main_context_list lock
4797    *
4798    *  Since we are holding a lot of locks here, don't try to enter any
4799    *  more GMainContext functions for fear of dealock -- just hit the
4800    *  GWakeup and run.  Even if that's safe now, it could easily become
4801    *  unsafe with some very minor changes in the future, and signal
4802    *  handling is not the most well-tested codepath.
4803    */
4804   G_LOCK(main_context_list);
4805   context = source->context;
4806   if (context)
4807     g_wakeup_signal (context->wakeup);
4808   G_UNLOCK(main_context_list);
4809 }
4810
4811 static void
4812 dispatch_unix_signals (void)
4813 {
4814   GSList *node;
4815
4816   /* clear this first incase another one arrives while we're processing */
4817   any_unix_signal_pending = FALSE;
4818
4819   G_LOCK(unix_signal_lock);
4820
4821   /* handle GChildWatchSource instances */
4822   if (unix_signal_pending[SIGCHLD])
4823     {
4824       /* The only way we can do this is to scan all of the children.
4825        *
4826        * The docs promise that we will not reap children that we are not
4827        * explicitly watching, so that ties our hands from calling
4828        * waitpid(-1).  We also can't use siginfo's si_pid field since if
4829        * multiple SIGCHLD arrive at the same time, one of them can be
4830        * dropped (since a given UNIX signal can only be pending once).
4831        */
4832       for (node = unix_child_watches; node; node = node->next)
4833         {
4834           GChildWatchSource *source = node->data;
4835
4836           if (!source->child_exited)
4837             {
4838               pid_t pid;
4839               do
4840                 {
4841                   pid = waitpid (source->pid, &source->child_status, WNOHANG);
4842                   if (pid > 0)
4843                     {
4844                       source->child_exited = TRUE;
4845                       wake_source ((GSource *) source);
4846                     }
4847                   else if (pid == -1 && errno == ECHILD)
4848                     {
4849                       g_warning ("GChildWatchSource: Exit status of a child process was requested but ECHILD was received by waitpid(). Most likely the process is ignoring SIGCHLD, or some other thread is invoking waitpid() with a nonpositive first argument; either behavior can break applications that use g_child_watch_add()/g_spawn_sync() either directly or indirectly.");
4850                       source->child_exited = TRUE;
4851                       source->child_status = 0;
4852                       wake_source ((GSource *) source);
4853                     }
4854                 }
4855               while (pid == -1 && errno == EINTR);
4856             }
4857         }
4858     }
4859
4860   /* handle GUnixSignalWatchSource instances */
4861   for (node = unix_signal_watches; node; node = node->next)
4862     {
4863       GUnixSignalWatchSource *source = node->data;
4864
4865       if (!source->pending)
4866         {
4867           if (unix_signal_pending[source->signum])
4868             {
4869               source->pending = TRUE;
4870
4871               wake_source ((GSource *) source);
4872             }
4873         }
4874     }
4875
4876   memset ((void*)unix_signal_pending, 0, sizeof (unix_signal_pending));
4877
4878   G_UNLOCK(unix_signal_lock);
4879 }
4880
4881 static gboolean
4882 g_child_watch_prepare (GSource *source,
4883                        gint    *timeout)
4884 {
4885   GChildWatchSource *child_watch_source;
4886
4887   child_watch_source = (GChildWatchSource *) source;
4888
4889   return child_watch_source->child_exited;
4890 }
4891
4892 static gboolean
4893 g_child_watch_check (GSource *source)
4894 {
4895   GChildWatchSource *child_watch_source;
4896
4897   child_watch_source = (GChildWatchSource *) source;
4898
4899   return child_watch_source->child_exited;
4900 }
4901
4902 static gboolean
4903 g_unix_signal_watch_prepare (GSource *source,
4904                              gint    *timeout)
4905 {
4906   GUnixSignalWatchSource *unix_signal_source;
4907
4908   unix_signal_source = (GUnixSignalWatchSource *) source;
4909
4910   return unix_signal_source->pending;
4911 }
4912
4913 static gboolean
4914 g_unix_signal_watch_check (GSource  *source)
4915 {
4916   GUnixSignalWatchSource *unix_signal_source;
4917
4918   unix_signal_source = (GUnixSignalWatchSource *) source;
4919
4920   return unix_signal_source->pending;
4921 }
4922
4923 static gboolean
4924 g_unix_signal_watch_dispatch (GSource    *source, 
4925                               GSourceFunc callback,
4926                               gpointer    user_data)
4927 {
4928   GUnixSignalWatchSource *unix_signal_source;
4929   gboolean again;
4930
4931   unix_signal_source = (GUnixSignalWatchSource *) source;
4932
4933   if (!callback)
4934     {
4935       g_warning ("Unix signal source dispatched without callback\n"
4936                  "You must call g_source_set_callback().");
4937       return FALSE;
4938     }
4939
4940   again = (callback) (user_data);
4941
4942   unix_signal_source->pending = FALSE;
4943
4944   return again;
4945 }
4946
4947 static void
4948 ref_unix_signal_handler_unlocked (int signum)
4949 {
4950   /* Ensure we have the worker context */
4951   g_get_worker_context ();
4952   unix_signal_refcount[signum]++;
4953   if (unix_signal_refcount[signum] == 1)
4954     {
4955       struct sigaction action;
4956       action.sa_handler = g_unix_signal_handler;
4957       sigemptyset (&action.sa_mask);
4958 #ifdef SA_RESTART
4959       action.sa_flags = SA_RESTART | SA_NOCLDSTOP;
4960 #else
4961       action.sa_flags = SA_NOCLDSTOP;
4962 #endif
4963       sigaction (signum, &action, NULL);
4964     }
4965 }
4966
4967 static void
4968 unref_unix_signal_handler_unlocked (int signum)
4969 {
4970   unix_signal_refcount[signum]--;
4971   if (unix_signal_refcount[signum] == 0)
4972     {
4973       struct sigaction action;
4974       action.sa_handler = SIG_DFL;
4975       sigemptyset (&action.sa_mask);
4976       sigaction (signum, &action, NULL);
4977     }
4978 }
4979
4980 GSource *
4981 _g_main_create_unix_signal_watch (int signum)
4982 {
4983   GSource *source;
4984   GUnixSignalWatchSource *unix_signal_source;
4985
4986   source = g_source_new (&g_unix_signal_funcs, sizeof (GUnixSignalWatchSource));
4987   unix_signal_source = (GUnixSignalWatchSource *) source;
4988
4989   unix_signal_source->signum = signum;
4990   unix_signal_source->pending = FALSE;
4991
4992   G_LOCK (unix_signal_lock);
4993   ref_unix_signal_handler_unlocked (signum);
4994   unix_signal_watches = g_slist_prepend (unix_signal_watches, unix_signal_source);
4995   if (unix_signal_pending[signum])
4996     unix_signal_source->pending = TRUE;
4997   G_UNLOCK (unix_signal_lock);
4998
4999   return source;
5000 }
5001
5002 static void
5003 g_unix_signal_watch_finalize (GSource    *source)
5004 {
5005   GUnixSignalWatchSource *unix_signal_source;
5006
5007   unix_signal_source = (GUnixSignalWatchSource *) source;
5008
5009   G_LOCK (unix_signal_lock);
5010   unref_unix_signal_handler_unlocked (unix_signal_source->signum);
5011   unix_signal_watches = g_slist_remove (unix_signal_watches, source);
5012   G_UNLOCK (unix_signal_lock);
5013 }
5014
5015 static void
5016 g_child_watch_finalize (GSource *source)
5017 {
5018   G_LOCK (unix_signal_lock);
5019   unix_child_watches = g_slist_remove (unix_child_watches, source);
5020   unref_unix_signal_handler_unlocked (SIGCHLD);
5021   G_UNLOCK (unix_signal_lock);
5022 }
5023
5024 #endif /* G_OS_WIN32 */
5025
5026 static gboolean
5027 g_child_watch_dispatch (GSource    *source, 
5028                         GSourceFunc callback,
5029                         gpointer    user_data)
5030 {
5031   GChildWatchSource *child_watch_source;
5032   GChildWatchFunc child_watch_callback = (GChildWatchFunc) callback;
5033
5034   child_watch_source = (GChildWatchSource *) source;
5035
5036   if (!callback)
5037     {
5038       g_warning ("Child watch source dispatched without callback\n"
5039                  "You must call g_source_set_callback().");
5040       return FALSE;
5041     }
5042
5043   (child_watch_callback) (child_watch_source->pid, child_watch_source->child_status, user_data);
5044
5045   /* We never keep a child watch source around as the child is gone */
5046   return FALSE;
5047 }
5048
5049 #ifndef G_OS_WIN32
5050
5051 static void
5052 g_unix_signal_handler (int signum)
5053 {
5054   unix_signal_pending[signum] = TRUE;
5055   any_unix_signal_pending = TRUE;
5056
5057   g_wakeup_signal (glib_worker_context->wakeup);
5058 }
5059
5060 #endif /* !G_OS_WIN32 */
5061
5062 /**
5063  * g_child_watch_source_new:
5064  * @pid: process to watch. On POSIX the pid of a child process. On
5065  * Windows a handle for a process (which doesn't have to be a child).
5066  * 
5067  * Creates a new child_watch source.
5068  *
5069  * The source will not initially be associated with any #GMainContext
5070  * and must be added to one with g_source_attach() before it will be
5071  * executed.
5072  * 
5073  * Note that child watch sources can only be used in conjunction with
5074  * <literal>g_spawn...</literal> when the %G_SPAWN_DO_NOT_REAP_CHILD
5075  * flag is used.
5076  *
5077  * Note that on platforms where #GPid must be explicitly closed
5078  * (see g_spawn_close_pid()) @pid must not be closed while the
5079  * source is still active. Typically, you will want to call
5080  * g_spawn_close_pid() in the callback function for the source.
5081  *
5082  * Note further that using g_child_watch_source_new() is not
5083  * compatible with calling <literal>waitpid</literal> with a
5084  * nonpositive first argument in the application. Calling waitpid()
5085  * for individual pids will still work fine.
5086  * 
5087  * Return value: the newly-created child watch source
5088  *
5089  * Since: 2.4
5090  **/
5091 GSource *
5092 g_child_watch_source_new (GPid pid)
5093 {
5094   GSource *source = g_source_new (&g_child_watch_funcs, sizeof (GChildWatchSource));
5095   GChildWatchSource *child_watch_source = (GChildWatchSource *)source;
5096
5097   child_watch_source->pid = pid;
5098
5099 #ifdef G_OS_WIN32
5100   child_watch_source->poll.fd = (gintptr) pid;
5101   child_watch_source->poll.events = G_IO_IN;
5102
5103   g_source_add_poll (source, &child_watch_source->poll);
5104 #else /* G_OS_WIN32 */
5105   G_LOCK (unix_signal_lock);
5106   ref_unix_signal_handler_unlocked (SIGCHLD);
5107   unix_child_watches = g_slist_prepend (unix_child_watches, child_watch_source);
5108   if (waitpid (pid, &child_watch_source->child_status, WNOHANG) > 0)
5109     child_watch_source->child_exited = TRUE;
5110   G_UNLOCK (unix_signal_lock);
5111 #endif /* G_OS_WIN32 */
5112
5113   return source;
5114 }
5115
5116 /**
5117  * g_child_watch_add_full:
5118  * @priority: the priority of the idle source. Typically this will be in the
5119  *            range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.
5120  * @pid:      process to watch. On POSIX the pid of a child process. On
5121  * Windows a handle for a process (which doesn't have to be a child).
5122  * @function: function to call
5123  * @data:     data to pass to @function
5124  * @notify: (allow-none): function to call when the idle is removed, or %NULL
5125  * 
5126  * Sets a function to be called when the child indicated by @pid 
5127  * exits, at the priority @priority.
5128  *
5129  * If you obtain @pid from g_spawn_async() or g_spawn_async_with_pipes() 
5130  * you will need to pass #G_SPAWN_DO_NOT_REAP_CHILD as flag to 
5131  * the spawn function for the child watching to work.
5132  *
5133  * In many programs, you will want to call g_spawn_check_exit_status()
5134  * in the callback to determine whether or not the child exited
5135  * successfully.
5136  * 
5137  * Also, note that on platforms where #GPid must be explicitly closed
5138  * (see g_spawn_close_pid()) @pid must not be closed while the source
5139  * is still active.  Typically, you should invoke g_spawn_close_pid()
5140  * in the callback function for the source.
5141  * 
5142  * GLib supports only a single callback per process id.
5143  *
5144  * This internally creates a main loop source using 
5145  * g_child_watch_source_new() and attaches it to the main loop context 
5146  * using g_source_attach(). You can do these steps manually if you 
5147  * need greater control.
5148  *
5149  * Return value: the ID (greater than 0) of the event source.
5150  *
5151  * Rename to: g_child_watch_add
5152  * Since: 2.4
5153  **/
5154 guint
5155 g_child_watch_add_full (gint            priority,
5156                         GPid            pid,
5157                         GChildWatchFunc function,
5158                         gpointer        data,
5159                         GDestroyNotify  notify)
5160 {
5161   GSource *source;
5162   guint id;
5163   
5164   g_return_val_if_fail (function != NULL, 0);
5165
5166   source = g_child_watch_source_new (pid);
5167
5168   if (priority != G_PRIORITY_DEFAULT)
5169     g_source_set_priority (source, priority);
5170
5171   g_source_set_callback (source, (GSourceFunc) function, data, notify);
5172   id = g_source_attach (source, NULL);
5173   g_source_unref (source);
5174
5175   return id;
5176 }
5177
5178 /**
5179  * g_child_watch_add:
5180  * @pid:      process id to watch. On POSIX the pid of a child process. On
5181  * Windows a handle for a process (which doesn't have to be a child).
5182  * @function: function to call
5183  * @data:     data to pass to @function
5184  * 
5185  * Sets a function to be called when the child indicated by @pid 
5186  * exits, at a default priority, #G_PRIORITY_DEFAULT.
5187  * 
5188  * If you obtain @pid from g_spawn_async() or g_spawn_async_with_pipes() 
5189  * you will need to pass #G_SPAWN_DO_NOT_REAP_CHILD as flag to 
5190  * the spawn function for the child watching to work.
5191  * 
5192  * Note that on platforms where #GPid must be explicitly closed
5193  * (see g_spawn_close_pid()) @pid must not be closed while the
5194  * source is still active. Typically, you will want to call
5195  * g_spawn_close_pid() in the callback function for the source.
5196  *
5197  * GLib supports only a single callback per process id.
5198  *
5199  * This internally creates a main loop source using 
5200  * g_child_watch_source_new() and attaches it to the main loop context 
5201  * using g_source_attach(). You can do these steps manually if you 
5202  * need greater control.
5203  *
5204  * Return value: the ID (greater than 0) of the event source.
5205  *
5206  * Since: 2.4
5207  **/
5208 guint 
5209 g_child_watch_add (GPid            pid,
5210                    GChildWatchFunc function,
5211                    gpointer        data)
5212 {
5213   return g_child_watch_add_full (G_PRIORITY_DEFAULT, pid, function, data, NULL);
5214 }
5215
5216
5217 /* Idle functions */
5218
5219 static gboolean 
5220 g_idle_prepare  (GSource  *source,
5221                  gint     *timeout)
5222 {
5223   *timeout = 0;
5224
5225   return TRUE;
5226 }
5227
5228 static gboolean 
5229 g_idle_check    (GSource  *source)
5230 {
5231   return TRUE;
5232 }
5233
5234 static gboolean
5235 g_idle_dispatch (GSource    *source, 
5236                  GSourceFunc callback,
5237                  gpointer    user_data)
5238 {
5239   if (!callback)
5240     {
5241       g_warning ("Idle source dispatched without callback\n"
5242                  "You must call g_source_set_callback().");
5243       return FALSE;
5244     }
5245   
5246   return callback (user_data);
5247 }
5248
5249 /**
5250  * g_idle_source_new:
5251  * 
5252  * Creates a new idle source.
5253  *
5254  * The source will not initially be associated with any #GMainContext
5255  * and must be added to one with g_source_attach() before it will be
5256  * executed. Note that the default priority for idle sources is
5257  * %G_PRIORITY_DEFAULT_IDLE, as compared to other sources which
5258  * have a default priority of %G_PRIORITY_DEFAULT.
5259  * 
5260  * Return value: the newly-created idle source
5261  **/
5262 GSource *
5263 g_idle_source_new (void)
5264 {
5265   GSource *source;
5266
5267   source = g_source_new (&g_idle_funcs, sizeof (GSource));
5268   g_source_set_priority (source, G_PRIORITY_DEFAULT_IDLE);
5269
5270   return source;
5271 }
5272
5273 /**
5274  * g_idle_add_full:
5275  * @priority: the priority of the idle source. Typically this will be in the
5276  *            range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.
5277  * @function: function to call
5278  * @data:     data to pass to @function
5279  * @notify: (allow-none): function to call when the idle is removed, or %NULL
5280  * 
5281  * Adds a function to be called whenever there are no higher priority
5282  * events pending.  If the function returns %FALSE it is automatically
5283  * removed from the list of event sources and will not be called again.
5284  * 
5285  * This internally creates a main loop source using g_idle_source_new()
5286  * and attaches it to the main loop context using g_source_attach(). 
5287  * You can do these steps manually if you need greater control.
5288  * 
5289  * Return value: the ID (greater than 0) of the event source.
5290  * Rename to: g_idle_add
5291  **/
5292 guint 
5293 g_idle_add_full (gint           priority,
5294                  GSourceFunc    function,
5295                  gpointer       data,
5296                  GDestroyNotify notify)
5297 {
5298   GSource *source;
5299   guint id;
5300   
5301   g_return_val_if_fail (function != NULL, 0);
5302
5303   source = g_idle_source_new ();
5304
5305   if (priority != G_PRIORITY_DEFAULT_IDLE)
5306     g_source_set_priority (source, priority);
5307
5308   g_source_set_callback (source, function, data, notify);
5309   id = g_source_attach (source, NULL);
5310   g_source_unref (source);
5311
5312   return id;
5313 }
5314
5315 /**
5316  * g_idle_add:
5317  * @function: function to call 
5318  * @data: data to pass to @function.
5319  * 
5320  * Adds a function to be called whenever there are no higher priority
5321  * events pending to the default main loop. The function is given the
5322  * default idle priority, #G_PRIORITY_DEFAULT_IDLE.  If the function
5323  * returns %FALSE it is automatically removed from the list of event
5324  * sources and will not be called again.
5325  * 
5326  * This internally creates a main loop source using g_idle_source_new()
5327  * and attaches it to the main loop context using g_source_attach(). 
5328  * You can do these steps manually if you need greater control.
5329  * 
5330  * Return value: the ID (greater than 0) of the event source.
5331  **/
5332 guint 
5333 g_idle_add (GSourceFunc    function,
5334             gpointer       data)
5335 {
5336   return g_idle_add_full (G_PRIORITY_DEFAULT_IDLE, function, data, NULL);
5337 }
5338
5339 /**
5340  * g_idle_remove_by_data:
5341  * @data: the data for the idle source's callback.
5342  * 
5343  * Removes the idle function with the given data.
5344  * 
5345  * Return value: %TRUE if an idle source was found and removed.
5346  **/
5347 gboolean
5348 g_idle_remove_by_data (gpointer data)
5349 {
5350   return g_source_remove_by_funcs_user_data (&g_idle_funcs, data);
5351 }
5352
5353 /**
5354  * g_main_context_invoke:
5355  * @context: (allow-none): a #GMainContext, or %NULL
5356  * @function: function to call
5357  * @data: data to pass to @function
5358  *
5359  * Invokes a function in such a way that @context is owned during the
5360  * invocation of @function.
5361  *
5362  * If @context is %NULL then the global default main context — as
5363  * returned by g_main_context_default() — is used.
5364  *
5365  * If @context is owned by the current thread, @function is called
5366  * directly.  Otherwise, if @context is the thread-default main context
5367  * of the current thread and g_main_context_acquire() succeeds, then
5368  * @function is called and g_main_context_release() is called
5369  * afterwards.
5370  *
5371  * In any other case, an idle source is created to call @function and
5372  * that source is attached to @context (presumably to be run in another
5373  * thread).  The idle source is attached with #G_PRIORITY_DEFAULT
5374  * priority.  If you want a different priority, use
5375  * g_main_context_invoke_full().
5376  *
5377  * Note that, as with normal idle functions, @function should probably
5378  * return %FALSE.  If it returns %TRUE, it will be continuously run in a
5379  * loop (and may prevent this call from returning).
5380  *
5381  * Since: 2.28
5382  **/
5383 void
5384 g_main_context_invoke (GMainContext *context,
5385                        GSourceFunc   function,
5386                        gpointer      data)
5387 {
5388   g_main_context_invoke_full (context,
5389                               G_PRIORITY_DEFAULT,
5390                               function, data, NULL);
5391 }
5392
5393 /**
5394  * g_main_context_invoke_full:
5395  * @context: (allow-none): a #GMainContext, or %NULL
5396  * @priority: the priority at which to run @function
5397  * @function: function to call
5398  * @data: data to pass to @function
5399  * @notify: (allow-none): a function to call when @data is no longer in use, or %NULL.
5400  *
5401  * Invokes a function in such a way that @context is owned during the
5402  * invocation of @function.
5403  *
5404  * This function is the same as g_main_context_invoke() except that it
5405  * lets you specify the priority incase @function ends up being
5406  * scheduled as an idle and also lets you give a #GDestroyNotify for @data.
5407  *
5408  * @notify should not assume that it is called from any particular
5409  * thread or with any particular context acquired.
5410  *
5411  * Since: 2.28
5412  **/
5413 void
5414 g_main_context_invoke_full (GMainContext   *context,
5415                             gint            priority,
5416                             GSourceFunc     function,
5417                             gpointer        data,
5418                             GDestroyNotify  notify)
5419 {
5420   g_return_if_fail (function != NULL);
5421
5422   if (!context)
5423     context = g_main_context_default ();
5424
5425   if (g_main_context_is_owner (context))
5426     {
5427       while (function (data));
5428       if (notify != NULL)
5429         notify (data);
5430     }
5431
5432   else
5433     {
5434       GMainContext *thread_default;
5435
5436       thread_default = g_main_context_get_thread_default ();
5437
5438       if (!thread_default)
5439         thread_default = g_main_context_default ();
5440
5441       if (thread_default == context && g_main_context_acquire (context))
5442         {
5443           while (function (data));
5444
5445           g_main_context_release (context);
5446
5447           if (notify != NULL)
5448             notify (data);
5449         }
5450       else
5451         {
5452           GSource *source;
5453
5454           source = g_idle_source_new ();
5455           g_source_set_priority (source, priority);
5456           g_source_set_callback (source, function, data, notify);
5457           g_source_attach (source, context);
5458           g_source_unref (source);
5459         }
5460     }
5461 }
5462
5463 static gpointer
5464 glib_worker_main (gpointer data)
5465 {
5466   while (TRUE)
5467     {
5468       g_main_context_iteration (glib_worker_context, TRUE);
5469
5470 #ifdef G_OS_UNIX
5471       if (any_unix_signal_pending)
5472         dispatch_unix_signals ();
5473 #endif
5474     }
5475
5476   return NULL; /* worst GCC warning message ever... */
5477 }
5478
5479 GMainContext *
5480 g_get_worker_context (void)
5481 {
5482   static gsize initialised;
5483
5484   if (g_once_init_enter (&initialised))
5485     {
5486       /* mask all signals in the worker thread */
5487 #ifdef G_OS_UNIX
5488       sigset_t prev_mask;
5489       sigset_t all;
5490
5491       sigfillset (&all);
5492       pthread_sigmask (SIG_SETMASK, &all, &prev_mask);
5493 #endif
5494       glib_worker_context = g_main_context_new ();
5495       g_thread_new ("gmain", glib_worker_main, NULL);
5496 #ifdef G_OS_UNIX
5497       pthread_sigmask (SIG_SETMASK, &prev_mask, NULL);
5498 #endif
5499       g_once_init_leave (&initialised, TRUE);
5500     }
5501
5502   return glib_worker_context;
5503 }