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.
sl@0
     1
/* GObject - GLib Type, Object, Parameter and Signal Library
sl@0
     2
 * Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc.
sl@0
     3
 * Portions copyright (c) 2006-2009 Nokia Corporation.  All rights reserved.
sl@0
     4
 *
sl@0
     5
 * This library is free software; you can redistribute it and/or
sl@0
     6
 * modify it under the terms of the GNU Lesser General Public
sl@0
     7
 * License as published by the Free Software Foundation; either
sl@0
     8
 * version 2 of the License, or (at your option) any later version.
sl@0
     9
 *
sl@0
    10
 * This library is distributed in the hope that it will be useful,
sl@0
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
sl@0
    13
 * Lesser General Public License for more details.
sl@0
    14
 *
sl@0
    15
 * You should have received a copy of the GNU Lesser General
sl@0
    16
 * Public License along with this library; if not, write to the
sl@0
    17
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
sl@0
    18
 * Boston, MA 02111-1307, USA.
sl@0
    19
 */
sl@0
    20
sl@0
    21
/*
sl@0
    22
 * MT safe with regards to reference counting.
sl@0
    23
 */
sl@0
    24
sl@0
    25
#include "config.h"
sl@0
    26
sl@0
    27
#include <string.h>
sl@0
    28
#include <signal.h>
sl@0
    29
sl@0
    30
#include "gdatasetprivate.h"
sl@0
    31
sl@0
    32
#include "gobject.h"
sl@0
    33
#include "gvaluecollector.h"
sl@0
    34
#include "gsignal.h"
sl@0
    35
#include "gparamspecs.h"
sl@0
    36
#include "gvaluetypes.h"
sl@0
    37
#include "gobjectalias.h"
sl@0
    38
 #ifdef __SYMBIAN32__
sl@0
    39
#include <glib_global.h>
sl@0
    40
#include "gobject_wsd.h"
sl@0
    41
#include <gobject_global.h>
sl@0
    42
#endif /* __SYMBIAN32__ */
sl@0
    43
/* This should be included after gobjectalias.h (or pltcheck.sh will fail) */
sl@0
    44
#include "gobjectnotifyqueue.c"
sl@0
    45
sl@0
    46
sl@0
    47
sl@0
    48
/**
sl@0
    49
 * SECTION:objects
sl@0
    50
 * @short_description: The base object type
sl@0
    51
 * @see_also: #GParamSpecObject, g_param_spec_object()
sl@0
    52
 * @title: The Base Object Type
sl@0
    53
 *
sl@0
    54
 * GObject is the fundamental type providing the common attributes and
sl@0
    55
 * methods for all object types in GTK+, Pango and other libraries
sl@0
    56
 * based on GObject.  The GObject class provides methods for object
sl@0
    57
 * construction and destruction, property access methods, and signal
sl@0
    58
 * support.  Signals are described in detail in <xref
sl@0
    59
 * linkend="gobject-Signals"/>.
sl@0
    60
 *
sl@0
    61
 * <para id="floating-ref">
sl@0
    62
 * #GInitiallyUnowned is derived from #GObject. The only difference between
sl@0
    63
 * the two is that the initial reference of a #GInitiallyUnowned is flagged
sl@0
    64
 * as a <firstterm>floating</firstterm> reference.
sl@0
    65
 * This means that it is not specifically claimed to be "owned" by
sl@0
    66
 * any code portion. The main motivation for providing floating references is
sl@0
    67
 * C convenience. In particular, it allows code to be written as:
sl@0
    68
 * |[
sl@0
    69
 * container = create_container();
sl@0
    70
 * container_add_child (container, create_child());
sl@0
    71
 * ]|
sl@0
    72
 * If <function>container_add_child()</function> will g_object_ref_sink() the
sl@0
    73
 * passed in child, no reference of the newly created child is leaked.
sl@0
    74
 * Without floating references, <function>container_add_child()</function>
sl@0
    75
 * can only g_object_ref() the new child, so to implement this code without
sl@0
    76
 * reference leaks, it would have to be written as:
sl@0
    77
 * |[
sl@0
    78
 * Child *child;
sl@0
    79
 * container = create_container();
sl@0
    80
 * child = create_child();
sl@0
    81
 * container_add_child (container, child);
sl@0
    82
 * g_object_unref (child);
sl@0
    83
 * ]|
sl@0
    84
 * The floating reference can be converted into
sl@0
    85
 * an ordinary reference by calling g_object_ref_sink().
sl@0
    86
 * For already sunken objects (objects that don't have a floating reference
sl@0
    87
 * anymore), g_object_ref_sink() is equivalent to g_object_ref() and returns
sl@0
    88
 * a new reference.
sl@0
    89
 * Since floating references are useful almost exclusively for C convenience,
sl@0
    90
 * language bindings that provide automated reference and memory ownership
sl@0
    91
 * maintenance (such as smart pointers or garbage collection) therefore don't
sl@0
    92
 * need to expose floating references in their API.
sl@0
    93
 * </para>
sl@0
    94
 *
sl@0
    95
 * Some object implementations may need to save an objects floating state
sl@0
    96
 * across certain code portions (an example is #GtkMenu), to achive this, the
sl@0
    97
 * following sequence can be used:
sl@0
    98
 *
sl@0
    99
 * |[
sl@0
   100
 * // save floating state
sl@0
   101
 * gboolean was_floating = g_object_is_floating (object);
sl@0
   102
 * g_object_ref_sink (object);
sl@0
   103
 * // protected code portion
sl@0
   104
 * ...;
sl@0
   105
 * // restore floating state
sl@0
   106
 * if (was_floating)
sl@0
   107
 *   g_object_force_floating (object);
sl@0
   108
 * g_obejct_unref (object); // release previously acquired reference
sl@0
   109
 * ]|
sl@0
   110
 */
sl@0
   111
sl@0
   112
sl@0
   113
/* --- macros --- */
sl@0
   114
#define PARAM_SPEC_PARAM_ID(pspec)		((pspec)->param_id)
sl@0
   115
#define	PARAM_SPEC_SET_PARAM_ID(pspec, id)	((pspec)->param_id = (id))
sl@0
   116
sl@0
   117
#define OBJECT_HAS_TOGGLE_REF_FLAG 0x1
sl@0
   118
#define OBJECT_HAS_TOGGLE_REF(object) \
sl@0
   119
    ((G_DATALIST_GET_FLAGS (&(object)->qdata) & OBJECT_HAS_TOGGLE_REF_FLAG) != 0)
sl@0
   120
#define OBJECT_FLOATING_FLAG 0x2
sl@0
   121
sl@0
   122
sl@0
   123
/* --- signals --- */
sl@0
   124
enum {
sl@0
   125
  NOTIFY,
sl@0
   126
  LAST_SIGNAL
sl@0
   127
};
sl@0
   128
sl@0
   129
sl@0
   130
/* --- properties --- */
sl@0
   131
enum {
sl@0
   132
  PROP_NONE
sl@0
   133
};
sl@0
   134
sl@0
   135
sl@0
   136
/* --- prototypes --- */
sl@0
   137
static void	g_object_base_class_init		(GObjectClass	*class);
sl@0
   138
static void	g_object_base_class_finalize		(GObjectClass	*class);
sl@0
   139
static void	g_object_do_class_init			(GObjectClass	*class);
sl@0
   140
static void	g_object_init				(GObject	*object);
sl@0
   141
static GObject*	g_object_constructor			(GType                  type,
sl@0
   142
							 guint                  n_construct_properties,
sl@0
   143
							 GObjectConstructParam *construct_params);
sl@0
   144
static void	g_object_real_dispose			(GObject	*object);
sl@0
   145
static void	g_object_finalize			(GObject	*object);
sl@0
   146
static void	g_object_do_set_property		(GObject        *object,
sl@0
   147
							 guint           property_id,
sl@0
   148
							 const GValue   *value,
sl@0
   149
							 GParamSpec     *pspec);
sl@0
   150
static void	g_object_do_get_property		(GObject        *object,
sl@0
   151
							 guint           property_id,
sl@0
   152
							 GValue         *value,
sl@0
   153
							 GParamSpec     *pspec);
sl@0
   154
static void	g_value_object_init			(GValue		*value);
sl@0
   155
static void	g_value_object_free_value		(GValue		*value);
sl@0
   156
static void	g_value_object_copy_value		(const GValue	*src_value,
sl@0
   157
							 GValue		*dest_value);
sl@0
   158
static void	g_value_object_transform_value		(const GValue	*src_value,
sl@0
   159
							 GValue		*dest_value);
sl@0
   160
static gpointer g_value_object_peek_pointer             (const GValue   *value);
sl@0
   161
static gchar*	g_value_object_collect_value		(GValue		*value,
sl@0
   162
							 guint           n_collect_values,
sl@0
   163
							 GTypeCValue    *collect_values,
sl@0
   164
							 guint           collect_flags);
sl@0
   165
static gchar*	g_value_object_lcopy_value		(const GValue	*value,
sl@0
   166
							 guint           n_collect_values,
sl@0
   167
							 GTypeCValue    *collect_values,
sl@0
   168
							 guint           collect_flags);
sl@0
   169
static void	g_object_dispatch_properties_changed	(GObject	*object,
sl@0
   170
							 guint		 n_pspecs,
sl@0
   171
							 GParamSpec    **pspecs);
sl@0
   172
static inline void         object_get_property		(GObject        *object,
sl@0
   173
							 GParamSpec     *pspec,
sl@0
   174
							 GValue         *value);
sl@0
   175
static inline void	   object_set_property		(GObject        *object,
sl@0
   176
							 GParamSpec     *pspec,
sl@0
   177
							 const GValue   *value,
sl@0
   178
							 GObjectNotifyQueue *nqueue);
sl@0
   179
#if (EMULATOR)							 
sl@0
   180
guint               object_floating_flag_handler (GObject        *object,
sl@0
   181
                                                         gint            job);
sl@0
   182
#else
sl@0
   183
static guint               object_floating_flag_handler (GObject        *object,
sl@0
   184
                                                         gint            job);
sl@0
   185
#endif /* EMULATOR */
sl@0
   186
static void object_interface_check_properties           (gpointer        func_data,
sl@0
   187
							 gpointer        g_iface);
sl@0
   188
sl@0
   189
sl@0
   190
/* --- variables --- */
sl@0
   191
#if EMULATOR
sl@0
   192
sl@0
   193
PLS(quark_closure_array,gobject,GQuark)
sl@0
   194
PLS(quark_weak_refs,gobject,GQuark)
sl@0
   195
PLS(quark_toggle_refs,gobject,GQuark)
sl@0
   196
PLS(pspec_pool,gobject,GParamSpecPool *)
sl@0
   197
PLS(property_notify_context,gobject,GObjectNotifyContext)
sl@0
   198
PLS_ARRAY(gobject_signals,gobject,gulong)
sl@0
   199
PLS_MACRO(construction_mutex,gobject,GStaticMutex)
sl@0
   200
PLS(construction_objects,gobject,GSList *)
sl@0
   201
PLS(floating_flag_handler,gobject,function_type)
sl@0
   202
sl@0
   203
#define quark_closure_array (*FUNCTION_NAME(quark_closure_array,gobject)())
sl@0
   204
#define quark_weak_refs (*FUNCTION_NAME(quark_weak_refs,gobject)())
sl@0
   205
#define quark_toggle_refs (*FUNCTION_NAME(quark_toggle_refs,gobject)())
sl@0
   206
#define pspec_pool (*FUNCTION_NAME(pspec_pool,gobject)())
sl@0
   207
#define property_notify_context (*FUNCTION_NAME(property_notify_context,gobject)())
sl@0
   208
#define gobject_signals (FUNCTION_NAME(gobject_signals,gobject)())
sl@0
   209
#define g__construction_mutex_lock (*FUNCTION_NAME_MACRO(construction_mutex,gobject)())
sl@0
   210
#define construction_objects (*FUNCTION_NAME(construction_objects,gobject)())
sl@0
   211
#define floating_flag_handler (*FUNCTION_NAME(floating_flag_handler,gobject)())
sl@0
   212
sl@0
   213
#else
sl@0
   214
sl@0
   215
static GQuark	            quark_closure_array = 0;
sl@0
   216
static GQuark	            quark_weak_refs = 0;
sl@0
   217
static GQuark	            quark_toggle_refs = 0;
sl@0
   218
static GParamSpecPool      *pspec_pool = NULL;
sl@0
   219
static GObjectNotifyContext property_notify_context = { 0, };
sl@0
   220
static gulong	            gobject_signals[LAST_SIGNAL] = { 0, };
sl@0
   221
static guint (*floating_flag_handler) (GObject*, gint) = object_floating_flag_handler;
sl@0
   222
G_LOCK_DEFINE_STATIC (construction_mutex);
sl@0
   223
static GSList *construction_objects = NULL;
sl@0
   224
sl@0
   225
#endif /* EMULATOR */
sl@0
   226
sl@0
   227
/* --- functions --- */
sl@0
   228
#ifdef	G_ENABLE_DEBUG
sl@0
   229
#define	IF_DEBUG(debug_type)	if (_g_type_debug_flags & G_TYPE_DEBUG_ ## debug_type)
sl@0
   230
#if EMULATOR
sl@0
   231
sl@0
   232
PLS_MACRO(debug_objects,gobject,GStaticMutex)
sl@0
   233
PLS(g_trap_object_ref,gobject,volatile GObject *)
sl@0
   234
PLS(debug_objects_count,gobject,guint)
sl@0
   235
PLS(debug_objects_ht,gobject,GHashTable	*)
sl@0
   236
sl@0
   237
#define g__debug_objects_lock (*FUNCTION_NAME_MACRO(debug_objects,gobject)())
sl@0
   238
#define g_trap_object_ref (*FUNCTION_NAME(g_trap_object_ref,gobject)())
sl@0
   239
#define debug_objects_count (*FUNCTION_NAME(debug_objects_count,gobject)())
sl@0
   240
#define debug_objects_ht (*FUNCTION_NAME(debug_objects_ht,gobject)())
sl@0
   241
sl@0
   242
sl@0
   243
#else
sl@0
   244
sl@0
   245
G_LOCK_DEFINE_STATIC     (debug_objects);
sl@0
   246
static volatile GObject *g_trap_object_ref = NULL;
sl@0
   247
static guint		 debug_objects_count = 0;
sl@0
   248
static GHashTable	*debug_objects_ht = NULL;
sl@0
   249
#endif /* EMULATOR */
sl@0
   250
static void
sl@0
   251
debug_objects_foreach (gpointer key,
sl@0
   252
		       gpointer value,
sl@0
   253
		       gpointer user_data)
sl@0
   254
{
sl@0
   255
  GObject *object = value;
sl@0
   256
sl@0
   257
  g_message ("[%p] stale %s\tref_count=%u",
sl@0
   258
	     object,
sl@0
   259
	     G_OBJECT_TYPE_NAME (object),
sl@0
   260
	     object->ref_count);
sl@0
   261
}
sl@0
   262
sl@0
   263
static void
sl@0
   264
debug_objects_atexit (void)
sl@0
   265
{
sl@0
   266
  IF_DEBUG (OBJECTS)
sl@0
   267
    {
sl@0
   268
      G_LOCK (debug_objects);
sl@0
   269
      g_message ("stale GObjects: %u", debug_objects_count);
sl@0
   270
      g_hash_table_foreach (debug_objects_ht, debug_objects_foreach, NULL);
sl@0
   271
      G_UNLOCK (debug_objects);
sl@0
   272
    }
sl@0
   273
}
sl@0
   274
#endif	/* G_ENABLE_DEBUG */
sl@0
   275
sl@0
   276
#if EMULATOR
sl@0
   277
sl@0
   278
PLS(initialized ,g_object_type_init,gboolean)
sl@0
   279
PLS(info  ,g_object_type_init,GTypeInfo)
sl@0
   280
sl@0
   281
#define initialized  (*FUNCTION_NAME(initialized ,g_object_type_init)())
sl@0
   282
#define info  (*FUNCTION_NAME(info ,g_object_type_init)())
sl@0
   283
sl@0
   284
const GTypeInfo gobject_info = {
sl@0
   285
	sizeof (GObjectClass),
sl@0
   286
	(GBaseInitFunc) g_object_base_class_init,
sl@0
   287
	(GBaseFinalizeFunc) g_object_base_class_finalize,
sl@0
   288
	(GClassInitFunc) g_object_do_class_init,
sl@0
   289
	NULL	/* class_destroy */,
sl@0
   290
	NULL	/* class_data */,
sl@0
   291
	sizeof (GObject),
sl@0
   292
	0		/* n_preallocs */,
sl@0
   293
	(GInstanceInitFunc) g_object_init,
sl@0
   294
	NULL,	/* value_table */
sl@0
   295
};
sl@0
   296
sl@0
   297
sl@0
   298
#endif /* EMULATOR */
sl@0
   299
sl@0
   300
void
sl@0
   301
g_object_type_init (void)
sl@0
   302
{
sl@0
   303
  #if !(EMULATOR)
sl@0
   304
  static gboolean initialized = FALSE;
sl@0
   305
  #endif /* EMULATOR */
sl@0
   306
  static const GTypeFundamentalInfo finfo = {
sl@0
   307
    G_TYPE_FLAG_CLASSED | G_TYPE_FLAG_INSTANTIATABLE | G_TYPE_FLAG_DERIVABLE | G_TYPE_FLAG_DEEP_DERIVABLE,
sl@0
   308
  };
sl@0
   309
  #if !(EMULATOR)
sl@0
   310
  static GTypeInfo info = {
sl@0
   311
    sizeof (GObjectClass),
sl@0
   312
    (GBaseInitFunc) g_object_base_class_init,
sl@0
   313
    (GBaseFinalizeFunc) g_object_base_class_finalize,
sl@0
   314
    (GClassInitFunc) g_object_do_class_init,
sl@0
   315
    NULL	/* class_destroy */,
sl@0
   316
    NULL	/* class_data */,
sl@0
   317
    sizeof (GObject),
sl@0
   318
    0		/* n_preallocs */,
sl@0
   319
    (GInstanceInitFunc) g_object_init,
sl@0
   320
    NULL,	/* value_table */
sl@0
   321
  };
sl@0
   322
  #endif /* EMULATOR */
sl@0
   323
  static const GTypeValueTable value_table = {
sl@0
   324
    g_value_object_init,	  /* value_init */
sl@0
   325
    g_value_object_free_value,	  /* value_free */
sl@0
   326
    g_value_object_copy_value,	  /* value_copy */
sl@0
   327
    g_value_object_peek_pointer,  /* value_peek_pointer */
sl@0
   328
    "p",			  /* collect_format */
sl@0
   329
    g_value_object_collect_value, /* collect_value */
sl@0
   330
    "p",			  /* lcopy_format */
sl@0
   331
    g_value_object_lcopy_value,	  /* lcopy_value */
sl@0
   332
  };
sl@0
   333
  GType type;
sl@0
   334
  
sl@0
   335
  g_return_if_fail (initialized == FALSE);
sl@0
   336
  initialized = TRUE;
sl@0
   337
  
sl@0
   338
  /* G_TYPE_OBJECT
sl@0
   339
   */
sl@0
   340
  info.value_table = &value_table;
sl@0
   341
  type = g_type_register_fundamental (G_TYPE_OBJECT, g_intern_static_string ("GObject"), &info, &finfo, 0);
sl@0
   342
  g_assert (type == G_TYPE_OBJECT);
sl@0
   343
  g_value_register_transform_func (G_TYPE_OBJECT, G_TYPE_OBJECT, g_value_object_transform_value);
sl@0
   344
  
sl@0
   345
#ifdef	G_ENABLE_DEBUG
sl@0
   346
  IF_DEBUG (OBJECTS)
sl@0
   347
    {
sl@0
   348
      debug_objects_ht = g_hash_table_new (g_direct_hash, NULL);
sl@0
   349
      g_atexit (debug_objects_atexit);
sl@0
   350
    }
sl@0
   351
#endif	/* G_ENABLE_DEBUG */
sl@0
   352
}
sl@0
   353
sl@0
   354
#if EMULATOR
sl@0
   355
#undef initialized
sl@0
   356
#undef info
sl@0
   357
#endif /* EMULATOR */
sl@0
   358
sl@0
   359
static void
sl@0
   360
g_object_base_class_init (GObjectClass *class)
sl@0
   361
{
sl@0
   362
  GObjectClass *pclass = g_type_class_peek_parent (class);
sl@0
   363
sl@0
   364
  /* reset instance specific fields and methods that don't get inherited */
sl@0
   365
  class->construct_properties = pclass ? g_slist_copy (pclass->construct_properties) : NULL;
sl@0
   366
  class->get_property = NULL;
sl@0
   367
  class->set_property = NULL;
sl@0
   368
}
sl@0
   369
sl@0
   370
static void
sl@0
   371
g_object_base_class_finalize (GObjectClass *class)
sl@0
   372
{
sl@0
   373
  GList *list, *node;
sl@0
   374
  
sl@0
   375
  _g_signals_destroy (G_OBJECT_CLASS_TYPE (class));
sl@0
   376
sl@0
   377
  g_slist_free (class->construct_properties);
sl@0
   378
  class->construct_properties = NULL;
sl@0
   379
  list = g_param_spec_pool_list_owned (pspec_pool, G_OBJECT_CLASS_TYPE (class));
sl@0
   380
  for (node = list; node; node = node->next)
sl@0
   381
    {
sl@0
   382
      GParamSpec *pspec = node->data;
sl@0
   383
      
sl@0
   384
      g_param_spec_pool_remove (pspec_pool, pspec);
sl@0
   385
      PARAM_SPEC_SET_PARAM_ID (pspec, 0);
sl@0
   386
      g_param_spec_unref (pspec);
sl@0
   387
    }
sl@0
   388
  g_list_free (list);
sl@0
   389
}
sl@0
   390
