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 "gbsearcharray.h"
34 #include "gvaluecollector.h"
35 #include "gvaluetypes.h"
39 #include "gobjectalias.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);
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.
1226 G_CONST_RETURN gchar*
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 with this signal.
1289 * @accumulator: the accumulator for this signal; may be %NULL.
1290 * @accu_data: user data for the @accumulator.
1291 * @c_marshaller: the function to translate arrays of parameter values to
1292 * signal emissions into C language callback invocations.
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 * Returns: the signal id
1311 g_signal_new (const gchar *signal_name,
1313 GSignalFlags signal_flags,
1315 GSignalAccumulator accumulator,
1317 GSignalCMarshaller c_marshaller,
1325 g_return_val_if_fail (signal_name != NULL, 0);
1327 va_start (args, n_params);
1329 signal_id = g_signal_new_valist (signal_name, itype, signal_flags,
1330 class_offset ? g_signal_type_cclosure_new (itype, class_offset) : NULL,
1331 accumulator, accu_data, c_marshaller,
1332 return_type, n_params, args);
1336 /* optimize NOP emissions with NULL class handlers */
1337 if (signal_id && G_TYPE_IS_INSTANTIATABLE (itype) && return_type == G_TYPE_NONE &&
1338 class_offset && class_offset < MAX_TEST_CLASS_OFFSET)
1343 node = LOOKUP_SIGNAL_NODE (signal_id);
1344 node->test_class_offset = class_offset;
1352 * g_signal_new_class_handler:
1353 * @signal_name: the name for the signal
1354 * @itype: the type this signal pertains to. It will also pertain to
1355 * types which are derived from this type.
1356 * @signal_flags: a combination of #GSignalFlags specifying detail of when
1357 * the default handler is to be invoked. You should at least specify
1358 * %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST.
1359 * @class_handler: a #GCallback which acts as class implementation of
1360 * this signal. Used to invoke a class method generically. Pass %NULL to
1361 * not associate a class method with this signal.
1362 * @accumulator: the accumulator for this signal; may be %NULL.
1363 * @accu_data: user data for the @accumulator.
1364 * @c_marshaller: the function to translate arrays of parameter values to
1365 * signal emissions into C language callback invocations.
1366 * @return_type: the type of return value, or #G_TYPE_NONE for a signal
1367 * without a return value.
1368 * @n_params: the number of parameter types to follow.
1369 * @...: a list of types, one for each parameter.
1371 * Creates a new signal. (This is usually done in the class initializer.)
1373 * This is a variant of g_signal_new() that takes a C callback instead
1374 * off a class offset for the signal's class handler. This function
1375 * doesn't need a function pointer exposed in the class structure of
1376 * an object definition, instead the function pointer is passed
1377 * directly and can be overriden by derived classes with
1378 * g_signal_override_class_closure() or
1379 * g_signal_override_class_handler()and chained to with
1380 * g_signal_chain_from_overridden() or
1381 * g_signal_chain_from_overridden_handler().
1383 * See g_signal_new() for information about signal names.
1385 * Returns: the signal id
1390 g_signal_new_class_handler (const gchar *signal_name,
1392 GSignalFlags signal_flags,
1393 GCallback class_handler,
1394 GSignalAccumulator accumulator,
1396 GSignalCMarshaller c_marshaller,
1404 g_return_val_if_fail (signal_name != NULL, 0);
1406 va_start (args, n_params);
1408 signal_id = g_signal_new_valist (signal_name, itype, signal_flags,
1409 class_handler ? g_cclosure_new (class_handler, NULL, NULL) : NULL,
1410 accumulator, accu_data, c_marshaller,
1411 return_type, n_params, args);
1418 static inline ClassClosure*
1419 signal_find_class_closure (SignalNode *node,
1422 GBSearchArray *bsa = node->class_closure_bsa;
1429 /* cc->instance_type is 0 for default closure */
1431 key.instance_type = itype;
1432 cc = g_bsearch_array_lookup (bsa, &g_class_closure_bconfig, &key);
1433 while (!cc && key.instance_type)
1435 key.instance_type = g_type_parent (key.instance_type);
1436 cc = g_bsearch_array_lookup (bsa, &g_class_closure_bconfig, &key);
1444 static inline GClosure*
1445 signal_lookup_closure (SignalNode *node,
1446 GTypeInstance *instance)
1450 if (node->class_closure_bsa && g_bsearch_array_get_n_nodes (node->class_closure_bsa) == 1)
1451 cc = g_bsearch_array_get_nth (node->class_closure_bsa, &g_class_closure_bconfig, 0);
1453 cc = signal_find_class_closure (node, G_TYPE_FROM_INSTANCE (instance));
1454 return cc ? cc->closure : NULL;
1458 signal_add_class_closure (SignalNode *node,
1464 /* can't optimize NOP emissions with overridden class closures */
1465 node->test_class_offset = 0;
1467 if (!node->class_closure_bsa)
1468 node->class_closure_bsa = g_bsearch_array_create (&g_class_closure_bconfig);
1469 key.instance_type = itype;
1470 key.closure = g_closure_ref (closure);
1471 node->class_closure_bsa = g_bsearch_array_insert (node->class_closure_bsa,
1472 &g_class_closure_bconfig,
1474 g_closure_sink (closure);
1475 if (node->c_marshaller && closure && G_CLOSURE_NEEDS_MARSHAL (closure))
1476 g_closure_set_marshal (closure, node->c_marshaller);
1481 * @signal_name: the name for the signal
1482 * @itype: the type this signal pertains to. It will also pertain to
1483 * types which are derived from this type.
1484 * @signal_flags: a combination of #GSignalFlags specifying detail of when
1485 * the default handler is to be invoked. You should at least specify
1486 * %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST.
1487 * @class_closure: The closure to invoke on signal emission; may be %NULL.
1488 * @accumulator: the accumulator for this signal; may be %NULL.
1489 * @accu_data: user data for the @accumulator.
1490 * @c_marshaller: the function to translate arrays of parameter values to
1491 * signal emissions into C language callback invocations.
1492 * @return_type: the type of return value, or #G_TYPE_NONE for a signal
1493 * without a return value.
1494 * @n_params: the length of @param_types.
1495 * @param_types: an array types, one for each parameter.
1497 * Creates a new signal. (This is usually done in the class initializer.)
1499 * See g_signal_new() for details on allowed signal names.
1501 * Returns: the signal id
1504 g_signal_newv (const gchar *signal_name,
1506 GSignalFlags signal_flags,
1507 GClosure *class_closure,
1508 GSignalAccumulator accumulator,
1510 GSignalCMarshaller c_marshaller,
1519 g_return_val_if_fail (signal_name != NULL, 0);
1520 g_return_val_if_fail (G_TYPE_IS_INSTANTIATABLE (itype) || G_TYPE_IS_INTERFACE (itype), 0);
1522 g_return_val_if_fail (param_types != NULL, 0);
1523 g_return_val_if_fail ((return_type & G_SIGNAL_TYPE_STATIC_SCOPE) == 0, 0);
1524 if (return_type == (G_TYPE_NONE & ~G_SIGNAL_TYPE_STATIC_SCOPE))
1525 g_return_val_if_fail (accumulator == NULL, 0);
1527 g_return_val_if_fail (accu_data == NULL, 0);
1529 name = g_strdup (signal_name);
1530 g_strdelimit (name, G_STR_DELIMITERS ":^", '_'); /* FIXME do character checks like for types */
1534 signal_id = signal_id_lookup (g_quark_try_string (name), itype);
1535 node = LOOKUP_SIGNAL_NODE (signal_id);
1536 if (node && !node->destroyed)
1538 g_warning (G_STRLOC ": signal \"%s\" already exists in the `%s' %s",
1540 type_debug_name (node->itype),
1541 G_TYPE_IS_INTERFACE (node->itype) ? "interface" : "class ancestry");
1546 if (node && node->itype != itype)
1548 g_warning (G_STRLOC ": signal \"%s\" for type `%s' was previously created for type `%s'",
1550 type_debug_name (itype),
1551 type_debug_name (node->itype));
1556 for (i = 0; i < n_params; i++)
1557 if (!G_TYPE_IS_VALUE (param_types[i] & ~G_SIGNAL_TYPE_STATIC_SCOPE))
1559 g_warning (G_STRLOC ": parameter %d of type `%s' for signal \"%s::%s\" is not a value type",
1560 i + 1, type_debug_name (param_types[i]), type_debug_name (itype), name);
1565 if (return_type != G_TYPE_NONE && !G_TYPE_IS_VALUE (return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE))
1567 g_warning (G_STRLOC ": return value of type `%s' for signal \"%s::%s\" is not a value type",
1568 type_debug_name (return_type), type_debug_name (itype), name);
1573 if (return_type != G_TYPE_NONE &&
1574 (signal_flags & (G_SIGNAL_RUN_FIRST | G_SIGNAL_RUN_LAST | G_SIGNAL_RUN_CLEANUP)) == G_SIGNAL_RUN_FIRST)
1576 g_warning (G_STRLOC ": signal \"%s::%s\" has return type `%s' and is only G_SIGNAL_RUN_FIRST",
1577 type_debug_name (itype), name, type_debug_name (return_type));
1583 /* setup permanent portion of signal node */
1588 signal_id = g_n_signal_nodes++;
1589 node = g_new (SignalNode, 1);
1590 node->signal_id = signal_id;
1591 g_signal_nodes = g_renew (SignalNode*, g_signal_nodes, g_n_signal_nodes);
1592 g_signal_nodes[signal_id] = node;
1593 node->itype = itype;
1596 key.quark = g_quark_from_string (node->name);
1597 key.signal_id = signal_id;
1598 g_signal_key_bsa = g_bsearch_array_insert (g_signal_key_bsa, &g_signal_key_bconfig, &key);
1599 g_strdelimit (name, "_", '-');
1600 node->name = g_intern_string (name);
1601 key.quark = g_quark_from_string (name);
1602 g_signal_key_bsa = g_bsearch_array_insert (g_signal_key_bsa, &g_signal_key_bconfig, &key);
1604 node->destroyed = FALSE;
1605 node->test_class_offset = 0;
1607 /* setup reinitializable portion */
1608 node->flags = signal_flags & G_SIGNAL_FLAGS_MASK;
1609 node->n_params = n_params;
1610 node->param_types = g_memdup (param_types, sizeof (GType) * n_params);
1611 node->return_type = return_type;
1612 node->class_closure_bsa = NULL;
1615 node->accumulator = g_new (SignalAccumulator, 1);
1616 node->accumulator->func = accumulator;
1617 node->accumulator->data = accu_data;
1620 node->accumulator = NULL;
1621 node->c_marshaller = c_marshaller;
1622 node->emission_hooks = NULL;
1624 signal_add_class_closure (node, 0, class_closure);
1625 else if (G_TYPE_IS_INSTANTIATABLE (itype) && return_type == G_TYPE_NONE)
1627 /* optimize NOP emissions */
1628 node->test_class_offset = TEST_CLASS_MAGIC;
1638 * g_signal_new_valist:
1639 * @signal_name: the name for the signal
1640 * @itype: the type this signal pertains to. It will also pertain to
1641 * types which are derived from this type.
1642 * @signal_flags: a combination of #GSignalFlags specifying detail of when
1643 * the default handler is to be invoked. You should at least specify
1644 * %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST.
1645 * @class_closure: The closure to invoke on signal emission; may be %NULL.
1646 * @accumulator: the accumulator for this signal; may be %NULL.
1647 * @accu_data: user data for the @accumulator.
1648 * @c_marshaller: the function to translate arrays of parameter values to
1649 * signal emissions into C language callback invocations.
1650 * @return_type: the type of return value, or #G_TYPE_NONE for a signal
1651 * without a return value.
1652 * @n_params: the number of parameter types in @args.
1653 * @args: va_list of #GType, one for each parameter.
1655 * Creates a new signal. (This is usually done in the class initializer.)
1657 * See g_signal_new() for details on allowed signal names.
1659 * Returns: the signal id
1662 g_signal_new_valist (const gchar *signal_name,
1664 GSignalFlags signal_flags,
1665 GClosure *class_closure,
1666 GSignalAccumulator accumulator,
1668 GSignalCMarshaller c_marshaller,
1679 param_types = g_new (GType, n_params);
1681 for (i = 0; i < n_params; i++)
1682 param_types[i] = va_arg (args, GType);
1687 signal_id = g_signal_newv (signal_name, itype, signal_flags,
1688 class_closure, accumulator, accu_data, c_marshaller,
1689 return_type, n_params, param_types);
1690 g_free (param_types);
1696 signal_destroy_R (SignalNode *signal_node)
1698 SignalNode node = *signal_node;
1700 signal_node->destroyed = TRUE;
1702 /* reentrancy caution, zero out real contents first */
1703 signal_node->test_class_offset = 0;
1704 signal_node->n_params = 0;
1705 signal_node->param_types = NULL;
1706 signal_node->return_type = 0;
1707 signal_node->class_closure_bsa = NULL;
1708 signal_node->accumulator = NULL;
1709 signal_node->c_marshaller = NULL;
1710 signal_node->emission_hooks = NULL;
1712 #ifdef G_ENABLE_DEBUG
1713 /* check current emissions */
1717 for (emission = (node.flags & G_SIGNAL_NO_RECURSE) ? g_restart_emissions : g_recursive_emissions;
1718 emission; emission = emission->next)
1719 if (emission->ihint.signal_id == node.signal_id)
1720 g_critical (G_STRLOC ": signal \"%s\" being destroyed is currently in emission (instance `%p')",
1721 node.name, emission->instance);
1725 /* free contents that need to
1728 g_free (node.param_types);
1729 if (node.class_closure_bsa)
1733 for (i = 0; i < node.class_closure_bsa->n_nodes; i++)
1735 ClassClosure *cc = g_bsearch_array_get_nth (node.class_closure_bsa, &g_class_closure_bconfig, i);
1737 g_closure_unref (cc->closure);
1739 g_bsearch_array_free (node.class_closure_bsa, &g_class_closure_bconfig);
1741 g_free (node.accumulator);
1742 if (node.emission_hooks)
1744 g_hook_list_clear (node.emission_hooks);
1745 g_free (node.emission_hooks);
1751 * g_signal_override_class_closure:
1752 * @signal_id: the signal id
1753 * @instance_type: the instance type on which to override the class closure
1755 * @class_closure: the closure.
1757 * Overrides the class closure (i.e. the default handler) for the given signal
1758 * for emissions on instances of @instance_type. @instance_type must be derived
1759 * from the type to which the signal belongs.
1761 * See g_signal_chain_from_overridden() and
1762 * g_signal_chain_from_overridden_handler() for how to chain up to the
1763 * parent class closure from inside the overridden one.
1766 g_signal_override_class_closure (guint signal_id,
1767 GType instance_type,
1768 GClosure *class_closure)
1772 g_return_if_fail (signal_id > 0);
1773 g_return_if_fail (class_closure != NULL);
1776 node = LOOKUP_SIGNAL_NODE (signal_id);
1777 if (!g_type_is_a (instance_type, node->itype))
1778 g_warning ("%s: type `%s' cannot be overridden for signal id `%u'", G_STRLOC, type_debug_name (instance_type), signal_id);
1781 ClassClosure *cc = signal_find_class_closure (node, instance_type);
1783 if (cc && cc->instance_type == instance_type)
1784 g_warning ("%s: type `%s' is already overridden for signal id `%u'", G_STRLOC, type_debug_name (instance_type), signal_id);
1786 signal_add_class_closure (node, instance_type, class_closure);
1792 * g_signal_override_class_handler:
1793 * @signal_name: the name for the signal
1794 * @instance_type: the instance type on which to override the class handler
1796 * @class_handler: the handler.
1798 * Overrides the class closure (i.e. the default handler) for the
1799 * given signal for emissions on instances of @instance_type with
1800 * callabck @class_handler. @instance_type must be derived from the
1801 * type to which the signal belongs.
1803 * See g_signal_chain_from_overridden() and
1804 * g_signal_chain_from_overridden_handler() for how to chain up to the
1805 * parent class closure from inside the overridden one.
1810 g_signal_override_class_handler (const gchar *signal_name,
1811 GType instance_type,
1812 GCallback class_handler)
1816 g_return_if_fail (signal_name != NULL);
1817 g_return_if_fail (instance_type != G_TYPE_NONE);
1818 g_return_if_fail (class_handler != NULL);
1820 signal_id = g_signal_lookup (signal_name, instance_type);
1823 g_signal_override_class_closure (signal_id, instance_type,
1824 g_cclosure_new (class_handler, NULL, NULL));
1826 g_warning ("%s: signal name '%s' is invalid for type id '%"G_GSIZE_FORMAT"'",
1827 G_STRLOC, signal_name, instance_type);
1832 * g_signal_chain_from_overridden:
1833 * @instance_and_params: the argument list of the signal emission. The first
1834 * element in the array is a #GValue for the instance the signal is being
1835 * emitted on. The rest are any arguments to be passed to the signal.
1836 * @return_value: Location for the return value.
1838 * Calls the original class closure of a signal. This function should only
1839 * be called from an overridden class closure; see
1840 * g_signal_override_class_closure() and
1841 * g_signal_override_class_handler().
1844 g_signal_chain_from_overridden (const GValue *instance_and_params,
1845 GValue *return_value)
1847 GType chain_type = 0, restore_type = 0;
1848 Emission *emission = NULL;
1849 GClosure *closure = NULL;
1853 g_return_if_fail (instance_and_params != NULL);
1854 instance = g_value_peek_pointer (instance_and_params);
1855 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
1858 emission = emission_find_innermost (instance);
1861 SignalNode *node = LOOKUP_SIGNAL_NODE (emission->ihint.signal_id);
1863 g_assert (node != NULL); /* paranoid */
1865 /* we should probably do the same parameter checks as g_signal_emit() here.
1867 if (emission->chain_type != G_TYPE_NONE)
1869 ClassClosure *cc = signal_find_class_closure (node, emission->chain_type);
1871 g_assert (cc != NULL); /* closure currently in call stack */
1873 n_params = node->n_params;
1874 restore_type = cc->instance_type;
1875 cc = signal_find_class_closure (node, g_type_parent (cc->instance_type));
1876 if (cc && cc->instance_type != restore_type)
1878 closure = cc->closure;
1879 chain_type = cc->instance_type;
1883 g_warning ("%s: signal id `%u' cannot be chained from current emission stage for instance `%p'", G_STRLOC, node->signal_id, instance);
1886 g_warning ("%s: no signal is currently being emitted for instance `%p'", G_STRLOC, instance);
1890 emission->chain_type = chain_type;
1892 g_closure_invoke (closure,
1895 instance_and_params,
1898 emission->chain_type = restore_type;
1904 * g_signal_chain_from_overridden_handler:
1905 * @instance: the instance the signal is being emitted on.
1906 * @...: parameters to be passed to the parent class closure, followed by a
1907 * location for the return value. If the return type of the signal
1908 * is #G_TYPE_NONE, the return value location can be omitted.
1910 * Calls the original class closure of a signal. This function should
1911 * only be called from an overridden class closure; see
1912 * g_signal_override_class_closure() and
1913 * g_signal_override_class_handler().
1918 g_signal_chain_from_overridden_handler (gpointer instance,
1921 GType chain_type = 0, restore_type = 0;
1922 Emission *emission = NULL;
1923 GClosure *closure = NULL;
1927 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
1930 emission = emission_find_innermost (instance);
1933 node = LOOKUP_SIGNAL_NODE (emission->ihint.signal_id);
1935 g_assert (node != NULL); /* paranoid */
1937 /* we should probably do the same parameter checks as g_signal_emit() here.
1939 if (emission->chain_type != G_TYPE_NONE)
1941 ClassClosure *cc = signal_find_class_closure (node, emission->chain_type);
1943 g_assert (cc != NULL); /* closure currently in call stack */
1945 n_params = node->n_params;
1946 restore_type = cc->instance_type;
1947 cc = signal_find_class_closure (node, g_type_parent (cc->instance_type));
1948 if (cc && cc->instance_type != restore_type)
1950 closure = cc->closure;
1951 chain_type = cc->instance_type;
1955 g_warning ("%s: signal id `%u' cannot be chained from current emission stage for instance `%p'", G_STRLOC, node->signal_id, instance);
1958 g_warning ("%s: no signal is currently being emitted for instance `%p'", G_STRLOC, instance);
1962 GValue *instance_and_params;
1963 GType signal_return_type;
1964 GValue *param_values;
1968 va_start (var_args, instance);
1970 signal_return_type = node->return_type;
1971 instance_and_params = g_slice_alloc (sizeof (GValue) * (n_params + 1));
1972 param_values = instance_and_params + 1;
1974 for (i = 0; i < node->n_params; i++)
1977 GType ptype = node->param_types[i] & ~G_SIGNAL_TYPE_STATIC_SCOPE;
1978 gboolean static_scope = node->param_types[i] & G_SIGNAL_TYPE_STATIC_SCOPE;
1980 param_values[i].g_type = 0;
1982 g_value_init (param_values + i, ptype);
1983 G_VALUE_COLLECT (param_values + i,
1985 static_scope ? G_VALUE_NOCOPY_CONTENTS : 0,
1989 g_warning ("%s: %s", G_STRLOC, error);
1992 /* we purposely leak the value here, it might not be
1993 * in a sane state if an error condition occoured
1996 g_value_unset (param_values + i);
1998 g_slice_free1 (sizeof (GValue) * (n_params + 1), instance_and_params);
2006 instance_and_params->g_type = 0;
2007 g_value_init (instance_and_params, G_TYPE_FROM_INSTANCE (instance));
2008 g_value_set_instance (instance_and_params, instance);
2011 emission->chain_type = chain_type;
2014 if (signal_return_type == G_TYPE_NONE)
2016 g_closure_invoke (closure,
2019 instance_and_params,
2024 GValue return_value = { 0, };
2025 gchar *error = NULL;
2026 GType rtype = signal_return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE;
2027 gboolean static_scope = signal_return_type & G_SIGNAL_TYPE_STATIC_SCOPE;
2029 g_value_init (&return_value, rtype);
2031 g_closure_invoke (closure,
2034 instance_and_params,
2037 G_VALUE_LCOPY (&return_value,
2039 static_scope ? G_VALUE_NOCOPY_CONTENTS : 0,
2043 g_value_unset (&return_value);
2047 g_warning ("%s: %s", G_STRLOC, error);
2050 /* we purposely leak the value here, it might not be
2051 * in a sane state if an error condition occured
2056 for (i = 0; i < n_params; i++)
2057 g_value_unset (param_values + i);
2058 g_value_unset (instance_and_params);
2059 g_slice_free1 (sizeof (GValue) * (n_params + 1), instance_and_params);
2064 emission->chain_type = restore_type;
2070 * g_signal_get_invocation_hint:
2071 * @instance: the instance to query
2073 * Returns the invocation hint of the innermost signal emission of instance.
2075 * Returns: the invocation hint of the innermost signal emission.
2077 GSignalInvocationHint*
2078 g_signal_get_invocation_hint (gpointer instance)
2080 Emission *emission = NULL;
2082 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), NULL);
2085 emission = emission_find_innermost (instance);
2088 return emission ? &emission->ihint : NULL;
2092 * g_signal_connect_closure_by_id:
2093 * @instance: the instance to connect to.
2094 * @signal_id: the id of the signal.
2095 * @detail: the detail.
2096 * @closure: the closure to connect.
2097 * @after: whether the handler should be called before or after the
2098 * default handler of the signal.
2100 * Connects a closure to a signal for a particular object.
2102 * Returns: the handler id
2105 g_signal_connect_closure_by_id (gpointer instance,
2112 gulong handler_seq_no = 0;
2114 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2115 g_return_val_if_fail (signal_id > 0, 0);
2116 g_return_val_if_fail (closure != NULL, 0);
2119 node = LOOKUP_SIGNAL_NODE (signal_id);
2122 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2123 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
2124 else if (!g_type_is_a (G_TYPE_FROM_INSTANCE (instance), node->itype))
2125 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
2128 Handler *handler = handler_new (after);
2130 handler_seq_no = handler->sequential_number;
2131 handler->detail = detail;
2132 handler->closure = g_closure_ref (closure);
2133 g_closure_sink (closure);
2134 handler_insert (signal_id, instance, handler);
2135 if (node->c_marshaller && G_CLOSURE_NEEDS_MARSHAL (closure))
2136 g_closure_set_marshal (closure, node->c_marshaller);
2140 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
2143 return handler_seq_no;
2147 * g_signal_connect_closure:
2148 * @instance: the instance to connect to.
2149 * @detailed_signal: a string of the form "signal-name::detail".
2150 * @closure: the closure to connect.
2151 * @after: whether the handler should be called before or after the
2152 * default handler of the signal.
2154 * Connects a closure to a signal for a particular object.
2156 * Returns: the handler id
2159 g_signal_connect_closure (gpointer instance,
2160 const gchar *detailed_signal,
2165 gulong handler_seq_no = 0;
2169 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2170 g_return_val_if_fail (detailed_signal != NULL, 0);
2171 g_return_val_if_fail (closure != NULL, 0);
2174 itype = G_TYPE_FROM_INSTANCE (instance);
2175 signal_id = signal_parse_name (detailed_signal, itype, &detail, TRUE);
2178 SignalNode *node = LOOKUP_SIGNAL_NODE (signal_id);
2180 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2181 g_warning ("%s: signal `%s' does not support details", G_STRLOC, detailed_signal);
2182 else if (!g_type_is_a (itype, node->itype))
2183 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
2186 Handler *handler = handler_new (after);
2188 handler_seq_no = handler->sequential_number;
2189 handler->detail = detail;
2190 handler->closure = g_closure_ref (closure);
2191 g_closure_sink (closure);
2192 handler_insert (signal_id, instance, handler);
2193 if (node->c_marshaller && G_CLOSURE_NEEDS_MARSHAL (handler->closure))
2194 g_closure_set_marshal (handler->closure, node->c_marshaller);
2198 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
2201 return handler_seq_no;
2205 * g_signal_connect_data:
2206 * @instance: the instance to connect to.
2207 * @detailed_signal: a string of the form "signal-name::detail".
2208 * @c_handler: the #GCallback to connect.
2209 * @data: data to pass to @c_handler calls.
2210 * @destroy_data: a #GClosureNotify for @data.
2211 * @connect_flags: a combination of #GConnectFlags.
2213 * Connects a #GCallback function to a signal for a particular object. Similar
2214 * to g_signal_connect(), but allows to provide a #GClosureNotify for the data
2215 * which will be called when the signal handler is disconnected and no longer
2216 * used. Specify @connect_flags if you need <literal>..._after()</literal> or
2217 * <literal>..._swapped()</literal> variants of this function.
2219 * Returns: the handler id
2222 g_signal_connect_data (gpointer instance,
2223 const gchar *detailed_signal,
2224 GCallback c_handler,
2226 GClosureNotify destroy_data,
2227 GConnectFlags connect_flags)
2230 gulong handler_seq_no = 0;
2233 gboolean swapped, after;
2235 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2236 g_return_val_if_fail (detailed_signal != NULL, 0);
2237 g_return_val_if_fail (c_handler != NULL, 0);
2239 swapped = (connect_flags & G_CONNECT_SWAPPED) != FALSE;
2240 after = (connect_flags & G_CONNECT_AFTER) != FALSE;
2243 itype = G_TYPE_FROM_INSTANCE (instance);
2244 signal_id = signal_parse_name (detailed_signal, itype, &detail, TRUE);
2247 SignalNode *node = LOOKUP_SIGNAL_NODE (signal_id);
2249 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2250 g_warning ("%s: signal `%s' does not support details", G_STRLOC, detailed_signal);
2251 else if (!g_type_is_a (itype, node->itype))
2252 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
2255 Handler *handler = handler_new (after);
2257 handler_seq_no = handler->sequential_number;
2258 handler->detail = detail;
2259 handler->closure = g_closure_ref ((swapped ? g_cclosure_new_swap : g_cclosure_new) (c_handler, data, destroy_data));
2260 g_closure_sink (handler->closure);
2261 handler_insert (signal_id, instance, handler);
2262 if (node->c_marshaller && G_CLOSURE_NEEDS_MARSHAL (handler->closure))
2263 g_closure_set_marshal (handler->closure, node->c_marshaller);
2267 g_warning ("%s: signal `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
2270 return handler_seq_no;
2274 * g_signal_handler_block:
2275 * @instance: The instance to block the signal handler of.
2276 * @handler_id: Handler id of the handler to be blocked.
2278 * Blocks a handler of an instance so it will not be called during any
2279 * signal emissions unless it is unblocked again. Thus "blocking" a
2280 * signal handler means to temporarily deactive it, a signal handler
2281 * has to be unblocked exactly the same amount of times it has been
2282 * blocked before to become active again.
2284 * The @handler_id has to be a valid signal handler id, connected to a
2285 * signal of @instance.
2288 g_signal_handler_block (gpointer instance,
2293 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2294 g_return_if_fail (handler_id > 0);
2297 handler = handler_lookup (instance, handler_id, NULL);
2300 #ifndef G_DISABLE_CHECKS
2301 if (handler->block_count >= HANDLER_MAX_BLOCK_COUNT - 1)
2302 g_error (G_STRLOC ": handler block_count overflow, %s", REPORT_BUG);
2304 handler->block_count += 1;
2307 g_warning ("%s: instance `%p' has no handler with id `%lu'", G_STRLOC, instance, handler_id);
2312 * g_signal_handler_unblock:
2313 * @instance: The instance to unblock the signal handler of.
2314 * @handler_id: Handler id of the handler to be unblocked.
2316 * Undoes the effect of a previous g_signal_handler_block() call. A
2317 * blocked handler is skipped during signal emissions and will not be
2318 * invoked, unblocking it (for exactly the amount of times it has been
2319 * blocked before) reverts its "blocked" state, so the handler will be
2320 * recognized by the signal system and is called upon future or
2321 * currently ongoing signal emissions (since the order in which
2322 * handlers are called during signal emissions is deterministic,
2323 * whether the unblocked handler in question is called as part of a
2324 * currently ongoing emission depends on how far that emission has
2327 * The @handler_id has to be a valid id of a signal handler that is
2328 * connected to a signal of @instance and is currently blocked.
2331 g_signal_handler_unblock (gpointer instance,
2336 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2337 g_return_if_fail (handler_id > 0);
2340 handler = handler_lookup (instance, handler_id, NULL);
2343 if (handler->block_count)
2344 handler->block_count -= 1;
2346 g_warning (G_STRLOC ": handler `%lu' of instance `%p' is not blocked", handler_id, instance);
2349 g_warning ("%s: instance `%p' has no handler with id `%lu'", G_STRLOC, instance, handler_id);
2354 * g_signal_handler_disconnect:
2355 * @instance: The instance to remove the signal handler from.
2356 * @handler_id: Handler id of the handler to be disconnected.
2358 * Disconnects a handler from an instance so it will not be called during
2359 * any future or currently ongoing emissions of the signal it has been
2360 * connected to. The @handler_id becomes invalid and may be reused.
2362 * The @handler_id has to be a valid signal handler id, connected to a
2363 * signal of @instance.
2366 g_signal_handler_disconnect (gpointer instance,
2372 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2373 g_return_if_fail (handler_id > 0);
2376 handler = handler_lookup (instance, handler_id, &signal_id);
2379 handler->sequential_number = 0;
2380 handler->block_count = 1;
2381 handler_unref_R (signal_id, instance, handler);
2384 g_warning ("%s: instance `%p' has no handler with id `%lu'", G_STRLOC, instance, handler_id);
2389 * g_signal_handler_is_connected:
2390 * @instance: The instance where a signal handler is sought.
2391 * @handler_id: the handler id.
2393 * Returns whether @handler_id is the id of a handler connected to @instance.
2395 * Returns: whether @handler_id identifies a handler connected to @instance.
2398 g_signal_handler_is_connected (gpointer instance,
2404 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), FALSE);
2407 handler = handler_lookup (instance, handler_id, NULL);
2408 connected = handler != NULL;
2415 g_signal_handlers_destroy (gpointer instance)
2417 GBSearchArray *hlbsa;
2419 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2422 hlbsa = g_hash_table_lookup (g_handler_list_bsa_ht, instance);
2427 /* reentrancy caution, delete instance trace first */
2428 g_hash_table_remove (g_handler_list_bsa_ht, instance);
2430 for (i = 0; i < hlbsa->n_nodes; i++)
2432 HandlerList *hlist = g_bsearch_array_get_nth (hlbsa, &g_signal_hlbsa_bconfig, i);
2433 Handler *handler = hlist->handlers;
2437 Handler *tmp = handler;
2439 handler = tmp->next;
2440 tmp->block_count = 1;
2441 /* cruel unlink, this works because _all_ handlers vanish */
2444 if (tmp->sequential_number)
2446 tmp->sequential_number = 0;
2447 handler_unref_R (0, NULL, tmp);
2451 g_bsearch_array_free (hlbsa, &g_signal_hlbsa_bconfig);
2457 * g_signal_handler_find:
2458 * @instance: The instance owning the signal handler to be found.
2459 * @mask: Mask indicating which of @signal_id, @detail, @closure, @func
2460 * and/or @data the handler has to match.
2461 * @signal_id: Signal the handler has to be connected to.
2462 * @detail: Signal detail the handler has to be connected to.
2463 * @closure: The closure the handler will invoke.
2464 * @func: The C closure callback of the handler (useless for non-C closures).
2465 * @data: The closure data of the handler's closure.
2467 * Finds the first signal handler that matches certain selection criteria.
2468 * The criteria mask is passed as an OR-ed combination of #GSignalMatchType
2469 * flags, and the criteria values are passed as arguments.
2470 * The match @mask has to be non-0 for successful matches.
2471 * If no handler was found, 0 is returned.
2473 * Returns: A valid non-0 signal handler id for a successful match.
2476 g_signal_handler_find (gpointer instance,
2477 GSignalMatchType mask,
2484 gulong handler_seq_no = 0;
2486 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2487 g_return_val_if_fail ((mask & ~G_SIGNAL_MATCH_MASK) == 0, 0);
2489 if (mask & G_SIGNAL_MATCH_MASK)
2491 HandlerMatch *mlist;
2494 mlist = handlers_find (instance, mask, signal_id, detail, closure, func, data, TRUE);
2497 handler_seq_no = mlist->handler->sequential_number;
2498 handler_match_free1_R (mlist, instance);
2503 return handler_seq_no;
2507 signal_handlers_foreach_matched_R (gpointer instance,
2508 GSignalMatchType mask,
2514 void (*callback) (gpointer instance,
2515 gulong handler_seq_no))
2517 HandlerMatch *mlist;
2518 guint n_handlers = 0;
2520 mlist = handlers_find (instance, mask, signal_id, detail, closure, func, data, FALSE);
2524 if (mlist->handler->sequential_number)
2527 callback (instance, mlist->handler->sequential_number);
2530 mlist = handler_match_free1_R (mlist, instance);
2537 * g_signal_handlers_block_matched:
2538 * @instance: The instance to block handlers from.
2539 * @mask: Mask indicating which of @signal_id, @detail, @closure, @func
2540 * and/or @data the handlers have to match.
2541 * @signal_id: Signal the handlers have to be connected to.
2542 * @detail: Signal detail the handlers have to be connected to.
2543 * @closure: The closure the handlers will invoke.
2544 * @func: The C closure callback of the handlers (useless for non-C closures).
2545 * @data: The closure data of the handlers' closures.
2547 * Blocks all handlers on an instance that match a certain selection criteria.
2548 * The criteria mask is passed as an OR-ed combination of #GSignalMatchType
2549 * flags, and the criteria values are passed as arguments.
2550 * Passing at least one of the %G_SIGNAL_MATCH_CLOSURE, %G_SIGNAL_MATCH_FUNC
2551 * or %G_SIGNAL_MATCH_DATA match flags is required for successful matches.
2552 * If no handlers were found, 0 is returned, the number of blocked handlers
2555 * Returns: The number of handlers that matched.
2558 g_signal_handlers_block_matched (gpointer instance,
2559 GSignalMatchType mask,
2566 guint n_handlers = 0;
2568 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2569 g_return_val_if_fail ((mask & ~G_SIGNAL_MATCH_MASK) == 0, 0);
2571 if (mask & (G_SIGNAL_MATCH_CLOSURE | G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA))
2574 n_handlers = signal_handlers_foreach_matched_R (instance, mask, signal_id, detail,
2575 closure, func, data,
2576 g_signal_handler_block);
2584 * g_signal_handlers_unblock_matched:
2585 * @instance: The instance to unblock handlers from.
2586 * @mask: Mask indicating which of @signal_id, @detail, @closure, @func
2587 * and/or @data the handlers have to match.
2588 * @signal_id: Signal the handlers have to be connected to.
2589 * @detail: Signal detail the handlers have to be connected to.
2590 * @closure: The closure the handlers will invoke.
2591 * @func: The C closure callback of the handlers (useless for non-C closures).
2592 * @data: The closure data of the handlers' closures.
2594 * Unblocks all handlers on an instance that match a certain selection
2595 * criteria. The criteria mask is passed as an OR-ed combination of
2596 * #GSignalMatchType flags, and the criteria values are passed as arguments.
2597 * Passing at least one of the %G_SIGNAL_MATCH_CLOSURE, %G_SIGNAL_MATCH_FUNC
2598 * or %G_SIGNAL_MATCH_DATA match flags is required for successful matches.
2599 * If no handlers were found, 0 is returned, the number of unblocked handlers
2600 * otherwise. The match criteria should not apply to any handlers that are
2601 * not currently blocked.
2603 * Returns: The number of handlers that matched.
2606 g_signal_handlers_unblock_matched (gpointer instance,
2607 GSignalMatchType mask,
2614 guint n_handlers = 0;
2616 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2617 g_return_val_if_fail ((mask & ~G_SIGNAL_MATCH_MASK) == 0, 0);
2619 if (mask & (G_SIGNAL_MATCH_CLOSURE | G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA))
2622 n_handlers = signal_handlers_foreach_matched_R (instance, mask, signal_id, detail,
2623 closure, func, data,
2624 g_signal_handler_unblock);
2632 * g_signal_handlers_disconnect_matched:
2633 * @instance: The instance to remove handlers from.
2634 * @mask: Mask indicating which of @signal_id, @detail, @closure, @func
2635 * and/or @data the handlers have to match.
2636 * @signal_id: Signal the handlers have to be connected to.
2637 * @detail: Signal detail the handlers have to be connected to.
2638 * @closure: The closure the handlers will invoke.
2639 * @func: The C closure callback of the handlers (useless for non-C closures).
2640 * @data: The closure data of the handlers' closures.
2642 * Disconnects all handlers on an instance that match a certain
2643 * selection criteria. The criteria mask is passed as an OR-ed
2644 * combination of #GSignalMatchType flags, and the criteria values are
2645 * passed as arguments. Passing at least one of the
2646 * %G_SIGNAL_MATCH_CLOSURE, %G_SIGNAL_MATCH_FUNC or
2647 * %G_SIGNAL_MATCH_DATA match flags is required for successful
2648 * matches. If no handlers were found, 0 is returned, the number of
2649 * disconnected handlers otherwise.
2651 * Returns: The number of handlers that matched.
2654 g_signal_handlers_disconnect_matched (gpointer instance,
2655 GSignalMatchType mask,
2662 guint n_handlers = 0;
2664 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
2665 g_return_val_if_fail ((mask & ~G_SIGNAL_MATCH_MASK) == 0, 0);
2667 if (mask & (G_SIGNAL_MATCH_CLOSURE | G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA))
2670 n_handlers = signal_handlers_foreach_matched_R (instance, mask, signal_id, detail,
2671 closure, func, data,
2672 g_signal_handler_disconnect);
2680 * g_signal_has_handler_pending:
2681 * @instance: the object whose signal handlers are sought.
2682 * @signal_id: the signal id.
2683 * @detail: the detail.
2684 * @may_be_blocked: whether blocked handlers should count as match.
2686 * Returns whether there are any handlers connected to @instance for the
2687 * given signal id and detail.
2689 * One example of when you might use this is when the arguments to the
2690 * signal are difficult to compute. A class implementor may opt to not
2691 * emit the signal if no one is attached anyway, thus saving the cost
2692 * of building the arguments.
2694 * Returns: %TRUE if a handler is connected to the signal, %FALSE
2698 g_signal_has_handler_pending (gpointer instance,
2701 gboolean may_be_blocked)
2703 HandlerMatch *mlist;
2704 gboolean has_pending;
2706 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), FALSE);
2707 g_return_val_if_fail (signal_id > 0, FALSE);
2712 SignalNode *node = LOOKUP_SIGNAL_NODE (signal_id);
2714 if (!(node->flags & G_SIGNAL_DETAILED))
2716 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
2721 mlist = handlers_find (instance,
2722 (G_SIGNAL_MATCH_ID | G_SIGNAL_MATCH_DETAIL | (may_be_blocked ? 0 : G_SIGNAL_MATCH_UNBLOCKED)),
2723 signal_id, detail, NULL, NULL, NULL, TRUE);
2727 handler_match_free1_R (mlist, instance);
2730 has_pending = FALSE;
2736 static inline gboolean
2737 signal_check_skip_emission (SignalNode *node,
2743 /* are we able to check for NULL class handlers? */
2744 if (!node->test_class_offset)
2747 /* are there emission hooks pending? */
2748 if (node->emission_hooks && node->emission_hooks->hooks)
2751 /* is there a non-NULL class handler? */
2752 if (node->test_class_offset != TEST_CLASS_MAGIC)
2754 GTypeClass *class = G_TYPE_INSTANCE_GET_CLASS (instance, G_TYPE_FROM_INSTANCE (instance), GTypeClass);
2756 if (G_STRUCT_MEMBER (gpointer, class, node->test_class_offset))
2760 /* are signals being debugged? */
2761 #ifdef G_ENABLE_DEBUG
2762 IF_DEBUG (SIGNALS, g_trace_instance_signals || g_trap_instance_signals)
2764 #endif /* G_ENABLE_DEBUG */
2766 /* is this a no-recurse signal already in emission? */
2767 if (node->flags & G_SIGNAL_NO_RECURSE &&
2768 emission_find (g_restart_emissions, node->signal_id, detail, instance))
2771 /* do we have pending handlers? */
2772 hlist = handler_list_lookup (node->signal_id, instance);
2773 if (hlist && hlist->handlers)
2776 /* none of the above, no emission required */
2782 * @instance_and_params: argument list for the signal emission. The first
2783 * element in the array is a #GValue for the instance the signal is
2784 * being emitted on. The rest are any arguments to be passed to the
2786 * @signal_id: the signal id
2787 * @detail: the detail
2788 * @return_value: Location to store the return value of the signal emission.
2792 * Note that g_signal_emitv() doesn't change @return_value if no handlers are
2793 * connected, in contrast to g_signal_emit() and g_signal_emit_valist().
2796 g_signal_emitv (const GValue *instance_and_params,
2799 GValue *return_value)
2803 #ifdef G_ENABLE_DEBUG
2804 const GValue *param_values;
2808 g_return_if_fail (instance_and_params != NULL);
2809 instance = g_value_peek_pointer (instance_and_params);
2810 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2811 g_return_if_fail (signal_id > 0);
2813 #ifdef G_ENABLE_DEBUG
2814 param_values = instance_and_params + 1;
2818 node = LOOKUP_SIGNAL_NODE (signal_id);
2819 if (!node || !g_type_is_a (G_TYPE_FROM_INSTANCE (instance), node->itype))
2821 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
2825 #ifdef G_ENABLE_DEBUG
2826 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2828 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
2832 for (i = 0; i < node->n_params; i++)
2833 if (!G_TYPE_CHECK_VALUE_TYPE (param_values + i, node->param_types[i] & ~G_SIGNAL_TYPE_STATIC_SCOPE))
2835 g_critical ("%s: value for `%s' parameter %u for signal \"%s\" is of type `%s'",
2837 type_debug_name (node->param_types[i]),
2840 G_VALUE_TYPE_NAME (param_values + i));
2844 if (node->return_type != G_TYPE_NONE)
2848 g_critical ("%s: return value `%s' for signal \"%s\" is (NULL)",
2850 type_debug_name (node->return_type),
2855 else if (!node->accumulator && !G_TYPE_CHECK_VALUE_TYPE (return_value, node->return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE))
2857 g_critical ("%s: return value `%s' for signal \"%s\" is of type `%s'",
2859 type_debug_name (node->return_type),
2861 G_VALUE_TYPE_NAME (return_value));
2867 return_value = NULL;
2868 #endif /* G_ENABLE_DEBUG */
2870 /* optimize NOP emissions */
2871 if (signal_check_skip_emission (node, instance, detail))
2873 /* nothing to do to emit this signal */
2875 /* g_printerr ("omitting emission of \"%s\"\n", node->name); */
2880 signal_emit_unlocked_R (node, detail, instance, return_value, instance_and_params);
2884 * g_signal_emit_valist:
2885 * @instance: the instance the signal is being emitted on.
2886 * @signal_id: the signal id
2887 * @detail: the detail
2888 * @var_args: a list of parameters to be passed to the signal, followed by a
2889 * location for the return value. If the return type of the signal
2890 * is #G_TYPE_NONE, the return value location can be omitted.
2894 * Note that g_signal_emit_valist() resets the return value to the default
2895 * if no handlers are connected, in contrast to g_signal_emitv().
2898 g_signal_emit_valist (gpointer instance,
2903 GValue *instance_and_params;
2904 GType signal_return_type;
2905 GValue *param_values;
2909 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
2910 g_return_if_fail (signal_id > 0);
2913 node = LOOKUP_SIGNAL_NODE (signal_id);
2914 if (!node || !g_type_is_a (G_TYPE_FROM_INSTANCE (instance), node->itype))
2916 g_warning ("%s: signal id `%u' is invalid for instance `%p'", G_STRLOC, signal_id, instance);
2920 #ifndef G_DISABLE_CHECKS
2921 if (detail && !(node->flags & G_SIGNAL_DETAILED))
2923 g_warning ("%s: signal id `%u' does not support detail (%u)", G_STRLOC, signal_id, detail);
2927 #endif /* !G_DISABLE_CHECKS */
2929 /* optimize NOP emissions */
2930 if (signal_check_skip_emission (node, instance, detail))
2932 /* nothing to do to emit this signal */
2934 /* g_printerr ("omitting emission of \"%s\"\n", node->name); */
2938 n_params = node->n_params;
2939 signal_return_type = node->return_type;
2940 instance_and_params = g_slice_alloc (sizeof (GValue) * (n_params + 1));
2941 param_values = instance_and_params + 1;
2943 for (i = 0; i < node->n_params; i++)
2946 GType ptype = node->param_types[i] & ~G_SIGNAL_TYPE_STATIC_SCOPE;
2947 gboolean static_scope = node->param_types[i] & G_SIGNAL_TYPE_STATIC_SCOPE;
2949 param_values[i].g_type = 0;
2951 g_value_init (param_values + i, ptype);
2952 G_VALUE_COLLECT (param_values + i,
2954 static_scope ? G_VALUE_NOCOPY_CONTENTS : 0,
2958 g_warning ("%s: %s", G_STRLOC, error);
2961 /* we purposely leak the value here, it might not be
2962 * in a sane state if an error condition occoured
2965 g_value_unset (param_values + i);
2967 g_slice_free1 (sizeof (GValue) * (n_params + 1), instance_and_params);
2973 instance_and_params->g_type = 0;
2974 g_value_init (instance_and_params, G_TYPE_FROM_INSTANCE (instance));
2975 g_value_set_instance (instance_and_params, instance);
2976 if (signal_return_type == G_TYPE_NONE)
2977 signal_emit_unlocked_R (node, detail, instance, NULL, instance_and_params);
2980 GValue return_value = { 0, };
2981 gchar *error = NULL;
2982 GType rtype = signal_return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE;
2983 gboolean static_scope = signal_return_type & G_SIGNAL_TYPE_STATIC_SCOPE;
2985 g_value_init (&return_value, rtype);
2987 signal_emit_unlocked_R (node, detail, instance, &return_value, instance_and_params);
2989 G_VALUE_LCOPY (&return_value,
2991 static_scope ? G_VALUE_NOCOPY_CONTENTS : 0,
2994 g_value_unset (&return_value);
2997 g_warning ("%s: %s", G_STRLOC, error);
3000 /* we purposely leak the value here, it might not be
3001 * in a sane state if an error condition occured
3005 for (i = 0; i < n_params; i++)
3006 g_value_unset (param_values + i);
3007 g_value_unset (instance_and_params);
3008 g_slice_free1 (sizeof (GValue) * (n_params + 1), instance_and_params);
3013 * @instance: the instance the signal is being emitted on.
3014 * @signal_id: the signal id
3015 * @detail: the detail
3016 * @...: parameters to be passed to the signal, followed by a
3017 * location for the return value. If the return type of the signal
3018 * is #G_TYPE_NONE, the return value location can be omitted.
3022 * Note that g_signal_emit() resets the return value to the default
3023 * if no handlers are connected, in contrast to g_signal_emitv().
3026 g_signal_emit (gpointer instance,
3033 va_start (var_args, detail);
3034 g_signal_emit_valist (instance, signal_id, detail, var_args);
3039 * g_signal_emit_by_name:
3040 * @instance: the instance the signal is being emitted on.
3041 * @detailed_signal: a string of the form "signal-name::detail".
3042 * @...: parameters to be passed to the signal, followed by a
3043 * location for the return value. If the return type of the signal
3044 * is #G_TYPE_NONE, the return value location can be omitted.
3048 * Note that g_signal_emit_by_name() resets the return value to the default
3049 * if no handlers are connected, in contrast to g_signal_emitv().
3052 g_signal_emit_by_name (gpointer instance,
3053 const gchar *detailed_signal,
3059 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance));
3060 g_return_if_fail (detailed_signal != NULL);
3063 signal_id = signal_parse_name (detailed_signal, G_TYPE_FROM_INSTANCE (instance), &detail, TRUE);
3070 va_start (var_args, detailed_signal);
3071 g_signal_emit_valist (instance, signal_id, detail, var_args);
3075 g_warning ("%s: signal name `%s' is invalid for instance `%p'", G_STRLOC, detailed_signal, instance);
3078 static inline gboolean
3079 accumulate (GSignalInvocationHint *ihint,
3080 GValue *return_accu,
3081 GValue *handler_return,
3082 SignalAccumulator *accumulator)
3084 gboolean continue_emission;
3089 continue_emission = accumulator->func (ihint, return_accu, handler_return, accumulator->data);
3090 g_value_reset (handler_return);
3092 return continue_emission;
3096 signal_emit_unlocked_R (SignalNode *node,
3099 GValue *emission_return,
3100 const GValue *instance_and_params)
3102 SignalAccumulator *accumulator;
3104 GClosure *class_closure;
3106 Handler *handler_list = NULL;
3107 GValue *return_accu, accu = { 0, };
3109 gulong max_sequential_handler_number;
3110 gboolean return_value_altered = FALSE;
3112 #ifdef G_ENABLE_DEBUG
3113 IF_DEBUG (SIGNALS, g_trace_instance_signals == instance || g_trap_instance_signals == instance)
3115 g_message ("%s::%s(%u) emitted (instance=%p, signal-node=%p)",
3116 g_type_name (G_TYPE_FROM_INSTANCE (instance)),
3119 if (g_trap_instance_signals == instance)
3122 #endif /* G_ENABLE_DEBUG */
3125 signal_id = node->signal_id;
3126 if (node->flags & G_SIGNAL_NO_RECURSE)
3128 Emission *node = emission_find (g_restart_emissions, signal_id, detail, instance);
3132 node->state = EMISSION_RESTART;
3134 return return_value_altered;
3137 accumulator = node->accumulator;
3141 g_value_init (&accu, node->return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE);
3142 return_accu = &accu;
3146 return_accu = emission_return;
3147 emission.instance = instance;
3148 emission.ihint.signal_id = node->signal_id;
3149 emission.ihint.detail = detail;
3150 emission.ihint.run_type = 0;
3152 emission.chain_type = G_TYPE_NONE;
3153 emission_push ((node->flags & G_SIGNAL_NO_RECURSE) ? &g_restart_emissions : &g_recursive_emissions, &emission);
3154 class_closure = signal_lookup_closure (node, instance);
3159 handler_unref_R (signal_id, instance, handler_list);
3160 max_sequential_handler_number = g_handler_sequential_number;
3161 hlist = handler_list_lookup (signal_id, instance);
3162 handler_list = hlist ? hlist->handlers : NULL;
3164 handler_ref (handler_list);
3166 emission.ihint.run_type = G_SIGNAL_RUN_FIRST;
3168 if ((node->flags & G_SIGNAL_RUN_FIRST) && class_closure)
3170 emission.state = EMISSION_RUN;
3172 emission.chain_type = G_TYPE_FROM_INSTANCE (instance);
3174 g_closure_invoke (class_closure,
3177 instance_and_params,
3179 if (!accumulate (&emission.ihint, emission_return, &accu, accumulator) &&
3180 emission.state == EMISSION_RUN)
3181 emission.state = EMISSION_STOP;
3183 emission.chain_type = G_TYPE_NONE;
3184 return_value_altered = TRUE;
3186 if (emission.state == EMISSION_STOP)
3188 else if (emission.state == EMISSION_RESTART)
3192 if (node->emission_hooks)
3194 gboolean need_destroy, was_in_call, may_recurse = TRUE;
3197 emission.state = EMISSION_HOOK;
3198 hook = g_hook_first_valid (node->emission_hooks, may_recurse);
3201 SignalHook *signal_hook = SIGNAL_HOOK (hook);
3203 if (!signal_hook->detail || signal_hook->detail == detail)
3205 GSignalEmissionHook hook_func = (GSignalEmissionHook) hook->func;
3207 was_in_call = G_HOOK_IN_CALL (hook);
3208 hook->flags |= G_HOOK_FLAG_IN_CALL;
3210 need_destroy = !hook_func (&emission.ihint, node->n_params + 1, instance_and_params, hook->data);
3213 hook->flags &= ~G_HOOK_FLAG_IN_CALL;
3215 g_hook_destroy_link (node->emission_hooks, hook);
3217 hook = g_hook_next_valid (node->emission_hooks, hook, may_recurse);
3220 if (emission.state == EMISSION_RESTART)
3226 Handler *handler = handler_list;
3228 emission.state = EMISSION_RUN;
3229 handler_ref (handler);
3236 handler_unref_R (signal_id, instance, handler_list);
3237 handler_list = handler;
3240 else if (!handler->block_count && (!handler->detail || handler->detail == detail) &&
3241 handler->sequential_number < max_sequential_handler_number)
3244 g_closure_invoke (handler->closure,
3247 instance_and_params,
3249 if (!accumulate (&emission.ihint, emission_return, &accu, accumulator) &&
3250 emission.state == EMISSION_RUN)
3251 emission.state = EMISSION_STOP;
3253 return_value_altered = TRUE;
3255 tmp = emission.state == EMISSION_RUN ? handler->next : NULL;
3258 tmp = handler->next;
3262 handler_unref_R (signal_id, instance, handler_list);
3263 handler_list = handler;
3268 if (emission.state == EMISSION_STOP)
3270 else if (emission.state == EMISSION_RESTART)
3274 emission.ihint.run_type = G_SIGNAL_RUN_LAST;
3276 if ((node->flags & G_SIGNAL_RUN_LAST) && class_closure)
3278 emission.state = EMISSION_RUN;
3280 emission.chain_type = G_TYPE_FROM_INSTANCE (instance);
3282 g_closure_invoke (class_closure,
3285 instance_and_params,
3287 if (!accumulate (&emission.ihint, emission_return, &accu, accumulator) &&
3288 emission.state == EMISSION_RUN)
3289 emission.state = EMISSION_STOP;
3291 emission.chain_type = G_TYPE_NONE;
3292 return_value_altered = TRUE;
3294 if (emission.state == EMISSION_STOP)
3296 else if (emission.state == EMISSION_RESTART)
3302 Handler *handler = handler_list;
3304 emission.state = EMISSION_RUN;
3305 handler_ref (handler);
3310 if (handler->after && !handler->block_count && (!handler->detail || handler->detail == detail) &&
3311 handler->sequential_number < max_sequential_handler_number)
3314 g_closure_invoke (handler->closure,
3317 instance_and_params,
3319 if (!accumulate (&emission.ihint, emission_return, &accu, accumulator) &&
3320 emission.state == EMISSION_RUN)
3321 emission.state = EMISSION_STOP;
3323 return_value_altered = TRUE;
3325 tmp = emission.state == EMISSION_RUN ? handler->next : NULL;
3328 tmp = handler->next;
3332 handler_unref_R (signal_id, instance, handler);
3337 if (emission.state == EMISSION_STOP)
3339 else if (emission.state == EMISSION_RESTART)
3345 emission.ihint.run_type = G_SIGNAL_RUN_CLEANUP;
3347 if ((node->flags & G_SIGNAL_RUN_CLEANUP) && class_closure)
3349 gboolean need_unset = FALSE;
3351 emission.state = EMISSION_STOP;
3353 emission.chain_type = G_TYPE_FROM_INSTANCE (instance);
3355 if (node->return_type != G_TYPE_NONE && !accumulator)
3357 g_value_init (&accu, node->return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE);
3360 g_closure_invoke (class_closure,
3361 node->return_type != G_TYPE_NONE ? &accu : NULL,
3363 instance_and_params,
3366 g_value_unset (&accu);
3368 emission.chain_type = G_TYPE_NONE;
3370 if (emission.state == EMISSION_RESTART)
3375 handler_unref_R (signal_id, instance, handler_list);
3377 emission_pop ((node->flags & G_SIGNAL_NO_RECURSE) ? &g_restart_emissions : &g_recursive_emissions, &emission);
3380 g_value_unset (&accu);
3382 return return_value_altered;
3386 type_debug_name (GType type)
3390 const char *name = g_type_name (type & ~G_SIGNAL_TYPE_STATIC_SCOPE);
3391 return name ? name : "<unknown>";
3398 * g_signal_accumulator_true_handled:
3399 * @ihint: standard #GSignalAccumulator parameter
3400 * @return_accu: standard #GSignalAccumulator parameter
3401 * @handler_return: standard #GSignalAccumulator parameter
3402 * @dummy: standard #GSignalAccumulator parameter
3404 * A predefined #GSignalAccumulator for signals that return a
3405 * boolean values. The behavior that this accumulator gives is
3406 * that a return of %TRUE stops the signal emission: no further
3407 * callbacks will be invoked, while a return of %FALSE allows
3408 * the emission to coninue. The idea here is that a %TRUE return
3409 * indicates that the callback <emphasis>handled</emphasis> the signal,
3410 * and no further handling is needed.
3414 * Returns: standard #GSignalAccumulator result
3417 g_signal_accumulator_true_handled (GSignalInvocationHint *ihint,
3418 GValue *return_accu,
3419 const GValue *handler_return,
3422 gboolean continue_emission;
3423 gboolean signal_handled;
3425 signal_handled = g_value_get_boolean (handler_return);
3426 g_value_set_boolean (return_accu, signal_handled);
3427 continue_emission = !signal_handled;
3429 return continue_emission;
3432 /* --- compile standard marshallers --- */
3433 #include "gmarshal.c"
3435 #define __G_SIGNAL_C__
3436 #include "gobjectaliasdef.c"