Update contrib.
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 2000-2001 Red Hat, Inc.
3 * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * this code is based on the original GtkSignal implementation
21 * for the Gtk+ library by Peter Mattis <petm@xcf.berkeley.edu>
34 #include "gbsearcharray.h"
35 #include "gvaluecollector.h"
36 #include "gvaluetypes.h"
40 #include "gobjectalias.h"
42 #include <glib_global.h>
43 #include "gobject_wsd.h"
44 #endif /* __SYMBIAN32__ */
48 * @short_description: A means for customization of object behaviour
49 * and a general purpose notification mechanism
52 * The basic concept of the signal system is that of the
53 * <emphasis>emission</emphasis> of a signal. Signals are introduced
54 * per-type and are identified through strings. Signals introduced
55 * for a parent type are available in derived types as well, so
56 * basically they are a per-type facility that is inherited. A signal
57 * emission mainly involves invocation of a certain set of callbacks
58 * in precisely defined manner. There are two main categories of such
59 * callbacks, per-object
60 * <footnote><para>Although signals can deal with any kind of instantiatable
61 * type, i'm referring to those types as "object types" in the following,
62 * simply because that is the context most users will encounter signals in.
64 * ones and user provided ones.
65 * The per-object callbacks are most often referred to as "object method
66 * handler" or "default (signal) handler", while user provided callbacks are
67 * usually just called "signal handler".
68 * The object method handler is provided at signal creation time (this most
69 * frequently happens at the end of an object class' creation), while user
70 * provided handlers are frequently connected and disconnected to/from a certain
71 * signal on certain object instances.
73 * A signal emission consists of five stages, unless prematurely stopped:
75 * <varlistentry><term></term><listitem><para>
76 * 1 - Invocation of the object method handler for %G_SIGNAL_RUN_FIRST signals
77 * </para></listitem></varlistentry>
78 * <varlistentry><term></term><listitem><para>
79 * 2 - Invocation of normal user-provided signal handlers (<emphasis>after</emphasis> flag %FALSE)
80 * </para></listitem></varlistentry>
81 * <varlistentry><term></term><listitem><para>
82 * 3 - Invocation of the object method handler for %G_SIGNAL_RUN_LAST signals
83 * </para></listitem></varlistentry>
84 * <varlistentry><term></term><listitem><para>
85 * 4 - Invocation of user provided signal handlers, connected with an <emphasis>after</emphasis> flag of %TRUE
86 * </para></listitem></varlistentry>
87 * <varlistentry><term></term><listitem><para>
88 * 5 - Invocation of the object method handler for %G_SIGNAL_RUN_CLEANUP signals
89 * </para></listitem></varlistentry>
91 * The user-provided signal handlers are called in the order they were
93 * All handlers may prematurely stop a signal emission, and any number of
94 * handlers may be connected, disconnected, blocked or unblocked during
96 * There are certain criteria for skipping user handlers in stages 2 and 4
97 * of a signal emission.
98 * First, user handlers may be <emphasis>blocked</emphasis>, blocked handlers are omitted
99 * during callback invocation, to return from the "blocked" state, a
100 * handler has to get unblocked exactly the same amount of times
101 * it has been blocked before.
102 * Second, upon emission of a %G_SIGNAL_DETAILED signal, an additional
103 * "detail" argument passed in to g_signal_emit() has to match the detail
104 * argument of the signal handler currently subject to invocation.
105 * Specification of no detail argument for signal handlers (omission of the
106 * detail part of the signal specification upon connection) serves as a
107 * wildcard and matches any detail argument passed in to emission.
111 #define REPORT_BUG "please report occurrence circumstances to gtk-devel-list@gnome.org"
112 #ifdef G_ENABLE_DEBUG
113 #define IF_DEBUG(debug_type, cond) if ((_g_type_debug_flags & G_TYPE_DEBUG_ ## debug_type) || cond)
117 PLS(g_trace_instance_signals,gsignal,volatile gpointer )
118 PLS(g_trap_instance_signals,gsignal,volatile gpointer )
120 #define g_trace_instance_signals (*FUNCTION_NAME(g_trace_instance_signals,gsignal)())
121 #define g_trap_instance_signals (*FUNCTION_NAME(g_trap_instance_signals,gsignal)())
125 static volatile gpointer g_trace_instance_signals = NULL;
126 static volatile gpointer g_trap_instance_signals = NULL;
128 #endif /* EMULATOR */
129 #endif /* G_ENABLE_DEBUG */
132 /* --- typedefs --- */
133 typedef struct _SignalNode SignalNode;
134 typedef struct _SignalKey SignalKey;
135 typedef struct _Emission Emission;
136 typedef struct _Handler Handler;
137 typedef struct _HandlerList HandlerList;
138 typedef struct _HandlerMatch HandlerMatch;
148 /* --- prototypes --- */
149 static inline guint signal_id_lookup (GQuark quark,
151 static void signal_destroy_R (SignalNode *signal_node);
152 static inline HandlerList* handler_list_ensure (guint signal_id,
154 static inline HandlerList* handler_list_lookup (guint signal_id,
156 static inline Handler* handler_new (gboolean after);
157 static void handler_insert (guint signal_id,
160 static Handler* handler_lookup (gpointer instance,
163 static inline HandlerMatch* handler_match_prepend (HandlerMatch *list,
166 static inline HandlerMatch* handler_match_free1_R (HandlerMatch *node,
168 static HandlerMatch* handlers_find (gpointer instance,
169 GSignalMatchType mask,
175 gboolean one_and_only);
176 static inline void handler_ref (Handler *handler);
177 static inline void handler_unref_R (guint signal_id,
180 static gint handler_lists_cmp (gconstpointer node1,
181 gconstpointer node2);
182 static inline void emission_push (Emission **emission_list_p,
184 static inline void emission_pop (Emission **emission_list_p,
186 static inline Emission* emission_find (Emission *emission_list,
190 static gint class_closures_cmp (gconstpointer node1,
191 gconstpointer node2);
192 static gint signal_key_cmp (gconstpointer node1,
193 gconstpointer node2);
194 static gboolean signal_emit_unlocked_R (SignalNode *node,
197 GValue *return_value,
198 const GValue *instance_and_params);
199 static const gchar * type_debug_name (GType type);
202 /* --- structures --- */
205 GSignalAccumulator func;
213 #define SIGNAL_HOOK(hook) ((SignalHook*) (hook))
217 /* permanent portion */
223 /* reinitializable portion */
224 guint test_class_offset : 12;
227 GType *param_types; /* mangled with G_SIGNAL_TYPE_STATIC_SCOPE flag */
228 GType return_type; /* mangled with G_SIGNAL_TYPE_STATIC_SCOPE flag */
229 GBSearchArray *class_closure_bsa;
230 SignalAccumulator *accumulator;
231 GSignalCMarshaller c_marshaller;
232 GHookList *emission_hooks;
234 #define MAX_TEST_CLASS_OFFSET (4096) /* 2^12, 12 bits for test_class_offset */
235 #define TEST_CLASS_MAGIC (1) /* indicates NULL class closure, candidate for NOP optimization */
248 GSignalInvocationHint ihint;
257 Handler *tail_before; /* normal signal handlers are appended here */
258 Handler *tail_after; /* CONNECT_AFTER handlers are appended here */
263 gulong sequential_number;
268 guint block_count : 16;
269 #define HANDLER_MAX_BLOCK_COUNT (1 << 16)
282 GType instance_type; /* 0 for default closure */
287 /* --- variables --- */
290 PLS(g_signal_key_bsa,gsignal,GBSearchArray *)
291 PLS(g_signal_hlbsa_bconfig,gsignal,GBSearchConfig)
292 PLS(g_class_closure_bconfig,gsignal,GBSearchConfig)
293 PLS(g_handler_list_bsa_ht,gsignal,GHashTable *)
294 PLS(g_recursive_emissions,gsignal,Emission *)
295 PLS(g_restart_emissions ,gsignal,Emission *)
296 PLS(g_handler_sequential_number ,gsignal,gulong)
297 PLS_MACRO(g_signal_mutex,gsignal,GStaticMutex)
298 PLS(g_n_signal_nodes,gsignal,guint)
299 PLS(g_signal_nodes ,gsignal,SignalNode **)
301 #define g_signal_key_bsa (*FUNCTION_NAME(g_signal_key_bsa,gsignal)())
302 #define g_signal_hlbsa_bconfig (*FUNCTION_NAME(g_signal_hlbsa_bconfig,gsignal)())
303 #define g_class_closure_bconfig (*FUNCTION_NAME(g_class_closure_bconfig,gsignal)())
304 #define g_handler_list_bsa_ht (*FUNCTION_NAME(g_handler_list_bsa_ht,gsignal)())
305 #define g_recursive_emissions (*FUNCTION_NAME(g_recursive_emissions,gsignal)())
306 #define g_restart_emissions (*FUNCTION_NAME(g_restart_emissions ,gsignal)())
307 #define g_handler_sequential_number (*FUNCTION_NAME(g_handler_sequential_number ,gsignal)())
308 #define g__g_signal_mutex_lock (*FUNCTION_NAME_MACRO(g_signal_mutex,gsignal)())
309 #define g_n_signal_nodes (*FUNCTION_NAME(g_n_signal_nodes,gsignal)())
310 #define g_signal_nodes (*FUNCTION_NAME(g_signal_nodes,gsignal)())
312 const GBSearchConfig temp_g_signal_hlbsa_bconfig = {
313 sizeof (HandlerList),
318 const GBSearchConfig temp_g_class_closure_bconfig = {
319 sizeof (ClassClosure),
325 static GBSearchArray *g_signal_key_bsa = NULL;
327 static const GBSearchConfig g_signal_key_bconfig = {
330 G_BSEARCH_ARRAY_ALIGN_POWER2,
333 static GBSearchConfig g_signal_hlbsa_bconfig = {
334 sizeof (HandlerList),
338 static GBSearchConfig g_class_closure_bconfig = {
339 sizeof (ClassClosure),
343 static GHashTable *g_handler_list_bsa_ht = NULL;
344 static Emission *g_recursive_emissions = NULL;
345 static Emission *g_restart_emissions = NULL;
346 static gulong g_handler_sequential_number = 1;
347 G_LOCK_DEFINE_STATIC (g_signal_mutex);
350 #define SIGNAL_LOCK() G_LOCK (g_signal_mutex)
351 #define SIGNAL_UNLOCK() G_UNLOCK (g_signal_mutex)
353 /* --- signal nodes --- */
355 static guint g_n_signal_nodes = 0;
356 static SignalNode **g_signal_nodes = NULL;
358 #endif /* EMULATOR */
360 static inline SignalNode*
361 LOOKUP_SIGNAL_NODE (register guint signal_id)
363 if (signal_id < g_n_signal_nodes)
364 return g_signal_nodes[signal_id];
370 /* --- functions --- */
372 signal_id_lookup (GQuark quark,
375 GType *ifaces, type = itype;
381 /* try looking up signals for this type and its ancestors */
384 SignalKey *signal_key;
387 signal_key = g_bsearch_array_lookup (g_signal_key_bsa, &g_signal_key_bconfig, &key);
390 return signal_key->signal_id;
392 type = g_type_parent (type);
396 /* no luck, try interfaces it exports */
397 ifaces = g_type_interfaces (itype, &n_ifaces);
400 SignalKey *signal_key;
402 key.itype = ifaces[n_ifaces];
403 signal_key = g_bsearch_array_lookup (g_signal_key_bsa, &g_signal_key_bconfig, &key);
408 return signal_key->signal_id;
417 class_closures_cmp (gconstpointer node1,
420 const ClassClosure *c1 = node1, *c2 = node2;
422 return G_BSEARCH_ARRAY_CMP (c1->instance_type, c2->instance_type);
426 handler_lists_cmp (gconstpointer node1,
429 const HandlerList *hlist1 = node1, *hlist2 = node2;
431 return G_BSEARCH_ARRAY_CMP (hlist1->signal_id, hlist2->signal_id);
434 static inline HandlerList*
435 handler_list_ensure (guint signal_id,
438 GBSearchArray *hlbsa = g_hash_table_lookup (g_handler_list_bsa_ht, instance);
441 key.signal_id = signal_id;
443 key.tail_before = NULL;
444 key.tail_after = NULL;
447 hlbsa = g_bsearch_array_create (&g_signal_hlbsa_bconfig);
448 hlbsa = g_bsearch_array_insert (hlbsa, &g_signal_hlbsa_bconfig, &key);
449 g_hash_table_insert (g_handler_list_bsa_ht, instance, hlbsa);
453 GBSearchArray *o = hlbsa;
455 hlbsa = g_bsearch_array_insert (o, &g_signal_hlbsa_bconfig, &key);
457 g_hash_table_insert (g_handler_list_bsa_ht, instance, hlbsa);
459 return g_bsearch_array_lookup (hlbsa, &g_signal_hlbsa_bconfig, &key);
462 static inline HandlerList*
463 handler_list_lookup (guint signal_id,
466 GBSearchArray *hlbsa = g_hash_table_lookup (g_handler_list_bsa_ht, instance);
469 key.signal_id = signal_id;
471 return hlbsa ? g_bsearch_array_lookup (hlbsa, &g_signal_hlbsa_bconfig, &key) : NULL;
475 handler_lookup (gpointer instance,
479 GBSearchArray *hlbsa = g_hash_table_lookup (g_handler_list_bsa_ht, instance);
485 for (i = 0; i < hlbsa->n_nodes; i++)
487 HandlerList *hlist = g_bsearch_array_get_nth (hlbsa, &g_signal_hlbsa_bconfig, i);
490 for (handler = hlist->handlers; handler; handler = handler->next)
491 if (handler->sequential_number == handler_id)
494 *signal_id_p = hlist->signal_id;
504 static inline HandlerMatch*
505 handler_match_prepend (HandlerMatch *list,
511 node = g_slice_new (HandlerMatch);
512 node->handler = handler;
514 node->signal_id = signal_id;
515 handler_ref (handler);
519 static inline HandlerMatch*
520 handler_match_free1_R (HandlerMatch *node,
523 HandlerMatch *next = node->next;
525 handler_unref_R (node->signal_id, instance, node->handler);
526 g_slice_free (HandlerMatch, node);
532 handlers_find (gpointer instance,
533 GSignalMatchType mask,
539 gboolean one_and_only)
541 HandlerMatch *mlist = NULL;
543 if (mask & G_SIGNAL_MATCH_ID)
545 HandlerList *hlist = handler_list_lookup (signal_id, instance);
547 SignalNode *node = NULL;
549 if (mask & G_SIGNAL_MATCH_FUNC)
551 node = LOOKUP_SIGNAL_NODE (signal_id);
552 if (!node || !node->c_marshaller)
557 for (handler = hlist ? hlist->handlers : NULL; handler; handler = handler->next)
558 if (handler->sequential_number &&
559 ((mask & G_SIGNAL_MATCH_DETAIL) || handler->detail == detail) &&
560 ((mask & G_SIGNAL_MATCH_CLOSURE) || handler->closure == closure) &&
561 ((mask & G_SIGNAL_MATCH_DATA) || handler->closure->data == data) &&
562 ((mask & G_SIGNAL_MATCH_UNBLOCKED) || handler->block_count == 0) &&
563 ((mask & G_SIGNAL_MATCH_FUNC) || (handler->closure->marshal == node->c_marshaller &&
564 handler->closure->meta_marshal == 0 &&
565 ((GCClosure*) handler->closure)->callback == func)))
567 mlist = handler_match_prepend (mlist, handler, signal_id);
574 GBSearchArray *hlbsa = g_hash_table_lookup (g_handler_list_bsa_ht, instance);
581 for (i = 0; i < hlbsa->n_nodes; i++)
583 HandlerList *hlist = g_bsearch_array_get_nth (hlbsa, &g_signal_hlbsa_bconfig, i);
584 SignalNode *node = NULL;
587 if (!(mask & G_SIGNAL_MATCH_FUNC))
589 node = LOOKUP_SIGNAL_NODE (hlist->signal_id);
590 if (!node->c_marshaller)
594 for (handler = hlist->handlers; handler; handler = handler->next)
595 if (handler->sequential_number &&
596 ((mask & G_SIGNAL_MATCH_DETAIL) || handler->detail == detail) &&
597 ((mask & G_SIGNAL_MATCH_CLOSURE) || handler->closure == closure) &&
598 ((mask & G_SIGNAL_MATCH_DATA) || handler->closure->data == data) &&
599 ((mask & G_SIGNAL_MATCH_UNBLOCKED) || handler->block_count == 0) &&
600 ((mask & G_SIGNAL_MATCH_FUNC) || (handler->closure->marshal == node->c_marshaller &&
601 handler->closure->meta_marshal == 0 &&
602 ((GCClosure*) handler->closure)->callback == func)))
604 mlist = handler_match_prepend (mlist, handler, hlist->signal_id);
615 static inline Handler*
616 handler_new (gboolean after)
618 Handler *handler = g_slice_new (Handler);
619 #ifndef G_DISABLE_CHECKS
620 if (g_handler_sequential_number < 1)
621 g_error (G_STRLOC ": handler id overflow, %s", REPORT_BUG);
624 handler->sequential_number = g_handler_sequential_number++;
625 handler->prev = NULL;
626 handler->next = NULL;
628 handler->ref_count = 1;
629 handler->block_count = 0;
630 handler->after = after != FALSE;
631 handler->closure = NULL;
637 handler_ref (Handler *handler)
639 g_return_if_fail (handler->ref_count > 0);
641 g_atomic_int_inc ((int *)&handler->ref_count);
645 handler_unref_R (guint signal_id,
651 g_return_if_fail (handler->ref_count > 0);
653 is_zero = g_atomic_int_dec_and_test ((int *)&handler->ref_count);
655 if (G_UNLIKELY (is_zero))
657 HandlerList *hlist = NULL;
660 handler->next->prev = handler->prev;
661 if (handler->prev) /* watch out for g_signal_handlers_destroy()! */
662 handler->prev->next = handler->next;
665 hlist = handler_list_lookup (signal_id, instance);
666 hlist->handlers = handler->next;
671 /* check if we are removing the handler pointed to by tail_before */
672 if (!handler->after && (!handler->next || handler->next->after))
675 hlist = handler_list_lookup (signal_id, instance);
678 g_assert (hlist->tail_before == handler); /* paranoid */
679 hlist->tail_before = handler->prev;
683 /* check if we are removing the handler pointed to by tail_after */
687 hlist = handler_list_lookup (signal_id, instance);
690 g_assert (hlist->tail_after == handler); /* paranoid */
691 hlist->tail_after = handler->prev;
697 g_closure_unref (handler->closure);
699 g_slice_free (Handler, handler);
704 handler_insert (guint signal_id,
710 g_assert (handler->prev == NULL && handler->next == NULL); /* paranoid */
712 hlist = handler_list_ensure (signal_id, instance);
713 if (!hlist->handlers)
715 hlist->handlers = handler;
717 hlist->tail_before = handler;
719 else if (handler->after)
721 handler->prev = hlist->tail_after;
722 hlist->tail_after->next = handler;
726 if (hlist->tail_before)
728 handler->next = hlist->tail_before->next;
730 handler->next->prev = handler;
731 handler->prev = hlist->tail_before;
732 hlist->tail_before->next = handler;
734 else /* insert !after handler into a list of only after handlers */
736 handler->next = hlist->handlers;
738 handler->next->prev = handler;
739 hlist->handlers = handler;
741 hlist->tail_before = handler;
745 hlist->tail_after = handler;
749 emission_push (Emission **emission_list_p,
752 emission->next = *emission_list_p;
753 *emission_list_p = emission;
757 emission_pop (Emission **emission_list_p,
760 Emission *node, *last = NULL;
762 for (node = *emission_list_p; node; last = node, node = last->next)
763 if (node == emission)
766 last->next = node->next;
768 *emission_list_p = node->next;
771 g_assert_not_reached ();
774 static inline Emission*
775 emission_find (Emission *emission_list,
782 for (emission = emission_list; emission; emission = emission->next)
783 if (emission->instance == instance &&
784 emission->ihint.signal_id == signal_id &&
785 emission->ihint.detail == detail)
790 static inline Emission*
791 emission_find_innermost (gpointer instance)
793 Emission *emission, *s = NULL, *c = NULL;
795 for (emission = g_restart_emissions; emission; emission = emission->next)
796 if (emission->instance == instance)
801 for (emission = g_recursive_emissions; emission; emission = emission->next)
802 if (emission->instance == instance)
812 return G_HAVE_GROWING_STACK ? MAX (c, s) : MIN (c, s);
816 signal_key_cmp (gconstpointer node1,
819 const SignalKey *key1 = node1, *key2 = node2;
821 if (key1->itype == key2->itype)
822 return G_BSEARCH_ARRAY_CMP (key1->quark, key2->quark);
824 return G_BSEARCH_ARRAY_CMP (key1->itype, key2->itype);
831 if (!g_n_signal_nodes)
833 /* setup handler list binary searchable array hash table (in german, that'd be one word ;) */
834 g_handler_list_bsa_ht = g_hash_table_new (g_direct_hash, NULL);
835 g_signal_key_bsa = g_bsearch_array_create (&g_signal_key_bconfig);
837 /* invalid (0) signal_id */
838 g_n_signal_nodes = 1;
839 g_signal_nodes = g_renew (SignalNode*, g_signal_nodes, g_n_signal_nodes);
840 g_signal_nodes[0] = NULL;
846 _g_signals_destroy (GType itype)
851 for (i = 1; i < g_n_signal_nodes; i++)
853 SignalNode *node = g_signal_nodes[i];
855 if (node->itype == itype)
858 g_warning (G_STRLOC ": signal \"%s\" of type `%s' already destroyed",
860 type_debug_name (node->itype));
862 signal_destroy_R (node);
869 * g_signal_stop_emission:
870 * @instance: the object whose signal handlers you wish to stop.
871 * @signal_id: the signal identifier, as returned by g_signal_lookup().
872 * @detail: the detail which the signal was emitted with.
874 * Stops a signal's current emission.
876 * This will prevent the default method from running, if the signal was
877 * %G_SIGNAL_RUN_LAST and you connected normally (i.e. without the "after"
880 * Prints a warning if used on a signal which isn't being emitted.
883 g_signal_stop_emission (gpointer instance,
889 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
890 g_return_if_fail (signal_id > 0);
893 node = LOOKUP_SIGNAL_NODE (signal_id);
894 if (node && detail && !(node->flags & G_SIGNAL_DETAILED))
896 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
900 if (node && g_type_is_a (G_TYPE_FROM_INSTANCE (instance), node->itype))
902 Emission *emission_list = node->flags & G_SIGNAL_NO_RECURSE ? g_restart_emissions : g_recursive_emissions;
903 Emission *emission = emission_find (emission_list, signal_id, detail, instance);
907 if (emission->state == EMISSION_HOOK)
908 g_warning (G_STRLOC ": emission of signal \"%s\" for instance `%p' cannot be stopped from emission hook",
909 node->name, instance);
910 else if (emission->state == EMISSION_RUN)
911 emission->state = EMISSION_STOP;
914 g_warning (G_STRLOC ": no emission of signal \"%s\" to stop for instance `%p'",
915 node->name, instance);
918 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
923 signal_finalize_hook (GHookList *hook_list,
926 GDestroyNotify destroy = hook->destroy;
930 hook->destroy = NULL;
932 destroy (hook->data);
938 PLS(seq_hook_id ,g_signal_add_emission_hook ,gulong)
939 #define seq_hook_id (*FUNCTION_NAME(seq_hook_id ,g_signal_add_emission_hook)())
940 #endif /* EMULATOR */
943 * g_signal_add_emission_hook:
944 * @signal_id: the signal identifier, as returned by g_signal_lookup().
945 * @detail: the detail on which to call the hook.
946 * @hook_func: a #GSignalEmissionHook function.
947 * @hook_data: user data for @hook_func.
948 * @data_destroy: a #GDestroyNotify for @hook_data.
950 * Adds an emission hook for a signal, which will get called for any emission
951 * of that signal, independent of the instance. This is possible only
952 * for signals which don't have #G_SIGNAL_NO_HOOKS flag set.
954 * Returns: the hook id, for later use with g_signal_remove_emission_hook().
957 g_signal_add_emission_hook (guint signal_id,
959 GSignalEmissionHook hook_func,
961 GDestroyNotify data_destroy)
964 static gulong seq_hook_id = 1;
965 #endif /* EMULATOR */
968 SignalHook *signal_hook;
970 g_return_val_if_fail (signal_id > 0, 0);
971 g_return_val_if_fail (hook_func != NULL, 0);
974 node = LOOKUP_SIGNAL_NODE (signal_id);
975 if (!node || node->destroyed)
977 g_warning ("%s: invalid signal id `%u'", G_STRLOC, signal_id);
981 if (node->flags & G_SIGNAL_NO_HOOKS)
983 g_warning ("%s: signal id `%u' does not support emission hooks (G_SIGNAL_NO_HOOKS flag set)", G_STRLOC, signal_id);
987 if (detail && !(node->flags & G_SIGNAL_DETAILED))
989 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
993 if (!node->emission_hooks)
995 node->emission_hooks = g_new (GHookList, 1);
996 g_hook_list_init (node->emission_hooks, sizeof (SignalHook));
997 node->emission_hooks->finalize_hook = signal_finalize_hook;
999 hook = g_hook_alloc (node->emission_hooks);
1000 hook->data = hook_data;
1001 hook->func = (gpointer) hook_func;
1002 hook->destroy = data_destroy;
1003 signal_hook = SIGNAL_HOOK (hook);
1004 signal_hook->detail = detail;
1005 node->emission_hooks->seq_id = seq_hook_id;
1006 g_hook_append (node->emission_hooks, hook);
1007 seq_hook_id = node->emission_hooks->seq_id;
1010 return hook->hook_id;
1015 #endif /* EMULATOR */
1018 * g_signal_remove_emission_hook:
1019 * @signal_id: the id of the signal
1020 * @hook_id: the id of the emission hook, as returned by
1021 * g_signal_add_emission_hook()
1023 * Deletes an emission hook.
1026 g_signal_remove_emission_hook (guint signal_id,
1031 g_return_if_fail (signal_id > 0);
1032 g_return_if_fail (hook_id > 0);
1035 node = LOOKUP_SIGNAL_NODE (signal_id);
1036 if (!node || node->destroyed)
1037 g_warning ("%s: invalid signal id `%u'", G_STRLOC, signal_id);
1038 else if (!node->emission_hooks || !g_hook_destroy (node->emission_hooks, hook_id))
1039 g_warning ("%s: signal \"%s\" had no hook (%lu) to remove", G_STRLOC, node->name, hook_id);
1044 signal_parse_name (const gchar *name,
1047 gboolean force_quark)
1049 const gchar *colon = strchr (name, ':');
1054 signal_id = signal_id_lookup (g_quark_try_string (name), itype);
1055 if (signal_id && detail_p)
1058 else if (colon[1] == ':')
1061 guint l = colon - name;
1065 memcpy (buffer, name, l);
1067 signal_id = signal_id_lookup (g_quark_try_string (buffer), itype);
1071 gchar *signal = g_new (gchar, l + 1);
1073 memcpy (signal, name, l);
1075 signal_id = signal_id_lookup (g_quark_try_string (signal), itype);
1079 if (signal_id && detail_p)
1080 *detail_p = colon[2] ? (force_quark ? g_quark_from_string : g_quark_try_string) (colon + 2) : 0;
1088 * g_signal_parse_name:
1089 * @detailed_signal: a string of the form "signal-name::detail".
1090 * @itype: The interface/instance type that introduced "signal-name".
1091 * @signal_id_p: Location to store the signal id.
1092 * @detail_p: Location to store the detail quark.
1093 * @force_detail_quark: %TRUE forces creation of a #GQuark for the detail.
1095 * Internal function to parse a signal name into its @signal_id
1096 * and @detail quark.
1098 * Returns: Whether the signal name could successfully be parsed and @signal_id_p and @detail_p contain valid return values.
1101 g_signal_parse_name (const gchar *detailed_signal,
1105 gboolean force_detail_quark)
1111 g_return_val_if_fail (detailed_signal != NULL, FALSE);
1112 g_return_val_if_fail (G_TYPE_IS_INSTANTIATABLE (itype) || G_TYPE_IS_INTERFACE (itype), FALSE);
1115 signal_id = signal_parse_name (detailed_signal, itype, &detail, force_detail_quark);
1118 node = signal_id ? LOOKUP_SIGNAL_NODE (signal_id) : NULL;
1119 if (!node || node->destroyed ||
1120 (detail && !(node->flags & G_SIGNAL_DETAILED)))
1124 *signal_id_p = signal_id;
1132 * g_signal_stop_emission_by_name:
1133 * @instance: the object whose signal handlers you wish to stop.
1134 * @detailed_signal: a string of the form "signal-name::detail".
1136 * Stops a signal's current emission.
1138 * This is just like g_signal_stop_emission() except it will look up the
1139 * signal id for you.
1142 g_signal_stop_emission_by_name (gpointer instance,
1143 const gchar *detailed_signal)
1149 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
1150 g_return_if_fail (detailed_signal != NULL);
1153 itype = G_TYPE_FROM_INSTANCE (instance);
1154 signal_id = signal_parse_name (detailed_signal, itype, &detail, TRUE);
1157 SignalNode *node = LOOKUP_SIGNAL_NODE (signal_id);
1159 if (detail && !(node->flags & G_SIGNAL_DETAILED))
1160 g_warning ("%s: signal `%s' does not support details", G_STRLOC, detailed_signal);
1161 else if (!g_type_is_a (itype, node->itype))
1162 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
1165 Emission *emission_list = node->flags & G_SIGNAL_NO_RECURSE ? g_restart_emissions : g_recursive_emissions;
1166 Emission *emission = emission_find (emission_list, signal_id, detail, instance);
1170 if (emission->state == EMISSION_HOOK)
1171 g_warning (G_STRLOC ": emission of signal \"%s\" for instance `%p' cannot be stopped from emission hook",
1172 node->name, instance);
1173 else if (emission->state == EMISSION_RUN)
1174 emission->state = EMISSION_STOP;
1177 g_warning (G_STRLOC ": no emission of signal \"%s\" to stop for instance `%p'",
1178 node->name, instance);
1182 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
1188 * @name: the signal's name.
1189 * @itype: the type that the signal operates on.
1191 * Given the name of the signal and the type of object it connects to, gets
1192 * the signal's identifying integer. Emitting the signal by number is
1193 * somewhat faster than using the name each time.
1195 * Also tries the ancestors of the given type.
1197 * See g_signal_new() for details on allowed signal names.
1199 * Returns: the signal's identifying number, or 0 if no signal was found.
1202 g_signal_lookup (const gchar *name,
1206 g_return_val_if_fail (name != NULL, 0);
1207 g_return_val_if_fail (G_TYPE_IS_INSTANTIATABLE (itype) || G_TYPE_IS_INTERFACE (itype), 0);
1210 signal_id = signal_id_lookup (g_quark_try_string (name), itype);
1214 /* give elaborate warnings */
1215 if (!g_type_name (itype))
1216 g_warning (G_STRLOC ": unable to lookup signal \"%s\" for invalid type id `%"G_GSIZE_FORMAT"'",
1218 else if (!G_TYPE_IS_INSTANTIATABLE (itype))
1219 g_warning (G_STRLOC ": unable to lookup signal \"%s\" for non instantiatable type `%s'",
1220 name, g_type_name (itype));
1221 else if (!g_type_class_peek (itype))
1222 g_warning (G_STRLOC ": unable to lookup signal \"%s\" of unloaded type `%s'",
1223 name, g_type_name (itype));
1230 * g_signal_list_ids:
1231 * @itype: Instance or interface type.
1232 * @n_ids: Location to store the number of signal ids for @itype.
1234 * Lists the signals by id that a certain instance or interface type
1235 * created. Further information about the signals can be acquired through
1238 * Returns: Newly allocated array of signal IDs.
1241 g_signal_list_ids (GType itype,
1249 g_return_val_if_fail (G_TYPE_IS_INSTANTIATABLE (itype) || G_TYPE_IS_INTERFACE (itype), NULL);
1250 g_return_val_if_fail (n_ids != NULL, NULL);
1253 keys = g_bsearch_array_get_nth (g_signal_key_bsa, &g_signal_key_bconfig, 0);
1254 n_nodes = g_bsearch_array_get_n_nodes (g_signal_key_bsa);
1255 result = g_array_new (FALSE, FALSE, sizeof (guint));
1257 for (i = 0; i < n_nodes; i++)
1258 if (keys[i].itype == itype)
1260 const gchar *name = g_quark_to_string (keys[i].quark);
1262 /* Signal names with "_" in them are aliases to the same
1263 * name with "-" instead of "_".
1265 if (!strchr (name, '_'))
1266 g_array_append_val (result, keys[i].signal_id);
1268 *n_ids = result->len;
1272 /* give elaborate warnings */
1273 if (!g_type_name (itype))
1274 g_warning (G_STRLOC ": unable to list signals for invalid type id `%"G_GSIZE_FORMAT"'",
1276 else if (!G_TYPE_IS_INSTANTIATABLE (itype) && !G_TYPE_IS_INTERFACE (itype))
1277 g_warning (G_STRLOC ": unable to list signals of non instantiatable type `%s'",
1278 g_type_name (itype));
1279 else if (!g_type_class_peek (itype) && !G_TYPE_IS_INTERFACE (itype))
1280 g_warning (G_STRLOC ": unable to list signals of unloaded type `%s'",
1281 g_type_name (itype));
1284 return (guint*) g_array_free (result, FALSE);
1289 * @signal_id: the signal's identifying number.
1291 * Given the signal's identifier, finds its name.
1293 * Two different signals may have the same name, if they have differing types.
1295 * Returns: the signal name, or %NULL if the signal number was invalid.
1297 EXPORT_C G_CONST_RETURN gchar*
1298 g_signal_name (guint signal_id)
1304 node = LOOKUP_SIGNAL_NODE (signal_id);
1305 name = node ? node->name : NULL;
1308 return (char*) name;
1313 * @signal_id: The signal id of the signal to query information for.
1314 * @query: A user provided structure that is filled in with constant
1315 * values upon success.
1317 * Queries the signal system for in-depth information about a
1318 * specific signal. This function will fill in a user-provided
1319 * structure to hold signal-specific information. If an invalid
1320 * signal id is passed in, the @signal_id member of the #GSignalQuery
1321 * is 0. All members filled into the #GSignalQuery structure should
1322 * be considered constant and have to be left untouched.
1325 g_signal_query (guint signal_id,
1326 GSignalQuery *query)
1330 g_return_if_fail (query != NULL);
1333 node = LOOKUP_SIGNAL_NODE (signal_id);
1334 if (!node || node->destroyed)
1335 query->signal_id = 0;
1338 query->signal_id = node->signal_id;
1339 query->signal_name = node->name;
1340 query->itype = node->itype;
1341 query->signal_flags = node->flags;
1342 query->return_type = node->return_type;
1343 query->n_params = node->n_params;
1344 query->param_types = node->param_types;
1351 * @signal_name: the name for the signal
1352 * @itype: the type this signal pertains to. It will also pertain to
1353 * types which are derived from this type.
1354 * @signal_flags: a combination of #GSignalFlags specifying detail of when
1355 * the default handler is to be invoked. You should at least specify
1356 * %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST.
1357 * @class_offset: The offset of the function pointer in the class structure
1358 * for this type. Used to invoke a class method generically. Pass 0 to
1359 * not associate a class method with this signal.
1360 * @accumulator: the accumulator for this signal; may be %NULL.
1361 * @accu_data: user data for the @accumulator.
1362 * @c_marshaller: the function to translate arrays of parameter values to
1363 * signal emissions into C language callback invocations.
1364 * @return_type: the type of return value, or #G_TYPE_NONE for a signal
1365 * without a return value.
1366 * @n_params: the number of parameter types to follow.
1367 * @...: a list of types, one for each parameter.
1369 * Creates a new signal. (This is usually done in the class initializer.)
1371 * A signal name consists of segments consisting of ASCII letters and
1372 * digits, separated by either the '-' or '_' character. The first
1373 * character of a signal name must be a letter. Names which violate these
1374 * rules lead to undefined behaviour of the GSignal system.
1376 * When registering a signal and looking up a signal, either separator can
1377 * be used, but they cannot be mixed.
1379 * Returns: the signal id
1382 g_signal_new (const gchar *signal_name,
1384 GSignalFlags signal_flags,
1386 GSignalAccumulator accumulator,
1388 GSignalCMarshaller c_marshaller,
1396 g_return_val_if_fail (signal_name != NULL, 0);
1398 va_start (args, n_params);
1400 signal_id = g_signal_new_valist (signal_name, itype, signal_flags,
1401 class_offset ? g_signal_type_cclosure_new (itype, class_offset) : NULL,
1402 accumulator, accu_data, c_marshaller,
1403 return_type, n_params, args);
1407 /* optimize NOP emissions with NULL class handlers */
1408 if (signal_id && G_TYPE_IS_INSTANTIATABLE (itype) && return_type == G_TYPE_NONE &&
1409 class_offset && class_offset < MAX_TEST_CLASS_OFFSET)
1414 node = LOOKUP_SIGNAL_NODE (signal_id);
1415 node->test_class_offset = class_offset;
1423 * g_signal_new_class_handler:
1424 * @signal_name: the name for the signal
1425 * @itype: the type this signal pertains to. It will also pertain to
1426 * types which are derived from this type.
1427 * @signal_flags: a combination of #GSignalFlags specifying detail of when
1428 * the default handler is to be invoked. You should at least specify
1429 * %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST.
1430 * @class_handler: a #GCallback which acts as class implementation of
1431 * this signal. Used to invoke a class method generically. Pass %NULL to
1432 * not associate a class method with this signal.
1433 * @accumulator: the accumulator for this signal; may be %NULL.
1434 * @accu_data: user data for the @accumulator.
1435 * @c_marshaller: the function to translate arrays of parameter values to
1436 * signal emissions into C language callback invocations.
1437 * @return_type: the type of return value, or #G_TYPE_NONE for a signal
1438 * without a return value.
1439 * @n_params: the number of parameter types to follow.
1440 * @...: a list of types, one for each parameter.
1442 * Creates a new signal. (This is usually done in the class initializer.)
1444 * This is a variant of g_signal_new() that takes a C callback instead
1445 * off a class offset for the signal's class handler. This function
1446 * doesn't need a function pointer exposed in the class structure of
1447 * an object definition, instead the function pointer is passed
1448 * directly and can be overriden by derived classes with
1449 * g_signal_override_class_closure() or
1450 * g_signal_override_class_handler()and chained to with
1451 * g_signal_chain_from_overridden() or
1452 * g_signal_chain_from_overridden_handler().
1454 * See g_signal_new() for information about signal names.
1456 * Returns: the signal id
1461 g_signal_new_class_handler (const gchar *signal_name,
1463 GSignalFlags signal_flags,
1464 GCallback class_handler,
1465 GSignalAccumulator accumulator,
1467 GSignalCMarshaller c_marshaller,
1475 g_return_val_if_fail (signal_name != NULL, 0);
1477 va_start (args, n_params);
1479 signal_id = g_signal_new_valist (signal_name, itype, signal_flags,
1480 class_handler ? g_cclosure_new (class_handler, NULL, NULL) : NULL,
1481 accumulator, accu_data, c_marshaller,
1482 return_type, n_params, args);
1489 static inline ClassClosure*
1490 signal_find_class_closure (SignalNode *node,
1493 GBSearchArray *bsa = node->class_closure_bsa;
1500 /* cc->instance_type is 0 for default closure */
1502 key.instance_type = itype;
1503 cc = g_bsearch_array_lookup (bsa, &g_class_closure_bconfig, &key);
1504 while (!cc && key.instance_type)
1506 key.instance_type = g_type_parent (key.instance_type);
1507 cc = g_bsearch_array_lookup (bsa, &g_class_closure_bconfig, &key);
1515 static inline GClosure*
1516 signal_lookup_closure (SignalNode *node,
1517 GTypeInstance *instance)
1521 if (node->class_closure_bsa && g_bsearch_array_get_n_nodes (node->class_closure_bsa) == 1)
1523 cc = g_bsearch_array_get_nth (node->class_closure_bsa, &g_class_closure_bconfig, 0);
1524 if (cc && cc->instance_type == 0) /* check for default closure */
1527 cc = signal_find_class_closure (node, G_TYPE_FROM_INSTANCE (instance));
1528 return cc ? cc->closure : NULL;
1532 signal_add_class_closure (SignalNode *node,
1538 /* can't optimize NOP emissions with overridden class closures */
1539 node->test_class_offset = 0;
1541 if (!node->class_closure_bsa)
1542 node->class_closure_bsa = g_bsearch_array_create (&g_class_closure_bconfig);
1543 key.instance_type = itype;
1544 key.closure = g_closure_ref (closure);
1545 node->class_closure_bsa = g_bsearch_array_insert (node->class_closure_bsa,
1546 &g_class_closure_bconfig,
1548 g_closure_sink (closure);
1549 if (node->c_marshaller && closure && G_CLOSURE_NEEDS_MARSHAL (closure))
1550 g_closure_set_marshal (closure, node->c_marshaller);
1555 * @signal_name: the name for the signal
1556 * @itype: the type this signal pertains to. It will also pertain to
1557 * types which are derived from this type
1558 * @signal_flags: a combination of #GSignalFlags specifying detail of when
1559 * the default handler is to be invoked. You should at least specify
1560 * %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST
1561 * @class_closure: The closure to invoke on signal emission; may be %NULL
1562 * @accumulator: the accumulator for this signal; may be %NULL
1563 * @accu_data: user data for the @accumulator
1564 * @c_marshaller: the function to translate arrays of parameter values to
1565 * signal emissions into C language callback invocations
1566 * @return_type: the type of return value, or #G_TYPE_NONE for a signal
1567 * without a return value
1568 * @n_params: the length of @param_types
1569 * @param_types: an array of types, one for each parameter
1571 * Creates a new signal. (This is usually done in the class initializer.)
1573 * See g_signal_new() for details on allowed signal names.
1575 * Returns: the signal id
1578 g_signal_newv (const gchar *signal_name,
1580 GSignalFlags signal_flags,
1581 GClosure *class_closure,
1582 GSignalAccumulator accumulator,
1584 GSignalCMarshaller c_marshaller,
1593 g_return_val_if_fail (signal_name != NULL, 0);
1594 g_return_val_if_fail (G_TYPE_IS_INSTANTIATABLE (itype) || G_TYPE_IS_INTERFACE (itype), 0);
1596 g_return_val_if_fail (param_types != NULL, 0);
1597 g_return_val_if_fail ((return_type & G_SIGNAL_TYPE_STATIC_SCOPE) == 0, 0);
1598 if (return_type == (G_TYPE_NONE & ~G_SIGNAL_TYPE_STATIC_SCOPE))
1599 g_return_val_if_fail (accumulator == NULL, 0);
1601 g_return_val_if_fail (accu_data == NULL, 0);
1603 name = g_strdup (signal_name);
1604 g_strdelimit (name, G_STR_DELIMITERS ":^", '_'); /* FIXME do character checks like for types */
1608 signal_id = signal_id_lookup (g_quark_try_string (name), itype);
1609 node = LOOKUP_SIGNAL_NODE (signal_id);
1610 if (node && !node->destroyed)
1612 g_warning (G_STRLOC ": signal \"%s\" already exists in the `%s' %s",
1614 type_debug_name (node->itype),
1615 G_TYPE_IS_INTERFACE (node->itype) ? "interface" : "class ancestry");
1620 if (node && node->itype != itype)
1622 g_warning (G_STRLOC ": signal \"%s\" for type `%s' was previously created for type `%s'",
1624 type_debug_name (itype),
1625 type_debug_name (node->itype));
1630 for (i = 0; i < n_params; i++)
1631 if (!G_TYPE_IS_VALUE (param_types[i] & ~G_SIGNAL_TYPE_STATIC_SCOPE))
1633 g_warning (G_STRLOC ": parameter %d of type `%s' for signal \"%s::%s\" is not a value type",
1634 i + 1, type_debug_name (param_types[i]), type_debug_name (itype), name);
1639 if (return_type != G_TYPE_NONE && !G_TYPE_IS_VALUE (return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE))
1641 g_warning (G_STRLOC ": return value of type `%s' for signal \"%s::%s\" is not a value type",
1642 type_debug_name (return_type), type_debug_name (itype), name);
1647 if (return_type != G_TYPE_NONE &&
1648 (signal_flags & (G_SIGNAL_RUN_FIRST | G_SIGNAL_RUN_LAST | G_SIGNAL_RUN_CLEANUP)) == G_SIGNAL_RUN_FIRST)
1650 g_warning (G_STRLOC ": signal \"%s::%s\" has return type `%s' and is only G_SIGNAL_RUN_FIRST",
1651 type_debug_name (itype), name, type_debug_name (return_type));
1657 /* setup permanent portion of signal node */
1662 signal_id = g_n_signal_nodes++;
1663 node = g_new (SignalNode, 1);
1664 node->signal_id = signal_id;
1665 g_signal_nodes = g_renew (SignalNode*, g_signal_nodes, g_n_signal_nodes);
1666 g_signal_nodes[signal_id] = node;
1667 node->itype = itype;
1670 key.quark = g_quark_from_string (node->name);
1671 key.signal_id = signal_id;
1672 g_signal_key_bsa = g_bsearch_array_insert (g_signal_key_bsa, &g_signal_key_bconfig, &key);
1673 g_strdelimit (name, "_", '-');
1674 node->name = g_intern_string (name);
1675 key.quark = g_quark_from_string (name);
1676 g_signal_key_bsa = g_bsearch_array_insert (g_signal_key_bsa, &g_signal_key_bconfig, &key);
1678 node->destroyed = FALSE;
1679 node->test_class_offset = 0;
1681 /* setup reinitializable portion */
1682 node->flags = signal_flags & G_SIGNAL_FLAGS_MASK;
1683 node->n_params = n_params;
1684 node->param_types = g_memdup (param_types, sizeof (GType) * n_params);
1685 node->return_type = return_type;
1686 node->class_closure_bsa = NULL;
1689 node->accumulator = g_new (SignalAccumulator, 1);
1690 node->accumulator->func = accumulator;
1691 node->accumulator->data = accu_data;
1694 node->accumulator = NULL;
1695 node->c_marshaller = c_marshaller;
1696 node->emission_hooks = NULL;
1698 signal_add_class_closure (node, 0, class_closure);
1699 else if (G_TYPE_IS_INSTANTIATABLE (itype) && return_type == G_TYPE_NONE)
1701 /* optimize NOP emissions */
1702 node->test_class_offset = TEST_CLASS_MAGIC;
1712 * g_signal_new_valist:
1713 * @signal_name: the name for the signal
1714 * @itype: the type this signal pertains to. It will also pertain to
1715 * types which are derived from this type.
1716 * @signal_flags: a combination of #GSignalFlags specifying detail of when
1717 * the default handler is to be invoked. You should at least specify
1718 * %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST.
1719 * @class_closure: The closure to invoke on signal emission; may be %NULL.
1720 * @accumulator: the accumulator for this signal; may be %NULL.
1721 * @accu_data: user data for the @accumulator.
1722 * @c_marshaller: the function to translate arrays of parameter values to
1723 * signal emissions into C language callback invocations.
1724 * @return_type: the type of return value, or #G_TYPE_NONE for a signal
1725 * without a return value.
1726 * @n_params: the number of parameter types in @args.
1727 * @args: va_list of #GType, one for each parameter.
1729 * Creates a new signal. (This is usually done in the class initializer.)
1731 * See g_signal_new() for details on allowed signal names.
1733 * Returns: the signal id
1736 g_signal_new_valist (const gchar *signal_name,
1738 GSignalFlags signal_flags,
1739 GClosure *class_closure,
1740 GSignalAccumulator accumulator,
1742 GSignalCMarshaller c_marshaller,
1753 param_types = g_new (GType, n_params);
1755 for (i = 0; i < n_params; i++)
1756 param_types[i] = va_arg (args, GType);
1761 signal_id = g_signal_newv (signal_name, itype, signal_flags,
1762 class_closure, accumulator, accu_data, c_marshaller,
1763 return_type, n_params, param_types);
1764 g_free (param_types);
1770 signal_destroy_R (SignalNode *signal_node)
1772 SignalNode node = *signal_node;
1774 signal_node->destroyed = TRUE;
1776 /* reentrancy caution, zero out real contents first */
1777 signal_node->test_class_offset = 0;
1778 signal_node->n_params = 0;
1779 signal_node->param_types = NULL;
1780 signal_node->return_type = 0;
1781 signal_node->class_closure_bsa = NULL;
1782 signal_node->accumulator = NULL;
1783 signal_node->c_marshaller = NULL;
1784 signal_node->emission_hooks = NULL;
1786 #ifdef G_ENABLE_DEBUG
1787 /* check current emissions */
1791 for (emission = (node.flags & G_SIGNAL_NO_RECURSE) ? g_restart_emissions : g_recursive_emissions;
1792 emission; emission = emission->next)
1793 if (emission->ihint.signal_id == node.signal_id)
1794 g_critical (G_STRLOC ": signal \"%s\" being destroyed is currently in emission (instance `%p')",
1795 node.name, emission->instance);
1799 /* free contents that need to
1802 g_free (node.param_types);
1803 if (node.class_closure_bsa)
1807 for (i = 0; i < node.class_closure_bsa->n_nodes; i++)
1809 ClassClosure *cc = g_bsearch_array_get_nth (node.class_closure_bsa, &g_class_closure_bconfig, i);
1811 g_closure_unref (cc->closure);
1813 g_bsearch_array_free (node.class_closure_bsa, &g_class_closure_bconfig);
1815 g_free (node.accumulator);
1816 if (node.emission_hooks)
1818 g_hook_list_clear (node.emission_hooks);
1819 g_free (node.emission_hooks);
1825 * g_signal_override_class_closure:
1826 * @signal_id: the signal id
1827 * @instance_type: the instance type on which to override the class closure
1829 * @class_closure: the closure.
1831 * Overrides the class closure (i.e. the default handler) for the given signal
1832 * for emissions on instances of @instance_type. @instance_type must be derived
1833 * from the type to which the signal belongs.
1835 * See g_signal_chain_from_overridden() and
1836 * g_signal_chain_from_overridden_handler() for how to chain up to the
1837 * parent class closure from inside the overridden one.
1840 g_signal_override_class_closure (guint signal_id,
1841 GType instance_type,
1842 GClosure *class_closure)
1846 g_return_if_fail (signal_id > 0);
1847 g_return_if_fail (class_closure != NULL);
1850 node = LOOKUP_SIGNAL_NODE (signal_id);
1851 if (!g_type_is_a (instance_type, node->itype))
1852 g_warning ("%s: type `%s' cannot be overridden for signal id `%u'", G_STRLOC, type_debug_name (instance_type), signal_id);
1855 ClassClosure *cc = signal_find_class_closure (node, instance_type);
1857 if (cc && cc->instance_type == instance_type)
1858 g_warning ("%s: type `%s' is already overridden for signal id `%u'", G_STRLOC, type_debug_name (instance_type), signal_id);
1860 signal_add_class_closure (node, instance_type, class_closure);
1866 * g_signal_override_class_handler:
1867 * @signal_name: the name for the signal
1868 * @instance_type: the instance type on which to override the class handler
1870 * @class_handler: the handler.
1872 * Overrides the class closure (i.e. the default handler) for the
1873 * given signal for emissions on instances of @instance_type with
1874 * callabck @class_handler. @instance_type must be derived from the
1875 * type to which the signal belongs.
1877 * See g_signal_chain_from_overridden() and
1878 * g_signal_chain_from_overridden_handler() for how to chain up to the
1879 * parent class closure from inside the overridden one.
1884 g_signal_override_class_handler (const gchar *signal_name,
1885 GType instance_type,
1886 GCallback class_handler)
1890 g_return_if_fail (signal_name != NULL);
1891 g_return_if_fail (instance_type != G_TYPE_NONE);
1892 g_return_if_fail (class_handler != NULL);
1894 signal_id = g_signal_lookup (signal_name, instance_type);
1897 g_signal_override_class_closure (signal_id, instance_type,
1898 g_cclosure_new (class_handler, NULL, NULL));
1900 g_warning ("%s: signal name '%s' is invalid for type id '%"G_GSIZE_FORMAT"'",
1901 G_STRLOC, signal_name, instance_type);
1906 * g_signal_chain_from_overridden:
1907 * @instance_and_params: the argument list of the signal emission. The first
1908 * element in the array is a #GValue for the instance the signal is being
1909 * emitted on. The rest are any arguments to be passed to the signal.
1910 * @return_value: Location for the return value.
1912 * Calls the original class closure of a signal. This function should only
1913 * be called from an overridden class closure; see
1914 * g_signal_override_class_closure() and
1915 * g_signal_override_class_handler().
1918 g_signal_chain_from_overridden (const GValue *instance_and_params,
1919 GValue *return_value)
1921 GType chain_type = 0, restore_type = 0;
1922 Emission *emission = NULL;
1923 GClosure *closure = NULL;
1927 g_return_if_fail (instance_and_params != NULL);
1928 instance = g_value_peek_pointer (instance_and_params);
1929 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
1932 emission = emission_find_innermost (instance);
1935 SignalNode *node = LOOKUP_SIGNAL_NODE (emission->ihint.signal_id);
1937 g_assert (node != NULL); /* paranoid */
1939 /* we should probably do the same parameter checks as g_signal_emit() here.
1941 if (emission->chain_type != G_TYPE_NONE)
1943 ClassClosure *cc = signal_find_class_closure (node, emission->chain_type);
1945 g_assert (cc != NULL); /* closure currently in call stack */
1947 n_params = node->n_params;
1948 restore_type = cc->instance_type;
1949 cc = signal_find_class_closure (node, g_type_parent (cc->instance_type));
1950 if (cc && cc->instance_type != restore_type)
1952 closure = cc->closure;
1953 chain_type = cc->instance_type;
1957 g_warning ("%s: signal id `%u' cannot be chained from current emission stage for instance `%p'", G_STRLOC, node->signal_id, instance);
1960 g_warning ("%s: no signal is currently being emitted for instance `%p'", G_STRLOC, instance);
1964 emission->chain_type = chain_type;
1966 g_closure_invoke (closure,
1969 instance_and_params,
1972 emission->chain_type = restore_type;
1978 * g_signal_chain_from_overridden_handler:
1979 * @instance: the instance the signal is being emitted on.
1980 * @...: parameters to be passed to the parent class closure, followed by a
1981 * location for the return value. If the return type of the signal
1982 * is #G_TYPE_NONE, the return value location can be omitted.
1984 * Calls the original class closure of a signal. This function should
1985 * only be called from an overridden class closure; see
1986 * g_signal_override_class_closure() and
1987 * g_signal_override_class_handler().
1992 g_signal_chain_from_overridden_handler (gpointer instance,
1995 GType chain_type = 0, restore_type = 0;
1996 Emission *emission = NULL;
1997 GClosure *closure = NULL;
2001 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2004 emission = emission_find_innermost (instance);
2007 node = LOOKUP_SIGNAL_NODE (emission->ihint.signal_id);
2009 g_assert (node != NULL); /* paranoid */
2011 /* we should probably do the same parameter checks as g_signal_emit() here.
2013 if (emission->chain_type != G_TYPE_NONE)
2015 ClassClosure *cc = signal_find_class_closure (node, emission->chain_type);
2017 g_assert (cc != NULL); /* closure currently in call stack */
2019 n_params = node->n_params;
2020 restore_type = cc->instance_type;
2021 cc = signal_find_class_closure (node, g_type_parent (cc->instance_type));
2022 if (cc && cc->instance_type != restore_type)
2024 closure = cc->closure;
2025 chain_type = cc->instance_type;
2029 g_warning ("%s: signal id `%u' cannot be chained from current emission stage for instance `%p'", G_STRLOC, node->signal_id, instance);
2032 g_warning ("%s: no signal is currently being emitted for instance `%p'", G_STRLOC, instance);
2036 GValue *instance_and_params;
2037 GType signal_return_type;
2038 GValue *param_values;
2042 va_start (var_args, instance);
2044 signal_return_type = node->return_type;
2045 instance_and_params = g_slice_alloc (sizeof (GValue) * (n_params + 1));
2046 param_values = instance_and_params + 1;
2048 for (i = 0; i < node->n_params; i++)
2051 GType ptype = node->param_types[i] & ~G_SIGNAL_TYPE_STATIC_SCOPE;
2052 gboolean static_scope = node->param_types[i] & G_SIGNAL_TYPE_STATIC_SCOPE;
2054 param_values[i].g_type = 0;
2056 g_value_init (param_values + i, ptype);
2057 G_VALUE_COLLECT (param_values + i,
2059 static_scope ? G_VALUE_NOCOPY_CONTENTS : 0,
2063 g_warning ("%s: %s", G_STRLOC, error);
2066 /* we purposely leak the value here, it might not be
2067 * in a sane state if an error condition occoured
2070 g_value_unset (param_values + i);
2072 g_slice_free1 (sizeof (GValue) * (n_params + 1), instance_and_params);
2080 instance_and_params->g_type = 0;
2081 g_value_init (instance_and_params, G_TYPE_FROM_INSTANCE (instance));
2082 g_value_set_instance (instance_and_params, instance);
2085 emission->chain_type = chain_type;
2088 if (signal_return_type == G_TYPE_NONE)
2090 g_closure_invoke (closure,
2093 instance_and_params,
2098 GValue return_value = { 0, };
2099 gchar *error = NULL;
2100 GType rtype = signal_return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE;
2101 gboolean static_scope = signal_return_type & G_SIGNAL_TYPE_STATIC_SCOPE;
2103 g_value_init (&return_value, rtype);
2105 g_closure_invoke (closure,
2108 instance_and_params,
2111 G_VALUE_LCOPY (&return_value,
2113 static_scope ? G_VALUE_NOCOPY_CONTENTS : 0,
2117 g_value_unset (&return_value);
2121 g_warning ("%s: %s", G_STRLOC, error);
2124 /* we purposely leak the value here, it might not be
2125 * in a sane state if an error condition occured
2130 for (i = 0; i < n_params; i++)
2131 g_value_unset (param_values + i);
2132 g_value_unset (instance_and_params);
2133 g_slice_free1 (sizeof (GValue) * (n_params + 1), instance_and_params);
2138 emission->chain_type = restore_type;
2144 * g_signal_get_invocation_hint:
2145 * @instance: the instance to query
2147 * Returns the invocation hint of the innermost signal emission of instance.
2149 * Returns: the invocation hint of the innermost signal emission.
2151 EXPORT_C GSignalInvocationHint*
2152 g_signal_get_invocation_hint (gpointer instance)
2154 Emission *emission = NULL;
2156 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), NULL);
2159 emission = emission_find_innermost (instance);
2162 return emission ? &emission->ihint : NULL;
2166 * g_signal_connect_closure_by_id:
2167 * @instance: the instance to connect to.
2168 * @signal_id: the id of the signal.
2169 * @detail: the detail.
2170 * @closure: the closure to connect.
2171 * @after: whether the handler should be called before or after the
2172 * default handler of the signal.
2174 * Connects a closure to a signal for a particular object.
2176 * Returns: the handler id
2179 g_signal_connect_closure_by_id (gpointer instance,
2186 gulong handler_seq_no = 0;
2188 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2189 g_return_val_if_fail (signal_id > 0, 0);
2190 g_return_val_if_fail (closure != NULL, 0);
2193 node = LOOKUP_SIGNAL_NODE (signal_id);
2196 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2197 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
2198 else if (!g_type_is_a (G_TYPE_FROM_INSTANCE (instance), node->itype))
2199 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
2202 Handler *handler = handler_new (after);
2204 handler_seq_no = handler->sequential_number;
2205 handler->detail = detail;
2206 handler->closure = g_closure_ref (closure);
2207 g_closure_sink (closure);
2208 handler_insert (signal_id, instance, handler);
2209 if (node->c_marshaller && G_CLOSURE_NEEDS_MARSHAL (closure))
2210 g_closure_set_marshal (closure, node->c_marshaller);
2214 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
2217 return handler_seq_no;
2221 * g_signal_connect_closure:
2222 * @instance: the instance to connect to.
2223 * @detailed_signal: a string of the form "signal-name::detail".
2224 * @closure: the closure to connect.
2225 * @after: whether the handler should be called before or after the
2226 * default handler of the signal.
2228 * Connects a closure to a signal for a particular object.
2230 * Returns: the handler id
2233 g_signal_connect_closure (gpointer instance,
2234 const gchar *detailed_signal,
2239 gulong handler_seq_no = 0;
2243 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2244 g_return_val_if_fail (detailed_signal != NULL, 0);
2245 g_return_val_if_fail (closure != NULL, 0);
2248 itype = G_TYPE_FROM_INSTANCE (instance);
2249 signal_id = signal_parse_name (detailed_signal, itype, &detail, TRUE);
2252 SignalNode *node = LOOKUP_SIGNAL_NODE (signal_id);
2254 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2255 g_warning ("%s: signal `%s' does not support details", G_STRLOC, detailed_signal);
2256 else if (!g_type_is_a (itype, node->itype))
2257 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
2260 Handler *handler = handler_new (after);
2262 handler_seq_no = handler->sequential_number;
2263 handler->detail = detail;
2264 handler->closure = g_closure_ref (closure);
2265 g_closure_sink (closure);
2266 handler_insert (signal_id, instance, handler);
2267 if (node->c_marshaller && G_CLOSURE_NEEDS_MARSHAL (handler->closure))
2268 g_closure_set_marshal (handler->closure, node->c_marshaller);
2272 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
2275 return handler_seq_no;
2279 * g_signal_connect_data:
2280 * @instance: the instance to connect to.
2281 * @detailed_signal: a string of the form "signal-name::detail".
2282 * @c_handler: the #GCallback to connect.
2283 * @data: data to pass to @c_handler calls.
2284 * @destroy_data: a #GClosureNotify for @data.
2285 * @connect_flags: a combination of #GConnectFlags.
2287 * Connects a #GCallback function to a signal for a particular object. Similar
2288 * to g_signal_connect(), but allows to provide a #GClosureNotify for the data
2289 * which will be called when the signal handler is disconnected and no longer
2290 * used. Specify @connect_flags if you need <literal>..._after()</literal> or
2291 * <literal>..._swapped()</literal> variants of this function.
2293 * Returns: the handler id
2296 g_signal_connect_data (gpointer instance,
2297 const gchar *detailed_signal,
2298 GCallback c_handler,
2300 GClosureNotify destroy_data,
2301 GConnectFlags connect_flags)
2304 gulong handler_seq_no = 0;
2307 gboolean swapped, after;
2309 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2310 g_return_val_if_fail (detailed_signal != NULL, 0);
2311 g_return_val_if_fail (c_handler != NULL, 0);
2313 swapped = (connect_flags & G_CONNECT_SWAPPED) != FALSE;
2314 after = (connect_flags & G_CONNECT_AFTER) != FALSE;
2317 itype = G_TYPE_FROM_INSTANCE (instance);
2318 signal_id = signal_parse_name (detailed_signal, itype, &detail, TRUE);
2321 SignalNode *node = LOOKUP_SIGNAL_NODE (signal_id);
2323 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2324 g_warning ("%s: signal `%s' does not support details", G_STRLOC, detailed_signal);
2325 else if (!g_type_is_a (itype, node->itype))
2326 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
2329 Handler *handler = handler_new (after);
2331 handler_seq_no = handler->sequential_number;
2332 handler->detail = detail;
2333 handler->closure = g_closure_ref ((swapped ? g_cclosure_new_swap : g_cclosure_new) (c_handler, data, destroy_data));
2334 g_closure_sink (handler->closure);
2335 handler_insert (signal_id, instance, handler);
2336 if (node->c_marshaller && G_CLOSURE_NEEDS_MARSHAL (handler->closure))
2337 g_closure_set_marshal (handler->closure, node->c_marshaller);
2341 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
2344 return handler_seq_no;
2348 * g_signal_handler_block:
2349 * @instance: The instance to block the signal handler of.
2350 * @handler_id: Handler id of the handler to be blocked.
2352 * Blocks a handler of an instance so it will not be called during any
2353 * signal emissions unless it is unblocked again. Thus "blocking" a
2354 * signal handler means to temporarily deactive it, a signal handler
2355 * has to be unblocked exactly the same amount of times it has been
2356 * blocked before to become active again.
2358 * The @handler_id has to be a valid signal handler id, connected to a
2359 * signal of @instance.
2362 g_signal_handler_block (gpointer instance,
2367 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2368 g_return_if_fail (handler_id > 0);
2371 handler = handler_lookup (instance, handler_id, NULL);
2374 #ifndef G_DISABLE_CHECKS
2375 if (handler->block_count >= HANDLER_MAX_BLOCK_COUNT - 1)
2376 g_error (G_STRLOC ": handler block_count overflow, %s", REPORT_BUG);
2378 handler->block_count += 1;
2381 g_warning ("%s: instance `%p' has no handler with id `%lu'", G_STRLOC, instance, handler_id);
2386 * g_signal_handler_unblock:
2387 * @instance: The instance to unblock the signal handler of.
2388 * @handler_id: Handler id of the handler to be unblocked.
2390 * Undoes the effect of a previous g_signal_handler_block() call. A
2391 * blocked handler is skipped during signal emissions and will not be
2392 * invoked, unblocking it (for exactly the amount of times it has been
2393 * blocked before) reverts its "blocked" state, so the handler will be
2394 * recognized by the signal system and is called upon future or
2395 * currently ongoing signal emissions (since the order in which
2396 * handlers are called during signal emissions is deterministic,
2397 * whether the unblocked handler in question is called as part of a
2398 * currently ongoing emission depends on how far that emission has
2401 * The @handler_id has to be a valid id of a signal handler that is
2402 * connected to a signal of @instance and is currently blocked.
2405 g_signal_handler_unblock (gpointer instance,
2410 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2411 g_return_if_fail (handler_id > 0);
2414 handler = handler_lookup (instance, handler_id, NULL);
2417 if (handler->block_count)
2418 handler->block_count -= 1;
2420 g_warning (G_STRLOC ": handler `%lu' of instance `%p' is not blocked", handler_id, instance);
2423 g_warning ("%s: instance `%p' has no handler with id `%lu'", G_STRLOC, instance, handler_id);
2428 * g_signal_handler_disconnect:
2429 * @instance: The instance to remove the signal handler from.
2430 * @handler_id: Handler id of the handler to be disconnected.
2432 * Disconnects a handler from an instance so it will not be called during
2433 * any future or currently ongoing emissions of the signal it has been
2434 * connected to. The @handler_id becomes invalid and may be reused.
2436 * The @handler_id has to be a valid signal handler id, connected to a
2437 * signal of @instance.
2440 g_signal_handler_disconnect (gpointer instance,
2446 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2447 g_return_if_fail (handler_id > 0);
2450 handler = handler_lookup (instance, handler_id, &signal_id);
2453 handler->sequential_number = 0;
2454 handler->block_count = 1;
2455 handler_unref_R (signal_id, instance, handler);
2458 g_warning ("%s: instance `%p' has no handler with id `%lu'", G_STRLOC, instance, handler_id);
2463 * g_signal_handler_is_connected:
2464 * @instance: The instance where a signal handler is sought.
2465 * @handler_id: the handler id.
2467 * Returns whether @handler_id is the id of a handler connected to @instance.
2469 * Returns: whether @handler_id identifies a handler connected to @instance.
2472 g_signal_handler_is_connected (gpointer instance,
2478 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), FALSE);
2481 handler = handler_lookup (instance, handler_id, NULL);
2482 connected = handler != NULL;
2489 g_signal_handlers_destroy (gpointer instance)
2491 GBSearchArray *hlbsa;
2493 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2496 hlbsa = g_hash_table_lookup (g_handler_list_bsa_ht, instance);
2501 /* reentrancy caution, delete instance trace first */
2502 g_hash_table_remove (g_handler_list_bsa_ht, instance);
2504 for (i = 0; i < hlbsa->n_nodes; i++)
2506 HandlerList *hlist = g_bsearch_array_get_nth (hlbsa, &g_signal_hlbsa_bconfig, i);
2507 Handler *handler = hlist->handlers;
2511 Handler *tmp = handler;
2513 handler = tmp->next;
2514 tmp->block_count = 1;
2515 /* cruel unlink, this works because _all_ handlers vanish */
2518 if (tmp->sequential_number)
2520 tmp->sequential_number = 0;
2521 handler_unref_R (0, NULL, tmp);
2525 g_bsearch_array_free (hlbsa, &g_signal_hlbsa_bconfig);
2531 * g_signal_handler_find:
2532 * @instance: The instance owning the signal handler to be found.
2533 * @mask: Mask indicating which of @signal_id, @detail, @closure, @func
2534 * and/or @data the handler has to match.
2535 * @signal_id: Signal the handler has to be connected to.
2536 * @detail: Signal detail the handler has to be connected to.
2537 * @closure: The closure the handler will invoke.
2538 * @func: The C closure callback of the handler (useless for non-C closures).
2539 * @data: The closure data of the handler's closure.
2541 * Finds the first signal handler that matches certain selection criteria.
2542 * The criteria mask is passed as an OR-ed combination of #GSignalMatchType
2543 * flags, and the criteria values are passed as arguments.
2544 * The match @mask has to be non-0 for successful matches.
2545 * If no handler was found, 0 is returned.
2547 * Returns: A valid non-0 signal handler id for a successful match.
2550 g_signal_handler_find (gpointer instance,
2551 GSignalMatchType mask,
2558 gulong handler_seq_no = 0;
2560 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2561 g_return_val_if_fail ((mask & ~G_SIGNAL_MATCH_MASK) == 0, 0);
2563 if (mask & G_SIGNAL_MATCH_MASK)
2565 HandlerMatch *mlist;
2568 mlist = handlers_find (instance, mask, signal_id, detail, closure, func, data, TRUE);
2571 handler_seq_no = mlist->handler->sequential_number;
2572 handler_match_free1_R (mlist, instance);
2577 return handler_seq_no;
2581 signal_handlers_foreach_matched_R (gpointer instance,
2582 GSignalMatchType mask,
2588 void (*callback) (gpointer instance,
2589 gulong handler_seq_no))
2591 HandlerMatch *mlist;
2592 guint n_handlers = 0;
2594 mlist = handlers_find (instance, mask, signal_id, detail, closure, func, data, FALSE);
2598 if (mlist->handler->sequential_number)
2601 callback (instance, mlist->handler->sequential_number);
2604 mlist = handler_match_free1_R (mlist, instance);
2611 * g_signal_handlers_block_matched:
2612 * @instance: The instance to block handlers from.
2613 * @mask: Mask indicating which of @signal_id, @detail, @closure, @func
2614 * and/or @data the handlers have to match.
2615 * @signal_id: Signal the handlers have to be connected to.
2616 * @detail: Signal detail the handlers have to be connected to.
2617 * @closure: The closure the handlers will invoke.
2618 * @func: The C closure callback of the handlers (useless for non-C closures).
2619 * @data: The closure data of the handlers' closures.
2621 * Blocks all handlers on an instance that match a certain selection criteria.
2622 * The criteria mask is passed as an OR-ed combination of #GSignalMatchType
2623 * flags, and the criteria values are passed as arguments.
2624 * Passing at least one of the %G_SIGNAL_MATCH_CLOSURE, %G_SIGNAL_MATCH_FUNC
2625 * or %G_SIGNAL_MATCH_DATA match flags is required for successful matches.
2626 * If no handlers were found, 0 is returned, the number of blocked handlers
2629 * Returns: The number of handlers that matched.
2632 g_signal_handlers_block_matched (gpointer instance,
2633 GSignalMatchType mask,
2640 guint n_handlers = 0;
2642 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2643 g_return_val_if_fail ((mask & ~G_SIGNAL_MATCH_MASK) == 0, 0);
2645 if (mask & (G_SIGNAL_MATCH_CLOSURE | G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA))
2648 n_handlers = signal_handlers_foreach_matched_R (instance, mask, signal_id, detail,
2649 closure, func, data,
2650 g_signal_handler_block);
2658 * g_signal_handlers_unblock_matched:
2659 * @instance: The instance to unblock handlers from.
2660 * @mask: Mask indicating which of @signal_id, @detail, @closure, @func
2661 * and/or @data the handlers have to match.
2662 * @signal_id: Signal the handlers have to be connected to.
2663 * @detail: Signal detail the handlers have to be connected to.
2664 * @closure: The closure the handlers will invoke.
2665 * @func: The C closure callback of the handlers (useless for non-C closures).
2666 * @data: The closure data of the handlers' closures.
2668 * Unblocks all handlers on an instance that match a certain selection
2669 * criteria. The criteria mask is passed as an OR-ed combination of
2670 * #GSignalMatchType flags, and the criteria values are passed as arguments.
2671 * Passing at least one of the %G_SIGNAL_MATCH_CLOSURE, %G_SIGNAL_MATCH_FUNC
2672 * or %G_SIGNAL_MATCH_DATA match flags is required for successful matches.
2673 * If no handlers were found, 0 is returned, the number of unblocked handlers
2674 * otherwise. The match criteria should not apply to any handlers that are
2675 * not currently blocked.
2677 * Returns: The number of handlers that matched.
2680 g_signal_handlers_unblock_matched (gpointer instance,
2681 GSignalMatchType mask,
2688 guint n_handlers = 0;
2690 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2691 g_return_val_if_fail ((mask & ~G_SIGNAL_MATCH_MASK) == 0, 0);
2693 if (mask & (G_SIGNAL_MATCH_CLOSURE | G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA))
2696 n_handlers = signal_handlers_foreach_matched_R (instance, mask, signal_id, detail,
2697 closure, func, data,
2698 g_signal_handler_unblock);
2706 * g_signal_handlers_disconnect_matched:
2707 * @instance: The instance to remove handlers from.
2708 * @mask: Mask indicating which of @signal_id, @detail, @closure, @func
2709 * and/or @data the handlers have to match.
2710 * @signal_id: Signal the handlers have to be connected to.
2711 * @detail: Signal detail the handlers have to be connected to.
2712 * @closure: The closure the handlers will invoke.
2713 * @func: The C closure callback of the handlers (useless for non-C closures).
2714 * @data: The closure data of the handlers' closures.
2716 * Disconnects all handlers on an instance that match a certain
2717 * selection criteria. The criteria mask is passed as an OR-ed
2718 * combination of #GSignalMatchType flags, and the criteria values are
2719 * passed as arguments. Passing at least one of the
2720 * %G_SIGNAL_MATCH_CLOSURE, %G_SIGNAL_MATCH_FUNC or
2721 * %G_SIGNAL_MATCH_DATA match flags is required for successful
2722 * matches. If no handlers were found, 0 is returned, the number of
2723 * disconnected handlers otherwise.
2725 * Returns: The number of handlers that matched.
2728 g_signal_handlers_disconnect_matched (gpointer instance,
2729 GSignalMatchType mask,
2736 guint n_handlers = 0;
2738 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2739 g_return_val_if_fail ((mask & ~G_SIGNAL_MATCH_MASK) == 0, 0);
2741 if (mask & (G_SIGNAL_MATCH_CLOSURE | G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA))
2744 n_handlers = signal_handlers_foreach_matched_R (instance, mask, signal_id, detail,
2745 closure, func, data,
2746 g_signal_handler_disconnect);
2754 * g_signal_has_handler_pending:
2755 * @instance: the object whose signal handlers are sought.
2756 * @signal_id: the signal id.
2757 * @detail: the detail.
2758 * @may_be_blocked: whether blocked handlers should count as match.
2760 * Returns whether there are any handlers connected to @instance for the
2761 * given signal id and detail.
2763 * One example of when you might use this is when the arguments to the
2764 * signal are difficult to compute. A class implementor may opt to not
2765 * emit the signal if no one is attached anyway, thus saving the cost
2766 * of building the arguments.
2768 * Returns: %TRUE if a handler is connected to the signal, %FALSE
2772 g_signal_has_handler_pending (gpointer instance,
2775 gboolean may_be_blocked)
2777 HandlerMatch *mlist;
2778 gboolean has_pending;
2780 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), FALSE);
2781 g_return_val_if_fail (signal_id > 0, FALSE);
2786 SignalNode *node = LOOKUP_SIGNAL_NODE (signal_id);
2788 if (!(node->flags & G_SIGNAL_DETAILED))
2790 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
2795 mlist = handlers_find (instance,
2796 (G_SIGNAL_MATCH_ID | G_SIGNAL_MATCH_DETAIL | (may_be_blocked ? 0 : G_SIGNAL_MATCH_UNBLOCKED)),
2797 signal_id, detail, NULL, NULL, NULL, TRUE);
2801 handler_match_free1_R (mlist, instance);
2804 has_pending = FALSE;
2810 static inline gboolean
2811 signal_check_skip_emission (SignalNode *node,
2817 /* are we able to check for NULL class handlers? */
2818 if (!node->test_class_offset)
2821 /* are there emission hooks pending? */
2822 if (node->emission_hooks && node->emission_hooks->hooks)
2825 /* is there a non-NULL class handler? */
2826 if (node->test_class_offset != TEST_CLASS_MAGIC)
2828 GTypeClass *class = G_TYPE_INSTANCE_GET_CLASS (instance, G_TYPE_FROM_INSTANCE (instance), GTypeClass);
2830 if (G_STRUCT_MEMBER (gpointer, class, node->test_class_offset))
2834 /* are signals being debugged? */
2835 #ifdef G_ENABLE_DEBUG
2836 IF_DEBUG (SIGNALS, g_trace_instance_signals || g_trap_instance_signals)
2838 #endif /* G_ENABLE_DEBUG */
2840 /* is this a no-recurse signal already in emission? */
2841 if (node->flags & G_SIGNAL_NO_RECURSE &&
2842 emission_find (g_restart_emissions, node->signal_id, detail, instance))
2845 /* do we have pending handlers? */
2846 hlist = handler_list_lookup (node->signal_id, instance);
2847 if (hlist && hlist->handlers)
2850 /* none of the above, no emission required */
2856 * @instance_and_params: argument list for the signal emission. The first
2857 * element in the array is a #GValue for the instance the signal is
2858 * being emitted on. The rest are any arguments to be passed to the
2860 * @signal_id: the signal id
2861 * @detail: the detail
2862 * @return_value: Location to store the return value of the signal emission.
2866 * Note that g_signal_emitv() doesn't change @return_value if no handlers are
2867 * connected, in contrast to g_signal_emit() and g_signal_emit_valist().
2870 g_signal_emitv (const GValue *instance_and_params,
2873 GValue *return_value)
2877 #ifdef G_ENABLE_DEBUG
2878 const GValue *param_values;
2882 g_return_if_fail (instance_and_params != NULL);
2883 instance = g_value_peek_pointer (instance_and_params);
2884 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2885 g_return_if_fail (signal_id > 0);
2887 #ifdef G_ENABLE_DEBUG
2888 param_values = instance_and_params + 1;
2892 node = LOOKUP_SIGNAL_NODE (signal_id);
2893 if (!node || !g_type_is_a (G_TYPE_FROM_INSTANCE (instance), node->itype))
2895 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
2899 #ifdef G_ENABLE_DEBUG
2900 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2902 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
2906 for (i = 0; i < node->n_params; i++)
2907 if (!G_TYPE_CHECK_VALUE_TYPE (param_values + i, node->param_types[i] & ~G_SIGNAL_TYPE_STATIC_SCOPE))
2909 g_critical ("%s: value for `%s' parameter %u for signal \"%s\" is of type `%s'",
2911 type_debug_name (node->param_types[i]),
2914 G_VALUE_TYPE_NAME (param_values + i));
2918 if (node->return_type != G_TYPE_NONE)
2922 g_critical ("%s: return value `%s' for signal \"%s\" is (NULL)",
2924 type_debug_name (node->return_type),
2929 else if (!node->accumulator && !G_TYPE_CHECK_VALUE_TYPE (return_value, node->return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE))
2931 g_critical ("%s: return value `%s' for signal \"%s\" is of type `%s'",
2933 type_debug_name (node->return_type),
2935 G_VALUE_TYPE_NAME (return_value));
2941 return_value = NULL;
2942 #endif /* G_ENABLE_DEBUG */
2944 /* optimize NOP emissions */
2945 if (signal_check_skip_emission (node, instance, detail))
2947 /* nothing to do to emit this signal */
2949 /* g_printerr ("omitting emission of \"%s\"\n", node->name); */
2954 signal_emit_unlocked_R (node, detail, instance, return_value, instance_and_params);
2958 * g_signal_emit_valist:
2959 * @instance: the instance the signal is being emitted on.
2960 * @signal_id: the signal id
2961 * @detail: the detail
2962 * @var_args: a list of parameters to be passed to the signal, followed by a
2963 * location for the return value. If the return type of the signal
2964 * is #G_TYPE_NONE, the return value location can be omitted.
2968 * Note that g_signal_emit_valist() resets the return value to the default
2969 * if no handlers are connected, in contrast to g_signal_emitv().
2972 g_signal_emit_valist (gpointer instance,
2977 GValue *instance_and_params;
2978 GType signal_return_type;
2979 GValue *param_values;
2983 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2984 g_return_if_fail (signal_id > 0);
2987 node = LOOKUP_SIGNAL_NODE (signal_id);
2988 if (!node || !g_type_is_a (G_TYPE_FROM_INSTANCE (instance), node->itype))
2990 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
2994 #ifndef G_DISABLE_CHECKS
2995 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2997 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
3001 #endif /* !G_DISABLE_CHECKS */
3003 /* optimize NOP emissions */
3004 if (signal_check_skip_emission (node, instance, detail))
3006 /* nothing to do to emit this signal */
3008 /* g_printerr ("omitting emission of \"%s\"\n", node->name); */
3012 n_params = node->n_params;
3013 signal_return_type = node->return_type;
3014 instance_and_params = g_slice_alloc (sizeof (GValue) * (n_params + 1));
3015 param_values = instance_and_params + 1;
3017 for (i = 0; i < node->n_params; i++)
3020 GType ptype = node->param_types[i] & ~G_SIGNAL_TYPE_STATIC_SCOPE;
3021 gboolean static_scope = node->param_types[i] & G_SIGNAL_TYPE_STATIC_SCOPE;
3023 param_values[i].g_type = 0;
3025 g_value_init (param_values + i, ptype);
3026 G_VALUE_COLLECT (param_values + i,
3028 static_scope ? G_VALUE_NOCOPY_CONTENTS : 0,
3032 g_warning ("%s: %s", G_STRLOC, error);
3035 /* we purposely leak the value here, it might not be
3036 * in a sane state if an error condition occoured
3039 g_value_unset (param_values + i);
3041 g_slice_free1 (sizeof (GValue) * (n_params + 1), instance_and_params);
3047 instance_and_params->g_type = 0;
3048 g_value_init (instance_and_params, G_TYPE_FROM_INSTANCE (instance));
3049 g_value_set_instance (instance_and_params, instance);
3050 if (signal_return_type == G_TYPE_NONE)
3051 signal_emit_unlocked_R (node, detail, instance, NULL, instance_and_params);
3054 GValue return_value = { 0, };
3055 gchar *error = NULL;
3056 GType rtype = signal_return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE;
3057 gboolean static_scope = signal_return_type & G_SIGNAL_TYPE_STATIC_SCOPE;
3059 g_value_init (&return_value, rtype);
3061 signal_emit_unlocked_R (node, detail, instance, &return_value, instance_and_params);
3063 G_VALUE_LCOPY (&return_value,
3065 static_scope ? G_VALUE_NOCOPY_CONTENTS : 0,
3068 g_value_unset (&return_value);
3071 g_warning ("%s: %s", G_STRLOC, error);
3074 /* we purposely leak the value here, it might not be
3075 * in a sane state if an error condition occured
3079 for (i = 0; i < n_params; i++)
3080 g_value_unset (param_values + i);
3081 g_value_unset (instance_and_params);
3082 g_slice_free1 (sizeof (GValue) * (n_params + 1), instance_and_params);
3087 * @instance: the instance the signal is being emitted on.
3088 * @signal_id: the signal id
3089 * @detail: the detail
3090 * @...: parameters to be passed to the signal, followed by a
3091 * location for the return value. If the return type of the signal
3092 * is #G_TYPE_NONE, the return value location can be omitted.
3096 * Note that g_signal_emit() resets the return value to the default
3097 * if no handlers are connected, in contrast to g_signal_emitv().
3100 g_signal_emit (gpointer instance,
3107 va_start (var_args, detail);
3108 g_signal_emit_valist (instance, signal_id, detail, var_args);
3113 * g_signal_emit_by_name:
3114 * @instance: the instance the signal is being emitted on.
3115 * @detailed_signal: a string of the form "signal-name::detail".
3116 * @...: parameters to be passed to the signal, followed by a
3117 * location for the return value. If the return type of the signal
3118 * is #G_TYPE_NONE, the return value location can be omitted.
3122 * Note that g_signal_emit_by_name() resets the return value to the default
3123 * if no handlers are connected, in contrast to g_signal_emitv().
3126 g_signal_emit_by_name (gpointer instance,
3127 const gchar *detailed_signal,
3133 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
3134 g_return_if_fail (detailed_signal != NULL);
3137 signal_id = signal_parse_name (detailed_signal, G_TYPE_FROM_INSTANCE (instance), &detail, TRUE);
3144 va_start (var_args, detailed_signal);
3145 g_signal_emit_valist (instance, signal_id, detail, var_args);
3149 g_warning ("%s: signal name `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
3152 static inline gboolean
3153 accumulate (GSignalInvocationHint *ihint,
3154 GValue *return_accu,
3155 GValue *handler_return,
3156 SignalAccumulator *accumulator)
3158 gboolean continue_emission;
3163 continue_emission = accumulator->func (ihint, return_accu, handler_return, accumulator->data);
3164 g_value_reset (handler_return);
3166 return continue_emission;
3170 signal_emit_unlocked_R (SignalNode *node,
3173 GValue *emission_return,
3174 const GValue *instance_and_params)
3176 SignalAccumulator *accumulator;
3178 GClosure *class_closure;
3180 Handler *handler_list = NULL;
3181 GValue *return_accu, accu = { 0, };
3183 gulong max_sequential_handler_number;
3184 gboolean return_value_altered = FALSE;
3186 #ifdef G_ENABLE_DEBUG
3187 IF_DEBUG (SIGNALS, g_trace_instance_signals == instance || g_trap_instance_signals == instance)
3189 g_message ("%s::%s(%u) emitted (instance=%p, signal-node=%p)",
3190 g_type_name (G_TYPE_FROM_INSTANCE (instance)),
3193 if (g_trap_instance_signals == instance)
3196 #endif /* G_ENABLE_DEBUG */
3199 signal_id = node->signal_id;
3200 if (node->flags & G_SIGNAL_NO_RECURSE)
3202 Emission *node = emission_find (g_restart_emissions, signal_id, detail, instance);
3206 node->state = EMISSION_RESTART;
3208 return return_value_altered;
3211 accumulator = node->accumulator;
3215 g_value_init (&accu, node->return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE);
3216 return_accu = &accu;
3220 return_accu = emission_return;
3221 emission.instance = instance;
3222 emission.ihint.signal_id = node->signal_id;
3223 emission.ihint.detail = detail;
3224 emission.ihint.run_type = 0;
3226 emission.chain_type = G_TYPE_NONE;
3227 emission_push ((node->flags & G_SIGNAL_NO_RECURSE) ? &g_restart_emissions : &g_recursive_emissions, &emission);
3228 class_closure = signal_lookup_closure (node, instance);
3233 handler_unref_R (signal_id, instance, handler_list);
3234 max_sequential_handler_number = g_handler_sequential_number;
3235 hlist = handler_list_lookup (signal_id, instance);
3236 handler_list = hlist ? hlist->handlers : NULL;
3238 handler_ref (handler_list);
3240 emission.ihint.run_type = G_SIGNAL_RUN_FIRST;
3242 if ((node->flags & G_SIGNAL_RUN_FIRST) && class_closure)
3244 emission.state = EMISSION_RUN;
3246 emission.chain_type = G_TYPE_FROM_INSTANCE (instance);
3248 g_closure_invoke (class_closure,
3251 instance_and_params,
3253 if (!accumulate (&emission.ihint, emission_return, &accu, accumulator) &&
3254 emission.state == EMISSION_RUN)
3255 emission.state = EMISSION_STOP;
3257 emission.chain_type = G_TYPE_NONE;
3258 return_value_altered = TRUE;
3260 if (emission.state == EMISSION_STOP)
3262 else if (emission.state == EMISSION_RESTART)
3266 if (node->emission_hooks)
3268 gboolean need_destroy, was_in_call, may_recurse = TRUE;
3271 emission.state = EMISSION_HOOK;
3272 hook = g_hook_first_valid (node->emission_hooks, may_recurse);
3275 SignalHook *signal_hook = SIGNAL_HOOK (hook);
3277 if (!signal_hook->detail || signal_hook->detail == detail)
3279 GSignalEmissionHook hook_func = (GSignalEmissionHook) hook->func;
3281 was_in_call = G_HOOK_IN_CALL (hook);
3282 hook->flags |= G_HOOK_FLAG_IN_CALL;
3284 need_destroy = !hook_func (&emission.ihint, node->n_params + 1, instance_and_params, hook->data);
3287 hook->flags &= ~G_HOOK_FLAG_IN_CALL;
3289 g_hook_destroy_link (node->emission_hooks, hook);
3291 hook = g_hook_next_valid (node->emission_hooks, hook, may_recurse);
3294 if (emission.state == EMISSION_RESTART)
3300 Handler *handler = handler_list;
3302 emission.state = EMISSION_RUN;
3303 handler_ref (handler);
3310 handler_unref_R (signal_id, instance, handler_list);
3311 handler_list = handler;
3314 else if (!handler->block_count && (!handler->detail || handler->detail == detail) &&
3315 handler->sequential_number < max_sequential_handler_number)
3318 g_closure_invoke (handler->closure,
3321 instance_and_params,
3323 if (!accumulate (&emission.ihint, emission_return, &accu, accumulator) &&
3324 emission.state == EMISSION_RUN)
3325 emission.state = EMISSION_STOP;
3327 return_value_altered = TRUE;
3329 tmp = emission.state == EMISSION_RUN ? handler->next : NULL;
3332 tmp = handler->next;
3336 handler_unref_R (signal_id, instance, handler_list);
3337 handler_list = handler;
3342 if (emission.state == EMISSION_STOP)
3344 else if (emission.state == EMISSION_RESTART)
3348 emission.ihint.run_type = G_SIGNAL_RUN_LAST;
3350 if ((node->flags & G_SIGNAL_RUN_LAST) && class_closure)
3352 emission.state = EMISSION_RUN;
3354 emission.chain_type = G_TYPE_FROM_INSTANCE (instance);
3356 g_closure_invoke (class_closure,
3359 instance_and_params,
3361 if (!accumulate (&emission.ihint, emission_return, &accu, accumulator) &&
3362 emission.state == EMISSION_RUN)
3363 emission.state = EMISSION_STOP;
3365 emission.chain_type = G_TYPE_NONE;
3366 return_value_altered = TRUE;
3368 if (emission.state == EMISSION_STOP)
3370 else if (emission.state == EMISSION_RESTART)
3376 Handler *handler = handler_list;
3378 emission.state = EMISSION_RUN;
3379 handler_ref (handler);
3384 if (handler->after && !handler->block_count && (!handler->detail || handler->detail == detail) &&
3385 handler->sequential_number < max_sequential_handler_number)
3388 g_closure_invoke (handler->closure,
3391 instance_and_params,
3393 if (!accumulate (&emission.ihint, emission_return, &accu, accumulator) &&
3394 emission.state == EMISSION_RUN)
3395 emission.state = EMISSION_STOP;
3397 return_value_altered = TRUE;
3399 tmp = emission.state == EMISSION_RUN ? handler->next : NULL;
3402 tmp = handler->next;
3406 handler_unref_R (signal_id, instance, handler);
3411 if (emission.state == EMISSION_STOP)
3413 else if (emission.state == EMISSION_RESTART)
3419 emission.ihint.run_type = G_SIGNAL_RUN_CLEANUP;
3421 if ((node->flags & G_SIGNAL_RUN_CLEANUP) && class_closure)
3423 gboolean need_unset = FALSE;
3425 emission.state = EMISSION_STOP;
3427 emission.chain_type = G_TYPE_FROM_INSTANCE (instance);
3429 if (node->return_type != G_TYPE_NONE && !accumulator)
3431 g_value_init (&accu, node->return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE);
3434 g_closure_invoke (class_closure,
3435 node->return_type != G_TYPE_NONE ? &accu : NULL,
3437 instance_and_params,
3440 g_value_unset (&accu);
3442 emission.chain_type = G_TYPE_NONE;
3444 if (emission.state == EMISSION_RESTART)
3449 handler_unref_R (signal_id, instance, handler_list);
3451 emission_pop ((node->flags & G_SIGNAL_NO_RECURSE) ? &g_restart_emissions : &g_recursive_emissions, &emission);
3454 g_value_unset (&accu);
3456 return return_value_altered;
3460 type_debug_name (GType type)
3464 const char *name = g_type_name (type & ~G_SIGNAL_TYPE_STATIC_SCOPE);
3465 return name ? name : "<unknown>";
3472 * g_signal_accumulator_true_handled:
3473 * @ihint: standard #GSignalAccumulator parameter
3474 * @return_accu: standard #GSignalAccumulator parameter
3475 * @handler_return: standard #GSignalAccumulator parameter
3476 * @dummy: standard #GSignalAccumulator parameter
3478 * A predefined #GSignalAccumulator for signals that return a
3479 * boolean values. The behavior that this accumulator gives is
3480 * that a return of %TRUE stops the signal emission: no further
3481 * callbacks will be invoked, while a return of %FALSE allows
3482 * the emission to coninue. The idea here is that a %TRUE return
3483 * indicates that the callback <emphasis>handled</emphasis> the signal,
3484 * and no further handling is needed.
3488 * Returns: standard #GSignalAccumulator result
3491 g_signal_accumulator_true_handled (GSignalInvocationHint *ihint,
3492 GValue *return_accu,
3493 const GValue *handler_return,
3496 gboolean continue_emission;
3497 gboolean signal_handled;
3499 signal_handled = g_value_get_boolean (handler_return);
3500 g_value_set_boolean (return_accu, signal_handled);
3501 continue_emission = !signal_handled;
3503 return continue_emission;
3506 /* --- compile standard marshallers --- */
3507 #include "gmarshal.c"
3509 #define __G_SIGNAL_C__
3510 #include "gobjectaliasdef.c"