sl@0
   391
static void
sl@0
   392
g_object_notify_dispatcher (GObject     *object,
sl@0
   393
			    guint        n_pspecs,
sl@0
   394
			    GParamSpec **pspecs)
sl@0
   395
{
sl@0
   396
  G_OBJECT_GET_CLASS (object)->dispatch_properties_changed (object, n_pspecs, pspecs);
sl@0
   397
}
sl@0
   398
sl@0
   399
static void
sl@0
   400
g_object_do_class_init (GObjectClass *class)
sl@0
   401
{
sl@0
   402
  /* read the comment about typedef struct CArray; on why not to change this quark */
sl@0
   403
  quark_closure_array = g_quark_from_static_string ("GObject-closure-array");
sl@0
   404
sl@0
   405
  quark_weak_refs = g_quark_from_static_string ("GObject-weak-references");
sl@0
   406
  quark_toggle_refs = g_quark_from_static_string ("GObject-toggle-references");
sl@0
   407
  pspec_pool = g_param_spec_pool_new (TRUE);
sl@0
   408
  property_notify_context.quark_notify_queue = g_quark_from_static_string ("GObject-notify-queue");
sl@0
   409
  property_notify_context.dispatcher = g_object_notify_dispatcher;
sl@0
   410
  
sl@0
   411
  class->constructor = g_object_constructor;
sl@0
   412
  class->set_property = g_object_do_set_property;
sl@0
   413
  class->get_property = g_object_do_get_property;
sl@0
   414
  class->dispose = g_object_real_dispose;
sl@0
   415
  class->finalize = g_object_finalize;
sl@0
   416
  class->dispatch_properties_changed = g_object_dispatch_properties_changed;
sl@0
   417
  class->notify = NULL;
sl@0
   418
sl@0
   419
  /**
sl@0
   420
   * GObject::notify:
sl@0
   421
   * @gobject: the object which received the signal.
sl@0
   422
   * @pspec: the #GParamSpec of the property which changed.
sl@0
   423
   *
sl@0
   424
   * The notify signal is emitted on an object when one of its
sl@0
   425
   * properties has been changed. Note that getting this signal
sl@0
   426
   * doesn't guarantee that the value of the property has actually
sl@0
   427
   * changed, it may also be emitted when the setter for the property
sl@0
   428
   * is called to reinstate the previous value.
sl@0
   429
   *
sl@0
   430
   * This signal is typically used to obtain change notification for a
sl@0
   431
   * single property, by specifying the property name as a detail in the
sl@0
   432
   * g_signal_connect() call, like this:
sl@0
   433
   * |[
sl@0
   434
   * g_signal_connect (text_view->buffer, "notify::paste-target-list",
sl@0
   435
   *                   G_CALLBACK (gtk_text_view_target_list_notify),
sl@0
   436
   *                   text_view)
sl@0
   437
   * ]|
sl@0
   438
   * It is important to note that you must use
sl@0
   439
   * <link linkend="canonical-parameter-name">canonical</link> parameter names as
sl@0
   440
   * detail strings for the notify signal.
sl@0
   441
   */
sl@0
   442
  gobject_signals[NOTIFY] =
sl@0
   443
    g_signal_new (g_intern_static_string ("notify"),
sl@0
   444
		  G_TYPE_FROM_CLASS (class),
sl@0
   445
		  G_SIGNAL_RUN_FIRST | G_SIGNAL_NO_RECURSE | G_SIGNAL_DETAILED | G_SIGNAL_NO_HOOKS | G_SIGNAL_ACTION,
sl@0
   446
		  G_STRUCT_OFFSET (GObjectClass, notify),
sl@0
   447
		  NULL, NULL,
sl@0
   448
		  g_cclosure_marshal_VOID__PARAM,
sl@0
   449
		  G_TYPE_NONE,
sl@0
   450
		  1, G_TYPE_PARAM);
sl@0
   451
sl@0
   452
  /* Install a check function that we'll use to verify that classes that
sl@0
   453
   * implement an interface implement all properties for that interface
sl@0
   454
   */
sl@0
   455
  g_type_add_interface_check (NULL, object_interface_check_properties);
sl@0
   456
}
sl@0
   457
sl@0
   458
static void
sl@0
   459
install_property_internal (GType       g_type,
sl@0
   460
			   guint       property_id,
sl@0
   461
			   GParamSpec *pspec)
sl@0
   462
{
sl@0
   463
  if (g_param_spec_pool_lookup (pspec_pool, pspec->name, g_type, FALSE))
sl@0
   464
    {
sl@0
   465
      g_warning ("When installing property: type `%s' already has a property named `%s'",
sl@0
   466
		 g_type_name (g_type),
sl@0
   467
		 pspec->name);
sl@0
   468
      return;
sl@0
   469
    }
sl@0
   470
sl@0
   471
  g_param_spec_ref (pspec);
sl@0
   472
  g_param_spec_sink (pspec);
sl@0
   473
  PARAM_SPEC_SET_PARAM_ID (pspec, property_id);
sl@0
   474
  g_param_spec_pool_insert (pspec_pool, pspec, g_type);
sl@0
   475
}
sl@0
   476
sl@0
   477
/**
sl@0
   478
 * g_object_class_install_property:
sl@0
   479
 * @oclass: a #GObjectClass
sl@0
   480
 * @property_id: the id for the new property
sl@0
   481
 * @pspec: the #GParamSpec for the new property
sl@0
   482
 *
sl@0
   483
 * Installs a new property. This is usually done in the class initializer.
sl@0
   484
 *
sl@0
   485
 * Note that it is possible to redefine a property in a derived class,
sl@0
   486
 * by installing a property with the same name. This can be useful at times,
sl@0
   487
 * e.g. to change the range of allowed values or the default value.
sl@0
   488
 */
sl@0
   489
EXPORT_C void
sl@0
   490
g_object_class_install_property (GObjectClass *class,
sl@0
   491
				 guint	       property_id,
sl@0
   492
				 GParamSpec   *pspec)
sl@0
   493
{
sl@0
   494
  g_return_if_fail (G_IS_OBJECT_CLASS (class));
sl@0
   495
  g_return_if_fail (G_IS_PARAM_SPEC (pspec));
sl@0
   496
  if (pspec->flags & G_PARAM_WRITABLE)
sl@0
   497
    g_return_if_fail (class->set_property != NULL);
sl@0
   498
  if (pspec->flags & G_PARAM_READABLE)
sl@0
   499
    g_return_if_fail (class->get_property != NULL);
sl@0
   500
  g_return_if_fail (property_id > 0);
sl@0
   501
  g_return_if_fail (PARAM_SPEC_PARAM_ID (pspec) == 0);	/* paranoid */
sl@0
   502
  if (pspec->flags & G_PARAM_CONSTRUCT)
sl@0
   503
    g_return_if_fail ((pspec->flags & G_PARAM_CONSTRUCT_ONLY) == 0);
sl@0
   504
  if (pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
sl@0
   505
    g_return_if_fail (pspec->flags & G_PARAM_WRITABLE);
sl@0
   506
sl@0
   507
  install_property_internal (G_OBJECT_CLASS_TYPE (class), property_id, pspec);
sl@0
   508
sl@0
   509
  if (pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
sl@0
   510
    class->construct_properties = g_slist_prepend (class->construct_properties, pspec);
sl@0
   511
sl@0
   512
  /* for property overrides of construct poperties, we have to get rid
sl@0
   513
   * of the overidden inherited construct property
sl@0
   514
   */
sl@0
   515
  pspec = g_param_spec_pool_lookup (pspec_pool, pspec->name, g_type_parent (G_OBJECT_CLASS_TYPE (class)), TRUE);
sl@0
   516
  if (pspec && pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
sl@0
   517
    class->construct_properties = g_slist_remove (class->construct_properties, pspec);
sl@0
   518
}
sl@0
   519
sl@0
   520
/**
sl@0
   521
 * g_object_interface_install_property:
sl@0
   522
 * @g_iface: any interface vtable for the interface, or the default
sl@0
   523
 *  vtable for the interface.
sl@0
   524
 * @pspec: the #GParamSpec for the new property
sl@0
   525
 *
sl@0
   526
 * Add a property to an interface; this is only useful for interfaces
sl@0
   527
 * that are added to GObject-derived types. Adding a property to an
sl@0
   528
 * interface forces all objects classes with that interface to have a
sl@0
   529
 * compatible property. The compatible property could be a newly
sl@0
   530
 * created #GParamSpec, but normally
sl@0
   531
 * g_object_class_override_property() will be used so that the object
sl@0
   532
 * class only needs to provide an implementation and inherits the
sl@0
   533
 * property description, default value, bounds, and so forth from the
sl@0
   534
 * interface property.
sl@0
   535
 *
sl@0
   536
 * This function is meant to be called from the interface's default
sl@0
   537
 * vtable initialization function (the @class_init member of
sl@0
   538
 * #GTypeInfo.) It must not be called after after @class_init has
sl@0
   539
 * been called for any object types implementing this interface.
sl@0
   540
 *
sl@0
   541
 * Since: 2.4
sl@0
   542
 */
sl@0
   543
EXPORT_C void
sl@0
   544
g_object_interface_install_property (gpointer      g_iface,
sl@0
   545
				     GParamSpec   *pspec)
sl@0
   546
{
sl@0
   547
  GTypeInterface *iface_class = g_iface;
sl@0
   548
	
sl@0
   549
  g_return_if_fail (G_TYPE_IS_INTERFACE (iface_class->g_type));
sl@0
   550
  g_return_if_fail (G_IS_PARAM_SPEC (pspec));
sl@0
   551
  g_return_if_fail (!G_IS_PARAM_SPEC_OVERRIDE (pspec)); /* paranoid */
sl@0
   552
  g_return_if_fail (PARAM_SPEC_PARAM_ID (pspec) == 0);	/* paranoid */
sl@0
   553
		    
sl@0
   554
  install_property_internal (iface_class->g_type, 0, pspec);
sl@0
   555
}
sl@0
   556
sl@0
   557
/**
sl@0
   558
 * g_object_class_find_property:
sl@0
   559
 * @oclass: a #GObjectClass
sl@0
   560
 * @property_name: the name of the property to look up
sl@0
   561
 *
sl@0
   562
 * Looks up the #GParamSpec for a property of a class.
sl@0
   563
 *
sl@0
   564
 * Returns: the #GParamSpec for the property, or %NULL if the class
sl@0
   565
 *          doesn't have a property of that name
sl@0
   566
 */
sl@0
   567
EXPORT_C GParamSpec*
sl@0
   568
g_object_class_find_property (GObjectClass *class,
sl@0
   569
			      const gchar  *property_name)
sl@0
   570
{
sl@0
   571
  GParamSpec *pspec;
sl@0
   572
  GParamSpec *redirect;
sl@0
   573
	
sl@0
   574
  g_return_val_if_fail (G_IS_OBJECT_CLASS (class), NULL);
sl@0
   575
  g_return_val_if_fail (property_name != NULL, NULL);
sl@0
   576
  
sl@0
   577
  pspec = g_param_spec_pool_lookup (pspec_pool,
sl@0
   578
				    property_name,
sl@0
   579
				    G_OBJECT_CLASS_TYPE (class),
sl@0
   580
				    TRUE);
sl@0
   581
  if (pspec)
sl@0
   582
    {
sl@0
   583
      redirect = g_param_spec_get_redirect_target (pspec);
sl@0
   584
      if (redirect)
sl@0
   585
	return redirect;
sl@0
   586
      else
sl@0
   587
	return pspec;
sl@0
   588
    }
sl@0
   589
  else
sl@0
   590
    return NULL;
sl@0
   591
}
sl@0
   592
sl@0
   593
/**
sl@0
   594
 * g_object_interface_find_property:
sl@0
   595
 * @g_iface: any interface vtable for the interface, or the default
sl@0
   596
 *  vtable for the interface
sl@0
   597
 * @property_name: name of a property to lookup.
sl@0
   598
 *
sl@0
   599
 * Find the #GParamSpec with the given name for an
sl@0
   600
 * interface. Generally, the interface vtable passed in as @g_iface
sl@0
   601
 * will be the default vtable from g_type_default_interface_ref(), or,
sl@0
   602
 * if you know the interface has already been loaded,
sl@0
   603
 * g_type_default_interface_peek().
sl@0
   604
 *
sl@0
   605
 * Since: 2.4
sl@0
   606
 *
sl@0
   607
 * Returns: the #GParamSpec for the property of the interface with the
sl@0
   608
 *          name @property_name, or %NULL if no such property exists.
sl@0
   609
 */
sl@0
   610
EXPORT_C GParamSpec*
sl@0
   611
g_object_interface_find_property (gpointer      g_iface,
sl@0
   612
				  const gchar  *property_name)
sl@0
   613
{
sl@0
   614
  GTypeInterface *iface_class = g_iface;
sl@0
   615
	
sl@0
   616
  g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface_class->g_type), NULL);
sl@0
   617
  g_return_val_if_fail (property_name != NULL, NULL);
sl@0
   618
  
sl@0
   619
  return g_param_spec_pool_lookup (pspec_pool,
sl@0
   620
				   property_name,
sl@0
   621
				   iface_class->g_type,
sl@0
   622
				   FALSE);
sl@0
   623
}
sl@0
   624
sl@0
   625
/**
sl@0
   626
 * g_object_class_override_property:
sl@0
   627
 * @oclass: a #GObjectClass
sl@0
   628
 * @property_id: the new property ID
sl@0
   629
 * @name: the name of a property registered in a parent class or
sl@0
   630
 *  in an interface of this class.
sl@0
   631
 *
sl@0
   632
 * Registers @property_id as referring to a property with the
sl@0
   633
 * name @name in a parent class or in an interface implemented
sl@0
   634
 * by @oclass. This allows this class to <firstterm>override</firstterm>
sl@0
   635
 * a property implementation in a parent class or to provide
sl@0
   636
 * the implementation of a property from an interface.
sl@0
   637
 *
sl@0
   638
 * <note>
sl@0
   639
 * Internally, overriding is implemented by creating a property of type
sl@0
   640
 * #GParamSpecOverride; generally operations that query the properties of
sl@0
   641
 * the object class, such as g_object_class_find_property() or
sl@0
   642
 * g_object_class_list_properties() will return the overridden
sl@0
   643
 * property. However, in one case, the @construct_properties argument of
sl@0
   644
 * the @constructor virtual function, the #GParamSpecOverride is passed
sl@0
   645
 * instead, so that the @param_id field of the #GParamSpec will be
sl@0
   646
 * correct.  For virtually all uses, this makes no difference. If you
sl@0
   647
 * need to get the overridden property, you can call
sl@0
   648
 * g_param_spec_get_redirect_target().
sl@0
   649
 * </note>
sl@0
   650
 *
sl@0
   651
 * Since: 2.4
sl@0
   652
 */
sl@0
   653
EXPORT_C void
sl@0
   654
g_object_class_override_property (GObjectClass *oclass,
sl@0
   655
				  guint         property_id,
sl@0
   656
				  const gchar  *name)
sl@0
   657
{
sl@0
   658
  GParamSpec *overridden = NULL;
sl@0
   659
  GParamSpec *new;
sl@0
   660
  GType parent_type;
sl@0
   661
  
sl@0
   662
  g_return_if_fail (G_IS_OBJECT_CLASS (oclass));
sl@0
   663
  g_return_if_fail (property_id > 0);
sl@0
   664
  g_return_if_fail (name != NULL);
sl@0
   665
sl@0
   666
  /* Find the overridden property; first check parent types
sl@0
   667
   */
sl@0
   668
  parent_type = g_type_parent (G_OBJECT_CLASS_TYPE (oclass));
sl@0
   669
  if (parent_type != G_TYPE_NONE)
sl@0
   670
    overridden = g_param_spec_pool_lookup (pspec_pool,
sl@0
   671
					   name,
sl@0
   672
					   parent_type,
sl@0
   673
					   TRUE);
sl@0
   674
  if (!overridden)
sl@0
   675
    {
sl@0
   676
      GType *ifaces;
sl@0
   677
      guint n_ifaces;
sl@0
   678
      
sl@0
   679
      /* Now check interfaces
sl@0
   680
       */
sl@0
   681
      ifaces = g_type_interfaces (G_OBJECT_CLASS_TYPE (oclass), &n_ifaces);
sl@0
   682
      while (n_ifaces-- && !overridden)
sl@0
   683
	{
sl@0
   684
	  overridden = g_param_spec_pool_lookup (pspec_pool,
sl@0
   685
						 name,
sl@0
   686
						 ifaces[n_ifaces],
sl@0
   687
						 FALSE);
sl@0
   688
	}
sl@0
   689
      
sl@0
   690
      g_free (ifaces);
sl@0
   691
    }
sl@0
   692
sl@0
   693
  if (!overridden)
sl@0
   694
    {
sl@0
   695
      g_warning ("%s: Can't find property to override for '%s::%s'",
sl@0
   696
		 G_STRFUNC, G_OBJECT_CLASS_NAME (oclass), name);
sl@0
   697
      return;
sl@0
   698
    }
sl@0
   699
sl@0
   700
  new = g_param_spec_override (name, overridden);
sl@0
   701
  g_object_class_install_property (oclass, property_id, new);
sl@0
   702
}
sl@0
   703
sl@0
   704
/**
sl@0
   705
 * g_object_class_list_properties:
sl@0
   706
 * @oclass: a #GObjectClass
sl@0
   707
 * @n_properties: return location for the length of the returned array
sl@0
   708
 *
sl@0
   709
 * Get an array of #GParamSpec* for all properties of a class.
sl@0
   710
 *
sl@0
   711
 * Returns: an array of #GParamSpec* which should be freed after use
sl@0
   712
 */
sl@0
   713
EXPORT_C GParamSpec** /* free result */
sl@0
   714
g_object_class_list_properties (GObjectClass *class,
sl@0
   715
				guint        *n_properties_p)
sl@0
   716
{
sl@0
   717
  GParamSpec **pspecs;
sl@0
   718
  guint n;
sl@0
   719
sl@0
   720
  g_return_val_if_fail (G_IS_OBJECT_CLASS (class), NULL);
sl@0
   721
sl@0
   722
  pspecs = g_param_spec_pool_list (pspec_pool,
sl@0
   723
				   G_OBJECT_CLASS_TYPE (class),
sl@0
   724
				   &n);
sl@0
   725
  if (n_properties_p)
sl@0
   726
    *n_properties_p = n;
sl@0
   727
sl@0
   728
  return pspecs;
sl@0
   729
}
sl@0
   730
sl@0
   731
/**
sl@0
   732
 * g_object_interface_list_properties:
sl@0
   733
 * @g_iface: any interface vtable for the interface, or the default
sl@0
   734
 *  vtable for the interface
sl@0
   735
 * @n_properties_p: location to store number of properties returned.
sl@0
   736
 *
sl@0
   737
 * Lists the properties of an interface.Generally, the interface
sl@0
   738
 * vtable passed in as @g_iface will be the default vtable from
sl@0
   739
 * g_type_default_interface_ref(), or, if you know the interface has
sl@0
   740
 * already been loaded, g_type_default_interface_peek().
sl@0
   741
 *
sl@0
   742
 * Since: 2.4
sl@0
   743
 *
sl@0
   744
 * Returns: a pointer to an array of pointers to #GParamSpec
sl@0
   745
 *          structures. The paramspecs are owned by GLib, but the
sl@0
   746
 *          array should be freed with g_free() when you are done with
sl@0
   747
 *          it.
sl@0
   748
 */
sl@0
   749
EXPORT_C GParamSpec** /* free result */
sl@0
   750
g_object_interface_list_properties (gpointer      g_iface,
sl@0
   751
				    guint        *n_properties_p)
sl@0
   752
{
sl@0
   753
  GTypeInterface *iface_class = g_iface;
sl@0
   754
  GParamSpec **pspecs;
sl@0
   755
  guint n;
sl@0
   756
sl@0
   757
  g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface_class->g_type), NULL);
sl@0
   758
sl@0
   759
  pspecs = g_param_spec_pool_list (pspec_pool,
sl@0
   760
				   iface_class->g_type,
sl@0
   761
				   &n);
sl@0
   762
  if (n_properties_p)
sl@0
   763
    *n_properties_p = n;
sl@0
   764
sl@0
   765
  return pspecs;
sl@0
   766
}
sl@0
   767
sl@0
   768
static void
sl@0
   769
g_object_init (GObject *object)
sl@0
   770
{
sl@0
   771
  object->ref_count = 1;
sl@0
   772
  g_datalist_init (&object->qdata);
sl@0
   773
  
sl@0
   774
  /* freeze object's notification queue, g_object_newv() preserves pairedness */
sl@0
   775
  g_object_notify_queue_freeze (object, &property_notify_context);
sl@0
   776
  /* enter construction list for notify_queue_thaw() and to allow construct-only properties */
sl@0
   777
  G_LOCK (construction_mutex);
sl@0
   778
  construction_objects = g_slist_prepend (construction_objects, object);
sl@0
   779
  G_UNLOCK (construction_mutex);
sl@0
   780
sl@0
   781
#ifdef	G_ENABLE_DEBUG
sl@0
   782
  IF_DEBUG (OBJECTS)
sl@0
   783
    {
sl@0
   784
      G_LOCK (debug_objects);
sl@0
   785
      debug_objects_count++;
sl@0
   786
      g_hash_table_insert (debug_objects_ht, object, object);
sl@0
   787
      G_UNLOCK (debug_objects);
sl@0
   788
    }
sl@0
   789
#endif	/* G_ENABLE_DEBUG */
sl@0
   790
}
sl@0
   791
