os/ossrv/glib/gobject/gobject.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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.
     4  *
     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.
     9  *
    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.
    14  *
    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.
    19  */
    20 
    21 /*
    22  * MT safe with regards to reference counting.
    23  */
    24 
    25 #include "config.h"
    26 
    27 #include <string.h>
    28 #include <signal.h>
    29 
    30 #include "gdatasetprivate.h"
    31 
    32 #include "gobject.h"
    33 #include "gvaluecollector.h"
    34 #include "gsignal.h"
    35 #include "gparamspecs.h"
    36 #include "gvaluetypes.h"
    37 #include "gobjectalias.h"
    38  #ifdef __SYMBIAN32__
    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"
    45 
    46 
    47 
    48 /**
    49  * SECTION:objects
    50  * @short_description: The base object type
    51  * @see_also: #GParamSpecObject, g_param_spec_object()
    52  * @title: The Base Object Type
    53  *
    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"/>.
    60  *
    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:
    68  * |[
    69  * container = create_container();
    70  * container_add_child (container, create_child());
    71  * ]|
    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:
    77  * |[
    78  * Child *child;
    79  * container = create_container();
    80  * child = create_child();
    81  * container_add_child (container, child);
    82  * g_object_unref (child);
    83  * ]|
    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
    88  * a new reference.
    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.
    93  * </para>
    94  *
    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:
    98  *
    99  * |[
   100  * // save floating state
   101  * gboolean was_floating = g_object_is_floating (object);
   102  * g_object_ref_sink (object);
   103  * // protected code portion
   104  * ...;
   105  * // restore floating state
   106  * if (was_floating)
   107  *   g_object_force_floating (object);
   108  * g_obejct_unref (object); // release previously acquired reference
   109  * ]|
   110  */
   111 
   112 
   113 /* --- macros --- */
   114 #define PARAM_SPEC_PARAM_ID(pspec)		((pspec)->param_id)
   115 #define	PARAM_SPEC_SET_PARAM_ID(pspec, id)	((pspec)->param_id = (id))
   116 
   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
   121 
   122 
   123 /* --- signals --- */
   124 enum {
   125   NOTIFY,
   126   LAST_SIGNAL
   127 };
   128 
   129 
   130 /* --- properties --- */
   131 enum {
   132   PROP_NONE
   133 };
   134 
   135 
   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,
   147 							 guint           property_id,
   148 							 const GValue   *value,
   149 							 GParamSpec     *pspec);
   150 static void	g_object_do_get_property		(GObject        *object,
   151 							 guint           property_id,
   152 							 GValue         *value,
   153 							 GParamSpec     *pspec);
   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,
   157 							 GValue		*dest_value);
   158 static void	g_value_object_transform_value		(const GValue	*src_value,
   159 							 GValue		*dest_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,
   170 							 guint		 n_pspecs,
   171 							 GParamSpec    **pspecs);
   172 static inline void         object_get_property		(GObject        *object,
   173 							 GParamSpec     *pspec,
   174 							 GValue         *value);
   175 static inline void	   object_set_property		(GObject        *object,
   176 							 GParamSpec     *pspec,
   177 							 const GValue   *value,
   178 							 GObjectNotifyQueue *nqueue);
   179 #if (EMULATOR)							 
   180 guint               object_floating_flag_handler (GObject        *object,
   181                                                          gint            job);
   182 #else
   183 static guint               object_floating_flag_handler (GObject        *object,
   184                                                          gint            job);
   185 #endif /* EMULATOR */
   186 static void object_interface_check_properties           (gpointer        func_data,
   187 							 gpointer        g_iface);
   188 
   189 
   190 /* --- variables --- */
   191 #if EMULATOR
   192 
   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)
   202 
   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)())
   212 
   213 #else
   214 
   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;
   224 
   225 #endif /* EMULATOR */
   226 
   227 /* --- functions --- */
   228 #ifdef	G_ENABLE_DEBUG
   229 #define	IF_DEBUG(debug_type)	if (_g_type_debug_flags & G_TYPE_DEBUG_ ## debug_type)
   230 #if EMULATOR
   231 
   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	*)
   236 
   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)())
   241 
   242 
   243 #else
   244 
   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 */
   250 static void
   251 debug_objects_foreach (gpointer key,
   252 		       gpointer value,
   253 		       gpointer user_data)
   254 {
   255   GObject *object = value;
   256 
   257   g_message ("[%p] stale %s\tref_count=%u",
   258 	     object,
   259 	     G_OBJECT_TYPE_NAME (object),
   260 	     object->ref_count);
   261 }
   262 
   263 static void
   264 debug_objects_atexit (void)
   265 {
   266   IF_DEBUG (OBJECTS)
   267     {
   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);
   272     }
   273 }
   274 #endif	/* G_ENABLE_DEBUG */
   275 
   276 #if EMULATOR
   277 
   278 PLS(initialized ,g_object_type_init,gboolean)
   279 PLS(info  ,g_object_type_init,GTypeInfo)
   280 
   281 #define initialized  (*FUNCTION_NAME(initialized ,g_object_type_init)())
   282 #define info  (*FUNCTION_NAME(info ,g_object_type_init)())
   283 
   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 */,
   291 	sizeof (GObject),
   292 	0		/* n_preallocs */,
   293 	(GInstanceInitFunc) g_object_init,
   294 	NULL,	/* value_table */
   295 };
   296 
   297 
   298 #endif /* EMULATOR */
   299 
   300 void
   301 g_object_type_init (void)
   302 {
   303   #if !(EMULATOR)
   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,
   308   };
   309   #if !(EMULATOR)
   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 */,
   317     sizeof (GObject),
   318     0		/* n_preallocs */,
   319     (GInstanceInitFunc) g_object_init,
   320     NULL,	/* value_table */
   321   };
   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 */
   332   };
   333   GType type;
   334   
   335   g_return_if_fail (initialized == FALSE);
   336   initialized = TRUE;
   337   
   338   /* G_TYPE_OBJECT
   339    */
   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);
   344   
   345 #ifdef	G_ENABLE_DEBUG
   346   IF_DEBUG (OBJECTS)
   347     {
   348       debug_objects_ht = g_hash_table_new (g_direct_hash, NULL);
   349       g_atexit (debug_objects_atexit);
   350     }
   351 #endif	/* G_ENABLE_DEBUG */
   352 }
   353 
   354 #if EMULATOR
   355 #undef initialized
   356 #undef info
   357 #endif /* EMULATOR */
   358 
   359 static void
   360 g_object_base_class_init (GObjectClass *class)
   361 {
   362   GObjectClass *pclass = g_type_class_peek_parent (class);
   363 
   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;
   368 }
   369 
   370 static void
   371 g_object_base_class_finalize (GObjectClass *class)
   372 {
   373   GList *list, *node;
   374   
   375   _g_signals_destroy (G_OBJECT_CLASS_TYPE (class));
   376 
   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)
   381     {
   382       GParamSpec *pspec = node->data;
   383       
   384       g_param_spec_pool_remove (pspec_pool, pspec);
   385       PARAM_SPEC_SET_PARAM_ID (pspec, 0);
   386       g_param_spec_unref (pspec);
   387     }
   388   g_list_free (list);
   389 }
   390 
   391 static void
   392 g_object_notify_dispatcher (GObject     *object,
   393 			    guint        n_pspecs,
   394 			    GParamSpec **pspecs)
   395 {
   396   G_OBJECT_GET_CLASS (object)->dispatch_properties_changed (object, n_pspecs, pspecs);
   397 }
   398 
   399 static void
   400 g_object_do_class_init (GObjectClass *class)
   401 {
   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");
   404 
   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;
   410   
   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;
   418 
   419   /**
   420    * GObject::notify:
   421    * @gobject: the object which received the signal.
   422    * @pspec: the #GParamSpec of the property which changed.
   423    *
   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.
   429    *
   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:
   433    * |[
   434    * g_signal_connect (text_view->buffer, "notify::paste-target-list",
   435    *                   G_CALLBACK (gtk_text_view_target_list_notify),
   436    *                   text_view)
   437    * ]|
   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.
   441    */
   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),
   447 		  NULL, NULL,
   448 		  g_cclosure_marshal_VOID__PARAM,
   449 		  G_TYPE_NONE,
   450 		  1, G_TYPE_PARAM);
   451 
   452   /* Install a check function that we'll use to verify that classes that
   453    * implement an interface implement all properties for that interface
   454    */
   455   g_type_add_interface_check (NULL, object_interface_check_properties);
   456 }
   457 
   458 static void
   459 install_property_internal (GType       g_type,
   460 			   guint       property_id,
   461 			   GParamSpec *pspec)
   462 {
   463   if (g_param_spec_pool_lookup (pspec_pool, pspec->name, g_type, FALSE))
   464     {
   465       g_warning ("When installing property: type `%s' already has a property named `%s'",
   466 		 g_type_name (g_type),
   467 		 pspec->name);
   468       return;
   469     }
   470 
   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);
   475 }
   476 
   477 /**
   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
   482  *
   483  * Installs a new property. This is usually done in the class initializer.
   484  *
   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.
   488  */
   489 EXPORT_C void
   490 g_object_class_install_property (GObjectClass *class,
   491 				 guint	       property_id,
   492 				 GParamSpec   *pspec)
   493 {
   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);
   506 
   507   install_property_internal (G_OBJECT_CLASS_TYPE (class), property_id, pspec);
   508 
   509   if (pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
   510     class->construct_properties = g_slist_prepend (class->construct_properties, pspec);
   511 
   512   /* for property overrides of construct poperties, we have to get rid
   513    * of the overidden inherited construct property
   514    */
   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);
   518 }
   519 
   520 /**
   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
   525  *
   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.
   535  *
   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.
   540  *
   541  * Since: 2.4
   542  */
   543 EXPORT_C void
   544 g_object_interface_install_property (gpointer      g_iface,
   545 				     GParamSpec   *pspec)
   546 {
   547   GTypeInterface *iface_class = g_iface;
   548 	
   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 */
   553 		    
   554   install_property_internal (iface_class->g_type, 0, pspec);
   555 }
   556 
   557 /**
   558  * g_object_class_find_property:
   559  * @oclass: a #GObjectClass
   560  * @property_name: the name of the property to look up
   561  *
   562  * Looks up the #GParamSpec for a property of a class.
   563  *
   564  * Returns: the #GParamSpec for the property, or %NULL if the class
   565  *          doesn't have a property of that name
   566  */
   567 EXPORT_C GParamSpec*
   568 g_object_class_find_property (GObjectClass *class,
   569 			      const gchar  *property_name)
   570 {
   571   GParamSpec *pspec;
   572   GParamSpec *redirect;
   573 	
   574   g_return_val_if_fail (G_IS_OBJECT_CLASS (class), NULL);
   575   g_return_val_if_fail (property_name != NULL, NULL);
   576   
   577   pspec = g_param_spec_pool_lookup (pspec_pool,
   578 				    property_name,
   579 				    G_OBJECT_CLASS_TYPE (class),
   580 				    TRUE);
   581   if (pspec)
   582     {
   583       redirect = g_param_spec_get_redirect_target (pspec);
   584       if (redirect)
   585 	return redirect;
   586       else
   587 	return pspec;
   588     }
   589   else
   590     return NULL;
   591 }
   592 
   593 /**
   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.
   598  *
   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().
   604  *
   605  * Since: 2.4
   606  *
   607  * Returns: the #GParamSpec for the property of the interface with the
   608  *          name @property_name, or %NULL if no such property exists.
   609  */
   610 EXPORT_C GParamSpec*
   611 g_object_interface_find_property (gpointer      g_iface,
   612 				  const gchar  *property_name)
   613 {
   614   GTypeInterface *iface_class = g_iface;
   615 	
   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);
   618   
   619   return g_param_spec_pool_lookup (pspec_pool,
   620 				   property_name,
   621 				   iface_class->g_type,
   622 				   FALSE);
   623 }
   624 
   625 /**
   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.
   631  *
   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.
   637  *
   638  * <note>
   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().
   649  * </note>
   650  *
   651  * Since: 2.4
   652  */
   653 EXPORT_C void
   654 g_object_class_override_property (GObjectClass *oclass,
   655 				  guint         property_id,
   656 				  const gchar  *name)
   657 {
   658   GParamSpec *overridden = NULL;
   659   GParamSpec *new;
   660   GType parent_type;
   661   
   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);
   665 
   666   /* Find the overridden property; first check parent types
   667    */
   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,
   671 					   name,
   672 					   parent_type,
   673 					   TRUE);
   674   if (!overridden)
   675     {
   676       GType *ifaces;
   677       guint n_ifaces;
   678       
   679       /* Now check interfaces
   680        */
   681       ifaces = g_type_interfaces (G_OBJECT_CLASS_TYPE (oclass), &n_ifaces);
   682       while (n_ifaces-- && !overridden)
   683 	{
   684 	  overridden = g_param_spec_pool_lookup (pspec_pool,
   685 						 name,
   686 						 ifaces[n_ifaces],
   687 						 FALSE);
   688 	}
   689       
   690       g_free (ifaces);
   691     }
   692 
   693   if (!overridden)
   694     {
   695       g_warning ("%s: Can't find property to override for '%s::%s'",
   696 		 G_STRFUNC, G_OBJECT_CLASS_NAME (oclass), name);
   697       return;
   698     }
   699 
   700   new = g_param_spec_override (name, overridden);
   701   g_object_class_install_property (oclass, property_id, new);
   702 }
   703 
   704 /**
   705  * g_object_class_list_properties:
   706  * @oclass: a #GObjectClass
   707  * @n_properties: return location for the length of the returned array
   708  *
   709  * Get an array of #GParamSpec* for all properties of a class.
   710  *
   711  * Returns: an array of #GParamSpec* which should be freed after use
   712  */
   713 EXPORT_C GParamSpec** /* free result */
   714 g_object_class_list_properties (GObjectClass *class,
   715 				guint        *n_properties_p)
   716 {
   717   GParamSpec **pspecs;
   718   guint n;
   719 
   720   g_return_val_if_fail (G_IS_OBJECT_CLASS (class), NULL);
   721 
   722   pspecs = g_param_spec_pool_list (pspec_pool,
   723 				   G_OBJECT_CLASS_TYPE (class),
   724 				   &n);
   725   if (n_properties_p)
   726     *n_properties_p = n;
   727 
   728   return pspecs;
   729 }
   730 
   731 /**
   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.
   736  *
   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().
   741  *
   742  * Since: 2.4
   743  *
   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
   747  *          it.
   748  */
   749 EXPORT_C GParamSpec** /* free result */
   750 g_object_interface_list_properties (gpointer      g_iface,
   751 				    guint        *n_properties_p)
   752 {
   753   GTypeInterface *iface_class = g_iface;
   754   GParamSpec **pspecs;
   755   guint n;
   756 
   757   g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface_class->g_type), NULL);
   758 
   759   pspecs = g_param_spec_pool_list (pspec_pool,
   760 				   iface_class->g_type,
   761 				   &n);
   762   if (n_properties_p)
   763     *n_properties_p = n;
   764 
   765   return pspecs;
   766 }
   767 
   768 static void
   769 g_object_init (GObject *object)
   770 {
   771   object->ref_count = 1;
   772   g_datalist_init (&object->qdata);
   773   
   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);
   780 
   781 #ifdef	G_ENABLE_DEBUG
   782   IF_DEBUG (OBJECTS)
   783     {
   784       G_LOCK (debug_objects);
   785       debug_objects_count++;
   786       g_hash_table_insert (debug_objects_ht, object, object);
   787       G_UNLOCK (debug_objects);
   788     }
   789 #endif	/* G_ENABLE_DEBUG */
   790 }
   791 
   792 static void
   793 g_object_do_set_property (GObject      *object,
   794 			  guint         property_id,
   795 			  const GValue *value,
   796 			  GParamSpec   *pspec)
   797 {
   798   switch (property_id)
   799     {
   800     default:
   801       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
   802       break;
   803     }
   804 }
   805 
   806 static void
   807 g_object_do_get_property (GObject     *object,
   808 			  guint        property_id,
   809 			  GValue      *value,
   810 			  GParamSpec  *pspec)
   811 {
   812   switch (property_id)
   813     {
   814     default:
   815       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
   816       break;
   817     }
   818 }
   819 
   820 static void
   821 g_object_real_dispose (GObject *object)
   822 {
   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);
   826 }
   827 
   828 static void
   829 g_object_finalize (GObject *object)
   830 {
   831   g_datalist_clear (&object->qdata);
   832   
   833 #ifdef	G_ENABLE_DEBUG
   834   IF_DEBUG (OBJECTS)
   835     {
   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);
   841     }
   842 #endif	/* G_ENABLE_DEBUG */
   843 }
   844 
   845 
   846 static void
   847 g_object_dispatch_properties_changed (GObject     *object,
   848 				      guint        n_pspecs,
   849 				      GParamSpec **pspecs)
   850 {
   851   guint i;
   852 
   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]);
   855 }
   856 
   857 /**
   858  * g_object_run_dispose:
   859  * @object: a #GObject
   860  *
   861  * Releases all references to other objects. This can be used to break
   862  * reference cycles.
   863  *
   864  * This functions should only be called from object system implementations.
   865  */
   866 EXPORT_C void
   867 g_object_run_dispose (GObject *object)
   868 {
   869   g_return_if_fail (G_IS_OBJECT (object));
   870   g_return_if_fail (object->ref_count > 0);
   871 
   872   g_object_ref (object);
   873   G_OBJECT_GET_CLASS (object)->dispose (object);
   874   g_object_unref (object);
   875 }
   876 
   877 /**
   878  * g_object_freeze_notify:
   879  * @object: a #GObject
   880  *
   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
   884  * to zero.
   885  *
   886  * This is necessary for accessors that modify multiple properties to prevent
   887  * premature notification while the object is still being modified.
   888  */
   889 EXPORT_C void
   890 g_object_freeze_notify (GObject *object)
   891 {
   892   g_return_if_fail (G_IS_OBJECT (object));
   893 
   894   if (g_atomic_int_get (&object->ref_count) == 0)
   895     return;
   896 
   897   g_object_ref (object);
   898   g_object_notify_queue_freeze (object, &property_notify_context);
   899   g_object_unref (object);
   900 }
   901 
   902 /**
   903  * g_object_notify:
   904  * @object: a #GObject
   905  * @property_name: the name of a property installed on the class of @object.
   906  *
   907  * Emits a "notify" signal for the property @property_name on @object.
   908  */
   909 EXPORT_C void
   910 g_object_notify (GObject     *object,
   911 		 const gchar *property_name)
   912 {
   913   GParamSpec *pspec;
   914   
   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)
   918     return;
   919   
   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
   924    */
   925   pspec = g_param_spec_pool_lookup (pspec_pool,
   926 				    property_name,
   927 				    G_OBJECT_TYPE (object),
   928 				    TRUE);
   929 
   930   if (!pspec)
   931     g_warning ("%s: object class `%s' has no property named `%s'",
   932 	       G_STRFUNC,
   933 	       G_OBJECT_TYPE_NAME (object),
   934 	       property_name);
   935   else
   936     {
   937       GObjectNotifyQueue *nqueue;
   938       
   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);
   942     }
   943   g_object_unref (object);
   944 }
   945 
   946 /**
   947  * g_object_thaw_notify:
   948  * @object: a #GObject
   949  *
   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.
   953  *
   954  * It is an error to call this function when the freeze count is zero.
   955  */
   956 EXPORT_C void
   957 g_object_thaw_notify (GObject *object)
   958 {
   959   GObjectNotifyQueue *nqueue;
   960   
   961   g_return_if_fail (G_IS_OBJECT (object));
   962   if (g_atomic_int_get (&object->ref_count) == 0)
   963     return;
   964   
   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);
   970   else
   971     g_object_notify_queue_thaw (object, nqueue);
   972   g_object_unref (object);
   973 }
   974 
   975 static inline void
   976 object_get_property (GObject     *object,
   977 		     GParamSpec  *pspec,
   978 		     GValue      *value)
   979 {
   980   GObjectClass *class = g_type_class_peek (pspec->owner_type);
   981   guint param_id = PARAM_SPEC_PARAM_ID (pspec);
   982   GParamSpec *redirect;
   983 
   984   redirect = g_param_spec_get_redirect_target (pspec);
   985   if (redirect)
   986     pspec = redirect;    
   987   
   988   class->get_property (object, param_id, value, pspec);
   989 }
   990 
   991 static inline void
   992 object_set_property (GObject             *object,
   993 		     GParamSpec          *pspec,
   994 		     const GValue        *value,
   995 		     GObjectNotifyQueue  *nqueue)
   996 {
   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;
  1001 
  1002   redirect = g_param_spec_get_redirect_target (pspec);
  1003   if (redirect)
  1004     pspec = redirect;
  1005 
  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'",
  1010 	       pspec->name,
  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))
  1014     {
  1015       gchar *contents = g_strdup_value_contents (value);
  1016 
  1017       g_warning ("value \"%s\" of type `%s' is invalid or out of range for property `%s' of type `%s'",
  1018 		 contents,
  1019 		 G_VALUE_TYPE_NAME (value),
  1020 		 pspec->name,
  1021 		 g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)));
  1022       g_free (contents);
  1023     }
  1024   else
  1025     {
  1026       class->set_property (object, param_id, &tmp_value, pspec);
  1027       g_object_notify_queue_add (object, nqueue, pspec);
  1028     }
  1029   g_value_unset (&tmp_value);
  1030 }
  1031 
  1032 static void
  1033 object_interface_check_properties (gpointer func_data,
  1034 				   gpointer g_iface)
  1035 {
  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;
  1040   guint n;
  1041 
  1042   if (!G_IS_OBJECT_CLASS (class))
  1043     return;
  1044 
  1045   pspecs = g_param_spec_pool_list (pspec_pool, iface_type, &n);
  1046 
  1047   while (n--)
  1048     {
  1049       GParamSpec *class_pspec = g_param_spec_pool_lookup (pspec_pool,
  1050 							  pspecs[n]->name,
  1051 							  G_OBJECT_CLASS_TYPE (class),
  1052 							  TRUE);
  1053       
  1054       if (!class_pspec)
  1055 	{
  1056 	  g_critical ("Object class %s doesn't implement property "
  1057 		      "'%s' from interface '%s'",
  1058 		      g_type_name (G_OBJECT_CLASS_TYPE (class)),
  1059 		      pspecs[n]->name,
  1060 		      g_type_name (iface_type));
  1061 
  1062 	  continue;
  1063 	}
  1064 
  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.
  1071        */
  1072       if (class_pspec &&
  1073 	  !g_type_is_a (G_PARAM_SPEC_VALUE_TYPE (pspecs[n]),
  1074 			G_PARAM_SPEC_VALUE_TYPE (class_pspec)))
  1075 	{
  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",
  1079 		      pspecs[n]->name,
  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));
  1084 	}
  1085       
  1086 #define SUBSET(a,b,mask) (((a) & ~(b) & (mask)) == 0)
  1087       
  1088       /* CONSTRUCT and CONSTRUCT_ONLY add restrictions.
  1089        * READABLE and WRITABLE remove restrictions. The implementation
  1090        * paramspec must have less restrictive flags.
  1091        */
  1092       if (class_pspec &&
  1093 	  (!SUBSET (class_pspec->flags,
  1094 		    pspecs[n]->flags,
  1095 		    G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY) ||
  1096 	   !SUBSET (pspecs[n]->flags,
  1097 		    class_pspec->flags,
  1098 		    G_PARAM_READABLE | G_PARAM_WRITABLE)))
  1099 	{
  1100 	  g_critical ("Flags for property '%s' on class '%s' "
  1101 		      "are not compatible with the property on"
  1102 		      "interface '%s'\n",
  1103 		      pspecs[n]->name,
  1104 		      g_type_name (G_OBJECT_CLASS_TYPE (class)),
  1105 		      g_type_name (iface_type));
  1106 	}
  1107 #undef SUBSET	  
  1108     }
  1109   
  1110   g_free (pspecs);
  1111 }
  1112 
  1113 EXPORT_C GType
  1114 g_object_get_type (void)
  1115 {
  1116     return G_TYPE_OBJECT;
  1117 }
  1118 
  1119 /**
  1120  * g_object_new:
  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
  1125  *
  1126  * Creates a new instance of a #GObject subtype and sets its properties.
  1127  *
  1128  * Construction parameters (see #G_PARAM_CONSTRUCT, #G_PARAM_CONSTRUCT_ONLY)
  1129  * which are not explicitly specified are set to their default values.
  1130  *
  1131  * Returns: a new instance of @object_type
  1132  */
  1133 EXPORT_C gpointer
  1134 g_object_new (GType	   object_type,
  1135 	      const gchar *first_property_name,
  1136 	      ...)
  1137 {
  1138   GObject *object;
  1139   va_list var_args;
  1140   
  1141   g_return_val_if_fail (G_TYPE_IS_OBJECT (object_type), NULL);
  1142   
  1143   va_start (var_args, first_property_name);
  1144   object = g_object_new_valist (object_type, first_property_name, var_args);
  1145   va_end (var_args);
  1146   
  1147   return object;
  1148 }
  1149 
  1150 static gboolean
  1151 slist_maybe_remove (GSList       **slist,
  1152                     gconstpointer  data)
  1153 {
  1154   GSList *last = NULL, *node = *slist;
  1155   while (node)
  1156     {
  1157       if (node->data == data)
  1158         {
  1159           if (last)
  1160             last->next = node->next;
  1161           else
  1162             *slist = node->next;
  1163           g_slist_free_1 (node);
  1164           return TRUE;
  1165         }
  1166       last = node;
  1167       node = last->next;
  1168     }
  1169   return FALSE;
  1170 }
  1171 
  1172 static inline gboolean
  1173 object_in_construction_list (GObject *object)
  1174 {
  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;
  1180 }
  1181 
  1182 /**
  1183  * g_object_newv:
  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
  1187  *
  1188  * Creates a new instance of a #GObject subtype and sets its properties.
  1189  *
  1190  * Construction parameters (see #G_PARAM_CONSTRUCT, #G_PARAM_CONSTRUCT_ONLY)
  1191  * which are not explicitly specified are set to their default values.
  1192  *
  1193  * Returns: a new instance of @object_type
  1194  */
  1195 EXPORT_C gpointer
  1196 g_object_newv (GType       object_type,
  1197 	       guint       n_parameters,
  1198 	       GParameter *parameters)
  1199 {
  1200   GObjectConstructParam *cparams, *oparams;
  1201   GObjectNotifyQueue *nqueue = NULL; /* shouldn't be initialized, just to silence compiler */
  1202   GObject *object;
  1203   GObjectClass *class, *unref_class = NULL;
  1204   GSList *slist;
  1205   guint n_total_cparams = 0, n_cparams = 0, n_oparams = 0, n_cvalues;
  1206   GValue *cvalues;
  1207   GList *clist = NULL;
  1208   gboolean newly_constructed;
  1209   guint i;
  1210 
  1211   g_return_val_if_fail (G_TYPE_IS_OBJECT (object_type), NULL);
  1212 
  1213   class = g_type_class_peek_static (object_type);
  1214   if (!class)
  1215     class = unref_class = g_type_class_ref (object_type);
  1216   for (slist = class->construct_properties; slist; slist = slist->next)
  1217     {
  1218       clist = g_list_prepend (clist, slist->data);
  1219       n_total_cparams += 1;
  1220     }
  1221 
  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++)
  1226     {
  1227       GValue *value = &parameters[i].value;
  1228       GParamSpec *pspec = g_param_spec_pool_lookup (pspec_pool,
  1229 						    parameters[i].name,
  1230 						    object_type,
  1231 						    TRUE);
  1232       if (!pspec)
  1233 	{
  1234 	  g_warning ("%s: object class `%s' has no property named `%s'",
  1235 		     G_STRFUNC,
  1236 		     g_type_name (object_type),
  1237 		     parameters[i].name);
  1238 	  continue;
  1239 	}
  1240       if (!(pspec->flags & G_PARAM_WRITABLE))
  1241 	{
  1242 	  g_warning ("%s: property `%s' of object class `%s' is not writable",
  1243 		     G_STRFUNC,
  1244 		     pspec->name,
  1245 		     g_type_name (object_type));
  1246 	  continue;
  1247 	}
  1248       if (pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
  1249 	{
  1250 	  GList *list = g_list_find (clist, pspec);
  1251 
  1252 	  if (!list)
  1253 	    {
  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));
  1256 	      continue;
  1257 	    }
  1258 	  cparams[n_cparams].pspec = pspec;
  1259 	  cparams[n_cparams].value = value;
  1260 	  n_cparams++;
  1261 	  if (!list->prev)
  1262 	    clist = list->next;
  1263 	  else
  1264 	    list->prev->next = list->next;
  1265 	  if (list->next)
  1266 	    list->next->prev = list->prev;
  1267 	  g_list_free_1 (list);
  1268 	}
  1269       else
  1270 	{
  1271 	  oparams[n_oparams].pspec = pspec;
  1272 	  oparams[n_oparams].value = value;
  1273 	  n_oparams++;
  1274 	}
  1275     }
  1276 
  1277   /* set remaining construction properties to default values */
  1278   n_cvalues = n_total_cparams - n_cparams;
  1279   cvalues = g_new (GValue, n_cvalues);
  1280   while (clist)
  1281     {
  1282       GList *tmp = clist->next;
  1283       GParamSpec *pspec = clist->data;
  1284       GValue *value = cvalues + n_total_cparams - n_cparams - 1;
  1285 
  1286       value->g_type = 0;
  1287       g_value_init (value, G_PARAM_SPEC_VALUE_TYPE (pspec));
  1288       g_param_value_set_default (pspec, value);
  1289 
  1290       cparams[n_cparams].pspec = pspec;
  1291       cparams[n_cparams].value = value;
  1292       n_cparams++;
  1293 
  1294       g_list_free_1 (clist);
  1295       clist = tmp;
  1296     }
  1297 
  1298   /* construct object from construction parameters */
  1299   object = class->constructor (object_type, n_total_cparams, cparams);
  1300   /* free construction values */
  1301   g_free (cparams);
  1302   while (n_cvalues--)
  1303     g_value_unset (cvalues + n_cvalues);
  1304   g_free (cvalues);
  1305 
  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);
  1314 
  1315   /* run 'constructed' handler if there is one */
  1316   if (newly_constructed && class->constructed)
  1317     class->constructed (object);
  1318 
  1319   /* set remaining properties */
  1320   for (i = 0; i < n_oparams; i++)
  1321     object_set_property (object, oparams[i].pspec, oparams[i].value, nqueue);
  1322   g_free (oparams);
  1323 
  1324   /* release our own freeze count and handle notifications */
  1325   if (newly_constructed || n_oparams)
  1326     g_object_notify_queue_thaw (object, nqueue);
  1327 
  1328   if (unref_class)
  1329     g_type_class_unref (unref_class);
  1330 
  1331   return object;
  1332 }
  1333 
  1334 /**
  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
  1340  *
  1341  * Creates a new instance of a #GObject subtype and sets its properties.
  1342  *
  1343  * Construction parameters (see #G_PARAM_CONSTRUCT, #G_PARAM_CONSTRUCT_ONLY)
  1344  * which are not explicitly specified are set to their default values.
  1345  *
  1346  * Returns: a new instance of @object_type
  1347  */
  1348 EXPORT_C GObject*
  1349 g_object_new_valist (GType	  object_type,
  1350 		     const gchar *first_property_name,
  1351 		     va_list	  var_args)
  1352 {
  1353   GObjectClass *class;
  1354   GParameter *params;
  1355   const gchar *name;
  1356   GObject *object;
  1357   guint n_params = 0, n_alloced_params = 16;
  1358   
  1359   g_return_val_if_fail (G_TYPE_IS_OBJECT (object_type), NULL);
  1360 
  1361   if (!first_property_name)
  1362     return g_object_newv (object_type, 0, NULL);
  1363 
  1364   class = g_type_class_ref (object_type);
  1365 
  1366   params = g_new (GParameter, n_alloced_params);
  1367   name = first_property_name;
  1368   while (name)
  1369     {
  1370       gchar *error = NULL;
  1371       GParamSpec *pspec = g_param_spec_pool_lookup (pspec_pool,
  1372 						    name,
  1373 						    object_type,
  1374 						    TRUE);
  1375       if (!pspec)
  1376 	{
  1377 	  g_warning ("%s: object class `%s' has no property named `%s'",
  1378 		     G_STRFUNC,
  1379 		     g_type_name (object_type),
  1380 		     name);
  1381 	  break;
  1382 	}
  1383       if (n_params >= n_alloced_params)
  1384 	{
  1385 	  n_alloced_params += 16;
  1386 	  params = g_renew (GParameter, params, n_alloced_params);
  1387 	}
  1388       params[n_params].name = name;
  1389       params[n_params].value.g_type = 0;
  1390       g_value_init (&params[n_params].value, G_PARAM_SPEC_VALUE_TYPE (pspec));
  1391       G_VALUE_COLLECT (&params[n_params].value, var_args, 0, &error);
  1392       if (error)
  1393 	{
  1394 	  g_warning ("%s: %s", G_STRFUNC, error);
  1395 	  g_free (error);
  1396           g_value_unset (&params[n_params].value);
  1397 	  break;
  1398 	}
  1399       n_params++;
  1400       name = va_arg (var_args, gchar*);
  1401     }
  1402 
  1403   object = g_object_newv (object_type, n_params, params);
  1404 
  1405   while (n_params--)
  1406     g_value_unset (&params[n_params].value);
  1407   g_free (params);
  1408 
  1409   g_type_class_unref (class);
  1410 
  1411   return object;
  1412 }
  1413 
  1414 static GObject*
  1415 g_object_constructor (GType                  type,
  1416 		      guint                  n_construct_properties,
  1417 		      GObjectConstructParam *construct_params)
  1418 {
  1419   GObject *object;
  1420 
  1421   /* create object */
  1422   object = (GObject*) g_type_create_instance (type);
  1423   
  1424   /* set construction parameters */
  1425   if (n_construct_properties)
  1426     {
  1427       GObjectNotifyQueue *nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
  1428       
  1429       /* set construct properties */
  1430       while (n_construct_properties--)
  1431 	{
  1432 	  GValue *value = construct_params->value;
  1433 	  GParamSpec *pspec = construct_params->pspec;
  1434 
  1435 	  construct_params++;
  1436 	  object_set_property (object, pspec, value, nqueue);
  1437 	}
  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
  1441        * care of that
  1442        */
  1443     }
  1444 
  1445   return object;
  1446 }
  1447 
  1448 /**
  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
  1454  *
  1455  * Sets properties on an object.
  1456  */
  1457 EXPORT_C void
  1458 g_object_set_valist (GObject	 *object,
  1459 		     const gchar *first_property_name,
  1460 		     va_list	  var_args)
  1461 {
  1462   GObjectNotifyQueue *nqueue;
  1463   const gchar *name;
  1464   
  1465   g_return_if_fail (G_IS_OBJECT (object));
  1466   
  1467   g_object_ref (object);
  1468   nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
  1469   
  1470   name = first_property_name;
  1471   while (name)
  1472     {
  1473       GValue value = { 0, };
  1474       GParamSpec *pspec;
  1475       gchar *error = NULL;
  1476       
  1477       pspec = g_param_spec_pool_lookup (pspec_pool,
  1478 					name,
  1479 					G_OBJECT_TYPE (object),
  1480 					TRUE);
  1481       if (!pspec)
  1482 	{
  1483 	  g_warning ("%s: object class `%s' has no property named `%s'",
  1484 		     G_STRFUNC,
  1485 		     G_OBJECT_TYPE_NAME (object),
  1486 		     name);
  1487 	  break;
  1488 	}
  1489       if (!(pspec->flags & G_PARAM_WRITABLE))
  1490 	{
  1491 	  g_warning ("%s: property `%s' of object class `%s' is not writable",
  1492 		     G_STRFUNC,
  1493 		     pspec->name,
  1494 		     G_OBJECT_TYPE_NAME (object));
  1495 	  break;
  1496 	}
  1497       if ((pspec->flags & G_PARAM_CONSTRUCT_ONLY) && !object_in_construction_list (object))
  1498         {
  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));
  1501           break;
  1502         }
  1503 
  1504       g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
  1505       
  1506       G_VALUE_COLLECT (&value, var_args, 0, &error);
  1507       if (error)
  1508 	{
  1509 	  g_warning ("%s: %s", G_STRFUNC, error);
  1510 	  g_free (error);
  1511           g_value_unset (&value);
  1512 	  break;
  1513 	}
  1514       
  1515       object_set_property (object, pspec, &value, nqueue);
  1516       g_value_unset (&value);
  1517       
  1518       name = va_arg (var_args, gchar*);
  1519     }
  1520 
  1521   g_object_notify_queue_thaw (object, nqueue);
  1522   g_object_unref (object);
  1523 }
  1524 
  1525 /**
  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
  1531  *
  1532  * Gets properties of an object.
  1533  *
  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().
  1537  *
  1538  * See g_object_get().
  1539  */
  1540 EXPORT_C void
  1541 g_object_get_valist (GObject	 *object,
  1542 		     const gchar *first_property_name,
  1543 		     va_list	  var_args)
  1544 {
  1545   const gchar *name;
  1546   
  1547   g_return_if_fail (G_IS_OBJECT (object));
  1548   
  1549   g_object_ref (object);
  1550   
  1551   name = first_property_name;
  1552   
  1553   while (name)
  1554     {
  1555       GValue value = { 0, };
  1556       GParamSpec *pspec;
  1557       gchar *error;
  1558       
  1559       pspec = g_param_spec_pool_lookup (pspec_pool,
  1560 					name,
  1561 					G_OBJECT_TYPE (object),
  1562 					TRUE);
  1563       if (!pspec)
  1564 	{
  1565 	  g_warning ("%s: object class `%s' has no property named `%s'",
  1566 		     G_STRFUNC,
  1567 		     G_OBJECT_TYPE_NAME (object),
  1568 		     name);
  1569 	  break;
  1570 	}
  1571       if (!(pspec->flags & G_PARAM_READABLE))
  1572 	{
  1573 	  g_warning ("%s: property `%s' of object class `%s' is not readable",
  1574 		     G_STRFUNC,
  1575 		     pspec->name,
  1576 		     G_OBJECT_TYPE_NAME (object));
  1577 	  break;
  1578 	}
  1579       
  1580       g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
  1581       
  1582       object_get_property (object, pspec, &value);
  1583       
  1584       G_VALUE_LCOPY (&value, var_args, 0, &error);
  1585       if (error)
  1586 	{
  1587 	  g_warning ("%s: %s", G_STRFUNC, error);
  1588 	  g_free (error);
  1589 	  g_value_unset (&value);
  1590 	  break;
  1591 	}
  1592       
  1593       g_value_unset (&value);
  1594       
  1595       name = va_arg (var_args, gchar*);
  1596     }
  1597   
  1598   g_object_unref (object);
  1599 }
  1600 
  1601 /**
  1602  * g_object_set:
  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
  1607  *
  1608  * Sets properties on an object.
  1609  */
  1610 EXPORT_C void
  1611 g_object_set (gpointer     _object,
  1612 	      const gchar *first_property_name,
  1613 	      ...)
  1614 {
  1615   GObject *object = _object;
  1616   va_list var_args;
  1617   
  1618   g_return_if_fail (G_IS_OBJECT (object));
  1619   
  1620   va_start (var_args, first_property_name);
  1621   g_object_set_valist (object, first_property_name, var_args);
  1622   va_end (var_args);
  1623 }
  1624 
  1625 /**
  1626  * g_object_get:
  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
  1631  *
  1632  * Gets properties of an object.
  1633  *
  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().
  1637  *
  1638  * <example>
  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:
  1643  * <programlisting>
  1644  *  gint intval;
  1645  *  gchar *strval;
  1646  *  GObject *objval;
  1647  *
  1648  *  g_object_get (my_object,
  1649  *                "int-property", &intval,
  1650  *                "str-property", &strval,
  1651  *                "obj-property", &objval,
  1652  *                NULL);
  1653  *
  1654  *  // Do something with intval, strval, objval
  1655  *
  1656  *  g_free (strval);
  1657  *  g_object_unref (objval);
  1658  * </programlisting>
  1659  * </example>
  1660  */
  1661 EXPORT_C void
  1662 g_object_get (gpointer     _object,
  1663 	      const gchar *first_property_name,
  1664 	      ...)
  1665 {
  1666   GObject *object = _object;
  1667   va_list var_args;
  1668   
  1669   g_return_if_fail (G_IS_OBJECT (object));
  1670   
  1671   va_start (var_args, first_property_name);
  1672   g_object_get_valist (object, first_property_name, var_args);
  1673   va_end (var_args);
  1674 }
  1675 
  1676 /**
  1677  * g_object_set_property:
  1678  * @object: a #GObject
  1679  * @property_name: the name of the property to set
  1680  * @value: the value
  1681  *
  1682  * Sets a property on an object.
  1683  */
  1684 EXPORT_C void
  1685 g_object_set_property (GObject	    *object,
  1686 		       const gchar  *property_name,
  1687 		       const GValue *value)
  1688 {
  1689   GObjectNotifyQueue *nqueue;
  1690   GParamSpec *pspec;
  1691   
  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));
  1695   
  1696   g_object_ref (object);
  1697   nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
  1698   
  1699   pspec = g_param_spec_pool_lookup (pspec_pool,
  1700 				    property_name,
  1701 				    G_OBJECT_TYPE (object),
  1702 				    TRUE);
  1703   if (!pspec)
  1704     g_warning ("%s: object class `%s' has no property named `%s'",
  1705 	       G_STRFUNC,
  1706 	       G_OBJECT_TYPE_NAME (object),
  1707 	       property_name);
  1708   else if (!(pspec->flags & G_PARAM_WRITABLE))
  1709     g_warning ("%s: property `%s' of object class `%s' is not writable",
  1710                G_STRFUNC,
  1711                pspec->name,
  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));
  1716   else
  1717     object_set_property (object, pspec, value, nqueue);
  1718   
  1719   g_object_notify_queue_thaw (object, nqueue);
  1720   g_object_unref (object);
  1721 }
  1722 
  1723 /**
  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
  1728  *
  1729  * Gets a property of an object.
  1730  *
  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().
  1733  *
  1734  * Note that g_object_get_property() is really intended for language
  1735  * bindings, g_object_get() is much more convenient for C programming.
  1736  */
  1737 EXPORT_C void
  1738 g_object_get_property (GObject	   *object,
  1739 		       const gchar *property_name,
  1740 		       GValue	   *value)
  1741 {
  1742   GParamSpec *pspec;
  1743   
  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));
  1747   
  1748   g_object_ref (object);
  1749   
  1750   pspec = g_param_spec_pool_lookup (pspec_pool,
  1751 				    property_name,
  1752 				    G_OBJECT_TYPE (object),
  1753 				    TRUE);
  1754   if (!pspec)
  1755     g_warning ("%s: object class `%s' has no property named `%s'",
  1756 	       G_STRFUNC,
  1757 	       G_OBJECT_TYPE_NAME (object),
  1758 	       property_name);
  1759   else if (!(pspec->flags & G_PARAM_READABLE))
  1760     g_warning ("%s: property `%s' of object class `%s' is not readable",
  1761                G_STRFUNC,
  1762                pspec->name,
  1763                G_OBJECT_TYPE_NAME (object));
  1764   else
  1765     {
  1766       GValue *prop_value, tmp_value = { 0, };
  1767       
  1768       /* auto-conversion of the callers value type
  1769        */
  1770       if (G_VALUE_TYPE (value) == G_PARAM_SPEC_VALUE_TYPE (pspec))
  1771 	{
  1772 	  g_value_reset (value);
  1773 	  prop_value = value;
  1774 	}
  1775       else if (!g_value_type_transformable (G_PARAM_SPEC_VALUE_TYPE (pspec), G_VALUE_TYPE (value)))
  1776 	{
  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);
  1782 	  return;
  1783 	}
  1784       else
  1785 	{
  1786 	  g_value_init (&tmp_value, G_PARAM_SPEC_VALUE_TYPE (pspec));
  1787 	  prop_value = &tmp_value;
  1788 	}
  1789       object_get_property (object, pspec, prop_value);
  1790       if (prop_value != value)
  1791 	{
  1792 	  g_value_transform (prop_value, value);
  1793 	  g_value_unset (&tmp_value);
  1794 	}
  1795     }
  1796   
  1797   g_object_unref (object);
  1798 }
  1799 
  1800 /**
  1801  * g_object_connect:
  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
  1807  *
  1808  * A convenience function to connect multiple signals at once.
  1809  *
  1810  * The signal specs expected by this function have the form
  1811  * "modifier::signal_name", where modifier can be one of the following:
  1812  * <variablelist>
  1813  * <varlistentry>
  1814  * <term>signal</term>
  1815  * <listitem><para>
  1816  * equivalent to <literal>g_signal_connect_data (..., NULL, 0)</literal>
  1817  * </para></listitem>
  1818  * </varlistentry>
  1819  * <varlistentry>
  1820  * <term>object_signal</term>
  1821  * <term>object-signal</term>
  1822  * <listitem><para>
  1823  * equivalent to <literal>g_signal_connect_object (..., 0)</literal>
  1824  * </para></listitem>
  1825  * </varlistentry>
  1826  * <varlistentry>
  1827  * <term>swapped_signal</term>
  1828  * <term>swapped-signal</term>
  1829  * <listitem><para>
  1830  * equivalent to <literal>g_signal_connect_data (..., NULL, G_CONNECT_SWAPPED)</literal>
  1831  * </para></listitem>
  1832  * </varlistentry>
  1833  * <varlistentry>
  1834  * <term>swapped_object_signal</term>
  1835  * <term>swapped-object-signal</term>
  1836  * <listitem><para>
  1837  * equivalent to <literal>g_signal_connect_object (..., G_CONNECT_SWAPPED)</literal>
  1838  * </para></listitem>
  1839  * </varlistentry>
  1840  * <varlistentry>
  1841  * <term>signal_after</term>
  1842  * <term>signal-after</term>
  1843  * <listitem><para>
  1844  * equivalent to <literal>g_signal_connect_data (..., NULL, G_CONNECT_AFTER)</literal>
  1845  * </para></listitem>
  1846  * </varlistentry>
  1847  * <varlistentry>
  1848  * <term>object_signal_after</term>
  1849  * <term>object-signal-after</term>
  1850  * <listitem><para>
  1851  * equivalent to <literal>g_signal_connect_object (..., G_CONNECT_AFTER)</literal>
  1852  * </para></listitem>
  1853  * </varlistentry>
  1854  * <varlistentry>
  1855  * <term>swapped_signal_after</term>
  1856  * <term>swapped-signal-after</term>
  1857  * <listitem><para>
  1858  * equivalent to <literal>g_signal_connect_data (..., NULL, G_CONNECT_SWAPPED | G_CONNECT_AFTER)</literal>
  1859  * </para></listitem>
  1860  * </varlistentry>
  1861  * <varlistentry>
  1862  * <term>swapped_object_signal_after</term>
  1863  * <term>swapped-object-signal-after</term>
  1864  * <listitem><para>
  1865  * equivalent to <literal>g_signal_connect_object (..., G_CONNECT_SWAPPED | G_CONNECT_AFTER)</literal>
  1866  * </para></listitem>
  1867  * </varlistentry>
  1868  * </variablelist>
  1869  *
  1870  * |[
  1871  *   menu->toplevel = g_object_connect (g_object_new (GTK_TYPE_WINDOW,
  1872  * 						   "type", GTK_WINDOW_POPUP,
  1873  * 						   "child", menu,
  1874  * 						   NULL),
  1875  * 				     "signal::event", gtk_menu_window_event, menu,
  1876  * 				     "signal::size_request", gtk_menu_window_size_request, menu,
  1877  * 				     "signal::destroy", gtk_widget_destroyed, &amp;menu-&gt;toplevel,
  1878  * 				     NULL);
  1879  * ]|
  1880  *
  1881  * Returns: @object
  1882  */
  1883 EXPORT_C gpointer
  1884 g_object_connect (gpointer     _object,
  1885 		  const gchar *signal_spec,
  1886 		  ...)
  1887 {
  1888   GObject *object = _object;
  1889   va_list var_args;
  1890 
  1891   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
  1892   g_return_val_if_fail (object->ref_count > 0, object);
  1893 
  1894   va_start (var_args, signal_spec);
  1895   while (signal_spec)
  1896     {
  1897       GCallback callback = va_arg (var_args, GCallback);
  1898       gpointer data = va_arg (var_args, gpointer);
  1899       gulong sid;
  1900 
  1901       if (strncmp (signal_spec, "signal::", 8) == 0)
  1902 	sid = g_signal_connect_data (object, signal_spec + 8,
  1903 				     callback, data, NULL,
  1904 				     0);
  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,
  1908 				       callback, data,
  1909 				       0);
  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,
  1914 				     G_CONNECT_SWAPPED);
  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,
  1918 				       callback, data,
  1919 				       G_CONNECT_SWAPPED);
  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,
  1924 				     G_CONNECT_AFTER);
  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,
  1928 				       callback, data,
  1929 				       G_CONNECT_AFTER);
  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,
  1938 				       callback, data,
  1939 				       G_CONNECT_SWAPPED | G_CONNECT_AFTER);
  1940       else
  1941 	{
  1942 	  g_warning ("%s: invalid signal spec \"%s\"", G_STRFUNC, signal_spec);
  1943 	  break;
  1944 	}
  1945       signal_spec = va_arg (var_args, gchar*);
  1946     }
  1947   va_end (var_args);
  1948 
  1949   return object;
  1950 }
  1951 
  1952 /**
  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,
  1958  *  followed by %NULL
  1959  *
  1960  * A convenience function to disconnect multiple signals at once.
  1961  *
  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".
  1966  */
  1967 EXPORT_C void
  1968 g_object_disconnect (gpointer     _object,
  1969 		     const gchar *signal_spec,
  1970 		     ...)
  1971 {
  1972   GObject *object = _object;
  1973   va_list var_args;
  1974 
  1975   g_return_if_fail (G_IS_OBJECT (object));
  1976   g_return_if_fail (object->ref_count > 0);
  1977 
  1978   va_start (var_args, signal_spec);
  1979   while (signal_spec)
  1980     {
  1981       GCallback callback = va_arg (var_args, GCallback);
  1982       gpointer data = va_arg (var_args, gpointer);
  1983       guint sid = 0, detail = 0, mask = 0;
  1984 
  1985       if (strncmp (signal_spec, "any_signal::", 12) == 0 ||
  1986           strncmp (signal_spec, "any-signal::", 12) == 0)
  1987 	{
  1988 	  signal_spec += 12;
  1989 	  mask = G_SIGNAL_MATCH_ID | G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA;
  1990 	}
  1991       else if (strcmp (signal_spec, "any_signal") == 0 ||
  1992                strcmp (signal_spec, "any-signal") == 0)
  1993 	{
  1994 	  signal_spec += 10;
  1995 	  mask = G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA;
  1996 	}
  1997       else
  1998 	{
  1999 	  g_warning ("%s: invalid signal spec \"%s\"", G_STRFUNC, signal_spec);
  2000 	  break;
  2001 	}
  2002 
  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),
  2007 						      sid, detail,
  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*);
  2011     }
  2012   va_end (var_args);
  2013 }
  2014 
  2015 typedef struct {
  2016   GObject *object;
  2017   guint n_weak_refs;
  2018   struct {
  2019     GWeakNotify notify;
  2020     gpointer    data;
  2021   } weak_refs[1];  /* flexible array */
  2022 } WeakRefStack;
  2023 
  2024 static void
  2025 weak_refs_notify (gpointer data)
  2026 {
  2027   WeakRefStack *wstack = data;
  2028   guint i;
  2029 
  2030   for (i = 0; i < wstack->n_weak_refs; i++)
  2031     wstack->weak_refs[i].notify (wstack->weak_refs[i].data, wstack->object);
  2032   g_free (wstack);
  2033 }
  2034 
  2035 /**
  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
  2040  *
  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).
  2046  */
  2047 EXPORT_C void
  2048 g_object_weak_ref (GObject    *object,
  2049 		   GWeakNotify notify,
  2050 		   gpointer    data)
  2051 {
  2052   WeakRefStack *wstack;
  2053   guint i;
  2054   
  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);
  2058 
  2059   wstack = g_datalist_id_remove_no_notify (&object->qdata, quark_weak_refs);
  2060   if (wstack)
  2061     {
  2062       i = wstack->n_weak_refs++;
  2063       wstack = g_realloc (wstack, sizeof (*wstack) + sizeof (wstack->weak_refs[0]) * i);
  2064     }
  2065   else
  2066     {
  2067       wstack = g_renew (WeakRefStack, NULL, 1);
  2068       wstack->object = object;
  2069       wstack->n_weak_refs = 1;
  2070       i = 0;
  2071     }
  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);
  2075 }
  2076 
  2077 /**
  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
  2082  *
  2083  * Removes a weak reference callback to an object.
  2084  */
  2085 EXPORT_C void
  2086 g_object_weak_unref (GObject    *object,
  2087 		     GWeakNotify notify,
  2088 		     gpointer    data)
  2089 {
  2090   WeakRefStack *wstack;
  2091   gboolean found_one = FALSE;
  2092 
  2093   g_return_if_fail (G_IS_OBJECT (object));
  2094   g_return_if_fail (notify != NULL);
  2095 
  2096   wstack = g_datalist_id_get_data (&object->qdata, quark_weak_refs);
  2097   if (wstack)
  2098     {
  2099       guint i;
  2100 
  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)
  2104 	  {
  2105 	    found_one = TRUE;
  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];
  2109 
  2110 	    break;
  2111 	  }
  2112     }
  2113   if (!found_one)
  2114     g_warning ("%s: couldn't find weak ref %p(%p)", G_STRFUNC, notify, data);
  2115 }
  2116 
  2117 /**
  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.
  2121  *
  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.
  2126  */
  2127 EXPORT_C void
  2128 g_object_add_weak_pointer (GObject  *object, 
  2129                            gpointer *weak_pointer_location)
  2130 {
  2131   g_return_if_fail (G_IS_OBJECT (object));
  2132   g_return_if_fail (weak_pointer_location != NULL);
  2133 
  2134   g_object_weak_ref (object, 
  2135                      (GWeakNotify) g_nullify_pointer, 
  2136                      weak_pointer_location);
  2137 }
  2138 
  2139 /**
  2140  * g_object_remove_weak_pointer:
  2141  * @object: The object that is weak referenced.
  2142  * @weak_pointer_location: The memory address of a pointer.
  2143  *
  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().
  2147  */
  2148 EXPORT_C void
  2149 g_object_remove_weak_pointer (GObject  *object, 
  2150                               gpointer *weak_pointer_location)
  2151 {
  2152   g_return_if_fail (G_IS_OBJECT (object));
  2153   g_return_if_fail (weak_pointer_location != NULL);
  2154 
  2155   g_object_weak_unref (object, 
  2156                        (GWeakNotify) g_nullify_pointer, 
  2157                        weak_pointer_location);
  2158 }
  2159 
  2160 #if EMULATOR
  2161 guint
  2162 object_floating_flag_handler (GObject        *object,
  2163                               gint            job)
  2164 #else
  2165 static guint
  2166 object_floating_flag_handler (GObject        *object,
  2167                               gint            job)
  2168 #endif /* EMULATOR */
  2169 {
  2170   switch (job)
  2171     {
  2172       gpointer oldvalue;
  2173     case +1:    /* force floating if possible */
  2174       do
  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 */
  2180       do
  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);
  2187     }
  2188 }
  2189 
  2190 /**
  2191  * g_object_is_floating:
  2192  * @object: a #GObject
  2193  *
  2194  * Checks wether @object has a <link linkend="floating-ref">floating</link>
  2195  * reference.
  2196  *
  2197  * Since: 2.10
  2198  *
  2199  * Returns: %TRUE if @object has a floating reference
  2200  */
  2201 EXPORT_C gboolean
  2202 g_object_is_floating (gpointer _object)
  2203 {
  2204   GObject *object = _object;
  2205   g_return_val_if_fail (G_IS_OBJECT (object), FALSE);
  2206   return floating_flag_handler (object, 0);
  2207 }
  2208 
  2209 /**
  2210  * g_object_ref_sink:
  2211  * @object: a #GObject
  2212  *
  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.
  2216  *
  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.
  2222  *
  2223  * Since: 2.10
  2224  *
  2225  * Returns: @object
  2226  */
  2227 EXPORT_C gpointer
  2228 g_object_ref_sink (gpointer _object)
  2229 {
  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);
  2236   if (was_floating)
  2237     g_object_unref (object);
  2238   return object;
  2239 }
  2240 
  2241 /**
  2242  * g_object_force_floating:
  2243  * @object: a #GObject
  2244  *
  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().
  2250  *
  2251  * Since: 2.10
  2252  */
  2253 EXPORT_C void
  2254 g_object_force_floating (GObject *object)
  2255 {
  2256   gboolean was_floating;
  2257   g_return_if_fail (G_IS_OBJECT (object));
  2258   g_return_if_fail (object->ref_count >= 1);
  2259 
  2260   was_floating = floating_flag_handler (object, +1);
  2261 }
  2262 
  2263 typedef struct {
  2264   GObject *object;
  2265   guint n_toggle_refs;
  2266   struct {
  2267     GToggleNotify notify;
  2268     gpointer    data;
  2269   } toggle_refs[1];  /* flexible array */
  2270 } ToggleRefStack;
  2271 
  2272 static void
  2273 toggle_refs_notify (GObject *object,
  2274 		    gboolean is_last_ref)
  2275 {
  2276   ToggleRefStack *tstack = g_datalist_id_get_data (&object->qdata, quark_toggle_refs);
  2277 
  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.
  2280    */
  2281   g_assert (tstack->n_toggle_refs == 1);
  2282   tstack->toggle_refs[0].notify (tstack->toggle_refs[0].data, tstack->object, is_last_ref);
  2283 }
  2284 
  2285 /**
  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
  2292  *
  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.
  2297  *
  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.
  2303  *
  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).
  2311  *
  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.
  2315  *
  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.
  2321  *
  2322  * Since: 2.8
  2323  */
  2324 EXPORT_C void
  2325 g_object_add_toggle_ref (GObject       *object,
  2326 			 GToggleNotify  notify,
  2327 			 gpointer       data)
  2328 {
  2329   ToggleRefStack *tstack;
  2330   guint i;
  2331   
  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);
  2335 
  2336   g_object_ref (object);
  2337 
  2338   tstack = g_datalist_id_remove_no_notify (&object->qdata, quark_toggle_refs);
  2339   if (tstack)
  2340     {
  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);
  2345     }
  2346   else
  2347     {
  2348       tstack = g_renew (ToggleRefStack, NULL, 1);
  2349       tstack->object = object;
  2350       tstack->n_toggle_refs = 1;
  2351       i = 0;
  2352     }
  2353 
  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);
  2357   
  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);
  2362 }
  2363 
  2364 /**
  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
  2371  *
  2372  * Removes a reference added with g_object_add_toggle_ref(). The
  2373  * reference count of the object is decreased by one.
  2374  *
  2375  * Since: 2.8
  2376  */
  2377 EXPORT_C void
  2378 g_object_remove_toggle_ref (GObject       *object,
  2379 			    GToggleNotify  notify,
  2380 			    gpointer       data)
  2381 {
  2382   ToggleRefStack *tstack;
  2383   gboolean found_one = FALSE;
  2384 
  2385   g_return_if_fail (G_IS_OBJECT (object));
  2386   g_return_if_fail (notify != NULL);
  2387 
  2388   tstack = g_datalist_id_get_data (&object->qdata, quark_toggle_refs);
  2389   if (tstack)
  2390     {
  2391       guint i;
  2392 
  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)
  2396 	  {
  2397 	    found_one = TRUE;
  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];
  2401 
  2402 	    if (tstack->n_toggle_refs == 0)
  2403 	      g_datalist_unset_flags (&object->qdata, OBJECT_HAS_TOGGLE_REF_FLAG);
  2404 
  2405 	    g_object_unref (object);
  2406 	    
  2407 	    break;
  2408 	  }
  2409     }
  2410   
  2411   if (!found_one)
  2412     g_warning ("%s: couldn't find toggle ref %p(%p)", G_STRFUNC, notify, data);
  2413 }
  2414 
  2415 /**
  2416  * g_object_ref:
  2417  * @object: a #GObject
  2418  *
  2419  * Increases the reference count of @object.
  2420  *
  2421  * Returns: the same @object
  2422  */
  2423 EXPORT_C gpointer
  2424 g_object_ref (gpointer _object)
  2425 {
  2426   GObject *object = _object;
  2427   gint old_val;
  2428 
  2429   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
  2430   g_return_val_if_fail (object->ref_count > 0, NULL);
  2431   
  2432 #ifdef  G_ENABLE_DEBUG
  2433   if (g_trap_object_ref == object)
  2434     G_BREAKPOINT ();
  2435 #endif  /* G_ENABLE_DEBUG */
  2436 
  2437 
  2438   old_val = g_atomic_int_exchange_and_add ((int *)&object->ref_count, 1);
  2439 
  2440   if (old_val == 1 && OBJECT_HAS_TOGGLE_REF (object))
  2441     toggle_refs_notify (object, FALSE);
  2442   
  2443   return object;
  2444 }
  2445 
  2446 /**
  2447  * g_object_unref:
  2448  * @object: a #GObject
  2449  *
  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).
  2452  */
  2453 EXPORT_C void
  2454 g_object_unref (gpointer _object)
  2455 {
  2456   GObject *object = _object;
  2457   gint old_ref;
  2458   gboolean is_zero;
  2459   
  2460   g_return_if_fail (G_IS_OBJECT (object));
  2461   g_return_if_fail (object->ref_count > 0);
  2462   
  2463 #ifdef  G_ENABLE_DEBUG
  2464   if (g_trap_object_ref == object)
  2465     G_BREAKPOINT ();
  2466 #endif  /* G_ENABLE_DEBUG */
  2467 
  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);
  2471   if (old_ref > 1)
  2472     {
  2473       if (!g_atomic_int_compare_and_exchange ((int *)&object->ref_count, old_ref, old_ref - 1))
  2474 	goto retry_atomic_decrement1;
  2475 
  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);
  2479     }
  2480   else
  2481     {
  2482       /* we are about tp remove the last reference */
  2483       G_OBJECT_GET_CLASS (object)->dispose (object);
  2484 
  2485       /* may have been re-referenced meanwhile */
  2486     retry_atomic_decrement2:
  2487       old_ref = g_atomic_int_get ((int *)&object->ref_count);
  2488       if (old_ref > 1)
  2489         {
  2490           if (!g_atomic_int_compare_and_exchange ((int *)&object->ref_count, old_ref, old_ref - 1))
  2491 	    goto retry_atomic_decrement2;
  2492 
  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);
  2496           
  2497 	  return;
  2498 	}
  2499       
  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);
  2504       
  2505       /* decrement the last reference */
  2506       is_zero = g_atomic_int_dec_and_test ((int *)&object->ref_count);
  2507       
  2508       /* may have been re-referenced meanwhile */
  2509       if (G_LIKELY (is_zero)) 
  2510 	{
  2511           G_OBJECT_GET_CLASS (object)->finalize (object);
  2512 #ifdef	G_ENABLE_DEBUG
  2513           IF_DEBUG (OBJECTS)
  2514 	    {
  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);
  2519 	    }
  2520 #endif	/* G_ENABLE_DEBUG */
  2521           g_type_free_instance ((GTypeInstance*) object);
  2522 	}
  2523     }
  2524 }
  2525 
  2526 /**
  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
  2530  * 
  2531  * This function gets back user data pointers stored via
  2532  * g_object_set_qdata().
  2533  * 
  2534  * Returns: The user data pointer set, or %NULL
  2535  */
  2536 EXPORT_C gpointer
  2537 g_object_get_qdata (GObject *object,
  2538 		    GQuark   quark)
  2539 {
  2540   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
  2541   
  2542   return quark ? g_datalist_id_get_data (&object->qdata, quark) : NULL;
  2543 }
  2544 
  2545 /**
  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
  2550  *
  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.
  2559  */
  2560 EXPORT_C void
  2561 g_object_set_qdata (GObject *object,
  2562 		    GQuark   quark,
  2563 		    gpointer data)
  2564 {
  2565   g_return_if_fail (G_IS_OBJECT (object));
  2566   g_return_if_fail (quark > 0);
  2567   
  2568   g_datalist_id_set_data (&object->qdata, quark, data);
  2569 }
  2570 
  2571 /**
  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
  2577  *           needs to be freed
  2578  *
  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.
  2584  */
  2585 EXPORT_C void
  2586 g_object_set_qdata_full (GObject       *object,
  2587 			 GQuark		quark,
  2588 			 gpointer	data,
  2589 			 GDestroyNotify destroy)
  2590 {
  2591   g_return_if_fail (G_IS_OBJECT (object));
  2592   g_return_if_fail (quark > 0);
  2593   
  2594   g_datalist_id_set_data_full (&object->qdata, quark, data,
  2595 			       data ? destroy : (GDestroyNotify) NULL);
  2596 }
  2597 
  2598 /**
  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
  2602  *
  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
  2606  * set).
  2607  * Usually, calling this function is only required to update
  2608  * user data pointers with a destroy notifier, for example:
  2609  * |[
  2610  * void
  2611  * object_add_to_user_list (GObject     *object,
  2612  *                          const gchar *new_string)
  2613  * {
  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);
  2618  *
  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);
  2623  * }
  2624  * static void
  2625  * free_string_list (gpointer data)
  2626  * {
  2627  *   GList *node, *list = data;
  2628  *
  2629  *   for (node = list; node; node = node->next)
  2630  *     g_free (node->data);
  2631  *   g_list_free (list);
  2632  * }
  2633  * ]|
  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().
  2638  *
  2639  * Returns: The user data pointer set, or %NULL
  2640  */
  2641 EXPORT_C gpointer
  2642 g_object_steal_qdata (GObject *object,
  2643 		      GQuark   quark)
  2644 {
  2645   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
  2646   g_return_val_if_fail (quark > 0, NULL);
  2647   
  2648   return g_datalist_id_remove_no_notify (&object->qdata, quark);
  2649 }
  2650 
  2651 /**
  2652  * g_object_get_data:
  2653  * @object: #GObject containing the associations
  2654  * @key: name of the key for that association
  2655  * 
  2656  * Gets a named field from the objects table of associations (see g_object_set_data()).
  2657  * 
  2658  * Returns: the data if found, or %NULL if no such data exists.
  2659  */
  2660 EXPORT_C gpointer
  2661 g_object_get_data (GObject     *object,
  2662                    const gchar *key)
  2663 {
  2664   GQuark quark;
  2665 
  2666   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
  2667   g_return_val_if_fail (key != NULL, NULL);
  2668 
  2669   quark = g_quark_try_string (key);
  2670 
  2671   return quark ? g_datalist_id_get_data (&object->qdata, quark) : NULL;
  2672 }
  2673 
  2674 /**
  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
  2679  *
  2680  * Each object carries around a table of associations from
  2681  * strings to pointers.  This function lets you set an association.
  2682  *
  2683  * If the object already had an association with that name,
  2684  * the old association will be destroyed.
  2685  */
  2686 EXPORT_C void
  2687 g_object_set_data (GObject     *object,
  2688                    const gchar *key,
  2689                    gpointer     data)
  2690 {
  2691   g_return_if_fail (G_IS_OBJECT (object));
  2692   g_return_if_fail (key != NULL);
  2693 
  2694   g_datalist_id_set_data (&object->qdata, g_quark_from_string (key), data);
  2695 }
  2696 
  2697 /**
  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
  2703  *
  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.
  2707  *
  2708  * Note that the @destroy callback is not called if @data is %NULL.
  2709  */
  2710 EXPORT_C void
  2711 g_object_set_data_full (GObject       *object,
  2712                         const gchar   *key,
  2713                         gpointer       data,
  2714                         GDestroyNotify destroy)
  2715 {
  2716   g_return_if_fail (G_IS_OBJECT (object));
  2717   g_return_if_fail (key != NULL);
  2718 
  2719   g_datalist_id_set_data_full (&object->qdata, g_quark_from_string (key), data,
  2720 			       data ? destroy : (GDestroyNotify) NULL);
  2721 }
  2722 
  2723 /**
  2724  * g_object_steal_data:
  2725  * @object: #GObject containing the associations
  2726  * @key: name of the key
  2727  *
  2728  * Remove a specified datum from the object's data associations,
  2729  * without invoking the association's destroy handler.
  2730  *
  2731  * Returns: the data if found, or %NULL if no such data exists.
  2732  */
  2733 EXPORT_C gpointer
  2734 g_object_steal_data (GObject     *object,
  2735                      const gchar *key)
  2736 {
  2737   GQuark quark;
  2738 
  2739   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
  2740   g_return_val_if_fail (key != NULL, NULL);
  2741 
  2742   quark = g_quark_try_string (key);
  2743 
  2744   return quark ? g_datalist_id_remove_no_notify (&object->qdata, quark) : NULL;
  2745 }
  2746 
  2747 static void
  2748 g_value_object_init (GValue *value)
  2749 {
  2750   value->data[0].v_pointer = NULL;
  2751 }
  2752 
  2753 static void
  2754 g_value_object_free_value (GValue *value)
  2755 {
  2756   if (value->data[0].v_pointer)
  2757     g_object_unref (value->data[0].v_pointer);
  2758 }
  2759 
  2760 static void
  2761 g_value_object_copy_value (const GValue *src_value,
  2762 			   GValue	*dest_value)
  2763 {
  2764   if (src_value->data[0].v_pointer)
  2765     dest_value->data[0].v_pointer = g_object_ref (src_value->data[0].v_pointer);
  2766   else
  2767     dest_value->data[0].v_pointer = NULL;
  2768 }
  2769 
  2770 static void
  2771 g_value_object_transform_value (const GValue *src_value,
  2772 				GValue       *dest_value)
  2773 {
  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);
  2776   else
  2777     dest_value->data[0].v_pointer = NULL;
  2778 }
  2779 
  2780 static gpointer
  2781 g_value_object_peek_pointer (const GValue *value)
  2782 {
  2783   return value->data[0].v_pointer;
  2784 }
  2785 
  2786 static gchar*
  2787 g_value_object_collect_value (GValue	  *value,
  2788 			      guint        n_collect_values,
  2789 			      GTypeCValue *collect_values,
  2790 			      guint        collect_flags)
  2791 {
  2792   if (collect_values[0].v_pointer)
  2793     {
  2794       GObject *object = collect_values[0].v_pointer;
  2795       
  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),
  2799 			    "'",
  2800 			    NULL);
  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),
  2806 			    "'",
  2807 			    NULL);
  2808       /* never honour G_VALUE_NOCOPY_CONTENTS for ref-counted types */
  2809       value->data[0].v_pointer = g_object_ref (object);
  2810     }
  2811   else
  2812     value->data[0].v_pointer = NULL;
  2813   
  2814   return NULL;
  2815 }
  2816 
  2817 static gchar*
  2818 g_value_object_lcopy_value (const GValue *value,
  2819 			    guint        n_collect_values,
  2820 			    GTypeCValue *collect_values,
  2821 			    guint        collect_flags)
  2822 {
  2823   GObject **object_p = collect_values[0].v_pointer;
  2824   
  2825   if (!object_p)
  2826     return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value));
  2827 
  2828   if (!value->data[0].v_pointer)
  2829     *object_p = NULL;
  2830   else if (collect_flags & G_VALUE_NOCOPY_CONTENTS)
  2831     *object_p = value->data[0].v_pointer;
  2832   else
  2833     *object_p = g_object_ref (value->data[0].v_pointer);
  2834   
  2835   return NULL;
  2836 }
  2837 
  2838 /**
  2839  * g_value_set_object:
  2840  * @value: a valid #GValue of %G_TYPE_OBJECT derived type
  2841  * @v_object: object value to be set
  2842  *
  2843  * Set the contents of a %G_TYPE_OBJECT derived #GValue to @v_object.
  2844  *
  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.
  2850  *
  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).
  2854  */
  2855 EXPORT_C void
  2856 g_value_set_object (GValue   *value,
  2857 		    gpointer  v_object)
  2858 {
  2859   GObject *old;
  2860 	
  2861   g_return_if_fail (G_VALUE_HOLDS_OBJECT (value));
  2862 
  2863   old = value->data[0].v_pointer;
  2864   
  2865   if (v_object)
  2866     {
  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)));
  2869 
  2870       value->data[0].v_pointer = v_object;
  2871       g_object_ref (value->data[0].v_pointer);
  2872     }
  2873   else
  2874     value->data[0].v_pointer = NULL;
  2875   
  2876   if (old)
  2877     g_object_unref (old);
  2878 }
  2879 
  2880 /**
  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
  2884  *
  2885  * This is an internal function introduced mainly for C marshallers.
  2886  *
  2887  * Deprecated: 2.4: Use g_value_take_object() instead.
  2888  */
  2889 EXPORT_C void
  2890 g_value_set_object_take_ownership (GValue  *value,
  2891 				   gpointer v_object)
  2892 {
  2893   g_value_take_object (value, v_object);
  2894 }
  2895 
  2896 /**
  2897  * g_value_take_object:
  2898  * @value: a valid #GValue of %G_TYPE_OBJECT derived type
  2899  * @v_object: object value to be set
  2900  *
  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).
  2905  *
  2906  * If you want the #GValue to hold its own reference to @v_object, use
  2907  * g_value_set_object() instead.
  2908  *
  2909  * Since: 2.4
  2910  */
  2911 EXPORT_C void
  2912 g_value_take_object (GValue  *value,
  2913 		     gpointer v_object)
  2914 {
  2915   g_return_if_fail (G_VALUE_HOLDS_OBJECT (value));
  2916 
  2917   if (value->data[0].v_pointer)
  2918     {
  2919       g_object_unref (value->data[0].v_pointer);
  2920       value->data[0].v_pointer = NULL;
  2921     }
  2922 
  2923   if (v_object)
  2924     {
  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)));
  2927 
  2928       value->data[0].v_pointer = v_object; /* we take over the reference count */
  2929     }
  2930 }
  2931 
  2932 /**
  2933  * g_value_get_object:
  2934  * @value: a valid #GValue of %G_TYPE_OBJECT derived type
  2935  * 
  2936  * Get the contents of a %G_TYPE_OBJECT derived #GValue.
  2937  * 
  2938  * Returns: object contents of @value
  2939  */
  2940 EXPORT_C gpointer
  2941 g_value_get_object (const GValue *value)
  2942 {
  2943   g_return_val_if_fail (G_VALUE_HOLDS_OBJECT (value), NULL);
  2944   
  2945   return value->data[0].v_pointer;
  2946 }
  2947 
  2948 /**
  2949  * g_value_dup_object:
  2950  * @value: a valid #GValue whose type is derived from %G_TYPE_OBJECT
  2951  *
  2952  * Get the contents of a %G_TYPE_OBJECT derived #GValue, increasing
  2953  * its reference count.
  2954  *
  2955  * Returns: object content of @value, should be unreferenced when no
  2956  *          longer needed.
  2957  */
  2958 EXPORT_C gpointer
  2959 g_value_dup_object (const GValue *value)
  2960 {
  2961   g_return_val_if_fail (G_VALUE_HOLDS_OBJECT (value), NULL);
  2962   
  2963   return value->data[0].v_pointer ? g_object_ref (value->data[0].v_pointer) : NULL;
  2964 }
  2965 
  2966 /**
  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.
  2973  *
  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.
  2977  *
  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
  2987  * be disconnected.
  2988  *
  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>
  2996  *
  2997  * Returns: the handler id.
  2998  */
  2999 EXPORT_C gulong
  3000 g_signal_connect_object (gpointer      instance,
  3001 			 const gchar  *detailed_signal,
  3002 			 GCallback     c_handler,
  3003 			 gpointer      gobject,
  3004 			 GConnectFlags connect_flags)
  3005 {
  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);
  3009 
  3010   if (gobject)
  3011     {
  3012       GClosure *closure;
  3013 
  3014       g_return_val_if_fail (G_IS_OBJECT (gobject), 0);
  3015 
  3016       closure = ((connect_flags & G_CONNECT_SWAPPED) ? g_cclosure_new_object_swap : g_cclosure_new_object) (c_handler, gobject);
  3017 
  3018       return g_signal_connect_closure (instance, detailed_signal, closure, connect_flags & G_CONNECT_AFTER);
  3019     }
  3020   else
  3021     return g_signal_connect_data (instance, detailed_signal, c_handler, NULL, NULL, connect_flags);
  3022 }
  3023 
  3024 typedef struct {
  3025   GObject  *object;
  3026   guint     n_closures;
  3027   GClosure *closures[1]; /* flexible array */
  3028 } CArray;
  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)
  3032  * {
  3033  *   CArray *carray;
  3034  *   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
  3035  *   carray = g_object_get_data (object, "GObject-closure-array");
  3036  *   if (carray)
  3037  *     {
  3038  *       GSList *slist = NULL;
  3039  *       guint i;
  3040  *       for (i = 0; i < carray->n_closures; i++)
  3041  *         slist = g_slist_prepend (slist, carray->closures[i]);
  3042  *       return slist;
  3043  *     }
  3044  *   return NULL;
  3045  * }
  3046  */
  3047 
  3048 static void
  3049 object_remove_closure (gpointer  data,
  3050 		       GClosure *closure)
  3051 {
  3052   GObject *object = data;
  3053   CArray *carray = g_object_get_qdata (object, quark_closure_array);
  3054   guint i;
  3055   
  3056   for (i = 0; i < carray->n_closures; i++)
  3057     if (carray->closures[i] == closure)
  3058       {
  3059 	carray->n_closures--;
  3060 	if (i < carray->n_closures)
  3061 	  carray->closures[i] = carray->closures[carray->n_closures];
  3062 	return;
  3063       }
  3064   g_assert_not_reached ();
  3065 }
  3066 
  3067 static void
  3068 destroy_closure_array (gpointer data)
  3069 {
  3070   CArray *carray = data;
  3071   GObject *object = carray->object;
  3072   guint i, n = carray->n_closures;
  3073   
  3074   for (i = 0; i < n; i++)
  3075     {
  3076       GClosure *closure = carray->closures[i];
  3077       
  3078       /* removing object_remove_closure() upfront is probably faster than
  3079        * letting it fiddle with quark_closure_array which is empty anyways
  3080        */
  3081       g_closure_remove_invalidate_notifier (closure, object, object_remove_closure);
  3082       g_closure_invalidate (closure);
  3083     }
  3084   g_free (carray);
  3085 }
  3086 
  3087 /**
  3088  * g_object_watch_closure:
  3089  * @object: GObject restricting lifetime of @closure
  3090  * @closure: GClosure to watch
  3091  *
  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.
  3101  */
  3102 EXPORT_C void
  3103 g_object_watch_closure (GObject  *object,
  3104 			GClosure *closure)
  3105 {
  3106   CArray *carray;
  3107   guint i;
  3108   
  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 */
  3114   
  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);
  3120   if (!carray)
  3121     {
  3122       carray = g_renew (CArray, NULL, 1);
  3123       carray->object = object;
  3124       carray->n_closures = 1;
  3125       i = 0;
  3126     }
  3127   else
  3128     {
  3129       i = carray->n_closures++;
  3130       carray = g_realloc (carray, sizeof (*carray) + sizeof (carray->closures[0]) * i);
  3131     }
  3132   carray->closures[i] = closure;
  3133   g_datalist_id_set_data_full (&object->qdata, quark_closure_array, carray, destroy_closure_array);
  3134 }
  3135 
  3136 /**
  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
  3142  *
  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.
  3147  *
  3148  * Returns: a newly allocated #GClosure
  3149  */
  3150 EXPORT_C GClosure*
  3151 g_closure_new_object (guint    sizeof_closure,
  3152 		      GObject *object)
  3153 {
  3154   GClosure *closure;
  3155 
  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 */
  3158 
  3159   closure = g_closure_new_simple (sizeof_closure, object);
  3160   g_object_watch_closure (object, closure);
  3161 
  3162   return closure;
  3163 }
  3164 
  3165 /**
  3166  * g_cclosure_new_object:
  3167  * @callback_func: the function to invoke
  3168  * @object: a #GObject pointer to pass to @callback_func
  3169  *
  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.
  3175  *
  3176  * Returns: a new #GCClosure
  3177  */
  3178 EXPORT_C GClosure*
  3179 g_cclosure_new_object (GCallback callback_func,
  3180 		       GObject  *object)
  3181 {
  3182   GClosure *closure;
  3183 
  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);
  3187 
  3188   closure = g_cclosure_new (callback_func, object, NULL);
  3189   g_object_watch_closure (object, closure);
  3190 
  3191   return closure;
  3192 }
  3193 
  3194 /**
  3195  * g_cclosure_new_object_swap:
  3196  * @callback_func: the function to invoke
  3197  * @object: a #GObject pointer to pass to @callback_func
  3198  *
  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.
  3204  *
  3205  * Returns: a new #GCClosure
  3206  */
  3207 EXPORT_C GClosure*
  3208 g_cclosure_new_object_swap (GCallback callback_func,
  3209 			    GObject  *object)
  3210 {
  3211   GClosure *closure;
  3212 
  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);
  3216 
  3217   closure = g_cclosure_new_swap (callback_func, object, NULL);
  3218   g_object_watch_closure (object, closure);
  3219 
  3220   return closure;
  3221 }
  3222 
  3223 EXPORT_C gsize
  3224 g_object_compat_control (gsize           what,
  3225                          gpointer        data)
  3226 {
  3227   switch (what)
  3228     {
  3229       gpointer *pp;
  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;
  3234       return 1;
  3235     case 3:     /* FIXME: remove this once GLib/Gtk+ break ABI again */
  3236       pp = data;
  3237       *pp = (gpointer)floating_flag_handler;
  3238       return 1;
  3239     default:
  3240       return 0;
  3241     }
  3242 }
  3243 
  3244 G_DEFINE_TYPE (GInitiallyUnowned, g_initially_unowned, G_TYPE_OBJECT);
  3245 
  3246 static void
  3247 g_initially_unowned_init (GInitiallyUnowned *object)
  3248 {
  3249   g_object_force_floating (object);
  3250 }
  3251 
  3252 static void
  3253 g_initially_unowned_class_init (GInitiallyUnownedClass *klass)
  3254 {
  3255 }
  3256 
  3257 #define __G_OBJECT_C__
  3258 #include "gobjectaliasdef.c"