1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 2000-2001 Red Hat, Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General
15 * Public License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17 * Boston, MA 02111-1307, USA.
19 * this code is based on the original GtkSignal implementation
20 * for the Gtk+ library by Peter Mattis <petm@xcf.berkeley.edu>
33 #include "gtype-private.h"
34 #include "gbsearcharray.h"
35 #include "gvaluecollector.h"
36 #include "gvaluetypes.h"
39 #include "gobject_trace.h"
44 * @short_description: A means for customization of object behaviour
45 * and a general purpose notification mechanism
48 * The basic concept of the signal system is that of the
49 * <emphasis>emission</emphasis> of a signal. Signals are introduced
50 * per-type and are identified through strings. Signals introduced
51 * for a parent type are available in derived types as well, so
52 * basically they are a per-type facility that is inherited. A signal
53 * emission mainly involves invocation of a certain set of callbacks
54 * in precisely defined manner. There are two main categories of such
55 * callbacks, per-object
56 * <footnote><para>Although signals can deal with any kind of instantiatable
57 * type, i'm referring to those types as "object types" in the following,
58 * simply because that is the context most users will encounter signals in.
60 * ones and user provided ones.
61 * The per-object callbacks are most often referred to as "object method
62 * handler" or "default (signal) handler", while user provided callbacks are
63 * usually just called "signal handler".
64 * The object method handler is provided at signal creation time (this most
65 * frequently happens at the end of an object class' creation), while user
66 * provided handlers are frequently connected and disconnected to/from a certain
67 * signal on certain object instances.
69 * A signal emission consists of five stages, unless prematurely stopped:
71 * <varlistentry><term></term><listitem><para>
72 * 1 - Invocation of the object method handler for %G_SIGNAL_RUN_FIRST signals
73 * </para></listitem></varlistentry>
74 * <varlistentry><term></term><listitem><para>
75 * 2 - Invocation of normal user-provided signal handlers (<emphasis>after</emphasis> flag %FALSE)
76 * </para></listitem></varlistentry>
77 * <varlistentry><term></term><listitem><para>
78 * 3 - Invocation of the object method handler for %G_SIGNAL_RUN_LAST signals
79 * </para></listitem></varlistentry>
80 * <varlistentry><term></term><listitem><para>
81 * 4 - Invocation of user provided signal handlers, connected with an <emphasis>after</emphasis> flag of %TRUE
82 * </para></listitem></varlistentry>
83 * <varlistentry><term></term><listitem><para>
84 * 5 - Invocation of the object method handler for %G_SIGNAL_RUN_CLEANUP signals
85 * </para></listitem></varlistentry>
87 * The user-provided signal handlers are called in the order they were
89 * All handlers may prematurely stop a signal emission, and any number of
90 * handlers may be connected, disconnected, blocked or unblocked during
92 * There are certain criteria for skipping user handlers in stages 2 and 4
93 * of a signal emission.
94 * First, user handlers may be <emphasis>blocked</emphasis>, blocked handlers are omitted
95 * during callback invocation, to return from the "blocked" state, a
96 * handler has to get unblocked exactly the same amount of times
97 * it has been blocked before.
98 * Second, upon emission of a %G_SIGNAL_DETAILED signal, an additional
99 * "detail" argument passed in to g_signal_emit() has to match the detail
100 * argument of the signal handler currently subject to invocation.
101 * Specification of no detail argument for signal handlers (omission of the
102 * detail part of the signal specification upon connection) serves as a
103 * wildcard and matches any detail argument passed in to emission.
107 #define REPORT_BUG "please report occurrence circumstances to gtk-devel-list@gnome.org"
108 #ifdef G_ENABLE_DEBUG
109 #define IF_DEBUG(debug_type, cond) if ((_g_type_debug_flags & G_TYPE_DEBUG_ ## debug_type) || cond)
110 static volatile gpointer g_trace_instance_signals = NULL;
111 static volatile gpointer g_trap_instance_signals = NULL;
112 #endif /* G_ENABLE_DEBUG */
115 /* --- typedefs --- */
116 typedef struct _SignalNode SignalNode;
117 typedef struct _SignalKey SignalKey;
118 typedef struct _Emission Emission;
119 typedef struct _Handler Handler;
120 typedef struct _HandlerList HandlerList;
121 typedef struct _HandlerMatch HandlerMatch;
131 /* --- prototypes --- */
132 static inline guint signal_id_lookup (GQuark quark,
134 static void signal_destroy_R (SignalNode *signal_node);
135 static inline HandlerList* handler_list_ensure (guint signal_id,
137 static inline HandlerList* handler_list_lookup (guint signal_id,
139 static inline Handler* handler_new (gboolean after);
140 static void handler_insert (guint signal_id,
143 static Handler* handler_lookup (gpointer instance,
146 static inline HandlerMatch* handler_match_prepend (HandlerMatch *list,
149 static inline HandlerMatch* handler_match_free1_R (HandlerMatch *node,
151 static HandlerMatch* handlers_find (gpointer instance,
152 GSignalMatchType mask,
158 gboolean one_and_only);
159 static inline void handler_ref (Handler *handler);
160 static inline void handler_unref_R (guint signal_id,
163 static gint handler_lists_cmp (gconstpointer node1,
164 gconstpointer node2);
165 static inline void emission_push (Emission **emission_list_p,
167 static inline void emission_pop (Emission **emission_list_p,
169 static inline Emission* emission_find (Emission *emission_list,
173 static gint class_closures_cmp (gconstpointer node1,
174 gconstpointer node2);
175 static gint signal_key_cmp (gconstpointer node1,
176 gconstpointer node2);
177 static gboolean signal_emit_unlocked_R (SignalNode *node,
180 GValue *return_value,
181 const GValue *instance_and_params);
182 static const gchar * type_debug_name (GType type);
185 /* --- structures --- */
188 GSignalAccumulator func;
196 #define SIGNAL_HOOK(hook) ((SignalHook*) (hook))
200 /* permanent portion */
206 /* reinitializable portion */
207 guint test_class_offset : 12;
210 GType *param_types; /* mangled with G_SIGNAL_TYPE_STATIC_SCOPE flag */
211 GType return_type; /* mangled with G_SIGNAL_TYPE_STATIC_SCOPE flag */
212 GBSearchArray *class_closure_bsa;
213 SignalAccumulator *accumulator;
214 GSignalCMarshaller c_marshaller;
215 GHookList *emission_hooks;
217 #define MAX_TEST_CLASS_OFFSET (4096) /* 2^12, 12 bits for test_class_offset */
218 #define TEST_CLASS_MAGIC (1) /* indicates NULL class closure, candidate for NOP optimization */
231 GSignalInvocationHint ihint;
240 Handler *tail_before; /* normal signal handlers are appended here */
241 Handler *tail_after; /* CONNECT_AFTER handlers are appended here */
246 gulong sequential_number;
251 guint block_count : 16;
252 #define HANDLER_MAX_BLOCK_COUNT (1 << 16)
265 GType instance_type; /* 0 for default closure */
270 /* --- variables --- */
271 static GBSearchArray *g_signal_key_bsa = NULL;
272 static const GBSearchConfig g_signal_key_bconfig = {
275 G_BSEARCH_ARRAY_ALIGN_POWER2,
277 static GBSearchConfig g_signal_hlbsa_bconfig = {
278 sizeof (HandlerList),
282 static GBSearchConfig g_class_closure_bconfig = {
283 sizeof (ClassClosure),
287 static GHashTable *g_handler_list_bsa_ht = NULL;
288 static Emission *g_recursive_emissions = NULL;
289 static Emission *g_restart_emissions = NULL;
290 static gulong g_handler_sequential_number = 1;
291 G_LOCK_DEFINE_STATIC (g_signal_mutex);
292 #define SIGNAL_LOCK() G_LOCK (g_signal_mutex)
293 #define SIGNAL_UNLOCK() G_UNLOCK (g_signal_mutex)
296 /* --- signal nodes --- */
297 static guint g_n_signal_nodes = 0;
298 static SignalNode **g_signal_nodes = NULL;
300 static inline SignalNode*
301 LOOKUP_SIGNAL_NODE (register guint signal_id)
303 if (signal_id < g_n_signal_nodes)
304 return g_signal_nodes[signal_id];
310 /* --- functions --- */
312 signal_id_lookup (GQuark quark,
315 GType *ifaces, type = itype;
321 /* try looking up signals for this type and its ancestors */
324 SignalKey *signal_key;
327 signal_key = g_bsearch_array_lookup (g_signal_key_bsa, &g_signal_key_bconfig, &key);
330 return signal_key->signal_id;
332 type = g_type_parent (type);
336 /* no luck, try interfaces it exports */
337 ifaces = g_type_interfaces (itype, &n_ifaces);
340 SignalKey *signal_key;
342 key.itype = ifaces[n_ifaces];
343 signal_key = g_bsearch_array_lookup (g_signal_key_bsa, &g_signal_key_bconfig, &key);
348 return signal_key->signal_id;
357 class_closures_cmp (gconstpointer node1,
360 const ClassClosure *c1 = node1, *c2 = node2;
362 return G_BSEARCH_ARRAY_CMP (c1->instance_type, c2->instance_type);
366 handler_lists_cmp (gconstpointer node1,
369 const HandlerList *hlist1 = node1, *hlist2 = node2;
371 return G_BSEARCH_ARRAY_CMP (hlist1->signal_id, hlist2->signal_id);
374 static inline HandlerList*
375 handler_list_ensure (guint signal_id,
378 GBSearchArray *hlbsa = g_hash_table_lookup (g_handler_list_bsa_ht, instance);
381 key.signal_id = signal_id;
383 key.tail_before = NULL;
384 key.tail_after = NULL;
387 hlbsa = g_bsearch_array_create (&g_signal_hlbsa_bconfig);
388 hlbsa = g_bsearch_array_insert (hlbsa, &g_signal_hlbsa_bconfig, &key);
389 g_hash_table_insert (g_handler_list_bsa_ht, instance, hlbsa);
393 GBSearchArray *o = hlbsa;
395 hlbsa = g_bsearch_array_insert (o, &g_signal_hlbsa_bconfig, &key);
397 g_hash_table_insert (g_handler_list_bsa_ht, instance, hlbsa);
399 return g_bsearch_array_lookup (hlbsa, &g_signal_hlbsa_bconfig, &key);
402 static inline HandlerList*
403 handler_list_lookup (guint signal_id,
406 GBSearchArray *hlbsa = g_hash_table_lookup (g_handler_list_bsa_ht, instance);
409 key.signal_id = signal_id;
411 return hlbsa ? g_bsearch_array_lookup (hlbsa, &g_signal_hlbsa_bconfig, &key) : NULL;
415 handler_lookup (gpointer instance,
419 GBSearchArray *hlbsa = g_hash_table_lookup (g_handler_list_bsa_ht, instance);
425 for (i = 0; i < hlbsa->n_nodes; i++)
427 HandlerList *hlist = g_bsearch_array_get_nth (hlbsa, &g_signal_hlbsa_bconfig, i);
430 for (handler = hlist->handlers; handler; handler = handler->next)
431 if (handler->sequential_number == handler_id)
434 *signal_id_p = hlist->signal_id;
444 static inline HandlerMatch*
445 handler_match_prepend (HandlerMatch *list,
451 node = g_slice_new (HandlerMatch);
452 node->handler = handler;
454 node->signal_id = signal_id;
455 handler_ref (handler);
459 static inline HandlerMatch*
460 handler_match_free1_R (HandlerMatch *node,
463 HandlerMatch *next = node->next;
465 handler_unref_R (node->signal_id, instance, node->handler);
466 g_slice_free (HandlerMatch, node);
472 handlers_find (gpointer instance,
473 GSignalMatchType mask,
479 gboolean one_and_only)
481 HandlerMatch *mlist = NULL;
483 if (mask & G_SIGNAL_MATCH_ID)
485 HandlerList *hlist = handler_list_lookup (signal_id, instance);
487 SignalNode *node = NULL;
489 if (mask & G_SIGNAL_MATCH_FUNC)
491 node = LOOKUP_SIGNAL_NODE (signal_id);
492 if (!node || !node->c_marshaller)
497 for (handler = hlist ? hlist->handlers : NULL; handler; handler = handler->next)
498 if (handler->sequential_number &&
499 ((mask & G_SIGNAL_MATCH_DETAIL) || handler->detail == detail) &&
500 ((mask & G_SIGNAL_MATCH_CLOSURE) || handler->closure == closure) &&
501 ((mask & G_SIGNAL_MATCH_DATA) || handler->closure->data == data) &&
502 ((mask & G_SIGNAL_MATCH_UNBLOCKED) || handler->block_count == 0) &&
503 ((mask & G_SIGNAL_MATCH_FUNC) || (handler->closure->marshal == node->c_marshaller &&
504 handler->closure->meta_marshal == 0 &&
505 ((GCClosure*) handler->closure)->callback == func)))
507 mlist = handler_match_prepend (mlist, handler, signal_id);
514 GBSearchArray *hlbsa = g_hash_table_lookup (g_handler_list_bsa_ht, instance);
521 for (i = 0; i < hlbsa->n_nodes; i++)
523 HandlerList *hlist = g_bsearch_array_get_nth (hlbsa, &g_signal_hlbsa_bconfig, i);
524 SignalNode *node = NULL;
527 if (!(mask & G_SIGNAL_MATCH_FUNC))
529 node = LOOKUP_SIGNAL_NODE (hlist->signal_id);
530 if (!node->c_marshaller)
534 for (handler = hlist->handlers; handler; handler = handler->next)
535 if (handler->sequential_number &&
536 ((mask & G_SIGNAL_MATCH_DETAIL) || handler->detail == detail) &&
537 ((mask & G_SIGNAL_MATCH_CLOSURE) || handler->closure == closure) &&
538 ((mask & G_SIGNAL_MATCH_DATA) || handler->closure->data == data) &&
539 ((mask & G_SIGNAL_MATCH_UNBLOCKED) || handler->block_count == 0) &&
540 ((mask & G_SIGNAL_MATCH_FUNC) || (handler->closure->marshal == node->c_marshaller &&
541 handler->closure->meta_marshal == 0 &&
542 ((GCClosure*) handler->closure)->callback == func)))
544 mlist = handler_match_prepend (mlist, handler, hlist->signal_id);
555 static inline Handler*
556 handler_new (gboolean after)
558 Handler *handler = g_slice_new (Handler);
559 #ifndef G_DISABLE_CHECKS
560 if (g_handler_sequential_number < 1)
561 g_error (G_STRLOC ": handler id overflow, %s", REPORT_BUG);
564 handler->sequential_number = g_handler_sequential_number++;
565 handler->prev = NULL;
566 handler->next = NULL;
568 handler->ref_count = 1;
569 handler->block_count = 0;
570 handler->after = after != FALSE;
571 handler->closure = NULL;
577 handler_ref (Handler *handler)
579 g_return_if_fail (handler->ref_count > 0);
581 g_atomic_int_inc ((int *)&handler->ref_count);
585 handler_unref_R (guint signal_id,
591 g_return_if_fail (handler->ref_count > 0);
593 is_zero = g_atomic_int_dec_and_test ((int *)&handler->ref_count);
595 if (G_UNLIKELY (is_zero))
597 HandlerList *hlist = NULL;
600 handler->next->prev = handler->prev;
601 if (handler->prev) /* watch out for g_signal_handlers_destroy()! */
602 handler->prev->next = handler->next;
605 hlist = handler_list_lookup (signal_id, instance);
606 hlist->handlers = handler->next;
611 /* check if we are removing the handler pointed to by tail_before */
612 if (!handler->after && (!handler->next || handler->next->after))
615 hlist = handler_list_lookup (signal_id, instance);
618 g_assert (hlist->tail_before == handler); /* paranoid */
619 hlist->tail_before = handler->prev;
623 /* check if we are removing the handler pointed to by tail_after */
627 hlist = handler_list_lookup (signal_id, instance);
630 g_assert (hlist->tail_after == handler); /* paranoid */
631 hlist->tail_after = handler->prev;
637 g_closure_unref (handler->closure);
639 g_slice_free (Handler, handler);
644 handler_insert (guint signal_id,
650 g_assert (handler->prev == NULL && handler->next == NULL); /* paranoid */
652 hlist = handler_list_ensure (signal_id, instance);
653 if (!hlist->handlers)
655 hlist->handlers = handler;
657 hlist->tail_before = handler;
659 else if (handler->after)
661 handler->prev = hlist->tail_after;
662 hlist->tail_after->next = handler;
666 if (hlist->tail_before)
668 handler->next = hlist->tail_before->next;
670 handler->next->prev = handler;
671 handler->prev = hlist->tail_before;
672 hlist->tail_before->next = handler;
674 else /* insert !after handler into a list of only after handlers */
676 handler->next = hlist->handlers;
678 handler->next->prev = handler;
679 hlist->handlers = handler;
681 hlist->tail_before = handler;
685 hlist->tail_after = handler;
689 emission_push (Emission **emission_list_p,
692 emission->next = *emission_list_p;
693 *emission_list_p = emission;
697 emission_pop (Emission **emission_list_p,
700 Emission *node, *last = NULL;
702 for (node = *emission_list_p; node; last = node, node = last->next)
703 if (node == emission)
706 last->next = node->next;
708 *emission_list_p = node->next;
711 g_assert_not_reached ();
714 static inline Emission*
715 emission_find (Emission *emission_list,
722 for (emission = emission_list; emission; emission = emission->next)
723 if (emission->instance == instance &&
724 emission->ihint.signal_id == signal_id &&
725 emission->ihint.detail == detail)
730 static inline Emission*
731 emission_find_innermost (gpointer instance)
733 Emission *emission, *s = NULL, *c = NULL;
735 for (emission = g_restart_emissions; emission; emission = emission->next)
736 if (emission->instance == instance)
741 for (emission = g_recursive_emissions; emission; emission = emission->next)
742 if (emission->instance == instance)
752 return G_HAVE_GROWING_STACK ? MAX (c, s) : MIN (c, s);
756 signal_key_cmp (gconstpointer node1,
759 const SignalKey *key1 = node1, *key2 = node2;
761 if (key1->itype == key2->itype)
762 return G_BSEARCH_ARRAY_CMP (key1->quark, key2->quark);
764 return G_BSEARCH_ARRAY_CMP (key1->itype, key2->itype);
768 _g_signal_init (void)
771 if (!g_n_signal_nodes)
773 /* setup handler list binary searchable array hash table (in german, that'd be one word ;) */
774 g_handler_list_bsa_ht = g_hash_table_new (g_direct_hash, NULL);
775 g_signal_key_bsa = g_bsearch_array_create (&g_signal_key_bconfig);
777 /* invalid (0) signal_id */
778 g_n_signal_nodes = 1;
779 g_signal_nodes = g_renew (SignalNode*, g_signal_nodes, g_n_signal_nodes);
780 g_signal_nodes[0] = NULL;
786 _g_signals_destroy (GType itype)
791 for (i = 1; i < g_n_signal_nodes; i++)
793 SignalNode *node = g_signal_nodes[i];
795 if (node->itype == itype)
798 g_warning (G_STRLOC ": signal \"%s\" of type `%s' already destroyed",
800 type_debug_name (node->itype));
802 signal_destroy_R (node);
809 * g_signal_stop_emission:
810 * @instance: the object whose signal handlers you wish to stop.
811 * @signal_id: the signal identifier, as returned by g_signal_lookup().
812 * @detail: the detail which the signal was emitted with.
814 * Stops a signal's current emission.
816 * This will prevent the default method from running, if the signal was
817 * %G_SIGNAL_RUN_LAST and you connected normally (i.e. without the "after"
820 * Prints a warning if used on a signal which isn't being emitted.
823 g_signal_stop_emission (gpointer instance,
829 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
830 g_return_if_fail (signal_id > 0);
833 node = LOOKUP_SIGNAL_NODE (signal_id);
834 if (node && detail && !(node->flags & G_SIGNAL_DETAILED))
836 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
840 if (node && g_type_is_a (G_TYPE_FROM_INSTANCE (instance), node->itype))
842 Emission *emission_list = node->flags & G_SIGNAL_NO_RECURSE ? g_restart_emissions : g_recursive_emissions;
843 Emission *emission = emission_find (emission_list, signal_id, detail, instance);
847 if (emission->state == EMISSION_HOOK)
848 g_warning (G_STRLOC ": emission of signal \"%s\" for instance `%p' cannot be stopped from emission hook",
849 node->name, instance);
850 else if (emission->state == EMISSION_RUN)
851 emission->state = EMISSION_STOP;
854 g_warning (G_STRLOC ": no emission of signal \"%s\" to stop for instance `%p'",
855 node->name, instance);
858 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
863 signal_finalize_hook (GHookList *hook_list,
866 GDestroyNotify destroy = hook->destroy;
870 hook->destroy = NULL;
872 destroy (hook->data);
878 * g_signal_add_emission_hook:
879 * @signal_id: the signal identifier, as returned by g_signal_lookup().
880 * @detail: the detail on which to call the hook.
881 * @hook_func: a #GSignalEmissionHook function.
882 * @hook_data: user data for @hook_func.
883 * @data_destroy: a #GDestroyNotify for @hook_data.
885 * Adds an emission hook for a signal, which will get called for any emission
886 * of that signal, independent of the instance. This is possible only
887 * for signals which don't have #G_SIGNAL_NO_HOOKS flag set.
889 * Returns: the hook id, for later use with g_signal_remove_emission_hook().
892 g_signal_add_emission_hook (guint signal_id,
894 GSignalEmissionHook hook_func,
896 GDestroyNotify data_destroy)
898 static gulong seq_hook_id = 1;
901 SignalHook *signal_hook;
903 g_return_val_if_fail (signal_id > 0, 0);
904 g_return_val_if_fail (hook_func != NULL, 0);
907 node = LOOKUP_SIGNAL_NODE (signal_id);
908 if (!node || node->destroyed)
910 g_warning ("%s: invalid signal id `%u'", G_STRLOC, signal_id);
914 if (node->flags & G_SIGNAL_NO_HOOKS)
916 g_warning ("%s: signal id `%u' does not support emission hooks (G_SIGNAL_NO_HOOKS flag set)", G_STRLOC, signal_id);
920 if (detail && !(node->flags & G_SIGNAL_DETAILED))
922 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
926 if (!node->emission_hooks)
928 node->emission_hooks = g_new (GHookList, 1);
929 g_hook_list_init (node->emission_hooks, sizeof (SignalHook));
930 node->emission_hooks->finalize_hook = signal_finalize_hook;
932 hook = g_hook_alloc (node->emission_hooks);
933 hook->data = hook_data;
934 hook->func = (gpointer) hook_func;
935 hook->destroy = data_destroy;
936 signal_hook = SIGNAL_HOOK (hook);
937 signal_hook->detail = detail;
938 node->emission_hooks->seq_id = seq_hook_id;
939 g_hook_append (node->emission_hooks, hook);
940 seq_hook_id = node->emission_hooks->seq_id;
943 return hook->hook_id;
947 * g_signal_remove_emission_hook:
948 * @signal_id: the id of the signal
949 * @hook_id: the id of the emission hook, as returned by
950 * g_signal_add_emission_hook()
952 * Deletes an emission hook.
955 g_signal_remove_emission_hook (guint signal_id,
960 g_return_if_fail (signal_id > 0);
961 g_return_if_fail (hook_id > 0);
964 node = LOOKUP_SIGNAL_NODE (signal_id);
965 if (!node || node->destroyed)
966 g_warning ("%s: invalid signal id `%u'", G_STRLOC, signal_id);
967 else if (!node->emission_hooks || !g_hook_destroy (node->emission_hooks, hook_id))
968 g_warning ("%s: signal \"%s\" had no hook (%lu) to remove", G_STRLOC, node->name, hook_id);
973 signal_parse_name (const gchar *name,
976 gboolean force_quark)
978 const gchar *colon = strchr (name, ':');
983 signal_id = signal_id_lookup (g_quark_try_string (name), itype);
984 if (signal_id && detail_p)
987 else if (colon[1] == ':')
990 guint l = colon - name;
994 memcpy (buffer, name, l);
996 signal_id = signal_id_lookup (g_quark_try_string (buffer), itype);
1000 gchar *signal = g_new (gchar, l + 1);
1002 memcpy (signal, name, l);
1004 signal_id = signal_id_lookup (g_quark_try_string (signal), itype);
1008 if (signal_id && detail_p)
1009 *detail_p = colon[2] ? (force_quark ? g_quark_from_string : g_quark_try_string) (colon + 2) : 0;
1017 * g_signal_parse_name:
1018 * @detailed_signal: a string of the form "signal-name::detail".
1019 * @itype: The interface/instance type that introduced "signal-name".
1020 * @signal_id_p: Location to store the signal id.
1021 * @detail_p: Location to store the detail quark.
1022 * @force_detail_quark: %TRUE forces creation of a #GQuark for the detail.
1024 * Internal function to parse a signal name into its @signal_id
1025 * and @detail quark.
1027 * Returns: Whether the signal name could successfully be parsed and @signal_id_p and @detail_p contain valid return values.
1030 g_signal_parse_name (const gchar *detailed_signal,
1034 gboolean force_detail_quark)
1040 g_return_val_if_fail (detailed_signal != NULL, FALSE);
1041 g_return_val_if_fail (G_TYPE_IS_INSTANTIATABLE (itype) || G_TYPE_IS_INTERFACE (itype), FALSE);
1044 signal_id = signal_parse_name (detailed_signal, itype, &detail, force_detail_quark);
1047 node = signal_id ? LOOKUP_SIGNAL_NODE (signal_id) : NULL;
1048 if (!node || node->destroyed ||
1049 (detail && !(node->flags & G_SIGNAL_DETAILED)))
1053 *signal_id_p = signal_id;
1061 * g_signal_stop_emission_by_name:
1062 * @instance: the object whose signal handlers you wish to stop.
1063 * @detailed_signal: a string of the form "signal-name::detail".
1065 * Stops a signal's current emission.
1067 * This is just like g_signal_stop_emission() except it will look up the
1068 * signal id for you.
1071 g_signal_stop_emission_by_name (gpointer instance,
1072 const gchar *detailed_signal)
1078 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
1079 g_return_if_fail (detailed_signal != NULL);
1082 itype = G_TYPE_FROM_INSTANCE (instance);
1083 signal_id = signal_parse_name (detailed_signal, itype, &detail, TRUE);
1086 SignalNode *node = LOOKUP_SIGNAL_NODE (signal_id);
1088 if (detail && !(node->flags & G_SIGNAL_DETAILED))
1089 g_warning ("%s: signal `%s' does not support details", G_STRLOC, detailed_signal);
1090 else if (!g_type_is_a (itype, node->itype))
1091 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
1094 Emission *emission_list = node->flags & G_SIGNAL_NO_RECURSE ? g_restart_emissions : g_recursive_emissions;
1095 Emission *emission = emission_find (emission_list, signal_id, detail, instance);
1099 if (emission->state == EMISSION_HOOK)
1100 g_warning (G_STRLOC ": emission of signal \"%s\" for instance `%p' cannot be stopped from emission hook",
1101 node->name, instance);
1102 else if (emission->state == EMISSION_RUN)
1103 emission->state = EMISSION_STOP;
1106 g_warning (G_STRLOC ": no emission of signal \"%s\" to stop for instance `%p'",
1107 node->name, instance);
1111 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
1117 * @name: the signal's name.
1118 * @itype: the type that the signal operates on.
1120 * Given the name of the signal and the type of object it connects to, gets
1121 * the signal's identifying integer. Emitting the signal by number is
1122 * somewhat faster than using the name each time.
1124 * Also tries the ancestors of the given type.
1126 * See g_signal_new() for details on allowed signal names.
1128 * Returns: the signal's identifying number, or 0 if no signal was found.
1131 g_signal_lookup (const gchar *name,
1135 g_return_val_if_fail (name != NULL, 0);
1136 g_return_val_if_fail (G_TYPE_IS_INSTANTIATABLE (itype) || G_TYPE_IS_INTERFACE (itype), 0);
1139 signal_id = signal_id_lookup (g_quark_try_string (name), itype);
1143 /* give elaborate warnings */
1144 if (!g_type_name (itype))
1145 g_warning (G_STRLOC ": unable to lookup signal \"%s\" for invalid type id `%"G_GSIZE_FORMAT"'",
1147 else if (!G_TYPE_IS_INSTANTIATABLE (itype))
1148 g_warning (G_STRLOC ": unable to lookup signal \"%s\" for non instantiatable type `%s'",
1149 name, g_type_name (itype));
1150 else if (!g_type_class_peek (itype))
1151 g_warning (G_STRLOC ": unable to lookup signal \"%s\" of unloaded type `%s'",
1152 name, g_type_name (itype));
1159 * g_signal_list_ids:
1160 * @itype: Instance or interface type.
1161 * @n_ids: Location to store the number of signal ids for @itype.
1163 * Lists the signals by id that a certain instance or interface type
1164 * created. Further information about the signals can be acquired through
1167 * Returns: Newly allocated array of signal IDs.
1170 g_signal_list_ids (GType itype,
1178 g_return_val_if_fail (G_TYPE_IS_INSTANTIATABLE (itype) || G_TYPE_IS_INTERFACE (itype), NULL);
1179 g_return_val_if_fail (n_ids != NULL, NULL);
1182 keys = g_bsearch_array_get_nth (g_signal_key_bsa, &g_signal_key_bconfig, 0);
1183 n_nodes = g_bsearch_array_get_n_nodes (g_signal_key_bsa);
1184 result = g_array_new (FALSE, FALSE, sizeof (guint));
1186 for (i = 0; i < n_nodes; i++)
1187 if (keys[i].itype == itype)
1189 const gchar *name = g_quark_to_string (keys[i].quark);
1191 /* Signal names with "_" in them are aliases to the same
1192 * name with "-" instead of "_".
1194 if (!strchr (name, '_'))
1195 g_array_append_val (result, keys[i].signal_id);
1197 *n_ids = result->len;
1201 /* give elaborate warnings */
1202 if (!g_type_name (itype))
1203 g_warning (G_STRLOC ": unable to list signals for invalid type id `%"G_GSIZE_FORMAT"'",
1205 else if (!G_TYPE_IS_INSTANTIATABLE (itype) && !G_TYPE_IS_INTERFACE (itype))
1206 g_warning (G_STRLOC ": unable to list signals of non instantiatable type `%s'",
1207 g_type_name (itype));
1208 else if (!g_type_class_peek (itype) && !G_TYPE_IS_INTERFACE (itype))
1209 g_warning (G_STRLOC ": unable to list signals of unloaded type `%s'",
1210 g_type_name (itype));
1213 return (guint*) g_array_free (result, FALSE);
1218 * @signal_id: the signal's identifying number.
1220 * Given the signal's identifier, finds its name.
1222 * Two different signals may have the same name, if they have differing types.
1224 * Returns: the signal name, or %NULL if the signal number was invalid.
1227 g_signal_name (guint signal_id)
1233 node = LOOKUP_SIGNAL_NODE (signal_id);
1234 name = node ? node->name : NULL;
1237 return (char*) name;
1242 * @signal_id: The signal id of the signal to query information for.
1243 * @query: A user provided structure that is filled in with constant
1244 * values upon success.
1246 * Queries the signal system for in-depth information about a
1247 * specific signal. This function will fill in a user-provided
1248 * structure to hold signal-specific information. If an invalid
1249 * signal id is passed in, the @signal_id member of the #GSignalQuery
1250 * is 0. All members filled into the #GSignalQuery structure should
1251 * be considered constant and have to be left untouched.
1254 g_signal_query (guint signal_id,
1255 GSignalQuery *query)
1259 g_return_if_fail (query != NULL);
1262 node = LOOKUP_SIGNAL_NODE (signal_id);
1263 if (!node || node->destroyed)
1264 query->signal_id = 0;
1267 query->signal_id = node->signal_id;
1268 query->signal_name = node->name;
1269 query->itype = node->itype;
1270 query->signal_flags = node->flags;
1271 query->return_type = node->return_type;
1272 query->n_params = node->n_params;
1273 query->param_types = node->param_types;
1280 * @signal_name: the name for the signal
1281 * @itype: the type this signal pertains to. It will also pertain to
1282 * types which are derived from this type.
1283 * @signal_flags: a combination of #GSignalFlags specifying detail of when
1284 * the default handler is to be invoked. You should at least specify
1285 * %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST.
1286 * @class_offset: The offset of the function pointer in the class structure
1287 * for this type. Used to invoke a class method generically. Pass 0 to
1288 * not associate a class method slot with this signal.
1289 * @accumulator: the accumulator for this signal; may be %NULL.
1290 * @accu_data: user data for the @accumulator.
1291 * @c_marshaller: (allow-none): the function to translate arrays of parameter
1292 * values to signal emissions into C language callback invocations or %NULL.
1293 * @return_type: the type of return value, or #G_TYPE_NONE for a signal
1294 * without a return value.
1295 * @n_params: the number of parameter types to follow.
1296 * @...: a list of types, one for each parameter.
1298 * Creates a new signal. (This is usually done in the class initializer.)
1300 * A signal name consists of segments consisting of ASCII letters and
1301 * digits, separated by either the '-' or '_' character. The first
1302 * character of a signal name must be a letter. Names which violate these
1303 * rules lead to undefined behaviour of the GSignal system.
1305 * When registering a signal and looking up a signal, either separator can
1306 * be used, but they cannot be mixed.
1308 * If 0 is used for @class_offset subclasses cannot override the class handler
1309 * in their <code>class_init</code> method by doing
1310 * <code>super_class->signal_handler = my_signal_handler</code>. Instead they
1311 * will have to use g_signal_override_class_handler().
1313 * If c_marshaller is %NULL, g_cclosure_marshal_generic() will be used as
1314 * the marshaller for this signal.
1316 * Returns: the signal id
1319 g_signal_new (const gchar *signal_name,
1321 GSignalFlags signal_flags,
1323 GSignalAccumulator accumulator,
1325 GSignalCMarshaller c_marshaller,
1333 g_return_val_if_fail (signal_name != NULL, 0);
1335 va_start (args, n_params);
1337 signal_id = g_signal_new_valist (signal_name, itype, signal_flags,
1338 class_offset ? g_signal_type_cclosure_new (itype, class_offset) : NULL,
1339 accumulator, accu_data, c_marshaller,
1340 return_type, n_params, args);
1344 /* optimize NOP emissions with NULL class handlers */
1345 if (signal_id && G_TYPE_IS_INSTANTIATABLE (itype) && return_type == G_TYPE_NONE &&
1346 class_offset && class_offset < MAX_TEST_CLASS_OFFSET &&
1347 ~signal_flags & G_SIGNAL_MUST_COLLECT)
1352 node = LOOKUP_SIGNAL_NODE (signal_id);
1353 node->test_class_offset = class_offset;
1361 * g_signal_new_class_handler:
1362 * @signal_name: the name for the signal
1363 * @itype: the type this signal pertains to. It will also pertain to
1364 * types which are derived from this type.
1365 * @signal_flags: a combination of #GSignalFlags specifying detail of when
1366 * the default handler is to be invoked. You should at least specify
1367 * %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST.
1368 * @class_handler: a #GCallback which acts as class implementation of
1369 * this signal. Used to invoke a class method generically. Pass %NULL to
1370 * not associate a class method with this signal.
1371 * @accumulator: the accumulator for this signal; may be %NULL.
1372 * @accu_data: user data for the @accumulator.
1373 * @c_marshaller: (allow-none): the function to translate arrays of parameter
1374 * values to signal emissions into C language callback invocations or %NULL.
1375 * @return_type: the type of return value, or #G_TYPE_NONE for a signal
1376 * without a return value.
1377 * @n_params: the number of parameter types to follow.
1378 * @...: a list of types, one for each parameter.
1380 * Creates a new signal. (This is usually done in the class initializer.)
1382 * This is a variant of g_signal_new() that takes a C callback instead
1383 * off a class offset for the signal's class handler. This function
1384 * doesn't need a function pointer exposed in the class structure of
1385 * an object definition, instead the function pointer is passed
1386 * directly and can be overriden by derived classes with
1387 * g_signal_override_class_closure() or
1388 * g_signal_override_class_handler()and chained to with
1389 * g_signal_chain_from_overridden() or
1390 * g_signal_chain_from_overridden_handler().
1392 * See g_signal_new() for information about signal names.
1394 * If c_marshaller is %NULL @g_cclosure_marshal_generic will be used as
1395 * the marshaller for this signal.
1397 * Returns: the signal id
1402 g_signal_new_class_handler (const gchar *signal_name,
1404 GSignalFlags signal_flags,
1405 GCallback class_handler,
1406 GSignalAccumulator accumulator,
1408 GSignalCMarshaller c_marshaller,
1416 g_return_val_if_fail (signal_name != NULL, 0);
1418 va_start (args, n_params);
1420 signal_id = g_signal_new_valist (signal_name, itype, signal_flags,
1421 class_handler ? g_cclosure_new (class_handler, NULL, NULL) : NULL,
1422 accumulator, accu_data, c_marshaller,
1423 return_type, n_params, args);
1430 static inline ClassClosure*
1431 signal_find_class_closure (SignalNode *node,
1434 GBSearchArray *bsa = node->class_closure_bsa;
1441 /* cc->instance_type is 0 for default closure */
1443 key.instance_type = itype;
1444 cc = g_bsearch_array_lookup (bsa, &g_class_closure_bconfig, &key);
1445 while (!cc && key.instance_type)
1447 key.instance_type = g_type_parent (key.instance_type);
1448 cc = g_bsearch_array_lookup (bsa, &g_class_closure_bconfig, &key);
1456 static inline GClosure*
1457 signal_lookup_closure (SignalNode *node,
1458 GTypeInstance *instance)
1462 if (node->class_closure_bsa && g_bsearch_array_get_n_nodes (node->class_closure_bsa) == 1)
1464 cc = g_bsearch_array_get_nth (node->class_closure_bsa, &g_class_closure_bconfig, 0);
1465 if (cc && cc->instance_type == 0) /* check for default closure */
1468 cc = signal_find_class_closure (node, G_TYPE_FROM_INSTANCE (instance));
1469 return cc ? cc->closure : NULL;
1473 signal_add_class_closure (SignalNode *node,
1479 /* can't optimize NOP emissions with overridden class closures */
1480 node->test_class_offset = 0;
1482 if (!node->class_closure_bsa)
1483 node->class_closure_bsa = g_bsearch_array_create (&g_class_closure_bconfig);
1484 key.instance_type = itype;
1485 key.closure = g_closure_ref (closure);
1486 node->class_closure_bsa = g_bsearch_array_insert (node->class_closure_bsa,
1487 &g_class_closure_bconfig,
1489 g_closure_sink (closure);
1490 if (node->c_marshaller && closure && G_CLOSURE_NEEDS_MARSHAL (closure))
1491 g_closure_set_marshal (closure, node->c_marshaller);
1496 * @signal_name: the name for the signal
1497 * @itype: the type this signal pertains to. It will also pertain to
1498 * types which are derived from this type
1499 * @signal_flags: a combination of #GSignalFlags specifying detail of when
1500 * the default handler is to be invoked. You should at least specify
1501 * %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST
1502 * @class_closure: The closure to invoke on signal emission; may be %NULL
1503 * @accumulator: the accumulator for this signal; may be %NULL
1504 * @accu_data: user data for the @accumulator
1505 * @c_marshaller: (allow-none): the function to translate arrays of
1506 * parameter values to signal emissions into C language callback
1507 * invocations or %NULL
1508 * @return_type: the type of return value, or #G_TYPE_NONE for a signal
1509 * without a return value
1510 * @n_params: the length of @param_types
1511 * @param_types: an array of types, one for each parameter
1513 * Creates a new signal. (This is usually done in the class initializer.)
1515 * See g_signal_new() for details on allowed signal names.
1517 * If c_marshaller is %NULL @g_cclosure_marshal_generic will be used as
1518 * the marshaller for this signal.
1520 * Returns: the signal id
1523 g_signal_newv (const gchar *signal_name,
1525 GSignalFlags signal_flags,
1526 GClosure *class_closure,
1527 GSignalAccumulator accumulator,
1529 GSignalCMarshaller c_marshaller,
1538 g_return_val_if_fail (signal_name != NULL, 0);
1539 g_return_val_if_fail (G_TYPE_IS_INSTANTIATABLE (itype) || G_TYPE_IS_INTERFACE (itype), 0);
1541 g_return_val_if_fail (param_types != NULL, 0);
1542 g_return_val_if_fail ((return_type & G_SIGNAL_TYPE_STATIC_SCOPE) == 0, 0);
1543 if (return_type == (G_TYPE_NONE & ~G_SIGNAL_TYPE_STATIC_SCOPE))
1544 g_return_val_if_fail (accumulator == NULL, 0);
1546 g_return_val_if_fail (accu_data == NULL, 0);
1548 name = g_strdup (signal_name);
1549 g_strdelimit (name, G_STR_DELIMITERS ":^", '_'); /* FIXME do character checks like for types */
1553 signal_id = signal_id_lookup (g_quark_try_string (name), itype);
1554 node = LOOKUP_SIGNAL_NODE (signal_id);
1555 if (node && !node->destroyed)
1557 g_warning (G_STRLOC ": signal \"%s\" already exists in the `%s' %s",
1559 type_debug_name (node->itype),
1560 G_TYPE_IS_INTERFACE (node->itype) ? "interface" : "class ancestry");
1565 if (node && node->itype != itype)
1567 g_warning (G_STRLOC ": signal \"%s\" for type `%s' was previously created for type `%s'",
1569 type_debug_name (itype),
1570 type_debug_name (node->itype));
1575 for (i = 0; i < n_params; i++)
1576 if (!G_TYPE_IS_VALUE (param_types[i] & ~G_SIGNAL_TYPE_STATIC_SCOPE))
1578 g_warning (G_STRLOC ": parameter %d of type `%s' for signal \"%s::%s\" is not a value type",
1579 i + 1, type_debug_name (param_types[i]), type_debug_name (itype), name);
1584 if (return_type != G_TYPE_NONE && !G_TYPE_IS_VALUE (return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE))
1586 g_warning (G_STRLOC ": return value of type `%s' for signal \"%s::%s\" is not a value type",
1587 type_debug_name (return_type), type_debug_name (itype), name);
1592 if (return_type != G_TYPE_NONE &&
1593 (signal_flags & (G_SIGNAL_RUN_FIRST | G_SIGNAL_RUN_LAST | G_SIGNAL_RUN_CLEANUP)) == G_SIGNAL_RUN_FIRST)
1595 g_warning (G_STRLOC ": signal \"%s::%s\" has return type `%s' and is only G_SIGNAL_RUN_FIRST",
1596 type_debug_name (itype), name, type_debug_name (return_type));
1602 /* setup permanent portion of signal node */
1607 signal_id = g_n_signal_nodes++;
1608 node = g_new (SignalNode, 1);
1609 node->signal_id = signal_id;
1610 g_signal_nodes = g_renew (SignalNode*, g_signal_nodes, g_n_signal_nodes);
1611 g_signal_nodes[signal_id] = node;
1612 node->itype = itype;
1615 key.quark = g_quark_from_string (node->name);
1616 key.signal_id = signal_id;
1617 g_signal_key_bsa = g_bsearch_array_insert (g_signal_key_bsa, &g_signal_key_bconfig, &key);
1618 g_strdelimit (name, "_", '-');
1619 node->name = g_intern_string (name);
1620 key.quark = g_quark_from_string (name);
1621 g_signal_key_bsa = g_bsearch_array_insert (g_signal_key_bsa, &g_signal_key_bconfig, &key);
1623 TRACE(GOBJECT_SIGNAL_NEW(signal_id, name, itype));
1625 node->destroyed = FALSE;
1626 node->test_class_offset = 0;
1628 /* setup reinitializable portion */
1629 node->flags = signal_flags & G_SIGNAL_FLAGS_MASK;
1630 node->n_params = n_params;
1631 node->param_types = g_memdup (param_types, sizeof (GType) * n_params);
1632 node->return_type = return_type;
1633 node->class_closure_bsa = NULL;
1636 node->accumulator = g_new (SignalAccumulator, 1);
1637 node->accumulator->func = accumulator;
1638 node->accumulator->data = accu_data;
1641 node->accumulator = NULL;
1642 if (c_marshaller == NULL)
1643 c_marshaller = g_cclosure_marshal_generic;
1644 node->c_marshaller = c_marshaller;
1645 node->emission_hooks = NULL;
1647 signal_add_class_closure (node, 0, class_closure);
1648 else if (G_TYPE_IS_INSTANTIATABLE (itype) &&
1649 return_type == G_TYPE_NONE &&
1650 ~signal_flags & G_SIGNAL_MUST_COLLECT)
1652 /* optimize NOP emissions */
1653 node->test_class_offset = TEST_CLASS_MAGIC;
1663 * g_signal_new_valist:
1664 * @signal_name: the name for the signal
1665 * @itype: the type this signal pertains to. It will also pertain to
1666 * types which are derived from this type.
1667 * @signal_flags: a combination of #GSignalFlags specifying detail of when
1668 * the default handler is to be invoked. You should at least specify
1669 * %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST.
1670 * @class_closure: The closure to invoke on signal emission; may be %NULL.
1671 * @accumulator: the accumulator for this signal; may be %NULL.
1672 * @accu_data: user data for the @accumulator.
1673 * @c_marshaller: (allow-none): the function to translate arrays of parameter
1674 * values to signal emissions into C language callback invocations or %NULL.
1675 * @return_type: the type of return value, or #G_TYPE_NONE for a signal
1676 * without a return value.
1677 * @n_params: the number of parameter types in @args.
1678 * @args: va_list of #GType, one for each parameter.
1680 * Creates a new signal. (This is usually done in the class initializer.)
1682 * See g_signal_new() for details on allowed signal names.
1684 * If c_marshaller is %NULL, g_cclosure_marshal_generic() will be used as
1685 * the marshaller for this signal.
1687 * Returns: the signal id
1690 g_signal_new_valist (const gchar *signal_name,
1692 GSignalFlags signal_flags,
1693 GClosure *class_closure,
1694 GSignalAccumulator accumulator,
1696 GSignalCMarshaller c_marshaller,
1707 param_types = g_new (GType, n_params);
1709 for (i = 0; i < n_params; i++)
1710 param_types[i] = va_arg (args, GType);
1715 signal_id = g_signal_newv (signal_name, itype, signal_flags,
1716 class_closure, accumulator, accu_data, c_marshaller,
1717 return_type, n_params, param_types);
1718 g_free (param_types);
1724 signal_destroy_R (SignalNode *signal_node)
1726 SignalNode node = *signal_node;
1728 signal_node->destroyed = TRUE;
1730 /* reentrancy caution, zero out real contents first */
1731 signal_node->test_class_offset = 0;
1732 signal_node->n_params = 0;
1733 signal_node->param_types = NULL;
1734 signal_node->return_type = 0;
1735 signal_node->class_closure_bsa = NULL;
1736 signal_node->accumulator = NULL;
1737 signal_node->c_marshaller = NULL;
1738 signal_node->emission_hooks = NULL;
1740 #ifdef G_ENABLE_DEBUG
1741 /* check current emissions */
1745 for (emission = (node.flags & G_SIGNAL_NO_RECURSE) ? g_restart_emissions : g_recursive_emissions;
1746 emission; emission = emission->next)
1747 if (emission->ihint.signal_id == node.signal_id)
1748 g_critical (G_STRLOC ": signal \"%s\" being destroyed is currently in emission (instance `%p')",
1749 node.name, emission->instance);
1753 /* free contents that need to
1756 g_free (node.param_types);
1757 if (node.class_closure_bsa)
1761 for (i = 0; i < node.class_closure_bsa->n_nodes; i++)
1763 ClassClosure *cc = g_bsearch_array_get_nth (node.class_closure_bsa, &g_class_closure_bconfig, i);
1765 g_closure_unref (cc->closure);
1767 g_bsearch_array_free (node.class_closure_bsa, &g_class_closure_bconfig);
1769 g_free (node.accumulator);
1770 if (node.emission_hooks)
1772 g_hook_list_clear (node.emission_hooks);
1773 g_free (node.emission_hooks);
1779 * g_signal_override_class_closure:
1780 * @signal_id: the signal id
1781 * @instance_type: the instance type on which to override the class closure
1783 * @class_closure: the closure.
1785 * Overrides the class closure (i.e. the default handler) for the given signal
1786 * for emissions on instances of @instance_type. @instance_type must be derived
1787 * from the type to which the signal belongs.
1789 * See g_signal_chain_from_overridden() and
1790 * g_signal_chain_from_overridden_handler() for how to chain up to the
1791 * parent class closure from inside the overridden one.
1794 g_signal_override_class_closure (guint signal_id,
1795 GType instance_type,
1796 GClosure *class_closure)
1800 g_return_if_fail (signal_id > 0);
1801 g_return_if_fail (class_closure != NULL);
1804 node = LOOKUP_SIGNAL_NODE (signal_id);
1805 if (!g_type_is_a (instance_type, node->itype))
1806 g_warning ("%s: type `%s' cannot be overridden for signal id `%u'", G_STRLOC, type_debug_name (instance_type), signal_id);
1809 ClassClosure *cc = signal_find_class_closure (node, instance_type);
1811 if (cc && cc->instance_type == instance_type)
1812 g_warning ("%s: type `%s' is already overridden for signal id `%u'", G_STRLOC, type_debug_name (instance_type), signal_id);
1814 signal_add_class_closure (node, instance_type, class_closure);
1820 * g_signal_override_class_handler:
1821 * @signal_name: the name for the signal
1822 * @instance_type: the instance type on which to override the class handler
1824 * @class_handler: the handler.
1826 * Overrides the class closure (i.e. the default handler) for the
1827 * given signal for emissions on instances of @instance_type with
1828 * callabck @class_handler. @instance_type must be derived from the
1829 * type to which the signal belongs.
1831 * See g_signal_chain_from_overridden() and
1832 * g_signal_chain_from_overridden_handler() for how to chain up to the
1833 * parent class closure from inside the overridden one.
1838 g_signal_override_class_handler (const gchar *signal_name,
1839 GType instance_type,
1840 GCallback class_handler)
1844 g_return_if_fail (signal_name != NULL);
1845 g_return_if_fail (instance_type != G_TYPE_NONE);
1846 g_return_if_fail (class_handler != NULL);
1848 signal_id = g_signal_lookup (signal_name, instance_type);
1851 g_signal_override_class_closure (signal_id, instance_type,
1852 g_cclosure_new (class_handler, NULL, NULL));
1854 g_warning ("%s: signal name '%s' is invalid for type id '%"G_GSIZE_FORMAT"'",
1855 G_STRLOC, signal_name, instance_type);
1860 * g_signal_chain_from_overridden:
1861 * @instance_and_params: the argument list of the signal emission. The first
1862 * element in the array is a #GValue for the instance the signal is being
1863 * emitted on. The rest are any arguments to be passed to the signal.
1864 * @return_value: Location for the return value.
1866 * Calls the original class closure of a signal. This function should only
1867 * be called from an overridden class closure; see
1868 * g_signal_override_class_closure() and
1869 * g_signal_override_class_handler().
1872 g_signal_chain_from_overridden (const GValue *instance_and_params,
1873 GValue *return_value)
1875 GType chain_type = 0, restore_type = 0;
1876 Emission *emission = NULL;
1877 GClosure *closure = NULL;
1881 g_return_if_fail (instance_and_params != NULL);
1882 instance = g_value_peek_pointer (instance_and_params);
1883 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
1886 emission = emission_find_innermost (instance);
1889 SignalNode *node = LOOKUP_SIGNAL_NODE (emission->ihint.signal_id);
1891 g_assert (node != NULL); /* paranoid */
1893 /* we should probably do the same parameter checks as g_signal_emit() here.
1895 if (emission->chain_type != G_TYPE_NONE)
1897 ClassClosure *cc = signal_find_class_closure (node, emission->chain_type);
1899 g_assert (cc != NULL); /* closure currently in call stack */
1901 n_params = node->n_params;
1902 restore_type = cc->instance_type;
1903 cc = signal_find_class_closure (node, g_type_parent (cc->instance_type));
1904 if (cc && cc->instance_type != restore_type)
1906 closure = cc->closure;
1907 chain_type = cc->instance_type;
1911 g_warning ("%s: signal id `%u' cannot be chained from current emission stage for instance `%p'", G_STRLOC, node->signal_id, instance);
1914 g_warning ("%s: no signal is currently being emitted for instance `%p'", G_STRLOC, instance);
1918 emission->chain_type = chain_type;
1920 g_closure_invoke (closure,
1923 instance_and_params,
1926 emission->chain_type = restore_type;
1932 * g_signal_chain_from_overridden_handler:
1933 * @instance: the instance the signal is being emitted on.
1934 * @...: parameters to be passed to the parent class closure, followed by a
1935 * location for the return value. If the return type of the signal
1936 * is #G_TYPE_NONE, the return value location can be omitted.
1938 * Calls the original class closure of a signal. This function should
1939 * only be called from an overridden class closure; see
1940 * g_signal_override_class_closure() and
1941 * g_signal_override_class_handler().
1946 g_signal_chain_from_overridden_handler (gpointer instance,
1949 GType chain_type = 0, restore_type = 0;
1950 Emission *emission = NULL;
1951 GClosure *closure = NULL;
1955 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
1958 emission = emission_find_innermost (instance);
1961 node = LOOKUP_SIGNAL_NODE (emission->ihint.signal_id);
1963 g_assert (node != NULL); /* paranoid */
1965 /* we should probably do the same parameter checks as g_signal_emit() here.
1967 if (emission->chain_type != G_TYPE_NONE)
1969 ClassClosure *cc = signal_find_class_closure (node, emission->chain_type);
1971 g_assert (cc != NULL); /* closure currently in call stack */
1973 n_params = node->n_params;
1974 restore_type = cc->instance_type;
1975 cc = signal_find_class_closure (node, g_type_parent (cc->instance_type));
1976 if (cc && cc->instance_type != restore_type)
1978 closure = cc->closure;
1979 chain_type = cc->instance_type;
1983 g_warning ("%s: signal id `%u' cannot be chained from current emission stage for instance `%p'", G_STRLOC, node->signal_id, instance);
1986 g_warning ("%s: no signal is currently being emitted for instance `%p'", G_STRLOC, instance);
1990 GValue *instance_and_params;
1991 GType signal_return_type;
1992 GValue *param_values;
1996 va_start (var_args, instance);
1998 signal_return_type = node->return_type;
1999 instance_and_params = g_slice_alloc0 (sizeof (GValue) * (n_params + 1));
2000 param_values = instance_and_params + 1;
2002 for (i = 0; i < node->n_params; i++)
2005 GType ptype = node->param_types[i] & ~G_SIGNAL_TYPE_STATIC_SCOPE;
2006 gboolean static_scope = node->param_types[i] & G_SIGNAL_TYPE_STATIC_SCOPE;
2009 G_VALUE_COLLECT_INIT (param_values + i, ptype,
2011 static_scope ? G_VALUE_NOCOPY_CONTENTS : 0,
2015 g_warning ("%s: %s", G_STRLOC, error);
2018 /* we purposely leak the value here, it might not be
2019 * in a sane state if an error condition occoured
2022 g_value_unset (param_values + i);
2024 g_slice_free1 (sizeof (GValue) * (n_params + 1), instance_and_params);
2032 instance_and_params->g_type = 0;
2033 g_value_init (instance_and_params, G_TYPE_FROM_INSTANCE (instance));
2034 g_value_set_instance (instance_and_params, instance);
2037 emission->chain_type = chain_type;
2040 if (signal_return_type == G_TYPE_NONE)
2042 g_closure_invoke (closure,
2045 instance_and_params,
2050 GValue return_value = { 0, };
2051 gchar *error = NULL;
2052 GType rtype = signal_return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE;
2053 gboolean static_scope = signal_return_type & G_SIGNAL_TYPE_STATIC_SCOPE;
2055 g_value_init (&return_value, rtype);
2057 g_closure_invoke (closure,
2060 instance_and_params,
2063 G_VALUE_LCOPY (&return_value,
2065 static_scope ? G_VALUE_NOCOPY_CONTENTS : 0,
2069 g_value_unset (&return_value);
2073 g_warning ("%s: %s", G_STRLOC, error);
2076 /* we purposely leak the value here, it might not be
2077 * in a sane state if an error condition occured
2082 for (i = 0; i < n_params; i++)
2083 g_value_unset (param_values + i);
2084 g_value_unset (instance_and_params);
2085 g_slice_free1 (sizeof (GValue) * (n_params + 1), instance_and_params);
2090 emission->chain_type = restore_type;
2096 * g_signal_get_invocation_hint:
2097 * @instance: the instance to query
2099 * Returns the invocation hint of the innermost signal emission of instance.
2101 * Returns: the invocation hint of the innermost signal emission.
2103 GSignalInvocationHint*
2104 g_signal_get_invocation_hint (gpointer instance)
2106 Emission *emission = NULL;
2108 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), NULL);
2111 emission = emission_find_innermost (instance);
2114 return emission ? &emission->ihint : NULL;
2118 * g_signal_connect_closure_by_id:
2119 * @instance: the instance to connect to.
2120 * @signal_id: the id of the signal.
2121 * @detail: the detail.
2122 * @closure: the closure to connect.
2123 * @after: whether the handler should be called before or after the
2124 * default handler of the signal.
2126 * Connects a closure to a signal for a particular object.
2128 * Returns: the handler id
2131 g_signal_connect_closure_by_id (gpointer instance,
2138 gulong handler_seq_no = 0;
2140 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2141 g_return_val_if_fail (signal_id > 0, 0);
2142 g_return_val_if_fail (closure != NULL, 0);
2145 node = LOOKUP_SIGNAL_NODE (signal_id);
2148 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2149 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
2150 else if (!g_type_is_a (G_TYPE_FROM_INSTANCE (instance), node->itype))
2151 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
2154 Handler *handler = handler_new (after);
2156 handler_seq_no = handler->sequential_number;
2157 handler->detail = detail;
2158 handler->closure = g_closure_ref (closure);
2159 g_closure_sink (closure);
2160 handler_insert (signal_id, instance, handler);
2161 if (node->c_marshaller && G_CLOSURE_NEEDS_MARSHAL (closure))
2162 g_closure_set_marshal (closure, node->c_marshaller);
2166 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
2169 return handler_seq_no;
2173 * g_signal_connect_closure:
2174 * @instance: the instance to connect to.
2175 * @detailed_signal: a string of the form "signal-name::detail".
2176 * @closure: the closure to connect.
2177 * @after: whether the handler should be called before or after the
2178 * default handler of the signal.
2180 * Connects a closure to a signal for a particular object.
2182 * Returns: the handler id
2185 g_signal_connect_closure (gpointer instance,
2186 const gchar *detailed_signal,
2191 gulong handler_seq_no = 0;
2195 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2196 g_return_val_if_fail (detailed_signal != NULL, 0);
2197 g_return_val_if_fail (closure != NULL, 0);
2200 itype = G_TYPE_FROM_INSTANCE (instance);
2201 signal_id = signal_parse_name (detailed_signal, itype, &detail, TRUE);
2204 SignalNode *node = LOOKUP_SIGNAL_NODE (signal_id);
2206 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2207 g_warning ("%s: signal `%s' does not support details", G_STRLOC, detailed_signal);
2208 else if (!g_type_is_a (itype, node->itype))
2209 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
2212 Handler *handler = handler_new (after);
2214 handler_seq_no = handler->sequential_number;
2215 handler->detail = detail;
2216 handler->closure = g_closure_ref (closure);
2217 g_closure_sink (closure);
2218 handler_insert (signal_id, instance, handler);
2219 if (node->c_marshaller && G_CLOSURE_NEEDS_MARSHAL (handler->closure))
2220 g_closure_set_marshal (handler->closure, node->c_marshaller);
2224 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
2227 return handler_seq_no;
2231 * g_signal_connect_data:
2232 * @instance: the instance to connect to.
2233 * @detailed_signal: a string of the form "signal-name::detail".
2234 * @c_handler: the #GCallback to connect.
2235 * @data: data to pass to @c_handler calls.
2236 * @destroy_data: a #GClosureNotify for @data.
2237 * @connect_flags: a combination of #GConnectFlags.
2239 * Connects a #GCallback function to a signal for a particular object. Similar
2240 * to g_signal_connect(), but allows to provide a #GClosureNotify for the data
2241 * which will be called when the signal handler is disconnected and no longer
2242 * used. Specify @connect_flags if you need <literal>..._after()</literal> or
2243 * <literal>..._swapped()</literal> variants of this function.
2245 * Returns: the handler id
2248 g_signal_connect_data (gpointer instance,
2249 const gchar *detailed_signal,
2250 GCallback c_handler,
2252 GClosureNotify destroy_data,
2253 GConnectFlags connect_flags)
2256 gulong handler_seq_no = 0;
2259 gboolean swapped, after;
2261 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2262 g_return_val_if_fail (detailed_signal != NULL, 0);
2263 g_return_val_if_fail (c_handler != NULL, 0);
2265 swapped = (connect_flags & G_CONNECT_SWAPPED) != FALSE;
2266 after = (connect_flags & G_CONNECT_AFTER) != FALSE;
2269 itype = G_TYPE_FROM_INSTANCE (instance);
2270 signal_id = signal_parse_name (detailed_signal, itype, &detail, TRUE);
2273 SignalNode *node = LOOKUP_SIGNAL_NODE (signal_id);
2275 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2276 g_warning ("%s: signal `%s' does not support details", G_STRLOC, detailed_signal);
2277 else if (!g_type_is_a (itype, node->itype))
2278 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
2281 Handler *handler = handler_new (after);
2283 handler_seq_no = handler->sequential_number;
2284 handler->detail = detail;
2285 handler->closure = g_closure_ref ((swapped ? g_cclosure_new_swap : g_cclosure_new) (c_handler, data, destroy_data));
2286 g_closure_sink (handler->closure);
2287 handler_insert (signal_id, instance, handler);
2288 if (node->c_marshaller && G_CLOSURE_NEEDS_MARSHAL (handler->closure))
2289 g_closure_set_marshal (handler->closure, node->c_marshaller);
2293 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
2296 return handler_seq_no;
2300 * g_signal_handler_block:
2301 * @instance: The instance to block the signal handler of.
2302 * @handler_id: Handler id of the handler to be blocked.
2304 * Blocks a handler of an instance so it will not be called during any
2305 * signal emissions unless it is unblocked again. Thus "blocking" a
2306 * signal handler means to temporarily deactive it, a signal handler
2307 * has to be unblocked exactly the same amount of times it has been
2308 * blocked before to become active again.
2310 * The @handler_id has to be a valid signal handler id, connected to a
2311 * signal of @instance.
2314 g_signal_handler_block (gpointer instance,
2319 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2320 g_return_if_fail (handler_id > 0);
2323 handler = handler_lookup (instance, handler_id, NULL);
2326 #ifndef G_DISABLE_CHECKS
2327 if (handler->block_count >= HANDLER_MAX_BLOCK_COUNT - 1)
2328 g_error (G_STRLOC ": handler block_count overflow, %s", REPORT_BUG);
2330 handler->block_count += 1;
2333 g_warning ("%s: instance `%p' has no handler with id `%lu'", G_STRLOC, instance, handler_id);
2338 * g_signal_handler_unblock:
2339 * @instance: The instance to unblock the signal handler of.
2340 * @handler_id: Handler id of the handler to be unblocked.
2342 * Undoes the effect of a previous g_signal_handler_block() call. A
2343 * blocked handler is skipped during signal emissions and will not be
2344 * invoked, unblocking it (for exactly the amount of times it has been
2345 * blocked before) reverts its "blocked" state, so the handler will be
2346 * recognized by the signal system and is called upon future or
2347 * currently ongoing signal emissions (since the order in which
2348 * handlers are called during signal emissions is deterministic,
2349 * whether the unblocked handler in question is called as part of a
2350 * currently ongoing emission depends on how far that emission has
2353 * The @handler_id has to be a valid id of a signal handler that is
2354 * connected to a signal of @instance and is currently blocked.
2357 g_signal_handler_unblock (gpointer instance,
2362 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2363 g_return_if_fail (handler_id > 0);
2366 handler = handler_lookup (instance, handler_id, NULL);
2369 if (handler->block_count)
2370 handler->block_count -= 1;
2372 g_warning (G_STRLOC ": handler `%lu' of instance `%p' is not blocked", handler_id, instance);
2375 g_warning ("%s: instance `%p' has no handler with id `%lu'", G_STRLOC, instance, handler_id);
2380 * g_signal_handler_disconnect:
2381 * @instance: The instance to remove the signal handler from.
2382 * @handler_id: Handler id of the handler to be disconnected.
2384 * Disconnects a handler from an instance so it will not be called during
2385 * any future or currently ongoing emissions of the signal it has been
2386 * connected to. The @handler_id becomes invalid and may be reused.
2388 * The @handler_id has to be a valid signal handler id, connected to a
2389 * signal of @instance.
2392 g_signal_handler_disconnect (gpointer instance,
2398 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2399 g_return_if_fail (handler_id > 0);
2402 handler = handler_lookup (instance, handler_id, &signal_id);
2405 handler->sequential_number = 0;
2406 handler->block_count = 1;
2407 handler_unref_R (signal_id, instance, handler);
2410 g_warning ("%s: instance `%p' has no handler with id `%lu'", G_STRLOC, instance, handler_id);
2415 * g_signal_handler_is_connected:
2416 * @instance: The instance where a signal handler is sought.
2417 * @handler_id: the handler id.
2419 * Returns whether @handler_id is the id of a handler connected to @instance.
2421 * Returns: whether @handler_id identifies a handler connected to @instance.
2424 g_signal_handler_is_connected (gpointer instance,
2430 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), FALSE);
2433 handler = handler_lookup (instance, handler_id, NULL);
2434 connected = handler != NULL;
2441 g_signal_handlers_destroy (gpointer instance)
2443 GBSearchArray *hlbsa;
2445 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2448 hlbsa = g_hash_table_lookup (g_handler_list_bsa_ht, instance);
2453 /* reentrancy caution, delete instance trace first */
2454 g_hash_table_remove (g_handler_list_bsa_ht, instance);
2456 for (i = 0; i < hlbsa->n_nodes; i++)
2458 HandlerList *hlist = g_bsearch_array_get_nth (hlbsa, &g_signal_hlbsa_bconfig, i);
2459 Handler *handler = hlist->handlers;
2463 Handler *tmp = handler;
2465 handler = tmp->next;
2466 tmp->block_count = 1;
2467 /* cruel unlink, this works because _all_ handlers vanish */
2470 if (tmp->sequential_number)
2472 tmp->sequential_number = 0;
2473 handler_unref_R (0, NULL, tmp);
2477 g_bsearch_array_free (hlbsa, &g_signal_hlbsa_bconfig);
2483 * g_signal_handler_find:
2484 * @instance: The instance owning the signal handler to be found.
2485 * @mask: Mask indicating which of @signal_id, @detail, @closure, @func
2486 * and/or @data the handler has to match.
2487 * @signal_id: Signal the handler has to be connected to.
2488 * @detail: Signal detail the handler has to be connected to.
2489 * @closure: The closure the handler will invoke.
2490 * @func: The C closure callback of the handler (useless for non-C closures).
2491 * @data: The closure data of the handler's closure.
2493 * Finds the first signal handler that matches certain selection criteria.
2494 * The criteria mask is passed as an OR-ed combination of #GSignalMatchType
2495 * flags, and the criteria values are passed as arguments.
2496 * The match @mask has to be non-0 for successful matches.
2497 * If no handler was found, 0 is returned.
2499 * Returns: A valid non-0 signal handler id for a successful match.
2502 g_signal_handler_find (gpointer instance,
2503 GSignalMatchType mask,
2510 gulong handler_seq_no = 0;
2512 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2513 g_return_val_if_fail ((mask & ~G_SIGNAL_MATCH_MASK) == 0, 0);
2515 if (mask & G_SIGNAL_MATCH_MASK)
2517 HandlerMatch *mlist;
2520 mlist = handlers_find (instance, mask, signal_id, detail, closure, func, data, TRUE);
2523 handler_seq_no = mlist->handler->sequential_number;
2524 handler_match_free1_R (mlist, instance);
2529 return handler_seq_no;
2533 signal_handlers_foreach_matched_R (gpointer instance,
2534 GSignalMatchType mask,
2540 void (*callback) (gpointer instance,
2541 gulong handler_seq_no))
2543 HandlerMatch *mlist;
2544 guint n_handlers = 0;
2546 mlist = handlers_find (instance, mask, signal_id, detail, closure, func, data, FALSE);
2550 if (mlist->handler->sequential_number)
2553 callback (instance, mlist->handler->sequential_number);
2556 mlist = handler_match_free1_R (mlist, instance);
2563 * g_signal_handlers_block_matched:
2564 * @instance: The instance to block handlers from.
2565 * @mask: Mask indicating which of @signal_id, @detail, @closure, @func
2566 * and/or @data the handlers have to match.
2567 * @signal_id: Signal the handlers have to be connected to.
2568 * @detail: Signal detail the handlers have to be connected to.
2569 * @closure: The closure the handlers will invoke.
2570 * @func: The C closure callback of the handlers (useless for non-C closures).
2571 * @data: The closure data of the handlers' closures.
2573 * Blocks all handlers on an instance that match a certain selection criteria.
2574 * The criteria mask is passed as an OR-ed combination of #GSignalMatchType
2575 * flags, and the criteria values are passed as arguments.
2576 * Passing at least one of the %G_SIGNAL_MATCH_CLOSURE, %G_SIGNAL_MATCH_FUNC
2577 * or %G_SIGNAL_MATCH_DATA match flags is required for successful matches.
2578 * If no handlers were found, 0 is returned, the number of blocked handlers
2581 * Returns: The number of handlers that matched.
2584 g_signal_handlers_block_matched (gpointer instance,
2585 GSignalMatchType mask,
2592 guint n_handlers = 0;
2594 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2595 g_return_val_if_fail ((mask & ~G_SIGNAL_MATCH_MASK) == 0, 0);
2597 if (mask & (G_SIGNAL_MATCH_CLOSURE | G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA))
2600 n_handlers = signal_handlers_foreach_matched_R (instance, mask, signal_id, detail,
2601 closure, func, data,
2602 g_signal_handler_block);
2610 * g_signal_handlers_unblock_matched:
2611 * @instance: The instance to unblock handlers from.
2612 * @mask: Mask indicating which of @signal_id, @detail, @closure, @func
2613 * and/or @data the handlers have to match.
2614 * @signal_id: Signal the handlers have to be connected to.
2615 * @detail: Signal detail the handlers have to be connected to.
2616 * @closure: The closure the handlers will invoke.
2617 * @func: The C closure callback of the handlers (useless for non-C closures).
2618 * @data: The closure data of the handlers' closures.
2620 * Unblocks all handlers on an instance that match a certain selection
2621 * criteria. The criteria mask is passed as an OR-ed combination of
2622 * #GSignalMatchType flags, and the criteria values are passed as arguments.
2623 * Passing at least one of the %G_SIGNAL_MATCH_CLOSURE, %G_SIGNAL_MATCH_FUNC
2624 * or %G_SIGNAL_MATCH_DATA match flags is required for successful matches.
2625 * If no handlers were found, 0 is returned, the number of unblocked handlers
2626 * otherwise. The match criteria should not apply to any handlers that are
2627 * not currently blocked.
2629 * Returns: The number of handlers that matched.
2632 g_signal_handlers_unblock_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_unblock);
2658 * g_signal_handlers_disconnect_matched:
2659 * @instance: The instance to remove 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 * Disconnects all handlers on an instance that match a certain
2669 * selection criteria. The criteria mask is passed as an OR-ed
2670 * combination of #GSignalMatchType flags, and the criteria values are
2671 * passed as arguments. Passing at least one of the
2672 * %G_SIGNAL_MATCH_CLOSURE, %G_SIGNAL_MATCH_FUNC or
2673 * %G_SIGNAL_MATCH_DATA match flags is required for successful
2674 * matches. If no handlers were found, 0 is returned, the number of
2675 * disconnected handlers otherwise.
2677 * Returns: The number of handlers that matched.
2680 g_signal_handlers_disconnect_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_disconnect);
2706 * g_signal_has_handler_pending:
2707 * @instance: the object whose signal handlers are sought.
2708 * @signal_id: the signal id.
2709 * @detail: the detail.
2710 * @may_be_blocked: whether blocked handlers should count as match.
2712 * Returns whether there are any handlers connected to @instance for the
2713 * given signal id and detail.
2715 * One example of when you might use this is when the arguments to the
2716 * signal are difficult to compute. A class implementor may opt to not
2717 * emit the signal if no one is attached anyway, thus saving the cost
2718 * of building the arguments.
2720 * Returns: %TRUE if a handler is connected to the signal, %FALSE
2724 g_signal_has_handler_pending (gpointer instance,
2727 gboolean may_be_blocked)
2729 HandlerMatch *mlist;
2730 gboolean has_pending;
2732 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), FALSE);
2733 g_return_val_if_fail (signal_id > 0, FALSE);
2738 SignalNode *node = LOOKUP_SIGNAL_NODE (signal_id);
2740 if (!(node->flags & G_SIGNAL_DETAILED))
2742 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
2747 mlist = handlers_find (instance,
2748 (G_SIGNAL_MATCH_ID | G_SIGNAL_MATCH_DETAIL | (may_be_blocked ? 0 : G_SIGNAL_MATCH_UNBLOCKED)),
2749 signal_id, detail, NULL, NULL, NULL, TRUE);
2753 handler_match_free1_R (mlist, instance);
2756 has_pending = FALSE;
2762 static inline gboolean
2763 signal_check_skip_emission (SignalNode *node,
2769 /* are we able to check for NULL class handlers? */
2770 if (!node->test_class_offset)
2773 /* are there emission hooks pending? */
2774 if (node->emission_hooks && node->emission_hooks->hooks)
2777 /* is there a non-NULL class handler? */
2778 if (node->test_class_offset != TEST_CLASS_MAGIC)
2780 GTypeClass *class = G_TYPE_INSTANCE_GET_CLASS (instance, G_TYPE_FROM_INSTANCE (instance), GTypeClass);
2782 if (G_STRUCT_MEMBER (gpointer, class, node->test_class_offset))
2786 /* are signals being debugged? */
2787 #ifdef G_ENABLE_DEBUG
2788 IF_DEBUG (SIGNALS, g_trace_instance_signals || g_trap_instance_signals)
2790 #endif /* G_ENABLE_DEBUG */
2792 /* is this a no-recurse signal already in emission? */
2793 if (node->flags & G_SIGNAL_NO_RECURSE &&
2794 emission_find (g_restart_emissions, node->signal_id, detail, instance))
2797 /* do we have pending handlers? */
2798 hlist = handler_list_lookup (node->signal_id, instance);
2799 if (hlist && hlist->handlers)
2802 /* none of the above, no emission required */
2808 * @instance_and_params: argument list for the signal emission. The first
2809 * element in the array is a #GValue for the instance the signal is
2810 * being emitted on. The rest are any arguments to be passed to the
2812 * @signal_id: the signal id
2813 * @detail: the detail
2814 * @return_value: Location to store the return value of the signal emission.
2818 * Note that g_signal_emitv() doesn't change @return_value if no handlers are
2819 * connected, in contrast to g_signal_emit() and g_signal_emit_valist().
2822 g_signal_emitv (const GValue *instance_and_params,
2825 GValue *return_value)
2829 #ifdef G_ENABLE_DEBUG
2830 const GValue *param_values;
2834 g_return_if_fail (instance_and_params != NULL);
2835 instance = g_value_peek_pointer (instance_and_params);
2836 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2837 g_return_if_fail (signal_id > 0);
2839 #ifdef G_ENABLE_DEBUG
2840 param_values = instance_and_params + 1;
2844 node = LOOKUP_SIGNAL_NODE (signal_id);
2845 if (!node || !g_type_is_a (G_TYPE_FROM_INSTANCE (instance), node->itype))
2847 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
2851 #ifdef G_ENABLE_DEBUG
2852 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2854 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
2858 for (i = 0; i < node->n_params; i++)
2859 if (!G_TYPE_CHECK_VALUE_TYPE (param_values + i, node->param_types[i] & ~G_SIGNAL_TYPE_STATIC_SCOPE))
2861 g_critical ("%s: value for `%s' parameter %u for signal \"%s\" is of type `%s'",
2863 type_debug_name (node->param_types[i]),
2866 G_VALUE_TYPE_NAME (param_values + i));
2870 if (node->return_type != G_TYPE_NONE)
2874 g_critical ("%s: return value `%s' for signal \"%s\" is (NULL)",
2876 type_debug_name (node->return_type),
2881 else if (!node->accumulator && !G_TYPE_CHECK_VALUE_TYPE (return_value, node->return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE))
2883 g_critical ("%s: return value `%s' for signal \"%s\" is of type `%s'",
2885 type_debug_name (node->return_type),
2887 G_VALUE_TYPE_NAME (return_value));
2893 return_value = NULL;
2894 #endif /* G_ENABLE_DEBUG */
2896 /* optimize NOP emissions */
2897 if (signal_check_skip_emission (node, instance, detail))
2899 /* nothing to do to emit this signal */
2901 /* g_printerr ("omitting emission of \"%s\"\n", node->name); */
2906 signal_emit_unlocked_R (node, detail, instance, return_value, instance_and_params);
2910 * g_signal_emit_valist:
2911 * @instance: the instance the signal is being emitted on.
2912 * @signal_id: the signal id
2913 * @detail: the detail
2914 * @var_args: a list of parameters to be passed to the signal, followed by a
2915 * location for the return value. If the return type of the signal
2916 * is #G_TYPE_NONE, the return value location can be omitted.
2920 * Note that g_signal_emit_valist() resets the return value to the default
2921 * if no handlers are connected, in contrast to g_signal_emitv().
2924 g_signal_emit_valist (gpointer instance,
2929 GValue *instance_and_params;
2930 GType signal_return_type;
2931 GValue *param_values;
2935 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2936 g_return_if_fail (signal_id > 0);
2939 node = LOOKUP_SIGNAL_NODE (signal_id);
2940 if (!node || !g_type_is_a (G_TYPE_FROM_INSTANCE (instance), node->itype))
2942 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
2946 #ifndef G_DISABLE_CHECKS
2947 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2949 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
2953 #endif /* !G_DISABLE_CHECKS */
2955 /* optimize NOP emissions */
2956 if (signal_check_skip_emission (node, instance, detail))
2958 /* nothing to do to emit this signal */
2960 /* g_printerr ("omitting emission of \"%s\"\n", node->name); */
2964 n_params = node->n_params;
2965 signal_return_type = node->return_type;
2966 instance_and_params = g_slice_alloc0 (sizeof (GValue) * (n_params + 1));
2967 param_values = instance_and_params + 1;
2969 for (i = 0; i < node->n_params; i++)
2972 GType ptype = node->param_types[i] & ~G_SIGNAL_TYPE_STATIC_SCOPE;
2973 gboolean static_scope = node->param_types[i] & G_SIGNAL_TYPE_STATIC_SCOPE;
2976 G_VALUE_COLLECT_INIT (param_values + i, ptype,
2978 static_scope ? G_VALUE_NOCOPY_CONTENTS : 0,
2982 g_warning ("%s: %s", G_STRLOC, error);
2985 /* we purposely leak the value here, it might not be
2986 * in a sane state if an error condition occoured
2989 g_value_unset (param_values + i);
2991 g_slice_free1 (sizeof (GValue) * (n_params + 1), instance_and_params);
2998 instance_and_params->g_type = 0;
2999 g_value_init (instance_and_params, G_TYPE_FROM_INSTANCE (instance));
3000 g_value_set_instance (instance_and_params, instance);
3001 if (signal_return_type == G_TYPE_NONE)
3002 signal_emit_unlocked_R (node, detail, instance, NULL, instance_and_params);
3005 GValue return_value = { 0, };
3006 gchar *error = NULL;
3007 GType rtype = signal_return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE;
3008 gboolean static_scope = signal_return_type & G_SIGNAL_TYPE_STATIC_SCOPE;
3010 g_value_init (&return_value, rtype);
3012 signal_emit_unlocked_R (node, detail, instance, &return_value, instance_and_params);
3014 G_VALUE_LCOPY (&return_value,
3016 static_scope ? G_VALUE_NOCOPY_CONTENTS : 0,
3019 g_value_unset (&return_value);
3022 g_warning ("%s: %s", G_STRLOC, error);
3025 /* we purposely leak the value here, it might not be
3026 * in a sane state if an error condition occured
3030 for (i = 0; i < n_params; i++)
3031 g_value_unset (param_values + i);
3032 g_value_unset (instance_and_params);
3033 g_slice_free1 (sizeof (GValue) * (n_params + 1), instance_and_params);
3038 * @instance: the instance the signal is being emitted on.
3039 * @signal_id: the signal id
3040 * @detail: the detail
3041 * @...: parameters to be passed to the signal, followed by a
3042 * location for the return value. If the return type of the signal
3043 * is #G_TYPE_NONE, the return value location can be omitted.
3047 * Note that g_signal_emit() resets the return value to the default
3048 * if no handlers are connected, in contrast to g_signal_emitv().
3051 g_signal_emit (gpointer instance,
3058 va_start (var_args, detail);
3059 g_signal_emit_valist (instance, signal_id, detail, var_args);
3064 * g_signal_emit_by_name:
3065 * @instance: the instance the signal is being emitted on.
3066 * @detailed_signal: a string of the form "signal-name::detail".
3067 * @...: parameters to be passed to the signal, followed by a
3068 * location for the return value. If the return type of the signal
3069 * is #G_TYPE_NONE, the return value location can be omitted.
3073 * Note that g_signal_emit_by_name() resets the return value to the default
3074 * if no handlers are connected, in contrast to g_signal_emitv().
3077 g_signal_emit_by_name (gpointer instance,
3078 const gchar *detailed_signal,
3084 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
3085 g_return_if_fail (detailed_signal != NULL);
3088 signal_id = signal_parse_name (detailed_signal, G_TYPE_FROM_INSTANCE (instance), &detail, TRUE);
3095 va_start (var_args, detailed_signal);
3096 g_signal_emit_valist (instance, signal_id, detail, var_args);
3100 g_warning ("%s: signal name `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
3103 static inline gboolean
3104 accumulate (GSignalInvocationHint *ihint,
3105 GValue *return_accu,
3106 GValue *handler_return,
3107 SignalAccumulator *accumulator)
3109 gboolean continue_emission;
3114 continue_emission = accumulator->func (ihint, return_accu, handler_return, accumulator->data);
3115 g_value_reset (handler_return);
3117 return continue_emission;
3121 signal_emit_unlocked_R (SignalNode *node,
3124 GValue *emission_return,
3125 const GValue *instance_and_params)
3127 SignalAccumulator *accumulator;
3129 GClosure *class_closure;
3131 Handler *handler_list = NULL;
3132 GValue *return_accu, accu = { 0, };
3134 gulong max_sequential_handler_number;
3135 gboolean return_value_altered = FALSE;
3137 #ifdef G_ENABLE_DEBUG
3138 IF_DEBUG (SIGNALS, g_trace_instance_signals == instance || g_trap_instance_signals == instance)
3140 g_message ("%s::%s(%u) emitted (instance=%p, signal-node=%p)",
3141 g_type_name (G_TYPE_FROM_INSTANCE (instance)),
3144 if (g_trap_instance_signals == instance)
3147 #endif /* G_ENABLE_DEBUG */
3149 TRACE(GOBJECT_SIGNAL_EMIT(node->signal_id, detail, instance, G_TYPE_FROM_INSTANCE (instance)));
3152 signal_id = node->signal_id;
3153 if (node->flags & G_SIGNAL_NO_RECURSE)
3155 Emission *node = emission_find (g_restart_emissions, signal_id, detail, instance);
3159 node->state = EMISSION_RESTART;
3161 return return_value_altered;
3164 accumulator = node->accumulator;
3168 g_value_init (&accu, node->return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE);
3169 return_accu = &accu;
3173 return_accu = emission_return;
3174 emission.instance = instance;
3175 emission.ihint.signal_id = node->signal_id;
3176 emission.ihint.detail = detail;
3177 emission.ihint.run_type = 0;
3179 emission.chain_type = G_TYPE_NONE;
3180 emission_push ((node->flags & G_SIGNAL_NO_RECURSE) ? &g_restart_emissions : &g_recursive_emissions, &emission);
3181 class_closure = signal_lookup_closure (node, instance);
3186 handler_unref_R (signal_id, instance, handler_list);
3187 max_sequential_handler_number = g_handler_sequential_number;
3188 hlist = handler_list_lookup (signal_id, instance);
3189 handler_list = hlist ? hlist->handlers : NULL;
3191 handler_ref (handler_list);
3193 emission.ihint.run_type = G_SIGNAL_RUN_FIRST;
3195 if ((node->flags & G_SIGNAL_RUN_FIRST) && class_closure)
3197 emission.state = EMISSION_RUN;
3199 emission.chain_type = G_TYPE_FROM_INSTANCE (instance);
3201 g_closure_invoke (class_closure,
3204 instance_and_params,
3206 if (!accumulate (&emission.ihint, emission_return, &accu, accumulator) &&
3207 emission.state == EMISSION_RUN)
3208 emission.state = EMISSION_STOP;
3210 emission.chain_type = G_TYPE_NONE;
3211 return_value_altered = TRUE;
3213 if (emission.state == EMISSION_STOP)
3215 else if (emission.state == EMISSION_RESTART)
3219 if (node->emission_hooks)
3221 gboolean need_destroy, was_in_call, may_recurse = TRUE;
3224 emission.state = EMISSION_HOOK;
3225 hook = g_hook_first_valid (node->emission_hooks, may_recurse);
3228 SignalHook *signal_hook = SIGNAL_HOOK (hook);
3230 if (!signal_hook->detail || signal_hook->detail == detail)
3232 GSignalEmissionHook hook_func = (GSignalEmissionHook) hook->func;
3234 was_in_call = G_HOOK_IN_CALL (hook);
3235 hook->flags |= G_HOOK_FLAG_IN_CALL;
3237 need_destroy = !hook_func (&emission.ihint, node->n_params + 1, instance_and_params, hook->data);
3240 hook->flags &= ~G_HOOK_FLAG_IN_CALL;
3242 g_hook_destroy_link (node->emission_hooks, hook);
3244 hook = g_hook_next_valid (node->emission_hooks, hook, may_recurse);
3247 if (emission.state == EMISSION_RESTART)
3253 Handler *handler = handler_list;
3255 emission.state = EMISSION_RUN;
3256 handler_ref (handler);
3263 handler_unref_R (signal_id, instance, handler_list);
3264 handler_list = handler;
3267 else if (!handler->block_count && (!handler->detail || handler->detail == detail) &&
3268 handler->sequential_number < max_sequential_handler_number)
3271 g_closure_invoke (handler->closure,
3274 instance_and_params,
3276 if (!accumulate (&emission.ihint, emission_return, &accu, accumulator) &&
3277 emission.state == EMISSION_RUN)
3278 emission.state = EMISSION_STOP;
3280 return_value_altered = TRUE;
3282 tmp = emission.state == EMISSION_RUN ? handler->next : NULL;
3285 tmp = handler->next;
3289 handler_unref_R (signal_id, instance, handler_list);
3290 handler_list = handler;
3295 if (emission.state == EMISSION_STOP)
3297 else if (emission.state == EMISSION_RESTART)
3301 emission.ihint.run_type = G_SIGNAL_RUN_LAST;
3303 if ((node->flags & G_SIGNAL_RUN_LAST) && class_closure)
3305 emission.state = EMISSION_RUN;
3307 emission.chain_type = G_TYPE_FROM_INSTANCE (instance);
3309 g_closure_invoke (class_closure,
3312 instance_and_params,
3314 if (!accumulate (&emission.ihint, emission_return, &accu, accumulator) &&
3315 emission.state == EMISSION_RUN)
3316 emission.state = EMISSION_STOP;
3318 emission.chain_type = G_TYPE_NONE;
3319 return_value_altered = TRUE;
3321 if (emission.state == EMISSION_STOP)
3323 else if (emission.state == EMISSION_RESTART)
3329 Handler *handler = handler_list;
3331 emission.state = EMISSION_RUN;
3332 handler_ref (handler);
3337 if (handler->after && !handler->block_count && (!handler->detail || handler->detail == detail) &&
3338 handler->sequential_number < max_sequential_handler_number)
3341 g_closure_invoke (handler->closure,
3344 instance_and_params,
3346 if (!accumulate (&emission.ihint, emission_return, &accu, accumulator) &&
3347 emission.state == EMISSION_RUN)
3348 emission.state = EMISSION_STOP;
3350 return_value_altered = TRUE;
3352 tmp = emission.state == EMISSION_RUN ? handler->next : NULL;
3355 tmp = handler->next;
3359 handler_unref_R (signal_id, instance, handler);
3364 if (emission.state == EMISSION_STOP)
3366 else if (emission.state == EMISSION_RESTART)
3372 emission.ihint.run_type = G_SIGNAL_RUN_CLEANUP;
3374 if ((node->flags & G_SIGNAL_RUN_CLEANUP) && class_closure)
3376 gboolean need_unset = FALSE;
3378 emission.state = EMISSION_STOP;
3380 emission.chain_type = G_TYPE_FROM_INSTANCE (instance);
3382 if (node->return_type != G_TYPE_NONE && !accumulator)
3384 g_value_init (&accu, node->return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE);
3387 g_closure_invoke (class_closure,
3388 node->return_type != G_TYPE_NONE ? &accu : NULL,
3390 instance_and_params,
3393 g_value_unset (&accu);
3395 emission.chain_type = G_TYPE_NONE;
3397 if (emission.state == EMISSION_RESTART)
3402 handler_unref_R (signal_id, instance, handler_list);
3404 emission_pop ((node->flags & G_SIGNAL_NO_RECURSE) ? &g_restart_emissions : &g_recursive_emissions, &emission);
3407 g_value_unset (&accu);
3409 TRACE(GOBJECT_SIGNAL_EMIT_END(node->signal_id, detail, instance, G_TYPE_FROM_INSTANCE (instance)));
3411 return return_value_altered;
3415 type_debug_name (GType type)
3419 const char *name = g_type_name (type & ~G_SIGNAL_TYPE_STATIC_SCOPE);
3420 return name ? name : "<unknown>";
3427 * g_signal_accumulator_true_handled:
3428 * @ihint: standard #GSignalAccumulator parameter
3429 * @return_accu: standard #GSignalAccumulator parameter
3430 * @handler_return: standard #GSignalAccumulator parameter
3431 * @dummy: standard #GSignalAccumulator parameter
3433 * A predefined #GSignalAccumulator for signals that return a
3434 * boolean values. The behavior that this accumulator gives is
3435 * that a return of %TRUE stops the signal emission: no further
3436 * callbacks will be invoked, while a return of %FALSE allows
3437 * the emission to continue. The idea here is that a %TRUE return
3438 * indicates that the callback <emphasis>handled</emphasis> the signal,
3439 * and no further handling is needed.
3443 * Returns: standard #GSignalAccumulator result
3446 g_signal_accumulator_true_handled (GSignalInvocationHint *ihint,
3447 GValue *return_accu,
3448 const GValue *handler_return,
3451 gboolean continue_emission;
3452 gboolean signal_handled;
3454 signal_handled = g_value_get_boolean (handler_return);
3455 g_value_set_boolean (return_accu, signal_handled);
3456 continue_emission = !signal_handled;
3458 return continue_emission;
3462 * g_signal_accumulator_first_wins:
3463 * @ihint: standard #GSignalAccumulator parameter
3464 * @return_accu: standard #GSignalAccumulator parameter
3465 * @handler_return: standard #GSignalAccumulator parameter
3466 * @dummy: standard #GSignalAccumulator parameter
3468 * A predefined #GSignalAccumulator for signals intended to be used as a
3469 * hook for application code to provide a particular value. Usually
3470 * only one such value is desired and multiple handlers for the same
3471 * signal don't make much sense (except for the case of the default
3472 * handler defined in the class structure, in which case you will
3473 * usually want the signal connection to override the class handler).
3475 * This accumulator will use the return value from the first signal
3476 * handler that is run as the return value for the signal and not run
3477 * any further handlers (ie: the first handler "wins").
3479 * Returns: standard #GSignalAccumulator result
3484 g_signal_accumulator_first_wins (GSignalInvocationHint *ihint,
3485 GValue *return_accu,
3486 const GValue *handler_return,
3489 g_value_copy (handler_return, return_accu);