sl@0
   792
static void
sl@0
   793
g_object_do_set_property (GObject      *object,
sl@0
   794
			  guint         property_id,
sl@0
   795
			  const GValue *value,
sl@0
   796
			  GParamSpec   *pspec)
sl@0
   797
{
sl@0
   798
  switch (property_id)
sl@0
   799
    {
sl@0
   800
    default:
sl@0
   801
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
sl@0
   802
      break;
sl@0
   803
    }
sl@0
   804
}
sl@0
   805
sl@0
   806
static void
sl@0
   807
g_object_do_get_property (GObject     *object,
sl@0
   808
			  guint        property_id,
sl@0
   809
			  GValue      *value,
sl@0
   810
			  GParamSpec  *pspec)
sl@0
   811
{
sl@0
   812
  switch (property_id)
sl@0
   813
    {
sl@0
   814
    default:
sl@0
   815
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
sl@0
   816
      break;
sl@0
   817
    }
sl@0
   818
}
sl@0
   819
sl@0
   820
static void
sl@0
   821
g_object_real_dispose (GObject *object)
sl@0
   822
{
sl@0
   823
  g_signal_handlers_destroy (object);
sl@0
   824
  g_datalist_id_set_data (&object->qdata, quark_closure_array, NULL);
sl@0
   825
  g_datalist_id_set_data (&object->qdata, quark_weak_refs, NULL);
sl@0
   826
}
sl@0
   827
sl@0
   828
static void
sl@0
   829
g_object_finalize (GObject *object)
sl@0
   830
{
sl@0
   831
  g_datalist_clear (&object->qdata);
sl@0
   832
  
sl@0
   833
#ifdef	G_ENABLE_DEBUG
sl@0
   834
  IF_DEBUG (OBJECTS)
sl@0
   835
    {
sl@0
   836
      G_LOCK (debug_objects);
sl@0
   837
      g_assert (g_hash_table_lookup (debug_objects_ht, object) == object);
sl@0
   838
      g_hash_table_remove (debug_objects_ht, object);
sl@0
   839
      debug_objects_count--;
sl@0
   840
      G_UNLOCK (debug_objects);
sl@0
   841
    }
sl@0
   842
#endif	/* G_ENABLE_DEBUG */
sl@0
   843
}
sl@0
   844
sl@0
   845
sl@0
   846
static void
sl@0
   847
g_object_dispatch_properties_changed (GObject     *object,
sl@0
   848
				      guint        n_pspecs,
sl@0
   849
				      GParamSpec **pspecs)
sl@0
   850
{
sl@0
   851
  guint i;
sl@0
   852
sl@0
   853
  for (i = 0; i < n_pspecs; i++)
sl@0
   854
    g_signal_emit (object, gobject_signals[NOTIFY], g_quark_from_string (pspecs[i]->name), pspecs[i]);
sl@0
   855
}
sl@0
   856
sl@0
   857
/**
sl@0
   858
 * g_object_run_dispose:
sl@0
   859
 * @object: a #GObject
sl@0
   860
 *
sl@0
   861
 * Releases all references to other objects. This can be used to break
sl@0
   862
 * reference cycles.
sl@0
   863
 *
sl@0
   864
 * This functions should only be called from object system implementations.
sl@0
   865
 */
sl@0
   866
EXPORT_C void
sl@0
   867
g_object_run_dispose (GObject *object)
sl@0
   868
{
sl@0
   869
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
   870
  g_return_if_fail (object->ref_count > 0);
sl@0
   871
sl@0
   872
  g_object_ref (object);
sl@0
   873
  G_OBJECT_GET_CLASS (object)->dispose (object);
sl@0
   874
  g_object_unref (object);
sl@0
   875
}
sl@0
   876
sl@0
   877
/**
sl@0
   878
 * g_object_freeze_notify:
sl@0
   879
 * @object: a #GObject
sl@0
   880
 *
sl@0
   881
 * Increases the freeze count on @object. If the freeze count is
sl@0
   882
 * non-zero, the emission of "notify" signals on @object is
sl@0
   883
 * stopped. The signals are queued until the freeze count is decreased
sl@0
   884
 * to zero.
sl@0
   885
 *
sl@0
   886
 * This is necessary for accessors that modify multiple properties to prevent
sl@0
   887
 * premature notification while the object is still being modified.
sl@0
   888
 */
sl@0
   889
EXPORT_C void
sl@0
   890
g_object_freeze_notify (GObject *object)
sl@0
   891
{
sl@0
   892
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
   893
sl@0
   894
  if (g_atomic_int_get (&object->ref_count) == 0)
sl@0
   895
    return;
sl@0
   896
sl@0
   897
  g_object_ref (object);
sl@0
   898
  g_object_notify_queue_freeze (object, &property_notify_context);
sl@0
   899
  g_object_unref (object);
sl@0
   900
}
sl@0
   901
sl@0
   902
/**
sl@0
   903
 * g_object_notify:
sl@0
   904
 * @object: a #GObject
sl@0
   905
 * @property_name: the name of a property installed on the class of @object.
sl@0
   906
 *
sl@0
   907
 * Emits a "notify" signal for the property @property_name on @object.
sl@0
   908
 */
sl@0
   909
EXPORT_C void
sl@0
   910
g_object_notify (GObject     *object,
sl@0
   911
		 const gchar *property_name)
sl@0
   912
{
sl@0
   913
  GParamSpec *pspec;
sl@0
   914
  
sl@0
   915
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
   916
  g_return_if_fail (property_name != NULL);
sl@0
   917
  if (g_atomic_int_get (&object->ref_count) == 0)
sl@0
   918
    return;
sl@0
   919
  
sl@0
   920
  g_object_ref (object);
sl@0
   921
  /* We don't need to get the redirect target
sl@0
   922
   * (by, e.g. calling g_object_class_find_property())
sl@0
   923
   * because g_object_notify_queue_add() does that
sl@0
   924
   */
sl@0
   925
  pspec = g_param_spec_pool_lookup (pspec_pool,
sl@0
   926
				    property_name,
sl@0
   927
				    G_OBJECT_TYPE (object),
sl@0
   928
				    TRUE);
sl@0
   929
sl@0
   930
  if (!pspec)
sl@0
   931
    g_warning ("%s: object class `%s' has no property named `%s'",
sl@0
   932
	       G_STRFUNC,
sl@0
   933
	       G_OBJECT_TYPE_NAME (object),
sl@0
   934
	       property_name);
sl@0
   935
  else
sl@0
   936
    {
sl@0
   937
      GObjectNotifyQueue *nqueue;
sl@0
   938
      
sl@0
   939
      nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
sl@0
   940
      g_object_notify_queue_add (object, nqueue, pspec);
sl@0
   941
      g_object_notify_queue_thaw (object, nqueue);
sl@0
   942
    }
sl@0
   943
  g_object_unref (object);
sl@0
   944
}
sl@0
   945
sl@0
   946
/**
sl@0
   947
 * g_object_thaw_notify:
sl@0
   948
 * @object: a #GObject
sl@0
   949
 *
sl@0
   950
 * Reverts the effect of a previous call to
sl@0
   951
 * g_object_freeze_notify(). The freeze count is decreased on @object
sl@0
   952
 * and when it reaches zero, all queued "notify" signals are emitted.
sl@0
   953
 *
sl@0
   954
 * It is an error to call this function when the freeze count is zero.
sl@0
   955
 */
sl@0
   956
EXPORT_C void
sl@0
   957
g_object_thaw_notify (GObject *object)
sl@0
   958
{
sl@0
   959
  GObjectNotifyQueue *nqueue;
sl@0
   960
  
sl@0
   961
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
   962
  if (g_atomic_int_get (&object->ref_count) == 0)
sl@0
   963
    return;
sl@0
   964
  
sl@0
   965
  g_object_ref (object);
sl@0
   966
  nqueue = g_object_notify_queue_from_object (object, &property_notify_context);
sl@0
   967
  if (!nqueue || !nqueue->freeze_count)
sl@0
   968
    g_warning ("%s: property-changed notification for %s(%p) is not frozen",
sl@0
   969
	       G_STRFUNC, G_OBJECT_TYPE_NAME (object), object);
sl@0
   970
  else
sl@0
   971
    g_object_notify_queue_thaw (object, nqueue);
sl@0
   972
  g_object_unref (object);
sl@0
   973
}
sl@0
   974
sl@0
   975
static inline void
sl@0
   976
object_get_property (GObject     *object,
sl@0
   977
		     GParamSpec  *pspec,
sl@0
   978
		     GValue      *value)
sl@0
   979
{
sl@0
   980
  GObjectClass *class = g_type_class_peek (pspec->owner_type);
sl@0
   981
  guint param_id = PARAM_SPEC_PARAM_ID (pspec);
sl@0
   982
  GParamSpec *redirect;
sl@0
   983
sl@0
   984
  redirect = g_param_spec_get_redirect_target (pspec);
sl@0
   985
  if (redirect)
sl@0
   986
    pspec = redirect;    
sl@0
   987
  
sl@0
   988
  class->get_property (object, param_id, value, pspec);
sl@0
   989
}
sl@0
   990
sl@0
   991
static inline void
sl@0
   992
object_set_property (GObject             *object,
sl@0
   993
		     GParamSpec          *pspec,
sl@0
   994
		     const GValue        *value,
sl@0
   995
		     GObjectNotifyQueue  *nqueue)
sl@0
   996
{
sl@0
   997
  GValue tmp_value = { 0, };
sl@0
   998
  GObjectClass *class = g_type_class_peek (pspec->owner_type);
sl@0
   999
  guint param_id = PARAM_SPEC_PARAM_ID (pspec);
sl@0
  1000
  GParamSpec *redirect;
sl@0
  1001
sl@0
  1002
  redirect = g_param_spec_get_redirect_target (pspec);
sl@0
  1003
  if (redirect)
sl@0
  1004
    pspec = redirect;
sl@0
  1005
sl@0
  1006
  /* provide a copy to work from, convert (if necessary) and validate */
sl@0
  1007
  g_value_init (&tmp_value, G_PARAM_SPEC_VALUE_TYPE (pspec));
sl@0
  1008
  if (!g_value_transform (value, &tmp_value))
sl@0
  1009
    g_warning ("unable to set property `%s' of type `%s' from value of type `%s'",
sl@0
  1010
	       pspec->name,
sl@0
  1011
	       g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)),
sl@0
  1012
	       G_VALUE_TYPE_NAME (value));
sl@0
  1013
  else if (g_param_value_validate (pspec, &tmp_value) && !(pspec->flags & G_PARAM_LAX_VALIDATION))
sl@0
  1014
    {
sl@0
  1015
      gchar *contents = g_strdup_value_contents (value);
sl@0
  1016
sl@0
  1017
      g_warning ("value \"%s\" of type `%s' is invalid or out of range for property `%s' of type `%s'",
sl@0
  1018
		 contents,
sl@0
  1019
		 G_VALUE_TYPE_NAME (value),
sl@0
  1020
		 pspec->name,
sl@0
  1021
		 g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)));
sl@0
  1022
      g_free (contents);
sl@0
  1023
    }
sl@0
  1024
  else
sl@0
  1025
    {
sl@0
  1026
      class->set_property (object, param_id, &tmp_value, pspec);
sl@0
  1027
      g_object_notify_queue_add (object, nqueue, pspec);
sl@0
  1028
    }
sl@0
  1029
  g_value_unset (&tmp_value);
sl@0
  1030
}
sl@0
  1031
sl@0
  1032
static void
sl@0
  1033
object_interface_check_properties (gpointer func_data,
sl@0
  1034
				   gpointer g_iface)
sl@0
  1035
{
sl@0
  1036
  GTypeInterface *iface_class = g_iface;
sl@0
  1037
  GObjectClass *class = g_type_class_peek (iface_class->g_instance_type);
sl@0
  1038
  GType iface_type = iface_class->g_type;
sl@0
  1039
  GParamSpec **pspecs;
sl@0
  1040
  guint n;
sl@0
  1041
sl@0
  1042
  if (!G_IS_OBJECT_CLASS (class))
sl@0
  1043
    return;
sl@0
  1044
sl@0
  1045
  pspecs = g_param_spec_pool_list (pspec_pool, iface_type, &n);
sl@0
  1046
sl@0
  1047
  while (n--)
sl@0
  1048
    {
sl@0
  1049
      GParamSpec *class_pspec = g_param_spec_pool_lookup (pspec_pool,
sl@0
  1050
							  pspecs[n]->name,
sl@0
  1051
							  G_OBJECT_CLASS_TYPE (class),
sl@0
  1052
							  TRUE);
sl@0
  1053
      
sl@0
  1054
      if (!class_pspec)
sl@0
  1055
	{
sl@0
  1056
	  g_critical ("Object class %s doesn't implement property "
sl@0
  1057
		      "'%s' from interface '%s'",
sl@0
  1058
		      g_type_name (G_OBJECT_CLASS_TYPE (class)),
sl@0
  1059
		      pspecs[n]->name,
sl@0
  1060
		      g_type_name (iface_type));
sl@0
  1061
sl@0
  1062
	  continue;
sl@0
  1063
	}
sl@0
  1064
sl@0
  1065
      /* The implementation paramspec must have a less restrictive
sl@0
  1066
       * type than the interface parameter spec for set() and a
sl@0
  1067
       * more restrictive type for get(). We just require equality,
sl@0
  1068
       * rather than doing something more complicated checking
sl@0
  1069
       * the READABLE and WRITABLE flags. We also simplify here
sl@0
  1070
       * by only checking the value type, not the G_PARAM_SPEC_TYPE.
sl@0
  1071
       */
sl@0
  1072
      if (class_pspec &&
sl@0
  1073
	  !g_type_is_a (G_PARAM_SPEC_VALUE_TYPE (pspecs[n]),
sl@0
  1074
			G_PARAM_SPEC_VALUE_TYPE (class_pspec)))
sl@0
  1075
	{
sl@0
  1076
	  g_critical ("Property '%s' on class '%s' has type '%s' "
sl@0
  1077
		      "which is different from the type '%s', "
sl@0
  1078
		      "of the property on interface '%s'\n",
sl@0
  1079
		      pspecs[n]->name,
sl@0
  1080
		      g_type_name (G_OBJECT_CLASS_TYPE (class)),
sl@0
  1081
		      g_type_name (G_PARAM_SPEC_VALUE_TYPE (class_pspec)),
sl@0
  1082
		      g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspecs[n])),
sl@0
  1083
		      g_type_name (iface_type));
sl@0
  1084
	}
sl@0
  1085
      
sl@0
  1086
#define SUBSET(a,b,mask) (((a) & ~(b) & (mask)) == 0)
sl@0
  1087
      
sl@0
  1088
      /* CONSTRUCT and CONSTRUCT_ONLY add restrictions.
sl@0
  1089
       * READABLE and WRITABLE remove restrictions. The implementation
sl@0
  1090
       * paramspec must have less restrictive flags.
sl@0
  1091
       */
sl@0
  1092
      if (class_pspec &&
sl@0
  1093
	  (!SUBSET (class_pspec->flags,
sl@0
  1094
		    pspecs[n]->flags,
sl@0
  1095
		    G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY) ||
sl@0
  1096
	   !SUBSET (pspecs[n]->flags,
sl@0
  1097
		    class_pspec->flags,
sl@0
  1098
		    G_PARAM_READABLE | G_PARAM_WRITABLE)))
sl@0
  1099
	{
sl@0
  1100
	  g_critical ("Flags for property '%s' on class '%s' "
sl@0
  1101
		      "are not compatible with the property on"
sl@0
  1102
		      "interface '%s'\n",
sl@0
  1103
		      pspecs[n]->name,
sl@0
  1104
		      g_type_name (G_OBJECT_CLASS_TYPE (class)),
sl@0
  1105
		      g_type_name (iface_type));
sl@0
  1106
	}
sl@0
  1107
#undef SUBSET	  
sl@0
  1108
    }
sl@0
  1109
  
sl@0
  1110
  g_free (pspecs);
sl@0
  1111
}
sl@0
  1112
sl@0
  1113
EXPORT_C GType
sl@0
  1114
g_object_get_type (void)
sl@0
  1115
{
sl@0
  1116
    return G_TYPE_OBJECT;
sl@0
  1117
}
sl@0
  1118
sl@0
  1119
/**
sl@0
  1120
 * g_object_new:
sl@0
  1121
 * @object_type: the type id of the #GObject subtype to instantiate
sl@0
  1122
 * @first_property_name: the name of the first property
sl@0
  1123
 * @...: the value of the first property, followed optionally by more
sl@0
  1124
 *  name/value pairs, followed by %NULL
sl@0
  1125
 *
sl@0
  1126
 * Creates a new instance of a #GObject subtype and sets its properties.
sl@0
  1127
 *
sl@0
  1128
 * Construction parameters (see #G_PARAM_CONSTRUCT, #G_PARAM_CONSTRUCT_ONLY)
sl@0
  1129
 * which are not explicitly specified are set to their default values.
sl@0
  1130
 *
sl@0
  1131
 * Returns: a new instance of @object_type
sl@0
  1132
 */
sl@0
  1133
EXPORT_C gpointer
sl@0
  1134
g_object_new (GType	   object_type,
sl@0
  1135
	      const gchar *first_property_name,
sl@0
  1136
	      ...)
sl@0
  1137
{
sl@0
  1138
  GObject *object;
sl@0
  1139
  va_list var_args;
sl@0
  1140
  
sl@0
  1141
  g_return_val_if_fail (G_TYPE_IS_OBJECT (object_type), NULL);
sl@0
  1142
  
sl@0
  1143
  va_start (var_args, first_property_name);
sl@0
  1144
  object = g_object_new_valist (object_type, first_property_name, var_args);
sl@0
  1145
  va_end (var_args);
sl@0
  1146
  
sl@0
  1147
  return object;
sl@0
  1148
}
sl@0
  1149
sl@0
  1150
static gboolean
sl@0
  1151
slist_maybe_remove (GSList       **slist,
sl@0
  1152
                    gconstpointer  data)
sl@0
  1153
{
sl@0
  1154
  GSList *last = NULL, *node = *slist;
sl@0
  1155
  while (node)
sl@0
  1156
    {
sl@0
  1157
      if (node->data == data)
sl@0
  1158
        {
sl@0
  1159
          if (last)
sl@0
  1160
            last->next = node->next;
sl@0
  1161
          else
sl@0
  1162
            *slist = node->next;
sl@0
  1163
          g_slist_free_1 (node);
sl@0
  1164
          return TRUE;
sl@0
  1165
        }
sl@0
  1166
      last = node;
sl@0
  1167
      node = last->next;
sl@0
  1168
    }
sl@0
  1169
  return FALSE;
sl@0
  1170
}
sl@0
  1171
sl@0
  1172
static inline gboolean
sl@0
  1173
object_in_construction_list (GObject *object)
sl@0
  1174
{
sl@0
  1175
  gboolean in_construction;
sl@0
  1176
  G_LOCK (construction_mutex);
sl@0
  1177
  in_construction = g_slist_find (construction_objects, object) != NULL;
sl@0
  1178
  G_UNLOCK (construction_mutex);
sl@0
  1179
  return in_construction;
sl@0
  1180
}
sl@0
  1181
sl@0
  1182
/**
sl@0
  1183
 * g_object_newv:
sl@0
  1184
 * @object_type: the type id of the #GObject subtype to instantiate
sl@0
  1185
 * @n_parameters: the length of the @parameters array
sl@0
  1186
 * @parameters: an array of #GParameter
sl@0
  1187
 *
sl@0
  1188
 * Creates a new instance of a #GObject subtype and sets its properties.
sl@0
  1189
 *
sl@0
  1190
 * Construction parameters (see #G_PARAM_CONSTRUCT, #G_PARAM_CONSTRUCT_ONLY)
sl@0
  1191
 * which are not explicitly specified are set to their default values.
sl@0
  1192
 *
sl@0
  1193
 * Returns: a new instance of @object_type
sl@0
  1194
 */
sl@0
  1195
EXPORT_C gpointer
sl@0
  1196
g_object_newv (GType       object_type,
sl@0
  1197
	       guint       n_parameters,
sl@0
  1198
	       GParameter *parameters)
