1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * gmain.c: Main loop abstraction, timeouts, and idle functions
5 * Copyright 1998 Owen Taylor
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.
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.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
23 * file for a list of people on the GLib Team. See the ChangeLog
24 * files for a list of changes. These files are distributed with
25 * GLib at ftp://ftp.gtk.org/pub/gtk/.
33 #include "glibconfig.h"
35 /* Uncomment the next line (and the corresponding line in gpoll.c) to
36 * enable debugging printouts if the environment variable
37 * G_MAIN_POLL_DEBUG is set to some value.
39 /* #define G_MAIN_POLL_DEBUG */
42 /* Always enable debugging printout on Windows, as it is more often
45 #define G_MAIN_POLL_DEBUG
49 #include "glib-unix.h"
52 #include <sys/eventfd.h>
57 #include <sys/types.h>
60 #ifdef HAVE_SYS_TIME_H
62 #endif /* HAVE_SYS_TIME_H */
65 #endif /* G_OS_UNIX */
72 #endif /* G_OS_WIN32 */
74 #ifdef HAVE_MACH_MACH_TIME_H
75 #include <mach/mach_time.h>
78 #include "glib_trace.h"
83 #include "giochannel.h"
87 #include "gstrfuncs.h"
88 #include "gtestutils.h"
94 #ifdef G_MAIN_POLL_DEBUG
99 #include "gmain-internal.h"
100 #include "glib-init.h"
101 #include "glib-private.h"
105 * @title: The Main Event Loop
106 * @short_description: manages all available sources of events
108 * The main event loop manages all the available sources of events for
109 * GLib and GTK+ applications. These events can come from any number of
110 * different types of sources such as file descriptors (plain files,
111 * pipes or sockets) and timeouts. New types of event sources can also
112 * be added using g_source_attach().
114 * To allow multiple independent sets of sources to be handled in
115 * different threads, each source is associated with a #GMainContext.
116 * A GMainContext can only be running in a single thread, but
117 * sources can be added to it and removed from it from other threads.
119 * Each event source is assigned a priority. The default priority,
120 * #G_PRIORITY_DEFAULT, is 0. Values less than 0 denote higher priorities.
121 * Values greater than 0 denote lower priorities. Events from high priority
122 * sources are always processed before events from lower priority sources.
124 * Idle functions can also be added, and assigned a priority. These will
125 * be run whenever no events with a higher priority are ready to be processed.
127 * The #GMainLoop data type represents a main event loop. A GMainLoop is
128 * created with g_main_loop_new(). After adding the initial event sources,
129 * g_main_loop_run() is called. This continuously checks for new events from
130 * each of the event sources and dispatches them. Finally, the processing of
131 * an event from one of the sources leads to a call to g_main_loop_quit() to
132 * exit the main loop, and g_main_loop_run() returns.
134 * It is possible to create new instances of #GMainLoop recursively.
135 * This is often used in GTK+ applications when showing modal dialog
136 * boxes. Note that event sources are associated with a particular
137 * #GMainContext, and will be checked and dispatched for all main
138 * loops associated with that GMainContext.
140 * GTK+ contains wrappers of some of these functions, e.g. gtk_main(),
141 * gtk_main_quit() and gtk_events_pending().
143 * ## Creating new source types
145 * 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 "deriving" from the #GSource structure. The derived type of
150 * source is represented by a structure that has the #GSource structure
151 * as a first element, and other elements specific to the new source
152 * type. To create an instance of the new source type, call
153 * 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.
157 * New source types basically interact with the main context
158 * in two ways. Their prepare function in #GSourceFuncs can set a timeout
159 * to determine the maximum amount of time that the main loop will sleep
160 * before checking the source again. In addition, or as well, the source
161 * can add file descriptors to the set that the main context checks using
162 * g_source_add_poll().
164 * ## Customizing the main loop iteration
166 * Single iterations of a #GMainContext can be run with
167 * g_main_context_iteration(). In some cases, more detailed control
168 * of exactly how the details of the main loop work is desired, for
169 * instance, when integrating the #GMainLoop with an external main loop.
170 * In such cases, you can call the component functions of
171 * g_main_context_iteration() directly. These functions are
172 * g_main_context_prepare(), g_main_context_query(),
173 * g_main_context_check() and g_main_context_dispatch().
175 * ## State of a Main Context # {#mainloop-states}
177 * The operation of these functions can best be seen in terms
178 * of a state diagram, as shown in this image.
180 * ![](mainloop-states.gif)
182 * On UNIX, the GLib mainloop is incompatible with fork(). Any program
183 * using the mainloop must either exec() or exit() from the child
184 * without returning to the mainloop.
189 typedef struct _GTimeoutSource GTimeoutSource
;
190 typedef struct _GChildWatchSource GChildWatchSource
;
191 typedef struct _GUnixSignalWatchSource GUnixSignalWatchSource
;
192 typedef struct _GPollRec GPollRec
;
193 typedef struct _GSourceCallback GSourceCallback
;
197 G_SOURCE_READY
= 1 << G_HOOK_FLAG_USER_SHIFT
,
198 G_SOURCE_CAN_RECURSE
= 1 << (G_HOOK_FLAG_USER_SHIFT
+ 1),
199 G_SOURCE_BLOCKED
= 1 << (G_HOOK_FLAG_USER_SHIFT
+ 2)
202 typedef struct _GSourceList GSourceList
;
206 GSource
*head
, *tail
;
210 typedef struct _GMainWaiter GMainWaiter
;
218 typedef struct _GMainDispatch GMainDispatch
;
220 struct _GMainDispatch
226 #ifdef G_MAIN_POLL_DEBUG
227 gboolean _g_main_poll_debug
= FALSE
;
232 /* The following lock is used for both the list of sources
233 * and the list of poll records
243 GPtrArray
*pending_dispatches
;
244 gint timeout
; /* Timeout for current iteration */
247 GHashTable
*overflow_used_source_ids
; /* set<guint> */
249 gint in_check_or_prepare
;
251 GPollRec
*poll_records
, *poll_records_tail
;
252 guint n_poll_records
;
253 GPollFD
*cached_poll_array
;
254 guint cached_poll_array_size
;
260 /* Flag indicating whether the set of fd's changed during a poll */
261 gboolean poll_changed
;
266 gboolean time_is_fresh
;
269 struct _GSourceCallback
274 GDestroyNotify notify
;
279 GMainContext
*context
;
284 struct _GTimeoutSource
291 struct _GChildWatchSource
298 #else /* G_OS_WIN32 */
299 gboolean child_exited
;
300 #endif /* G_OS_WIN32 */
303 struct _GUnixSignalWatchSource
318 struct _GSourcePrivate
320 GSList
*child_sources
;
321 GSource
*parent_source
;
325 /* This is currently only used on UNIX, but we always declare it (and
326 * let it remain empty on Windows) to avoid #ifdef all over the place.
331 typedef struct _GSourceIter
333 GMainContext
*context
;
339 #define LOCK_CONTEXT(context) g_mutex_lock (&context->mutex)
340 #define UNLOCK_CONTEXT(context) g_mutex_unlock (&context->mutex)
341 #define G_THREAD_SELF g_thread_self ()
343 #define SOURCE_DESTROYED(source) (((source)->flags & G_HOOK_FLAG_ACTIVE) == 0)
344 #define SOURCE_BLOCKED(source) (((source)->flags & G_SOURCE_BLOCKED) != 0)
346 #define SOURCE_UNREF(source, context) \
348 if ((source)->ref_count > 1) \
349 (source)->ref_count--; \
351 g_source_unref_internal ((source), (context), TRUE); \
355 /* Forward declarations */
357 static void g_source_unref_internal (GSource
*source
,
358 GMainContext
*context
,
360 static void g_source_destroy_internal (GSource
*source
,
361 GMainContext
*context
,
363 static void g_source_set_priority_unlocked (GSource
*source
,
364 GMainContext
*context
,
366 static void g_child_source_remove_internal (GSource
*child_source
,
367 GMainContext
*context
);
369 static void g_main_context_poll (GMainContext
*context
,
374 static void g_main_context_add_poll_unlocked (GMainContext
*context
,
377 static void g_main_context_remove_poll_unlocked (GMainContext
*context
,
380 static void g_source_iter_init (GSourceIter
*iter
,
381 GMainContext
*context
,
382 gboolean may_modify
);
383 static gboolean
g_source_iter_next (GSourceIter
*iter
,
385 static void g_source_iter_clear (GSourceIter
*iter
);
387 static gboolean
g_timeout_dispatch (GSource
*source
,
388 GSourceFunc callback
,
390 static gboolean
g_child_watch_prepare (GSource
*source
,
392 static gboolean
g_child_watch_check (GSource
*source
);
393 static gboolean
g_child_watch_dispatch (GSource
*source
,
394 GSourceFunc callback
,
396 static void g_child_watch_finalize (GSource
*source
);
398 static void g_unix_signal_handler (int signum
);
399 static gboolean
g_unix_signal_watch_prepare (GSource
*source
,
401 static gboolean
g_unix_signal_watch_check (GSource
*source
);
402 static gboolean
g_unix_signal_watch_dispatch (GSource
*source
,
403 GSourceFunc callback
,
405 static void g_unix_signal_watch_finalize (GSource
*source
);
407 static gboolean
g_idle_prepare (GSource
*source
,
409 static gboolean
g_idle_check (GSource
*source
);
410 static gboolean
g_idle_dispatch (GSource
*source
,
411 GSourceFunc callback
,
414 static void block_source (GSource
*source
);
416 static GMainContext
*glib_worker_context
;
418 G_LOCK_DEFINE_STATIC (main_loop
);
419 static GMainContext
*default_main_context
;
424 /* UNIX signals work by marking one of these variables then waking the
425 * worker context to check on them and dispatch accordingly.
427 #ifdef HAVE_SIG_ATOMIC_T
428 static volatile sig_atomic_t unix_signal_pending
[NSIG
];
429 static volatile sig_atomic_t any_unix_signal_pending
;
431 static volatile int unix_signal_pending
[NSIG
];
432 static volatile int any_unix_signal_pending
;
434 static volatile guint unix_signal_refcount
[NSIG
];
436 /* Guards all the data below */
437 G_LOCK_DEFINE_STATIC (unix_signal_lock
);
438 static GSList
*unix_signal_watches
;
439 static GSList
*unix_child_watches
;
441 GSourceFuncs g_unix_signal_funcs
=
443 g_unix_signal_watch_prepare
,
444 g_unix_signal_watch_check
,
445 g_unix_signal_watch_dispatch
,
446 g_unix_signal_watch_finalize
448 #endif /* !G_OS_WIN32 */
449 G_LOCK_DEFINE_STATIC (main_context_list
);
450 static GSList
*main_context_list
= NULL
;
452 GSourceFuncs g_timeout_funcs
=
460 GSourceFuncs g_child_watch_funcs
=
462 g_child_watch_prepare
,
464 g_child_watch_dispatch
,
465 g_child_watch_finalize
468 GSourceFuncs g_idle_funcs
=
477 * g_main_context_ref:
478 * @context: a #GMainContext
480 * Increases the reference count on a #GMainContext object by one.
482 * Returns: the @context that was passed in (since 2.6)
485 g_main_context_ref (GMainContext
*context
)
487 g_return_val_if_fail (context
!= NULL
, NULL
);
488 g_return_val_if_fail (g_atomic_int_get (&context
->ref_count
) > 0, NULL
);
490 g_atomic_int_inc (&context
->ref_count
);
496 poll_rec_list_free (GMainContext
*context
,
499 g_slice_free_chain (GPollRec
, list
, next
);
503 * g_main_context_unref:
504 * @context: a #GMainContext
506 * Decreases the reference count on a #GMainContext object by one. If
507 * the result is zero, free the context and free all associated memory.
510 g_main_context_unref (GMainContext
*context
)
518 g_return_if_fail (context
!= NULL
);
519 g_return_if_fail (g_atomic_int_get (&context
->ref_count
) > 0);
521 if (!g_atomic_int_dec_and_test (&context
->ref_count
))
524 G_LOCK (main_context_list
);
525 main_context_list
= g_slist_remove (main_context_list
, context
);
526 G_UNLOCK (main_context_list
);
528 /* Free pending dispatches */
529 for (i
= 0; i
< context
->pending_dispatches
->len
; i
++)
530 g_source_unref_internal (context
->pending_dispatches
->pdata
[i
], context
, FALSE
);
532 /* g_source_iter_next() assumes the context is locked. */
533 LOCK_CONTEXT (context
);
534 g_source_iter_init (&iter
, context
, TRUE
);
535 while (g_source_iter_next (&iter
, &source
))
537 source
->context
= NULL
;
538 g_source_destroy_internal (source
, context
, TRUE
);
540 UNLOCK_CONTEXT (context
);
542 for (sl_iter
= context
->source_lists
; sl_iter
; sl_iter
= sl_iter
->next
)
544 list
= sl_iter
->data
;
545 g_slice_free (GSourceList
, list
);
547 g_list_free (context
->source_lists
);
549 if (context
->overflow_used_source_ids
)
550 g_hash_table_destroy (context
->overflow_used_source_ids
);
552 g_mutex_clear (&context
->mutex
);
554 g_ptr_array_free (context
->pending_dispatches
, TRUE
);
555 g_free (context
->cached_poll_array
);
557 poll_rec_list_free (context
, context
->poll_records
);
559 g_wakeup_free (context
->wakeup
);
560 g_cond_clear (&context
->cond
);
565 /* Helper function used by mainloop/overflow test.
568 g_main_context_new_with_next_id (guint next_id
)
570 GMainContext
*ret
= g_main_context_new ();
572 ret
->next_id
= next_id
;
578 * g_main_context_new:
580 * Creates a new #GMainContext structure.
582 * Returns: the new #GMainContext
585 g_main_context_new (void)
587 static gsize initialised
;
588 GMainContext
*context
;
590 if (g_once_init_enter (&initialised
))
592 #ifdef G_MAIN_POLL_DEBUG
593 if (getenv ("G_MAIN_POLL_DEBUG") != NULL
)
594 _g_main_poll_debug
= TRUE
;
597 g_once_init_leave (&initialised
, TRUE
);
600 context
= g_new0 (GMainContext
, 1);
602 g_mutex_init (&context
->mutex
);
603 g_cond_init (&context
->cond
);
605 context
->owner
= NULL
;
606 context
->waiters
= NULL
;
608 context
->ref_count
= 1;
610 context
->next_id
= 1;
612 context
->source_lists
= NULL
;
614 context
->poll_func
= g_poll
;
616 context
->cached_poll_array
= NULL
;
617 context
->cached_poll_array_size
= 0;
619 context
->pending_dispatches
= g_ptr_array_new ();
621 context
->time_is_fresh
= FALSE
;
623 context
->wakeup
= g_wakeup_new ();
624 g_wakeup_get_pollfd (context
->wakeup
, &context
->wake_up_rec
);
625 g_main_context_add_poll_unlocked (context
, 0, &context
->wake_up_rec
);
627 G_LOCK (main_context_list
);
628 main_context_list
= g_slist_append (main_context_list
, context
);
630 #ifdef G_MAIN_POLL_DEBUG
631 if (_g_main_poll_debug
)
632 g_print ("created context=%p\n", context
);
635 G_UNLOCK (main_context_list
);
641 * g_main_context_default:
643 * Returns the global default main context. This is the main context
644 * used for main loop functions when a main loop is not explicitly
645 * specified, and corresponds to the "main" main loop. See also
646 * g_main_context_get_thread_default().
648 * Returns: (transfer none): the global default main context.
651 g_main_context_default (void)
657 if (!default_main_context
)
659 default_main_context
= g_main_context_new ();
660 #ifdef G_MAIN_POLL_DEBUG
661 if (_g_main_poll_debug
)
662 g_print ("default context=%p\n", default_main_context
);
666 G_UNLOCK (main_loop
);
668 return default_main_context
;
672 free_context (gpointer data
)
674 GMainContext
*context
= data
;
676 g_main_context_release (context
);
678 g_main_context_unref (context
);
682 free_context_stack (gpointer data
)
684 g_queue_free_full((GQueue
*) data
, (GDestroyNotify
) free_context
);
687 static GPrivate thread_context_stack
= G_PRIVATE_INIT (free_context_stack
);
690 * g_main_context_push_thread_default:
691 * @context: (allow-none): a #GMainContext, or %NULL for the global default context
693 * Acquires @context and sets it as the thread-default context for the
694 * current thread. This will cause certain asynchronous operations
695 * (such as most [gio][gio]-based I/O) which are
696 * started in this thread to run under @context and deliver their
697 * results to its main loop, rather than running under the global
698 * default context in the main thread. Note that calling this function
699 * changes the context returned by g_main_context_get_thread_default(),
700 * not the one returned by g_main_context_default(), so it does not affect
701 * the context used by functions like g_idle_add().
703 * Normally you would call this function shortly after creating a new
704 * thread, passing it a #GMainContext which will be run by a
705 * #GMainLoop in that thread, to set a new default context for all
706 * async operations in that thread. (In this case, you don't need to
707 * ever call g_main_context_pop_thread_default().) In some cases
708 * however, you may want to schedule a single operation in a
709 * non-default context, or temporarily use a non-default context in
710 * the main thread. In that case, you can wrap the call to the
711 * asynchronous operation inside a
712 * g_main_context_push_thread_default() /
713 * g_main_context_pop_thread_default() pair, but it is up to you to
714 * ensure that no other asynchronous operations accidentally get
715 * started while the non-default context is active.
717 * Beware that libraries that predate this function may not correctly
718 * handle being used from a thread with a thread-default context. Eg,
719 * see g_file_supports_thread_contexts().
724 g_main_context_push_thread_default (GMainContext
*context
)
727 gboolean acquired_context
;
729 acquired_context
= g_main_context_acquire (context
);
730 g_return_if_fail (acquired_context
);
732 if (context
== g_main_context_default ())
735 g_main_context_ref (context
);
737 stack
= g_private_get (&thread_context_stack
);
740 stack
= g_queue_new ();
741 g_private_set (&thread_context_stack
, stack
);
744 g_queue_push_head (stack
, context
);
748 * g_main_context_pop_thread_default:
749 * @context: (allow-none): a #GMainContext object, or %NULL
751 * Pops @context off the thread-default context stack (verifying that
752 * it was on the top of the stack).
757 g_main_context_pop_thread_default (GMainContext
*context
)
761 if (context
== g_main_context_default ())
764 stack
= g_private_get (&thread_context_stack
);
766 g_return_if_fail (stack
!= NULL
);
767 g_return_if_fail (g_queue_peek_head (stack
) == context
);
769 g_queue_pop_head (stack
);
771 g_main_context_release (context
);
773 g_main_context_unref (context
);
777 * g_main_context_get_thread_default:
779 * Gets the thread-default #GMainContext for this thread. Asynchronous
780 * operations that want to be able to be run in contexts other than
781 * the default one should call this method or
782 * g_main_context_ref_thread_default() to get a #GMainContext to add
783 * their #GSources to. (Note that even in single-threaded
784 * programs applications may sometimes want to temporarily push a
785 * non-default context, so it is not safe to assume that this will
786 * always return %NULL if you are running in the default thread.)
788 * If you need to hold a reference on the context, use
789 * g_main_context_ref_thread_default() instead.
791 * Returns: (transfer none): the thread-default #GMainContext, or
792 * %NULL if the thread-default context is the global default context.
797 g_main_context_get_thread_default (void)
801 stack
= g_private_get (&thread_context_stack
);
803 return g_queue_peek_head (stack
);
809 * g_main_context_ref_thread_default:
811 * Gets the thread-default #GMainContext for this thread, as with
812 * g_main_context_get_thread_default(), but also adds a reference to
813 * it with g_main_context_ref(). In addition, unlike
814 * g_main_context_get_thread_default(), if the thread-default context
815 * is the global default context, this will return that #GMainContext
816 * (with a ref added to it) rather than returning %NULL.
818 * Returns: (transfer full): the thread-default #GMainContext. Unref
819 * with g_main_context_unref() when you are done with it.
824 g_main_context_ref_thread_default (void)
826 GMainContext
*context
;
828 context
= g_main_context_get_thread_default ();
830 context
= g_main_context_default ();
831 return g_main_context_ref (context
);
834 /* Hooks for adding to the main loop */
838 * @source_funcs: structure containing functions that implement
839 * the sources behavior.
840 * @struct_size: size of the #GSource structure to create.
842 * Creates a new #GSource structure. The size is specified to
843 * allow creating structures derived from #GSource that contain
844 * additional data. The size passed in must be at least
845 * `sizeof (GSource)`.
847 * The source will not initially be associated with any #GMainContext
848 * and must be added to one with g_source_attach() before it will be
851 * Returns: the newly-created #GSource.
854 g_source_new (GSourceFuncs
*source_funcs
,
859 g_return_val_if_fail (source_funcs
!= NULL
, NULL
);
860 g_return_val_if_fail (struct_size
>= sizeof (GSource
), NULL
);
862 source
= (GSource
*) g_malloc0 (struct_size
);
863 source
->priv
= g_slice_new0 (GSourcePrivate
);
864 source
->source_funcs
= source_funcs
;
865 source
->ref_count
= 1;
867 source
->priority
= G_PRIORITY_DEFAULT
;
869 source
->flags
= G_HOOK_FLAG_ACTIVE
;
871 source
->priv
->ready_time
= -1;
873 /* NULL/0 initialization for all other fields */
878 /* Holds context's lock */
880 g_source_iter_init (GSourceIter
*iter
,
881 GMainContext
*context
,
884 iter
->context
= context
;
885 iter
->current_list
= NULL
;
887 iter
->may_modify
= may_modify
;
890 /* Holds context's lock */
892 g_source_iter_next (GSourceIter
*iter
, GSource
**source
)
894 GSource
*next_source
;
897 next_source
= iter
->source
->next
;
903 if (iter
->current_list
)
904 iter
->current_list
= iter
->current_list
->next
;
906 iter
->current_list
= iter
->context
->source_lists
;
908 if (iter
->current_list
)
910 GSourceList
*source_list
= iter
->current_list
->data
;
912 next_source
= source_list
->head
;
916 /* Note: unreffing iter->source could potentially cause its
917 * GSourceList to be removed from source_lists (if iter->source is
918 * the only source in its list, and it is destroyed), so we have to
919 * keep it reffed until after we advance iter->current_list, above.
922 if (iter
->source
&& iter
->may_modify
)
923 SOURCE_UNREF (iter
->source
, iter
->context
);
924 iter
->source
= next_source
;
925 if (iter
->source
&& iter
->may_modify
)
926 iter
->source
->ref_count
++;
928 *source
= iter
->source
;
929 return *source
!= NULL
;
932 /* Holds context's lock. Only necessary to call if you broke out of
933 * the g_source_iter_next() loop early.
936 g_source_iter_clear (GSourceIter
*iter
)
938 if (iter
->source
&& iter
->may_modify
)
940 SOURCE_UNREF (iter
->source
, iter
->context
);
945 /* Holds context's lock
948 find_source_list_for_priority (GMainContext
*context
,
953 GSourceList
*source_list
;
956 for (iter
= context
->source_lists
; iter
!= NULL
; last
= iter
, iter
= iter
->next
)
958 source_list
= iter
->data
;
960 if (source_list
->priority
== priority
)
963 if (source_list
->priority
> priority
)
968 source_list
= g_slice_new0 (GSourceList
);
969 source_list
->priority
= priority
;
970 context
->source_lists
= g_list_insert_before (context
->source_lists
,
980 source_list
= g_slice_new0 (GSourceList
);
981 source_list
->priority
= priority
;
984 context
->source_lists
= g_list_append (NULL
, source_list
);
987 /* This just appends source_list to the end of
988 * context->source_lists without having to walk the list again.
990 last
= g_list_append (last
, source_list
);
995 /* Holds context's lock
998 source_add_to_context (GSource
*source
,
999 GMainContext
*context
)
1001 GSourceList
*source_list
;
1002 GSource
*prev
, *next
;
1004 source_list
= find_source_list_for_priority (context
, source
->priority
, TRUE
);
1006 if (source
->priv
->parent_source
)
1008 g_assert (source_list
->head
!= NULL
);
1010 /* Put the source immediately before its parent */
1011 prev
= source
->priv
->parent_source
->prev
;
1012 next
= source
->priv
->parent_source
;
1016 prev
= source_list
->tail
;
1020 source
->next
= next
;
1022 next
->prev
= source
;
1024 source_list
->tail
= source
;
1026 source
->prev
= prev
;
1028 prev
->next
= source
;
1030 source_list
->head
= source
;
1033 /* Holds context's lock
1036 source_remove_from_context (GSource
*source
,
1037 GMainContext
*context
)
1039 GSourceList
*source_list
;
1041 source_list
= find_source_list_for_priority (context
, source
->priority
, FALSE
);
1042 g_return_if_fail (source_list
!= NULL
);
1045 source
->prev
->next
= source
->next
;
1047 source_list
->head
= source
->next
;
1050 source
->next
->prev
= source
->prev
;
1052 source_list
->tail
= source
->prev
;
1054 source
->prev
= NULL
;
1055 source
->next
= NULL
;
1057 if (source_list
->head
== NULL
)
1059 context
->source_lists
= g_list_remove (context
->source_lists
, source_list
);
1060 g_slice_free (GSourceList
, source_list
);
1063 if (context
->overflow_used_source_ids
)
1064 g_hash_table_remove (context
->overflow_used_source_ids
,
1065 GUINT_TO_POINTER (source
->source_id
));
1070 assign_source_id_unlocked (GMainContext
*context
,
1075 /* Are we about to overflow back to 0?
1076 * See https://bugzilla.gnome.org/show_bug.cgi?id=687098
1078 if (G_UNLIKELY (context
->next_id
== G_MAXUINT
&&
1079 context
->overflow_used_source_ids
== NULL
))
1084 context
->overflow_used_source_ids
= g_hash_table_new (NULL
, NULL
);
1086 g_source_iter_init (&iter
, context
, FALSE
);
1087 while (g_source_iter_next (&iter
, &source
))
1089 g_hash_table_add (context
->overflow_used_source_ids
,
1090 GUINT_TO_POINTER (source
->source_id
));
1093 g_hash_table_add (context
->overflow_used_source_ids
, GUINT_TO_POINTER (id
));
1095 else if (context
->overflow_used_source_ids
== NULL
)
1097 id
= context
->next_id
++;
1102 * If we overran G_MAXUINT, we fall back to randomly probing the
1103 * source ids for the current context. This will be slower the more
1104 * sources there are, but we're mainly concerned right now about
1105 * correctness and code size. There's time for a more clever solution
1109 id
= g_random_int ();
1111 g_hash_table_contains (context
->overflow_used_source_ids
,
1112 GUINT_TO_POINTER (id
)));
1113 g_hash_table_add (context
->overflow_used_source_ids
, GUINT_TO_POINTER (id
));
1116 source
->source_id
= id
;
1120 g_source_attach_unlocked (GSource
*source
,
1121 GMainContext
*context
,
1126 source
->context
= context
;
1127 assign_source_id_unlocked (context
, source
);
1128 source
->ref_count
++;
1129 source_add_to_context (source
, context
);
1131 if (!SOURCE_BLOCKED (source
))
1133 tmp_list
= source
->poll_fds
;
1136 g_main_context_add_poll_unlocked (context
, source
->priority
, tmp_list
->data
);
1137 tmp_list
= tmp_list
->next
;
1140 for (tmp_list
= source
->priv
->fds
; tmp_list
; tmp_list
= tmp_list
->next
)
1141 g_main_context_add_poll_unlocked (context
, source
->priority
, tmp_list
->data
);
1144 tmp_list
= source
->priv
->child_sources
;
1147 g_source_attach_unlocked (tmp_list
->data
, context
, FALSE
);
1148 tmp_list
= tmp_list
->next
;
1151 /* If another thread has acquired the context, wake it up since it
1152 * might be in poll() right now.
1154 if (do_wakeup
&& context
->owner
&& context
->owner
!= G_THREAD_SELF
)
1155 g_wakeup_signal (context
->wakeup
);
1157 return source
->source_id
;
1162 * @source: a #GSource
1163 * @context: (allow-none): a #GMainContext (if %NULL, the default context will be used)
1165 * Adds a #GSource to a @context so that it will be executed within
1166 * that context. Remove it by calling g_source_destroy().
1168 * Returns: the ID (greater than 0) for the source within the
1172 g_source_attach (GSource
*source
,
1173 GMainContext
*context
)
1177 g_return_val_if_fail (source
->context
== NULL
, 0);
1178 g_return_val_if_fail (!SOURCE_DESTROYED (source
), 0);
1180 TRACE (GLIB_MAIN_SOURCE_ATTACH (g_source_get_name (source
)));
1183 context
= g_main_context_default ();
1185 LOCK_CONTEXT (context
);
1187 result
= g_source_attach_unlocked (source
, context
, TRUE
);
1189 UNLOCK_CONTEXT (context
);
1195 g_source_destroy_internal (GSource
*source
,
1196 GMainContext
*context
,
1199 TRACE (GLIB_MAIN_SOURCE_DESTROY (g_source_get_name (source
)));
1202 LOCK_CONTEXT (context
);
1204 if (!SOURCE_DESTROYED (source
))
1207 gpointer old_cb_data
;
1208 GSourceCallbackFuncs
*old_cb_funcs
;
1210 source
->flags
&= ~G_HOOK_FLAG_ACTIVE
;
1212 old_cb_data
= source
->callback_data
;
1213 old_cb_funcs
= source
->callback_funcs
;
1215 source
->callback_data
= NULL
;
1216 source
->callback_funcs
= NULL
;
1220 UNLOCK_CONTEXT (context
);
1221 old_cb_funcs
->unref (old_cb_data
);
1222 LOCK_CONTEXT (context
);
1225 if (!SOURCE_BLOCKED (source
))
1227 tmp_list
= source
->poll_fds
;
1230 g_main_context_remove_poll_unlocked (context
, tmp_list
->data
);
1231 tmp_list
= tmp_list
->next
;
1234 for (tmp_list
= source
->priv
->fds
; tmp_list
; tmp_list
= tmp_list
->next
)
1235 g_main_context_remove_poll_unlocked (context
, tmp_list
->data
);
1238 while (source
->priv
->child_sources
)
1239 g_child_source_remove_internal (source
->priv
->child_sources
->data
, context
);
1241 if (source
->priv
->parent_source
)
1242 g_child_source_remove_internal (source
, context
);
1244 g_source_unref_internal (source
, context
, TRUE
);
1248 UNLOCK_CONTEXT (context
);
1253 * @source: a #GSource
1255 * Removes a source from its #GMainContext, if any, and mark it as
1256 * destroyed. The source cannot be subsequently added to another
1257 * context. It is safe to call this on sources which have already been
1258 * removed from their context.
1261 g_source_destroy (GSource
*source
)
1263 GMainContext
*context
;
1265 g_return_if_fail (source
!= NULL
);
1267 context
= source
->context
;
1270 g_source_destroy_internal (source
, context
, FALSE
);
1272 source
->flags
&= ~G_HOOK_FLAG_ACTIVE
;
1277 * @source: a #GSource
1279 * Returns the numeric ID for a particular source. The ID of a source
1280 * is a positive integer which is unique within a particular main loop
1281 * context. The reverse
1282 * mapping from ID to source is done by g_main_context_find_source_by_id().
1284 * Returns: the ID (greater than 0) for the source
1287 g_source_get_id (GSource
*source
)
1291 g_return_val_if_fail (source
!= NULL
, 0);
1292 g_return_val_if_fail (source
->context
!= NULL
, 0);
1294 LOCK_CONTEXT (source
->context
);
1295 result
= source
->source_id
;
1296 UNLOCK_CONTEXT (source
->context
);
1302 * g_source_get_context:
1303 * @source: a #GSource
1305 * Gets the #GMainContext with which the source is associated.
1307 * You can call this on a source that has been destroyed, provided
1308 * that the #GMainContext it was attached to still exists (in which
1309 * case it will return that #GMainContext). In particular, you can
1310 * always call this function on the source returned from
1311 * g_main_current_source(). But calling this function on a source
1312 * whose #GMainContext has been destroyed is an error.
1314 * Returns: (transfer none) (allow-none): the #GMainContext with which the
1315 * source is associated, or %NULL if the context has not
1316 * yet been added to a source.
1319 g_source_get_context (GSource
*source
)
1321 g_return_val_if_fail (source
->context
!= NULL
|| !SOURCE_DESTROYED (source
), NULL
);
1323 return source
->context
;
1327 * g_source_add_poll:
1328 * @source:a #GSource
1329 * @fd: a #GPollFD structure holding information about a file
1330 * descriptor to watch.
1332 * Adds a file descriptor to the set of file descriptors polled for
1333 * this source. This is usually combined with g_source_new() to add an
1334 * event source. The event source's check function will typically test
1335 * the @revents field in the #GPollFD struct and return %TRUE if events need
1338 * Using this API forces the linear scanning of event sources on each
1339 * main loop iteration. Newly-written event sources should try to use
1340 * g_source_add_unix_fd() instead of this API.
1343 g_source_add_poll (GSource
*source
,
1346 GMainContext
*context
;
1348 g_return_if_fail (source
!= NULL
);
1349 g_return_if_fail (fd
!= NULL
);
1350 g_return_if_fail (!SOURCE_DESTROYED (source
));
1352 context
= source
->context
;
1355 LOCK_CONTEXT (context
);
1357 source
->poll_fds
= g_slist_prepend (source
->poll_fds
, fd
);
1361 if (!SOURCE_BLOCKED (source
))
1362 g_main_context_add_poll_unlocked (context
, source
->priority
, fd
);
1363 UNLOCK_CONTEXT (context
);
1368 * g_source_remove_poll:
1369 * @source:a #GSource
1370 * @fd: a #GPollFD structure previously passed to g_source_add_poll().
1372 * Removes a file descriptor from the set of file descriptors polled for
1376 g_source_remove_poll (GSource
*source
,
1379 GMainContext
*context
;
1381 g_return_if_fail (source
!= NULL
);
1382 g_return_if_fail (fd
!= NULL
);
1383 g_return_if_fail (!SOURCE_DESTROYED (source
));
1385 context
= source
->context
;
1388 LOCK_CONTEXT (context
);
1390 source
->poll_fds
= g_slist_remove (source
->poll_fds
, fd
);
1394 if (!SOURCE_BLOCKED (source
))
1395 g_main_context_remove_poll_unlocked (context
, fd
);
1396 UNLOCK_CONTEXT (context
);
1401 * g_source_add_child_source:
1402 * @source:a #GSource
1403 * @child_source: a second #GSource that @source should "poll"
1405 * Adds @child_source to @source as a "polled" source; when @source is
1406 * added to a #GMainContext, @child_source will be automatically added
1407 * with the same priority, when @child_source is triggered, it will
1408 * cause @source to dispatch (in addition to calling its own
1409 * callback), and when @source is destroyed, it will destroy
1410 * @child_source as well. (@source will also still be dispatched if
1411 * its own prepare/check functions indicate that it is ready.)
1413 * If you don't need @child_source to do anything on its own when it
1414 * triggers, you can call g_source_set_dummy_callback() on it to set a
1415 * callback that does nothing (except return %TRUE if appropriate).
1417 * @source will hold a reference on @child_source while @child_source
1418 * is attached to it.
1423 g_source_add_child_source (GSource
*source
,
1424 GSource
*child_source
)
1426 GMainContext
*context
;
1428 g_return_if_fail (source
!= NULL
);
1429 g_return_if_fail (child_source
!= NULL
);
1430 g_return_if_fail (!SOURCE_DESTROYED (source
));
1431 g_return_if_fail (!SOURCE_DESTROYED (child_source
));
1432 g_return_if_fail (child_source
->context
== NULL
);
1433 g_return_if_fail (child_source
->priv
->parent_source
== NULL
);
1435 context
= source
->context
;
1438 LOCK_CONTEXT (context
);
1440 source
->priv
->child_sources
= g_slist_prepend (source
->priv
->child_sources
,
1441 g_source_ref (child_source
));
1442 child_source
->priv
->parent_source
= source
;
1443 g_source_set_priority_unlocked (child_source
, NULL
, source
->priority
);
1444 if (SOURCE_BLOCKED (source
))
1445 block_source (child_source
);
1449 g_source_attach_unlocked (child_source
, context
, TRUE
);
1450 UNLOCK_CONTEXT (context
);
1455 g_child_source_remove_internal (GSource
*child_source
,
1456 GMainContext
*context
)
1458 GSource
*parent_source
= child_source
->priv
->parent_source
;
1460 parent_source
->priv
->child_sources
=
1461 g_slist_remove (parent_source
->priv
->child_sources
, child_source
);
1462 child_source
->priv
->parent_source
= NULL
;
1464 g_source_destroy_internal (child_source
, context
, TRUE
);
1465 g_source_unref_internal (child_source
, context
, TRUE
);
1469 * g_source_remove_child_source:
1470 * @source:a #GSource
1471 * @child_source: a #GSource previously passed to
1472 * g_source_add_child_source().
1474 * Detaches @child_source from @source and destroys it.
1479 g_source_remove_child_source (GSource
*source
,
1480 GSource
*child_source
)
1482 GMainContext
*context
;
1484 g_return_if_fail (source
!= NULL
);
1485 g_return_if_fail (child_source
!= NULL
);
1486 g_return_if_fail (child_source
->priv
->parent_source
== source
);
1487 g_return_if_fail (!SOURCE_DESTROYED (source
));
1488 g_return_if_fail (!SOURCE_DESTROYED (child_source
));
1490 context
= source
->context
;
1493 LOCK_CONTEXT (context
);
1495 g_child_source_remove_internal (child_source
, context
);
1498 UNLOCK_CONTEXT (context
);
1502 * g_source_set_callback_indirect:
1503 * @source: the source
1504 * @callback_data: pointer to callback data "object"
1505 * @callback_funcs: functions for reference counting @callback_data
1506 * and getting the callback and data
1508 * Sets the callback function storing the data as a refcounted callback
1509 * "object". This is used internally. Note that calling
1510 * g_source_set_callback_indirect() assumes
1511 * an initial reference count on @callback_data, and thus
1512 * @callback_funcs->unref will eventually be called once more
1513 * than @callback_funcs->ref.
1516 g_source_set_callback_indirect (GSource
*source
,
1517 gpointer callback_data
,
1518 GSourceCallbackFuncs
*callback_funcs
)
1520 GMainContext
*context
;
1521 gpointer old_cb_data
;
1522 GSourceCallbackFuncs
*old_cb_funcs
;
1524 g_return_if_fail (source
!= NULL
);
1525 g_return_if_fail (callback_funcs
!= NULL
|| callback_data
== NULL
);
1527 context
= source
->context
;
1530 LOCK_CONTEXT (context
);
1532 old_cb_data
= source
->callback_data
;
1533 old_cb_funcs
= source
->callback_funcs
;
1535 source
->callback_data
= callback_data
;
1536 source
->callback_funcs
= callback_funcs
;
1539 UNLOCK_CONTEXT (context
);
1542 old_cb_funcs
->unref (old_cb_data
);
1546 g_source_callback_ref (gpointer cb_data
)
1548 GSourceCallback
*callback
= cb_data
;
1550 callback
->ref_count
++;
1555 g_source_callback_unref (gpointer cb_data
)
1557 GSourceCallback
*callback
= cb_data
;
1559 callback
->ref_count
--;
1560 if (callback
->ref_count
== 0)
1562 if (callback
->notify
)
1563 callback
->notify (callback
->data
);
1569 g_source_callback_get (gpointer cb_data
,
1574 GSourceCallback
*callback
= cb_data
;
1576 *func
= callback
->func
;
1577 *data
= callback
->data
;
1580 static GSourceCallbackFuncs g_source_callback_funcs
= {
1581 g_source_callback_ref
,
1582 g_source_callback_unref
,
1583 g_source_callback_get
,
1587 * g_source_set_callback:
1588 * @source: the source
1589 * @func: a callback function
1590 * @data: the data to pass to callback function
1591 * @notify: (allow-none): a function to call when @data is no longer in use, or %NULL.
1593 * Sets the callback function for a source. The callback for a source is
1594 * called from the source's dispatch function.
1596 * The exact type of @func depends on the type of source; ie. you
1597 * should not count on @func being called with @data as its first
1600 * Typically, you won't use this function. Instead use functions specific
1601 * to the type of source you are using.
1604 g_source_set_callback (GSource
*source
,
1607 GDestroyNotify notify
)
1609 GSourceCallback
*new_callback
;
1611 g_return_if_fail (source
!= NULL
);
1613 new_callback
= g_new (GSourceCallback
, 1);
1615 new_callback
->ref_count
= 1;
1616 new_callback
->func
= func
;
1617 new_callback
->data
= data
;
1618 new_callback
->notify
= notify
;
1620 g_source_set_callback_indirect (source
, new_callback
, &g_source_callback_funcs
);
1625 * g_source_set_funcs:
1626 * @source: a #GSource
1627 * @funcs: the new #GSourceFuncs
1629 * Sets the source functions (can be used to override
1630 * default implementations) of an unattached source.
1635 g_source_set_funcs (GSource
*source
,
1636 GSourceFuncs
*funcs
)
1638 g_return_if_fail (source
!= NULL
);
1639 g_return_if_fail (source
->context
== NULL
);
1640 g_return_if_fail (source
->ref_count
> 0);
1641 g_return_if_fail (funcs
!= NULL
);
1643 source
->source_funcs
= funcs
;
1647 g_source_set_priority_unlocked (GSource
*source
,
1648 GMainContext
*context
,
1653 g_return_if_fail (source
->priv
->parent_source
== NULL
||
1654 source
->priv
->parent_source
->priority
== priority
);
1658 /* Remove the source from the context's source and then
1659 * add it back after so it is sorted in the correct place
1661 source_remove_from_context (source
, source
->context
);
1664 source
->priority
= priority
;
1668 source_add_to_context (source
, source
->context
);
1670 if (!SOURCE_BLOCKED (source
))
1672 tmp_list
= source
->poll_fds
;
1675 g_main_context_remove_poll_unlocked (context
, tmp_list
->data
);
1676 g_main_context_add_poll_unlocked (context
, priority
, tmp_list
->data
);
1678 tmp_list
= tmp_list
->next
;
1681 for (tmp_list
= source
->priv
->fds
; tmp_list
; tmp_list
= tmp_list
->next
)
1683 g_main_context_remove_poll_unlocked (context
, tmp_list
->data
);
1684 g_main_context_add_poll_unlocked (context
, priority
, tmp_list
->data
);
1689 if (source
->priv
->child_sources
)
1691 tmp_list
= source
->priv
->child_sources
;
1694 g_source_set_priority_unlocked (tmp_list
->data
, context
, priority
);
1695 tmp_list
= tmp_list
->next
;
1701 * g_source_set_priority:
1702 * @source: a #GSource
1703 * @priority: the new priority.
1705 * Sets the priority of a source. While the main loop is being run, a
1706 * source will be dispatched if it is ready to be dispatched and no
1707 * sources at a higher (numerically smaller) priority are ready to be
1710 * A child source always has the same priority as its parent. It is not
1711 * permitted to change the priority of a source once it has been added
1712 * as a child of another source.
1715 g_source_set_priority (GSource
*source
,
1718 GMainContext
*context
;
1720 g_return_if_fail (source
!= NULL
);
1721 g_return_if_fail (source
->priv
->parent_source
== NULL
);
1723 context
= source
->context
;
1726 LOCK_CONTEXT (context
);
1727 g_source_set_priority_unlocked (source
, context
, priority
);
1729 UNLOCK_CONTEXT (source
->context
);
1733 * g_source_get_priority:
1734 * @source: a #GSource
1736 * Gets the priority of a source.
1738 * Returns: the priority of the source
1741 g_source_get_priority (GSource
*source
)
1743 g_return_val_if_fail (source
!= NULL
, 0);
1745 return source
->priority
;
1749 * g_source_set_ready_time:
1750 * @source: a #GSource
1751 * @ready_time: the monotonic time at which the source will be ready,
1752 * 0 for "immediately", -1 for "never"
1754 * Sets a #GSource to be dispatched when the given monotonic time is
1755 * reached (or passed). If the monotonic time is in the past (as it
1756 * always will be if @ready_time is 0) then the source will be
1757 * dispatched immediately.
1759 * If @ready_time is -1 then the source is never woken up on the basis
1760 * of the passage of time.
1762 * Dispatching the source does not reset the ready time. You should do
1763 * so yourself, from the source dispatch function.
1765 * Note that if you have a pair of sources where the ready time of one
1766 * suggests that it will be delivered first but the priority for the
1767 * other suggests that it would be delivered first, and the ready time
1768 * for both sources is reached during the same main context iteration
1769 * then the order of dispatch is undefined.
1774 g_source_set_ready_time (GSource
*source
,
1777 GMainContext
*context
;
1779 g_return_if_fail (source
!= NULL
);
1780 g_return_if_fail (source
->ref_count
> 0);
1782 if (source
->priv
->ready_time
== ready_time
)
1785 context
= source
->context
;
1788 LOCK_CONTEXT (context
);
1790 source
->priv
->ready_time
= ready_time
;
1794 /* Quite likely that we need to change the timeout on the poll */
1795 if (!SOURCE_BLOCKED (source
))
1796 g_wakeup_signal (context
->wakeup
);
1797 UNLOCK_CONTEXT (context
);
1802 * g_source_get_ready_time:
1803 * @source: a #GSource
1805 * Gets the "ready time" of @source, as set by
1806 * g_source_set_ready_time().
1808 * Any time before the current monotonic time (including 0) is an
1809 * indication that the source will fire immediately.
1811 * Returns: the monotonic ready time, -1 for "never"
1814 g_source_get_ready_time (GSource
*source
)
1816 g_return_val_if_fail (source
!= NULL
, -1);
1818 return source
->priv
->ready_time
;
1822 * g_source_set_can_recurse:
1823 * @source: a #GSource
1824 * @can_recurse: whether recursion is allowed for this source
1826 * Sets whether a source can be called recursively. If @can_recurse is
1827 * %TRUE, then while the source is being dispatched then this source
1828 * will be processed normally. Otherwise, all processing of this
1829 * source is blocked until the dispatch function returns.
1832 g_source_set_can_recurse (GSource
*source
,
1833 gboolean can_recurse
)
1835 GMainContext
*context
;
1837 g_return_if_fail (source
!= NULL
);
1839 context
= source
->context
;
1842 LOCK_CONTEXT (context
);
1845 source
->flags
|= G_SOURCE_CAN_RECURSE
;
1847 source
->flags
&= ~G_SOURCE_CAN_RECURSE
;
1850 UNLOCK_CONTEXT (context
);
1854 * g_source_get_can_recurse:
1855 * @source: a #GSource
1857 * Checks whether a source is allowed to be called recursively.
1858 * see g_source_set_can_recurse().
1860 * Returns: whether recursion is allowed.
1863 g_source_get_can_recurse (GSource
*source
)
1865 g_return_val_if_fail (source
!= NULL
, FALSE
);
1867 return (source
->flags
& G_SOURCE_CAN_RECURSE
) != 0;
1872 * g_source_set_name:
1873 * @source: a #GSource
1874 * @name: debug name for the source
1876 * Sets a name for the source, used in debugging and profiling.
1877 * The name defaults to #NULL.
1879 * The source name should describe in a human-readable way
1880 * what the source does. For example, "X11 event queue"
1881 * or "GTK+ repaint idle handler" or whatever it is.
1883 * It is permitted to call this function multiple times, but is not
1884 * recommended due to the potential performance impact. For example,
1885 * one could change the name in the "check" function of a #GSourceFuncs
1886 * to include details like the event type in the source name.
1891 g_source_set_name (GSource
*source
,
1894 g_return_if_fail (source
!= NULL
);
1896 /* setting back to NULL is allowed, just because it's
1897 * weird if get_name can return NULL but you can't
1901 g_free (source
->name
);
1902 source
->name
= g_strdup (name
);
1906 * g_source_get_name:
1907 * @source: a #GSource
1909 * Gets a name for the source, used in debugging and profiling.
1910 * The name may be #NULL if it has never been set with
1911 * g_source_set_name().
1913 * Returns: the name of the source
1917 g_source_get_name (GSource
*source
)
1919 g_return_val_if_fail (source
!= NULL
, NULL
);
1921 return source
->name
;
1925 * g_source_set_name_by_id:
1926 * @tag: a #GSource ID
1927 * @name: debug name for the source
1929 * Sets the name of a source using its ID.
1931 * This is a convenience utility to set source names from the return
1932 * value of g_idle_add(), g_timeout_add(), etc.
1937 g_source_set_name_by_id (guint tag
,
1942 g_return_if_fail (tag
> 0);
1944 source
= g_main_context_find_source_by_id (NULL
, tag
);
1948 g_source_set_name (source
, name
);
1954 * @source: a #GSource
1956 * Increases the reference count on a source by one.
1961 g_source_ref (GSource
*source
)
1963 GMainContext
*context
;
1965 g_return_val_if_fail (source
!= NULL
, NULL
);
1967 context
= source
->context
;
1970 LOCK_CONTEXT (context
);
1972 source
->ref_count
++;
1975 UNLOCK_CONTEXT (context
);
1980 /* g_source_unref() but possible to call within context lock
1983 g_source_unref_internal (GSource
*source
,
1984 GMainContext
*context
,
1987 gpointer old_cb_data
= NULL
;
1988 GSourceCallbackFuncs
*old_cb_funcs
= NULL
;
1990 g_return_if_fail (source
!= NULL
);
1992 if (!have_lock
&& context
)
1993 LOCK_CONTEXT (context
);
1995 source
->ref_count
--;
1996 if (source
->ref_count
== 0)
1998 old_cb_data
= source
->callback_data
;
1999 old_cb_funcs
= source
->callback_funcs
;
2001 source
->callback_data
= NULL
;
2002 source
->callback_funcs
= NULL
;
2006 if (!SOURCE_DESTROYED (source
))
2007 g_warning (G_STRLOC
": ref_count == 0, but source was still attached to a context!");
2008 source_remove_from_context (source
, context
);
2011 if (source
->source_funcs
->finalize
)
2014 UNLOCK_CONTEXT (context
);
2015 source
->source_funcs
->finalize (source
);
2017 LOCK_CONTEXT (context
);
2020 g_free (source
->name
);
2021 source
->name
= NULL
;
2023 g_slist_free (source
->poll_fds
);
2024 source
->poll_fds
= NULL
;
2026 g_slist_free_full (source
->priv
->fds
, g_free
);
2028 g_slice_free (GSourcePrivate
, source
->priv
);
2029 source
->priv
= NULL
;
2034 if (!have_lock
&& context
)
2035 UNLOCK_CONTEXT (context
);
2040 UNLOCK_CONTEXT (context
);
2042 old_cb_funcs
->unref (old_cb_data
);
2045 LOCK_CONTEXT (context
);
2051 * @source: a #GSource
2053 * Decreases the reference count of a source by one. If the
2054 * resulting reference count is zero the source and associated
2055 * memory will be destroyed.
2058 g_source_unref (GSource
*source
)
2060 g_return_if_fail (source
!= NULL
);
2062 g_source_unref_internal (source
, source
->context
, FALSE
);
2066 * g_main_context_find_source_by_id:
2067 * @context: (allow-none): a #GMainContext (if %NULL, the default context will be used)
2068 * @source_id: the source ID, as returned by g_source_get_id().
2070 * Finds a #GSource given a pair of context and ID.
2072 * Returns: (transfer none): the #GSource if found, otherwise, %NULL
2075 g_main_context_find_source_by_id (GMainContext
*context
,
2081 g_return_val_if_fail (source_id
> 0, NULL
);
2083 if (context
== NULL
)
2084 context
= g_main_context_default ();
2086 LOCK_CONTEXT (context
);
2088 g_source_iter_init (&iter
, context
, FALSE
);
2089 while (g_source_iter_next (&iter
, &source
))
2091 if (!SOURCE_DESTROYED (source
) &&
2092 source
->source_id
== source_id
)
2095 g_source_iter_clear (&iter
);
2097 UNLOCK_CONTEXT (context
);
2103 * g_main_context_find_source_by_funcs_user_data:
2104 * @context: (allow-none): a #GMainContext (if %NULL, the default context will be used).
2105 * @funcs: the @source_funcs passed to g_source_new().
2106 * @user_data: the user data from the callback.
2108 * Finds a source with the given source functions and user data. If
2109 * multiple sources exist with the same source function and user data,
2110 * the first one found will be returned.
2112 * Returns: (transfer none): the source, if one was found, otherwise %NULL
2115 g_main_context_find_source_by_funcs_user_data (GMainContext
*context
,
2116 GSourceFuncs
*funcs
,
2122 g_return_val_if_fail (funcs
!= NULL
, NULL
);
2124 if (context
== NULL
)
2125 context
= g_main_context_default ();
2127 LOCK_CONTEXT (context
);
2129 g_source_iter_init (&iter
, context
, FALSE
);
2130 while (g_source_iter_next (&iter
, &source
))
2132 if (!SOURCE_DESTROYED (source
) &&
2133 source
->source_funcs
== funcs
&&
2134 source
->callback_funcs
)
2136 GSourceFunc callback
;
2137 gpointer callback_data
;
2139 source
->callback_funcs
->get (source
->callback_data
, source
, &callback
, &callback_data
);
2141 if (callback_data
== user_data
)
2145 g_source_iter_clear (&iter
);
2147 UNLOCK_CONTEXT (context
);
2153 * g_main_context_find_source_by_user_data:
2154 * @context: a #GMainContext
2155 * @user_data: the user_data for the callback.
2157 * Finds a source with the given user data for the callback. If
2158 * multiple sources exist with the same user data, the first
2159 * one found will be returned.
2161 * Returns: (transfer none): the source, if one was found, otherwise %NULL
2164 g_main_context_find_source_by_user_data (GMainContext
*context
,
2170 if (context
== NULL
)
2171 context
= g_main_context_default ();
2173 LOCK_CONTEXT (context
);
2175 g_source_iter_init (&iter
, context
, FALSE
);
2176 while (g_source_iter_next (&iter
, &source
))
2178 if (!SOURCE_DESTROYED (source
) &&
2179 source
->callback_funcs
)
2181 GSourceFunc callback
;
2182 gpointer callback_data
= NULL
;
2184 source
->callback_funcs
->get (source
->callback_data
, source
, &callback
, &callback_data
);
2186 if (callback_data
== user_data
)
2190 g_source_iter_clear (&iter
);
2192 UNLOCK_CONTEXT (context
);
2199 * @tag: the ID of the source to remove.
2201 * Removes the source with the given id from the default main context.
2203 * The id of a #GSource is given by g_source_get_id(), or will be
2204 * returned by the functions g_source_attach(), g_idle_add(),
2205 * g_idle_add_full(), g_timeout_add(), g_timeout_add_full(),
2206 * g_child_watch_add(), g_child_watch_add_full(), g_io_add_watch(), and
2207 * g_io_add_watch_full().
2209 * See also g_source_destroy(). You must use g_source_destroy() for sources
2210 * added to a non-default main context.
2212 * It is a programmer error to attempt to remove a non-existent source.
2214 * Returns: For historical reasons, this function always returns %TRUE
2217 g_source_remove (guint tag
)
2221 g_return_val_if_fail (tag
> 0, FALSE
);
2223 source
= g_main_context_find_source_by_id (NULL
, tag
);
2225 g_source_destroy (source
);
2227 g_critical ("Source ID %u was not found when attempting to remove it", tag
);
2229 return source
!= NULL
;
2233 * g_source_remove_by_user_data:
2234 * @user_data: the user_data for the callback.
2236 * Removes a source from the default main loop context given the user
2237 * data for the callback. If multiple sources exist with the same user
2238 * data, only one will be destroyed.
2240 * Returns: %TRUE if a source was found and removed.
2243 g_source_remove_by_user_data (gpointer user_data
)
2247 source
= g_main_context_find_source_by_user_data (NULL
, user_data
);
2250 g_source_destroy (source
);
2258 * g_source_remove_by_funcs_user_data:
2259 * @funcs: The @source_funcs passed to g_source_new()
2260 * @user_data: the user data for the callback
2262 * Removes a source from the default main loop context given the
2263 * source functions and user data. If multiple sources exist with the
2264 * same source functions and user data, only one will be destroyed.
2266 * Returns: %TRUE if a source was found and removed.
2269 g_source_remove_by_funcs_user_data (GSourceFuncs
*funcs
,
2274 g_return_val_if_fail (funcs
!= NULL
, FALSE
);
2276 source
= g_main_context_find_source_by_funcs_user_data (NULL
, funcs
, user_data
);
2279 g_source_destroy (source
);
2288 * g_source_add_unix_fd:
2289 * @source: a #GSource
2290 * @fd: the fd to monitor
2291 * @events: an event mask
2293 * Monitors @fd for the IO events in @events.
2295 * The tag returned by this function can be used to remove or modify the
2296 * monitoring of the fd using g_source_remove_unix_fd() or
2297 * g_source_modify_unix_fd().
2299 * It is not necessary to remove the fd before destroying the source; it
2300 * will be cleaned up automatically.
2302 * As the name suggests, this function is not available on Windows.
2304 * Returns: an opaque tag
2309 g_source_add_unix_fd (GSource
*source
,
2311 GIOCondition events
)
2313 GMainContext
*context
;
2316 g_return_val_if_fail (source
!= NULL
, NULL
);
2317 g_return_val_if_fail (!SOURCE_DESTROYED (source
), NULL
);
2319 poll_fd
= g_new (GPollFD
, 1);
2321 poll_fd
->events
= events
;
2322 poll_fd
->revents
= 0;
2324 context
= source
->context
;
2327 LOCK_CONTEXT (context
);
2329 source
->priv
->fds
= g_slist_prepend (source
->priv
->fds
, poll_fd
);
2333 if (!SOURCE_BLOCKED (source
))
2334 g_main_context_add_poll_unlocked (context
, source
->priority
, poll_fd
);
2335 UNLOCK_CONTEXT (context
);
2342 * g_source_modify_unix_fd:
2343 * @source: a #GSource
2344 * @tag: the tag from g_source_add_unix_fd()
2345 * @new_events: the new event mask to watch
2347 * Updates the event mask to watch for the fd identified by @tag.
2349 * @tag is the tag returned from g_source_add_unix_fd().
2351 * If you want to remove a fd, don't set its event mask to zero.
2352 * Instead, call g_source_remove_unix_fd().
2354 * As the name suggests, this function is not available on Windows.
2359 g_source_modify_unix_fd (GSource
*source
,
2361 GIOCondition new_events
)
2363 GMainContext
*context
;
2366 g_return_if_fail (source
!= NULL
);
2367 g_return_if_fail (g_slist_find (source
->priv
->fds
, tag
));
2369 context
= source
->context
;
2372 poll_fd
->events
= new_events
;
2375 g_main_context_wakeup (context
);
2379 * g_source_remove_unix_fd:
2380 * @source: a #GSource
2381 * @tag: the tag from g_source_add_unix_fd()
2383 * Reverses the effect of a previous call to g_source_add_unix_fd().
2385 * You only need to call this if you want to remove an fd from being
2386 * watched while keeping the same source around. In the normal case you
2387 * will just want to destroy the source.
2389 * As the name suggests, this function is not available on Windows.
2394 g_source_remove_unix_fd (GSource
*source
,
2397 GMainContext
*context
;
2400 g_return_if_fail (source
!= NULL
);
2401 g_return_if_fail (g_slist_find (source
->priv
->fds
, tag
));
2403 context
= source
->context
;
2407 LOCK_CONTEXT (context
);
2409 source
->priv
->fds
= g_slist_remove (source
->priv
->fds
, poll_fd
);
2413 if (!SOURCE_BLOCKED (source
))
2414 g_main_context_remove_poll_unlocked (context
, poll_fd
);
2416 UNLOCK_CONTEXT (context
);
2423 * g_source_query_unix_fd:
2424 * @source: a #GSource
2425 * @tag: the tag from g_source_add_unix_fd()
2427 * Queries the events reported for the fd corresponding to @tag on
2428 * @source during the last poll.
2430 * The return value of this function is only defined when the function
2431 * is called from the check or dispatch functions for @source.
2433 * As the name suggests, this function is not available on Windows.
2435 * Returns: the conditions reported on the fd
2440 g_source_query_unix_fd (GSource
*source
,
2445 g_return_val_if_fail (source
!= NULL
, 0);
2446 g_return_val_if_fail (g_slist_find (source
->priv
->fds
, tag
), 0);
2450 return poll_fd
->revents
;
2452 #endif /* G_OS_UNIX */
2455 * g_get_current_time:
2456 * @result: #GTimeVal structure in which to store current time.
2458 * Equivalent to the UNIX gettimeofday() function, but portable.
2460 * You may find g_get_real_time() to be more convenient.
2463 g_get_current_time (GTimeVal
*result
)
2468 g_return_if_fail (result
!= NULL
);
2470 /*this is required on alpha, there the timeval structs are int's
2471 not longs and a cast only would fail horribly*/
2472 gettimeofday (&r
, NULL
);
2473 result
->tv_sec
= r
.tv_sec
;
2474 result
->tv_usec
= r
.tv_usec
;
2479 g_return_if_fail (result
!= NULL
);
2481 GetSystemTimeAsFileTime (&ft
);
2482 memmove (&time64
, &ft
, sizeof (FILETIME
));
2484 /* Convert from 100s of nanoseconds since 1601-01-01
2485 * to Unix epoch. Yes, this is Y2038 unsafe.
2487 time64
-= G_GINT64_CONSTANT (116444736000000000);
2490 result
->tv_sec
= time64
/ 1000000;
2491 result
->tv_usec
= time64
% 1000000;
2498 * Queries the system wall-clock time.
2500 * This call is functionally equivalent to g_get_current_time() except
2501 * that the return value is often more convenient than dealing with a
2504 * You should only use this call if you are actually interested in the real
2505 * wall-clock time. g_get_monotonic_time() is probably more useful for
2506 * measuring intervals.
2508 * Returns: the number of microseconds since January 1, 1970 UTC.
2513 g_get_real_time (void)
2517 g_get_current_time (&tv
);
2519 return (((gint64
) tv
.tv_sec
) * 1000000) + tv
.tv_usec
;
2523 * g_get_monotonic_time:
2525 * Queries the system monotonic time.
2527 * The monotonic clock will always increase and doesn't suffer
2528 * discontinuities when the user (or NTP) changes the system time. It
2529 * may or may not continue to tick during times where the machine is
2532 * We try to use the clock that corresponds as closely as possible to
2533 * the passage of time as measured by system calls such as poll() but it
2534 * may not always be possible to do this.
2536 * Returns: the monotonic time, in microseconds
2540 #if defined (G_OS_WIN32)
2541 static ULONGLONG (*g_GetTickCount64
) (void) = NULL
;
2542 static guint32 g_win32_tick_epoch
= 0;
2545 g_clock_win32_init (void)
2549 g_GetTickCount64
= NULL
;
2550 kernel32
= GetModuleHandle ("KERNEL32.DLL");
2551 if (kernel32
!= NULL
)
2552 g_GetTickCount64
= (void *) GetProcAddress (kernel32
, "GetTickCount64");
2553 g_win32_tick_epoch
= ((guint32
)GetTickCount()) >> 31;
2557 g_get_monotonic_time (void)
2562 /* There are four sources for the monotonic time on Windows:
2564 * Three are based on a (1 msec accuracy, but only read periodically) clock chip:
2565 * - GetTickCount (GTC)
2566 * 32bit msec counter, updated each ~15msec, wraps in ~50 days
2567 * - GetTickCount64 (GTC64)
2568 * Same as GetTickCount, but extended to 64bit, so no wrap
2569 * Only available in Vista or later
2570 * - timeGetTime (TGT)
2571 * similar to GetTickCount by default: 15msec, 50 day wrap.
2572 * available in winmm.dll (thus known as the multimedia timers)
2573 * However apps can raise the system timer clock frequency using timeBeginPeriod()
2574 * increasing the accuracy up to 1 msec, at a cost in general system performance
2577 * One is based on high precision clocks:
2578 * - QueryPrecisionCounter (QPC)
2579 * This has much higher accuracy, but is not guaranteed monotonic, and
2580 * has lots of complications like clock jumps and different times on different
2581 * CPUs. It also has lower long term accuracy (i.e. it will drift compared to
2582 * the low precision clocks.
2584 * Additionally, the precision available in the timer-based wakeup such as
2585 * MsgWaitForMultipleObjectsEx (which is what the mainloop is based on) is based
2586 * on the TGT resolution, so by default it is ~15msec, but can be increased by apps.
2588 * The QPC timer has too many issues to be used as is. The only way it could be used
2589 * is to use it to interpolate the lower precision clocks. Firefox does something like
2591 * https://bugzilla.mozilla.org/show_bug.cgi?id=363258
2593 * However this seems quite complicated, so we're not doing this right now.
2595 * The approach we take instead is to use the TGT timer, extending it to 64bit
2596 * either by using the GTC64 value, or if that is not available, a process local
2597 * time epoch that we increment when we detect a timer wrap (assumes that we read
2598 * the time at least once every 50 days).
2601 * - We have a globally consistent monotonic clock on Vista and later
2602 * - We have a locally monotonic clock on XP
2603 * - Apps that need higher precision in timeouts and clock reads can call
2604 * timeBeginPeriod() to increase it as much as they want
2607 if (g_GetTickCount64
!= NULL
)
2609 guint32 ticks_as_32bit
;
2611 ticks
= g_GetTickCount64 ();
2612 ticks32
= timeGetTime();
2614 /* GTC64 and TGT are sampled at different times, however they
2615 * have the same base and source (msecs since system boot).
2616 * They can differ by as much as -16 to +16 msecs.
2617 * We can't just inject the low bits into the 64bit counter
2618 * as one of the counters can have wrapped in 32bit space and
2619 * the other not. Instead we calculate the signed difference
2620 * in 32bit space and apply that difference to the 64bit counter.
2622 ticks_as_32bit
= (guint32
)ticks
;
2624 /* We could do some 2's complement hack, but we play it safe */
2625 if (ticks32
- ticks_as_32bit
<= G_MAXINT32
)
2626 ticks
+= ticks32
- ticks_as_32bit
;
2628 ticks
-= ticks_as_32bit
- ticks32
;
2634 epoch
= g_atomic_int_get (&g_win32_tick_epoch
);
2636 /* Must read ticks after the epoch. Then we're guaranteed
2637 * that the ticks value we read is higher or equal to any
2638 * previous ones that lead to the writing of the epoch.
2640 ticks32
= timeGetTime();
2642 /* We store the MSB of the current time as the LSB
2643 * of the epoch. Comparing these bits lets us detect when
2644 * the 32bit counter has wrapped so we can increase the
2647 * This will work as long as this function is called at
2648 * least once every ~24 days, which is half the wrap time
2649 * of a 32bit msec counter. I think this is pretty likely.
2651 * Note that g_win32_tick_epoch is a process local state,
2652 * so the monotonic clock will not be the same between
2655 if ((ticks32
>> 31) != (epoch
& 1))
2658 g_atomic_int_set (&g_win32_tick_epoch
, epoch
);
2662 ticks
= (guint64
)ticks32
| ((guint64
)epoch
) << 31;
2665 return ticks
* 1000;
2667 #elif defined(HAVE_MACH_MACH_TIME_H) /* Mac OS */
2669 g_get_monotonic_time (void)
2671 static mach_timebase_info_data_t timebase_info
;
2673 if (timebase_info
.denom
== 0)
2675 /* This is a fraction that we must use to scale
2676 * mach_absolute_time() by in order to reach nanoseconds.
2678 * We've only ever observed this to be 1/1, but maybe it could be
2679 * 1000/1 if mach time is microseconds already, or 1/1000 if
2680 * picoseconds. Try to deal nicely with that.
2682 mach_timebase_info (&timebase_info
);
2684 /* We actually want microseconds... */
2685 if (timebase_info
.numer
% 1000 == 0)
2686 timebase_info
.numer
/= 1000;
2688 timebase_info
.denom
*= 1000;
2690 /* We want to make the numer 1 to avoid having to multiply... */
2691 if (timebase_info
.denom
% timebase_info
.numer
== 0)
2693 timebase_info
.denom
/= timebase_info
.numer
;
2694 timebase_info
.numer
= 1;
2698 /* We could just multiply by timebase_info.numer below, but why
2699 * bother for a case that may never actually exist...
2701 * Plus -- performing the multiplication would risk integer
2702 * overflow. If we ever actually end up in this situation, we
2703 * should more carefully evaluate the correct course of action.
2705 mach_timebase_info (&timebase_info
); /* Get a fresh copy for a better message */
2706 g_error ("Got weird mach timebase info of %d/%d. Please file a bug against GLib.",
2707 timebase_info
.numer
, timebase_info
.denom
);
2711 return mach_absolute_time () / timebase_info
.denom
;
2715 g_get_monotonic_time (void)
2719 clock_gettime (CLOCK_MONOTONIC
, &ts
);
2721 return (((gint64
) ts
.tv_sec
) * 1000000) + (ts
.tv_nsec
/ 1000);
2726 g_main_dispatch_free (gpointer dispatch
)
2728 g_slice_free (GMainDispatch
, dispatch
);
2731 /* Running the main loop */
2733 static GMainDispatch
*
2736 static GPrivate depth_private
= G_PRIVATE_INIT (g_main_dispatch_free
);
2737 GMainDispatch
*dispatch
;
2739 dispatch
= g_private_get (&depth_private
);
2743 dispatch
= g_slice_new0 (GMainDispatch
);
2744 g_private_set (&depth_private
, dispatch
);
2753 * Returns the depth of the stack of calls to
2754 * g_main_context_dispatch() on any #GMainContext in the current thread.
2755 * That is, when called from the toplevel, it gives 0. When
2756 * called from within a callback from g_main_context_iteration()
2757 * (or g_main_loop_run(), etc.) it returns 1. When called from within
2758 * a callback to a recursive call to g_main_context_iteration(),
2759 * it returns 2. And so forth.
2761 * This function is useful in a situation like the following:
2762 * Imagine an extremely simple "garbage collected" system.
2764 * |[<!-- language="C" -->
2765 * static GList *free_list;
2768 * allocate_memory (gsize size)
2770 * gpointer result = g_malloc (size);
2771 * free_list = g_list_prepend (free_list, result);
2776 * free_allocated_memory (void)
2779 * for (l = free_list; l; l = l->next);
2781 * g_list_free (free_list);
2789 * g_main_context_iteration (NULL, TRUE);
2790 * free_allocated_memory();
2794 * This works from an application, however, if you want to do the same
2795 * thing from a library, it gets more difficult, since you no longer
2796 * control the main loop. You might think you can simply use an idle
2797 * function to make the call to free_allocated_memory(), but that
2798 * doesn't work, since the idle function could be called from a
2799 * recursive callback. This can be fixed by using g_main_depth()
2801 * |[<!-- language="C" -->
2803 * allocate_memory (gsize size)
2805 * FreeListBlock *block = g_new (FreeListBlock, 1);
2806 * block->mem = g_malloc (size);
2807 * block->depth = g_main_depth ();
2808 * free_list = g_list_prepend (free_list, block);
2809 * return block->mem;
2813 * free_allocated_memory (void)
2817 * int depth = g_main_depth ();
2818 * for (l = free_list; l; );
2820 * GList *next = l->next;
2821 * FreeListBlock *block = l->data;
2822 * if (block->depth > depth)
2824 * g_free (block->mem);
2826 * free_list = g_list_delete_link (free_list, l);
2834 * There is a temptation to use g_main_depth() to solve
2835 * problems with reentrancy. For instance, while waiting for data
2836 * to be received from the network in response to a menu item,
2837 * the menu item might be selected again. It might seem that
2838 * one could make the menu item's callback return immediately
2839 * and do nothing if g_main_depth() returns a value greater than 1.
2840 * However, this should be avoided since the user then sees selecting
2841 * the menu item do nothing. Furthermore, you'll find yourself adding
2842 * these checks all over your code, since there are doubtless many,
2843 * many things that the user could do. Instead, you can use the
2844 * following techniques:
2846 * 1. Use gtk_widget_set_sensitive() or modal dialogs to prevent
2847 * the user from interacting with elements while the main
2848 * loop is recursing.
2850 * 2. Avoid main loop recursion in situations where you can't handle
2851 * arbitrary callbacks. Instead, structure your code so that you
2852 * simply return to the main loop and then get called again when
2853 * there is more work to do.
2855 * Returns: The main loop recursion level in the current thread
2860 GMainDispatch
*dispatch
= get_dispatch ();
2861 return dispatch
->depth
;
2865 * g_main_current_source:
2867 * Returns the currently firing source for this thread.
2869 * Returns: (transfer none): The currently firing source or %NULL.
2874 g_main_current_source (void)
2876 GMainDispatch
*dispatch
= get_dispatch ();
2877 return dispatch
->source
;
2881 * g_source_is_destroyed:
2882 * @source: a #GSource
2884 * Returns whether @source has been destroyed.
2886 * This is important when you operate upon your objects
2887 * from within idle handlers, but may have freed the object
2888 * before the dispatch of your idle handler.
2890 * |[<!-- language="C" -->
2892 * idle_callback (gpointer data)
2894 * SomeWidget *self = data;
2896 * GDK_THREADS_ENTER ();
2897 * // do stuff with self
2898 * self->idle_id = 0;
2899 * GDK_THREADS_LEAVE ();
2901 * return G_SOURCE_REMOVE;
2905 * some_widget_do_stuff_later (SomeWidget *self)
2907 * self->idle_id = g_idle_add (idle_callback, self);
2911 * some_widget_finalize (GObject *object)
2913 * SomeWidget *self = SOME_WIDGET (object);
2915 * if (self->idle_id)
2916 * g_source_remove (self->idle_id);
2918 * G_OBJECT_CLASS (parent_class)->finalize (object);
2922 * This will fail in a multi-threaded application if the
2923 * widget is destroyed before the idle handler fires due
2924 * to the use after free in the callback. A solution, to
2925 * this particular problem, is to check to if the source
2926 * has already been destroy within the callback.
2928 * |[<!-- language="C" -->
2930 * idle_callback (gpointer data)
2932 * SomeWidget *self = data;
2934 * GDK_THREADS_ENTER ();
2935 * if (!g_source_is_destroyed (g_main_current_source ()))
2937 * // do stuff with self
2939 * GDK_THREADS_LEAVE ();
2945 * Returns: %TRUE if the source has been destroyed
2950 g_source_is_destroyed (GSource
*source
)
2952 return SOURCE_DESTROYED (source
);
2955 /* Temporarily remove all this source's file descriptors from the
2956 * poll(), so that if data comes available for one of the file descriptors
2957 * we don't continually spin in the poll()
2959 /* HOLDS: source->context's lock */
2961 block_source (GSource
*source
)
2965 g_return_if_fail (!SOURCE_BLOCKED (source
));
2967 source
->flags
|= G_SOURCE_BLOCKED
;
2969 if (source
->context
)
2971 tmp_list
= source
->poll_fds
;
2974 g_main_context_remove_poll_unlocked (source
->context
, tmp_list
->data
);
2975 tmp_list
= tmp_list
->next
;
2978 for (tmp_list
= source
->priv
->fds
; tmp_list
; tmp_list
= tmp_list
->next
)
2979 g_main_context_remove_poll_unlocked (source
->context
, tmp_list
->data
);
2982 if (source
->priv
&& source
->priv
->child_sources
)
2984 tmp_list
= source
->priv
->child_sources
;
2987 block_source (tmp_list
->data
);
2988 tmp_list
= tmp_list
->next
;
2993 /* HOLDS: source->context's lock */
2995 unblock_source (GSource
*source
)
2999 g_return_if_fail (SOURCE_BLOCKED (source
)); /* Source already unblocked */
3000 g_return_if_fail (!SOURCE_DESTROYED (source
));
3002 source
->flags
&= ~G_SOURCE_BLOCKED
;
3004 tmp_list
= source
->poll_fds
;
3007 g_main_context_add_poll_unlocked (source
->context
, source
->priority
, tmp_list
->data
);
3008 tmp_list
= tmp_list
->next
;
3011 for (tmp_list
= source
->priv
->fds
; tmp_list
; tmp_list
= tmp_list
->next
)
3012 g_main_context_add_poll_unlocked (source
->context
, source
->priority
, tmp_list
->data
);
3014 if (source
->priv
&& source
->priv
->child_sources
)
3016 tmp_list
= source
->priv
->child_sources
;
3019 unblock_source (tmp_list
->data
);
3020 tmp_list
= tmp_list
->next
;
3025 /* HOLDS: context's lock */
3027 g_main_dispatch (GMainContext
*context
)
3029 GMainDispatch
*current
= get_dispatch ();
3032 for (i
= 0; i
< context
->pending_dispatches
->len
; i
++)
3034 GSource
*source
= context
->pending_dispatches
->pdata
[i
];
3036 context
->pending_dispatches
->pdata
[i
] = NULL
;
3039 source
->flags
&= ~G_SOURCE_READY
;
3041 if (!SOURCE_DESTROYED (source
))
3043 gboolean was_in_call
;
3044 gpointer user_data
= NULL
;
3045 GSourceFunc callback
= NULL
;
3046 GSourceCallbackFuncs
*cb_funcs
;
3048 gboolean need_destroy
;
3050 gboolean (*dispatch
) (GSource
*,
3053 GSource
*prev_source
;
3055 dispatch
= source
->source_funcs
->dispatch
;
3056 cb_funcs
= source
->callback_funcs
;
3057 cb_data
= source
->callback_data
;
3060 cb_funcs
->ref (cb_data
);
3062 if ((source
->flags
& G_SOURCE_CAN_RECURSE
) == 0)
3063 block_source (source
);
3065 was_in_call
= source
->flags
& G_HOOK_FLAG_IN_CALL
;
3066 source
->flags
|= G_HOOK_FLAG_IN_CALL
;
3069 cb_funcs
->get (cb_data
, source
, &callback
, &user_data
);
3071 UNLOCK_CONTEXT (context
);
3073 /* These operations are safe because 'current' is thread-local
3074 * and not modified from anywhere but this function.
3076 prev_source
= current
->source
;
3077 current
->source
= source
;
3080 TRACE( GLIB_MAIN_BEFORE_DISPATCH (g_source_get_name (source
)));
3081 need_destroy
= !(* dispatch
) (source
, callback
, user_data
);
3082 TRACE( GLIB_MAIN_AFTER_DISPATCH (g_source_get_name (source
)));
3084 current
->source
= prev_source
;
3088 cb_funcs
->unref (cb_data
);
3090 LOCK_CONTEXT (context
);
3093 source
->flags
&= ~G_HOOK_FLAG_IN_CALL
;
3095 if (SOURCE_BLOCKED (source
) && !SOURCE_DESTROYED (source
))
3096 unblock_source (source
);
3098 /* Note: this depends on the fact that we can't switch
3099 * sources from one main context to another
3101 if (need_destroy
&& !SOURCE_DESTROYED (source
))
3103 g_assert (source
->context
== context
);
3104 g_source_destroy_internal (source
, context
, TRUE
);
3108 SOURCE_UNREF (source
, context
);
3111 g_ptr_array_set_size (context
->pending_dispatches
, 0);
3115 * g_main_context_acquire:
3116 * @context: a #GMainContext
3118 * Tries to become the owner of the specified context.
3119 * If some other thread is the owner of the context,
3120 * returns %FALSE immediately. Ownership is properly
3121 * recursive: the owner can require ownership again
3122 * and will release ownership when g_main_context_release()
3123 * is called as many times as g_main_context_acquire().
3125 * You must be the owner of a context before you
3126 * can call g_main_context_prepare(), g_main_context_query(),
3127 * g_main_context_check(), g_main_context_dispatch().
3129 * Returns: %TRUE if the operation succeeded, and
3130 * this thread is now the owner of @context.
3133 g_main_context_acquire (GMainContext
*context
)
3135 gboolean result
= FALSE
;
3136 GThread
*self
= G_THREAD_SELF
;
3138 if (context
== NULL
)
3139 context
= g_main_context_default ();
3141 LOCK_CONTEXT (context
);
3143 if (!context
->owner
)
3145 context
->owner
= self
;
3146 g_assert (context
->owner_count
== 0);
3149 if (context
->owner
== self
)
3151 context
->owner_count
++;
3155 UNLOCK_CONTEXT (context
);
3161 * g_main_context_release:
3162 * @context: a #GMainContext
3164 * Releases ownership of a context previously acquired by this thread
3165 * with g_main_context_acquire(). If the context was acquired multiple
3166 * times, the ownership will be released only when g_main_context_release()
3167 * is called as many times as it was acquired.
3170 g_main_context_release (GMainContext
*context
)
3172 if (context
== NULL
)
3173 context
= g_main_context_default ();
3175 LOCK_CONTEXT (context
);
3177 context
->owner_count
--;
3178 if (context
->owner_count
== 0)
3180 context
->owner
= NULL
;
3182 if (context
->waiters
)
3184 GMainWaiter
*waiter
= context
->waiters
->data
;
3185 gboolean loop_internal_waiter
= (waiter
->mutex
== &context
->mutex
);
3186 context
->waiters
= g_slist_delete_link (context
->waiters
,
3188 if (!loop_internal_waiter
)
3189 g_mutex_lock (waiter
->mutex
);
3191 g_cond_signal (waiter
->cond
);
3193 if (!loop_internal_waiter
)
3194 g_mutex_unlock (waiter
->mutex
);
3198 UNLOCK_CONTEXT (context
);
3202 * g_main_context_wait:
3203 * @context: a #GMainContext
3204 * @cond: a condition variable
3205 * @mutex: a mutex, currently held
3207 * Tries to become the owner of the specified context,
3208 * as with g_main_context_acquire(). But if another thread
3209 * is the owner, atomically drop @mutex and wait on @cond until
3210 * that owner releases ownership or until @cond is signaled, then
3211 * try again (once) to become the owner.
3213 * Returns: %TRUE if the operation succeeded, and
3214 * this thread is now the owner of @context.
3217 g_main_context_wait (GMainContext
*context
,
3221 gboolean result
= FALSE
;
3222 GThread
*self
= G_THREAD_SELF
;
3223 gboolean loop_internal_waiter
;
3225 if (context
== NULL
)
3226 context
= g_main_context_default ();
3228 loop_internal_waiter
= (mutex
== &context
->mutex
);
3230 if (!loop_internal_waiter
)
3231 LOCK_CONTEXT (context
);
3233 if (context
->owner
&& context
->owner
!= self
)
3238 waiter
.mutex
= mutex
;
3240 context
->waiters
= g_slist_append (context
->waiters
, &waiter
);
3242 if (!loop_internal_waiter
)
3243 UNLOCK_CONTEXT (context
);
3244 g_cond_wait (cond
, mutex
);
3245 if (!loop_internal_waiter
)
3246 LOCK_CONTEXT (context
);
3248 context
->waiters
= g_slist_remove (context
->waiters
, &waiter
);
3251 if (!context
->owner
)
3253 context
->owner
= self
;
3254 g_assert (context
->owner_count
== 0);
3257 if (context
->owner
== self
)
3259 context
->owner_count
++;
3263 if (!loop_internal_waiter
)
3264 UNLOCK_CONTEXT (context
);
3270 * g_main_context_prepare:
3271 * @context: a #GMainContext
3272 * @priority: location to store priority of highest priority
3273 * source already ready.
3275 * Prepares to poll sources within a main loop. The resulting information
3276 * for polling is determined by calling g_main_context_query ().
3278 * Returns: %TRUE if some source is ready to be dispatched
3282 g_main_context_prepare (GMainContext
*context
,
3287 gint current_priority
= G_MAXINT
;
3291 if (context
== NULL
)
3292 context
= g_main_context_default ();
3294 LOCK_CONTEXT (context
);
3296 context
->time_is_fresh
= FALSE
;
3298 if (context
->in_check_or_prepare
)
3300 g_warning ("g_main_context_prepare() called recursively from within a source's check() or "
3301 "prepare() member.");
3302 UNLOCK_CONTEXT (context
);
3307 /* If recursing, finish up current dispatch, before starting over */
3308 if (context
->pending_dispatches
)
3311 g_main_dispatch (context
, ¤t_time
);
3313 UNLOCK_CONTEXT (context
);
3318 /* If recursing, clear list of pending dispatches */
3320 for (i
= 0; i
< context
->pending_dispatches
->len
; i
++)
3322 if (context
->pending_dispatches
->pdata
[i
])
3323 SOURCE_UNREF ((GSource
*)context
->pending_dispatches
->pdata
[i
], context
);
3325 g_ptr_array_set_size (context
->pending_dispatches
, 0);
3327 /* Prepare all sources */
3329 context
->timeout
= -1;
3331 g_source_iter_init (&iter
, context
, TRUE
);
3332 while (g_source_iter_next (&iter
, &source
))
3334 gint source_timeout
= -1;
3336 if (SOURCE_DESTROYED (source
) || SOURCE_BLOCKED (source
))
3338 if ((n_ready
> 0) && (source
->priority
> current_priority
))
3341 if (!(source
->flags
& G_SOURCE_READY
))
3344 gboolean (* prepare
) (GSource
*source
,
3347 prepare
= source
->source_funcs
->prepare
;
3351 context
->in_check_or_prepare
++;
3352 UNLOCK_CONTEXT (context
);
3354 result
= (* prepare
) (source
, &source_timeout
);
3356 LOCK_CONTEXT (context
);
3357 context
->in_check_or_prepare
--;
3361 source_timeout
= -1;
3365 if (result
== FALSE
&& source
->priv
->ready_time
!= -1)
3367 if (!context
->time_is_fresh
)
3369 context
->time
= g_get_monotonic_time ();
3370 context
->time_is_fresh
= TRUE
;
3373 if (source
->priv
->ready_time
<= context
->time
)
3382 /* rounding down will lead to spinning, so always round up */
3383 timeout
= (source
->priv
->ready_time
- context
->time
+ 999) / 1000;
3385 if (source_timeout
< 0 || timeout
< source_timeout
)
3386 source_timeout
= timeout
;
3392 GSource
*ready_source
= source
;
3394 while (ready_source
)
3396 ready_source
->flags
|= G_SOURCE_READY
;
3397 ready_source
= ready_source
->priv
->parent_source
;
3402 if (source
->flags
& G_SOURCE_READY
)
3405 current_priority
= source
->priority
;
3406 context
->timeout
= 0;
3409 if (source_timeout
>= 0)
3411 if (context
->timeout
< 0)
3412 context
->timeout
= source_timeout
;
3414 context
->timeout
= MIN (context
->timeout
, source_timeout
);
3417 g_source_iter_clear (&iter
);
3419 UNLOCK_CONTEXT (context
);
3422 *priority
= current_priority
;
3424 return (n_ready
> 0);
3428 * g_main_context_query:
3429 * @context: a #GMainContext
3430 * @max_priority: maximum priority source to check
3431 * @timeout_: (out): location to store timeout to be used in polling
3432 * @fds: (out caller-allocates) (array length=n_fds): location to
3433 * store #GPollFD records that need to be polled.
3434 * @n_fds: length of @fds.
3436 * Determines information necessary to poll this main loop.
3438 * Returns: the number of records actually stored in @fds,
3439 * or, if more than @n_fds records need to be stored, the number
3440 * of records that need to be stored.
3443 g_main_context_query (GMainContext
*context
,
3452 LOCK_CONTEXT (context
);
3454 pollrec
= context
->poll_records
;
3456 while (pollrec
&& max_priority
>= pollrec
->priority
)
3458 /* We need to include entries with fd->events == 0 in the array because
3459 * otherwise if the application changes fd->events behind our back and
3460 * makes it non-zero, we'll be out of sync when we check the fds[] array.
3461 * (Changing fd->events after adding an FD wasn't an anticipated use of
3462 * this API, but it occurs in practice.) */
3465 fds
[n_poll
].fd
= pollrec
->fd
->fd
;
3466 /* In direct contradiction to the Unix98 spec, IRIX runs into
3467 * difficulty if you pass in POLLERR, POLLHUP or POLLNVAL
3468 * flags in the events field of the pollfd while it should
3469 * just ignoring them. So we mask them out here.
3471 fds
[n_poll
].events
= pollrec
->fd
->events
& ~(G_IO_ERR
|G_IO_HUP
|G_IO_NVAL
);
3472 fds
[n_poll
].revents
= 0;
3475 pollrec
= pollrec
->next
;
3479 context
->poll_changed
= FALSE
;
3483 *timeout
= context
->timeout
;
3485 context
->time_is_fresh
= FALSE
;
3488 UNLOCK_CONTEXT (context
);
3494 * g_main_context_check:
3495 * @context: a #GMainContext
3496 * @max_priority: the maximum numerical priority of sources to check
3497 * @fds: (array length=n_fds): array of #GPollFD's that was passed to
3498 * the last call to g_main_context_query()
3499 * @n_fds: return value of g_main_context_query()
3501 * Passes the results of polling back to the main loop.
3503 * Returns: %TRUE if some sources are ready to be dispatched.
3506 g_main_context_check (GMainContext
*context
,
3517 LOCK_CONTEXT (context
);
3519 if (context
->in_check_or_prepare
)
3521 g_warning ("g_main_context_check() called recursively from within a source's check() or "
3522 "prepare() member.");
3523 UNLOCK_CONTEXT (context
);
3527 if (context
->wake_up_rec
.revents
)
3528 g_wakeup_acknowledge (context
->wakeup
);
3530 /* If the set of poll file descriptors changed, bail out
3531 * and let the main loop rerun
3533 if (context
->poll_changed
)
3535 UNLOCK_CONTEXT (context
);
3539 pollrec
= context
->poll_records
;
3543 if (pollrec
->fd
->events
)
3544 pollrec
->fd
->revents
= fds
[i
].revents
;
3546 pollrec
= pollrec
->next
;
3550 g_source_iter_init (&iter
, context
, TRUE
);
3551 while (g_source_iter_next (&iter
, &source
))
3553 if (SOURCE_DESTROYED (source
) || SOURCE_BLOCKED (source
))
3555 if ((n_ready
> 0) && (source
->priority
> max_priority
))
3558 if (!(source
->flags
& G_SOURCE_READY
))
3561 gboolean (* check
) (GSource
*source
);
3563 check
= source
->source_funcs
->check
;
3567 /* If the check function is set, call it. */
3568 context
->in_check_or_prepare
++;
3569 UNLOCK_CONTEXT (context
);
3571 result
= (* check
) (source
);
3573 LOCK_CONTEXT (context
);
3574 context
->in_check_or_prepare
--;
3579 if (result
== FALSE
)
3583 /* If not already explicitly flagged ready by ->check()
3584 * (or if we have no check) then we can still be ready if
3585 * any of our fds poll as ready.
3587 for (tmp_list
= source
->priv
->fds
; tmp_list
; tmp_list
= tmp_list
->next
)
3589 GPollFD
*pollfd
= tmp_list
->data
;
3591 if (pollfd
->revents
)
3599 if (result
== FALSE
&& source
->priv
->ready_time
!= -1)
3601 if (!context
->time_is_fresh
)
3603 context
->time
= g_get_monotonic_time ();
3604 context
->time_is_fresh
= TRUE
;
3607 if (source
->priv
->ready_time
<= context
->time
)
3613 GSource
*ready_source
= source
;
3615 while (ready_source
)
3617 ready_source
->flags
|= G_SOURCE_READY
;
3618 ready_source
= ready_source
->priv
->parent_source
;
3623 if (source
->flags
& G_SOURCE_READY
)
3625 source
->ref_count
++;
3626 g_ptr_array_add (context
->pending_dispatches
, source
);
3630 /* never dispatch sources with less priority than the first
3631 * one we choose to dispatch
3633 max_priority
= source
->priority
;
3636 g_source_iter_clear (&iter
);
3638 UNLOCK_CONTEXT (context
);
3644 * g_main_context_dispatch:
3645 * @context: a #GMainContext
3647 * Dispatches all pending sources.
3650 g_main_context_dispatch (GMainContext
*context
)
3652 LOCK_CONTEXT (context
);
3654 if (context
->pending_dispatches
->len
> 0)
3656 g_main_dispatch (context
);
3659 UNLOCK_CONTEXT (context
);
3662 /* HOLDS context lock */
3664 g_main_context_iterate (GMainContext
*context
,
3671 gboolean some_ready
;
3672 gint nfds
, allocated_nfds
;
3673 GPollFD
*fds
= NULL
;
3675 UNLOCK_CONTEXT (context
);
3677 if (!g_main_context_acquire (context
))
3679 gboolean got_ownership
;
3681 LOCK_CONTEXT (context
);
3686 got_ownership
= g_main_context_wait (context
,
3694 LOCK_CONTEXT (context
);
3696 if (!context
->cached_poll_array
)
3698 context
->cached_poll_array_size
= context
->n_poll_records
;
3699 context
->cached_poll_array
= g_new (GPollFD
, context
->n_poll_records
);
3702 allocated_nfds
= context
->cached_poll_array_size
;
3703 fds
= context
->cached_poll_array
;
3705 UNLOCK_CONTEXT (context
);
3707 g_main_context_prepare (context
, &max_priority
);
3709 while ((nfds
= g_main_context_query (context
, max_priority
, &timeout
, fds
,
3710 allocated_nfds
)) > allocated_nfds
)
3712 LOCK_CONTEXT (context
);
3714 context
->cached_poll_array_size
= allocated_nfds
= nfds
;
3715 context
->cached_poll_array
= fds
= g_new (GPollFD
, nfds
);
3716 UNLOCK_CONTEXT (context
);
3722 g_main_context_poll (context
, timeout
, max_priority
, fds
, nfds
);
3724 some_ready
= g_main_context_check (context
, max_priority
, fds
, nfds
);
3727 g_main_context_dispatch (context
);
3729 g_main_context_release (context
);
3731 LOCK_CONTEXT (context
);
3737 * g_main_context_pending:
3738 * @context: (allow-none): a #GMainContext (if %NULL, the default context will be used)
3740 * Checks if any sources have pending events for the given context.
3742 * Returns: %TRUE if events are pending.
3745 g_main_context_pending (GMainContext
*context
)
3750 context
= g_main_context_default();
3752 LOCK_CONTEXT (context
);
3753 retval
= g_main_context_iterate (context
, FALSE
, FALSE
, G_THREAD_SELF
);
3754 UNLOCK_CONTEXT (context
);
3760 * g_main_context_iteration:
3761 * @context: (allow-none): a #GMainContext (if %NULL, the default context will be used)
3762 * @may_block: whether the call may block.
3764 * Runs a single iteration for the given main loop. This involves
3765 * checking to see if any event sources are ready to be processed,
3766 * then if no events sources are ready and @may_block is %TRUE, waiting
3767 * for a source to become ready, then dispatching the highest priority
3768 * events sources that are ready. Otherwise, if @may_block is %FALSE
3769 * sources are not waited to become ready, only those highest priority
3770 * events sources will be dispatched (if any), that are ready at this
3771 * given moment without further waiting.
3773 * Note that even when @may_block is %TRUE, it is still possible for
3774 * g_main_context_iteration() to return %FALSE, since the wait may
3775 * be interrupted for other reasons than an event source becoming ready.
3777 * Returns: %TRUE if events were dispatched.
3780 g_main_context_iteration (GMainContext
*context
, gboolean may_block
)
3785 context
= g_main_context_default();
3787 LOCK_CONTEXT (context
);
3788 retval
= g_main_context_iterate (context
, may_block
, TRUE
, G_THREAD_SELF
);
3789 UNLOCK_CONTEXT (context
);
3796 * @context: (allow-none): a #GMainContext (if %NULL, the default context will be used).
3797 * @is_running: set to %TRUE to indicate that the loop is running. This
3798 * is not very important since calling g_main_loop_run() will set this to
3801 * Creates a new #GMainLoop structure.
3803 * Returns: a new #GMainLoop.
3806 g_main_loop_new (GMainContext
*context
,
3807 gboolean is_running
)
3812 context
= g_main_context_default();
3814 g_main_context_ref (context
);
3816 loop
= g_new0 (GMainLoop
, 1);
3817 loop
->context
= context
;
3818 loop
->is_running
= is_running
!= FALSE
;
3819 loop
->ref_count
= 1;
3826 * @loop: a #GMainLoop
3828 * Increases the reference count on a #GMainLoop object by one.
3833 g_main_loop_ref (GMainLoop
*loop
)
3835 g_return_val_if_fail (loop
!= NULL
, NULL
);
3836 g_return_val_if_fail (g_atomic_int_get (&loop
->ref_count
) > 0, NULL
);
3838 g_atomic_int_inc (&loop
->ref_count
);
3844 * g_main_loop_unref:
3845 * @loop: a #GMainLoop
3847 * Decreases the reference count on a #GMainLoop object by one. If
3848 * the result is zero, free the loop and free all associated memory.
3851 g_main_loop_unref (GMainLoop
*loop
)
3853 g_return_if_fail (loop
!= NULL
);
3854 g_return_if_fail (g_atomic_int_get (&loop
->ref_count
) > 0);
3856 if (!g_atomic_int_dec_and_test (&loop
->ref_count
))
3859 g_main_context_unref (loop
->context
);
3865 * @loop: a #GMainLoop
3867 * Runs a main loop until g_main_loop_quit() is called on the loop.
3868 * If this is called for the thread of the loop's #GMainContext,
3869 * it will process events from the loop, otherwise it will
3873 g_main_loop_run (GMainLoop
*loop
)
3875 GThread
*self
= G_THREAD_SELF
;
3877 g_return_if_fail (loop
!= NULL
);
3878 g_return_if_fail (g_atomic_int_get (&loop
->ref_count
) > 0);
3880 if (!g_main_context_acquire (loop
->context
))
3882 gboolean got_ownership
= FALSE
;
3884 /* Another thread owns this context */
3885 LOCK_CONTEXT (loop
->context
);
3887 g_atomic_int_inc (&loop
->ref_count
);
3889 if (!loop
->is_running
)
3890 loop
->is_running
= TRUE
;
3892 while (loop
->is_running
&& !got_ownership
)
3893 got_ownership
= g_main_context_wait (loop
->context
,
3894 &loop
->context
->cond
,
3895 &loop
->context
->mutex
);
3897 if (!loop
->is_running
)
3899 UNLOCK_CONTEXT (loop
->context
);
3901 g_main_context_release (loop
->context
);
3902 g_main_loop_unref (loop
);
3906 g_assert (got_ownership
);
3909 LOCK_CONTEXT (loop
->context
);
3911 if (loop
->context
->in_check_or_prepare
)
3913 g_warning ("g_main_loop_run(): called recursively from within a source's "
3914 "check() or prepare() member, iteration not possible.");
3918 g_atomic_int_inc (&loop
->ref_count
);
3919 loop
->is_running
= TRUE
;
3920 while (loop
->is_running
)
3921 g_main_context_iterate (loop
->context
, TRUE
, TRUE
, self
);
3923 UNLOCK_CONTEXT (loop
->context
);
3925 g_main_context_release (loop
->context
);
3927 g_main_loop_unref (loop
);
3932 * @loop: a #GMainLoop
3934 * Stops a #GMainLoop from running. Any calls to g_main_loop_run()
3935 * for the loop will return.
3937 * Note that sources that have already been dispatched when
3938 * g_main_loop_quit() is called will still be executed.
3941 g_main_loop_quit (GMainLoop
*loop
)
3943 g_return_if_fail (loop
!= NULL
);
3944 g_return_if_fail (g_atomic_int_get (&loop
->ref_count
) > 0);
3946 LOCK_CONTEXT (loop
->context
);
3947 loop
->is_running
= FALSE
;
3948 g_wakeup_signal (loop
->context
->wakeup
);
3950 g_cond_broadcast (&loop
->context
->cond
);
3952 UNLOCK_CONTEXT (loop
->context
);
3956 * g_main_loop_is_running:
3957 * @loop: a #GMainLoop.
3959 * Checks to see if the main loop is currently being run via g_main_loop_run().
3961 * Returns: %TRUE if the mainloop is currently being run.
3964 g_main_loop_is_running (GMainLoop
*loop
)
3966 g_return_val_if_fail (loop
!= NULL
, FALSE
);
3967 g_return_val_if_fail (g_atomic_int_get (&loop
->ref_count
) > 0, FALSE
);
3969 return loop
->is_running
;
3973 * g_main_loop_get_context:
3974 * @loop: a #GMainLoop.
3976 * Returns the #GMainContext of @loop.
3978 * Returns: (transfer none): the #GMainContext of @loop
3981 g_main_loop_get_context (GMainLoop
*loop
)
3983 g_return_val_if_fail (loop
!= NULL
, NULL
);
3984 g_return_val_if_fail (g_atomic_int_get (&loop
->ref_count
) > 0, NULL
);
3986 return loop
->context
;
3989 /* HOLDS: context's lock */
3991 g_main_context_poll (GMainContext
*context
,
3997 #ifdef G_MAIN_POLL_DEBUG
4003 GPollFunc poll_func
;
4005 if (n_fds
|| timeout
!= 0)
4007 #ifdef G_MAIN_POLL_DEBUG
4008 if (_g_main_poll_debug
)
4010 g_print ("polling context=%p n=%d timeout=%d\n",
4011 context
, n_fds
, timeout
);
4012 poll_timer
= g_timer_new ();
4016 LOCK_CONTEXT (context
);
4018 poll_func
= context
->poll_func
;
4020 UNLOCK_CONTEXT (context
);
4021 if ((*poll_func
) (fds
, n_fds
, timeout
) < 0 && errno
!= EINTR
)
4024 g_warning ("poll(2) failed due to: %s.",
4025 g_strerror (errno
));
4027 /* If g_poll () returns -1, it has already called g_warning() */
4031 #ifdef G_MAIN_POLL_DEBUG
4032 if (_g_main_poll_debug
)
4034 LOCK_CONTEXT (context
);
4036 g_print ("g_main_poll(%d) timeout: %d - elapsed %12.10f seconds",
4039 g_timer_elapsed (poll_timer
, NULL
));
4040 g_timer_destroy (poll_timer
);
4041 pollrec
= context
->poll_records
;
4043 while (pollrec
!= NULL
)
4048 if (fds
[i
].fd
== pollrec
->fd
->fd
&&
4049 pollrec
->fd
->events
&&
4052 g_print (" [" G_POLLFD_FORMAT
" :", fds
[i
].fd
);
4053 if (fds
[i
].revents
& G_IO_IN
)
4055 if (fds
[i
].revents
& G_IO_OUT
)
4057 if (fds
[i
].revents
& G_IO_PRI
)
4059 if (fds
[i
].revents
& G_IO_ERR
)
4061 if (fds
[i
].revents
& G_IO_HUP
)
4063 if (fds
[i
].revents
& G_IO_NVAL
)
4069 pollrec
= pollrec
->next
;
4073 UNLOCK_CONTEXT (context
);
4076 } /* if (n_fds || timeout != 0) */
4080 * g_main_context_add_poll:
4081 * @context: (allow-none): a #GMainContext (or %NULL for the default context)
4082 * @fd: a #GPollFD structure holding information about a file
4083 * descriptor to watch.
4084 * @priority: the priority for this file descriptor which should be
4085 * the same as the priority used for g_source_attach() to ensure that the
4086 * file descriptor is polled whenever the results may be needed.
4088 * Adds a file descriptor to the set of file descriptors polled for
4089 * this context. This will very seldom be used directly. Instead
4090 * a typical event source will use g_source_add_unix_fd() instead.
4093 g_main_context_add_poll (GMainContext
*context
,
4098 context
= g_main_context_default ();
4100 g_return_if_fail (g_atomic_int_get (&context
->ref_count
) > 0);
4101 g_return_if_fail (fd
);
4103 LOCK_CONTEXT (context
);
4104 g_main_context_add_poll_unlocked (context
, priority
, fd
);
4105 UNLOCK_CONTEXT (context
);
4108 /* HOLDS: main_loop_lock */
4110 g_main_context_add_poll_unlocked (GMainContext
*context
,
4114 GPollRec
*prevrec
, *nextrec
;
4115 GPollRec
*newrec
= g_slice_new (GPollRec
);
4117 /* This file descriptor may be checked before we ever poll */
4120 newrec
->priority
= priority
;
4122 prevrec
= context
->poll_records_tail
;
4124 while (prevrec
&& priority
< prevrec
->priority
)
4127 prevrec
= prevrec
->prev
;
4131 prevrec
->next
= newrec
;
4133 context
->poll_records
= newrec
;
4135 newrec
->prev
= prevrec
;
4136 newrec
->next
= nextrec
;
4139 nextrec
->prev
= newrec
;
4141 context
->poll_records_tail
= newrec
;
4143 context
->n_poll_records
++;
4145 context
->poll_changed
= TRUE
;
4147 /* Now wake up the main loop if it is waiting in the poll() */
4148 g_wakeup_signal (context
->wakeup
);
4152 * g_main_context_remove_poll:
4153 * @context:a #GMainContext
4154 * @fd: a #GPollFD descriptor previously added with g_main_context_add_poll()
4156 * Removes file descriptor from the set of file descriptors to be
4157 * polled for a particular context.
4160 g_main_context_remove_poll (GMainContext
*context
,
4164 context
= g_main_context_default ();
4166 g_return_if_fail (g_atomic_int_get (&context
->ref_count
) > 0);
4167 g_return_if_fail (fd
);
4169 LOCK_CONTEXT (context
);
4170 g_main_context_remove_poll_unlocked (context
, fd
);
4171 UNLOCK_CONTEXT (context
);
4175 g_main_context_remove_poll_unlocked (GMainContext
*context
,
4178 GPollRec
*pollrec
, *prevrec
, *nextrec
;
4181 pollrec
= context
->poll_records
;
4185 nextrec
= pollrec
->next
;
4186 if (pollrec
->fd
== fd
)
4188 if (prevrec
!= NULL
)
4189 prevrec
->next
= nextrec
;
4191 context
->poll_records
= nextrec
;
4193 if (nextrec
!= NULL
)
4194 nextrec
->prev
= prevrec
;
4196 context
->poll_records_tail
= prevrec
;
4198 g_slice_free (GPollRec
, pollrec
);
4200 context
->n_poll_records
--;
4207 context
->poll_changed
= TRUE
;
4209 /* Now wake up the main loop if it is waiting in the poll() */
4210 g_wakeup_signal (context
->wakeup
);
4214 * g_source_get_current_time:
4215 * @source: a #GSource
4216 * @timeval: #GTimeVal structure in which to store current time.
4218 * This function ignores @source and is otherwise the same as
4219 * g_get_current_time().
4221 * Deprecated: 2.28: use g_source_get_time() instead
4224 g_source_get_current_time (GSource
*source
,
4227 g_get_current_time (timeval
);
4231 * g_source_get_time:
4232 * @source: a #GSource
4234 * Gets the time to be used when checking this source. The advantage of
4235 * calling this function over calling g_get_monotonic_time() directly is
4236 * that when checking multiple sources, GLib can cache a single value
4237 * instead of having to repeatedly get the system monotonic time.
4239 * The time here is the system monotonic time, if available, or some
4240 * other reasonable alternative otherwise. See g_get_monotonic_time().
4242 * Returns: the monotonic time in microseconds
4247 g_source_get_time (GSource
*source
)
4249 GMainContext
*context
;
4252 g_return_val_if_fail (source
->context
!= NULL
, 0);
4254 context
= source
->context
;
4256 LOCK_CONTEXT (context
);
4258 if (!context
->time_is_fresh
)
4260 context
->time
= g_get_monotonic_time ();
4261 context
->time_is_fresh
= TRUE
;
4264 result
= context
->time
;
4266 UNLOCK_CONTEXT (context
);
4272 * g_main_context_set_poll_func:
4273 * @context: a #GMainContext
4274 * @func: the function to call to poll all file descriptors
4276 * Sets the function to use to handle polling of file descriptors. It
4277 * will be used instead of the poll() system call
4278 * (or GLib's replacement function, which is used where
4279 * poll() isn't available).
4281 * This function could possibly be used to integrate the GLib event
4282 * loop with an external event loop.
4285 g_main_context_set_poll_func (GMainContext
*context
,
4289 context
= g_main_context_default ();
4291 g_return_if_fail (g_atomic_int_get (&context
->ref_count
) > 0);
4293 LOCK_CONTEXT (context
);
4296 context
->poll_func
= func
;
4298 context
->poll_func
= g_poll
;
4300 UNLOCK_CONTEXT (context
);
4304 * g_main_context_get_poll_func:
4305 * @context: a #GMainContext
4307 * Gets the poll function set by g_main_context_set_poll_func().
4309 * Returns: the poll function
4312 g_main_context_get_poll_func (GMainContext
*context
)
4317 context
= g_main_context_default ();
4319 g_return_val_if_fail (g_atomic_int_get (&context
->ref_count
) > 0, NULL
);
4321 LOCK_CONTEXT (context
);
4322 result
= context
->poll_func
;
4323 UNLOCK_CONTEXT (context
);
4329 * g_main_context_wakeup:
4330 * @context: a #GMainContext
4332 * If @context is currently blocking in g_main_context_iteration()
4333 * waiting for a source to become ready, cause it to stop blocking
4334 * and return. Otherwise, cause the next invocation of
4335 * g_main_context_iteration() to return without blocking.
4337 * This API is useful for low-level control over #GMainContext; for
4338 * example, integrating it with main loop implementations such as
4341 * Another related use for this function is when implementing a main
4342 * loop with a termination condition, computed from multiple threads:
4344 * |[<!-- language="C" -->
4345 * #define NUM_TASKS 10
4346 * static volatile gint tasks_remaining = NUM_TASKS;
4349 * while (g_atomic_int_get (&tasks_remaining) != 0)
4350 * g_main_context_iteration (NULL, TRUE);
4354 * |[<!-- language="C" -->
4357 * if (g_atomic_int_dec_and_test (&tasks_remaining))
4358 * g_main_context_wakeup (NULL);
4362 g_main_context_wakeup (GMainContext
*context
)
4365 context
= g_main_context_default ();
4367 g_return_if_fail (g_atomic_int_get (&context
->ref_count
) > 0);
4369 g_wakeup_signal (context
->wakeup
);
4373 * g_main_context_is_owner:
4374 * @context: a #GMainContext
4376 * Determines whether this thread holds the (recursive)
4377 * ownership of this #GMainContext. This is useful to
4378 * know before waiting on another thread that may be
4379 * blocking to get ownership of @context.
4381 * Returns: %TRUE if current thread is owner of @context.
4386 g_main_context_is_owner (GMainContext
*context
)
4391 context
= g_main_context_default ();
4393 LOCK_CONTEXT (context
);
4394 is_owner
= context
->owner
== G_THREAD_SELF
;
4395 UNLOCK_CONTEXT (context
);
4403 g_timeout_set_expiration (GTimeoutSource
*timeout_source
,
4404 gint64 current_time
)
4408 expiration
= current_time
+ (guint64
) timeout_source
->interval
* 1000;
4410 if (timeout_source
->seconds
)
4413 static gint timer_perturb
= -1;
4415 if (timer_perturb
== -1)
4418 * we want a per machine/session unique 'random' value; try the dbus
4419 * address first, that has a UUID in it. If there is no dbus, use the
4420 * hostname for hashing.
4422 const char *session_bus_address
= g_getenv ("DBUS_SESSION_BUS_ADDRESS");
4423 if (!session_bus_address
)
4424 session_bus_address
= g_getenv ("HOSTNAME");
4425 if (session_bus_address
)
4426 timer_perturb
= ABS ((gint
) g_str_hash (session_bus_address
)) % 1000000;
4431 /* We want the microseconds part of the timeout to land on the
4432 * 'timer_perturb' mark, but we need to make sure we don't try to
4433 * set the timeout in the past. We do this by ensuring that we
4434 * always only *increase* the expiration time by adding a full
4435 * second in the case that the microsecond portion decreases.
4437 expiration
-= timer_perturb
;
4439 remainder
= expiration
% 1000000;
4440 if (remainder
>= 1000000/4)
4441 expiration
+= 1000000;
4443 expiration
-= remainder
;
4444 expiration
+= timer_perturb
;
4447 g_source_set_ready_time ((GSource
*) timeout_source
, expiration
);
4451 g_timeout_dispatch (GSource
*source
,
4452 GSourceFunc callback
,
4455 GTimeoutSource
*timeout_source
= (GTimeoutSource
*)source
;
4460 g_warning ("Timeout source dispatched without callback\n"
4461 "You must call g_source_set_callback().");
4465 again
= callback (user_data
);
4468 g_timeout_set_expiration (timeout_source
, g_source_get_time (source
));
4474 * g_timeout_source_new:
4475 * @interval: the timeout interval in milliseconds.
4477 * Creates a new timeout source.
4479 * The source will not initially be associated with any #GMainContext
4480 * and must be added to one with g_source_attach() before it will be
4483 * The interval given is in terms of monotonic time, not wall clock
4484 * time. See g_get_monotonic_time().
4486 * Returns: the newly-created timeout source
4489 g_timeout_source_new (guint interval
)
4491 GSource
*source
= g_source_new (&g_timeout_funcs
, sizeof (GTimeoutSource
));
4492 GTimeoutSource
*timeout_source
= (GTimeoutSource
*)source
;
4494 timeout_source
->interval
= interval
;
4495 g_timeout_set_expiration (timeout_source
, g_get_monotonic_time ());
4501 * g_timeout_source_new_seconds:
4502 * @interval: the timeout interval in seconds
4504 * Creates a new timeout source.
4506 * The source will not initially be associated with any #GMainContext
4507 * and must be added to one with g_source_attach() before it will be
4510 * The scheduling granularity/accuracy of this timeout source will be
4513 * The interval given in terms of monotonic time, not wall clock time.
4514 * See g_get_monotonic_time().
4516 * Returns: the newly-created timeout source
4521 g_timeout_source_new_seconds (guint interval
)
4523 GSource
*source
= g_source_new (&g_timeout_funcs
, sizeof (GTimeoutSource
));
4524 GTimeoutSource
*timeout_source
= (GTimeoutSource
*)source
;
4526 timeout_source
->interval
= 1000 * interval
;
4527 timeout_source
->seconds
= TRUE
;
4529 g_timeout_set_expiration (timeout_source
, g_get_monotonic_time ());
4536 * g_timeout_add_full:
4537 * @priority: the priority of the timeout source. Typically this will be in
4538 * the range between #G_PRIORITY_DEFAULT and #G_PRIORITY_HIGH.
4539 * @interval: the time between calls to the function, in milliseconds
4540 * (1/1000ths of a second)
4541 * @function: function to call
4542 * @data: data to pass to @function
4543 * @notify: (allow-none): function to call when the timeout is removed, or %NULL
4545 * Sets a function to be called at regular intervals, with the given
4546 * priority. The function is called repeatedly until it returns
4547 * %FALSE, at which point the timeout is automatically destroyed and
4548 * the function will not be called again. The @notify function is
4549 * called when the timeout is destroyed. The first call to the
4550 * function will be at the end of the first @interval.
4552 * Note that timeout functions may be delayed, due to the processing of other
4553 * event sources. Thus they should not be relied on for precise timing.
4554 * After each call to the timeout function, the time of the next
4555 * timeout is recalculated based on the current time and the given interval
4556 * (it does not try to 'catch up' time lost in delays).
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.
4562 * The interval given in terms of monotonic time, not wall clock time.
4563 * See g_get_monotonic_time().
4565 * Returns: the ID (greater than 0) of the event source.
4566 * Rename to: g_timeout_add
4569 g_timeout_add_full (gint priority
,
4571 GSourceFunc function
,
4573 GDestroyNotify notify
)
4578 g_return_val_if_fail (function
!= NULL
, 0);
4580 source
= g_timeout_source_new (interval
);
4582 if (priority
!= G_PRIORITY_DEFAULT
)
4583 g_source_set_priority (source
, priority
);
4585 g_source_set_callback (source
, function
, data
, notify
);
4586 id
= g_source_attach (source
, NULL
);
4587 g_source_unref (source
);
4594 * @interval: the time between calls to the function, in milliseconds
4595 * (1/1000ths of a second)
4596 * @function: function to call
4597 * @data: data to pass to @function
4599 * Sets a function to be called at regular intervals, with the default
4600 * priority, #G_PRIORITY_DEFAULT. The function is called repeatedly
4601 * until it returns %FALSE, at which point the timeout is automatically
4602 * destroyed and the function will not be called again. The first call
4603 * to the function will be at the end of the first @interval.
4605 * Note that timeout functions may be delayed, due to the processing of other
4606 * event sources. Thus they should not be relied on for precise timing.
4607 * After each call to the timeout function, the time of the next
4608 * timeout is recalculated based on the current time and the given interval
4609 * (it does not try to 'catch up' time lost in delays).
4611 * If you want to have a timer in the "seconds" range and do not care
4612 * about the exact time of the first call of the timer, use the
4613 * g_timeout_add_seconds() function; this function allows for more
4614 * optimizations and more efficient system power usage.
4616 * This internally creates a main loop source using g_timeout_source_new()
4617 * and attaches it to the main loop context using g_source_attach(). You can
4618 * do these steps manually if you need greater control.
4620 * The interval given is in terms of monotonic time, not wall clock
4621 * time. See g_get_monotonic_time().
4623 * Returns: the ID (greater than 0) of the event source.
4626 g_timeout_add (guint32 interval
,
4627 GSourceFunc function
,
4630 return g_timeout_add_full (G_PRIORITY_DEFAULT
,
4631 interval
, function
, data
, NULL
);
4635 * g_timeout_add_seconds_full:
4636 * @priority: the priority of the timeout source. Typically this will be in
4637 * the range between #G_PRIORITY_DEFAULT and #G_PRIORITY_HIGH.
4638 * @interval: the time between calls to the function, in seconds
4639 * @function: function to call
4640 * @data: data to pass to @function
4641 * @notify: (allow-none): function to call when the timeout is removed, or %NULL
4643 * Sets a function to be called at regular intervals, with @priority.
4644 * The function is called repeatedly until it returns %FALSE, at which
4645 * point the timeout is automatically destroyed and the function will
4646 * not be called again.
4648 * Unlike g_timeout_add(), this function operates at whole second granularity.
4649 * The initial starting point of the timer is determined by the implementation
4650 * and the implementation is expected to group multiple timers together so that
4651 * they fire all at the same time.
4652 * To allow this grouping, the @interval to the first timer is rounded
4653 * and can deviate up to one second from the specified interval.
4654 * Subsequent timer iterations will generally run at the specified interval.
4656 * Note that timeout functions may be delayed, due to the processing of other
4657 * event sources. Thus they should not be relied on for precise timing.
4658 * After each call to the timeout function, the time of the next
4659 * timeout is recalculated based on the current time and the given @interval
4661 * If you want timing more precise than whole seconds, use g_timeout_add()
4664 * The grouping of timers to fire at the same time results in a more power
4665 * and CPU efficient behavior so if your timer is in multiples of seconds
4666 * and you don't require the first timer exactly one second from now, the
4667 * use of g_timeout_add_seconds() is preferred over g_timeout_add().
4669 * This internally creates a main loop source using
4670 * g_timeout_source_new_seconds() and attaches it to the main loop context
4671 * using g_source_attach(). You can do these steps manually if you need
4674 * The interval given is in terms of monotonic time, not wall clock
4675 * time. See g_get_monotonic_time().
4677 * Returns: the ID (greater than 0) of the event source.
4679 * Rename to: g_timeout_add_seconds
4683 g_timeout_add_seconds_full (gint priority
,
4685 GSourceFunc function
,
4687 GDestroyNotify notify
)
4692 g_return_val_if_fail (function
!= NULL
, 0);
4694 source
= g_timeout_source_new_seconds (interval
);
4696 if (priority
!= G_PRIORITY_DEFAULT
)
4697 g_source_set_priority (source
, priority
);
4699 g_source_set_callback (source
, function
, data
, notify
);
4700 id
= g_source_attach (source
, NULL
);
4701 g_source_unref (source
);
4707 * g_timeout_add_seconds:
4708 * @interval: the time between calls to the function, in seconds
4709 * @function: function to call
4710 * @data: data to pass to @function
4712 * Sets a function to be called at regular intervals with the default
4713 * priority, #G_PRIORITY_DEFAULT. The function is called repeatedly until
4714 * it returns %FALSE, at which point the timeout is automatically destroyed
4715 * and the function will not be called again.
4717 * This internally creates a main loop source using
4718 * g_timeout_source_new_seconds() and attaches it to the main loop context
4719 * using g_source_attach(). You can do these steps manually if you need
4720 * greater control. Also see g_timeout_add_seconds_full().
4722 * Note that the first call of the timer may not be precise for timeouts
4723 * of one second. If you need finer precision and have such a timeout,
4724 * you may want to use g_timeout_add() instead.
4726 * The interval given is in terms of monotonic time, not wall clock
4727 * time. See g_get_monotonic_time().
4729 * Returns: the ID (greater than 0) of the event source.
4734 g_timeout_add_seconds (guint interval
,
4735 GSourceFunc function
,
4738 g_return_val_if_fail (function
!= NULL
, 0);
4740 return g_timeout_add_seconds_full (G_PRIORITY_DEFAULT
, interval
, function
, data
, NULL
);
4743 /* Child watch functions */
4748 g_child_watch_prepare (GSource
*source
,
4756 g_child_watch_check (GSource
*source
)
4758 GChildWatchSource
*child_watch_source
;
4759 gboolean child_exited
;
4761 child_watch_source
= (GChildWatchSource
*) source
;
4763 child_exited
= child_watch_source
->poll
.revents
& G_IO_IN
;
4770 * Note: We do _not_ check for the special value of STILL_ACTIVE
4771 * since we know that the process has exited and doing so runs into
4772 * problems if the child process "happens to return STILL_ACTIVE(259)"
4773 * as Microsoft's Platform SDK puts it.
4775 if (!GetExitCodeProcess (child_watch_source
->pid
, &child_status
))
4777 gchar
*emsg
= g_win32_error_message (GetLastError ());
4778 g_warning (G_STRLOC
": GetExitCodeProcess() failed: %s", emsg
);
4781 child_watch_source
->child_status
= -1;
4784 child_watch_source
->child_status
= child_status
;
4787 return child_exited
;
4791 g_child_watch_finalize (GSource
*source
)
4795 #else /* G_OS_WIN32 */
4798 wake_source (GSource
*source
)
4800 GMainContext
*context
;
4802 /* This should be thread-safe:
4804 * - if the source is currently being added to a context, that
4805 * context will be woken up anyway
4807 * - if the source is currently being destroyed, we simply need not
4810 * - the memory for the source will remain valid until after the
4811 * source finalize function was called (which would remove the
4812 * source from the global list which we are currently holding the
4815 * - the GMainContext will either be NULL or point to a live
4818 * - the GMainContext will remain valid since we hold the
4819 * main_context_list lock
4821 * Since we are holding a lot of locks here, don't try to enter any
4822 * more GMainContext functions for fear of dealock -- just hit the
4823 * GWakeup and run. Even if that's safe now, it could easily become
4824 * unsafe with some very minor changes in the future, and signal
4825 * handling is not the most well-tested codepath.
4827 G_LOCK(main_context_list
);
4828 context
= source
->context
;
4830 g_wakeup_signal (context
->wakeup
);
4831 G_UNLOCK(main_context_list
);
4835 dispatch_unix_signals_unlocked (void)
4837 gboolean pending
[NSIG
];
4841 /* clear this first incase another one arrives while we're processing */
4842 any_unix_signal_pending
= FALSE
;
4844 /* We atomically test/clear the bit from the global array in case
4845 * other signals arrive while we are dispatching.
4847 * We then can safely use our own array below without worrying about
4850 for (i
= 0; i
< NSIG
; i
++)
4852 /* Be very careful with (the volatile) unix_signal_pending.
4854 * We must ensure that it's not possible that we clear it without
4855 * handling the signal. We therefore must ensure that our pending
4856 * array has a field set (ie: we will do something about the
4857 * signal) before we clear the item in unix_signal_pending.
4859 * Note specifically: we must check _our_ array.
4861 pending
[i
] = unix_signal_pending
[i
];
4863 unix_signal_pending
[i
] = FALSE
;
4866 /* handle GChildWatchSource instances */
4867 if (pending
[SIGCHLD
])
4869 /* The only way we can do this is to scan all of the children.
4871 * The docs promise that we will not reap children that we are not
4872 * explicitly watching, so that ties our hands from calling
4873 * waitpid(-1). We also can't use siginfo's si_pid field since if
4874 * multiple SIGCHLD arrive at the same time, one of them can be
4875 * dropped (since a given UNIX signal can only be pending once).
4877 for (node
= unix_child_watches
; node
; node
= node
->next
)
4879 GChildWatchSource
*source
= node
->data
;
4881 if (!source
->child_exited
)
4886 g_assert (source
->pid
> 0);
4888 pid
= waitpid (source
->pid
, &source
->child_status
, WNOHANG
);
4891 source
->child_exited
= TRUE
;
4892 wake_source ((GSource
*) source
);
4894 else if (pid
== -1 && errno
== ECHILD
)
4896 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.");
4897 source
->child_exited
= TRUE
;
4898 source
->child_status
= 0;
4899 wake_source ((GSource
*) source
);
4902 while (pid
== -1 && errno
== EINTR
);
4907 /* handle GUnixSignalWatchSource instances */
4908 for (node
= unix_signal_watches
; node
; node
= node
->next
)
4910 GUnixSignalWatchSource
*source
= node
->data
;
4912 if (!source
->pending
)
4914 if (pending
[source
->signum
])
4916 source
->pending
= TRUE
;
4918 wake_source ((GSource
*) source
);
4926 dispatch_unix_signals (void)
4928 G_LOCK(unix_signal_lock
);
4929 dispatch_unix_signals_unlocked ();
4930 G_UNLOCK(unix_signal_lock
);
4934 g_child_watch_prepare (GSource
*source
,
4937 GChildWatchSource
*child_watch_source
;
4939 child_watch_source
= (GChildWatchSource
*) source
;
4941 return child_watch_source
->child_exited
;
4945 g_child_watch_check (GSource
*source
)
4947 GChildWatchSource
*child_watch_source
;
4949 child_watch_source
= (GChildWatchSource
*) source
;
4951 return child_watch_source
->child_exited
;
4955 g_unix_signal_watch_prepare (GSource
*source
,
4958 GUnixSignalWatchSource
*unix_signal_source
;
4960 unix_signal_source
= (GUnixSignalWatchSource
*) source
;
4962 return unix_signal_source
->pending
;
4966 g_unix_signal_watch_check (GSource
*source
)
4968 GUnixSignalWatchSource
*unix_signal_source
;
4970 unix_signal_source
= (GUnixSignalWatchSource
*) source
;
4972 return unix_signal_source
->pending
;
4976 g_unix_signal_watch_dispatch (GSource
*source
,
4977 GSourceFunc callback
,
4980 GUnixSignalWatchSource
*unix_signal_source
;
4983 unix_signal_source
= (GUnixSignalWatchSource
*) source
;
4987 g_warning ("Unix signal source dispatched without callback\n"
4988 "You must call g_source_set_callback().");
4992 again
= (callback
) (user_data
);
4994 unix_signal_source
->pending
= FALSE
;
5000 ref_unix_signal_handler_unlocked (int signum
)
5002 /* Ensure we have the worker context */
5003 g_get_worker_context ();
5004 unix_signal_refcount
[signum
]++;
5005 if (unix_signal_refcount
[signum
] == 1)
5007 struct sigaction action
;
5008 action
.sa_handler
= g_unix_signal_handler
;
5009 sigemptyset (&action
.sa_mask
);
5011 action
.sa_flags
= SA_RESTART
| SA_NOCLDSTOP
;
5013 action
.sa_flags
= SA_NOCLDSTOP
;
5015 sigaction (signum
, &action
, NULL
);
5020 unref_unix_signal_handler_unlocked (int signum
)
5022 unix_signal_refcount
[signum
]--;
5023 if (unix_signal_refcount
[signum
] == 0)
5025 struct sigaction action
;
5026 memset (&action
, 0, sizeof (action
));
5027 action
.sa_handler
= SIG_DFL
;
5028 sigemptyset (&action
.sa_mask
);
5029 sigaction (signum
, &action
, NULL
);
5034 _g_main_create_unix_signal_watch (int signum
)
5037 GUnixSignalWatchSource
*unix_signal_source
;
5039 source
= g_source_new (&g_unix_signal_funcs
, sizeof (GUnixSignalWatchSource
));
5040 unix_signal_source
= (GUnixSignalWatchSource
*) source
;
5042 unix_signal_source
->signum
= signum
;
5043 unix_signal_source
->pending
= FALSE
;
5045 G_LOCK (unix_signal_lock
);
5046 ref_unix_signal_handler_unlocked (signum
);
5047 unix_signal_watches
= g_slist_prepend (unix_signal_watches
, unix_signal_source
);
5048 dispatch_unix_signals_unlocked ();
5049 G_UNLOCK (unix_signal_lock
);
5055 g_unix_signal_watch_finalize (GSource
*source
)
5057 GUnixSignalWatchSource
*unix_signal_source
;
5059 unix_signal_source
= (GUnixSignalWatchSource
*) source
;
5061 G_LOCK (unix_signal_lock
);
5062 unref_unix_signal_handler_unlocked (unix_signal_source
->signum
);
5063 unix_signal_watches
= g_slist_remove (unix_signal_watches
, source
);
5064 G_UNLOCK (unix_signal_lock
);
5068 g_child_watch_finalize (GSource
*source
)
5070 G_LOCK (unix_signal_lock
);
5071 unix_child_watches
= g_slist_remove (unix_child_watches
, source
);
5072 unref_unix_signal_handler_unlocked (SIGCHLD
);
5073 G_UNLOCK (unix_signal_lock
);
5076 #endif /* G_OS_WIN32 */
5079 g_child_watch_dispatch (GSource
*source
,
5080 GSourceFunc callback
,
5083 GChildWatchSource
*child_watch_source
;
5084 GChildWatchFunc child_watch_callback
= (GChildWatchFunc
) callback
;
5086 child_watch_source
= (GChildWatchSource
*) source
;
5090 g_warning ("Child watch source dispatched without callback\n"
5091 "You must call g_source_set_callback().");
5095 (child_watch_callback
) (child_watch_source
->pid
, child_watch_source
->child_status
, user_data
);
5097 /* We never keep a child watch source around as the child is gone */
5104 g_unix_signal_handler (int signum
)
5106 unix_signal_pending
[signum
] = TRUE
;
5107 any_unix_signal_pending
= TRUE
;
5109 g_wakeup_signal (glib_worker_context
->wakeup
);
5112 #endif /* !G_OS_WIN32 */
5115 * g_child_watch_source_new:
5116 * @pid: process to watch. On POSIX the positive pid of a child process. On
5117 * Windows a handle for a process (which doesn't have to be a child).
5119 * Creates a new child_watch source.
5121 * The source will not initially be associated with any #GMainContext
5122 * and must be added to one with g_source_attach() before it will be
5125 * Note that child watch sources can only be used in conjunction with
5126 * `g_spawn...` when the %G_SPAWN_DO_NOT_REAP_CHILD flag is used.
5128 * Note that on platforms where #GPid must be explicitly closed
5129 * (see g_spawn_close_pid()) @pid must not be closed while the
5130 * source is still active. Typically, you will want to call
5131 * g_spawn_close_pid() in the callback function for the source.
5133 * Note further that using g_child_watch_source_new() is not
5134 * compatible with calling `waitpid` with a nonpositive first
5135 * argument in the application. Calling waitpid() for individual
5136 * pids will still work fine.
5138 * Similarly, on POSIX platforms, the @pid passed to this function must
5139 * be greater than 0 (i.e. this function must wait for a specific child,
5140 * and cannot wait for one of many children by using a nonpositive argument).
5142 * Returns: the newly-created child watch source
5147 g_child_watch_source_new (GPid pid
)
5150 GChildWatchSource
*child_watch_source
;
5153 g_return_val_if_fail (pid
> 0, NULL
);
5156 source
= g_source_new (&g_child_watch_funcs
, sizeof (GChildWatchSource
));
5157 child_watch_source
= (GChildWatchSource
*)source
;
5159 child_watch_source
->pid
= pid
;
5162 child_watch_source
->poll
.fd
= (gintptr
) pid
;
5163 child_watch_source
->poll
.events
= G_IO_IN
;
5165 g_source_add_poll (source
, &child_watch_source
->poll
);
5166 #else /* G_OS_WIN32 */
5167 G_LOCK (unix_signal_lock
);
5168 ref_unix_signal_handler_unlocked (SIGCHLD
);
5169 unix_child_watches
= g_slist_prepend (unix_child_watches
, child_watch_source
);
5170 if (waitpid (pid
, &child_watch_source
->child_status
, WNOHANG
) > 0)
5171 child_watch_source
->child_exited
= TRUE
;
5172 G_UNLOCK (unix_signal_lock
);
5173 #endif /* G_OS_WIN32 */
5179 * g_child_watch_add_full:
5180 * @priority: the priority of the idle source. Typically this will be in the
5181 * range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.
5182 * @pid: process to watch. On POSIX the positive pid of a child process. On
5183 * Windows a handle for a process (which doesn't have to be a child).
5184 * @function: function to call
5185 * @data: data to pass to @function
5186 * @notify: (allow-none): function to call when the idle is removed, or %NULL
5188 * Sets a function to be called when the child indicated by @pid
5189 * exits, at the priority @priority.
5191 * If you obtain @pid from g_spawn_async() or g_spawn_async_with_pipes()
5192 * you will need to pass #G_SPAWN_DO_NOT_REAP_CHILD as flag to
5193 * the spawn function for the child watching to work.
5195 * In many programs, you will want to call g_spawn_check_exit_status()
5196 * in the callback to determine whether or not the child exited
5199 * Also, note that on platforms where #GPid must be explicitly closed
5200 * (see g_spawn_close_pid()) @pid must not be closed while the source
5201 * is still active. Typically, you should invoke g_spawn_close_pid()
5202 * in the callback function for the source.
5204 * GLib supports only a single callback per process id.
5206 * This internally creates a main loop source using
5207 * g_child_watch_source_new() and attaches it to the main loop context
5208 * using g_source_attach(). You can do these steps manually if you
5209 * need greater control.
5211 * Returns: the ID (greater than 0) of the event source.
5213 * Rename to: g_child_watch_add
5217 g_child_watch_add_full (gint priority
,
5219 GChildWatchFunc function
,
5221 GDestroyNotify notify
)
5226 g_return_val_if_fail (function
!= NULL
, 0);
5228 g_return_val_if_fail (pid
> 0, 0);
5231 source
= g_child_watch_source_new (pid
);
5233 if (priority
!= G_PRIORITY_DEFAULT
)
5234 g_source_set_priority (source
, priority
);
5236 g_source_set_callback (source
, (GSourceFunc
) function
, data
, notify
);
5237 id
= g_source_attach (source
, NULL
);
5238 g_source_unref (source
);
5244 * g_child_watch_add:
5245 * @pid: process id to watch. On POSIX the positive pid of a child
5246 * process. On Windows a handle for a process (which doesn't have to be
5248 * @function: function to call
5249 * @data: data to pass to @function
5251 * Sets a function to be called when the child indicated by @pid
5252 * exits, at a default priority, #G_PRIORITY_DEFAULT.
5254 * If you obtain @pid from g_spawn_async() or g_spawn_async_with_pipes()
5255 * you will need to pass #G_SPAWN_DO_NOT_REAP_CHILD as flag to
5256 * the spawn function for the child watching to work.
5258 * Note that on platforms where #GPid must be explicitly closed
5259 * (see g_spawn_close_pid()) @pid must not be closed while the
5260 * source is still active. Typically, you will want to call
5261 * g_spawn_close_pid() in the callback function for the source.
5263 * GLib supports only a single callback per process id.
5265 * This internally creates a main loop source using
5266 * g_child_watch_source_new() and attaches it to the main loop context
5267 * using g_source_attach(). You can do these steps manually if you
5268 * need greater control.
5270 * Returns: the ID (greater than 0) of the event source.
5275 g_child_watch_add (GPid pid
,
5276 GChildWatchFunc function
,
5279 return g_child_watch_add_full (G_PRIORITY_DEFAULT
, pid
, function
, data
, NULL
);
5283 /* Idle functions */
5286 g_idle_prepare (GSource
*source
,
5295 g_idle_check (GSource
*source
)
5301 g_idle_dispatch (GSource
*source
,
5302 GSourceFunc callback
,
5307 g_warning ("Idle source dispatched without callback\n"
5308 "You must call g_source_set_callback().");
5312 return callback (user_data
);
5316 * g_idle_source_new:
5318 * Creates a new idle source.
5320 * The source will not initially be associated with any #GMainContext
5321 * and must be added to one with g_source_attach() before it will be
5322 * executed. Note that the default priority for idle sources is
5323 * %G_PRIORITY_DEFAULT_IDLE, as compared to other sources which
5324 * have a default priority of %G_PRIORITY_DEFAULT.
5326 * Returns: the newly-created idle source
5329 g_idle_source_new (void)
5333 source
= g_source_new (&g_idle_funcs
, sizeof (GSource
));
5334 g_source_set_priority (source
, G_PRIORITY_DEFAULT_IDLE
);
5341 * @priority: the priority of the idle source. Typically this will be in the
5342 * range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.
5343 * @function: function to call
5344 * @data: data to pass to @function
5345 * @notify: (allow-none): function to call when the idle is removed, or %NULL
5347 * Adds a function to be called whenever there are no higher priority
5348 * events pending. If the function returns %FALSE it is automatically
5349 * removed from the list of event sources and will not be called again.
5351 * This internally creates a main loop source using g_idle_source_new()
5352 * and attaches it to the main loop context using g_source_attach().
5353 * You can do these steps manually if you need greater control.
5355 * Returns: the ID (greater than 0) of the event source.
5356 * Rename to: g_idle_add
5359 g_idle_add_full (gint priority
,
5360 GSourceFunc function
,
5362 GDestroyNotify notify
)
5367 g_return_val_if_fail (function
!= NULL
, 0);
5369 source
= g_idle_source_new ();
5371 if (priority
!= G_PRIORITY_DEFAULT_IDLE
)
5372 g_source_set_priority (source
, priority
);
5374 g_source_set_callback (source
, function
, data
, notify
);
5375 id
= g_source_attach (source
, NULL
);
5376 g_source_unref (source
);
5383 * @function: function to call
5384 * @data: data to pass to @function.
5386 * Adds a function to be called whenever there are no higher priority
5387 * events pending to the default main loop. The function is given the
5388 * default idle priority, #G_PRIORITY_DEFAULT_IDLE. If the function
5389 * returns %FALSE it is automatically removed from the list of event
5390 * sources and will not be called again.
5392 * This internally creates a main loop source using g_idle_source_new()
5393 * and attaches it to the main loop context using g_source_attach().
5394 * You can do these steps manually if you need greater control.
5396 * Returns: the ID (greater than 0) of the event source.
5399 g_idle_add (GSourceFunc function
,
5402 return g_idle_add_full (G_PRIORITY_DEFAULT_IDLE
, function
, data
, NULL
);
5406 * g_idle_remove_by_data:
5407 * @data: the data for the idle source's callback.
5409 * Removes the idle function with the given data.
5411 * Returns: %TRUE if an idle source was found and removed.
5414 g_idle_remove_by_data (gpointer data
)
5416 return g_source_remove_by_funcs_user_data (&g_idle_funcs
, data
);
5420 * g_main_context_invoke:
5421 * @context: (allow-none): a #GMainContext, or %NULL
5422 * @function: function to call
5423 * @data: data to pass to @function
5425 * Invokes a function in such a way that @context is owned during the
5426 * invocation of @function.
5428 * If @context is %NULL then the global default main context — as
5429 * returned by g_main_context_default() — is used.
5431 * If @context is owned by the current thread, @function is called
5432 * directly. Otherwise, if @context is the thread-default main context
5433 * of the current thread and g_main_context_acquire() succeeds, then
5434 * @function is called and g_main_context_release() is called
5437 * In any other case, an idle source is created to call @function and
5438 * that source is attached to @context (presumably to be run in another
5439 * thread). The idle source is attached with #G_PRIORITY_DEFAULT
5440 * priority. If you want a different priority, use
5441 * g_main_context_invoke_full().
5443 * Note that, as with normal idle functions, @function should probably
5444 * return %FALSE. If it returns %TRUE, it will be continuously run in a
5445 * loop (and may prevent this call from returning).
5450 g_main_context_invoke (GMainContext
*context
,
5451 GSourceFunc function
,
5454 g_main_context_invoke_full (context
,
5456 function
, data
, NULL
);
5460 * g_main_context_invoke_full:
5461 * @context: (allow-none): a #GMainContext, or %NULL
5462 * @priority: the priority at which to run @function
5463 * @function: function to call
5464 * @data: data to pass to @function
5465 * @notify: (allow-none): a function to call when @data is no longer in use, or %NULL.
5467 * Invokes a function in such a way that @context is owned during the
5468 * invocation of @function.
5470 * This function is the same as g_main_context_invoke() except that it
5471 * lets you specify the priority incase @function ends up being
5472 * scheduled as an idle and also lets you give a #GDestroyNotify for @data.
5474 * @notify should not assume that it is called from any particular
5475 * thread or with any particular context acquired.
5480 g_main_context_invoke_full (GMainContext
*context
,
5482 GSourceFunc function
,
5484 GDestroyNotify notify
)
5486 g_return_if_fail (function
!= NULL
);
5489 context
= g_main_context_default ();
5491 if (g_main_context_is_owner (context
))
5493 while (function (data
));
5500 GMainContext
*thread_default
;
5502 thread_default
= g_main_context_get_thread_default ();
5504 if (!thread_default
)
5505 thread_default
= g_main_context_default ();
5507 if (thread_default
== context
&& g_main_context_acquire (context
))
5509 while (function (data
));
5511 g_main_context_release (context
);
5520 source
= g_idle_source_new ();
5521 g_source_set_priority (source
, priority
);
5522 g_source_set_callback (source
, function
, data
, notify
);
5523 g_source_attach (source
, context
);
5524 g_source_unref (source
);
5530 glib_worker_main (gpointer data
)
5534 g_main_context_iteration (glib_worker_context
, TRUE
);
5537 if (any_unix_signal_pending
)
5538 dispatch_unix_signals ();
5542 return NULL
; /* worst GCC warning message ever... */
5546 g_get_worker_context (void)
5548 static gsize initialised
;
5550 if (g_once_init_enter (&initialised
))
5552 /* mask all signals in the worker thread */
5558 pthread_sigmask (SIG_SETMASK
, &all
, &prev_mask
);
5560 glib_worker_context
= g_main_context_new ();
5561 g_thread_new ("gmain", glib_worker_main
, NULL
);
5563 pthread_sigmask (SIG_SETMASK
, &prev_mask
, NULL
);
5565 g_once_init_leave (&initialised
, TRUE
);
5568 return glib_worker_context
;