gobject.c (g_object_base_class_finalize): typo fix.
[platform/upstream/glib.git] / gobject / gobject.c
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2  * Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General
15  * Public License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 #include        "gobject.h"
20
21 /*
22  * MT safe
23  */
24
25 #include        "gvaluecollector.h"
26 #include        "gsignal.h"
27 #include        "gparamspecs.h"
28 #include        "gvaluetypes.h"
29 #include        "gobjectnotifyqueue.c"
30 #include        <string.h>
31
32
33 #define PREALLOC_CPARAMS        (8)
34
35
36 /* --- macros --- */
37 #define PARAM_SPEC_PARAM_ID(pspec)              ((pspec)->param_id)
38 #define PARAM_SPEC_SET_PARAM_ID(pspec, id)      ((pspec)->param_id = (id))
39
40
41 /* --- signals --- */
42 enum {
43   PROPERTIES_CHANGED,
44   NOTIFY,
45   LAST_SIGNAL
46 };
47
48
49 /* --- properties --- */
50 enum {
51   PROP_NONE
52 };
53
54
55 /* --- prototypes --- */
56 static void     g_object_base_class_init                (GObjectClass   *class);
57 static void     g_object_base_class_finalize            (GObjectClass   *class);
58 static void     g_object_do_class_init                  (GObjectClass   *class);
59 static void     g_object_init                           (GObject        *object);
60 static GObject* g_object_constructor                    (GType                  type,
61                                                          guint                  n_construct_properties,
62                                                          GObjectConstructParam *construct_params);
63 static void     g_object_last_unref                     (GObject        *object);
64 static void     g_object_real_dispose                   (GObject        *object);
65 static void     g_object_finalize                       (GObject        *object);
66 static void     g_object_do_set_property                (GObject        *object,
67                                                          guint           property_id,
68                                                          const GValue   *value,
69                                                          GParamSpec     *pspec);
70 static void     g_object_do_get_property                (GObject        *object,
71                                                          guint           property_id,
72                                                          GValue         *value,
73                                                          GParamSpec     *pspec);
74 static void     g_value_object_init                     (GValue         *value);
75 static void     g_value_object_free_value               (GValue         *value);
76 static void     g_value_object_copy_value               (const GValue   *src_value,
77                                                          GValue         *dest_value);
78 static void     g_value_object_transform_value          (const GValue   *src_value,
79                                                          GValue         *dest_value);
80 static gpointer g_value_object_peek_pointer             (const GValue   *value);
81 static gchar*   g_value_object_collect_value            (GValue         *value,
82                                                          guint           n_collect_values,
83                                                          GTypeCValue    *collect_values,
84                                                          guint           collect_flags);
85 static gchar*   g_value_object_lcopy_value              (const GValue   *value,
86                                                          guint           n_collect_values,
87                                                          GTypeCValue    *collect_values,
88                                                          guint           collect_flags);
89 static void     g_object_dispatch_properties_changed    (GObject        *object,
90                                                          guint           n_pspecs,
91                                                          GParamSpec    **pspecs);
92 static inline void         object_get_property          (GObject        *object,
93                                                          GParamSpec     *pspec,
94                                                          GValue         *value);
95 static inline void         object_set_property          (GObject        *object,
96                                                          GParamSpec     *pspec,
97                                                          const GValue   *value,
98                                                          GObjectNotifyQueue *nqueue);
99
100
101 /* --- structures --- */
102
103
104 /* --- variables --- */
105 static GQuark               quark_closure_array = 0;
106 static GQuark               quark_weak_refs = 0;
107 static GParamSpecPool      *pspec_pool = NULL;
108 static GObjectNotifyContext property_notify_context = { 0, };
109 static gulong               gobject_signals[LAST_SIGNAL] = { 0, };
110
111
112 /* --- functions --- */
113 #ifdef  G_ENABLE_DEBUG
114 #define IF_DEBUG(debug_type)    if (_g_type_debug_flags & G_TYPE_DEBUG_ ## debug_type)
115 G_LOCK_DEFINE_STATIC     (debug_objects);
116 static volatile GObject *g_trap_object_ref = NULL;
117 static guint             debug_objects_count = 0;
118 static GHashTable       *debug_objects_ht = NULL;
119 static void
120 debug_objects_foreach (gpointer key,
121                        gpointer value,
122                        gpointer user_data)
123 {
124   GObject *object = value;
125
126   g_message ("[%p] stale %s\tref_count=%u",
127              object,
128              G_OBJECT_TYPE_NAME (object),
129              object->ref_count);
130 }
131 static void
132 debug_objects_atexit (void)
133 {
134   IF_DEBUG (OBJECTS)
135     {
136       G_LOCK (debug_objects);
137       g_message ("stale GObjects: %u", debug_objects_count);
138       g_hash_table_foreach (debug_objects_ht, debug_objects_foreach, NULL);
139       G_UNLOCK (debug_objects);
140     }
141 }
142 #endif  /* G_ENABLE_DEBUG */
143
144 void
145 g_object_type_init (void)       /* sync with gtype.c */
146 {
147   static gboolean initialized = FALSE;
148   static const GTypeFundamentalInfo finfo = {
149     G_TYPE_FLAG_CLASSED | G_TYPE_FLAG_INSTANTIATABLE | G_TYPE_FLAG_DERIVABLE | G_TYPE_FLAG_DEEP_DERIVABLE,
150   };
151   static GTypeInfo info = {
152     sizeof (GObjectClass),
153     (GBaseInitFunc) g_object_base_class_init,
154     (GBaseFinalizeFunc) g_object_base_class_finalize,
155     (GClassInitFunc) g_object_do_class_init,
156     NULL        /* class_destroy */,
157     NULL        /* class_data */,
158     sizeof (GObject),
159     0           /* n_preallocs */,
160     (GInstanceInitFunc) g_object_init,
161     NULL,       /* value_table */
162   };
163   static const GTypeValueTable value_table = {
164     g_value_object_init,          /* value_init */
165     g_value_object_free_value,    /* value_free */
166     g_value_object_copy_value,    /* value_copy */
167     g_value_object_peek_pointer,  /* value_peek_pointer */
168     "p",                          /* collect_format */
169     g_value_object_collect_value, /* collect_value */
170     "p",                          /* lcopy_format */
171     g_value_object_lcopy_value,   /* lcopy_value */
172   };
173   GType type;
174   
175   g_return_if_fail (initialized == FALSE);
176   initialized = TRUE;
177   
178   /* G_TYPE_OBJECT
179    */
180   info.value_table = &value_table;
181   type = g_type_register_fundamental (G_TYPE_OBJECT, "GObject", &info, &finfo, 0);
182   g_assert (type == G_TYPE_OBJECT);
183   g_value_register_transform_func (G_TYPE_OBJECT, G_TYPE_OBJECT, g_value_object_transform_value);
184   
185 #ifdef  G_ENABLE_DEBUG
186   IF_DEBUG (OBJECTS)
187     {
188       debug_objects_ht = g_hash_table_new (g_direct_hash, NULL);
189       g_atexit (debug_objects_atexit);
190     }
191 #endif  /* G_ENABLE_DEBUG */
192 }
193
194 static void
195 g_object_base_class_init (GObjectClass *class)
196 {
197   GObjectClass *pclass = g_type_class_peek_parent (class);
198
199   /* reset instance specific fields and methods that don't get inherited */
200   class->construct_properties = pclass ? g_slist_copy (pclass->construct_properties) : NULL;
201   class->get_property = NULL;
202   class->set_property = NULL;
203 }
204
205 static void
206 g_object_base_class_finalize (GObjectClass *class)
207 {
208   GList *list, *node;
209   
210   g_message ("finalizing base class of %s", G_OBJECT_CLASS_NAME (class));
211
212   _g_signals_destroy (G_OBJECT_CLASS_TYPE (class));
213
214   g_slist_free (class->construct_properties);
215   class->construct_properties = NULL;
216   list = g_param_spec_pool_list_owned (pspec_pool, G_OBJECT_CLASS_TYPE (class));
217   for (node = list; node; node = node->next)
218     {
219       GParamSpec *pspec = node->data;
220       
221       g_param_spec_pool_remove (pspec_pool, pspec);
222       PARAM_SPEC_SET_PARAM_ID (pspec, 0);
223       g_param_spec_unref (pspec);
224     }
225   g_list_free (list);
226 }
227
228 static void
229 g_object_notify_dispatcher (GObject     *object,
230                             guint        n_pspecs,
231                             GParamSpec **pspecs)
232 {
233   G_OBJECT_GET_CLASS (object)->dispatch_properties_changed (object, n_pspecs, pspecs);
234 }
235
236 static void
237 g_object_do_class_init (GObjectClass *class)
238 {
239   quark_closure_array = g_quark_from_static_string ("GObject-closure-array");
240   quark_weak_refs = g_quark_from_static_string ("GObject-weak-references");
241   pspec_pool = g_param_spec_pool_new (TRUE);
242   property_notify_context.quark_notify_queue = g_quark_from_static_string ("GObject-notify-queue");
243   property_notify_context.dispatcher = g_object_notify_dispatcher;
244   
245   class->constructor = g_object_constructor;
246   class->set_property = g_object_do_set_property;
247   class->get_property = g_object_do_get_property;
248   class->dispose = g_object_real_dispose;
249   class->finalize = g_object_finalize;
250   class->dispatch_properties_changed = g_object_dispatch_properties_changed;
251   class->notify = NULL;
252
253   gobject_signals[NOTIFY] =
254     g_signal_new ("notify",
255                   G_TYPE_FROM_CLASS (class),
256                   G_SIGNAL_RUN_FIRST | G_SIGNAL_NO_RECURSE | G_SIGNAL_DETAILED | G_SIGNAL_NO_HOOKS,
257                   G_STRUCT_OFFSET (GObjectClass, notify),
258                   NULL, NULL,
259                   g_cclosure_marshal_VOID__PARAM,
260                   G_TYPE_NONE,
261                   1, G_TYPE_PARAM);
262 }
263
264 void
265 g_object_class_install_property (GObjectClass *class,
266                                  guint         property_id,
267                                  GParamSpec   *pspec)
268 {
269   g_return_if_fail (G_IS_OBJECT_CLASS (class));
270   g_return_if_fail (G_IS_PARAM_SPEC (pspec));
271   if (pspec->flags & G_PARAM_WRITABLE)
272     g_return_if_fail (class->set_property != NULL);
273   if (pspec->flags & G_PARAM_READABLE)
274     g_return_if_fail (class->get_property != NULL);
275   g_return_if_fail (property_id > 0);
276   g_return_if_fail (PARAM_SPEC_PARAM_ID (pspec) == 0);  /* paranoid */
277   if (pspec->flags & G_PARAM_CONSTRUCT)
278     g_return_if_fail ((pspec->flags & G_PARAM_CONSTRUCT_ONLY) == 0);
279   if (pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
280     g_return_if_fail (pspec->flags & G_PARAM_WRITABLE);
281
282   if (g_param_spec_pool_lookup (pspec_pool, pspec->name, G_OBJECT_CLASS_TYPE (class), FALSE))
283     {
284       g_warning (G_STRLOC ": class `%s' already contains a property named `%s'",
285                  G_OBJECT_CLASS_NAME (class),
286                  pspec->name);
287       return;
288     }
289
290   g_param_spec_ref (pspec);
291   g_param_spec_sink (pspec);
292   PARAM_SPEC_SET_PARAM_ID (pspec, property_id);
293   g_param_spec_pool_insert (pspec_pool, pspec, G_OBJECT_CLASS_TYPE (class));
294   if (pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
295     class->construct_properties = g_slist_prepend (class->construct_properties, pspec);
296
297   /* for property overrides of construct poperties, we have to get rid
298    * of the overidden inherited construct property
299    */
300   pspec = g_param_spec_pool_lookup (pspec_pool, pspec->name, g_type_parent (G_OBJECT_CLASS_TYPE (class)), TRUE);
301   if (pspec && pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
302     class->construct_properties = g_slist_remove (class->construct_properties, pspec);
303 }
304
305 GParamSpec*
306 g_object_class_find_property (GObjectClass *class,
307                               const gchar  *property_name)
308 {
309   g_return_val_if_fail (G_IS_OBJECT_CLASS (class), NULL);
310   g_return_val_if_fail (property_name != NULL, NULL);
311   
312   return g_param_spec_pool_lookup (pspec_pool,
313                                    property_name,
314                                    G_OBJECT_CLASS_TYPE (class),
315                                    TRUE);
316 }
317
318 GParamSpec** /* free result */
319 g_object_class_list_properties (GObjectClass *class,
320                                 guint        *n_properties_p)
321 {
322   GParamSpec **pspecs;
323   guint n;
324
325   g_return_val_if_fail (G_IS_OBJECT_CLASS (class), NULL);
326
327   pspecs = g_param_spec_pool_list (pspec_pool,
328                                    G_OBJECT_CLASS_TYPE (class),
329                                    &n);
330   if (n_properties_p)
331     *n_properties_p = n;
332
333   return pspecs;
334 }
335
336 static void
337 g_object_init (GObject *object)
338 {
339   object->ref_count = 1;
340   g_datalist_init (&object->qdata);
341   
342   /* freeze object's notification queue, g_object_newv() preserves pairedness */
343   g_object_notify_queue_freeze (object, &property_notify_context);
344   
345 #ifdef  G_ENABLE_DEBUG
346   IF_DEBUG (OBJECTS)
347     {
348       G_LOCK (debug_objects);
349       debug_objects_count++;
350       g_hash_table_insert (debug_objects_ht, object, object);
351       G_UNLOCK (debug_objects);
352     }
353 #endif  /* G_ENABLE_DEBUG */
354 }
355
356 static void
357 g_object_do_set_property (GObject      *object,
358                           guint         property_id,
359                           const GValue *value,
360                           GParamSpec   *pspec)
361 {
362   switch (property_id)
363     {
364     default:
365       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
366       break;
367     }
368 }
369
370 static void
371 g_object_do_get_property (GObject     *object,
372                           guint        property_id,
373                           GValue      *value,
374                           GParamSpec  *pspec)
375 {
376   switch (property_id)
377     {
378     default:
379       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
380       break;
381     }
382 }
383
384 static void
385 g_object_real_dispose (GObject *object)
386 {
387   guint ref_count;
388
389   g_signal_handlers_destroy (object);
390   g_datalist_id_set_data (&object->qdata, quark_closure_array, NULL);
391
392   /* yes, temporarily altering the ref_count is hackish, but that
393    * enforces people not jerking around with weak_ref notifiers
394    */
395   ref_count = object->ref_count;
396   object->ref_count = 0;
397   g_datalist_id_set_data (&object->qdata, quark_weak_refs, NULL);
398   object->ref_count = ref_count;
399 }
400
401 static void
402 g_object_finalize (GObject *object)
403 {
404   g_datalist_clear (&object->qdata);
405   
406 #ifdef  G_ENABLE_DEBUG
407   IF_DEBUG (OBJECTS)
408     {
409       G_LOCK (debug_objects);
410       g_assert (g_hash_table_lookup (debug_objects_ht, object) == object);
411       g_hash_table_remove (debug_objects_ht, object);
412       debug_objects_count--;
413       G_UNLOCK (debug_objects);
414     }
415 #endif  /* G_ENABLE_DEBUG */
416 }
417
418 static void
419 g_object_last_unref (GObject *object)
420 {
421   g_return_if_fail (object->ref_count > 0);
422   
423   if (object->ref_count == 1)   /* may have been re-referenced meanwhile */
424     G_OBJECT_GET_CLASS (object)->dispose (object);
425   
426 #ifdef  G_ENABLE_DEBUG
427   if (g_trap_object_ref == object)
428     G_BREAKPOINT ();
429 #endif  /* G_ENABLE_DEBUG */
430
431   object->ref_count -= 1;
432   
433   if (object->ref_count == 0)   /* may have been re-referenced meanwhile */
434     {
435       g_signal_handlers_destroy (object);
436       g_datalist_id_set_data (&object->qdata, quark_weak_refs, NULL);
437       G_OBJECT_GET_CLASS (object)->finalize (object);
438 #ifdef  G_ENABLE_DEBUG
439       IF_DEBUG (OBJECTS)
440         {
441           /* catch objects not chaining finalize handlers */
442           G_LOCK (debug_objects);
443           g_assert (g_hash_table_lookup (debug_objects_ht, object) == NULL);
444           G_UNLOCK (debug_objects);
445         }
446 #endif  /* G_ENABLE_DEBUG */
447       g_type_free_instance ((GTypeInstance*) object);
448     }
449 }
450
451 static void
452 g_object_dispatch_properties_changed (GObject     *object,
453                                       guint        n_pspecs,
454                                       GParamSpec **pspecs)
455 {
456   guint i;
457
458   for (i = 0; i < n_pspecs; i++)
459     g_signal_emit (object, gobject_signals[NOTIFY], g_quark_from_string (pspecs[i]->name), pspecs[i]);
460 }
461
462 void
463 g_object_run_dispose (GObject *object)
464 {
465   g_return_if_fail (G_IS_OBJECT (object));
466   g_return_if_fail (object->ref_count > 0);
467
468   g_object_ref (object);
469   G_OBJECT_GET_CLASS (object)->dispose (object);
470   g_object_unref (object);
471 }
472
473 void
474 g_object_freeze_notify (GObject *object)
475 {
476   g_return_if_fail (G_IS_OBJECT (object));
477   if (!object->ref_count)
478     return;
479
480   g_object_ref (object);
481   g_object_notify_queue_freeze (object, &property_notify_context);
482   g_object_unref (object);
483 }
484
485 void
486 g_object_notify (GObject     *object,
487                  const gchar *property_name)
488 {
489   GParamSpec *pspec;
490   
491   g_return_if_fail (G_IS_OBJECT (object));
492   g_return_if_fail (property_name != NULL);
493   if (!object->ref_count)
494     return;
495   
496   g_object_ref (object);
497   pspec = g_param_spec_pool_lookup (pspec_pool,
498                                     property_name,
499                                     G_OBJECT_TYPE (object),
500                                     TRUE);
501   if (!pspec)
502     g_warning ("%s: object class `%s' has no property named `%s'",
503                G_STRLOC,
504                G_OBJECT_TYPE_NAME (object),
505                property_name);
506   else
507     {
508       GObjectNotifyQueue *nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
509
510       g_object_notify_queue_add (object, nqueue, pspec);
511       g_object_notify_queue_thaw (object, nqueue);
512     }
513   g_object_unref (object);
514 }
515
516 void
517 g_object_thaw_notify (GObject *object)
518 {
519   GObjectNotifyQueue *nqueue;
520   
521   g_return_if_fail (G_IS_OBJECT (object));
522   if (!object->ref_count)
523     return;
524   
525   g_object_ref (object);
526   nqueue = g_object_notify_queue_from_object (object, &property_notify_context);
527   if (!nqueue || !nqueue->freeze_count)
528     g_warning (G_STRLOC ": property-changed notification for %s(%p) is not frozen",
529                G_OBJECT_TYPE_NAME (object), object);
530   else
531     g_object_notify_queue_thaw (object, nqueue);
532   g_object_unref (object);
533 }
534
535 static inline void
536 object_get_property (GObject     *object,
537                      GParamSpec  *pspec,
538                      GValue      *value)
539 {
540   GObjectClass *class = g_type_class_peek (pspec->owner_type);
541   
542   class->get_property (object, PARAM_SPEC_PARAM_ID (pspec), value, pspec);
543 }
544
545 static inline void
546 object_set_property (GObject             *object,
547                      GParamSpec          *pspec,
548                      const GValue        *value,
549                      GObjectNotifyQueue  *nqueue)
550 {
551   GValue tmp_value = { 0, };
552   GObjectClass *class = g_type_class_peek (pspec->owner_type);
553
554   /* provide a copy to work from, convert (if necessary) and validate */
555   g_value_init (&tmp_value, G_PARAM_SPEC_VALUE_TYPE (pspec));
556   if (!g_value_transform (value, &tmp_value))
557     g_warning ("unable to set property `%s' of type `%s' from value of type `%s'",
558                pspec->name,
559                g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)),
560                G_VALUE_TYPE_NAME (value));
561   else if (g_param_value_validate (pspec, &tmp_value) && !(pspec->flags & G_PARAM_LAX_VALIDATION))
562     {
563       gchar *contents = g_strdup_value_contents (value);
564
565       g_warning ("value \"%s\" of type `%s' is invalid for property `%s' of type `%s'",
566                  contents,
567                  G_VALUE_TYPE_NAME (value),
568                  pspec->name,
569                  g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)));
570       g_free (contents);
571     }
572   else
573     {
574       class->set_property (object, PARAM_SPEC_PARAM_ID (pspec), &tmp_value, pspec);
575       g_object_notify_queue_add (object, nqueue, pspec);
576     }
577   g_value_unset (&tmp_value);
578 }
579
580 gpointer
581 g_object_new (GType        object_type,
582               const gchar *first_property_name,
583               ...)
584 {
585   GObject *object;
586   va_list var_args;
587   
588   g_return_val_if_fail (G_TYPE_IS_OBJECT (object_type), NULL);
589   
590   va_start (var_args, first_property_name);
591   object = g_object_new_valist (object_type, first_property_name, var_args);
592   va_end (var_args);
593   
594   return object;
595 }
596
597 gpointer
598 g_object_newv (GType       object_type,
599                guint       n_parameters,
600                GParameter *parameters)
601 {
602   GObjectConstructParam *cparams, *oparams;
603   GObjectNotifyQueue *nqueue;
604   GObject *object;
605   GObjectClass *class;
606   GSList *slist;
607   guint n_total_cparams = 0, n_cparams = 0, n_oparams = 0, n_cvalues;
608   GValue *cvalues;
609   GList *clist = NULL;
610   guint i;
611
612   g_return_val_if_fail (G_TYPE_IS_OBJECT (object_type), NULL);
613
614   class = g_type_class_ref (object_type);
615   for (slist = class->construct_properties; slist; slist = slist->next)
616     {
617       clist = g_list_prepend (clist, slist->data);
618       n_total_cparams += 1;
619     }
620
621   /* collect parameters, sort into construction and normal ones */
622   oparams = g_new (GObjectConstructParam, n_parameters);
623   cparams = g_new (GObjectConstructParam, n_total_cparams);
624   for (i = 0; i < n_parameters; i++)
625     {
626       GValue *value = &parameters[i].value;
627       GParamSpec *pspec = g_param_spec_pool_lookup (pspec_pool,
628                                                     parameters[i].name,
629                                                     object_type,
630                                                     TRUE);
631       if (!pspec)
632         {
633           g_warning ("%s: object class `%s' has no property named `%s'",
634                      G_STRLOC,
635                      g_type_name (object_type),
636                      parameters[i].name);
637           continue;
638         }
639       if (!(pspec->flags & G_PARAM_WRITABLE))
640         {
641           g_warning ("%s: property `%s' of object class `%s' is not writable",
642                      G_STRLOC,
643                      pspec->name,
644                      g_type_name (object_type));
645           continue;
646         }
647       if (pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
648         {
649           GList *list = g_list_find (clist, pspec);
650
651           if (!list)
652             {
653               g_warning (G_STRLOC ": construct property \"%s\" for object `%s' can't be set twice",
654                          pspec->name, g_type_name (object_type));
655               continue;
656             }
657           cparams[n_cparams].pspec = pspec;
658           cparams[n_cparams].value = value;
659           n_cparams++;
660           if (!list->prev)
661             clist = list->next;
662           else
663             list->prev->next = list->next;
664           if (list->next)
665             list->next->prev = list->prev;
666           g_list_free_1 (list);
667         }
668       else
669         {
670           oparams[n_oparams].pspec = pspec;
671           oparams[n_oparams].value = value;
672           n_oparams++;
673         }
674     }
675
676   /* set remaining construction properties to default values */
677   n_cvalues = n_total_cparams - n_cparams;
678   cvalues = g_new (GValue, n_cvalues);
679   while (clist)
680     {
681       GList *tmp = clist->next;
682       GParamSpec *pspec = clist->data;
683       GValue *value = cvalues + n_total_cparams - n_cparams - 1;
684
685       value->g_type = 0;
686       g_value_init (value, G_PARAM_SPEC_VALUE_TYPE (pspec));
687       g_param_value_set_default (pspec, value);
688
689       cparams[n_cparams].pspec = pspec;
690       cparams[n_cparams].value = value;
691       n_cparams++;
692
693       g_list_free_1 (clist);
694       clist = tmp;
695     }
696
697   /* construct object from construction parameters */
698   object = class->constructor (object_type, n_total_cparams, cparams);
699
700   /* free construction values */
701   g_free (cparams);
702   while (n_cvalues--)
703     g_value_unset (cvalues + n_cvalues);
704   g_free (cvalues);
705   
706   /* release g_object_init() notification queue freeze_count */
707   nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
708   g_object_notify_queue_thaw (object, nqueue);
709   
710   /* set remaining properties */
711   for (i = 0; i < n_oparams; i++)
712     object_set_property (object, oparams[i].pspec, oparams[i].value, nqueue);
713   g_free (oparams);
714
715   g_type_class_unref (class);
716
717   /* release our own freeze count and handle notifications */
718   g_object_notify_queue_thaw (object, nqueue);
719   
720   return object;
721 }
722
723 gpointer
724 g_object_new_valist (GType        object_type,
725                      const gchar *first_property_name,
726                      va_list      var_args)
727 {
728   GObjectClass *class;
729   GParameter *params;
730   const gchar *name;
731   GObject *object;
732   guint n_params = 0, n_alloced_params = 16;
733   
734   g_return_val_if_fail (G_TYPE_IS_OBJECT (object_type), NULL);
735
736   if (!first_property_name)
737     return g_object_newv (object_type, 0, NULL);
738
739   class = g_type_class_ref (object_type);
740
741   params = g_new (GParameter, n_alloced_params);
742   name = first_property_name;
743   while (name)
744     {
745       gchar *error = NULL;
746       GParamSpec *pspec = g_param_spec_pool_lookup (pspec_pool,
747                                                     name,
748                                                     object_type,
749                                                     TRUE);
750       if (!pspec)
751         {
752           g_warning ("%s: object class `%s' has no property named `%s'",
753                      G_STRLOC,
754                      g_type_name (object_type),
755                      name);
756           break;
757         }
758       if (n_params >= n_alloced_params)
759         {
760           n_alloced_params += 16;
761           params = g_renew (GParameter, params, n_alloced_params);
762         }
763       params[n_params].name = name;
764       params[n_params].value.g_type = 0;
765       g_value_init (&params[n_params].value, G_PARAM_SPEC_VALUE_TYPE (pspec));
766       G_VALUE_COLLECT (&params[n_params].value, var_args, 0, &error);
767       if (error)
768         {
769           g_warning ("%s: %s", G_STRLOC, error);
770           g_free (error);
771
772           /* we purposely leak the value here, it might not be
773            * in a sane state if an error condition occoured
774            */
775           break;
776         }
777       n_params++;
778       name = va_arg (var_args, gchar*);
779     }
780
781   object = g_object_newv (object_type, n_params, params);
782
783   while (n_params--)
784     g_value_unset (&params[n_params].value);
785   g_free (params);
786
787   g_type_class_unref (class);
788
789   return object;
790 }
791
792 static GObject*
793 g_object_constructor (GType                  type,
794                       guint                  n_construct_properties,
795                       GObjectConstructParam *construct_params)
796 {
797   GObject *object;
798
799   /* create object */
800   object = (GObject*) g_type_create_instance (type);
801
802   /* set construction parameters */
803   if (n_construct_properties)
804     {
805       GObjectNotifyQueue *nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
806       
807       /* set construct properties */
808       while (n_construct_properties--)
809         {
810           GValue *value = construct_params->value;
811           GParamSpec *pspec = construct_params->pspec;
812
813           construct_params++;
814           object_set_property (object, pspec, value, nqueue);
815         }
816       g_object_notify_queue_thaw (object, nqueue);
817       /* the notification queue is still frozen from g_object_init(), so
818        * we don't need to handle it here, g_object_newv() takes
819        * care of that
820        */
821     }
822
823   return object;
824 }
825
826 void
827 g_object_set_valist (GObject     *object,
828                      const gchar *first_property_name,
829                      va_list      var_args)
830 {
831   GObjectNotifyQueue *nqueue;
832   const gchar *name;
833   
834   g_return_if_fail (G_IS_OBJECT (object));
835   
836   g_object_ref (object);
837   nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
838   
839   name = first_property_name;
840   while (name)
841     {
842       GValue value = { 0, };
843       GParamSpec *pspec;
844       gchar *error = NULL;
845       
846       pspec = g_param_spec_pool_lookup (pspec_pool,
847                                         name,
848                                         G_OBJECT_TYPE (object),
849                                         TRUE);
850       if (!pspec)
851         {
852           g_warning ("%s: object class `%s' has no property named `%s'",
853                      G_STRLOC,
854                      G_OBJECT_TYPE_NAME (object),
855                      name);
856           break;
857         }
858       if (!(pspec->flags & G_PARAM_WRITABLE))
859         {
860           g_warning ("%s: property `%s' of object class `%s' is not writable",
861                      G_STRLOC,
862                      pspec->name,
863                      G_OBJECT_TYPE_NAME (object));
864           break;
865         }
866       
867       g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
868       
869       G_VALUE_COLLECT (&value, var_args, 0, &error);
870       if (error)
871         {
872           g_warning ("%s: %s", G_STRLOC, error);
873           g_free (error);
874           
875           /* we purposely leak the value here, it might not be
876            * in a sane state if an error condition occoured
877            */
878           break;
879         }
880       
881       object_set_property (object, pspec, &value, nqueue);
882       g_value_unset (&value);
883       
884       name = va_arg (var_args, gchar*);
885     }
886
887   g_object_notify_queue_thaw (object, nqueue);
888   g_object_unref (object);
889 }
890
891 void
892 g_object_get_valist (GObject     *object,
893                      const gchar *first_property_name,
894                      va_list      var_args)
895 {
896   const gchar *name;
897   
898   g_return_if_fail (G_IS_OBJECT (object));
899   
900   g_object_ref (object);
901   
902   name = first_property_name;
903   
904   while (name)
905     {
906       GValue value = { 0, };
907       GParamSpec *pspec;
908       gchar *error;
909       
910       pspec = g_param_spec_pool_lookup (pspec_pool,
911                                         name,
912                                         G_OBJECT_TYPE (object),
913                                         TRUE);
914       if (!pspec)
915         {
916           g_warning ("%s: object class `%s' has no property named `%s'",
917                      G_STRLOC,
918                      G_OBJECT_TYPE_NAME (object),
919                      name);
920           break;
921         }
922       if (!(pspec->flags & G_PARAM_READABLE))
923         {
924           g_warning ("%s: property `%s' of object class `%s' is not readable",
925                      G_STRLOC,
926                      pspec->name,
927                      G_OBJECT_TYPE_NAME (object));
928           break;
929         }
930       
931       g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
932       
933       object_get_property (object, pspec, &value);
934       
935       G_VALUE_LCOPY (&value, var_args, 0, &error);
936       if (error)
937         {
938           g_warning ("%s: %s", G_STRLOC, error);
939           g_free (error);
940           g_value_unset (&value);
941           break;
942         }
943       
944       g_value_unset (&value);
945       
946       name = va_arg (var_args, gchar*);
947     }
948   
949   g_object_unref (object);
950 }
951
952 gpointer
953 g_object_set (gpointer     _object,
954               const gchar *first_property_name,
955               ...)
956 {
957   GObject *object = _object;
958   va_list var_args;
959   
960   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
961   
962   va_start (var_args, first_property_name);
963   g_object_set_valist (object, first_property_name, var_args);
964   va_end (var_args);
965
966   return object;
967 }
968
969 void
970 g_object_get (gpointer     _object,
971               const gchar *first_property_name,
972               ...)
973 {
974   GObject *object = _object;
975   va_list var_args;
976   
977   g_return_if_fail (G_IS_OBJECT (object));
978   
979   va_start (var_args, first_property_name);
980   g_object_get_valist (object, first_property_name, var_args);
981   va_end (var_args);
982 }
983
984 void
985 g_object_set_property (GObject      *object,
986                        const gchar  *property_name,
987                        const GValue *value)
988 {
989   GObjectNotifyQueue *nqueue;
990   GParamSpec *pspec;
991   
992   g_return_if_fail (G_IS_OBJECT (object));
993   g_return_if_fail (property_name != NULL);
994   g_return_if_fail (G_IS_VALUE (value));
995   
996   g_object_ref (object);
997   nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
998   
999   pspec = g_param_spec_pool_lookup (pspec_pool,
1000                                     property_name,
1001                                     G_OBJECT_TYPE (object),
1002                                     TRUE);
1003   if (!pspec)
1004     g_warning ("%s: object class `%s' has no property named `%s'",
1005                G_STRLOC,
1006                G_OBJECT_TYPE_NAME (object),
1007                property_name);
1008   else
1009     object_set_property (object, pspec, value, nqueue);
1010   
1011   g_object_notify_queue_thaw (object, nqueue);
1012   g_object_unref (object);
1013 }
1014
1015 void
1016 g_object_get_property (GObject     *object,
1017                        const gchar *property_name,
1018                        GValue      *value)
1019 {
1020   GParamSpec *pspec;
1021   
1022   g_return_if_fail (G_IS_OBJECT (object));
1023   g_return_if_fail (property_name != NULL);
1024   g_return_if_fail (G_IS_VALUE (value));
1025   
1026   g_object_ref (object);
1027   
1028   pspec = g_param_spec_pool_lookup (pspec_pool,
1029                                     property_name,
1030                                     G_OBJECT_TYPE (object),
1031                                     TRUE);
1032   if (!pspec)
1033     g_warning ("%s: object class `%s' has no property named `%s'",
1034                G_STRLOC,
1035                G_OBJECT_TYPE_NAME (object),
1036                property_name);
1037   else
1038     {
1039       GValue *prop_value, tmp_value = { 0, };
1040       
1041       /* auto-conversion of the callers value type
1042        */
1043       if (G_VALUE_TYPE (value) == G_PARAM_SPEC_VALUE_TYPE (pspec))
1044         {
1045           g_value_reset (value);
1046           prop_value = value;
1047         }
1048       else if (!g_value_type_transformable (G_PARAM_SPEC_VALUE_TYPE (pspec), G_VALUE_TYPE (value)))
1049         {
1050           g_warning ("can't retrive property `%s' of type `%s' as value of type `%s'",
1051                      pspec->name,
1052                      g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)),
1053                      G_VALUE_TYPE_NAME (value));
1054           g_object_unref (object);
1055           return;
1056         }
1057       else
1058         {
1059           g_value_init (&tmp_value, G_PARAM_SPEC_VALUE_TYPE (pspec));
1060           prop_value = &tmp_value;
1061         }
1062       object_get_property (object, pspec, prop_value);
1063       if (prop_value != value)
1064         {
1065           g_value_transform (prop_value, value);
1066           g_value_unset (&tmp_value);
1067         }
1068     }
1069   
1070   g_object_unref (object);
1071 }
1072
1073 gpointer
1074 g_object_connect (gpointer     _object,
1075                   const gchar *signal_spec,
1076                   ...)
1077 {
1078   GObject *object = _object;
1079   va_list var_args;
1080
1081   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
1082   g_return_val_if_fail (object->ref_count > 0, object);
1083
1084   va_start (var_args, signal_spec);
1085   while (signal_spec)
1086     {
1087       gpointer callback = va_arg (var_args, gpointer);
1088       gpointer data = va_arg (var_args, gpointer);
1089       gulong sid;
1090
1091       if (strncmp (signal_spec, "signal::", 8) == 0)
1092         sid = g_signal_connect_data (object, signal_spec + 8,
1093                                      callback, data, NULL,
1094                                      0);
1095       else if (strncmp (signal_spec, "object_signal::", 15) == 0)
1096         sid = g_signal_connect_object (object, signal_spec + 15,
1097                                        callback, data,
1098                                        0);
1099       else if (strncmp (signal_spec, "swapped_signal::", 16) == 0)
1100         sid = g_signal_connect_data (object, signal_spec + 16,
1101                                      callback, data, NULL,
1102                                      G_CONNECT_SWAPPED);
1103       else if (strncmp (signal_spec, "swapped_object_signal::", 23) == 0)
1104         sid = g_signal_connect_object (object, signal_spec + 23,
1105                                        callback, data,
1106                                        G_CONNECT_SWAPPED);
1107       else if (strncmp (signal_spec, "signal_after::", 14) == 0)
1108         sid = g_signal_connect_data (object, signal_spec + 14,
1109                                      callback, data, NULL,
1110                                      G_CONNECT_AFTER);
1111       else if (strncmp (signal_spec, "object_signal_after::", 21) == 0)
1112         sid = g_signal_connect_object (object, signal_spec + 21,
1113                                        callback, data,
1114                                        G_CONNECT_AFTER);
1115       else if (strncmp (signal_spec, "swapped_signal_after::", 22) == 0)
1116         sid = g_signal_connect_data (object, signal_spec + 22,
1117                                      callback, data, NULL,
1118                                      G_CONNECT_SWAPPED | G_CONNECT_AFTER);
1119       else if (strncmp (signal_spec, "swapped_object_signal_after::", 29) == 0)
1120         sid = g_signal_connect_object (object, signal_spec + 29,
1121                                        callback, data,
1122                                        G_CONNECT_SWAPPED | G_CONNECT_AFTER);
1123       else
1124         {
1125           g_warning ("%s: invalid signal spec \"%s\"", G_STRLOC, signal_spec);
1126           break;
1127         }
1128       signal_spec = va_arg (var_args, gchar*);
1129     }
1130   va_end (var_args);
1131
1132   return object;
1133 }
1134
1135 gpointer
1136 g_object_disconnect (gpointer     _object,
1137                      const gchar *signal_spec,
1138                      ...)
1139 {
1140   GObject *object = _object;
1141   va_list var_args;
1142
1143   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
1144   g_return_val_if_fail (object->ref_count > 0, object);
1145
1146   va_start (var_args, signal_spec);
1147   while (signal_spec)
1148     {
1149       gpointer callback = va_arg (var_args, gpointer);
1150       gpointer data = va_arg (var_args, gpointer);
1151       guint sid = 0, detail = 0, mask = 0;
1152
1153       if (strncmp (signal_spec, "any_signal::", 12) == 0)
1154         {
1155           signal_spec += 12;
1156           mask = G_SIGNAL_MATCH_ID | G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA;
1157         }
1158       else if (strcmp (signal_spec, "any_signal") == 0)
1159         {
1160           signal_spec += 10;
1161           mask = G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA;
1162         }
1163       else
1164         {
1165           g_warning ("%s: invalid signal spec \"%s\"", G_STRLOC, signal_spec);
1166           break;
1167         }
1168
1169       if ((mask & G_SIGNAL_MATCH_ID) &&
1170           !g_signal_parse_name (signal_spec, G_OBJECT_TYPE (object), &sid, &detail, FALSE))
1171         g_warning ("%s: invalid signal name \"%s\"", G_STRLOC, signal_spec);
1172       else if (!g_signal_handlers_disconnect_matched (object, mask | (detail ? G_SIGNAL_MATCH_DETAIL : 0),
1173                                                       sid, detail,
1174                                                       NULL, callback, data))
1175         g_warning (G_STRLOC ": signal handler %p(%p) is not connected", callback, data);
1176       signal_spec = va_arg (var_args, gchar*);
1177     }
1178   va_end (var_args);
1179
1180   return object;
1181 }
1182
1183 typedef struct {
1184   GObject *object;
1185   guint n_weak_refs;
1186   struct {
1187     GWeakNotify notify;
1188     gpointer    data;
1189   } weak_refs[1];  /* flexible array */
1190 } WeakRefStack;
1191
1192 static void
1193 weak_refs_notify (gpointer data)
1194 {
1195   WeakRefStack *wstack = data;
1196   guint i;
1197
1198   for (i = 0; i < wstack->n_weak_refs; i++)
1199     wstack->weak_refs[i].notify (wstack->weak_refs[i].data, wstack->object);
1200   g_free (wstack);
1201 }
1202
1203 void
1204 g_object_weak_ref (GObject    *object,
1205                    GWeakNotify notify,
1206                    gpointer    data)
1207 {
1208   WeakRefStack *wstack;
1209   guint i;
1210   
1211   g_return_if_fail (G_IS_OBJECT (object));
1212   g_return_if_fail (notify != NULL);
1213   g_return_if_fail (object->ref_count >= 1);
1214
1215   wstack = g_datalist_id_remove_no_notify (&object->qdata, quark_weak_refs);
1216   if (wstack)
1217     {
1218       i = wstack->n_weak_refs++;
1219       wstack = g_realloc (wstack, sizeof (*wstack) + sizeof (wstack->weak_refs[0]) * i);
1220     }
1221   else
1222     {
1223       wstack = g_renew (WeakRefStack, NULL, 1);
1224       wstack->object = object;
1225       wstack->n_weak_refs = 1;
1226       i = 0;
1227     }
1228   wstack->weak_refs[i].notify = notify;
1229   wstack->weak_refs[i].data = data;
1230   g_datalist_id_set_data_full (&object->qdata, quark_weak_refs, wstack, weak_refs_notify);
1231 }
1232
1233 void
1234 g_object_weak_unref (GObject    *object,
1235                      GWeakNotify notify,
1236                      gpointer    data)
1237 {
1238   WeakRefStack *wstack;
1239   gboolean found_one = FALSE;
1240
1241   g_return_if_fail (G_IS_OBJECT (object));
1242   g_return_if_fail (notify != NULL);
1243
1244   wstack = g_datalist_id_get_data (&object->qdata, quark_weak_refs);
1245   if (wstack)
1246     {
1247       guint i;
1248
1249       for (i = 0; i < wstack->n_weak_refs; i++)
1250         if (wstack->weak_refs[i].notify == notify &&
1251             wstack->weak_refs[i].data == data)
1252           {
1253             found_one = TRUE;
1254             wstack->n_weak_refs -= 1;
1255             if (i != wstack->n_weak_refs)
1256               {
1257                 wstack->weak_refs[i].notify = wstack->weak_refs[wstack->n_weak_refs].notify;
1258                 wstack->weak_refs[i].data = wstack->weak_refs[wstack->n_weak_refs].data;
1259               }
1260             break;
1261           }
1262     }
1263   if (!found_one)
1264     g_warning (G_STRLOC ": couldn't find weak ref %p(%p)", notify, data);
1265 }
1266
1267 void
1268 g_object_add_weak_pointer (GObject  *object, 
1269                            gpointer *weak_pointer_location)
1270 {
1271   g_return_if_fail (G_IS_OBJECT (object));
1272   g_return_if_fail (weak_pointer_location != NULL);
1273
1274   g_object_weak_ref (object, 
1275                      (GWeakNotify) g_nullify_pointer, 
1276                      weak_pointer_location);
1277 }
1278
1279 void
1280 g_object_remove_weak_pointer (GObject  *object, 
1281                               gpointer *weak_pointer_location)
1282 {
1283   g_return_if_fail (G_IS_OBJECT (object));
1284   g_return_if_fail (weak_pointer_location != NULL);
1285
1286   g_object_weak_unref (object, 
1287                        (GWeakNotify) g_nullify_pointer, 
1288                        weak_pointer_location);
1289 }
1290
1291 gpointer
1292 g_object_ref (gpointer _object)
1293 {
1294   GObject *object = _object;
1295
1296   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
1297   g_return_val_if_fail (object->ref_count > 0, NULL);
1298   
1299 #ifdef  G_ENABLE_DEBUG
1300   if (g_trap_object_ref == object)
1301     G_BREAKPOINT ();
1302 #endif  /* G_ENABLE_DEBUG */
1303
1304   object->ref_count += 1;
1305   
1306   return object;
1307 }
1308
1309 void
1310 g_object_unref (gpointer _object)
1311 {
1312   GObject *object = _object;
1313
1314   g_return_if_fail (G_IS_OBJECT (object));
1315   g_return_if_fail (object->ref_count > 0);
1316   
1317 #ifdef  G_ENABLE_DEBUG
1318   if (g_trap_object_ref == object)
1319     G_BREAKPOINT ();
1320 #endif  /* G_ENABLE_DEBUG */
1321
1322   if (object->ref_count > 1)
1323     object->ref_count -= 1;
1324   else
1325     g_object_last_unref (object);
1326 }
1327
1328 gpointer
1329 g_object_get_qdata (GObject *object,
1330                     GQuark   quark)
1331 {
1332   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
1333   
1334   return quark ? g_datalist_id_get_data (&object->qdata, quark) : NULL;
1335 }
1336
1337 void
1338 g_object_set_qdata (GObject *object,
1339                     GQuark   quark,
1340                     gpointer data)
1341 {
1342   g_return_if_fail (G_IS_OBJECT (object));
1343   g_return_if_fail (quark > 0);
1344   
1345   g_datalist_id_set_data (&object->qdata, quark, data);
1346 }
1347
1348 void
1349 g_object_set_qdata_full (GObject       *object,
1350                          GQuark         quark,
1351                          gpointer       data,
1352                          GDestroyNotify destroy)
1353 {
1354   g_return_if_fail (G_IS_OBJECT (object));
1355   g_return_if_fail (quark > 0);
1356   
1357   g_datalist_id_set_data_full (&object->qdata, quark, data,
1358                                data ? destroy : (GDestroyNotify) NULL);
1359 }
1360
1361 gpointer
1362 g_object_steal_qdata (GObject *object,
1363                       GQuark   quark)
1364 {
1365   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
1366   g_return_val_if_fail (quark > 0, NULL);
1367   
1368   return g_datalist_id_remove_no_notify (&object->qdata, quark);
1369 }
1370
1371 gpointer
1372 g_object_get_data (GObject     *object,
1373                    const gchar *key)
1374 {
1375   GQuark quark;
1376
1377   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
1378   g_return_val_if_fail (key != NULL, NULL);
1379
1380   quark = g_quark_try_string (key);
1381
1382   return quark ? g_datalist_id_get_data (&object->qdata, quark) : NULL;
1383 }
1384
1385 void
1386 g_object_set_data (GObject     *object,
1387                    const gchar *key,
1388                    gpointer     data)
1389 {
1390   g_return_if_fail (G_IS_OBJECT (object));
1391   g_return_if_fail (key != NULL);
1392
1393   g_datalist_id_set_data (&object->qdata, g_quark_from_string (key), data);
1394 }
1395
1396 void
1397 g_object_set_data_full (GObject       *object,
1398                         const gchar   *key,
1399                         gpointer       data,
1400                         GDestroyNotify destroy)
1401 {
1402   g_return_if_fail (G_IS_OBJECT (object));
1403   g_return_if_fail (key != NULL);
1404
1405   g_datalist_id_set_data_full (&object->qdata, g_quark_from_string (key), data,
1406                                data ? destroy : (GDestroyNotify) NULL);
1407 }
1408
1409 gpointer
1410 g_object_steal_data (GObject     *object,
1411                      const gchar *key)
1412 {
1413   GQuark quark;
1414
1415   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
1416   g_return_val_if_fail (key != NULL, NULL);
1417
1418   quark = g_quark_try_string (key);
1419
1420   return quark ? g_datalist_id_remove_no_notify (&object->qdata, quark) : NULL;
1421 }
1422
1423 static void
1424 g_value_object_init (GValue *value)
1425 {
1426   value->data[0].v_pointer = NULL;
1427 }
1428
1429 static void
1430 g_value_object_free_value (GValue *value)
1431 {
1432   if (value->data[0].v_pointer)
1433     g_object_unref (value->data[0].v_pointer);
1434 }
1435
1436 static void
1437 g_value_object_copy_value (const GValue *src_value,
1438                            GValue       *dest_value)
1439 {
1440   if (src_value->data[0].v_pointer)
1441     dest_value->data[0].v_pointer = g_object_ref (src_value->data[0].v_pointer);
1442   else
1443     dest_value->data[0].v_pointer = NULL;
1444 }
1445
1446 static void
1447 g_value_object_transform_value (const GValue *src_value,
1448                                 GValue       *dest_value)
1449 {
1450   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)))
1451     dest_value->data[0].v_pointer = g_object_ref (src_value->data[0].v_pointer);
1452   else
1453     dest_value->data[0].v_pointer = NULL;
1454 }
1455
1456 static gpointer
1457 g_value_object_peek_pointer (const GValue *value)
1458 {
1459   return value->data[0].v_pointer;
1460 }
1461
1462 static gchar*
1463 g_value_object_collect_value (GValue      *value,
1464                               guint        n_collect_values,
1465                               GTypeCValue *collect_values,
1466                               guint        collect_flags)
1467 {
1468   if (collect_values[0].v_pointer)
1469     {
1470       GObject *object = collect_values[0].v_pointer;
1471       
1472       if (object->g_type_instance.g_class == NULL)
1473         return g_strconcat ("invalid unclassed object pointer for value type `",
1474                             G_VALUE_TYPE_NAME (value),
1475                             "'",
1476                             NULL);
1477       else if (!g_value_type_compatible (G_OBJECT_TYPE (object), G_VALUE_TYPE (value)))
1478         return g_strconcat ("invalid object type `",
1479                             G_OBJECT_TYPE_NAME (object),
1480                             "' for value type `",
1481                             G_VALUE_TYPE_NAME (value),
1482                             "'",
1483                             NULL);
1484       /* never honour G_VALUE_NOCOPY_CONTENTS for ref-counted types */
1485       value->data[0].v_pointer = g_object_ref (object);
1486     }
1487   else
1488     value->data[0].v_pointer = NULL;
1489   
1490   return NULL;
1491 }
1492
1493 static gchar*
1494 g_value_object_lcopy_value (const GValue *value,
1495                             guint        n_collect_values,
1496                             GTypeCValue *collect_values,
1497                             guint        collect_flags)
1498 {
1499   GObject **object_p = collect_values[0].v_pointer;
1500   
1501   if (!object_p)
1502     return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value));
1503
1504   if (!value->data[0].v_pointer)
1505     *object_p = NULL;
1506   else if (collect_flags & G_VALUE_NOCOPY_CONTENTS)
1507     *object_p = value->data[0].v_pointer;
1508   else
1509     *object_p = g_object_ref (value->data[0].v_pointer);
1510   
1511   return NULL;
1512 }
1513
1514 void
1515 g_value_set_object (GValue   *value,
1516                     gpointer  v_object)
1517 {
1518   g_return_if_fail (G_VALUE_HOLDS_OBJECT (value));
1519   
1520   if (value->data[0].v_pointer)
1521     {
1522       g_object_unref (value->data[0].v_pointer);
1523       value->data[0].v_pointer = NULL;
1524     }
1525
1526   if (v_object)
1527     {
1528       g_return_if_fail (G_IS_OBJECT (v_object));
1529       g_return_if_fail (g_value_type_compatible (G_OBJECT_TYPE (v_object), G_VALUE_TYPE (value)));
1530
1531       value->data[0].v_pointer = v_object;
1532       g_object_ref (value->data[0].v_pointer);
1533     }
1534 }
1535
1536 gpointer
1537 g_value_get_object (const GValue *value)
1538 {
1539   g_return_val_if_fail (G_VALUE_HOLDS_OBJECT (value), NULL);
1540   
1541   return value->data[0].v_pointer;
1542 }
1543
1544 GObject*
1545 g_value_dup_object (const GValue *value)
1546 {
1547   g_return_val_if_fail (G_VALUE_HOLDS_OBJECT (value), NULL);
1548   
1549   return value->data[0].v_pointer ? g_object_ref (value->data[0].v_pointer) : NULL;
1550 }
1551
1552 guint
1553 g_signal_connect_object (gpointer      instance,
1554                          const gchar  *detailed_signal,
1555                          GCallback     c_handler,
1556                          gpointer      gobject,
1557                          GConnectFlags connect_flags)
1558 {
1559   g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
1560   g_return_val_if_fail (detailed_signal != NULL, 0);
1561   g_return_val_if_fail (c_handler != NULL, 0);
1562
1563   if (gobject)
1564     {
1565       GClosure *closure;
1566
1567       g_return_val_if_fail (G_IS_OBJECT (gobject), 0);
1568
1569       closure = ((connect_flags & G_CONNECT_SWAPPED) ? g_cclosure_new_object_swap : g_cclosure_new_object) (c_handler, gobject);
1570
1571       return g_signal_connect_closure (instance, detailed_signal, closure, connect_flags & G_CONNECT_AFTER);
1572     }
1573   else
1574     return g_signal_connect_data (instance, detailed_signal, c_handler, NULL, NULL, connect_flags);
1575 }
1576
1577 typedef struct {
1578   GObject  *object;
1579   guint     n_closures;
1580   GClosure *closures[1]; /* flexible array */
1581 } CArray;
1582
1583 static void
1584 object_remove_closure (gpointer  data,
1585                        GClosure *closure)
1586 {
1587   GObject *object = data;
1588   CArray *carray = g_object_get_qdata (object, quark_closure_array);
1589   guint i;
1590   
1591   for (i = 0; i < carray->n_closures; i++)
1592     if (carray->closures[i] == closure)
1593       {
1594         carray->n_closures--;
1595         if (i < carray->n_closures)
1596           carray->closures[i] = carray->closures[carray->n_closures];
1597         return;
1598       }
1599   g_assert_not_reached ();
1600 }
1601
1602 static void
1603 destroy_closure_array (gpointer data)
1604 {
1605   CArray *carray = data;
1606   GObject *object = carray->object;
1607   guint i, n = carray->n_closures;
1608   
1609   for (i = 0; i < n; i++)
1610     {
1611       GClosure *closure = carray->closures[i];
1612       
1613       /* removing object_remove_closure() upfront is probably faster than
1614        * letting it fiddle with quark_closure_array which is empty anyways
1615        */
1616       g_closure_remove_invalidate_notifier (closure, object, object_remove_closure);
1617       g_closure_invalidate (closure);
1618     }
1619   g_free (carray);
1620 }
1621
1622 void
1623 g_object_watch_closure (GObject  *object,
1624                         GClosure *closure)
1625 {
1626   CArray *carray;
1627   guint i;
1628   
1629   g_return_if_fail (G_IS_OBJECT (object));
1630   g_return_if_fail (closure != NULL);
1631   g_return_if_fail (closure->is_invalid == FALSE);
1632   g_return_if_fail (closure->in_marshal == FALSE);
1633   g_return_if_fail (object->ref_count > 0);     /* this doesn't work on finalizing objects */
1634   
1635   g_closure_add_invalidate_notifier (closure, object, object_remove_closure);
1636   g_closure_add_marshal_guards (closure,
1637                                 object, (GClosureNotify) g_object_ref,
1638                                 object, (GClosureNotify) g_object_unref);
1639   carray = g_datalist_id_remove_no_notify (&object->qdata, quark_closure_array);
1640   if (!carray)
1641     {
1642       carray = g_renew (CArray, NULL, 1);
1643       carray->object = object;
1644       carray->n_closures = 1;
1645       i = 0;
1646     }
1647   else
1648     {
1649       i = carray->n_closures++;
1650       carray = g_realloc (carray, sizeof (*carray) + sizeof (carray->closures[0]) * i);
1651     }
1652   carray->closures[i] = closure;
1653   g_datalist_id_set_data_full (&object->qdata, quark_closure_array, carray, destroy_closure_array);
1654 }
1655
1656 GClosure*
1657 g_closure_new_object (guint    sizeof_closure,
1658                       GObject *object)
1659 {
1660   GClosure *closure;
1661
1662   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
1663   g_return_val_if_fail (object->ref_count > 0, NULL);     /* this doesn't work on finalizing objects */
1664
1665   closure = g_closure_new_simple (sizeof_closure, object);
1666   g_object_watch_closure (object, closure);
1667
1668   return closure;
1669 }
1670
1671 GClosure*
1672 g_cclosure_new_object (GCallback callback_func,
1673                        gpointer  _object)
1674 {
1675   GObject *object = _object;
1676   GClosure *closure;
1677
1678   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
1679   g_return_val_if_fail (object->ref_count > 0, NULL);     /* this doesn't work on finalizing objects */
1680   g_return_val_if_fail (callback_func != NULL, NULL);
1681
1682   closure = g_cclosure_new (callback_func, object, NULL);
1683   g_object_watch_closure (object, closure);
1684
1685   return closure;
1686 }
1687
1688 GClosure*
1689 g_cclosure_new_object_swap (GCallback callback_func,
1690                             gpointer  _object)
1691 {
1692   GObject *object = _object;
1693   GClosure *closure;
1694
1695   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
1696   g_return_val_if_fail (object->ref_count > 0, NULL);     /* this doesn't work on finalizing objects */
1697   g_return_val_if_fail (callback_func != NULL, NULL);
1698
1699   closure = g_cclosure_new_swap (callback_func, object, NULL);
1700   g_object_watch_closure (object, closure);
1701
1702   return closure;
1703 }