sl@0
  1199
{
sl@0
  1200
  GObjectConstructParam *cparams, *oparams;
sl@0
  1201
  GObjectNotifyQueue *nqueue = NULL; /* shouldn't be initialized, just to silence compiler */
sl@0
  1202
  GObject *object;
sl@0
  1203
  GObjectClass *class, *unref_class = NULL;
sl@0
  1204
  GSList *slist;
sl@0
  1205
  guint n_total_cparams = 0, n_cparams = 0, n_oparams = 0, n_cvalues;
sl@0
  1206
  GValue *cvalues;
sl@0
  1207
  GList *clist = NULL;
sl@0
  1208
  gboolean newly_constructed;
sl@0
  1209
  guint i;
sl@0
  1210
sl@0
  1211
  g_return_val_if_fail (G_TYPE_IS_OBJECT (object_type), NULL);
sl@0
  1212
sl@0
  1213
  class = g_type_class_peek_static (object_type);
sl@0
  1214
  if (!class)
sl@0
  1215
    class = unref_class = g_type_class_ref (object_type);
sl@0
  1216
  for (slist = class->construct_properties; slist; slist = slist->next)
sl@0
  1217
    {
sl@0
  1218
      clist = g_list_prepend (clist, slist->data);
sl@0
  1219
      n_total_cparams += 1;
sl@0
  1220
    }
sl@0
  1221
sl@0
  1222
  /* collect parameters, sort into construction and normal ones */
sl@0
  1223
  oparams = g_new (GObjectConstructParam, n_parameters);
sl@0
  1224
  cparams = g_new (GObjectConstructParam, n_total_cparams);
sl@0
  1225
  for (i = 0; i < n_parameters; i++)
sl@0
  1226
    {
sl@0
  1227
      GValue *value = &parameters[i].value;
sl@0
  1228
      GParamSpec *pspec = g_param_spec_pool_lookup (pspec_pool,
sl@0
  1229
						    parameters[i].name,
sl@0
  1230
						    object_type,
sl@0
  1231
						    TRUE);
sl@0
  1232
      if (!pspec)
sl@0
  1233
	{
sl@0
  1234
	  g_warning ("%s: object class `%s' has no property named `%s'",
sl@0
  1235
		     G_STRFUNC,
sl@0
  1236
		     g_type_name (object_type),
sl@0
  1237
		     parameters[i].name);
sl@0
  1238
	  continue;
sl@0
  1239
	}
sl@0
  1240
      if (!(pspec->flags & G_PARAM_WRITABLE))
sl@0
  1241
	{
sl@0
  1242
	  g_warning ("%s: property `%s' of object class `%s' is not writable",
sl@0
  1243
		     G_STRFUNC,
sl@0
  1244
		     pspec->name,
sl@0
  1245
		     g_type_name (object_type));
sl@0
  1246
	  continue;
sl@0
  1247
	}
sl@0
  1248
      if (pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
sl@0
  1249
	{
sl@0
  1250
	  GList *list = g_list_find (clist, pspec);
sl@0
  1251
sl@0
  1252
	  if (!list)
sl@0
  1253
	    {
sl@0
  1254
	      g_warning ("%s: construct property \"%s\" for object `%s' can't be set twice",
sl@0
  1255
                         G_STRFUNC, pspec->name, g_type_name (object_type));
sl@0
  1256
	      continue;
sl@0
  1257
	    }
sl@0
  1258
	  cparams[n_cparams].pspec = pspec;
sl@0
  1259
	  cparams[n_cparams].value = value;
sl@0
  1260
	  n_cparams++;
sl@0
  1261
	  if (!list->prev)
sl@0
  1262
	    clist = list->next;
sl@0
  1263
	  else
sl@0
  1264
	    list->prev->next = list->next;
sl@0
  1265
	  if (list->next)
sl@0
  1266
	    list->next->prev = list->prev;
sl@0
  1267
	  g_list_free_1 (list);
sl@0
  1268
	}
sl@0
  1269
      else
sl@0
  1270
	{
sl@0
  1271
	  oparams[n_oparams].pspec = pspec;
sl@0
  1272
	  oparams[n_oparams].value = value;
sl@0
  1273
	  n_oparams++;
sl@0
  1274
	}
sl@0
  1275
    }
sl@0
  1276
sl@0
  1277
  /* set remaining construction properties to default values */
sl@0
  1278
  n_cvalues = n_total_cparams - n_cparams;
sl@0
  1279
  cvalues = g_new (GValue, n_cvalues);
sl@0
  1280
  while (clist)
sl@0
  1281
    {
sl@0
  1282
      GList *tmp = clist->next;
sl@0
  1283
      GParamSpec *pspec = clist->data;
sl@0
  1284
      GValue *value = cvalues + n_total_cparams - n_cparams - 1;
sl@0
  1285
sl@0
  1286
      value->g_type = 0;
sl@0
  1287
      g_value_init (value, G_PARAM_SPEC_VALUE_TYPE (pspec));
sl@0
  1288
      g_param_value_set_default (pspec, value);
sl@0
  1289
sl@0
  1290
      cparams[n_cparams].pspec = pspec;
sl@0
  1291
      cparams[n_cparams].value = value;
sl@0
  1292
      n_cparams++;
sl@0
  1293
sl@0
  1294
      g_list_free_1 (clist);
sl@0
  1295
      clist = tmp;
sl@0
  1296
    }
sl@0
  1297
sl@0
  1298
  /* construct object from construction parameters */
sl@0
  1299
  object = class->constructor (object_type, n_total_cparams, cparams);
sl@0
  1300
  /* free construction values */
sl@0
  1301
  g_free (cparams);
sl@0
  1302
  while (n_cvalues--)
sl@0
  1303
    g_value_unset (cvalues + n_cvalues);
sl@0
  1304
  g_free (cvalues);
sl@0
  1305
sl@0
  1306
  /* adjust freeze_count according to g_object_init() and remaining properties */
sl@0
  1307
  G_LOCK (construction_mutex);
sl@0
  1308
  newly_constructed = slist_maybe_remove (&construction_objects, object);
sl@0
  1309
  G_UNLOCK (construction_mutex);
sl@0
  1310
  if (newly_constructed || n_oparams)
sl@0
  1311
    nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
sl@0
  1312
  if (newly_constructed)
sl@0
  1313
    g_object_notify_queue_thaw (object, nqueue);
sl@0
  1314
sl@0
  1315
  /* run 'constructed' handler if there is one */
sl@0
  1316
  if (newly_constructed && class->constructed)
sl@0
  1317
    class->constructed (object);
sl@0
  1318
sl@0
  1319
  /* set remaining properties */
sl@0
  1320
  for (i = 0; i < n_oparams; i++)
sl@0
  1321
    object_set_property (object, oparams[i].pspec, oparams[i].value, nqueue);
sl@0
  1322
  g_free (oparams);
sl@0
  1323
sl@0
  1324
  /* release our own freeze count and handle notifications */
sl@0
  1325
  if (newly_constructed || n_oparams)
sl@0
  1326
    g_object_notify_queue_thaw (object, nqueue);
sl@0
  1327
sl@0
  1328
  if (unref_class)
sl@0
  1329
    g_type_class_unref (unref_class);
sl@0
  1330
sl@0
  1331
  return object;
sl@0
  1332
}
sl@0
  1333
sl@0
  1334
/**
sl@0
  1335
 * g_object_new_valist:
sl@0
  1336
 * @object_type: the type id of the #GObject subtype to instantiate
sl@0
  1337
 * @first_property_name: the name of the first property
sl@0
  1338
 * @var_args: the value of the first property, followed optionally by more
sl@0
  1339
 *  name/value pairs, followed by %NULL
sl@0
  1340
 *
sl@0
  1341
 * Creates a new instance of a #GObject subtype and sets its properties.
sl@0
  1342
 *
sl@0
  1343
 * Construction parameters (see #G_PARAM_CONSTRUCT, #G_PARAM_CONSTRUCT_ONLY)
sl@0
  1344
 * which are not explicitly specified are set to their default values.
sl@0
  1345
 *
sl@0
  1346
 * Returns: a new instance of @object_type
sl@0
  1347
 */
sl@0
  1348
EXPORT_C GObject*
sl@0
  1349
g_object_new_valist (GType	  object_type,
sl@0
  1350
		     const gchar *first_property_name,
sl@0
  1351
		     va_list	  var_args)
sl@0
  1352
{
sl@0
  1353
  GObjectClass *class;
sl@0
  1354
  GParameter *params;
sl@0
  1355
  const gchar *name;
sl@0
  1356
  GObject *object;
sl@0
  1357
  guint n_params = 0, n_alloced_params = 16;
sl@0
  1358
  
sl@0
  1359
  g_return_val_if_fail (G_TYPE_IS_OBJECT (object_type), NULL);
sl@0
  1360
sl@0
  1361
  if (!first_property_name)
sl@0
  1362
    return g_object_newv (object_type, 0, NULL);
sl@0
  1363
sl@0
  1364
  class = g_type_class_ref (object_type);
sl@0
  1365
sl@0
  1366
  params = g_new (GParameter, n_alloced_params);
sl@0
  1367
  name = first_property_name;
sl@0
  1368
  while (name)
sl@0
  1369
    {
sl@0
  1370
      gchar *error = NULL;
sl@0
  1371
      GParamSpec *pspec = g_param_spec_pool_lookup (pspec_pool,
sl@0
  1372
						    name,
sl@0
  1373
						    object_type,
sl@0
  1374
						    TRUE);
sl@0
  1375
      if (!pspec)
sl@0
  1376
	{
sl@0
  1377
	  g_warning ("%s: object class `%s' has no property named `%s'",
sl@0
  1378
		     G_STRFUNC,
sl@0
  1379
		     g_type_name (object_type),
sl@0
  1380
		     name);
sl@0
  1381
	  break;
sl@0
  1382
	}
sl@0
  1383
      if (n_params >= n_alloced_params)
sl@0
  1384
	{
sl@0
  1385
	  n_alloced_params += 16;
sl@0
  1386
	  params = g_renew (GParameter, params, n_alloced_params);
sl@0
  1387
	}
sl@0
  1388
      params[n_params].name = name;
sl@0
  1389
      params[n_params].value.g_type = 0;
sl@0
  1390
      g_value_init (&params[n_params].value, G_PARAM_SPEC_VALUE_TYPE (pspec));
sl@0
  1391
      G_VALUE_COLLECT (&params[n_params].value, var_args, 0, &error);
sl@0
  1392
      if (error)
sl@0
  1393
	{
sl@0
  1394
	  g_warning ("%s: %s", G_STRFUNC, error);
sl@0
  1395
	  g_free (error);
sl@0
  1396
          g_value_unset (&params[n_params].value);
sl@0
  1397
	  break;
sl@0
  1398
	}
sl@0
  1399
      n_params++;
sl@0
  1400
      name = va_arg (var_args, gchar*);
sl@0
  1401
    }
sl@0
  1402
sl@0
  1403
  object = g_object_newv (object_type, n_params, params);
sl@0
  1404
sl@0
  1405
  while (n_params--)
sl@0
  1406
    g_value_unset (&params[n_params].value);
sl@0
  1407
  g_free (params);
sl@0
  1408
sl@0
  1409
  g_type_class_unref (class);
sl@0
  1410
sl@0
  1411
  return object;
sl@0
  1412
}
sl@0
  1413
sl@0
  1414
static GObject*
sl@0
  1415
g_object_constructor (GType                  type,
sl@0
  1416
		      guint                  n_construct_properties,
sl@0
  1417
		      GObjectConstructParam *construct_params)
sl@0
  1418
{
sl@0
  1419
  GObject *object;
sl@0
  1420
sl@0
  1421
  /* create object */
sl@0
  1422
  object = (GObject*) g_type_create_instance (type);
sl@0
  1423
  
sl@0
  1424
  /* set construction parameters */
sl@0
  1425
  if (n_construct_properties)
sl@0
  1426
    {
sl@0
  1427
      GObjectNotifyQueue *nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
sl@0
  1428
      
sl@0
  1429
      /* set construct properties */
sl@0
  1430
      while (n_construct_properties--)
sl@0
  1431
	{
sl@0
  1432
	  GValue *value = construct_params->value;
sl@0
  1433
	  GParamSpec *pspec = construct_params->pspec;
sl@0
  1434
sl@0
  1435
	  construct_params++;
sl@0
  1436
	  object_set_property (object, pspec, value, nqueue);
sl@0
  1437
	}
sl@0
  1438
      g_object_notify_queue_thaw (object, nqueue);
sl@0
  1439
      /* the notification queue is still frozen from g_object_init(), so
sl@0
  1440
       * we don't need to handle it here, g_object_newv() takes
sl@0
  1441
       * care of that
sl@0
  1442
       */
sl@0
  1443
    }
sl@0
  1444
sl@0
  1445
  return object;
sl@0
  1446
}
sl@0
  1447
sl@0
  1448
/**
sl@0
  1449
 * g_object_set_valist:
sl@0
  1450
 * @object: a #GObject
sl@0
  1451
 * @first_property_name: name of the first property to set
sl@0
  1452
 * @var_args: value for the first property, followed optionally by more
sl@0
  1453
 *  name/value pairs, followed by %NULL
sl@0
  1454
 *
sl@0
  1455
 * Sets properties on an object.
sl@0
  1456
 */
sl@0
  1457
EXPORT_C void
sl@0
  1458
g_object_set_valist (GObject	 *object,
sl@0
  1459
		     const gchar *first_property_name,
sl@0
  1460
		     va_list	  var_args)
sl@0
  1461
{
sl@0
  1462
  GObjectNotifyQueue *nqueue;
sl@0
  1463
  const gchar *name;
sl@0
  1464
  
sl@0
  1465
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  1466
  
sl@0
  1467
  g_object_ref (object);
sl@0
  1468
  nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
sl@0
  1469
  
sl@0
  1470
  name = first_property_name;
sl@0
  1471
  while (name)
sl@0
  1472
    {
sl@0
  1473
      GValue value = { 0, };
sl@0
  1474
      GParamSpec *pspec;
sl@0
  1475
      gchar *error = NULL;
sl@0
  1476
      
sl@0
  1477
      pspec = g_param_spec_pool_lookup (pspec_pool,
sl@0
  1478
					name,
sl@0
  1479
					G_OBJECT_TYPE (object),
sl@0
  1480
					TRUE);
sl@0
  1481
      if (!pspec)
sl@0
  1482
	{
sl@0
  1483
	  g_warning ("%s: object class `%s' has no property named `%s'",
sl@0
  1484
		     G_STRFUNC,
sl@0
  1485
		     G_OBJECT_TYPE_NAME (object),
sl@0
  1486
		     name);
sl@0
  1487
	  break;
sl@0
  1488
	}
sl@0
  1489
      if (!(pspec->flags & G_PARAM_WRITABLE))
sl@0
  1490
	{
sl@0
  1491
	  g_warning ("%s: property `%s' of object class `%s' is not writable",
sl@0
  1492
		     G_STRFUNC,
sl@0
  1493
		     pspec->name,
sl@0
  1494
		     G_OBJECT_TYPE_NAME (object));
sl@0
  1495
	  break;
sl@0
  1496
	}
sl@0
  1497
      if ((pspec->flags & G_PARAM_CONSTRUCT_ONLY) && !object_in_construction_list (object))
sl@0
  1498
        {
sl@0
  1499
          g_warning ("%s: construct property \"%s\" for object `%s' can't be set after construction",
sl@0
  1500
                     G_STRFUNC, pspec->name, G_OBJECT_TYPE_NAME (object));
sl@0
  1501
          break;
sl@0
  1502
        }
sl@0
  1503
sl@0
  1504
      g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
sl@0
  1505
      
sl@0
  1506
      G_VALUE_COLLECT (&value, var_args, 0, &error);
sl@0
  1507
      if (error)
sl@0
  1508
	{
sl@0
  1509
	  g_warning ("%s: %s", G_STRFUNC, error);
sl@0
  1510
	  g_free (error);
sl@0
  1511
          g_value_unset (&value);
sl@0
  1512
	  break;
sl@0
  1513
	}
sl@0
  1514
      
sl@0
  1515
      object_set_property (object, pspec, &value, nqueue);
sl@0
  1516
      g_value_unset (&value);
sl@0
  1517
      
sl@0
  1518
      name = va_arg (var_args, gchar*);
sl@0
  1519
    }
sl@0
  1520
sl@0
  1521
  g_object_notify_queue_thaw (object, nqueue);
sl@0
  1522
  g_object_unref (object);
sl@0
  1523
}
sl@0
  1524
sl@0
  1525
/**
sl@0
  1526
 * g_object_get_valist:
sl@0
  1527
 * @object: a #GObject
sl@0
  1528
 * @first_property_name: name of the first property to get
sl@0
  1529
 * @var_args: return location for the first property, followed optionally by more
sl@0
  1530
 *  name/return location pairs, followed by %NULL
sl@0
  1531
 *
sl@0
  1532
 * Gets properties of an object.
sl@0
  1533
 *
sl@0
  1534
 * In general, a copy is made of the property contents and the caller
sl@0
  1535
 * is responsible for freeing the memory in the appropriate manner for
sl@0
  1536
 * the type, for instance by calling g_free() or g_object_unref().
sl@0
  1537
 *
sl@0
  1538
 * See g_object_get().
sl@0
  1539
 */
sl@0
  1540
EXPORT_C void
sl@0
  1541
g_object_get_valist (GObject	 *object,
sl@0
  1542
		     const gchar *first_property_name,
sl@0
  1543
		     va_list	  var_args)
sl@0
  1544
{
sl@0
  1545
  const gchar *name;
sl@0
  1546
  
sl@0
  1547
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  1548
  
sl@0
  1549
  g_object_ref (object);
sl@0
  1550
  
sl@0
  1551
  name = first_property_name;
sl@0
  1552
  
sl@0
  1553
  while (name)
sl@0
  1554
    {
sl@0
  1555
      GValue value = { 0, };
sl@0
  1556
      GParamSpec *pspec;
sl@0
  1557
      gchar *error;
sl@0
  1558
      
sl@0
  1559
      pspec = g_param_spec_pool_lookup (pspec_pool,
sl@0
  1560
					name,
sl@0
  1561
					G_OBJECT_TYPE (object),
sl@0
  1562
					TRUE);
sl@0
  1563
      if (!pspec)
sl@0
  1564
	{
sl@0
  1565
	  g_warning ("%s: object class `%s' has no property named `%s'",
sl@0
  1566
		     G_STRFUNC,
sl@0
  1567
		     G_OBJECT_TYPE_NAME (object),
sl@0
  1568
		     name);
sl@0
  1569
	  break;
sl@0
  1570
	}
sl@0
  1571
      if (!(pspec->flags & G_PARAM_READABLE))
sl@0
  1572
	{
sl@0
  1573
	  g_warning ("%s: property `%s' of object class `%s' is not readable",
sl@0
  1574
		     G_STRFUNC,
sl@0
  1575
		     pspec->name,
sl@0
  1576
		     G_OBJECT_TYPE_NAME (object));
sl@0
  1577
	  break;
sl@0
  1578
	}
sl@0
  1579
      
sl@0
  1580
      g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
sl@0
  1581
      
sl@0
  1582
      object_get_property (object, pspec, &value);
sl@0
  1583
      
sl@0
  1584
      G_VALUE_LCOPY (&value, var_args, 0, &error);
sl@0
  1585
      if (error)
sl@0
  1586
	{
sl@0
  1587
	  g_warning ("%s: %s", G_STRFUNC, error);
sl@0
  1588
	  g_free (error);
sl@0
  1589
	  g_value_unset (&value);
sl@0
  1590
	  break;
sl@0
  1591
	}
sl@0
  1592
      
sl@0
  1593
      g_value_unset (&value);
sl@0
  1594
      
sl@0
  1595
      name = va_arg (var_args, gchar*);
sl@0
  1596
    }
sl@0
  1597
  
sl@0
  1598
  g_object_unref (object);
sl@0
  1599
}
sl@0
  1600
sl@0
  1601
/**
sl@0
  1602
 * g_object_set:
sl@0
  1603
 * @object: a #GObject
sl@0
  1604
 * @first_property_name: name of the first property to set
sl@0
  1605
 * @...: value for the first property, followed optionally by more
sl@0
  1606
 *  name/value pairs, followed by %NULL
sl@0
  1607
 *
sl@0
  1608
 * Sets properties on an object.
sl@0
  1609
 */
sl@0
  1610
EXPORT_C void
sl@0
  1611
g_object_set (gpointer     _object,
sl@0
  1612
	      const gchar *first_property_name,
sl@0
  1613
	      ...)
sl@0
  1614
{
sl@0
  1615
  GObject *object = _object;
sl@0
  1616
  va_list var_args;
sl@0
  1617
  
sl@0
  1618
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  1619
  
sl@0
  1620
  va_start (var_args, first_property_name);
sl@0
  1621
  g_object_set_valist (object, first_property_name, var_args);
sl@0
  1622
  va_end (var_args);
sl@0
  1623
}
sl@0
  1624
sl@0
  1625
/**
sl@0
  1626
 * g_object_get:
sl@0
  1627
 * @object: a #GObject
sl@0
  1628
 * @first_property_name: name of the first property to get
sl@0
  1629
 * @...: return location for the first property, followed optionally by more
sl@0
  1630
 *  name/return location pairs, followed by %NULL
sl@0
  1631
 *
sl@0
  1632
 * Gets properties of an object.
sl@0
  1633
 *
sl@0
  1634
 * In general, a copy is made of the property contents and the caller
sl@0
  1635
 * is responsible for freeing the memory in the appropriate manner for
sl@0
  1636
 * the type, for instance by calling g_free() or g_object_unref().
sl@0
  1637
 *
sl@0
  1638
 * <example>
sl@0
  1639
 * <title>Using g_object_get(<!-- -->)</title>
sl@0
  1640
 * An example of using g_object_get() to get the contents
sl@0
  1641
 * of three properties - one of type #G_TYPE_INT,
sl@0
  1642
 * one of type #G_TYPE_STRING, and one of type #G_TYPE_OBJECT:
sl@0
  1643
 * <programlisting>
sl@0
  1644
 *  gint intval;
sl@0
  1645
 *  gchar *strval;
sl@0
  1646
 *  GObject *objval;
sl@0
  1647
 *
sl@0
  1648
 *  g_object_get (my_object,
sl@0
  1649
 *                "int-property", &intval,
sl@0
  1650
 *                "str-property", &strval,
sl@0
  1651
 *                "obj-property", &objval,
sl@0
  1652
 *                NULL);
sl@0
  1653
 *
sl@0
  1654
 *  // Do something with intval, strval, objval
sl@0
  1655
 *
sl@0
  1656
 *  g_free (strval);
sl@0
  1657
 *  g_object_unref (objval);
sl@0
  1658
 * </programlisting>
sl@0
  1659
 * </example>
sl@0
  1660
 */
sl@0
  1661
EXPORT_C void
sl@0
  1662
g_object_get (gpointer     _object,
sl@0
  1663
	      const gchar *first_property_name,
sl@0
  1664
	      ...)
sl@0
  1665
{
sl@0
  1666
  GObject *object = _object;
sl@0
  1667
  va_list var_args;
sl@0
  1668
  
sl@0
  1669
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  1670
  
sl@0
  1671
  va_start (var_args, first_property_name);
sl@0
  1672
  g_object_get_valist (object, first_property_name, var_args);
sl@0
  1673
  va_end (var_args);
sl@0
  1674
}
sl@0
  1675
sl@0
  1676
/**
sl@0
  1677
 * g_object_set_property:
sl@0
  1678
 * @object: a #GObject
sl@0
  1679
 * @property_name: the name of the property to set
sl@0
  1680
 * @value: the value
sl@0
  1681
 *
sl@0
  1682
 * Sets a property on an object.
sl@0
  1683
 */
sl@0
  1684
EXPORT_C void
sl@0
  1685
g_object_set_property (GObject	    *object,
sl@0
  1686
		       const gchar  *property_name,
sl@0
  1687
		       const GValue *value)
sl@0
  1688
{
sl@0
  1689
  GObjectNotifyQueue *nqueue;
sl@0
  1690
  GParamSpec *pspec;
sl@0
  1691
  
sl@0
  1692
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  1693
  g_return_if_fail (property_name != NULL);
sl@0
  1694
  g_return_if_fail (G_IS_VALUE (value));
sl@0
  1695
  
sl@0
  1696
  g_object_ref (object);
sl@0
  1697
  nqueue = g_object_notify_queue_freeze (object, &property_notify_context);
sl@0
  1698
  
sl@0
  1699
  pspec = g_param_spec_pool_lookup (pspec_pool,
sl@0
  1700
				    property_name,
sl@0
  1701
				    G_OBJECT_TYPE (object),
sl@0
  1702
				    TRUE);
sl@0
  1703
  if (!pspec)
sl@0
  1704
    g_warning ("%s: object class `%s' has no property named `%s'",
sl@0
  1705
	       G_STRFUNC,
sl@0
  1706
	       G_OBJECT_TYPE_NAME (object),
sl@0
  1707
	       property_name);
sl@0
  1708
  else if (!(pspec->flags & G_PARAM_WRITABLE))
sl@0
  1709
    g_warning ("%s: property `%s' of object class `%s' is not writable",
sl@0
  1710
               G_STRFUNC,
sl@0
  1711
               pspec->name,
sl@0
  1712
               G_OBJECT_TYPE_NAME (object));
sl@0
  1713
  else if ((pspec->flags & G_PARAM_CONSTRUCT_ONLY) && !object_in_construction_list (object))
sl@0
  1714
    g_warning ("%s: construct property \"%s\" for object `%s' can't be set after construction",
sl@0
  1715
               G_STRFUNC, pspec->name, G_OBJECT_TYPE_NAME (object));
sl@0
  1716
  else
sl@0
  1717
    object_set_property (object, pspec, value, nqueue);
sl@0
  1718
  
sl@0
  1719
  g_object_notify_queue_thaw (object, nqueue);
sl@0
  1720
  g_object_unref (object);
sl@0
  1721
}
sl@0
  1722
sl@0
  1723
/**
sl@0
  1724
 * g_object_get_property:
sl@0
  1725
 * @object: a #GObject
sl@0
  1726
 * @property_name: the name of the property to get
sl@0
  1727
 * @value: return location for the property value
sl@0
  1728
 *
sl@0
  1729
 * Gets a property of an object.
sl@0
  1730
 *
sl@0
  1731
 * In general, a copy is made of the property contents and the caller is
sl@0
  1732
 * responsible for freeing the memory by calling g_value_unset().
sl@0
  1733
 *
sl@0
  1734
 * Note that g_object_get_property() is really intended for language
sl@0
  1735
 * bindings, g_object_get() is much more convenient for C programming.
sl@0
  1736
 */
sl@0
  1737
EXPORT_C void
sl@0
  1738
g_object_get_property (GObject	   *object,
sl@0
  1739
		       const gchar *property_name,
sl@0
  1740
		       GValue	   *value)
sl@0
  1741
{
sl@0
  1742
  GParamSpec *pspec;
sl@0
  1743
  
sl@0
  1744
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  1745
  g_return_if_fail (property_name != NULL);
sl@0
  1746
  g_return_if_fail (G_IS_VALUE (value));
sl@0
  1747
  
sl@0
  1748
  g_object_ref (object);
sl@0
  1749
  
sl@0
  1750
  pspec = g_param_spec_pool_lookup (pspec_pool,
sl@0
  1751
				    property_name,
sl@0
  1752
				    G_OBJECT_TYPE (object),
sl@0
  1753
				    TRUE);
sl@0
  1754
  if (!pspec)
sl@0
  1755
    g_warning ("%s: object class `%s' has no property named `%s'",
sl@0
  1756
	       G_STRFUNC,
sl@0
  1757
	       G_OBJECT_TYPE_NAME (object),
sl@0
  1758
	       property_name);
sl@0
  1759
  else if (!(pspec->flags & G_PARAM_READABLE))
sl@0
  1760
    g_warning ("%s: property `%s' of object class `%s' is not readable",
sl@0
  1761
               G_STRFUNC,
sl@0
  1762
               pspec->name,
sl@0
  1763
               G_OBJECT_TYPE_NAME (object));
sl@0
  1764
  else
sl@0
  1765
    {
sl@0
  1766
      GValue *prop_value, tmp_value = { 0, };
sl@0
  1767
      
sl@0
  1768
      /* auto-conversion of the callers value type
sl@0
  1769
       */
sl@0
  1770
      if (G_VALUE_TYPE (value) == G_PARAM_SPEC_VALUE_TYPE (pspec))
sl@0
  1771
	{
sl@0
  1772
	  g_value_reset (value);
sl@0
  1773
	  prop_value = value;
sl@0
  1774
	}
sl@0
  1775
      else if (!g_value_type_transformable (G_PARAM_SPEC_VALUE_TYPE (pspec), G_VALUE_TYPE (value)))
sl@0
  1776
	{
sl@0
  1777
	  g_warning ("%s: can't retrieve property `%s' of type `%s' as value of type `%s'",
sl@0
  1778
		     G_STRFUNC, pspec->name,
sl@0
  1779
		     g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)),
sl@0
  1780
		     G_VALUE_TYPE_NAME (value));
sl@0
  1781
	  g_object_unref (object);
sl@0
  1782
	  return;
sl@0
  1783
	}
sl@0
  1784
      else
sl@0
  1785
	{
sl@0
  1786
	  g_value_init (&tmp_value, G_PARAM_SPEC_VALUE_TYPE (pspec));
sl@0
  1787
	  prop_value = &tmp_value;
sl@0
  1788
	}
sl@0
  1789
      object_get_property (object, pspec, prop_value);
sl@0
  1790
      if (prop_value != value)
sl@0
  1791
	{
sl@0
  1792
	  g_value_transform (prop_value, value);
sl@0
  1793
	  g_value_unset (&tmp_value);
sl@0
  1794
	}
sl@0
  1795
    }
