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