Update contrib.
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc.
3 * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
22 * MT safe with regards to reference counting.
30 #include "gdatasetprivate.h"
33 #include "gvaluecollector.h"
35 #include "gparamspecs.h"
36 #include "gvaluetypes.h"
37 #include "gobjectalias.h"
39 #include <glib_global.h>
40 #include "gobject_wsd.h"
41 #include <gobject_global.h>
42 #endif /* __SYMBIAN32__ */
43 /* This should be included after gobjectalias.h (or pltcheck.sh will fail) */
44 #include "gobjectnotifyqueue.c"
50 * @short_description: The base object type
51 * @see_also: #GParamSpecObject, g_param_spec_object()
52 * @title: The Base Object Type
54 * GObject is the fundamental type providing the common attributes and
55 * methods for all object types in GTK+, Pango and other libraries
56 * based on GObject. The GObject class provides methods for object
57 * construction and destruction, property access methods, and signal
58 * support. Signals are described in detail in <xref
59 * linkend="gobject-Signals"/>.
61 * <para id="floating-ref">
62 * #GInitiallyUnowned is derived from #GObject. The only difference between
63 * the two is that the initial reference of a #GInitiallyUnowned is flagged
64 * as a <firstterm>floating</firstterm> reference.
65 * This means that it is not specifically claimed to be "owned" by
66 * any code portion. The main motivation for providing floating references is
67 * C convenience. In particular, it allows code to be written as:
69 * container = create_container();
70 * container_add_child (container, create_child());
72 * If <function>container_add_child()</function> will g_object_ref_sink() the
73 * passed in child, no reference of the newly created child is leaked.
74 * Without floating references, <function>container_add_child()</function>
75 * can only g_object_ref() the new child, so to implement this code without
76 * reference leaks, it would have to be written as:
79 * container = create_container();
80 * child = create_child();
81 * container_add_child (container, child);
82 * g_object_unref (child);
84 * The floating reference can be converted into
85 * an ordinary reference by calling g_object_ref_sink().
86 * For already sunken objects (objects that don't have a floating reference
87 * anymore), g_object_ref_sink() is equivalent to g_object_ref() and returns
89 * Since floating references are useful almost exclusively for C convenience,
90 * language bindings that provide automated reference and memory ownership
91 * maintenance (such as smart pointers or garbage collection) therefore don't
92 * need to expose floating references in their API.
95 * Some object implementations may need to save an objects floating state
96 * across certain code portions (an example is #GtkMenu), to achive this, the
97 * following sequence can be used:
100 * // save floating state
101 * gboolean was_floating = g_object_is_floating (object);
102 * g_object_ref_sink (object);
103 * // protected code portion
105 * // restore floating state
107 * g_object_force_floating (object);
108 * g_obejct_unref (object); // release previously acquired reference
114 #define PARAM_SPEC_PARAM_ID(pspec) ((pspec)->param_id)
115 #define PARAM_SPEC_SET_PARAM_ID(pspec, id) ((pspec)->param_id = (id))
117 #define OBJECT_HAS_TOGGLE_REF_FLAG 0x1
118 #define OBJECT_HAS_TOGGLE_REF(object) \
119 ((G_DATALIST_GET_FLAGS (&(object)->qdata) & OBJECT_HAS_TOGGLE_REF_FLAG) != 0)
120 #define OBJECT_FLOATING_FLAG 0x2
123 /* --- signals --- */
130 /* --- properties --- */
136 /* --- prototypes --- */
137 static void g_object_base_class_init (GObjectClass *class);
138 static void g_object_base_class_finalize (GObjectClass *class);
139 static void g_object_do_class_init (GObjectClass *class);
140 static void g_object_init (GObject *object);
141 static GObject* g_object_constructor (GType type,
142 guint n_construct_properties,
143 GObjectConstructParam *construct_params);
144 static void g_object_real_dispose (GObject *object);
145 static void g_object_finalize (GObject *object);
146 static void g_object_do_set_property (GObject *object,
150 static void g_object_do_get_property (GObject *object,
154 static void g_value_object_init (GValue *value);
155 static void g_value_object_free_value (GValue *value);
156 static void g_value_object_copy_value (const GValue *src_value,
158 static void g_value_object_transform_value (const GValue *src_value,
160 static gpointer g_value_object_peek_pointer (const GValue *value);
161 static gchar* g_value_object_collect_value (GValue *value,
162 guint n_collect_values,
163 GTypeCValue *collect_values,
164 guint collect_flags);
165 static gchar* g_value_object_lcopy_value (const GValue *value,
166 guint n_collect_values,
167 GTypeCValue *collect_values,
168 guint collect_flags);
169 static void g_object_dispatch_properties_changed (GObject *object,
171 GParamSpec **pspecs);
172 static inline void object_get_property (GObject *object,
175 static inline void object_set_property (GObject *object,
178 GObjectNotifyQueue *nqueue);
180 guint object_floating_flag_handler (GObject *object,
183 static guint object_floating_flag_handler (GObject *object,
185 #endif /* EMULATOR */
186 static void object_interface_check_properties (gpointer func_data,
190 /* --- variables --- */
193 PLS(quark_closure_array,gobject,GQuark)
194 PLS(quark_weak_refs,gobject,GQuark)
195 PLS(quark_toggle_refs,gobject,GQuark)
196 PLS(pspec_pool,gobject,GParamSpecPool *)
197 PLS(property_notify_context,gobject,GObjectNotifyContext)
198 PLS_ARRAY(gobject_signals,gobject,gulong)
199 PLS_MACRO(construction_mutex,gobject,GStaticMutex)
200 PLS(construction_objects,gobject,GSList *)
201 PLS(floating_flag_handler,gobject,function_type)
203 #define quark_closure_array (*FUNCTION_NAME(quark_closure_array,gobject)())
204 #define quark_weak_refs (*FUNCTION_NAME(quark_weak_refs,gobject)())
205 #define quark_toggle_refs (*FUNCTION_NAME(quark_toggle_refs,gobject)())
206 #define pspec_pool (*FUNCTION_NAME(pspec_pool,gobject)())
207 #define property_notify_context (*FUNCTION_NAME(property_notify_context,gobject)())
208 #define gobject_signals (FUNCTION_NAME(gobject_signals,gobject)())
209 #define g__construction_mutex_lock (*FUNCTION_NAME_MACRO(construction_mutex,gobject)())
210 #define construction_objects (*FUNCTION_NAME(construction_objects,gobject)())
211 #define floating_flag_handler (*FUNCTION_NAME(floating_flag_handler,gobject)())
215 static GQuark quark_closure_array = 0;
216 static GQuark quark_weak_refs = 0;
217 static GQuark quark_toggle_refs = 0;
218 static GParamSpecPool *pspec_pool = NULL;
219 static GObjectNotifyContext property_notify_context = { 0, };
220 static gulong gobject_signals[LAST_SIGNAL] = { 0, };
221 static guint (*floating_flag_handler) (GObject*, gint) = object_floating_flag_handler;
222 G_LOCK_DEFINE_STATIC (construction_mutex);
223 static GSList *construction_objects = NULL;
225 #endif /* EMULATOR */
227 /* --- functions --- */
228 #ifdef G_ENABLE_DEBUG
229 #define IF_DEBUG(debug_type) if (_g_type_debug_flags & G_TYPE_DEBUG_ ## debug_type)
232 PLS_MACRO(debug_objects,gobject,GStaticMutex)
233 PLS(g_trap_object_ref,gobject,volatile GObject *)
234 PLS(debug_objects_count,gobject,guint)
235 PLS(debug_objects_ht,gobject,GHashTable *)
237 #define g__debug_objects_lock (*FUNCTION_NAME_MACRO(debug_objects,gobject)())
238 #define g_trap_object_ref (*FUNCTION_NAME(g_trap_object_ref,gobject)())
239 #define debug_objects_count (*FUNCTION_NAME(debug_objects_count,gobject)())
240 #define debug_objects_ht (*FUNCTION_NAME(debug_objects_ht,gobject)())
245 G_LOCK_DEFINE_STATIC (debug_objects);
246 static volatile GObject *g_trap_object_ref = NULL;
247 static guint debug_objects_count = 0;
248 static GHashTable *debug_objects_ht = NULL;
249 #endif /* EMULATOR */
251 debug_objects_foreach (gpointer key,
255 GObject *object = value;
257 g_message ("[%p] stale %s\tref_count=%u",
259 G_OBJECT_TYPE_NAME (object),
264 debug_objects_atexit (void)
268 G_LOCK (debug_objects);
269 g_message ("stale GObjects: %u", debug_objects_count);
270 g_hash_table_foreach (debug_objects_ht, debug_objects_foreach, NULL);
271 G_UNLOCK (debug_objects);
274 #endif /* G_ENABLE_DEBUG */
278 PLS(initialized ,g_object_type_init,gboolean)
279 PLS(info ,g_object_type_init,GTypeInfo)
281 #define initialized (*FUNCTION_NAME(initialized ,g_object_type_init)())
282 #define info (*FUNCTION_NAME(info ,g_object_type_init)())
284 const GTypeInfo gobject_info = {
285 sizeof (GObjectClass),
286 (GBaseInitFunc) g_object_base_class_init,
287 (GBaseFinalizeFunc) g_object_base_class_finalize,
288 (GClassInitFunc) g_object_do_class_init,
289 NULL /* class_destroy */,
290 NULL /* class_data */,
293 (GInstanceInitFunc) g_object_init,
294 NULL, /* value_table */
298 #endif /* EMULATOR */
301 g_object_type_init (void)
304 static gboolean initialized = FALSE;
305 #endif /* EMULATOR */
306 static const GTypeFundamentalInfo finfo = {
307 G_TYPE_FLAG_CLASSED | G_TYPE_FLAG_INSTANTIATABLE | G_TYPE_FLAG_DERIVABLE | G_TYPE_FLAG_DEEP_DERIVABLE,
310 static GTypeInfo info = {
311 sizeof (GObjectClass),
312 (GBaseInitFunc) g_object_base_class_init,
313 (GBaseFinalizeFunc) g_object_base_class_finalize,
314 (GClassInitFunc) g_object_do_class_init,
315 NULL /* class_destroy */,
316 NULL /* class_data */,
319 (GInstanceInitFunc) g_object_init,
320 NULL, /* value_table */
322 #endif /* EMULATOR */
323 static const GTypeValueTable value_table = {
324 g_value_object_init, /* value_init */
325 g_value_object_free_value, /* value_free */
326 g_value_object_copy_value, /* value_copy */
327 g_value_object_peek_pointer, /* value_peek_pointer */
328 "p", /* collect_format */
329 g_value_object_collect_value, /* collect_value */
330 "p", /* lcopy_format */
331 g_value_object_lcopy_value, /* lcopy_value */
335 g_return_if_fail (initialized == FALSE);
340 info.value_table = &value_table;
341 type = g_type_register_fundamental (G_TYPE_OBJECT, g_intern_static_string ("GObject"), &info, &finfo, 0);
342 g_assert (type == G_TYPE_OBJECT);
343 g_value_register_transform_func (G_TYPE_OBJECT, G_TYPE_OBJECT, g_value_object_transform_value);
345 #ifdef G_ENABLE_DEBUG
348 debug_objects_ht = g_hash_table_new (g_direct_hash, NULL);
349 g_atexit (debug_objects_atexit);
351 #endif /* G_ENABLE_DEBUG */
357 #endif /* EMULATOR */
360 g_object_base_class_init (GObjectClass *class)
362 GObjectClass *pclass = g_type_class_peek_parent (class);
364 /* reset instance specific fields and methods that don't get inherited */
365 class->construct_properties = pclass ? g_slist_copy (pclass->construct_properties) : NULL;
366 class->get_property = NULL;
367 class->set_property = NULL;
371 g_object_base_class_finalize (GObjectClass *class)
375 _g_signals_destroy (G_OBJECT_CLASS_TYPE (class));
377 g_slist_free (class->construct_properties);
378 class->construct_properties = NULL;
379 list = g_param_spec_pool_list_owned (pspec_pool, G_OBJECT_CLASS_TYPE (class));
380 for (node = list; node; node = node->next)
382 GParamSpec *pspec = node->data;
384 g_param_spec_pool_remove (pspec_pool, pspec);
385 PARAM_SPEC_SET_PARAM_ID (pspec, 0);
386 g_param_spec_unref (pspec);
392 g_object_notify_dispatcher (GObject *object,
396 G_OBJECT_GET_CLASS (object)->dispatch_properties_changed (object, n_pspecs, pspecs);
400 g_object_do_class_init (GObjectClass *class)
402 /* read the comment about typedef struct CArray; on why not to change this quark */
403 quark_closure_array = g_quark_from_static_string ("GObject-closure-array");
405 quark_weak_refs = g_quark_from_static_string ("GObject-weak-references");
406 quark_toggle_refs = g_quark_from_static_string ("GObject-toggle-references");
407 pspec_pool = g_param_spec_pool_new (TRUE);
408 property_notify_context.quark_notify_queue = g_quark_from_static_string ("GObject-notify-queue");
409 property_notify_context.dispatcher = g_object_notify_dispatcher;
411 class->constructor = g_object_constructor;
412 class->set_property = g_object_do_set_property;
413 class->get_property = g_object_do_get_property;
414 class->dispose = g_object_real_dispose;
415 class->finalize = g_object_finalize;
416 class->dispatch_properties_changed = g_object_dispatch_properties_changed;
417 class->notify = NULL;
421 * @gobject: the object which received the signal.
422 * @pspec: the #GParamSpec of the property which changed.
424 * The notify signal is emitted on an object when one of its
425 * properties has been changed. Note that getting this signal
426 * doesn't guarantee that the value of the property has actually
427 * changed, it may also be emitted when the setter for the property
428 * is called to reinstate the previous value.
430 * This signal is typically used to obtain change notification for a
431 * single property, by specifying the property name as a detail in the
432 * g_signal_connect() call, like this:
434 * g_signal_connect (text_view->buffer, "notify::paste-target-list",
435 * G_CALLBACK (gtk_text_view_target_list_notify),
438 * It is important to note that you must use
439 * <link linkend="canonical-parameter-name">canonical</link> parameter names as
440 * detail strings for the notify signal.
442 gobject_signals[NOTIFY] =
443 g_signal_new (g_intern_static_string ("notify"),
444 G_TYPE_FROM_CLASS (class),
445 G_SIGNAL_RUN_FIRST | G_SIGNAL_NO_RECURSE | G_SIGNAL_DETAILED | G_SIGNAL_NO_HOOKS | G_SIGNAL_ACTION,
446 G_STRUCT_OFFSET (GObjectClass, notify),
448 g_cclosure_marshal_VOID__PARAM,
452 /* Install a check function that we'll use to verify that classes that
453 * implement an interface implement all properties for that interface
455 g_type_add_interface_check (NULL, object_interface_check_properties);
459 install_property_internal (GType g_type,
463 if (g_param_spec_pool_lookup (pspec_pool, pspec->name, g_type, FALSE))
465 g_warning ("When installing property: type `%s' already has a property named `%s'",
466 g_type_name (g_type),
471 g_param_spec_ref (pspec);
472 g_param_spec_sink (pspec);
473 PARAM_SPEC_SET_PARAM_ID (pspec, property_id);
474 g_param_spec_pool_insert (pspec_pool, pspec, g_type);
478 * g_object_class_install_property:
479 * @oclass: a #GObjectClass
480 * @property_id: the id for the new property
481 * @pspec: the #GParamSpec for the new property
483 * Installs a new property. This is usually done in the class initializer.
485 * Note that it is possible to redefine a property in a derived class,
486 * by installing a property with the same name. This can be useful at times,
487 * e.g. to change the range of allowed values or the default value.
490 g_object_class_install_property (GObjectClass *class,
494 g_return_if_fail (G_IS_OBJECT_CLASS (class));
495 g_return_if_fail (G_IS_PARAM_SPEC (pspec));
496 if (pspec->flags & G_PARAM_WRITABLE)
497 g_return_if_fail (class->set_property != NULL);
498 if (pspec->flags & G_PARAM_READABLE)
499 g_return_if_fail (class->get_property != NULL);
500 g_return_if_fail (property_id > 0);
501 g_return_if_fail (PARAM_SPEC_PARAM_ID (pspec) == 0); /* paranoid */
502 if (pspec->flags & G_PARAM_CONSTRUCT)
503 g_return_if_fail ((pspec->flags & G_PARAM_CONSTRUCT_ONLY) == 0);
504 if (pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
505 g_return_if_fail (pspec->flags & G_PARAM_WRITABLE);
507 install_property_internal (G_OBJECT_CLASS_TYPE (class), property_id, pspec);
509 if (pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
510 class->construct_properties = g_slist_prepend (class->construct_properties, pspec);
512 /* for property overrides of construct poperties, we have to get rid
513 * of the overidden inherited construct property
515 pspec = g_param_spec_pool_lookup (pspec_pool, pspec->name, g_type_parent (G_OBJECT_CLASS_TYPE (class)), TRUE);
516 if (pspec && pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
517 class->construct_properties = g_slist_remove (class->construct_properties, pspec);
521 * g_object_interface_install_property:
522 * @g_iface: any interface vtable for the interface, or the default
523 * vtable for the interface.
524 * @pspec: the #GParamSpec for the new property
526 * Add a property to an interface; this is only useful for interfaces
527 * that are added to GObject-derived types. Adding a property to an
528 * interface forces all objects classes with that interface to have a
529 * compatible property. The compatible property could be a newly
530 * created #GParamSpec, but normally
531 * g_object_class_override_property() will be used so that the object
532 * class only needs to provide an implementation and inherits the
533 * property description, default value, bounds, and so forth from the
534 * interface property.
536 * This function is meant to be called from the interface's default
537 * vtable initialization function (the @class_init member of
538 * #GTypeInfo.) It must not be called after after @class_init has
539 * been called for any object types implementing this interface.
544 g_object_interface_install_property (gpointer g_iface,
547 GTypeInterface *iface_class = g_iface;
549 g_return_if_fail (G_TYPE_IS_INTERFACE (iface_class->g_type));
550 g_return_if_fail (G_IS_PARAM_SPEC (pspec));
551 g_return_if_fail (!G_IS_PARAM_SPEC_OVERRIDE (pspec)); /* paranoid */
552 g_return_if_fail (PARAM_SPEC_PARAM_ID (pspec) == 0); /* paranoid */
554 install_property_internal (iface_class->g_type, 0, pspec);
558 * g_object_class_find_property:
559 * @oclass: a #GObjectClass
560 * @property_name: the name of the property to look up
562 * Looks up the #GParamSpec for a property of a class.
564 * Returns: the #GParamSpec for the property, or %NULL if the class
565 * doesn't have a property of that name
568 g_object_class_find_property (GObjectClass *class,
569 const gchar *property_name)
572 GParamSpec *redirect;
574 g_return_val_if_fail (G_IS_OBJECT_CLASS (class), NULL);
575 g_return_val_if_fail (property_name != NULL, NULL);
577 pspec = g_param_spec_pool_lookup (pspec_pool,
579 G_OBJECT_CLASS_TYPE (class),
583 redirect = g_param_spec_get_redirect_target (pspec);
594 * g_object_interface_find_property:
595 * @g_iface: any interface vtable for the interface, or the default
596 * vtable for the interface
597 * @property_name: name of a property to lookup.
599 * Find the #GParamSpec with the given name for an
600 * interface. Generally, the interface vtable passed in as @g_iface
601 * will be the default vtable from g_type_default_interface_ref(), or,
602 * if you know the interface has already been loaded,
603 * g_type_default_interface_peek().
607 * Returns: the #GParamSpec for the property of the interface with the
608 * name @property_name, or %NULL if no such property exists.
611 g_object_interface_find_property (gpointer g_iface,
612 const gchar *property_name)
614 GTypeInterface *iface_class = g_iface;
616 g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface_class->g_type), NULL);
617 g_return_val_if_fail (property_name != NULL, NULL);
619 return g_param_spec_pool_lookup (pspec_pool,
626 * g_object_class_override_property:
627 * @oclass: a #GObjectClass
628 * @property_id: the new property ID
629 * @name: the name of a property registered in a parent class or
630 * in an interface of this class.
632 * Registers @property_id as referring to a property with the
633 * name @name in a parent class or in an interface implemented
634 * by @oclass. This allows this class to <firstterm>override</firstterm>
635 * a property implementation in a parent class or to provide
636 * the implementation of a property from an interface.
639 * Internally, overriding is implemented by creating a property of type
640 * #GParamSpecOverride; generally operations that query the properties of
641 * the object class, such as g_object_class_find_property() or
642 * g_object_class_list_properties() will return the overridden
643 * property. However, in one case, the @construct_properties argument of
644 * the @constructor virtual function, the #GParamSpecOverride is passed
645 * instead, so that the @param_id field of the #GParamSpec will be
646 * correct. For virtually all uses, this makes no difference. If you
647 * need to get the overridden property, you can call
648 * g_param_spec_get_redirect_target().
654 g_object_class_override_property (GObjectClass *oclass,
658 GParamSpec *overridden = NULL;
662 g_return_if_fail (G_IS_OBJECT_CLASS (oclass));
663 g_return_if_fail (property_id > 0);
664 g_return_if_fail (name != NULL);
666 /* Find the overridden property; first check parent types
668 parent_type = g_type_parent (G_OBJECT_CLASS_TYPE (oclass));
669 if (parent_type != G_TYPE_NONE)
670 overridden = g_param_spec_pool_lookup (pspec_pool,
679 /* Now check interfaces
681 ifaces = g_type_interfaces (G_OBJECT_CLASS_TYPE (oclass), &n_ifaces);
682 while (n_ifaces-- && !overridden)
684 overridden = g_param_spec_pool_lookup (pspec_pool,
695 g_warning ("%s: Can't find property to override for '%s::%s'",
696 G_STRFUNC, G_OBJECT_CLASS_NAME (oclass), name);
700 new = g_param_spec_override (name, overridden);
701 g_object_class_install_property (oclass, property_id, new);
705 * g_object_class_list_properties:
706 * @oclass: a #GObjectClass
707 * @n_properties: return location for the length of the returned array
709 * Get an array of #GParamSpec* for all properties of a class.
711 * Returns: an array of #GParamSpec* which should be freed after use
713 EXPORT_C GParamSpec** /* free result */
714 g_object_class_list_properties (GObjectClass *class,
715 guint *n_properties_p)
720 g_return_val_if_fail (G_IS_OBJECT_CLASS (class), NULL);
722 pspecs = g_param_spec_pool_list (pspec_pool,
723 G_OBJECT_CLASS_TYPE (class),
732 * g_object_interface_list_properties:
733 * @g_iface: any interface vtable for the interface, or the default
734 * vtable for the interface
735 * @n_properties_p: location to store number of properties returned.
737 * Lists the properties of an interface.Generally, the interface
738 * vtable passed in as @g_iface will be the default vtable from
739 * g_type_default_interface_ref(), or, if you know the interface has
740 * already been loaded, g_type_default_interface_peek().
744 * Returns: a pointer to an array of pointers to #GParamSpec
745 * structures. The paramspecs are owned by GLib, but the
746 * array should be freed with g_free() when you are done with
749 EXPORT_C GParamSpec** /* free result */
750 g_object_interface_list_properties (gpointer g_iface,
751 guint *n_properties_p)
753 GTypeInterface *iface_class = g_iface;
757 g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface_class->g_type), NULL);
759 pspecs = g_param_spec_pool_list (pspec_pool,
769 g_object_init (GObject *object)
771 object->ref_count = 1;
772 g_datalist_init (&object->qdata);
774 /* freeze object's notification queue, g_object_newv() preserves pairedness */
775 g_object_notify_queue_freeze (object, &property_notify_context);
776 /* enter construction list for notify_queue_thaw() and to allow construct-only properties */
777 G_LOCK (construction_mutex);
778 construction_objects = g_slist_prepend (construction_objects, object);
779 G_UNLOCK (construction_mutex);
781 #ifdef G_ENABLE_DEBUG
784 G_LOCK (debug_objects);
785 debug_objects_count++;
786 g_hash_table_insert (debug_objects_ht, object, object);
787 G_UNLOCK (debug_objects);
789 #endif /* G_ENABLE_DEBUG */
793 g_object_do_set_property (GObject *object,
801 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
807 g_object_do_get_property (GObject *object,
815 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
821 g_object_real_dispose (GObject *object)
823 g_signal_handlers_destroy (object);
824 g_datalist_id_set_data (&object->qdata, quark_closure_array, NULL);
825 g_datalist_id_set_data (&object->qdata, quark_weak_refs, NULL);
829 g_object_finalize (GObject *object)
831 g_datalist_clear (&object->qdata);
833 #ifdef G_ENABLE_DEBUG
836 G_LOCK (debug_objects);
837 g_assert (g_hash_table_lookup (debug_objects_ht, object) == object);
838 g_hash_table_remove (debug_objects_ht, object);
839 debug_objects_count--;
840 G_UNLOCK (debug_objects);
842 #endif /* G_ENABLE_DEBUG */
847 g_object_dispatch_properties_changed (GObject *object,
853 for (i = 0; i < n_pspecs; i++)
854 g_signal_emit (object, gobject_signals[NOTIFY], g_quark_from_string (pspecs[i]->name), pspecs[i]);
858 * g_object_run_dispose:
859 * @object: a #GObject
861 * Releases all references to other objects. This can be used to break
864 * This functions should only be called from object system implementations.
867 g_object_run_dispose (GObject *object)
869 g_return_if_fail (G_IS_OBJECT (object));
870 g_return_if_fail (object->ref_count > 0);
872 g_object_ref (object);
873 G_OBJECT_GET_CLASS (object)->dispose (object);
874 g_object_unref (object);
878 * g_object_freeze_notify:
879 * @object: a #GObject
881 * Increases the freeze count on @object. If the freeze count is
882 * non-zero, the emission of "notify" signals on @object is
883 * stopped. The signals are queued until the freeze count is decreased
886 * This is necessary for accessors that modify multiple properties to prevent
887 * premature notification while the object is still being modified.
890 g_object_freeze_notify (GObject *object)
892 g_return_if_fail (G_IS_OBJECT (object));
894 if (g_atomic_int_get (&object->ref_count) == 0)
897 g_object_ref (object);
898 g_object_notify_queue_freeze (object, &property_notify_context);
899 g_object_unref (object);
904 * @object: a #GObject
905 * @property_name: the name of a property installed on the class of @object.
907 * Emits a "notify" signal for the property @property_name on @object.
910 g_object_notify (GObject *object,
911 const gchar *property_name)
915 g_return_if_fail (G_IS_OBJECT (object));
916 g_return_if_fail (property_name != NULL);
917 if (g_atomic_int_get (&object->ref_count) == 0)
920 g_object_ref (object);
921 /* We don't need to get the redirect target
922 * (by, e.g. calling g_object_class_find_property())
923 * because g_object_notify_queue_add() does that
925 pspec = g_param_spec_pool_lookup (pspec_pool,
927 G_OBJECT_TYPE (object),
931 g_warning ("%s: object class `%s' has no property named `%s'",
933 G_OBJECT_TYPE_NAME (object),
937 GObjectNotifyQueue *nqueue;
939 nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
940 g_object_notify_queue_add (object, nqueue, pspec);
941 g_object_notify_queue_thaw (object, nqueue);
943 g_object_unref (object);
947 * g_object_thaw_notify:
948 * @object: a #GObject
950 * Reverts the effect of a previous call to
951 * g_object_freeze_notify(). The freeze count is decreased on @object
952 * and when it reaches zero, all queued "notify" signals are emitted.
954 * It is an error to call this function when the freeze count is zero.
957 g_object_thaw_notify (GObject *object)
959 GObjectNotifyQueue *nqueue;
961 g_return_if_fail (G_IS_OBJECT (object));
962 if (g_atomic_int_get (&object->ref_count) == 0)
965 g_object_ref (object);
966 nqueue = g_object_notify_queue_from_object (object, &property_notify_context);
967 if (!nqueue || !nqueue->freeze_count)
968 g_warning ("%s: property-changed notification for %s(%p) is not frozen",
969 G_STRFUNC, G_OBJECT_TYPE_NAME (object), object);
971 g_object_notify_queue_thaw (object, nqueue);
972 g_object_unref (object);
976 object_get_property (GObject *object,
980 GObjectClass *class = g_type_class_peek (pspec->owner_type);
981 guint param_id = PARAM_SPEC_PARAM_ID (pspec);
982 GParamSpec *redirect;
984 redirect = g_param_spec_get_redirect_target (pspec);
988 class->get_property (object, param_id, value, pspec);
992 object_set_property (GObject *object,
995 GObjectNotifyQueue *nqueue)
997 GValue tmp_value = { 0, };
998 GObjectClass *class = g_type_class_peek (pspec->owner_type);
999 guint param_id = PARAM_SPEC_PARAM_ID (pspec);
1000 GParamSpec *redirect;
1002 redirect = g_param_spec_get_redirect_target (pspec);
1006 /* provide a copy to work from, convert (if necessary) and validate */
1007 g_value_init (&tmp_value, G_PARAM_SPEC_VALUE_TYPE (pspec));
1008 if (!g_value_transform (value, &tmp_value))
1009 g_warning ("unable to set property `%s' of type `%s' from value of type `%s'",
1011 g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)),
1012 G_VALUE_TYPE_NAME (value));
1013 else if (g_param_value_validate (pspec, &tmp_value) && !(pspec->flags & G_PARAM_LAX_VALIDATION))
1015 gchar *contents = g_strdup_value_contents (value);
1017 g_warning ("value \"%s\" of type `%s' is invalid or out of range for property `%s' of type `%s'",
1019 G_VALUE_TYPE_NAME (value),
1021 g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)));
1026 class->set_property (object, param_id, &tmp_value, pspec);
1027 g_object_notify_queue_add (object, nqueue, pspec);
1029 g_value_unset (&tmp_value);
1033 object_interface_check_properties (gpointer func_data,
1036 GTypeInterface *iface_class = g_iface;
1037 GObjectClass *class = g_type_class_peek (iface_class->g_instance_type);
1038 GType iface_type = iface_class->g_type;
1039 GParamSpec **pspecs;
1042 if (!G_IS_OBJECT_CLASS (class))
1045 pspecs = g_param_spec_pool_list (pspec_pool, iface_type, &n);
1049 GParamSpec *class_pspec = g_param_spec_pool_lookup (pspec_pool,
1051 G_OBJECT_CLASS_TYPE (class),
1056 g_critical ("Object class %s doesn't implement property "
1057 "'%s' from interface '%s'",
1058 g_type_name (G_OBJECT_CLASS_TYPE (class)),
1060 g_type_name (iface_type));
1065 /* The implementation paramspec must have a less restrictive
1066 * type than the interface parameter spec for set() and a
1067 * more restrictive type for get(). We just require equality,
1068 * rather than doing something more complicated checking
1069 * the READABLE and WRITABLE flags. We also simplify here
1070 * by only checking the value type, not the G_PARAM_SPEC_TYPE.
1073 !g_type_is_a (G_PARAM_SPEC_VALUE_TYPE (pspecs[n]),
1074 G_PARAM_SPEC_VALUE_TYPE (class_pspec)))
1076 g_critical ("Property '%s' on class '%s' has type '%s' "
1077 "which is different from the type '%s', "
1078 "of the property on interface '%s'\n",
1080 g_type_name (G_OBJECT_CLASS_TYPE (class)),
1081 g_type_name (G_PARAM_SPEC_VALUE_TYPE (class_pspec)),
1082 g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspecs[n])),
1083 g_type_name (iface_type));
1086 #define SUBSET(a,b,mask) (((a) & ~(b) & (mask)) == 0)
1088 /* CONSTRUCT and CONSTRUCT_ONLY add restrictions.
1089 * READABLE and WRITABLE remove restrictions. The implementation
1090 * paramspec must have less restrictive flags.
1093 (!SUBSET (class_pspec->flags,
1095 G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY) ||
1096 !SUBSET (pspecs[n]->flags,
1098 G_PARAM_READABLE | G_PARAM_WRITABLE)))
1100 g_critical ("Flags for property '%s' on class '%s' "
1101 "are not compatible with the property on"
1104 g_type_name (G_OBJECT_CLASS_TYPE (class)),
1105 g_type_name (iface_type));
1114 g_object_get_type (void)
1116 return G_TYPE_OBJECT;
1121 * @object_type: the type id of the #GObject subtype to instantiate
1122 * @first_property_name: the name of the first property
1123 * @...: the value of the first property, followed optionally by more
1124 * name/value pairs, followed by %NULL
1126 * Creates a new instance of a #GObject subtype and sets its properties.
1128 * Construction parameters (see #G_PARAM_CONSTRUCT, #G_PARAM_CONSTRUCT_ONLY)
1129 * which are not explicitly specified are set to their default values.
1131 * Returns: a new instance of @object_type
1134 g_object_new (GType object_type,
1135 const gchar *first_property_name,
1141 g_return_val_if_fail (G_TYPE_IS_OBJECT (object_type), NULL);
1143 va_start (var_args, first_property_name);
1144 object = g_object_new_valist (object_type, first_property_name, var_args);
1151 slist_maybe_remove (GSList **slist,
1154 GSList *last = NULL, *node = *slist;
1157 if (node->data == data)
1160 last->next = node->next;
1162 *slist = node->next;
1163 g_slist_free_1 (node);
1172 static inline gboolean
1173 object_in_construction_list (GObject *object)
1175 gboolean in_construction;
1176 G_LOCK (construction_mutex);
1177 in_construction = g_slist_find (construction_objects, object) != NULL;
1178 G_UNLOCK (construction_mutex);
1179 return in_construction;
1184 * @object_type: the type id of the #GObject subtype to instantiate
1185 * @n_parameters: the length of the @parameters array
1186 * @parameters: an array of #GParameter
1188 * Creates a new instance of a #GObject subtype and sets its properties.
1190 * Construction parameters (see #G_PARAM_CONSTRUCT, #G_PARAM_CONSTRUCT_ONLY)
1191 * which are not explicitly specified are set to their default values.
1193 * Returns: a new instance of @object_type
1196 g_object_newv (GType object_type,
1198 GParameter *parameters)
1200 GObjectConstructParam *cparams, *oparams;
1201 GObjectNotifyQueue *nqueue = NULL; /* shouldn't be initialized, just to silence compiler */
1203 GObjectClass *class, *unref_class = NULL;
1205 guint n_total_cparams = 0, n_cparams = 0, n_oparams = 0, n_cvalues;
1207 GList *clist = NULL;
1208 gboolean newly_constructed;
1211 g_return_val_if_fail (G_TYPE_IS_OBJECT (object_type), NULL);
1213 class = g_type_class_peek_static (object_type);
1215 class = unref_class = g_type_class_ref (object_type);
1216 for (slist = class->construct_properties; slist; slist = slist->next)
1218 clist = g_list_prepend (clist, slist->data);
1219 n_total_cparams += 1;
1222 /* collect parameters, sort into construction and normal ones */
1223 oparams = g_new (GObjectConstructParam, n_parameters);
1224 cparams = g_new (GObjectConstructParam, n_total_cparams);
1225 for (i = 0; i < n_parameters; i++)
1227 GValue *value = ¶meters[i].value;
1228 GParamSpec *pspec = g_param_spec_pool_lookup (pspec_pool,
1234 g_warning ("%s: object class `%s' has no property named `%s'",
1236 g_type_name (object_type),
1237 parameters[i].name);
1240 if (!(pspec->flags & G_PARAM_WRITABLE))
1242 g_warning ("%s: property `%s' of object class `%s' is not writable",
1245 g_type_name (object_type));
1248 if (pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
1250 GList *list = g_list_find (clist, pspec);
1254 g_warning ("%s: construct property \"%s\" for object `%s' can't be set twice",
1255 G_STRFUNC, pspec->name, g_type_name (object_type));
1258 cparams[n_cparams].pspec = pspec;
1259 cparams[n_cparams].value = value;
1264 list->prev->next = list->next;
1266 list->next->prev = list->prev;
1267 g_list_free_1 (list);
1271 oparams[n_oparams].pspec = pspec;
1272 oparams[n_oparams].value = value;
1277 /* set remaining construction properties to default values */
1278 n_cvalues = n_total_cparams - n_cparams;
1279 cvalues = g_new (GValue, n_cvalues);
1282 GList *tmp = clist->next;
1283 GParamSpec *pspec = clist->data;
1284 GValue *value = cvalues + n_total_cparams - n_cparams - 1;
1287 g_value_init (value, G_PARAM_SPEC_VALUE_TYPE (pspec));
1288 g_param_value_set_default (pspec, value);
1290 cparams[n_cparams].pspec = pspec;
1291 cparams[n_cparams].value = value;
1294 g_list_free_1 (clist);
1298 /* construct object from construction parameters */
1299 object = class->constructor (object_type, n_total_cparams, cparams);
1300 /* free construction values */
1303 g_value_unset (cvalues + n_cvalues);
1306 /* adjust freeze_count according to g_object_init() and remaining properties */
1307 G_LOCK (construction_mutex);
1308 newly_constructed = slist_maybe_remove (&construction_objects, object);
1309 G_UNLOCK (construction_mutex);
1310 if (newly_constructed || n_oparams)
1311 nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
1312 if (newly_constructed)
1313 g_object_notify_queue_thaw (object, nqueue);
1315 /* run 'constructed' handler if there is one */
1316 if (newly_constructed && class->constructed)
1317 class->constructed (object);
1319 /* set remaining properties */
1320 for (i = 0; i < n_oparams; i++)
1321 object_set_property (object, oparams[i].pspec, oparams[i].value, nqueue);
1324 /* release our own freeze count and handle notifications */
1325 if (newly_constructed || n_oparams)
1326 g_object_notify_queue_thaw (object, nqueue);
1329 g_type_class_unref (unref_class);
1335 * g_object_new_valist:
1336 * @object_type: the type id of the #GObject subtype to instantiate
1337 * @first_property_name: the name of the first property
1338 * @var_args: the value of the first property, followed optionally by more
1339 * name/value pairs, followed by %NULL
1341 * Creates a new instance of a #GObject subtype and sets its properties.
1343 * Construction parameters (see #G_PARAM_CONSTRUCT, #G_PARAM_CONSTRUCT_ONLY)
1344 * which are not explicitly specified are set to their default values.
1346 * Returns: a new instance of @object_type
1349 g_object_new_valist (GType object_type,
1350 const gchar *first_property_name,
1353 GObjectClass *class;
1357 guint n_params = 0, n_alloced_params = 16;
1359 g_return_val_if_fail (G_TYPE_IS_OBJECT (object_type), NULL);
1361 if (!first_property_name)
1362 return g_object_newv (object_type, 0, NULL);
1364 class = g_type_class_ref (object_type);
1366 params = g_new (GParameter, n_alloced_params);
1367 name = first_property_name;
1370 gchar *error = NULL;
1371 GParamSpec *pspec = g_param_spec_pool_lookup (pspec_pool,
1377 g_warning ("%s: object class `%s' has no property named `%s'",
1379 g_type_name (object_type),
1383 if (n_params >= n_alloced_params)
1385 n_alloced_params += 16;
1386 params = g_renew (GParameter, params, n_alloced_params);
1388 params[n_params].name = name;
1389 params[n_params].value.g_type = 0;
1390 g_value_init (¶ms[n_params].value, G_PARAM_SPEC_VALUE_TYPE (pspec));
1391 G_VALUE_COLLECT (¶ms[n_params].value, var_args, 0, &error);
1394 g_warning ("%s: %s", G_STRFUNC, error);
1396 g_value_unset (¶ms[n_params].value);
1400 name = va_arg (var_args, gchar*);
1403 object = g_object_newv (object_type, n_params, params);
1406 g_value_unset (¶ms[n_params].value);
1409 g_type_class_unref (class);
1415 g_object_constructor (GType type,
1416 guint n_construct_properties,
1417 GObjectConstructParam *construct_params)
1422 object = (GObject*) g_type_create_instance (type);
1424 /* set construction parameters */
1425 if (n_construct_properties)
1427 GObjectNotifyQueue *nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
1429 /* set construct properties */
1430 while (n_construct_properties--)
1432 GValue *value = construct_params->value;
1433 GParamSpec *pspec = construct_params->pspec;
1436 object_set_property (object, pspec, value, nqueue);
1438 g_object_notify_queue_thaw (object, nqueue);
1439 /* the notification queue is still frozen from g_object_init(), so
1440 * we don't need to handle it here, g_object_newv() takes
1449 * g_object_set_valist:
1450 * @object: a #GObject
1451 * @first_property_name: name of the first property to set
1452 * @var_args: value for the first property, followed optionally by more
1453 * name/value pairs, followed by %NULL
1455 * Sets properties on an object.
1458 g_object_set_valist (GObject *object,
1459 const gchar *first_property_name,
1462 GObjectNotifyQueue *nqueue;
1465 g_return_if_fail (G_IS_OBJECT (object));
1467 g_object_ref (object);
1468 nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
1470 name = first_property_name;
1473 GValue value = { 0, };
1475 gchar *error = NULL;
1477 pspec = g_param_spec_pool_lookup (pspec_pool,
1479 G_OBJECT_TYPE (object),
1483 g_warning ("%s: object class `%s' has no property named `%s'",
1485 G_OBJECT_TYPE_NAME (object),
1489 if (!(pspec->flags & G_PARAM_WRITABLE))
1491 g_warning ("%s: property `%s' of object class `%s' is not writable",
1494 G_OBJECT_TYPE_NAME (object));
1497 if ((pspec->flags & G_PARAM_CONSTRUCT_ONLY) && !object_in_construction_list (object))
1499 g_warning ("%s: construct property \"%s\" for object `%s' can't be set after construction",
1500 G_STRFUNC, pspec->name, G_OBJECT_TYPE_NAME (object));
1504 g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
1506 G_VALUE_COLLECT (&value, var_args, 0, &error);
1509 g_warning ("%s: %s", G_STRFUNC, error);
1511 g_value_unset (&value);
1515 object_set_property (object, pspec, &value, nqueue);
1516 g_value_unset (&value);
1518 name = va_arg (var_args, gchar*);
1521 g_object_notify_queue_thaw (object, nqueue);
1522 g_object_unref (object);
1526 * g_object_get_valist:
1527 * @object: a #GObject
1528 * @first_property_name: name of the first property to get
1529 * @var_args: return location for the first property, followed optionally by more
1530 * name/return location pairs, followed by %NULL
1532 * Gets properties of an object.
1534 * In general, a copy is made of the property contents and the caller
1535 * is responsible for freeing the memory in the appropriate manner for
1536 * the type, for instance by calling g_free() or g_object_unref().
1538 * See g_object_get().
1541 g_object_get_valist (GObject *object,
1542 const gchar *first_property_name,
1547 g_return_if_fail (G_IS_OBJECT (object));
1549 g_object_ref (object);
1551 name = first_property_name;
1555 GValue value = { 0, };
1559 pspec = g_param_spec_pool_lookup (pspec_pool,
1561 G_OBJECT_TYPE (object),
1565 g_warning ("%s: object class `%s' has no property named `%s'",
1567 G_OBJECT_TYPE_NAME (object),
1571 if (!(pspec->flags & G_PARAM_READABLE))
1573 g_warning ("%s: property `%s' of object class `%s' is not readable",
1576 G_OBJECT_TYPE_NAME (object));
1580 g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
1582 object_get_property (object, pspec, &value);
1584 G_VALUE_LCOPY (&value, var_args, 0, &error);
1587 g_warning ("%s: %s", G_STRFUNC, error);
1589 g_value_unset (&value);
1593 g_value_unset (&value);
1595 name = va_arg (var_args, gchar*);
1598 g_object_unref (object);
1603 * @object: a #GObject
1604 * @first_property_name: name of the first property to set
1605 * @...: value for the first property, followed optionally by more
1606 * name/value pairs, followed by %NULL
1608 * Sets properties on an object.
1611 g_object_set (gpointer _object,
1612 const gchar *first_property_name,
1615 GObject *object = _object;
1618 g_return_if_fail (G_IS_OBJECT (object));
1620 va_start (var_args, first_property_name);
1621 g_object_set_valist (object, first_property_name, var_args);
1627 * @object: a #GObject
1628 * @first_property_name: name of the first property to get
1629 * @...: return location for the first property, followed optionally by more
1630 * name/return location pairs, followed by %NULL
1632 * Gets properties of an object.
1634 * In general, a copy is made of the property contents and the caller
1635 * is responsible for freeing the memory in the appropriate manner for
1636 * the type, for instance by calling g_free() or g_object_unref().
1639 * <title>Using g_object_get(<!-- -->)</title>
1640 * An example of using g_object_get() to get the contents
1641 * of three properties - one of type #G_TYPE_INT,
1642 * one of type #G_TYPE_STRING, and one of type #G_TYPE_OBJECT:
1648 * g_object_get (my_object,
1649 * "int-property", &intval,
1650 * "str-property", &strval,
1651 * "obj-property", &objval,
1654 * // Do something with intval, strval, objval
1657 * g_object_unref (objval);
1662 g_object_get (gpointer _object,
1663 const gchar *first_property_name,
1666 GObject *object = _object;
1669 g_return_if_fail (G_IS_OBJECT (object));
1671 va_start (var_args, first_property_name);
1672 g_object_get_valist (object, first_property_name, var_args);
1677 * g_object_set_property:
1678 * @object: a #GObject
1679 * @property_name: the name of the property to set
1682 * Sets a property on an object.
1685 g_object_set_property (GObject *object,
1686 const gchar *property_name,
1687 const GValue *value)
1689 GObjectNotifyQueue *nqueue;
1692 g_return_if_fail (G_IS_OBJECT (object));
1693 g_return_if_fail (property_name != NULL);
1694 g_return_if_fail (G_IS_VALUE (value));
1696 g_object_ref (object);
1697 nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
1699 pspec = g_param_spec_pool_lookup (pspec_pool,
1701 G_OBJECT_TYPE (object),
1704 g_warning ("%s: object class `%s' has no property named `%s'",
1706 G_OBJECT_TYPE_NAME (object),
1708 else if (!(pspec->flags & G_PARAM_WRITABLE))
1709 g_warning ("%s: property `%s' of object class `%s' is not writable",
1712 G_OBJECT_TYPE_NAME (object));
1713 else if ((pspec->flags & G_PARAM_CONSTRUCT_ONLY) && !object_in_construction_list (object))
1714 g_warning ("%s: construct property \"%s\" for object `%s' can't be set after construction",
1715 G_STRFUNC, pspec->name, G_OBJECT_TYPE_NAME (object));
1717 object_set_property (object, pspec, value, nqueue);
1719 g_object_notify_queue_thaw (object, nqueue);
1720 g_object_unref (object);
1724 * g_object_get_property:
1725 * @object: a #GObject
1726 * @property_name: the name of the property to get
1727 * @value: return location for the property value
1729 * Gets a property of an object.
1731 * In general, a copy is made of the property contents and the caller is
1732 * responsible for freeing the memory by calling g_value_unset().
1734 * Note that g_object_get_property() is really intended for language
1735 * bindings, g_object_get() is much more convenient for C programming.
1738 g_object_get_property (GObject *object,
1739 const gchar *property_name,
1744 g_return_if_fail (G_IS_OBJECT (object));
1745 g_return_if_fail (property_name != NULL);
1746 g_return_if_fail (G_IS_VALUE (value));
1748 g_object_ref (object);
1750 pspec = g_param_spec_pool_lookup (pspec_pool,
1752 G_OBJECT_TYPE (object),
1755 g_warning ("%s: object class `%s' has no property named `%s'",
1757 G_OBJECT_TYPE_NAME (object),
1759 else if (!(pspec->flags & G_PARAM_READABLE))
1760 g_warning ("%s: property `%s' of object class `%s' is not readable",
1763 G_OBJECT_TYPE_NAME (object));
1766 GValue *prop_value, tmp_value = { 0, };
1768 /* auto-conversion of the callers value type
1770 if (G_VALUE_TYPE (value) == G_PARAM_SPEC_VALUE_TYPE (pspec))
1772 g_value_reset (value);
1775 else if (!g_value_type_transformable (G_PARAM_SPEC_VALUE_TYPE (pspec), G_VALUE_TYPE (value)))
1777 g_warning ("%s: can't retrieve property `%s' of type `%s' as value of type `%s'",
1778 G_STRFUNC, pspec->name,
1779 g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)),
1780 G_VALUE_TYPE_NAME (value));
1781 g_object_unref (object);
1786 g_value_init (&tmp_value, G_PARAM_SPEC_VALUE_TYPE (pspec));
1787 prop_value = &tmp_value;
1789 object_get_property (object, pspec, prop_value);
1790 if (prop_value != value)
1792 g_value_transform (prop_value, value);
1793 g_value_unset (&tmp_value);
1797 g_object_unref (object);
1802 * @object: a #GObject
1803 * @signal_spec: the spec for the first signal
1804 * @...: #GCallback for the first signal, followed by data for the
1805 * first signal, followed optionally by more signal
1806 * spec/callback/data triples, followed by %NULL
1808 * A convenience function to connect multiple signals at once.
1810 * The signal specs expected by this function have the form
1811 * "modifier::signal_name", where modifier can be one of the following:
1814 * <term>signal</term>
1816 * equivalent to <literal>g_signal_connect_data (..., NULL, 0)</literal>
1817 * </para></listitem>
1820 * <term>object_signal</term>
1821 * <term>object-signal</term>
1823 * equivalent to <literal>g_signal_connect_object (..., 0)</literal>
1824 * </para></listitem>
1827 * <term>swapped_signal</term>
1828 * <term>swapped-signal</term>
1830 * equivalent to <literal>g_signal_connect_data (..., NULL, G_CONNECT_SWAPPED)</literal>
1831 * </para></listitem>
1834 * <term>swapped_object_signal</term>
1835 * <term>swapped-object-signal</term>
1837 * equivalent to <literal>g_signal_connect_object (..., G_CONNECT_SWAPPED)</literal>
1838 * </para></listitem>
1841 * <term>signal_after</term>
1842 * <term>signal-after</term>
1844 * equivalent to <literal>g_signal_connect_data (..., NULL, G_CONNECT_AFTER)</literal>
1845 * </para></listitem>
1848 * <term>object_signal_after</term>
1849 * <term>object-signal-after</term>
1851 * equivalent to <literal>g_signal_connect_object (..., G_CONNECT_AFTER)</literal>
1852 * </para></listitem>
1855 * <term>swapped_signal_after</term>
1856 * <term>swapped-signal-after</term>
1858 * equivalent to <literal>g_signal_connect_data (..., NULL, G_CONNECT_SWAPPED | G_CONNECT_AFTER)</literal>
1859 * </para></listitem>
1862 * <term>swapped_object_signal_after</term>
1863 * <term>swapped-object-signal-after</term>
1865 * equivalent to <literal>g_signal_connect_object (..., G_CONNECT_SWAPPED | G_CONNECT_AFTER)</literal>
1866 * </para></listitem>
1871 * menu->toplevel = g_object_connect (g_object_new (GTK_TYPE_WINDOW,
1872 * "type", GTK_WINDOW_POPUP,
1875 * "signal::event", gtk_menu_window_event, menu,
1876 * "signal::size_request", gtk_menu_window_size_request, menu,
1877 * "signal::destroy", gtk_widget_destroyed, &menu->toplevel,
1884 g_object_connect (gpointer _object,
1885 const gchar *signal_spec,
1888 GObject *object = _object;
1891 g_return_val_if_fail (G_IS_OBJECT (object), NULL);
1892 g_return_val_if_fail (object->ref_count > 0, object);
1894 va_start (var_args, signal_spec);
1897 GCallback callback = va_arg (var_args, GCallback);
1898 gpointer data = va_arg (var_args, gpointer);
1901 if (strncmp (signal_spec, "signal::", 8) == 0)
1902 sid = g_signal_connect_data (object, signal_spec + 8,
1903 callback, data, NULL,
1905 else if (strncmp (signal_spec, "object_signal::", 15) == 0 ||
1906 strncmp (signal_spec, "object-signal::", 15) == 0)
1907 sid = g_signal_connect_object (object, signal_spec + 15,
1910 else if (strncmp (signal_spec, "swapped_signal::", 16) == 0 ||
1911 strncmp (signal_spec, "swapped-signal::", 16) == 0)
1912 sid = g_signal_connect_data (object, signal_spec + 16,
1913 callback, data, NULL,
1915 else if (strncmp (signal_spec, "swapped_object_signal::", 23) == 0 ||
1916 strncmp (signal_spec, "swapped-object-signal::", 23) == 0)
1917 sid = g_signal_connect_object (object, signal_spec + 23,
1920 else if (strncmp (signal_spec, "signal_after::", 14) == 0 ||
1921 strncmp (signal_spec, "signal-after::", 14) == 0)
1922 sid = g_signal_connect_data (object, signal_spec + 14,
1923 callback, data, NULL,
1925 else if (strncmp (signal_spec, "object_signal_after::", 21) == 0 ||
1926 strncmp (signal_spec, "object-signal-after::", 21) == 0)
1927 sid = g_signal_connect_object (object, signal_spec + 21,
1930 else if (strncmp (signal_spec, "swapped_signal_after::", 22) == 0 ||
1931 strncmp (signal_spec, "swapped-signal-after::", 22) == 0)
1932 sid = g_signal_connect_data (object, signal_spec + 22,
1933 callback, data, NULL,
1934 G_CONNECT_SWAPPED | G_CONNECT_AFTER);
1935 else if (strncmp (signal_spec, "swapped_object_signal_after::", 29) == 0 ||
1936 strncmp (signal_spec, "swapped-object-signal-after::", 29) == 0)
1937 sid = g_signal_connect_object (object, signal_spec + 29,
1939 G_CONNECT_SWAPPED | G_CONNECT_AFTER);
1942 g_warning ("%s: invalid signal spec \"%s\"", G_STRFUNC, signal_spec);
1945 signal_spec = va_arg (var_args, gchar*);
1953 * g_object_disconnect:
1954 * @object: a #GObject
1955 * @signal_spec: the spec for the first signal
1956 * @...: #GCallback for the first signal, followed by data for the first signal,
1957 * followed optionally by more signal spec/callback/data triples,
1960 * A convenience function to disconnect multiple signals at once.
1962 * The signal specs expected by this function have the form
1963 * "any_signal", which means to disconnect any signal with matching
1964 * callback and data, or "any_signal::signal_name", which only
1965 * disconnects the signal named "signal_name".
1968 g_object_disconnect (gpointer _object,
1969 const gchar *signal_spec,
1972 GObject *object = _object;
1975 g_return_if_fail (G_IS_OBJECT (object));
1976 g_return_if_fail (object->ref_count > 0);
1978 va_start (var_args, signal_spec);
1981 GCallback callback = va_arg (var_args, GCallback);
1982 gpointer data = va_arg (var_args, gpointer);
1983 guint sid = 0, detail = 0, mask = 0;
1985 if (strncmp (signal_spec, "any_signal::", 12) == 0 ||
1986 strncmp (signal_spec, "any-signal::", 12) == 0)
1989 mask = G_SIGNAL_MATCH_ID | G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA;
1991 else if (strcmp (signal_spec, "any_signal") == 0 ||
1992 strcmp (signal_spec, "any-signal") == 0)
1995 mask = G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA;
1999 g_warning ("%s: invalid signal spec \"%s\"", G_STRFUNC, signal_spec);
2003 if ((mask & G_SIGNAL_MATCH_ID) &&
2004 !g_signal_parse_name (signal_spec, G_OBJECT_TYPE (object), &sid, &detail, FALSE))
2005 g_warning ("%s: invalid signal name \"%s\"", G_STRFUNC, signal_spec);
2006 else if (!g_signal_handlers_disconnect_matched (object, mask | (detail ? G_SIGNAL_MATCH_DETAIL : 0),
2008 NULL, (gpointer)callback, data))
2009 g_warning ("%s: signal handler %p(%p) is not connected", G_STRFUNC, callback, data);
2010 signal_spec = va_arg (var_args, gchar*);
2021 } weak_refs[1]; /* flexible array */
2025 weak_refs_notify (gpointer data)
2027 WeakRefStack *wstack = data;
2030 for (i = 0; i < wstack->n_weak_refs; i++)
2031 wstack->weak_refs[i].notify (wstack->weak_refs[i].data, wstack->object);
2036 * g_object_weak_ref:
2037 * @object: #GObject to reference weakly
2038 * @notify: callback to invoke before the object is freed
2039 * @data: extra data to pass to notify
2041 * Adds a weak reference callback to an object. Weak references are
2042 * used for notification when an object is finalized. They are called
2043 * "weak references" because they allow you to safely hold a pointer
2044 * to an object without calling g_object_ref() (g_object_ref() adds a
2045 * strong reference, that is, forces the object to stay alive).
2048 g_object_weak_ref (GObject *object,
2052 WeakRefStack *wstack;
2055 g_return_if_fail (G_IS_OBJECT (object));
2056 g_return_if_fail (notify != NULL);
2057 g_return_if_fail (object->ref_count >= 1);
2059 wstack = g_datalist_id_remove_no_notify (&object->qdata, quark_weak_refs);
2062 i = wstack->n_weak_refs++;
2063 wstack = g_realloc (wstack, sizeof (*wstack) + sizeof (wstack->weak_refs[0]) * i);
2067 wstack = g_renew (WeakRefStack, NULL, 1);
2068 wstack->object = object;
2069 wstack->n_weak_refs = 1;
2072 wstack->weak_refs[i].notify = notify;
2073 wstack->weak_refs[i].data = data;
2074 g_datalist_id_set_data_full (&object->qdata, quark_weak_refs, wstack, weak_refs_notify);
2078 * g_object_weak_unref:
2079 * @object: #GObject to remove a weak reference from
2080 * @notify: callback to search for
2081 * @data: data to search for
2083 * Removes a weak reference callback to an object.
2086 g_object_weak_unref (GObject *object,
2090 WeakRefStack *wstack;
2091 gboolean found_one = FALSE;
2093 g_return_if_fail (G_IS_OBJECT (object));
2094 g_return_if_fail (notify != NULL);
2096 wstack = g_datalist_id_get_data (&object->qdata, quark_weak_refs);
2101 for (i = 0; i < wstack->n_weak_refs; i++)
2102 if (wstack->weak_refs[i].notify == notify &&
2103 wstack->weak_refs[i].data == data)
2106 wstack->n_weak_refs -= 1;
2107 if (i != wstack->n_weak_refs)
2108 wstack->weak_refs[i] = wstack->weak_refs[wstack->n_weak_refs];
2114 g_warning ("%s: couldn't find weak ref %p(%p)", G_STRFUNC, notify, data);
2118 * g_object_add_weak_pointer:
2119 * @object: The object that should be weak referenced.
2120 * @weak_pointer_location: The memory address of a pointer.
2122 * Adds a weak reference from weak_pointer to @object to indicate that
2123 * the pointer located at @weak_pointer_location is only valid during
2124 * the lifetime of @object. When the @object is finalized,
2125 * @weak_pointer will be set to %NULL.
2128 g_object_add_weak_pointer (GObject *object,
2129 gpointer *weak_pointer_location)
2131 g_return_if_fail (G_IS_OBJECT (object));
2132 g_return_if_fail (weak_pointer_location != NULL);
2134 g_object_weak_ref (object,
2135 (GWeakNotify) g_nullify_pointer,
2136 weak_pointer_location);
2140 * g_object_remove_weak_pointer:
2141 * @object: The object that is weak referenced.
2142 * @weak_pointer_location: The memory address of a pointer.
2144 * Removes a weak reference from @object that was previously added
2145 * using g_object_add_weak_pointer(). The @weak_pointer_location has
2146 * to match the one used with g_object_add_weak_pointer().
2149 g_object_remove_weak_pointer (GObject *object,
2150 gpointer *weak_pointer_location)
2152 g_return_if_fail (G_IS_OBJECT (object));
2153 g_return_if_fail (weak_pointer_location != NULL);
2155 g_object_weak_unref (object,
2156 (GWeakNotify) g_nullify_pointer,
2157 weak_pointer_location);
2162 object_floating_flag_handler (GObject *object,
2166 object_floating_flag_handler (GObject *object,
2168 #endif /* EMULATOR */
2173 case +1: /* force floating if possible */
2175 oldvalue = g_atomic_pointer_get (&object->qdata);
2176 while (!g_atomic_pointer_compare_and_exchange ((void**) &object->qdata, oldvalue,
2177 (gpointer) ((gsize) oldvalue | OBJECT_FLOATING_FLAG)));
2178 return (gsize) oldvalue & OBJECT_FLOATING_FLAG;
2179 case -1: /* sink if possible */
2181 oldvalue = g_atomic_pointer_get (&object->qdata);
2182 while (!g_atomic_pointer_compare_and_exchange ((void**) &object->qdata, oldvalue,
2183 (gpointer) ((gsize) oldvalue & ~(gsize) OBJECT_FLOATING_FLAG)));
2184 return (gsize) oldvalue & OBJECT_FLOATING_FLAG;
2185 default: /* check floating */
2186 return 0 != ((gsize) g_atomic_pointer_get (&object->qdata) & OBJECT_FLOATING_FLAG);
2191 * g_object_is_floating:
2192 * @object: a #GObject
2194 * Checks wether @object has a <link linkend="floating-ref">floating</link>
2199 * Returns: %TRUE if @object has a floating reference
2202 g_object_is_floating (gpointer _object)
2204 GObject *object = _object;
2205 g_return_val_if_fail (G_IS_OBJECT (object), FALSE);
2206 return floating_flag_handler (object, 0);
2210 * g_object_ref_sink:
2211 * @object: a #GObject
2213 * Increase the reference count of @object, and possibly remove the
2214 * <link linkend="floating-ref">floating</link> reference, if @object
2215 * has a floating reference.
2217 * In other words, if the object is floating, then this call "assumes
2218 * ownership" of the floating reference, converting it to a normal
2219 * reference by clearing the floating flag while leaving the reference
2220 * count unchanged. If the object is not floating, then this call
2221 * adds a new normal reference increasing the reference count by one.
2228 g_object_ref_sink (gpointer _object)
2230 GObject *object = _object;
2231 gboolean was_floating;
2232 g_return_val_if_fail (G_IS_OBJECT (object), object);
2233 g_return_val_if_fail (object->ref_count >= 1, object);
2234 g_object_ref (object);
2235 was_floating = floating_flag_handler (object, -1);
2237 g_object_unref (object);
2242 * g_object_force_floating:
2243 * @object: a #GObject
2245 * This function is intended for #GObject implementations to re-enforce a
2246 * <link linkend="floating-ref">floating</link> object reference.
2247 * Doing this is seldomly required, all
2248 * #GInitiallyUnowned<!-- -->s are created with a floating reference which
2249 * usually just needs to be sunken by calling g_object_ref_sink().
2254 g_object_force_floating (GObject *object)
2256 gboolean was_floating;
2257 g_return_if_fail (G_IS_OBJECT (object));
2258 g_return_if_fail (object->ref_count >= 1);
2260 was_floating = floating_flag_handler (object, +1);
2265 guint n_toggle_refs;
2267 GToggleNotify notify;
2269 } toggle_refs[1]; /* flexible array */
2273 toggle_refs_notify (GObject *object,
2274 gboolean is_last_ref)
2276 ToggleRefStack *tstack = g_datalist_id_get_data (&object->qdata, quark_toggle_refs);
2278 /* Reentrancy here is not as tricky as it seems, because a toggle reference
2279 * will only be notified when there is exactly one of them.
2281 g_assert (tstack->n_toggle_refs == 1);
2282 tstack->toggle_refs[0].notify (tstack->toggle_refs[0].data, tstack->object, is_last_ref);
2286 * g_object_add_toggle_ref:
2287 * @object: a #GObject
2288 * @notify: a function to call when this reference is the
2289 * last reference to the object, or is no longer
2290 * the last reference.
2291 * @data: data to pass to @notify
2293 * Increases the reference count of the object by one and sets a
2294 * callback to be called when all other references to the object are
2295 * dropped, or when this is already the last reference to the object
2296 * and another reference is established.
2298 * This functionality is intended for binding @object to a proxy
2299 * object managed by another memory manager. This is done with two
2300 * paired references: the strong reference added by
2301 * g_object_add_toggle_ref() and a reverse reference to the proxy
2302 * object which is either a strong reference or weak reference.
2304 * The setup is that when there are no other references to @object,
2305 * only a weak reference is held in the reverse direction from @object
2306 * to the proxy object, but when there are other references held to
2307 * @object, a strong reference is held. The @notify callback is called
2308 * when the reference from @object to the proxy object should be
2309 * <firstterm>toggled</firstterm> from strong to weak (@is_last_ref
2310 * true) or weak to strong (@is_last_ref false).
2312 * Since a (normal) reference must be held to the object before
2313 * calling g_object_toggle_ref(), the initial state of the reverse
2314 * link is always strong.
2316 * Multiple toggle references may be added to the same gobject,
2317 * however if there are multiple toggle references to an object, none
2318 * of them will ever be notified until all but one are removed. For
2319 * this reason, you should only ever use a toggle reference if there
2320 * is important state in the proxy object.
2325 g_object_add_toggle_ref (GObject *object,
2326 GToggleNotify notify,
2329 ToggleRefStack *tstack;
2332 g_return_if_fail (G_IS_OBJECT (object));
2333 g_return_if_fail (notify != NULL);
2334 g_return_if_fail (object->ref_count >= 1);
2336 g_object_ref (object);
2338 tstack = g_datalist_id_remove_no_notify (&object->qdata, quark_toggle_refs);
2341 i = tstack->n_toggle_refs++;
2342 /* allocate i = tstate->n_toggle_refs - 1 positions beyond the 1 declared
2343 * in tstate->toggle_refs */
2344 tstack = g_realloc (tstack, sizeof (*tstack) + sizeof (tstack->toggle_refs[0]) * i);
2348 tstack = g_renew (ToggleRefStack, NULL, 1);
2349 tstack->object = object;
2350 tstack->n_toggle_refs = 1;
2354 /* Set a flag for fast lookup after adding the first toggle reference */
2355 if (tstack->n_toggle_refs == 1)
2356 g_datalist_set_flags (&object->qdata, OBJECT_HAS_TOGGLE_REF_FLAG);
2358 tstack->toggle_refs[i].notify = notify;
2359 tstack->toggle_refs[i].data = data;
2360 g_datalist_id_set_data_full (&object->qdata, quark_toggle_refs, tstack,
2361 (GDestroyNotify)g_free);
2365 * g_object_remove_toggle_ref:
2366 * @object: a #GObject
2367 * @notify: a function to call when this reference is the
2368 * last reference to the object, or is no longer
2369 * the last reference.
2370 * @data: data to pass to @notify
2372 * Removes a reference added with g_object_add_toggle_ref(). The
2373 * reference count of the object is decreased by one.
2378 g_object_remove_toggle_ref (GObject *object,
2379 GToggleNotify notify,
2382 ToggleRefStack *tstack;
2383 gboolean found_one = FALSE;
2385 g_return_if_fail (G_IS_OBJECT (object));
2386 g_return_if_fail (notify != NULL);
2388 tstack = g_datalist_id_get_data (&object->qdata, quark_toggle_refs);
2393 for (i = 0; i < tstack->n_toggle_refs; i++)
2394 if (tstack->toggle_refs[i].notify == notify &&
2395 tstack->toggle_refs[i].data == data)
2398 tstack->n_toggle_refs -= 1;
2399 if (i != tstack->n_toggle_refs)
2400 tstack->toggle_refs[i] = tstack->toggle_refs[tstack->n_toggle_refs];
2402 if (tstack->n_toggle_refs == 0)
2403 g_datalist_unset_flags (&object->qdata, OBJECT_HAS_TOGGLE_REF_FLAG);
2405 g_object_unref (object);
2412 g_warning ("%s: couldn't find toggle ref %p(%p)", G_STRFUNC, notify, data);
2417 * @object: a #GObject
2419 * Increases the reference count of @object.
2421 * Returns: the same @object
2424 g_object_ref (gpointer _object)
2426 GObject *object = _object;
2429 g_return_val_if_fail (G_IS_OBJECT (object), NULL);
2430 g_return_val_if_fail (object->ref_count > 0, NULL);
2432 #ifdef G_ENABLE_DEBUG
2433 if (g_trap_object_ref == object)
2435 #endif /* G_ENABLE_DEBUG */
2438 old_val = g_atomic_int_exchange_and_add ((int *)&object->ref_count, 1);
2440 if (old_val == 1 && OBJECT_HAS_TOGGLE_REF (object))
2441 toggle_refs_notify (object, FALSE);
2448 * @object: a #GObject
2450 * Decreases the reference count of @object. When its reference count
2451 * drops to 0, the object is finalized (i.e. its memory is freed).
2454 g_object_unref (gpointer _object)
2456 GObject *object = _object;
2460 g_return_if_fail (G_IS_OBJECT (object));
2461 g_return_if_fail (object->ref_count > 0);
2463 #ifdef G_ENABLE_DEBUG
2464 if (g_trap_object_ref == object)
2466 #endif /* G_ENABLE_DEBUG */
2468 /* here we want to atomically do: if (ref_count>1) { ref_count--; return; } */
2469 retry_atomic_decrement1:
2470 old_ref = g_atomic_int_get (&object->ref_count);
2473 if (!g_atomic_int_compare_and_exchange ((int *)&object->ref_count, old_ref, old_ref - 1))
2474 goto retry_atomic_decrement1;
2476 /* if we went from 2->1 we need to notify toggle refs if any */
2477 if (old_ref == 2 && OBJECT_HAS_TOGGLE_REF (object))
2478 toggle_refs_notify (object, TRUE);
2482 /* we are about tp remove the last reference */
2483 G_OBJECT_GET_CLASS (object)->dispose (object);
2485 /* may have been re-referenced meanwhile */
2486 retry_atomic_decrement2:
2487 old_ref = g_atomic_int_get ((int *)&object->ref_count);
2490 if (!g_atomic_int_compare_and_exchange ((int *)&object->ref_count, old_ref, old_ref - 1))
2491 goto retry_atomic_decrement2;
2493 /* if we went from 2->1 we need to notify toggle refs if any */
2494 if (old_ref == 2 && OBJECT_HAS_TOGGLE_REF (object))
2495 toggle_refs_notify (object, TRUE);
2500 /* we are still in the process of taking away the last ref */
2501 g_datalist_id_set_data (&object->qdata, quark_closure_array, NULL);
2502 g_signal_handlers_destroy (object);
2503 g_datalist_id_set_data (&object->qdata, quark_weak_refs, NULL);
2505 /* decrement the last reference */
2506 is_zero = g_atomic_int_dec_and_test ((int *)&object->ref_count);
2508 /* may have been re-referenced meanwhile */
2509 if (G_LIKELY (is_zero))
2511 G_OBJECT_GET_CLASS (object)->finalize (object);
2512 #ifdef G_ENABLE_DEBUG
2515 /* catch objects not chaining finalize handlers */
2516 G_LOCK (debug_objects);
2517 g_assert (g_hash_table_lookup (debug_objects_ht, object) == NULL);
2518 G_UNLOCK (debug_objects);
2520 #endif /* G_ENABLE_DEBUG */
2521 g_type_free_instance ((GTypeInstance*) object);
2527 * g_object_get_qdata:
2528 * @object: The GObject to get a stored user data pointer from
2529 * @quark: A #GQuark, naming the user data pointer
2531 * This function gets back user data pointers stored via
2532 * g_object_set_qdata().
2534 * Returns: The user data pointer set, or %NULL
2537 g_object_get_qdata (GObject *object,
2540 g_return_val_if_fail (G_IS_OBJECT (object), NULL);
2542 return quark ? g_datalist_id_get_data (&object->qdata, quark) : NULL;
2546 * g_object_set_qdata:
2547 * @object: The GObject to set store a user data pointer
2548 * @quark: A #GQuark, naming the user data pointer
2549 * @data: An opaque user data pointer
2551 * This sets an opaque, named pointer on an object.
2552 * The name is specified through a #GQuark (retrived e.g. via
2553 * g_quark_from_static_string()), and the pointer
2554 * can be gotten back from the @object with g_object_get_qdata()
2555 * until the @object is finalized.
2556 * Setting a previously set user data pointer, overrides (frees)
2557 * the old pointer set, using #NULL as pointer essentially
2558 * removes the data stored.
2561 g_object_set_qdata (GObject *object,
2565 g_return_if_fail (G_IS_OBJECT (object));
2566 g_return_if_fail (quark > 0);
2568 g_datalist_id_set_data (&object->qdata, quark, data);
2572 * g_object_set_qdata_full:
2573 * @object: The GObject to set store a user data pointer
2574 * @quark: A #GQuark, naming the user data pointer
2575 * @data: An opaque user data pointer
2576 * @destroy: Function to invoke with @data as argument, when @data
2579 * This function works like g_object_set_qdata(), but in addition,
2580 * a void (*destroy) (gpointer) function may be specified which is
2581 * called with @data as argument when the @object is finalized, or
2582 * the data is being overwritten by a call to g_object_set_qdata()
2583 * with the same @quark.
2586 g_object_set_qdata_full (GObject *object,
2589 GDestroyNotify destroy)
2591 g_return_if_fail (G_IS_OBJECT (object));
2592 g_return_if_fail (quark > 0);
2594 g_datalist_id_set_data_full (&object->qdata, quark, data,
2595 data ? destroy : (GDestroyNotify) NULL);
2599 * g_object_steal_qdata:
2600 * @object: The GObject to get a stored user data pointer from
2601 * @quark: A #GQuark, naming the user data pointer
2603 * This function gets back user data pointers stored via
2604 * g_object_set_qdata() and removes the @data from object
2605 * without invoking its destroy() function (if any was
2607 * Usually, calling this function is only required to update
2608 * user data pointers with a destroy notifier, for example:
2611 * object_add_to_user_list (GObject *object,
2612 * const gchar *new_string)
2614 * // the quark, naming the object data
2615 * GQuark quark_string_list = g_quark_from_static_string ("my-string-list");
2616 * // retrive the old string list
2617 * GList *list = g_object_steal_qdata (object, quark_string_list);
2619 * // prepend new string
2620 * list = g_list_prepend (list, g_strdup (new_string));
2621 * // this changed 'list', so we need to set it again
2622 * g_object_set_qdata_full (object, quark_string_list, list, free_string_list);
2625 * free_string_list (gpointer data)
2627 * GList *node, *list = data;
2629 * for (node = list; node; node = node->next)
2630 * g_free (node->data);
2631 * g_list_free (list);
2634 * Using g_object_get_qdata() in the above example, instead of
2635 * g_object_steal_qdata() would have left the destroy function set,
2636 * and thus the partial string list would have been freed upon
2637 * g_object_set_qdata_full().
2639 * Returns: The user data pointer set, or %NULL
2642 g_object_steal_qdata (GObject *object,
2645 g_return_val_if_fail (G_IS_OBJECT (object), NULL);
2646 g_return_val_if_fail (quark > 0, NULL);
2648 return g_datalist_id_remove_no_notify (&object->qdata, quark);
2652 * g_object_get_data:
2653 * @object: #GObject containing the associations
2654 * @key: name of the key for that association
2656 * Gets a named field from the objects table of associations (see g_object_set_data()).
2658 * Returns: the data if found, or %NULL if no such data exists.
2661 g_object_get_data (GObject *object,
2666 g_return_val_if_fail (G_IS_OBJECT (object), NULL);
2667 g_return_val_if_fail (key != NULL, NULL);
2669 quark = g_quark_try_string (key);
2671 return quark ? g_datalist_id_get_data (&object->qdata, quark) : NULL;
2675 * g_object_set_data:
2676 * @object: #GObject containing the associations.
2677 * @key: name of the key
2678 * @data: data to associate with that key
2680 * Each object carries around a table of associations from
2681 * strings to pointers. This function lets you set an association.
2683 * If the object already had an association with that name,
2684 * the old association will be destroyed.
2687 g_object_set_data (GObject *object,
2691 g_return_if_fail (G_IS_OBJECT (object));
2692 g_return_if_fail (key != NULL);
2694 g_datalist_id_set_data (&object->qdata, g_quark_from_string (key), data);
2698 * g_object_set_data_full:
2699 * @object: #GObject containing the associations
2700 * @key: name of the key
2701 * @data: data to associate with that key
2702 * @destroy: function to call when the association is destroyed
2704 * Like g_object_set_data() except it adds notification
2705 * for when the association is destroyed, either by setting it
2706 * to a different value or when the object is destroyed.
2708 * Note that the @destroy callback is not called if @data is %NULL.
2711 g_object_set_data_full (GObject *object,
2714 GDestroyNotify destroy)
2716 g_return_if_fail (G_IS_OBJECT (object));
2717 g_return_if_fail (key != NULL);
2719 g_datalist_id_set_data_full (&object->qdata, g_quark_from_string (key), data,
2720 data ? destroy : (GDestroyNotify) NULL);
2724 * g_object_steal_data:
2725 * @object: #GObject containing the associations
2726 * @key: name of the key
2728 * Remove a specified datum from the object's data associations,
2729 * without invoking the association's destroy handler.
2731 * Returns: the data if found, or %NULL if no such data exists.
2734 g_object_steal_data (GObject *object,
2739 g_return_val_if_fail (G_IS_OBJECT (object), NULL);
2740 g_return_val_if_fail (key != NULL, NULL);
2742 quark = g_quark_try_string (key);
2744 return quark ? g_datalist_id_remove_no_notify (&object->qdata, quark) : NULL;
2748 g_value_object_init (GValue *value)
2750 value->data[0].v_pointer = NULL;
2754 g_value_object_free_value (GValue *value)
2756 if (value->data[0].v_pointer)
2757 g_object_unref (value->data[0].v_pointer);
2761 g_value_object_copy_value (const GValue *src_value,
2764 if (src_value->data[0].v_pointer)
2765 dest_value->data[0].v_pointer = g_object_ref (src_value->data[0].v_pointer);
2767 dest_value->data[0].v_pointer = NULL;
2771 g_value_object_transform_value (const GValue *src_value,
2774 if (src_value->data[0].v_pointer && g_type_is_a (G_OBJECT_TYPE (src_value->data[0].v_pointer), G_VALUE_TYPE (dest_value)))
2775 dest_value->data[0].v_pointer = g_object_ref (src_value->data[0].v_pointer);
2777 dest_value->data[0].v_pointer = NULL;
2781 g_value_object_peek_pointer (const GValue *value)
2783 return value->data[0].v_pointer;
2787 g_value_object_collect_value (GValue *value,
2788 guint n_collect_values,
2789 GTypeCValue *collect_values,
2790 guint collect_flags)
2792 if (collect_values[0].v_pointer)
2794 GObject *object = collect_values[0].v_pointer;
2796 if (object->g_type_instance.g_class == NULL)
2797 return g_strconcat ("invalid unclassed object pointer for value type `",
2798 G_VALUE_TYPE_NAME (value),
2801 else if (!g_value_type_compatible (G_OBJECT_TYPE (object), G_VALUE_TYPE (value)))
2802 return g_strconcat ("invalid object type `",
2803 G_OBJECT_TYPE_NAME (object),
2804 "' for value type `",
2805 G_VALUE_TYPE_NAME (value),
2808 /* never honour G_VALUE_NOCOPY_CONTENTS for ref-counted types */
2809 value->data[0].v_pointer = g_object_ref (object);
2812 value->data[0].v_pointer = NULL;
2818 g_value_object_lcopy_value (const GValue *value,
2819 guint n_collect_values,
2820 GTypeCValue *collect_values,
2821 guint collect_flags)
2823 GObject **object_p = collect_values[0].v_pointer;
2826 return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value));
2828 if (!value->data[0].v_pointer)
2830 else if (collect_flags & G_VALUE_NOCOPY_CONTENTS)
2831 *object_p = value->data[0].v_pointer;
2833 *object_p = g_object_ref (value->data[0].v_pointer);
2839 * g_value_set_object:
2840 * @value: a valid #GValue of %G_TYPE_OBJECT derived type
2841 * @v_object: object value to be set
2843 * Set the contents of a %G_TYPE_OBJECT derived #GValue to @v_object.
2845 * g_value_set_object() increases the reference count of @v_object
2846 * (the #GValue holds a reference to @v_object). If you do not wish
2847 * to increase the reference count of the object (i.e. you wish to
2848 * pass your current reference to the #GValue because you no longer
2849 * need it), use g_value_take_object() instead.
2851 * It is important that your #GValue holds a reference to @v_object (either its
2852 * own, or one it has taken) to ensure that the object won't be destroyed while
2853 * the #GValue still exists).
2856 g_value_set_object (GValue *value,
2861 g_return_if_fail (G_VALUE_HOLDS_OBJECT (value));
2863 old = value->data[0].v_pointer;
2867 g_return_if_fail (G_IS_OBJECT (v_object));
2868 g_return_if_fail (g_value_type_compatible (G_OBJECT_TYPE (v_object), G_VALUE_TYPE (value)));
2870 value->data[0].v_pointer = v_object;
2871 g_object_ref (value->data[0].v_pointer);
2874 value->data[0].v_pointer = NULL;
2877 g_object_unref (old);
2881 * g_value_set_object_take_ownership:
2882 * @value: a valid #GValue of %G_TYPE_OBJECT derived type
2883 * @v_object: object value to be set
2885 * This is an internal function introduced mainly for C marshallers.
2887 * Deprecated: 2.4: Use g_value_take_object() instead.
2890 g_value_set_object_take_ownership (GValue *value,
2893 g_value_take_object (value, v_object);
2897 * g_value_take_object:
2898 * @value: a valid #GValue of %G_TYPE_OBJECT derived type
2899 * @v_object: object value to be set
2901 * Sets the contents of a %G_TYPE_OBJECT derived #GValue to @v_object
2902 * and takes over the ownership of the callers reference to @v_object;
2903 * the caller doesn't have to unref it any more (i.e. the reference
2904 * count of the object is not increased).
2906 * If you want the #GValue to hold its own reference to @v_object, use
2907 * g_value_set_object() instead.
2912 g_value_take_object (GValue *value,
2915 g_return_if_fail (G_VALUE_HOLDS_OBJECT (value));
2917 if (value->data[0].v_pointer)
2919 g_object_unref (value->data[0].v_pointer);
2920 value->data[0].v_pointer = NULL;
2925 g_return_if_fail (G_IS_OBJECT (v_object));
2926 g_return_if_fail (g_value_type_compatible (G_OBJECT_TYPE (v_object), G_VALUE_TYPE (value)));
2928 value->data[0].v_pointer = v_object; /* we take over the reference count */
2933 * g_value_get_object:
2934 * @value: a valid #GValue of %G_TYPE_OBJECT derived type
2936 * Get the contents of a %G_TYPE_OBJECT derived #GValue.
2938 * Returns: object contents of @value
2941 g_value_get_object (const GValue *value)
2943 g_return_val_if_fail (G_VALUE_HOLDS_OBJECT (value), NULL);
2945 return value->data[0].v_pointer;
2949 * g_value_dup_object:
2950 * @value: a valid #GValue whose type is derived from %G_TYPE_OBJECT
2952 * Get the contents of a %G_TYPE_OBJECT derived #GValue, increasing
2953 * its reference count.
2955 * Returns: object content of @value, should be unreferenced when no
2959 g_value_dup_object (const GValue *value)
2961 g_return_val_if_fail (G_VALUE_HOLDS_OBJECT (value), NULL);
2963 return value->data[0].v_pointer ? g_object_ref (value->data[0].v_pointer) : NULL;
2967 * g_signal_connect_object:
2968 * @instance: the instance to connect to.
2969 * @detailed_signal: a string of the form "signal-name::detail".
2970 * @c_handler: the #GCallback to connect.
2971 * @gobject: the object to pass as data to @c_handler.
2972 * @connect_flags: a combination of #GConnnectFlags.
2974 * This is similar to g_signal_connect_data(), but uses a closure which
2975 * ensures that the @gobject stays alive during the call to @c_handler
2976 * by temporarily adding a reference count to @gobject.
2978 * Note that there is a bug in GObject that makes this function
2979 * much less useful than it might seem otherwise. Once @gobject is
2980 * disposed, the callback will no longer be called, but, the signal
2981 * handler is <emphasis>not</emphasis> currently disconnected. If the
2982 * @instance is itself being freed at the same time than this doesn't
2983 * matter, since the signal will automatically be removed, but
2984 * if @instance persists, then the signal handler will leak. You
2985 * should not remove the signal yourself because in a future versions of
2986 * GObject, the handler <emphasis>will</emphasis> automatically
2989 * It's possible to work around this problem in a way that will
2990 * continue to work with future versions of GObject by checking
2991 * that the signal handler is still connected before disconnected it:
2992 * <informalexample><programlisting>
2993 * if (g_signal_handler_is_connected (instance, id))
2994 * g_signal_handler_disconnect (instance, id);
2995 * </programlisting></informalexample>
2997 * Returns: the handler id.
3000 g_signal_connect_object (gpointer instance,
3001 const gchar *detailed_signal,
3002 GCallback c_handler,
3004 GConnectFlags connect_flags)
3006 g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
3007 g_return_val_if_fail (detailed_signal != NULL, 0);
3008 g_return_val_if_fail (c_handler != NULL, 0);
3014 g_return_val_if_fail (G_IS_OBJECT (gobject), 0);
3016 closure = ((connect_flags & G_CONNECT_SWAPPED) ? g_cclosure_new_object_swap : g_cclosure_new_object) (c_handler, gobject);
3018 return g_signal_connect_closure (instance, detailed_signal, closure, connect_flags & G_CONNECT_AFTER);
3021 return g_signal_connect_data (instance, detailed_signal, c_handler, NULL, NULL, connect_flags);
3027 GClosure *closures[1]; /* flexible array */
3029 /* don't change this structure without supplying an accessor for
3030 * watched closures, e.g.:
3031 * GSList* g_object_list_watched_closures (GObject *object)
3034 * g_return_val_if_fail (G_IS_OBJECT (object), NULL);
3035 * carray = g_object_get_data (object, "GObject-closure-array");
3038 * GSList *slist = NULL;
3040 * for (i = 0; i < carray->n_closures; i++)
3041 * slist = g_slist_prepend (slist, carray->closures[i]);
3049 object_remove_closure (gpointer data,
3052 GObject *object = data;
3053 CArray *carray = g_object_get_qdata (object, quark_closure_array);
3056 for (i = 0; i < carray->n_closures; i++)
3057 if (carray->closures[i] == closure)
3059 carray->n_closures--;
3060 if (i < carray->n_closures)
3061 carray->closures[i] = carray->closures[carray->n_closures];
3064 g_assert_not_reached ();
3068 destroy_closure_array (gpointer data)
3070 CArray *carray = data;
3071 GObject *object = carray->object;
3072 guint i, n = carray->n_closures;
3074 for (i = 0; i < n; i++)
3076 GClosure *closure = carray->closures[i];
3078 /* removing object_remove_closure() upfront is probably faster than
3079 * letting it fiddle with quark_closure_array which is empty anyways
3081 g_closure_remove_invalidate_notifier (closure, object, object_remove_closure);
3082 g_closure_invalidate (closure);
3088 * g_object_watch_closure:
3089 * @object: GObject restricting lifetime of @closure
3090 * @closure: GClosure to watch
3092 * This function essentially limits the life time of the @closure to
3093 * the life time of the object. That is, when the object is finalized,
3094 * the @closure is invalidated by calling g_closure_invalidate() on
3095 * it, in order to prevent invocations of the closure with a finalized
3096 * (nonexisting) object. Also, g_object_ref() and g_object_unref() are
3097 * added as marshal guards to the @closure, to ensure that an extra
3098 * reference count is held on @object during invocation of the
3099 * @closure. Usually, this function will be called on closures that
3100 * use this @object as closure data.
3103 g_object_watch_closure (GObject *object,
3109 g_return_if_fail (G_IS_OBJECT (object));
3110 g_return_if_fail (closure != NULL);
3111 g_return_if_fail (closure->is_invalid == FALSE);
3112 g_return_if_fail (closure->in_marshal == FALSE);
3113 g_return_if_fail (object->ref_count > 0); /* this doesn't work on finalizing objects */
3115 g_closure_add_invalidate_notifier (closure, object, object_remove_closure);
3116 g_closure_add_marshal_guards (closure,
3117 object, (GClosureNotify) g_object_ref,
3118 object, (GClosureNotify) g_object_unref);
3119 carray = g_datalist_id_remove_no_notify (&object->qdata, quark_closure_array);
3122 carray = g_renew (CArray, NULL, 1);
3123 carray->object = object;
3124 carray->n_closures = 1;
3129 i = carray->n_closures++;
3130 carray = g_realloc (carray, sizeof (*carray) + sizeof (carray->closures[0]) * i);
3132 carray->closures[i] = closure;
3133 g_datalist_id_set_data_full (&object->qdata, quark_closure_array, carray, destroy_closure_array);
3137 * g_closure_new_object:
3138 * @sizeof_closure: the size of the structure to allocate, must be at least
3139 * <literal>sizeof (GClosure)</literal>
3140 * @object: a #GObject pointer to store in the @data field of the newly
3141 * allocated #GClosure
3143 * A variant of g_closure_new_simple() which stores @object in the
3144 * @data field of the closure and calls g_object_watch_closure() on
3145 * @object and the created closure. This function is mainly useful
3146 * when implementing new types of closures.
3148 * Returns: a newly allocated #GClosure
3151 g_closure_new_object (guint sizeof_closure,
3156 g_return_val_if_fail (G_IS_OBJECT (object), NULL);
3157 g_return_val_if_fail (object->ref_count > 0, NULL); /* this doesn't work on finalizing objects */
3159 closure = g_closure_new_simple (sizeof_closure, object);
3160 g_object_watch_closure (object, closure);
3166 * g_cclosure_new_object:
3167 * @callback_func: the function to invoke
3168 * @object: a #GObject pointer to pass to @callback_func
3170 * A variant of g_cclosure_new() which uses @object as @user_data and
3171 * calls g_object_watch_closure() on @object and the created
3172 * closure. This function is useful when you have a callback closely
3173 * associated with a #GObject, and want the callback to no longer run
3174 * after the object is is freed.
3176 * Returns: a new #GCClosure
3179 g_cclosure_new_object (GCallback callback_func,
3184 g_return_val_if_fail (G_IS_OBJECT (object), NULL);
3185 g_return_val_if_fail (object->ref_count > 0, NULL); /* this doesn't work on finalizing objects */
3186 g_return_val_if_fail (callback_func != NULL, NULL);
3188 closure = g_cclosure_new (callback_func, object, NULL);
3189 g_object_watch_closure (object, closure);
3195 * g_cclosure_new_object_swap:
3196 * @callback_func: the function to invoke
3197 * @object: a #GObject pointer to pass to @callback_func
3199 * A variant of g_cclosure_new_swap() which uses @object as @user_data
3200 * and calls g_object_watch_closure() on @object and the created
3201 * closure. This function is useful when you have a callback closely
3202 * associated with a #GObject, and want the callback to no longer run
3203 * after the object is is freed.
3205 * Returns: a new #GCClosure
3208 g_cclosure_new_object_swap (GCallback callback_func,
3213 g_return_val_if_fail (G_IS_OBJECT (object), NULL);
3214 g_return_val_if_fail (object->ref_count > 0, NULL); /* this doesn't work on finalizing objects */
3215 g_return_val_if_fail (callback_func != NULL, NULL);
3217 closure = g_cclosure_new_swap (callback_func, object, NULL);
3218 g_object_watch_closure (object, closure);
3224 g_object_compat_control (gsize what,
3230 case 1: /* floating base type */
3231 return G_TYPE_INITIALLY_UNOWNED;
3232 case 2: /* FIXME: remove this once GLib/Gtk+ break ABI again */
3233 floating_flag_handler = (guint(*)(GObject*,gint)) data;
3235 case 3: /* FIXME: remove this once GLib/Gtk+ break ABI again */
3237 *pp = (gpointer)floating_flag_handler;
3244 G_DEFINE_TYPE (GInitiallyUnowned, g_initially_unowned, G_TYPE_OBJECT);
3247 g_initially_unowned_init (GInitiallyUnowned *object)
3249 g_object_force_floating (object);
3253 g_initially_unowned_class_init (GInitiallyUnownedClass *klass)
3257 #define __G_OBJECT_C__
3258 #include "gobjectaliasdef.c"