sl@0
  1796
  
sl@0
  1797
  g_object_unref (object);
sl@0
  1798
}
sl@0
  1799
sl@0
  1800
/**
sl@0
  1801
 * g_object_connect:
sl@0
  1802
 * @object: a #GObject
sl@0
  1803
 * @signal_spec: the spec for the first signal
sl@0
  1804
 * @...: #GCallback for the first signal, followed by data for the
sl@0
  1805
 *       first signal, followed optionally by more signal
sl@0
  1806
 *       spec/callback/data triples, followed by %NULL
sl@0
  1807
 *
sl@0
  1808
 * A convenience function to connect multiple signals at once.
sl@0
  1809
 *
sl@0
  1810
 * The signal specs expected by this function have the form
sl@0
  1811
 * "modifier::signal_name", where modifier can be one of the following:
sl@0
  1812
 * <variablelist>
sl@0
  1813
 * <varlistentry>
sl@0
  1814
 * <term>signal</term>
sl@0
  1815
 * <listitem><para>
sl@0
  1816
 * equivalent to <literal>g_signal_connect_data (..., NULL, 0)</literal>
sl@0
  1817
 * </para></listitem>
sl@0
  1818
 * </varlistentry>
sl@0
  1819
 * <varlistentry>
sl@0
  1820
 * <term>object_signal</term>
sl@0
  1821
 * <term>object-signal</term>
sl@0
  1822
 * <listitem><para>
sl@0
  1823
 * equivalent to <literal>g_signal_connect_object (..., 0)</literal>
sl@0
  1824
 * </para></listitem>
sl@0
  1825
 * </varlistentry>
sl@0
  1826
 * <varlistentry>
sl@0
  1827
 * <term>swapped_signal</term>
sl@0
  1828
 * <term>swapped-signal</term>
sl@0
  1829
 * <listitem><para>
sl@0
  1830
 * equivalent to <literal>g_signal_connect_data (..., NULL, G_CONNECT_SWAPPED)</literal>
sl@0
  1831
 * </para></listitem>
sl@0
  1832
 * </varlistentry>
sl@0
  1833
 * <varlistentry>
sl@0
  1834
 * <term>swapped_object_signal</term>
sl@0
  1835
 * <term>swapped-object-signal</term>
sl@0
  1836
 * <listitem><para>
sl@0
  1837
 * equivalent to <literal>g_signal_connect_object (..., G_CONNECT_SWAPPED)</literal>
sl@0
  1838
 * </para></listitem>
sl@0
  1839
 * </varlistentry>
sl@0
  1840
 * <varlistentry>
sl@0
  1841
 * <term>signal_after</term>
sl@0
  1842
 * <term>signal-after</term>
sl@0
  1843
 * <listitem><para>
sl@0
  1844
 * equivalent to <literal>g_signal_connect_data (..., NULL, G_CONNECT_AFTER)</literal>
sl@0
  1845
 * </para></listitem>
sl@0
  1846
 * </varlistentry>
sl@0
  1847
 * <varlistentry>
sl@0
  1848
 * <term>object_signal_after</term>
sl@0
  1849
 * <term>object-signal-after</term>
sl@0
  1850
 * <listitem><para>
sl@0
  1851
 * equivalent to <literal>g_signal_connect_object (..., G_CONNECT_AFTER)</literal>
sl@0
  1852
 * </para></listitem>
sl@0
  1853
 * </varlistentry>
sl@0
  1854
 * <varlistentry>
sl@0
  1855
 * <term>swapped_signal_after</term>
sl@0
  1856
 * <term>swapped-signal-after</term>
sl@0
  1857
 * <listitem><para>
sl@0
  1858
 * equivalent to <literal>g_signal_connect_data (..., NULL, G_CONNECT_SWAPPED | G_CONNECT_AFTER)</literal>
sl@0
  1859
 * </para></listitem>
sl@0
  1860
 * </varlistentry>
sl@0
  1861
 * <varlistentry>
sl@0
  1862
 * <term>swapped_object_signal_after</term>
sl@0
  1863
 * <term>swapped-object-signal-after</term>
sl@0
  1864
 * <listitem><para>
sl@0
  1865
 * equivalent to <literal>g_signal_connect_object (..., G_CONNECT_SWAPPED | G_CONNECT_AFTER)</literal>
sl@0
  1866
 * </para></listitem>
sl@0
  1867
 * </varlistentry>
sl@0
  1868
 * </variablelist>
sl@0
  1869
 *
sl@0
  1870
 * |[
sl@0
  1871
 *   menu->toplevel = g_object_connect (g_object_new (GTK_TYPE_WINDOW,
sl@0
  1872
 * 						   "type", GTK_WINDOW_POPUP,
sl@0
  1873
 * 						   "child", menu,
sl@0
  1874
 * 						   NULL),
sl@0
  1875
 * 				     "signal::event", gtk_menu_window_event, menu,
sl@0
  1876
 * 				     "signal::size_request", gtk_menu_window_size_request, menu,
sl@0
  1877
 * 				     "signal::destroy", gtk_widget_destroyed, &amp;menu-&gt;toplevel,
sl@0
  1878
 * 				     NULL);
sl@0
  1879
 * ]|
sl@0
  1880
 *
sl@0
  1881
 * Returns: @object
sl@0
  1882
 */
sl@0
  1883
EXPORT_C gpointer
sl@0
  1884
g_object_connect (gpointer     _object,
sl@0
  1885
		  const gchar *signal_spec,
sl@0
  1886
		  ...)
sl@0
  1887
{
sl@0
  1888
  GObject *object = _object;
sl@0
  1889
  va_list var_args;
sl@0
  1890
sl@0
  1891
  g_return_val_if_fail (G_IS_OBJECT (object), NULL);
sl@0
  1892
  g_return_val_if_fail (object->ref_count > 0, object);
sl@0
  1893
sl@0
  1894
  va_start (var_args, signal_spec);
sl@0
  1895
  while (signal_spec)
sl@0
  1896
    {
sl@0
  1897
      GCallback callback = va_arg (var_args, GCallback);
sl@0
  1898
      gpointer data = va_arg (var_args, gpointer);
sl@0
  1899
      gulong sid;
sl@0
  1900
sl@0
  1901
      if (strncmp (signal_spec, "signal::", 8) == 0)
sl@0
  1902
	sid = g_signal_connect_data (object, signal_spec + 8,
sl@0
  1903
				     callback, data, NULL,
sl@0
  1904
				     0);
sl@0
  1905
      else if (strncmp (signal_spec, "object_signal::", 15) == 0 ||
sl@0
  1906
               strncmp (signal_spec, "object-signal::", 15) == 0)
sl@0
  1907
	sid = g_signal_connect_object (object, signal_spec + 15,
sl@0
  1908
				       callback, data,
sl@0
  1909
				       0);
sl@0
  1910
      else if (strncmp (signal_spec, "swapped_signal::", 16) == 0 ||
sl@0
  1911
               strncmp (signal_spec, "swapped-signal::", 16) == 0)
sl@0
  1912
	sid = g_signal_connect_data (object, signal_spec + 16,
sl@0
  1913
				     callback, data, NULL,
sl@0
  1914
				     G_CONNECT_SWAPPED);
sl@0
  1915
      else if (strncmp (signal_spec, "swapped_object_signal::", 23) == 0 ||
sl@0
  1916
               strncmp (signal_spec, "swapped-object-signal::", 23) == 0)
sl@0
  1917
	sid = g_signal_connect_object (object, signal_spec + 23,
sl@0
  1918
				       callback, data,
sl@0
  1919
				       G_CONNECT_SWAPPED);
sl@0
  1920
      else if (strncmp (signal_spec, "signal_after::", 14) == 0 ||
sl@0
  1921
               strncmp (signal_spec, "signal-after::", 14) == 0)
sl@0
  1922
	sid = g_signal_connect_data (object, signal_spec + 14,
sl@0
  1923
				     callback, data, NULL,
sl@0
  1924
				     G_CONNECT_AFTER);
sl@0
  1925
      else if (strncmp (signal_spec, "object_signal_after::", 21) == 0 ||
sl@0
  1926
               strncmp (signal_spec, "object-signal-after::", 21) == 0)
sl@0
  1927
	sid = g_signal_connect_object (object, signal_spec + 21,
sl@0
  1928
				       callback, data,
sl@0
  1929
				       G_CONNECT_AFTER);
sl@0
  1930
      else if (strncmp (signal_spec, "swapped_signal_after::", 22) == 0 ||
sl@0
  1931
               strncmp (signal_spec, "swapped-signal-after::", 22) == 0)
sl@0
  1932
	sid = g_signal_connect_data (object, signal_spec + 22,
sl@0
  1933
				     callback, data, NULL,
sl@0
  1934
				     G_CONNECT_SWAPPED | G_CONNECT_AFTER);
sl@0
  1935
      else if (strncmp (signal_spec, "swapped_object_signal_after::", 29) == 0 ||
sl@0
  1936
               strncmp (signal_spec, "swapped-object-signal-after::", 29) == 0)
sl@0
  1937
	sid = g_signal_connect_object (object, signal_spec + 29,
sl@0
  1938
				       callback, data,
sl@0
  1939
				       G_CONNECT_SWAPPED | G_CONNECT_AFTER);
sl@0
  1940
      else
sl@0
  1941
	{
sl@0
  1942
	  g_warning ("%s: invalid signal spec \"%s\"", G_STRFUNC, signal_spec);
sl@0
  1943
	  break;
sl@0
  1944
	}
sl@0
  1945
      signal_spec = va_arg (var_args, gchar*);
sl@0
  1946
    }
sl@0
  1947
  va_end (var_args);
sl@0
  1948
sl@0
  1949
  return object;
sl@0
  1950
}
sl@0
  1951
sl@0
  1952
/**
sl@0
  1953
 * g_object_disconnect:
sl@0
  1954
 * @object: a #GObject
sl@0
  1955
 * @signal_spec: the spec for the first signal
sl@0
  1956
 * @...: #GCallback for the first signal, followed by data for the first signal,
sl@0
  1957
 *  followed optionally by more signal spec/callback/data triples,
sl@0
  1958
 *  followed by %NULL
sl@0
  1959
 *
sl@0
  1960
 * A convenience function to disconnect multiple signals at once.
sl@0
  1961
 *
sl@0
  1962
 * The signal specs expected by this function have the form
sl@0
  1963
 * "any_signal", which means to disconnect any signal with matching
sl@0
  1964
 * callback and data, or "any_signal::signal_name", which only
sl@0
  1965
 * disconnects the signal named "signal_name".
sl@0
  1966
 */
sl@0
  1967
EXPORT_C void
sl@0
  1968
g_object_disconnect (gpointer     _object,
sl@0
  1969
		     const gchar *signal_spec,
sl@0
  1970
		     ...)
sl@0
  1971
{
sl@0
  1972
  GObject *object = _object;
sl@0
  1973
  va_list var_args;
sl@0
  1974
sl@0
  1975
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  1976
  g_return_if_fail (object->ref_count > 0);
sl@0
  1977
sl@0
  1978
  va_start (var_args, signal_spec);
sl@0
  1979
  while (signal_spec)
sl@0
  1980
    {
sl@0
  1981
      GCallback callback = va_arg (var_args, GCallback);
sl@0
  1982
      gpointer data = va_arg (var_args, gpointer);
sl@0
  1983
      guint sid = 0, detail = 0, mask = 0;
sl@0
  1984
sl@0
  1985
      if (strncmp (signal_spec, "any_signal::", 12) == 0 ||
sl@0
  1986
          strncmp (signal_spec, "any-signal::", 12) == 0)
sl@0
  1987
	{
sl@0
  1988
	  signal_spec += 12;
sl@0
  1989
	  mask = G_SIGNAL_MATCH_ID | G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA;
sl@0
  1990
	}
sl@0
  1991
      else if (strcmp (signal_spec, "any_signal") == 0 ||
sl@0
  1992
               strcmp (signal_spec, "any-signal") == 0)
sl@0
  1993
	{
sl@0
  1994
	  signal_spec += 10;
sl@0
  1995
	  mask = G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA;
sl@0
  1996
	}
sl@0
  1997
      else
sl@0
  1998
	{
sl@0
  1999
	  g_warning ("%s: invalid signal spec \"%s\"", G_STRFUNC, signal_spec);
sl@0
  2000
	  break;
sl@0
  2001
	}
sl@0
  2002
sl@0
  2003
      if ((mask & G_SIGNAL_MATCH_ID) &&
sl@0
  2004
	  !g_signal_parse_name (signal_spec, G_OBJECT_TYPE (object), &sid, &detail, FALSE))
sl@0
  2005
	g_warning ("%s: invalid signal name \"%s\"", G_STRFUNC, signal_spec);
sl@0
  2006
      else if (!g_signal_handlers_disconnect_matched (object, mask | (detail ? G_SIGNAL_MATCH_DETAIL : 0),
sl@0
  2007
						      sid, detail,
sl@0
  2008
						      NULL, (gpointer)callback, data))
sl@0
  2009
	g_warning ("%s: signal handler %p(%p) is not connected", G_STRFUNC, callback, data);
sl@0
  2010
      signal_spec = va_arg (var_args, gchar*);
sl@0
  2011
    }
sl@0
  2012
  va_end (var_args);
sl@0
  2013
}
sl@0
  2014
sl@0
  2015
typedef struct {
sl@0
  2016
  GObject *object;
sl@0
  2017
  guint n_weak_refs;
sl@0
  2018
  struct {
sl@0
  2019
    GWeakNotify notify;
sl@0
  2020
    gpointer    data;
sl@0
  2021
  } weak_refs[1];  /* flexible array */
sl@0
  2022
} WeakRefStack;
sl@0
  2023
sl@0
  2024
static void
sl@0
  2025
weak_refs_notify (gpointer data)
sl@0
  2026
{
sl@0
  2027
  WeakRefStack *wstack = data;
sl@0
  2028
  guint i;
sl@0
  2029
sl@0
  2030
  for (i = 0; i < wstack->n_weak_refs; i++)
sl@0
  2031
    wstack->weak_refs[i].notify (wstack->weak_refs[i].data, wstack->object);
sl@0
  2032
  g_free (wstack);
sl@0
  2033
}
sl@0
  2034
sl@0
  2035
