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