/**
sl@0
  2036
 * g_object_weak_ref:
sl@0
  2037
 * @object: #GObject to reference weakly
sl@0
  2038
 * @notify: callback to invoke before the object is freed
sl@0
  2039
 * @data: extra data to pass to notify
sl@0
  2040
 *
sl@0
  2041
 * Adds a weak reference callback to an object. Weak references are
sl@0
  2042
 * used for notification when an object is finalized. They are called
sl@0
  2043
 * "weak references" because they allow you to safely hold a pointer
sl@0
  2044
 * to an object without calling g_object_ref() (g_object_ref() adds a
sl@0
  2045
 * strong reference, that is, forces the object to stay alive).
sl@0
  2046
 */
sl@0
  2047
EXPORT_C void
sl@0
  2048
g_object_weak_ref (GObject    *object,
sl@0
  2049
		   GWeakNotify notify,
sl@0
  2050
		   gpointer    data)
sl@0
  2051
{
sl@0
  2052
  WeakRefStack *wstack;
sl@0
  2053
  guint i;
sl@0
  2054
  
sl@0
  2055
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  2056
  g_return_if_fail (notify != NULL);
sl@0
  2057
  g_return_if_fail (object->ref_count >= 1);
sl@0
  2058
sl@0
  2059
  wstack = g_datalist_id_remove_no_notify (&object->qdata, quark_weak_refs);
sl@0
  2060
  if (wstack)
sl@0
  2061
    {
sl@0
  2062
      i = wstack->n_weak_refs++;
sl@0
  2063
      wstack = g_realloc (wstack, sizeof (*wstack) + sizeof (wstack->weak_refs[0]) * i);
sl@0
  2064
    }
sl@0
  2065
  else
sl@0
  2066
    {
sl@0
  2067
      wstack = g_renew (WeakRefStack, NULL, 1);
sl@0
  2068
      wstack->object = object;
sl@0
  2069
      wstack->n_weak_refs = 1;
sl@0
  2070
      i = 0;
sl@0
  2071
    }
sl@0
  2072
  wstack->weak_refs[i].notify = notify;
sl@0
  2073
  wstack->weak_refs[i].data = data;
sl@0
  2074
  g_datalist_id_set_data_full (&object->qdata, quark_weak_refs, wstack, weak_refs_notify);
sl@0
  2075
}
sl@0
  2076
sl@0
  2077
/**
sl@0
  2078
 * g_object_weak_unref:
sl@0
  2079
 * @object: #GObject to remove a weak reference from
sl@0
  2080
 * @notify: callback to search for
sl@0
  2081
 * @data: data to search for
sl@0
  2082
 *
sl@0
  2083
 * Removes a weak reference callback to an object.
sl@0
  2084
 */
sl@0
  2085
EXPORT_C void
sl@0
  2086
g_object_weak_unref (GObject    *object,
sl@0
  2087
		     GWeakNotify notify,
sl@0
  2088
		     gpointer    data)
sl@0
  2089
{
sl@0
  2090
  WeakRefStack *wstack;
sl@0
  2091
  gboolean found_one = FALSE;
sl@0
  2092
sl@0
  2093
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  2094
  g_return_if_fail (notify != NULL);
sl@0
  2095
sl@0
  2096
  wstack = g_datalist_id_get_data (&object->qdata, quark_weak_refs);
sl@0
  2097
  if (wstack)
sl@0
  2098
    {
sl@0
  2099
      guint i;
sl@0
  2100
sl@0
  2101
      for (i = 0; i < wstack->n_weak_refs; i++)
sl@0
  2102
	if (wstack->weak_refs[i].notify == notify &&
sl@0
  2103
	    wstack->weak_refs[i].data == data)
sl@0
  2104
	  {
sl@0
  2105
	    found_one = TRUE;
sl@0
  2106
	    wstack->n_weak_refs -= 1;
sl@0
  2107
	    if (i != wstack->n_weak_refs)
sl@0
  2108
	      wstack->weak_refs[i] = wstack->weak_refs[wstack->n_weak_refs];
sl@0
  2109
sl@0
  2110
	    break;
sl@0
  2111
	  }
sl@0
  2112
    }
sl@0
  2113
  if (!found_one)
sl@0
  2114
    g_warning ("%s: couldn't find weak ref %p(%p)", G_STRFUNC, notify, data);
sl@0
  2115
}
sl@0
  2116
sl@0
  2117
/**
sl@0
  2118
 * g_object_add_weak_pointer:
sl@0
  2119
 * @object: The object that should be weak referenced.
sl@0
  2120
 * @weak_pointer_location: The memory address of a pointer.
sl@0
  2121
 *
sl@0
  2122
 * Adds a weak reference from weak_pointer to @object to indicate that
sl@0
  2123
 * the pointer located at @weak_pointer_location is only valid during
sl@0
  2124
 * the lifetime of @object. When the @object is finalized,
sl@0
  2125
 * @weak_pointer will be set to %NULL.
sl@0
  2126
 */
sl@0
  2127
EXPORT_C void
sl@0
  2128
g_object_add_weak_pointer (GObject  *object, 
sl@0
  2129
                           gpointer *weak_pointer_location)
sl@0
  2130
{
sl@0
  2131
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  2132
  g_return_if_fail (weak_pointer_location != NULL);
sl@0
  2133
sl@0
  2134
  g_object_weak_ref (object, 
sl@0
  2135
                     (GWeakNotify) g_nullify_pointer, 
sl@0
  2136
                     weak_pointer_location);
sl@0
  2137
}
sl@0
  2138
sl@0
  2139
/**
sl@0
  2140
 * g_object_remove_weak_pointer:
sl@0
  2141
 * @object: The object that is weak referenced.
sl@0
  2142
 * @weak_pointer_location: The memory address of a pointer.
sl@0
  2143
 *
sl@0
  2144
 * Removes a weak reference from @object that was previously added
sl@0
  2145
 * using g_object_add_weak_pointer(). The @weak_pointer_location has
sl@0
  2146
 * to match the one used with g_object_add_weak_pointer().
sl@0
  2147
 */
sl@0
  2148
EXPORT_C void
sl@0
  2149
g_object_remove_weak_pointer (GObject  *object, 
sl@0
  2150
                              gpointer *weak_pointer_location)
sl@0
  2151
{
sl@0
  2152
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  2153
  g_return_if_fail (weak_pointer_location != NULL);
sl@0
  2154
sl@0
  2155
  g_object_weak_unref (object, 
sl@0
  2156
                       (GWeakNotify) g_nullify_pointer, 
sl@0
  2157
                       weak_pointer_location);
sl@0
  2158
}
sl@0
  2159
sl@0
  2160
#if EMULATOR
sl@0
  2161
guint
sl@0
  2162
object_floating_flag_handler (GObject        *object,
sl@0
  2163
                              gint            job)
sl@0
  2164
#else
sl@0
  2165
static guint
sl@0
  2166
object_floating_flag_handler (GObject        *object,
sl@0
  2167
                              gint            job)
sl@0
  2168
#endif /* EMULATOR */
sl@0
  2169
{
sl@0
  2170
  switch (job)
sl@0
  2171
    {
sl@0
  2172
      gpointer oldvalue;
sl@0
  2173
    case +1:    /* force floating if possible */
sl@0
  2174
      do
sl@0
  2175
        oldvalue = g_atomic_pointer_get (&object->qdata);
sl@0
  2176
      while (!g_atomic_pointer_compare_and_exchange ((void**) &object->qdata, oldvalue,
sl@0
  2177
                                                     (gpointer) ((gsize) oldvalue | OBJECT_FLOATING_FLAG)));
sl@0
  2178
      return (gsize) oldvalue & OBJECT_FLOATING_FLAG;
sl@0
  2179
    case -1:    /* sink if possible */
sl@0
  2180
      do
sl@0
  2181
        oldvalue = g_atomic_pointer_get (&object->qdata);
sl@0
  2182
      while (!g_atomic_pointer_compare_and_exchange ((void**) &object->qdata, oldvalue,
sl@0
  2183
                                                     (gpointer) ((gsize) oldvalue & ~(gsize) OBJECT_FLOATING_FLAG)));
sl@0
  2184
      return (gsize) oldvalue & OBJECT_FLOATING_FLAG;
sl@0
  2185
    default:    /* check floating */
sl@0
  2186
      return 0 != ((gsize) g_atomic_pointer_get (&object->qdata) & OBJECT_FLOATING_FLAG);
sl@0
  2187
    }
sl@0
  2188
}
sl@0
  2189
sl@0
  2190
/**
sl@0
  2191
 * g_object_is_floating:
sl@0
  2192
 * @object: a #GObject
sl@0
  2193
 *
sl@0
  2194
 * Checks wether @object has a <link linkend="floating-ref">floating</link>
sl@0
  2195
 * reference.
sl@0
  2196
 *
sl@0
  2197
 * Since: 2.10
sl@0
  2198
 *
sl@0
  2199
 * Returns: %TRUE if @object has a floating reference
sl@0
  2200
 */
sl@0
  2201
EXPORT_C gboolean
sl@0
  2202
g_object_is_floating (gpointer _object)
sl@0
  2203
{
sl@0
  2204
  GObject *object = _object;
sl@0
  2205
  g_return_val_if_fail (G_IS_OBJECT (object), FALSE);
sl@0
  2206
  return floating_flag_handler (object, 0);
sl@0
  2207
}
sl@0
  2208
sl@0
  2209
/**
sl@0
  2210
 * g_object_ref_sink:
sl@0
  2211
 * @object: a #GObject
sl@0
  2212
 *
sl@0
  2213
 * Increase the reference count of @object, and possibly remove the
sl@0
  2214
 * <link linkend="floating-ref">floating</link> reference, if @object
sl@0
  2215
 * has a floating reference.
sl@0
  2216
 *
sl@0
  2217
 * In other words, if the object is floating, then this call "assumes
sl@0
  2218
 * ownership" of the floating reference, converting it to a normal
sl@0
  2219
 * reference by clearing the floating flag while leaving the reference
sl@0
  2220
 * count unchanged.  If the object is not floating, then this call
sl@0
  2221
 * adds a new normal reference increasing the reference count by one.
sl@0
  2222
 *
sl@0
  2223
 * Since: 2.10
sl@0
  2224
 *
sl@0
  2225
 * Returns: @object
sl@0
  2226
 */
sl@0
  2227
EXPORT_C gpointer
sl@0
  2228
g_object_ref_sink (gpointer _object)
sl@0
  2229
{
sl@0
  2230
  GObject *object = _object;
sl@0
  2231
  gboolean was_floating;
sl@0
  2232
  g_return_val_if_fail (G_IS_OBJECT (object), object);
sl@0
  2233
  g_return_val_if_fail (object->ref_count >= 1, object);
sl@0
  2234
  g_object_ref (object);
sl@0
  2235
  was_floating = floating_flag_handler (object, -1);
sl@0
  2236
  if (was_floating)
sl@0
  2237
    g_object_unref (object);
sl@0
  2238
  return object;
sl@0
  2239
}
sl@0
  2240
sl@0
  2241
/**
sl@0
  2242
 * g_object_force_floating:
sl@0
  2243
 * @object: a #GObject
sl@0
  2244
 *
sl@0
  2245
 * This function is intended for #GObject implementations to re-enforce a
sl@0
  2246
 * <link linkend="floating-ref">floating</link> object reference.
sl@0
  2247
 * Doing this is seldomly required, all
sl@0
  2248
 * #GInitiallyUnowned<!-- -->s are created with a floating reference which
sl@0
  2249
 * usually just needs to be sunken by calling g_object_ref_sink().
sl@0
  2250
 *
sl@0
  2251
 * Since: 2.10
sl@0
  2252
 */
sl@0
  2253
EXPORT_C void
sl@0
  2254
g_object_force_floating (GObject *object)
sl@0
  2255
{
sl@0
  2256
  gboolean was_floating;
sl@0
  2257
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  2258
  g_return_if_fail (object->ref_count >= 1);
sl@0
  2259
sl@0
  2260
  was_floating = floating_flag_handler (object, +1);
sl@0
  2261
}
sl@0
  2262
sl@0
  2263
typedef struct {
sl@0
  2264
  GObject *object;
sl@0
  2265
  guint n_toggle_refs;
sl@0
  2266
  struct {
sl@0
  2267
    GToggleNotify notify;
sl@0
  2268
    gpointer    data;
sl@0
  2269
  } toggle_refs[1];  /* flexible array */
sl@0
  2270
} ToggleRefStack;
sl@0
  2271
sl@0
  2272
static void
sl@0
  2273
toggle_refs_notify (GObject *object,
sl@0
  2274
		    gboolean is_last_ref)
sl@0
  2275
{
sl@0
  2276
  ToggleRefStack *tstack = g_datalist_id_get_data (&object->qdata, quark_toggle_refs);
sl@0
  2277
sl@0
  2278
  /* Reentrancy here is not as tricky as it seems, because a toggle reference
sl@0
  2279
   * will only be notified when there is exactly one of them.
sl@0
  2280
   */
sl@0
  2281
  g_assert (tstack->n_toggle_refs == 1);
sl@0
  2282
  tstack->toggle_refs[0].notify (tstack->toggle_refs[0].data, tstack->object, is_last_ref);
sl@0
  2283
}
sl@0
  2284
sl@0
  2285
/**
sl@0
  2286
 * g_object_add_toggle_ref:
sl@0
  2287
 * @object: a #GObject
sl@0
  2288
 * @notify: a function to call when this reference is the
sl@0
  2289
 *  last reference to the object, or is no longer
sl@0
  2290
 *  the last reference.
sl@0
  2291
 * @data: data to pass to @notify
sl@0
  2292
 *
sl@0
  2293
 * Increases the reference count of the object by one and sets a
sl@0
  2294
 * callback to be called when all other references to the object are
sl@0
  2295
 * dropped, or when this is already the last reference to the object
sl@0
  2296
 * and another reference is established.
sl@0
  2297
 *
sl@0
  2298
 * This functionality is intended for binding @object to a proxy
sl@0
  2299
 * object managed by another memory manager. This is done with two
sl@0
  2300
 * paired references: the strong reference added by
sl@0
  2301
 * g_object_add_toggle_ref() and a reverse reference to the proxy
sl@0
  2302
 * object which is either a strong reference or weak reference.
sl@0
  2303
 *
sl@0
  2304
 * The setup is that when there are no other references to @object,
sl@0
  2305
 * only a weak reference is held in the reverse direction from @object
sl@0
  2306
 * to the proxy object, but when there are other references held to
sl@0
  2307
 * @object, a strong reference is held. The @notify callback is called
sl@0
  2308
 * when the reference from @object to the proxy object should be
sl@0
  2309
 * <firstterm>toggled</firstterm> from strong to weak (@is_last_ref
sl@0
  2310
 * true) or weak to strong (@is_last_ref false).
sl@0
  2311
 *
sl@0
  2312
 * Since a (normal) reference must be held to the object before
sl@0
  2313
 * calling g_object_toggle_ref(), the initial state of the reverse
sl@0
  2314
 * link is always strong.
sl@0
  2315
 *
sl@0
  2316
 * Multiple toggle references may be added to the same gobject,
sl@0
  2317
 * however if there are multiple toggle references to an object, none
sl@0
  2318
 * of them will ever be notified until all but one are removed.  For
sl@0
  2319
 * this reason, you should only ever use a toggle reference if there
sl@0
  2320
 * is important state in the proxy object.
sl@0
  2321
 *
sl@0
  2322
 * Since: 2.8
sl@0
  2323
 */
sl@0
  2324
EXPORT_C void
sl@0
  2325
g_object_add_toggle_ref (GObject       *object,
sl@0
  2326
			 GToggleNotify  notify,
sl@0
  2327
			 gpointer       data)
sl@0
  2328
{
sl@0
  2329
  ToggleRefStack *tstack;
sl@0
  2330
  guint i;
sl@0
  2331
  
sl@0
  2332
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  2333
  g_return_if_fail (notify != NULL);
sl@0
  2334
  g_return_if_fail (object->ref_count >= 1);
sl@0
  2335
sl@0
  2336
  g_object_ref (object);
sl@0
  2337
sl@0
  2338
  tstack = g_datalist_id_remove_no_notify (&object->qdata, quark_toggle_refs);
sl@0
  2339
  if (tstack)
sl@0
  2340
    {
sl@0
  2341
      i = tstack->n_toggle_refs++;
sl@0
  2342
      /* allocate i = tstate->n_toggle_refs - 1 positions beyond the 1 declared
sl@0
  2343
       * in tstate->toggle_refs */
sl@0
  2344
      tstack = g_realloc (tstack, sizeof (*tstack) + sizeof (tstack->toggle_refs[0]) * i);
sl@0
  2345
    }
sl@0
  2346
  else
sl@0
  2347
    {
sl@0
  2348
      tstack = g_renew (ToggleRefStack, NULL, 1);
sl@0
  2349
      tstack->object = object;
sl@0
  2350
      tstack->n_toggle_refs = 1;
sl@0
  2351
      i = 0;
sl@0
  2352
    }
sl@0
  2353
sl@0
  2354
  /* Set a flag for fast lookup after adding the first toggle reference */
sl@0
  2355
  if (tstack->n_toggle_refs == 1)
sl@0
  2356
    g_datalist_set_flags (&object->qdata, OBJECT_HAS_TOGGLE_REF_FLAG);
sl@0
  2357
  
sl@0
  2358
  tstack->toggle_refs[i].notify = notify;
sl@0
  2359
  tstack->toggle_refs[i].data = data;
sl@0
  2360
  g_datalist_id_set_data_full (&object->qdata, quark_toggle_refs, tstack,
sl@0
  2361
			       (GDestroyNotify)g_free);
sl@0
  2362
}
sl@0
  2363
sl@0
  2364
/**
sl@0
  2365
 * g_object_remove_toggle_ref:
sl@0
  2366
 * @object: a #GObject
sl@0
  2367
 * @notify: a function to call when this reference is the
sl@0
  2368
 *  last reference to the object, or is no longer
sl@0
  2369
 *  the last reference.
sl@0
  2370
 * @data: data to pass to @notify
sl@0
  2371
 *
sl@0
  2372
 * Removes a reference added with g_object_add_toggle_ref(). The
sl@0
  2373
 * reference count of the object is decreased by one.
sl@0
  2374
 *
sl@0
  2375
 * Since: 2.8
sl@0
  2376
 */
sl@0
  2377
EXPORT_C void
sl@0
  2378
g_object_remove_toggle_ref (GObject       *object,
sl@0
  2379
			    GToggleNotify  notify,
sl@0
  2380
			    gpointer       data)
sl@0
  2381
{
sl@0
  2382
  ToggleRefStack *tstack;
sl@0
  2383
  gboolean found_one = FALSE;
sl@0
  2384
sl@0
  2385
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  2386
  g_return_if_fail (notify != NULL);
sl@0
  2387
sl@0
  2388
  tstack = g_datalist_id_get_data (&object->qdata, quark_toggle_refs);
sl@0
  2389
  if (tstack)
sl@0
  2390
    {
sl@0
  2391
      guint i;
sl@0
  2392
sl@0
  2393
      for (i = 0; i < tstack->n_toggle_refs; i++)
sl@0
  2394
	if (tstack->toggle_refs[i].notify == notify &&
sl@0
  2395
	    tstack->toggle_refs[i].data == data)
sl@0
  2396
	  {
sl@0
  2397
	    found_one = TRUE;
sl@0
  2398
	    tstack->n_toggle_refs -= 1;
sl@0
  2399
	    if (i != tstack->n_toggle_refs)
sl@0
  2400
	      tstack->toggle_refs[i] = tstack->toggle_refs[tstack->n_toggle_refs];
sl@0
  2401
sl@0
  2402
	    if (tstack->n_toggle_refs == 0)
sl@0
  2403
	      g_datalist_unset_flags (&object->qdata, OBJECT_HAS_TOGGLE_REF_FLAG);
sl@0
  2404
sl@0
  2405
	    g_object_unref (object);
sl@0
  2406
	    
sl@0
  2407
	    break;
sl@0
  2408
	  }
sl@0
  2409
    }
sl@0
  2410
  
sl@0
  2411
  if (!found_one)
sl@0
  2412
    g_warning ("%s: couldn't find toggle ref %p(%p)", G_STRFUNC, notify, data);
sl@0
  2413
}
sl@0
  2414
sl@0
  2415
/**
sl@0
  2416
 * g_object_ref:
sl@0
  2417
 * @object: a #GObject
sl@0
  2418
 *
sl@0
  2419
 * Increases the reference count of @object.
sl@0
  2420
 *
sl@0
  2421
 * Returns: the same @object
sl@0
  2422
 */
sl@0
  2423
EXPORT_C gpointer
sl@0
  2424
g_object_ref (gpointer _object)
sl@0
  2425
{
sl@0
  2426
  GObject *object = _object;
sl@0
  2427
  gint old_val;
sl@0
  2428
sl@0
  2429
  g_return_val_if_fail (G_IS_OBJECT (object), NULL);
sl@0
  2430
  g_return_val_if_fail (object->ref_count > 0, NULL);
sl@0
  2431
  
sl@0
  2432
#ifdef  G_ENABLE_DEBUG
sl@0
  2433
  if (g_trap_object_ref == object)
sl@0
  2434
    G_BREAKPOINT ();
sl@0
  2435
#endif  /* G_ENABLE_DEBUG */
sl@0
  2436
sl@0
  2437
sl@0
  2438
  old_val = g_atomic_int_exchange_and_add ((int *)&object->ref_count, 1);
sl@0
  2439
sl@0
  2440
  if (old_val == 1 && OBJECT_HAS_TOGGLE_REF (object))
sl@0
  2441
    toggle_refs_notify (object, FALSE);
sl@0
  2442
  
sl@0
  2443
  return object;
sl@0
  2444
}
sl@0
  2445
sl@0
  2446
/**
sl@0
  2447
 * g_object_unref:
sl@0
  2448
 * @object: a #GObject
sl@0
  2449
 *
sl@0
  2450
 * Decreases the reference count of @object. When its reference count
sl@0
  2451
 * drops to 0, the object is finalized (i.e. its memory is freed).
sl@0
  2452
 */
sl@0
  2453
EXPORT_C void
sl@0
  2454
g_object_unref (gpointer _object)
sl@0
  2455
{
sl@0
  2456
  GObject *object = _object;
sl@0
  2457
  gint old_ref;
sl@0
  2458
  gboolean is_zero;
sl@0
  2459
  
sl@0
  2460
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  2461
  g_return_if_fail (object->ref_count > 0);
sl@0
  2462
  
sl@0
  2463
#ifdef  G_ENABLE_DEBUG
sl@0
  2464
  if (g_trap_object_ref == object)
sl@0
  2465
    G_BREAKPOINT ();
sl@0
  2466
#endif  /* G_ENABLE_DEBUG */
sl@0
  2467
sl@0
  2468
  /* here we want to atomically do: if (ref_count>1) { ref_count--; return; } */
sl@0
  2469
 retry_atomic_decrement1:
sl@0
  2470
  old_ref = g_atomic_int_get (&object->ref_count);
sl@0
  2471
  if (old_ref > 1)
sl@0
  2472
    {
sl@0
  2473
      if (!g_atomic_int_compare_and_exchange ((int *)&object->ref_count, old_ref, old_ref - 1))
sl@0
  2474
	goto retry_atomic_decrement1;
sl@0
  2475
sl@0
  2476
      /* if we went from 2->1 we need to notify toggle refs if any */
sl@0
  2477
      if (old_ref == 2 && OBJECT_HAS_TOGGLE_REF (object))
sl@0
  2478
	toggle_refs_notify (object, TRUE);
sl@0
  2479
    }
sl@0
  2480
  else
sl@0
  2481
    {
sl@0
  2482
      /* we are about tp remove the last reference */
sl@0
  2483
      G_OBJECT_GET_CLASS (object)->dispose (object);
sl@0
  2484
sl@0
  2485
      /* may have been re-referenced meanwhile */
sl@0
  2486
    retry_atomic_decrement2:
sl@0
  2487
      old_ref = g_atomic_int_get ((int *)&object->ref_count);
sl@0
  2488
      if (old_ref > 1)
sl@0
  2489
        {
sl@0
  2490
          if (!g_atomic_int_compare_and_exchange ((int *)&object->ref_count, old_ref, old_ref - 1))
sl@0
  2491
	    goto retry_atomic_decrement2;
sl@0
  2492
sl@0
  2493
          /* if we went from 2->1 we need to notify toggle refs if any */
sl@0
  2494
          if (old_ref == 2 && OBJECT_HAS_TOGGLE_REF (object))
sl@0
  2495
	    toggle_refs_notify (object, TRUE);
sl@0
  2496
          
sl@0
  2497
	  return;
sl@0
  2498
	}
sl@0
  2499
      
sl@0
  2500
      /* we are still in the process of taking away the last ref */
sl@0
  2501
      g_datalist_id_set_data (&object->qdata, quark_closure_array, NULL);
sl@0
  2502
      g_signal_handlers_destroy (object);
sl@0
  2503
      g_datalist_id_set_data (&object->qdata, quark_weak_refs, NULL);
sl@0
  2504
      
sl@0
  2505
      /* decrement the last reference */
sl@0
  2506
      is_zero = g_atomic_int_dec_and_test ((int *)&object->ref_count);
sl@0
  2507
      
sl@0
  2508
      /* may have been re-referenced meanwhile */
sl@0
  2509
      if (G_LIKELY (is_zero)) 
sl@0
  2510
	{
sl@0
  2511
          G_OBJECT_GET_CLASS (object)->finalize (object);
sl@0
  2512
#ifdef	G_ENABLE_DEBUG
sl@0
  2513
          IF_DEBUG (OBJECTS)
sl@0
  2514
	    {
sl@0
  2515
	      /* catch objects not chaining finalize handlers */
sl@0
  2516
	      G_LOCK (debug_objects);
sl@0
  2517
	      g_assert (g_hash_table_lookup (debug_objects_ht, object) == NULL);
sl@0
  2518
	      G_UNLOCK (debug_objects);
sl@0
  2519
	    }
sl@0
  2520
#endif	/* G_ENABLE_DEBUG */
sl@0
  2521
          g_type_free_instance ((GTypeInstance*) object);
sl@0
  2522
	}
sl@0
  2523
    }
sl@0
  2524
}
sl@0
  2525
sl@0
  2526
/**
sl@0
  2527
 * g_object_get_qdata:
sl@0
  2528
 * @object: The GObject to get a stored user data pointer from
sl@0
  2529
 * @quark: A #GQuark, naming the user data pointer
sl@0
  2530
 * 
sl@0
  2531
 * This function gets back user data pointers stored via
sl@0
  2532
 * g_object_set_qdata().
sl@0
  2533
 * 
sl@0
  2534
 * Returns: The user data pointer set, or %NULL
sl@0
  2535
 */
sl@0
  2536
EXPORT_C gpointer
sl@0
  2537
g_object_get_qdata (GObject *object,
sl@0
  2538
		    GQuark   quark)
sl@0
  2539
{
sl@0
  2540
  g_return_val_if_fail (G_IS_OBJECT (object), NULL);
sl@0
  2541
  
sl@0
  2542
  return quark ? g_datalist_id_get_data (&object->qdata, quark) : NULL;
sl@0
  2543
}
sl@0
  2544
sl@0
  2545
/**
sl@0
  2546
 * g_object_set_qdata:
sl@0
  2547
 * @object: The GObject to set store a user data pointer
sl@0
  2548
 * @quark: A #GQuark, naming the user data pointer
sl@0
  2549
 * @data: An opaque user data pointer
sl@0
  2550
 *
sl@0
  2551
 * This sets an opaque, named pointer on an object.
sl@0
  2552
 * The name is specified through a #GQuark (retrived e.g. via
sl@0
  2553
 * g_quark_from_static_string()), and the pointer
sl@0
  2554
 * can be gotten back from the @object with g_object_get_qdata()
sl@0
  2555
 * until the @object is finalized.
sl@0
  2556
 * Setting a previously set user data pointer, overrides (frees)
sl@0
  2557
 * the old pointer set, using #NULL as pointer essentially
sl@0
  2558
 * removes the data stored.
sl@0
  2559
 */
sl@0
  2560
EXPORT_C void
sl@0
  2561
g_object_set_qdata (GObject *object,
sl@0
  2562
		    GQuark   quark,
sl@0
  2563
		    gpointer data)
sl@0
  2564
{
sl@0
  2565
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  2566
  g_return_if_fail (quark > 0);
sl@0
  2567
  
sl@0
  2568
  g_datalist_id_set_data (&object->qdata, quark, data);
sl@0
  2569
}
sl@0
  2570
sl@0
  2571
/**
sl@0
  2572
 * g_object_set_qdata_full:
sl@0
  2573
 * @object: The GObject to set store a user data pointer
sl@0
  2574
 * @quark: A #GQuark, naming the user data pointer
sl@0
  2575
 * @data: An opaque user data pointer
sl@0
  2576
 * @destroy: Function to invoke with @data as argument, when @data
sl@0
  2577
 *           needs to be freed
sl@0
  2578
 *
sl@0
  2579
 * This function works like g_object_set_qdata(), but in addition,
sl@0
  2580
 * a void (*destroy) (gpointer) function may be specified which is
sl@0
  2581
 * called with @data as argument when the @object is finalized, or
sl@0
  2582
 * the data is being overwritten by a call to g_object_set_qdata()
sl@0
  2583
 * with the same @quark.
sl@0
  2584
 */
sl@0
  2585
EXPORT_C void
sl@0
  2586
g_object_set_qdata_full (GObject       *object,
sl@0
  2587
			 GQuark		quark,
sl@0
  2588
			 gpointer	data,
sl@0
  2589
			 GDestroyNotify destroy)
sl@0
  2590
{
sl@0
  2591
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  2592
  g_return_if_fail (quark > 0);
sl@0
  2593
  
sl@0
  2594
  g_datalist_id_set_data_full (&object->qdata, quark, data,
sl@0
  2595
			       data ? destroy : (GDestroyNotify) NULL);
sl@0
  2596
}
sl@0
  2597
sl@0
  2598
/**
sl@0
  2599
 * g_object_steal_qdata:
sl@0
  2600
 * @object: The GObject to get a stored user data pointer from
sl@0
  2601
 * @quark: A #GQuark, naming the user data pointer
sl@0
  2602
 *
sl@0
  2603
 * This function gets back user data pointers stored via
sl@0
  2604
 * g_object_set_qdata() and removes the @data from object
sl@0
  2605
 * without invoking its destroy() function (if any was
sl@0
  2606
 * set).
sl@0
  2607
 * Usually, calling this function is only required to update
sl@0
  2608
 * user data pointers with a destroy notifier, for example:
sl@0
  2609
 * |[
sl@0
  2610
 * void
sl@0
  2611
 * object_add_to_user_list (GObject     *object,
sl@0
  2612
 *                          const gchar *new_string)
sl@0
  2613
 * {
sl@0
  2614
 *   // the quark, naming the object data
sl@0
  2615
 *   GQuark quark_string_list = g_quark_from_static_string ("my-string-list");
sl@0
  2616
 *   // retrive the old string list
sl@0
  2617
 *   GList *list = g_object_steal_qdata (object, quark_string_list);
sl@0
  2618
 *
sl@0
  2619
 *   // prepend new string
sl@0
  2620
 *   list = g_list_prepend (list, g_strdup (new_string));
sl@0
  2621
 *   // this changed 'list', so we need to set it again
sl@0
  2622
 *   g_object_set_qdata_full (object, quark_string_list, list, free_string_list);
sl@0
  2623
 * }
sl@0
  2624
 * static void
sl@0
  2625
 * free_string_list (gpointer data)
sl@0
  2626
 * {
sl@0
  2627
 *   GList *node, *list = data;
sl@0
  2628
 *
sl@0
  2629
 *   for (node = list; node; node = node->next)
sl@0
  2630
 *     g_free (node->data);
sl@0
  2631
 *   g_list_free (list);
sl@0
  2632
 * }
sl@0
  2633
 * ]|
sl@0
  2634
 * Using g_object_get_qdata() in the above example, instead of
sl@0
  2635
 * g_object_steal_qdata() would have left the destroy function set,
sl@0
  2636
 * and thus the partial string list would have been freed upon
sl@0
  2637
 * g_object_set_qdata_full().
sl@0
  2638
 *
sl@0
  2639
 * Returns: The user data pointer set, or %NULL
sl@0
  2640
 */
sl@0
  2641
EXPORT_C gpointer
sl@0
  2642
g_object_steal_qdata (GObject *object,
sl@0
  2643
		      GQuark   quark)
sl@0
  2644
{
sl@0
  2645
  g_return_val_if_fail (G_IS_OBJECT (object), NULL);
sl@0
  2646
  g_return_val_if_fail (quark > 0, NULL);
sl@0
  2647
  
sl@0
  2648
  return g_datalist_id_remove_no_notify (&object->qdata, quark);
sl@0
  2649
}
sl@0
  2650
sl@0
  2651
/**
sl@0
  2652
 * g_object_get_data:
sl@0
  2653
 * @object: #GObject containing the associations
sl@0
  2654
 * @key: name of the key for that association
sl@0
  2655
 * 
sl@0
  2656
 * Gets a named field from the objects table of associations (see g_object_set_data()).
sl@0
  2657
 * 
sl@0
  2658
 * Returns: the data if found, or %NULL if no such data exists.
sl@0
  2659
 */
sl@0
  2660
EXPORT_C gpointer
sl@0
  2661
g_object_get_data (GObject     *object,
sl@0
  2662
                   const gchar *key)
sl@0
  2663
{
sl@0
  2664
  GQuark quark;
sl@0
  2665
sl@0
  2666
  g_return_val_if_fail (G_IS_OBJECT (object), NULL);
sl@0
  2667
  g_return_val_if_fail (key != NULL, NULL);
sl@0
  2668
sl@0
  2669
  quark = g_quark_try_string (key);
sl@0
  2670
sl@0
  2671
  return quark ? g_datalist_id_get_data (&object->qdata, quark) : NULL;
sl@0
  2672
}
sl@0
  2673
sl@0
  2674
/**
sl@0
  2675
 * g_object_set_data:
sl@0
  2676
 * @object: #GObject containing the associations.
sl@0
  2677
 * @key: name of the key
sl@0
  2678
 * @data: data to associate with that key
sl@0
  2679
 *
sl@0
  2680
 * Each object carries around a table of associations from
sl@0
  2681
 * strings to pointers.  This function lets you set an association.
sl@0
  2682
 *
sl@0
  2683
 * If the object already had an association with that name,
sl@0
  2684
 * the old association will be destroyed.
sl@0
  2685
 */
sl@0
  2686
EXPORT_C void
sl@0
  2687
g_object_set_data (GObject     *object,
sl@0
  2688
                   const gchar *key,
sl@0
  2689
                   gpointer     data)
sl@0
  2690
{
sl@0
  2691
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  2692
  g_return_if_fail (key != NULL);
sl@0
  2693
sl@0
  2694
  g_datalist_id_set_data (&object->qdata, g_quark_from_string (key), data);
sl@0
  2695
}
sl@0
  2696
sl@0
  2697
/**
sl@0
  2698
 * g_object_set_data_full:
sl@0
  2699
 * @object: #GObject containing the associations
sl@0
  2700
 * @key: name of the key
sl@0
  2701
 * @data: data to associate with that key
sl@0
  2702
 * @destroy: function to call when the association is destroyed
sl@0
  2703
 *
sl@0
  2704
 * Like g_object_set_data() except it adds notification
sl@0
  2705
 * for when the association is destroyed, either by setting it
sl@0
  2706
 * to a different value or when the object is destroyed.
sl@0
  2707
 *
sl@0
  2708
 * Note that the @destroy callback is not called if @data is %NULL.
sl@0
  2709
 */
sl@0
  2710
EXPORT_C void
sl@0
  2711
g_object_set_data_full (GObject       *object,
sl@0
  2712
                        const gchar   *key,
sl@0
  2713
                        gpointer       data,
sl@0
  2714
                        GDestroyNotify destroy)
sl@0
  2715
{
sl@0
  2716
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  2717
  g_return_if_fail (key != NULL);
sl@0
  2718
sl@0
  2719
  g_datalist_id_set_data_full (&object->qdata, g_quark_from_string (key), data,
sl@0
  2720
			       data ? destroy : (GDestroyNotify) NULL);
sl@0
  2721
}
sl@0
  2722
sl@0
  2723
/**
sl@0
  2724
 * g_object_steal_data:
sl@0
  2725
 * @object: #GObject containing the associations
sl@0
  2726
 * @key: name of the key
sl@0
  2727
 *
sl@0
  2728
 * Remove a specified datum from the object's data associations,
sl@0
  2729
 * without invoking the association's destroy handler.
sl@0
  2730
 *
sl@0
  2731
 * Returns: the data if found, or %NULL if no such data exists.
sl@0
  2732
 */
sl@0
  2733
EXPORT_C gpointer
sl@0
  2734
g_object_steal_data (GObject     *object,
sl@0
  2735
                     const gchar *key)
sl@0
  2736
{
sl@0
  2737
  GQuark quark;
sl@0
  2738
sl@0
  2739
  g_return_val_if_fail (G_IS_OBJECT (object), NULL);
sl@0
  2740
  g_return_val_if_fail (key != NULL, NULL);
sl@0
  2741
sl@0
  2742
  quark = g_quark_try_string (key);
sl@0
  2743
sl@0
  2744
  return quark ? g_datalist_id_remove_no_notify (&object->qdata, quark) : NULL;
sl@0
  2745
}
sl@0
  2746
sl@0
  2747
static void
sl@0
  2748
g_value_object_init (GValue *value)
sl@0
  2749
{
sl@0
  2750
  value->data[0].v_pointer = NULL;
sl@0
  2751
}
sl@0
  2752
sl@0
  2753
static void
sl@0
  2754
g_value_object_free_value (GValue *value)
sl@0
  2755
{
sl@0
  2756
  if (value->data[0].v_pointer)
sl@0
  2757
    g_object_unref (value->data[0].v_pointer);
sl@0
  2758
}
sl@0
  2759
sl@0
  2760
static void
sl@0
  2761
g_value_object_copy_value (const GValue *src_value,
sl@0
  2762
			   GValue	*dest_value)
sl@0
  2763
{
sl@0
  2764
  if (src_value->data[0].v_pointer)
sl@0
  2765
    dest_value->data[0].v_pointer = g_object_ref (src_value->data[0].v_pointer);
sl@0
  2766
  else
sl@0
  2767
    dest_value->data[0].v_pointer = NULL;
sl@0
  2768
}
sl@0
  2769
sl@0
  2770
static void
sl@0
  2771
g_value_object_transform_value (const GValue *src_value,
sl@0
  2772
				GValue       *dest_value)
sl@0
  2773
{
sl@0
  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)))
sl@0
  2775
    dest_value->data[0].v_pointer = g_object_ref (src_value->data[0].v_pointer);
sl@0
  2776
  else
sl@0
  2777
    dest_value->data[0].v_pointer = NULL;
sl@0
  2778
}
sl@0
  2779
sl@0
  2780
static gpointer
sl@0
  2781
g_value_object_peek_pointer (const GValue *value)
sl@0
  2782
{
sl@0
  2783
  return value->data[0].v_pointer;
sl@0
  2784
}
sl@0
  2785
sl@0
  2786
static gchar*
sl@0
  2787
g_value_object_collect_value (GValue	  *value,
sl@0
  2788
			      guint        n_collect_values,
sl@0
  2789
			      GTypeCValue *collect_values,
sl@0
  2790
			      guint        collect_flags)
sl@0
  2791
{
sl@0
  2792
  if (collect_values[0].v_pointer)
sl@0
  2793
    {
sl@0
  2794
      GObject *object = collect_values[0].v_pointer;
sl@0
  2795
      
sl@0
  2796
      if (object->g_type_instance.g_class == NULL)
sl@0
  2797
	return g_strconcat ("invalid unclassed object pointer for value type `",
sl@0
  2798
			    G_VALUE_TYPE_NAME (value),
sl@0
  2799
			    "'",
sl@0
  2800
			    NULL);
sl@0
  2801
      else if (!g_value_type_compatible (G_OBJECT_TYPE (object), G_VALUE_TYPE (value)))
sl@0
  2802
	return g_strconcat ("invalid object type `",
sl@0
  2803
			    G_OBJECT_TYPE_NAME (object),
sl@0
  2804
			    "' for value type `",
sl@0
  2805
			    G_VALUE_TYPE_NAME (value),
sl@0
  2806
			    "'",
sl@0
  2807
			    NULL);
sl@0
  2808
      /* never honour G_VALUE_NOCOPY_CONTENTS for ref-counted types */
sl@0
  2809
      value->data[0].v_pointer = g_object_ref (object);
sl@0
  2810
    }
sl@0
  2811
  else
sl@0
  2812
    value->data[0].v_pointer = NULL;
sl@0
  2813
  
sl@0
  2814
  return NULL;
sl@0
  2815
}
sl@0
  2816
sl@0
  2817
static gchar*
sl@0
  2818
g_value_object_lcopy_value (const GValue *value,
sl@0
  2819
			    guint        n_collect_values,
sl@0
  2820
			    GTypeCValue *collect_values,
sl@0
  2821
			    guint        collect_flags)
sl@0
  2822
{
sl@0
  2823
  GObject **object_p = collect_values[0].v_pointer;
sl@0
  2824
  
sl@0
  2825
  if (!object_p)
sl@0
  2826
    return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value));
sl@0
  2827
sl@0
  2828
  if (!value->data[0].v_pointer)
sl@0
  2829
    *object_p = NULL;
sl@0
  2830
  else if (collect_flags & G_VALUE_NOCOPY_CONTENTS)
sl@0
  2831
    *object_p = value->data[0].v_pointer;
sl@0
  2832
  else
sl@0
  2833
    *object_p = g_object_ref (value->data[0].v_pointer);
sl@0
  2834
  
sl@0
  2835
  return NULL;
sl@0
  2836
}
sl@0
  2837
sl@0
  2838
/**
sl@0
  2839
 * g_value_set_object:
sl@0
  2840
 * @value: a valid #GValue of %G_TYPE_OBJECT derived type
sl@0
  2841
 * @v_object: object value to be set
sl@0
  2842
 *
sl@0
  2843
 * Set the contents of a %G_TYPE_OBJECT derived #GValue to @v_object.
sl@0
  2844
 *
sl@0
  2845
 * g_value_set_object() increases the reference count of @v_object
sl@0
  2846
 * (the #GValue holds a reference to @v_object).  If you do not wish
sl@0
  2847
 * to increase the reference count of the object (i.e. you wish to
sl@0
  2848
 * pass your current reference to the #GValue because you no longer
sl@0
  2849
 * need it), use g_value_take_object() instead.
sl@0
  2850
 *
sl@0
  2851
 * It is important that your #GValue holds a reference to @v_object (either its
sl@0
  2852
 * own, or one it has taken) to ensure that the object won't be destroyed while
sl@0
  2853
 * the #GValue still exists).
sl@0
  2854
 */
sl@0
  2855
EXPORT_C void
sl@0
  2856
g_value_set_object (GValue   *value,
sl@0
  2857
		    gpointer  v_object)
sl@0
  2858
{
sl@0
  2859
  GObject *old;
sl@0
  2860
	
sl@0
  2861
  g_return_if_fail (G_VALUE_HOLDS_OBJECT (value));
sl@0
  2862
sl@0
  2863
  old = value->data[0].v_pointer;
sl@0
  2864
  
sl@0
  2865
  if (v_object)
sl@0
  2866
    {
sl@0
  2867
      g_return_if_fail (G_IS_OBJECT (v_object));
sl@0
  2868
      g_return_if_fail (g_value_type_compatible (G_OBJECT_TYPE (v_object), G_VALUE_TYPE (value)));
sl@0
  2869
sl@0
  2870
      value->data[0].v_pointer = v_object;
sl@0
  2871
      g_object_ref (value->data[0].v_pointer);
sl@0
  2872
    }
sl@0
  2873
  else
sl@0
  2874
    value->data[0].v_pointer = NULL;
sl@0
  2875
  
sl@0
  2876
  if (old)
sl@0
  2877
    g_object_unref (old);
sl@0
  2878
}
sl@0
  2879
sl@0
  2880
/**
sl@0
  2881
 * g_value_set_object_take_ownership:
sl@0
  2882
 * @value: a valid #GValue of %G_TYPE_OBJECT derived type
sl@0
  2883
 * @v_object: object value to be set
sl@0
  2884
 *
sl@0
  2885
 * This is an internal function introduced mainly for C marshallers.
sl@0
  2886
 *
sl@0
  2887
 * Deprecated: 2.4: Use g_value_take_object() instead.
sl@0
  2888
 */
sl@0
  2889
EXPORT_C void
sl@0
  2890
g_value_set_object_take_ownership (GValue  *value,
sl@0
  2891
				   gpointer v_object)
sl@0
  2892
{
sl@0
  2893
  g_value_take_object (value, v_object);
sl@0
  2894
}
sl@0
  2895
sl@0
  2896
/**
sl@0
  2897
 * g_value_take_object:
sl@0
  2898
 * @value: a valid #GValue of %G_TYPE_OBJECT derived type
sl@0
  2899
 * @v_object: object value to be set
sl@0
  2900
 *
sl@0
  2901
 * Sets the contents of a %G_TYPE_OBJECT derived #GValue to @v_object
sl@0
  2902
 * and takes over the ownership of the callers reference to @v_object;
sl@0
  2903
 * the caller doesn't have to unref it any more (i.e. the reference
sl@0
  2904
 * count of the object is not increased).
sl@0
  2905
 *
sl@0
  2906
 * If you want the #GValue to hold its own reference to @v_object, use
sl@0
  2907
 * g_value_set_object() instead.
sl@0
  2908
 *
sl@0
  2909
 * Since: 2.4
sl@0
  2910
 */
sl@0
  2911
EXPORT_C void
sl@0
  2912
g_value_take_object (GValue  *value,
sl@0
  2913
		     gpointer v_object)
sl@0
  2914
{
sl@0
  2915
  g_return_if_fail (G_VALUE_HOLDS_OBJECT (value));
sl@0
  2916
sl@0
  2917
  if (value->data[0].v_pointer)
sl@0
  2918
    {
sl@0
  2919
      g_object_unref (value->data[0].v_pointer);
sl@0
  2920
      value->data[0].v_pointer = NULL;
sl@0
  2921
    }
sl@0
  2922
sl@0
  2923
  if (v_object)
sl@0
  2924
    {
sl@0
  2925
      g_return_if_fail (G_IS_OBJECT (v_object));
sl@0
  2926
      g_return_if_fail (g_value_type_compatible (G_OBJECT_TYPE (v_object), G_VALUE_TYPE (value)));
sl@0
  2927
sl@0
  2928
      value->data[0].v_pointer = v_object; /* we take over the reference count */
sl@0
  2929
    }
sl@0
  2930
}
sl@0
  2931
sl@0
  2932
/**
sl@0
  2933
 * g_value_get_object:
sl@0
  2934
 * @value: a valid #GValue of %G_TYPE_OBJECT derived type
sl@0
  2935
 * 
sl@0
  2936
 * Get the contents of a %G_TYPE_OBJECT derived #GValue.
sl@0
  2937
 * 
sl@0
  2938
 * Returns: object contents of @value
sl@0
  2939
 */
sl@0
  2940
EXPORT_C gpointer
sl@0
  2941
g_value_get_object (const GValue *value)
sl@0
  2942
{
sl@0
  2943
  g_return_val_if_fail (G_VALUE_HOLDS_OBJECT (value), NULL);
sl@0
  2944
  
sl@0
  2945
  return value->data[0].v_pointer;
sl@0
  2946
}
sl@0
  2947
sl@0
  2948
/**
sl@0
  2949
 * g_value_dup_object:
sl@0
  2950
 * @value: a valid #GValue whose type is derived from %G_TYPE_OBJECT
sl@0
  2951
 *
sl@0
  2952
 * Get the contents of a %G_TYPE_OBJECT derived #GValue, increasing
sl@0
  2953
 * its reference count.
sl@0
  2954
 *
sl@0
  2955
 * Returns: object content of @value, should be unreferenced when no
sl@0
  2956
 *          longer needed.
sl@0
  2957
 */
sl@0
  2958
EXPORT_C gpointer
sl@0
  2959
g_value_dup_object (const GValue *value)
sl@0
  2960
{
sl@0
  2961
  g_return_val_if_fail (G_VALUE_HOLDS_OBJECT (value), NULL);
sl@0
  2962
  
sl@0
  2963
  return value->data[0].v_pointer ? g_object_ref (value->data[0].v_pointer) : NULL;
sl@0
  2964
}
sl@0
  2965
sl@0
  2966
/**
sl@0
  2967
 * g_signal_connect_object:
sl@0
  2968
 * @instance: the instance to connect to.
sl@0
  2969
 * @detailed_signal: a string of the form "signal-name::detail".
sl@0
  2970
 * @c_handler: the #GCallback to connect.
sl@0
  2971
 * @gobject: the object to pass as data to @c_handler.
sl@0
  2972
 * @connect_flags: a combination of #GConnnectFlags.
sl@0
  2973
 *
sl@0
  2974
 * This is similar to g_signal_connect_data(), but uses a closure which
sl@0
  2975
 * ensures that the @gobject stays alive during the call to @c_handler
sl@0
  2976
 * by temporarily adding a reference count to @gobject.
sl@0
  2977
 *
sl@0
  2978
 * Note that there is a bug in GObject that makes this function
sl@0
  2979
 * much less useful than it might seem otherwise. Once @gobject is
sl@0
  2980
 * disposed, the callback will no longer be called, but, the signal
sl@0
  2981
 * handler is <emphasis>not</emphasis> currently disconnected. If the
sl@0
  2982
 * @instance is itself being freed at the same time than this doesn't
sl@0
  2983
 * matter, since the signal will automatically be removed, but
sl@0
  2984
 * if @instance persists, then the signal handler will leak. You
sl@0
  2985
 * should not remove the signal yourself because in a future versions of
sl@0
  2986
 * GObject, the handler <emphasis>will</emphasis> automatically
sl@0
  2987
 * be disconnected.
sl@0
  2988
 *
sl@0
  2989
 * It's possible to work around this problem in a way that will
sl@0
  2990
 * continue to work with future versions of GObject by checking
sl@0
  2991
 * that the signal handler is still connected before disconnected it:
sl@0
  2992
 * <informalexample><programlisting>
sl@0
  2993
 *  if (g_signal_handler_is_connected (instance, id))
sl@0
  2994
 *    g_signal_handler_disconnect (instance, id);
sl@0
  2995
 * </programlisting></informalexample>
sl@0
  2996
 *
sl@0
  2997
 * Returns: the handler id.
sl@0
  2998
 */
sl@0
  2999
EXPORT_C gulong
sl@0
  3000
g_signal_connect_object (gpointer      instance,
sl@0
  3001
			 const gchar  *detailed_signal,
sl@0
  3002
			 GCallback     c_handler,
sl@0
  3003
			 gpointer      gobject,
sl@0
  3004
			 GConnectFlags connect_flags)
sl@0
  3005
{
sl@0
  3006
  g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (instance), 0);
sl@0
  3007
  g_return_val_if_fail (detailed_signal != NULL, 0);
sl@0
  3008
  g_return_val_if_fail (c_handler != NULL, 0);
sl@0
  3009
sl@0
  3010
  if (gobject)
sl@0
  3011
    {
sl@0
  3012
      GClosure *closure;
sl@0
  3013
sl@0
  3014
      g_return_val_if_fail (G_IS_OBJECT (gobject), 0);
sl@0
  3015
sl@0
  3016
      closure = ((connect_flags & G_CONNECT_SWAPPED) ? g_cclosure_new_object_swap : g_cclosure_new_object) (c_handler, gobject);
sl@0
  3017
sl@0
  3018
      return g_signal_connect_closure (instance, detailed_signal, closure, connect_flags & G_CONNECT_AFTER);
sl@0
  3019
    }
sl@0
  3020
  else
sl@0
  3021
    return g_signal_connect_data (instance, detailed_signal, c_handler, NULL, NULL, connect_flags);
sl@0
  3022
}
sl@0
  3023
sl@0
  3024
typedef struct {
sl@0
  3025
  GObject  *object;
sl@0
  3026
  guint     n_closures;
sl@0
  3027
  GClosure *closures[1]; /* flexible array */
sl@0
  3028
} CArray;
sl@0
  3029
/* don't change this structure without supplying an accessor for
sl@0
  3030
 * watched closures, e.g.:
sl@0
  3031
 * GSList* g_object_list_watched_closures (GObject *object)
sl@0
  3032
 * {
sl@0
  3033
 *   CArray *carray;
sl@0
  3034
 *   g_return_val_if_fail (G_IS_OBJECT (object), NULL);
sl@0
  3035
 *   carray = g_object_get_data (object, "GObject-closure-array");
sl@0
  3036
 *   if (carray)
sl@0
  3037
 *     {
sl@0
  3038
 *       GSList *slist = NULL;
sl@0
  3039
 *       guint i;
sl@0
  3040
 *       for (i = 0; i < carray->n_closures; i++)
sl@0
  3041
 *         slist = g_slist_prepend (slist, carray->closures[i]);
sl@0
  3042
 *       return slist;
sl@0
  3043
 *     }
sl@0
  3044
 *   return NULL;
sl@0
  3045
 * }
sl@0
  3046
 */
sl@0
  3047
sl@0
  3048
static void
sl@0
  3049
object_remove_closure (gpointer  data,
sl@0
  3050
		       GClosure *closure)
sl@0
  3051
{
sl@0
  3052
  GObject *object = data;
sl@0
  3053
  CArray *carray = g_object_get_qdata (object, quark_closure_array);
sl@0
  3054
  guint i;
sl@0
  3055
  
sl@0
  3056
  for (i = 0; i < carray->n_closures; i++)
sl@0
  3057
    if (carray->closures[i] == closure)
sl@0
  3058
      {
sl@0
  3059
	carray->n_closures--;
sl@0
  3060
	if (i < carray->n_closures)
sl@0
  3061
	  carray->closures[i] = carray->closures[carray->n_closures];
sl@0
  3062
	return;
sl@0
  3063
      }
sl@0
  3064
  g_assert_not_reached ();
sl@0
  3065
}
sl@0
  3066
sl@0
  3067
static void
sl@0
  3068
destroy_closure_array (gpointer data)
sl@0
  3069
{
sl@0
  3070
  CArray *carray = data;
sl@0
  3071
  GObject *object = carray->object;
sl@0
  3072
  guint i, n = carray->n_closures;
sl@0
  3073
  
sl@0
  3074
  for (i = 0; i < n; i++)
sl@0
  3075
    {
sl@0
  3076
      GClosure *closure = carray->closures[i];
sl@0
  3077
      
sl@0
  3078
      /* removing object_remove_closure() upfront is probably faster than
sl@0
  3079
       * letting it fiddle with quark_closure_array which is empty anyways
sl@0
  3080
       */
sl@0
  3081
      g_closure_remove_invalidate_notifier (closure, object, object_remove_closure);
sl@0
  3082
      g_closure_invalidate (closure);
sl@0
  3083
    }
sl@0
  3084
  g_free (carray);
sl@0
  3085
}
sl@0
  3086
sl@0
  3087
/**
sl@0
  3088
 * g_object_watch_closure:
sl@0
  3089
 * @object: GObject restricting lifetime of @closure
sl@0
  3090
 * @closure: GClosure to watch
sl@0
  3091
 *
sl@0
  3092
 * This function essentially limits the life time of the @closure to
sl@0
  3093
 * the life time of the object. That is, when the object is finalized,
sl@0
  3094
 * the @closure is invalidated by calling g_closure_invalidate() on
sl@0
  3095
 * it, in order to prevent invocations of the closure with a finalized
sl@0
  3096
 * (nonexisting) object. Also, g_object_ref() and g_object_unref() are
sl@0
  3097
 * added as marshal guards to the @closure, to ensure that an extra
sl@0
  3098
 * reference count is held on @object during invocation of the
sl@0
  3099
 * @closure.  Usually, this function will be called on closures that
sl@0
  3100
 * use this @object as closure data.
sl@0
  3101
 */
sl@0
  3102
EXPORT_C void
sl@0
  3103
g_object_watch_closure (GObject  *object,
sl@0
  3104
			GClosure *closure)
sl@0
  3105
{
sl@0
  3106
  CArray *carray;
sl@0
  3107
  guint i;
sl@0
  3108
  
sl@0
  3109
  g_return_if_fail (G_IS_OBJECT (object));
sl@0
  3110
  g_return_if_fail (closure != NULL);
sl@0
  3111
  g_return_if_fail (closure->is_invalid == FALSE);
sl@0
  3112
  g_return_if_fail (closure->in_marshal == FALSE);
sl@0
  3113
  g_return_if_fail (object->ref_count > 0);	/* this doesn't work on finalizing objects */
sl@0
  3114
  
sl@0
  3115
  g_closure_add_invalidate_notifier (closure, object, object_remove_closure);
sl@0
  3116
  g_closure_add_marshal_guards (closure,
sl@0
  3117
				object, (GClosureNotify) g_object_ref,
sl@0
  3118
				object, (GClosureNotify) g_object_unref);
sl@0
  3119
  carray = g_datalist_id_remove_no_notify (&object->qdata, quark_closure_array);
sl@0
  3120
  if (!carray)
sl@0
  3121
    {
sl@0
  3122
      carray = g_renew (CArray, NULL, 1);
sl@0
  3123
      carray->object = object;
sl@0
  3124
      carray->n_closures = 1;
sl@0
  3125
      i = 0;
sl@0
  3126
    }
sl@0
  3127
  else
sl@0
  3128
    {
sl@0
  3129
      i = carray->n_closures++;
sl@0
  3130
      carray = g_realloc (carray, sizeof (*carray) + sizeof (carray->closures[0]) * i);
sl@0
  3131
    }
sl@0
  3132
  carray->closures[i] = closure;
sl@0
  3133
  g_datalist_id_set_data_full (&object->qdata, quark_closure_array, carray, destroy_closure_array);
sl@0
  3134
}
sl@0
  3135
sl@0
  3136
/**
sl@0
  3137
 * g_closure_new_object:
sl@0
  3138
 * @sizeof_closure: the size of the structure to allocate, must be at least
sl@0
  3139
 *  <literal>sizeof (GClosure)</literal>
sl@0
  3140
 * @object: a #GObject pointer to store in the @data field of the newly
sl@0
  3141
 *  allocated #GClosure
sl@0
  3142
 *
sl@0
  3143
 * A variant of g_closure_new_simple() which stores @object in the
sl@0
  3144
 * @data field of the closure and calls g_object_watch_closure() on
sl@0
  3145
 * @object and the created closure. This function is mainly useful
sl@0
  3146
 * when implementing new types of closures.
sl@0
  3147
 *
sl@0
  3148
 * Returns: a newly allocated #GClosure
sl@0
  3149
 */
sl@0
  3150
EXPORT_C GClosure*
sl@0
  3151
g_closure_new_object (guint    sizeof_closure,
sl@0
  3152
		      GObject *object)
sl@0
  3153
{
sl@0
  3154
  GClosure *closure;
sl@0
  3155
sl@0
  3156
  g_return_val_if_fail (G_IS_OBJECT (object), NULL);
sl@0
  3157
  g_return_val_if_fail (object->ref_count > 0, NULL);     /* this doesn't work on finalizing objects */
sl@0
  3158
sl@0
  3159
  closure = g_closure_new_simple (sizeof_closure, object);
sl@0
  3160
  g_object_watch_closure (object, closure);
sl@0
  3161
sl@0
  3162
  return closure;
sl@0
  3163
}
sl@0
  3164
sl@0
  3165
/**
sl@0
  3166
 * g_cclosure_new_object:
sl@0
  3167
 * @callback_func: the function to invoke
sl@0
  3168
 * @object: a #GObject pointer to pass to @callback_func
sl@0
  3169
 *
sl@0
  3170
 * A variant of g_cclosure_new() which uses @object as @user_data and
sl@0
  3171
 * calls g_object_watch_closure() on @object and the created
sl@0
  3172
 * closure. This function is useful when you have a callback closely
sl@0
  3173
 * associated with a #GObject, and want the callback to no longer run
sl@0
  3174
 * after the object is is freed.
sl@0
  3175
 *
sl@0
  3176
 * Returns: a new #GCClosure
sl@0
  3177
 */
sl@0
  3178
EXPORT_C GClosure*
sl@0
  3179
g_cclosure_new_object (GCallback callback_func,
sl@0
  3180
		       GObject  *object)
sl@0
  3181
{
sl@0
  3182
  GClosure *closure;
sl@0
  3183
sl@0
  3184
  g_return_val_if_fail (G_IS_OBJECT (object), NULL);
sl@0
  3185
  g_return_val_if_fail (object->ref_count > 0, NULL);     /* this doesn't work on finalizing objects */
sl@0
  3186
  g_return_val_if_fail (callback_func != NULL, NULL);
sl@0
  3187
sl@0
  3188
  closure = g_cclosure_new (callback_func, object, NULL);
sl@0
  3189
  g_object_watch_closure (object, closure);
sl@0
  3190
sl@0
  3191
  return closure;
sl@0
  3192
}
sl@0
  3193
sl@0
  3194
/**
sl@0
  3195
 * g_cclosure_new_object_swap:
sl@0
  3196
 * @callback_func: the function to invoke
sl@0
  3197
 * @object: a #GObject pointer to pass to @callback_func
sl@0
  3198
 *
sl@0
  3199
 * A variant of g_cclosure_new_swap() which uses @object as @user_data
sl@0
  3200
 * and calls g_object_watch_closure() on @object and the created
sl@0
  3201
 * closure. This function is useful when you have a callback closely
sl@0
  3202
 * associated with a #GObject, and want the callback to no longer run
sl@0
  3203
 * after the object is is freed.
sl@0
  3204
 *
sl@0
  3205
 * Returns: a new #GCClosure
sl@0
  3206
 */
sl@0
  3207
EXPORT_C GClosure*
sl@0
  3208
g_cclosure_new_object_swap (GCallback callback_func,
sl@0
  3209
			    GObject  *object)
sl@0
  3210
{
sl@0
  3211
  GClosure *closure;
sl@0
  3212
sl@0
  3213
  g_return_val_if_fail (G_IS_OBJECT (object), NULL);
sl@0
  3214
  g_return_val_if_fail (object->ref_count > 0, NULL);     /* this doesn't work on finalizing objects */
sl@0
  3215
  g_return_val_if_fail (callback_func != NULL, NULL);
sl@0
  3216
sl@0
  3217
  closure = g_cclosure_new_swap (callback_func, object, NULL);
sl@0
  3218
  g_object_watch_closure (object, closure);
sl@0
  3219
sl@0
  3220
  return closure;
sl@0
  3221
}
sl@0
  3222
sl@0
  3223
EXPORT_C gsize
sl@0
  3224
g_object_compat_control (gsize           what,
sl@0
  3225
                         gpointer        data)
sl@0
  3226
{
sl@0
  3227
  switch (what)
sl@0
  3228
    {
sl@0
  3229
      gpointer *pp;
sl@0
  3230
    case 1:     /* floating base type */
sl@0
  3231
      return G_TYPE_INITIALLY_UNOWNED;
sl@0
  3232
    case 2:     /* FIXME: remove this once GLib/Gtk+ break ABI again */
sl@0
  3233
      floating_flag_handler = (guint(*)(GObject*,gint)) data;
sl@0
  3234
      return 1;
sl@0
  3235
    case 3:     /* FIXME: remove this once GLib/Gtk+ break ABI again */
sl@0
  3236
      pp = data;
sl@0
  3237
      *pp = (gpointer)floating_flag_handler;
sl@0
  3238
      return 1;
sl@0
  3239
    default:
sl@0
  3240
      return 0;
sl@0
  3241
    }
sl@0
  3242
}
sl@0
  3243
sl@0
  3244
G_DEFINE_TYPE (GInitiallyUnowned, g_initially_unowned, G_TYPE_OBJECT);
sl@0
  3245
sl@0
  3246
static void
sl@0
  3247
g_initially_unowned_init (GInitiallyUnowned *object)
sl@0
  3248
{
sl@0
  3249
  g_object_force_floating (object);
sl@0
  3250
}
sl@0
  3251
sl@0
  3252
static void
sl@0
  3253
g_initially_unowned_class_init (GInitiallyUnownedClass *klass)
sl@0
  3254
{
sl@0
  3255
}
sl@0
  3256
sl@0
  3257
#define __G_OBJECT_C__
sl@0
  3258
#include "gobjectaliasdef.c"