os/ossrv/glib/gobject/gclosure.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) 2000-2001 Red Hat, Inc.
sl@0
     3
 * Copyright (C) 2005 Imendio AB
sl@0
     4
 * Portions copyright (c) 2006-2009 Nokia Corporation.  All rights reserved.
sl@0
     5
 *
sl@0
     6
 * This library is free software; you can redistribute it and/or
sl@0
     7
 * modify it under the terms of the GNU Lesser General Public
sl@0
     8
 * License as published by the Free Software Foundation; either
sl@0
     9
 * version 2 of the License, or (at your option) any later version.
sl@0
    10
 *
sl@0
    11
 * This library is distributed in the hope that it will be useful,
sl@0
    12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
sl@0
    14
 * Lesser General Public License for more details.
sl@0
    15
 *
sl@0
    16
 * You should have received a copy of the GNU Lesser General
sl@0
    17
 * Public License along with this library; if not, write to the
sl@0
    18
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
sl@0
    19
 * Boston, MA 02111-1307, USA.
sl@0
    20
 */
sl@0
    21
sl@0
    22
/*
sl@0
    23
 * MT safe with regards to reference counting.
sl@0
    24
 */
sl@0
    25
sl@0
    26
#include "config.h"
sl@0
    27
sl@0
    28
#include <string.h>
sl@0
    29
sl@0
    30
#include "gclosure.h"
sl@0
    31
#include "gvalue.h"
sl@0
    32
#include "gobjectalias.h"
sl@0
    33
sl@0
    34
sl@0
    35
/**
sl@0
    36
 * SECTION:gclosure
sl@0
    37
 * @short_description: Functions as first-class objects
sl@0
    38
 * @title: Closures
sl@0
    39
 *
sl@0
    40
 * A #GClosure represents a callback supplied by the programmer. It
sl@0
    41
 * will generally comprise a function of some kind and a marshaller
sl@0
    42
 * used to call it. It is the reponsibility of the marshaller to
sl@0
    43
 * convert the arguments for the invocation from #GValue<!-- -->s into
sl@0
    44
 * a suitable form, perform the callback on the converted arguments,
sl@0
    45
 * and transform the return value back into a #GValue.
sl@0
    46
 *
sl@0
    47
 * In the case of C programs, a closure usually just holds a pointer
sl@0
    48
 * to a function and maybe a data argument, and the marshaller
sl@0
    49
 * converts between #GValue<!-- --> and native C types. The GObject
sl@0
    50
 * library provides the #GCClosure type for this purpose. Bindings for
sl@0
    51
 * other languages need marshallers which convert between #GValue<!--
sl@0
    52
 * -->s and suitable representations in the runtime of the language in
sl@0
    53
 * order to use functions written in that languages as callbacks.
sl@0
    54
 *
sl@0
    55
 * Within GObject, closures play an important role in the
sl@0
    56
 * implementation of signals. When a signal is registered, the
sl@0
    57
 * @c_marshaller argument to g_signal_new() specifies the default C
sl@0
    58
 * marshaller for any closure which is connected to this
sl@0
    59
 * signal. GObject provides a number of C marshallers for this
sl@0
    60
 * purpose, see the g_cclosure_marshal_*() functions. Additional C
sl@0
    61
 * marshallers can be generated with the <link
sl@0
    62
 * linkend="glib-genmarshal">glib-genmarshal</link> utility.  Closures
sl@0
    63
 * can be explicitly connected to signals with
sl@0
    64
 * g_signal_connect_closure(), but it usually more convenient to let
sl@0
    65
 * GObject create a closure automatically by using one of the
sl@0
    66
 * g_signal_connect_*() functions which take a callback function/user
sl@0
    67
 * data pair.
sl@0
    68
 *
sl@0
    69
 * Using closures has a number of important advantages over a simple
sl@0
    70
 * callback function/data pointer combination:
sl@0
    71
 * <itemizedlist>
sl@0
    72
 * <listitem><para>
sl@0
    73
 * Closures allow the callee to get the types of the callback parameters,
sl@0
    74
 * which means that language bindings don't have to write individual glue
sl@0
    75
 * for each callback type.
sl@0
    76
 * </para></listitem>
sl@0
    77
 * <listitem><para>
sl@0
    78
 * The reference counting of #GClosure makes it easy to handle reentrancy
sl@0
    79
 * right; if a callback is removed while it is being invoked, the closure
sl@0
    80
 * and its parameters won't be freed until the invocation finishes.
sl@0
    81
 * </para></listitem>
sl@0
    82
 * <listitem><para>
sl@0
    83
 * g_closure_invalidate() and invalidation notifiers allow callbacks to be
sl@0
    84
 * automatically removed when the objects they point to go away.
sl@0
    85
 * </para></listitem>
sl@0
    86
 * </itemizedlist>
sl@0
    87
 */
sl@0
    88
sl@0
    89
sl@0
    90
#define	CLOSURE_MAX_REF_COUNT		((1 << 15) - 1)
sl@0
    91
#define	CLOSURE_MAX_N_GUARDS		((1 << 1) - 1)
sl@0
    92
#define	CLOSURE_MAX_N_FNOTIFIERS	((1 << 2) - 1)
sl@0
    93
#define	CLOSURE_MAX_N_INOTIFIERS	((1 << 8) - 1)
sl@0
    94
#define	CLOSURE_N_MFUNCS(cl)		((cl)->meta_marshal + \
sl@0
    95
                                         ((cl)->n_guards << 1L))
sl@0
    96
/* same as G_CLOSURE_N_NOTIFIERS() (keep in sync) */
sl@0
    97
#define	CLOSURE_N_NOTIFIERS(cl)		(CLOSURE_N_MFUNCS (cl) + \
sl@0
    98
                                         (cl)->n_fnotifiers + \
sl@0
    99
                                         (cl)->n_inotifiers)
sl@0
   100
sl@0
   101
typedef union {
sl@0
   102
  GClosure closure;
sl@0
   103
  volatile gint vint;
sl@0
   104
} ClosureInt;
sl@0
   105
sl@0
   106
#define CHANGE_FIELD(_closure, _field, _OP, _value, _must_set, _SET_OLD, _SET_NEW)      \
sl@0
   107
G_STMT_START {                                                                          \
sl@0
   108
  ClosureInt *cunion = (ClosureInt*) _closure;                 		                \
sl@0
   109
  gint new_int, old_int, success;                              		                \
sl@0
   110
  do                                                    		                \
sl@0
   111
    {                                                   		                \
sl@0
   112
      ClosureInt tmp;                                   		                \
sl@0
   113
      tmp.vint = old_int = cunion->vint;                		                \
sl@0
   114
      _SET_OLD tmp.closure._field;                                                      \
sl@0
   115
      tmp.closure._field _OP _value;                      		                \
sl@0
   116
      _SET_NEW tmp.closure._field;                                                      \
sl@0
   117
      new_int = tmp.vint;                               		                \
sl@0
   118
      success = g_atomic_int_compare_and_exchange (&cunion->vint, old_int, new_int);    \
sl@0
   119
    }                                                   		                \
sl@0
   120
  while (!success && _must_set);                                                        \
sl@0
   121
} G_STMT_END
sl@0
   122
sl@0
   123
#define SWAP(_closure, _field, _value, _oldv)   CHANGE_FIELD (_closure, _field, =, _value, TRUE, *(_oldv) =,     (void) )
sl@0
   124
#define SET(_closure, _field, _value)           CHANGE_FIELD (_closure, _field, =, _value, TRUE,     (void),     (void) )
sl@0
   125
#define INC(_closure, _field)                   CHANGE_FIELD (_closure, _field, +=,     1, TRUE,     (void),     (void) )
sl@0
   126
#define INC_ASSIGN(_closure, _field, _newv)     CHANGE_FIELD (_closure, _field, +=,     1, TRUE,     (void), *(_newv) = )
sl@0
   127
#define DEC(_closure, _field)                   CHANGE_FIELD (_closure, _field, -=,     1, TRUE,     (void),     (void) )
sl@0
   128
#define DEC_ASSIGN(_closure, _field, _newv)     CHANGE_FIELD (_closure, _field, -=,     1, TRUE,     (void), *(_newv) = )
sl@0
   129
sl@0
   130
#if 0   /* for non-thread-safe closures */
sl@0
   131
#define SWAP(cl,f,v,o)     (void) (*(o) = cl->f, cl->f = v)
sl@0
   132
#define SET(cl,f,v)        (void) (cl->f = v)
sl@0
   133
#define INC(cl,f)          (void) (cl->f += 1)
sl@0
   134
#define INC_ASSIGN(cl,f,n) (void) (cl->f += 1, *(n) = cl->f)
sl@0
   135
#define DEC(cl,f)          (void) (cl->f -= 1)
sl@0
   136
#define DEC_ASSIGN(cl,f,n) (void) (cl->f -= 1, *(n) = cl->f)
sl@0
   137
#endif
sl@0
   138
sl@0
   139
enum {
sl@0
   140
  FNOTIFY,
sl@0
   141
  INOTIFY,
sl@0
   142
  PRE_NOTIFY,
sl@0
   143
  POST_NOTIFY
sl@0
   144
};
sl@0
   145
sl@0
   146
sl@0
   147
/* --- functions --- */
sl@0
   148
/**
sl@0
   149
 * g_closure_new_simple:
sl@0
   150
 * @sizeof_closure: the size of the structure to allocate, must be at least
sl@0
   151
 *                  <literal>sizeof (GClosure)</literal>
sl@0
   152
 * @data: data to store in the @data field of the newly allocated #GClosure
sl@0
   153
 *
sl@0
   154
 * Allocates a struct of the given size and initializes the initial
sl@0
   155
 * part as a #GClosure. This function is mainly useful when
sl@0
   156
 * implementing new types of closures.
sl@0
   157
 *
sl@0
   158
 * |[
sl@0
   159
 * typedef struct _MyClosure MyClosure;
sl@0
   160
 * struct _MyClosure
sl@0
   161
 * {
sl@0
   162
 *   GClosure closure;
sl@0
   163
 *   // extra data goes here
sl@0
   164
 * };
sl@0
   165
 *
sl@0
   166
 * static void
sl@0
   167
 * my_closure_finalize (gpointer  notify_data,
sl@0
   168
 *                      GClosure *closure)
sl@0
   169
 * {
sl@0
   170
 *   MyClosure *my_closure = (MyClosure *)closure;
sl@0
   171
 *
sl@0
   172
 *   // free extra data here
sl@0
   173
 * }
sl@0
   174
 *
sl@0
   175
 * MyClosure *my_closure_new (gpointer data)
sl@0
   176
 * {
sl@0
   177
 *   GClosure *closure;
sl@0
   178
 *   MyClosure *my_closure;
sl@0
   179
 *
sl@0
   180
 *   closure = g_closure_new_simple (sizeof (MyClosure), data);
sl@0
   181
 *   my_closure = (MyClosure *) closure;
sl@0
   182
 *
sl@0
   183
 *   // initialize extra data here
sl@0
   184
 *
sl@0
   185
 *   g_closure_add_finalize_notifier (closure, notify_data,
sl@0
   186
 *                                    my_closure_finalize);
sl@0
   187
 *   return my_closure;
sl@0
   188
 * }
sl@0
   189
 * ]|
sl@0
   190
 *
sl@0
   191
 * Returns: a newly allocated #GClosure
sl@0
   192
 */
sl@0
   193
EXPORT_C GClosure*
sl@0
   194
g_closure_new_simple (guint           sizeof_closure,
sl@0
   195
		      gpointer        data)
sl@0
   196
{
sl@0
   197
  GClosure *closure;
sl@0
   198
sl@0
   199
  g_return_val_if_fail (sizeof_closure >= sizeof (GClosure), NULL);
sl@0
   200
sl@0
   201
  closure = g_malloc0 (sizeof_closure);
sl@0
   202
  SET (closure, ref_count, 1);
sl@0
   203
  SET (closure, meta_marshal, 0);
sl@0
   204
  SET (closure, n_guards, 0);
sl@0
   205
  SET (closure, n_fnotifiers, 0);
sl@0
   206
  SET (closure, n_inotifiers, 0);
sl@0
   207
  SET (closure, in_inotify, FALSE);
sl@0
   208
  SET (closure, floating, TRUE);
sl@0
   209
  SET (closure, derivative_flag, 0);
sl@0
   210
  SET (closure, in_marshal, FALSE);
sl@0
   211
  SET (closure, is_invalid, FALSE);
sl@0
   212
  closure->marshal = NULL;
sl@0
   213
  closure->data = data;
sl@0
   214
  closure->notifiers = NULL;
sl@0
   215
  memset (G_STRUCT_MEMBER_P (closure, sizeof (*closure)), 0, sizeof_closure - sizeof (*closure));
sl@0
   216
sl@0
   217
  return closure;
sl@0
   218
}
sl@0
   219
sl@0
   220
static inline void
sl@0
   221
closure_invoke_notifiers (GClosure *closure,
sl@0
   222
			  guint     notify_type)
sl@0
   223
{
sl@0
   224
  /* notifier layout:
sl@0
   225
   *     meta_marshal  n_guards    n_guards     n_fnotif.  n_inotifiers
sl@0
   226
   * ->[[meta_marshal][pre_guards][post_guards][fnotifiers][inotifiers]]
sl@0
   227
   *
sl@0
   228
   * CLOSURE_N_MFUNCS(cl)    = meta_marshal + n_guards + n_guards;
sl@0
   229
   * CLOSURE_N_NOTIFIERS(cl) = CLOSURE_N_MFUNCS(cl) + n_fnotifiers + n_inotifiers
sl@0
   230
   *
sl@0
   231
   * constrains/catches:
sl@0
   232
   * - closure->notifiers may be reloacted during callback
sl@0
   233
   * - closure->n_fnotifiers and closure->n_inotifiers may change during callback
sl@0
   234
   * - i.e. callbacks can be removed/added during invocation
sl@0
   235
   * - must prepare for callback removal during FNOTIFY and INOTIFY (done via ->marshal= & ->data=)
sl@0
   236
   * - must distinguish (->marshal= & ->data=) for INOTIFY vs. FNOTIFY (via ->in_inotify)
sl@0
   237
   * + closure->n_guards is const during PRE_NOTIFY & POST_NOTIFY
sl@0
   238
   * + closure->meta_marshal is const for all cases
sl@0
   239
   * + none of the callbacks can cause recursion
sl@0
   240
   * + closure->n_inotifiers is const 0 during FNOTIFY
sl@0
   241
   */
sl@0
   242
  switch (notify_type)
sl@0
   243
    {
sl@0
   244
      GClosureNotifyData *ndata;
sl@0
   245
      guint i, offs;
sl@0
   246
    case FNOTIFY:
sl@0
   247
      while (closure->n_fnotifiers)
sl@0
   248
	{
sl@0
   249
          guint n;
sl@0
   250
	  DEC_ASSIGN (closure, n_fnotifiers, &n);
sl@0
   251
sl@0
   252
	  ndata = closure->notifiers + CLOSURE_N_MFUNCS (closure) + n;
sl@0
   253
	  closure->marshal = (GClosureMarshal) ndata->notify;
sl@0
   254
	  closure->data = ndata->data;
sl@0
   255
	  ndata->notify (ndata->data, closure);
sl@0
   256
	}
sl@0
   257
      closure->marshal = NULL;
sl@0
   258
      closure->data = NULL;
sl@0
   259
      break;
sl@0
   260
    case INOTIFY:
sl@0
   261
      SET (closure, in_inotify, TRUE);
sl@0
   262
      while (closure->n_inotifiers)
sl@0
   263
	{
sl@0
   264
          guint n;
sl@0
   265
          DEC_ASSIGN (closure, n_inotifiers, &n);
sl@0
   266
sl@0
   267
	  ndata = closure->notifiers + CLOSURE_N_MFUNCS (closure) + closure->n_fnotifiers + n;
sl@0
   268
	  closure->marshal = (GClosureMarshal) ndata->notify;
sl@0
   269
	  closure->data = ndata->data;
sl@0
   270
	  ndata->notify (ndata->data, closure);
sl@0
   271
	}
sl@0
   272
      closure->marshal = NULL;
sl@0
   273
      closure->data = NULL;
sl@0
   274
      SET (closure, in_inotify, FALSE);
sl@0
   275
      break;
sl@0
   276
    case PRE_NOTIFY:
sl@0
   277
      i = closure->n_guards;
sl@0
   278
      offs = closure->meta_marshal;
sl@0
   279
      while (i--)
sl@0
   280
	{
sl@0
   281
	  ndata = closure->notifiers + offs + i;
sl@0
   282
	  ndata->notify (ndata->data, closure);
sl@0
   283
	}
sl@0
   284
      break;
sl@0
   285
    case POST_NOTIFY:
sl@0
   286
      i = closure->n_guards;
sl@0
   287
      offs = closure->meta_marshal + i;
sl@0
   288
      while (i--)
sl@0
   289
	{
sl@0
   290
	  ndata = closure->notifiers + offs + i;
sl@0
   291
	  ndata->notify (ndata->data, closure);
sl@0
   292
	}
sl@0
   293
      break;
sl@0
   294
    }
sl@0
   295
}
sl@0
   296
sl@0
   297
/**
sl@0
   298
 * g_closure_set_meta_marshal:
sl@0
   299
 * @closure: a #GClosure
sl@0
   300
 * @marshal_data: context-dependent data to pass to @meta_marshal
sl@0
   301
 * @meta_marshal: a #GClosureMarshal function
sl@0
   302
 *
sl@0
   303
 * Sets the meta marshaller of @closure.  A meta marshaller wraps
sl@0
   304
 * @closure->marshal and modifies the way it is called in some
sl@0
   305
 * fashion. The most common use of this facility is for C callbacks.
sl@0
   306
 * The same marshallers (generated by <link
sl@0
   307
 * linkend="glib-genmarshal">glib-genmarshal</link>) are used
sl@0
   308
 * everywhere, but the way that we get the callback function
sl@0
   309
 * differs. In most cases we want to use @closure->callback, but in
sl@0
   310
 * other cases we want to use some different technique to retrieve the
sl@0
   311
 * callback function.
sl@0
   312
 *
sl@0
   313
 * For example, class closures for signals (see
sl@0
   314
 * g_signal_type_cclosure_new()) retrieve the callback function from a
sl@0
   315
 * fixed offset in the class structure.  The meta marshaller retrieves
sl@0
   316
 * the right callback and passes it to the marshaller as the
sl@0
   317
 * @marshal_data argument.
sl@0
   318
 */
sl@0
   319
EXPORT_C void
sl@0
   320
g_closure_set_meta_marshal (GClosure       *closure,
sl@0
   321
			    gpointer        marshal_data,
sl@0
   322
			    GClosureMarshal meta_marshal)
sl@0
   323
{
sl@0
   324
  GClosureNotifyData *notifiers;
sl@0
   325
sl@0
   326
  g_return_if_fail (closure != NULL);
sl@0
   327
  g_return_if_fail (meta_marshal != NULL);
sl@0
   328
  g_return_if_fail (closure->is_invalid == FALSE);
sl@0
   329
  g_return_if_fail (closure->in_marshal == FALSE);
sl@0
   330
  g_return_if_fail (closure->meta_marshal == 0);
sl@0
   331
sl@0
   332
  notifiers = closure->notifiers;
sl@0
   333
  closure->notifiers = g_renew (GClosureNotifyData, NULL, CLOSURE_N_NOTIFIERS (closure) + 1);
sl@0
   334
  if (notifiers)
sl@0
   335
    {
sl@0
   336
      /* usually the meta marshal will be setup right after creation, so the
sl@0
   337
       * g_memmove() should be rare-case scenario
sl@0
   338
       */
sl@0
   339
      g_memmove (closure->notifiers + 1, notifiers, CLOSURE_N_NOTIFIERS (closure) * sizeof (notifiers[0]));
sl@0
   340
      g_free (notifiers);
sl@0
   341
    }
sl@0
   342
  closure->notifiers[0].data = marshal_data;
sl@0
   343
  closure->notifiers[0].notify = (GClosureNotify) meta_marshal;
sl@0
   344
  SET (closure, meta_marshal, 1);
sl@0
   345
}
sl@0
   346
sl@0
   347
/**
sl@0
   348
 * g_closure_add_marshal_guards:
sl@0
   349
 * @closure: a #GClosure
sl@0
   350
 * @pre_marshal_data: data to pass to @pre_marshal_notify
sl@0
   351
 * @pre_marshal_notify: a function to call before the closure callback
sl@0
   352
 * @post_marshal_data: data to pass to @post_marshal_notify
sl@0
   353
 * @post_marshal_notify: a function to call after the closure callback
sl@0
   354
 *
sl@0
   355
 * Adds a pair of notifiers which get invoked before and after the
sl@0
   356
 * closure callback, respectively. This is typically used to protect
sl@0
   357
 * the extra arguments for the duration of the callback. See
sl@0
   358
 * g_object_watch_closure() for an example of marshal guards.
sl@0
   359
 */
sl@0
   360
EXPORT_C void
sl@0
   361
g_closure_add_marshal_guards (GClosure      *closure,
sl@0
   362
			      gpointer       pre_marshal_data,
sl@0
   363
			      GClosureNotify pre_marshal_notify,
sl@0
   364
			      gpointer       post_marshal_data,
sl@0
   365
			      GClosureNotify post_marshal_notify)
sl@0
   366
{
sl@0
   367
  guint i;
sl@0
   368
sl@0
   369
  g_return_if_fail (closure != NULL);
sl@0
   370
  g_return_if_fail (pre_marshal_notify != NULL);
sl@0
   371
  g_return_if_fail (post_marshal_notify != NULL);
sl@0
   372
  g_return_if_fail (closure->is_invalid == FALSE);
sl@0
   373
  g_return_if_fail (closure->in_marshal == FALSE);
sl@0
   374
  g_return_if_fail (closure->n_guards < CLOSURE_MAX_N_GUARDS);
sl@0
   375
sl@0
   376
  closure->notifiers = g_renew (GClosureNotifyData, closure->notifiers, CLOSURE_N_NOTIFIERS (closure) + 2);
sl@0
   377
  if (closure->n_inotifiers)
sl@0
   378
    closure->notifiers[(CLOSURE_N_MFUNCS (closure) +
sl@0
   379
			closure->n_fnotifiers +
sl@0
   380
			closure->n_inotifiers + 1)] = closure->notifiers[(CLOSURE_N_MFUNCS (closure) +
sl@0
   381
									  closure->n_fnotifiers + 0)];
sl@0
   382
  if (closure->n_inotifiers > 1)
sl@0
   383
    closure->notifiers[(CLOSURE_N_MFUNCS (closure) +
sl@0
   384
			closure->n_fnotifiers +
sl@0
   385
			closure->n_inotifiers)] = closure->notifiers[(CLOSURE_N_MFUNCS (closure) +
sl@0
   386
								      closure->n_fnotifiers + 1)];
sl@0
   387
  if (closure->n_fnotifiers)
sl@0
   388
    closure->notifiers[(CLOSURE_N_MFUNCS (closure) +
sl@0
   389
			closure->n_fnotifiers + 1)] = closure->notifiers[CLOSURE_N_MFUNCS (closure) + 0];
sl@0
   390
  if (closure->n_fnotifiers > 1)
sl@0
   391
    closure->notifiers[(CLOSURE_N_MFUNCS (closure) +
sl@0
   392
			closure->n_fnotifiers)] = closure->notifiers[CLOSURE_N_MFUNCS (closure) + 1];
sl@0
   393
  if (closure->n_guards)
sl@0
   394
    closure->notifiers[(closure->meta_marshal +
sl@0
   395
			closure->n_guards +
sl@0
   396
			closure->n_guards + 1)] = closure->notifiers[closure->meta_marshal + closure->n_guards];
sl@0
   397
  i = closure->n_guards;
sl@0
   398
  closure->notifiers[closure->meta_marshal + i].data = pre_marshal_data;
sl@0
   399
  closure->notifiers[closure->meta_marshal + i].notify = pre_marshal_notify;
sl@0
   400
  closure->notifiers[closure->meta_marshal + i + 1].data = post_marshal_data;
sl@0
   401
  closure->notifiers[closure->meta_marshal + i + 1].notify = post_marshal_notify;
sl@0
   402
  INC (closure, n_guards);
sl@0
   403
}
sl@0
   404
sl@0
   405
/**
sl@0
   406
 * g_closure_add_finalize_notifier:
sl@0
   407
 * @closure: a #GClosure
sl@0
   408
 * @notify_data: data to pass to @notify_func
sl@0
   409
 * @notify_func: the callback function to register
sl@0
   410
 *
sl@0
   411
 * Registers a finalization notifier which will be called when the
sl@0
   412
 * reference count of @closure goes down to 0. Multiple finalization
sl@0
   413
 * notifiers on a single closure are invoked in unspecified order. If
sl@0
   414
 * a single call to g_closure_unref() results in the closure being
sl@0
   415
 * both invalidated and finalized, then the invalidate notifiers will
sl@0
   416
 * be run before the finalize notifiers.
sl@0
   417
 */
sl@0
   418
EXPORT_C void
sl@0
   419
g_closure_add_finalize_notifier (GClosure      *closure,
sl@0
   420
				 gpointer       notify_data,
sl@0
   421
				 GClosureNotify notify_func)
sl@0
   422
{
sl@0
   423
  guint i;
sl@0
   424
sl@0
   425
  g_return_if_fail (closure != NULL);
sl@0
   426
  g_return_if_fail (notify_func != NULL);
sl@0
   427
  g_return_if_fail (closure->n_fnotifiers < CLOSURE_MAX_N_FNOTIFIERS);
sl@0
   428
sl@0
   429
  closure->notifiers = g_renew (GClosureNotifyData, closure->notifiers, CLOSURE_N_NOTIFIERS (closure) + 1);
sl@0
   430
  if (closure->n_inotifiers)
sl@0
   431
    closure->notifiers[(CLOSURE_N_MFUNCS (closure) +
sl@0
   432
			closure->n_fnotifiers +
sl@0
   433
			closure->n_inotifiers)] = closure->notifiers[(CLOSURE_N_MFUNCS (closure) +
sl@0
   434
								      closure->n_fnotifiers + 0)];
sl@0
   435
  i = CLOSURE_N_MFUNCS (closure) + closure->n_fnotifiers;
sl@0
   436
  closure->notifiers[i].data = notify_data;
sl@0
   437
  closure->notifiers[i].notify = notify_func;
sl@0
   438
  INC (closure, n_fnotifiers);
sl@0
   439
}
sl@0
   440
sl@0
   441
/**
sl@0
   442
 * g_closure_add_invalidate_notifier:
sl@0
   443
 * @closure: a #GClosure
sl@0
   444
 * @notify_data: data to pass to @notify_func
sl@0
   445
 * @notify_func: the callback function to register
sl@0
   446
 *
sl@0
   447
 * Registers an invalidation notifier which will be called when the
sl@0
   448
 * @closure is invalidated with g_closure_invalidate(). Invalidation
sl@0
   449
 * notifiers are invoked before finalization notifiers, in an
sl@0
   450
 * unspecified order.
sl@0
   451
 */
sl@0
   452
EXPORT_C void
sl@0
   453
g_closure_add_invalidate_notifier (GClosure      *closure,
sl@0
   454
				   gpointer       notify_data,
sl@0
   455
				   GClosureNotify notify_func)
sl@0
   456
{
sl@0
   457
  guint i;
sl@0
   458
sl@0
   459
  g_return_if_fail (closure != NULL);
sl@0
   460
  g_return_if_fail (notify_func != NULL);
sl@0
   461
  g_return_if_fail (closure->is_invalid == FALSE);
sl@0
   462
  g_return_if_fail (closure->n_inotifiers < CLOSURE_MAX_N_INOTIFIERS);
sl@0
   463
sl@0
   464
  closure->notifiers = g_renew (GClosureNotifyData, closure->notifiers, CLOSURE_N_NOTIFIERS (closure) + 1);
sl@0
   465
  i = CLOSURE_N_MFUNCS (closure) + closure->n_fnotifiers + closure->n_inotifiers;
sl@0
   466
  closure->notifiers[i].data = notify_data;
sl@0
   467
  closure->notifiers[i].notify = notify_func;
sl@0
   468
  INC (closure, n_inotifiers);
sl@0
   469
}
sl@0
   470
sl@0
   471
static inline gboolean
sl@0
   472
closure_try_remove_inotify (GClosure       *closure,
sl@0
   473
			    gpointer       notify_data,
sl@0
   474
			    GClosureNotify notify_func)
sl@0
   475
{
sl@0
   476
  GClosureNotifyData *ndata, *nlast;
sl@0
   477
sl@0
   478
  nlast = closure->notifiers + CLOSURE_N_NOTIFIERS (closure) - 1;
sl@0
   479
  for (ndata = nlast + 1 - closure->n_inotifiers; ndata <= nlast; ndata++)
sl@0
   480
    if (ndata->notify == notify_func && ndata->data == notify_data)
sl@0
   481
      {
sl@0
   482
	DEC (closure, n_inotifiers);
sl@0
   483
	if (ndata < nlast)
sl@0
   484
	  *ndata = *nlast;
sl@0
   485
sl@0
   486
	return TRUE;
sl@0
   487
      }
sl@0
   488
  return FALSE;
sl@0
   489
}
sl@0
   490
sl@0
   491
static inline gboolean
sl@0
   492
closure_try_remove_fnotify (GClosure       *closure,
sl@0
   493
			    gpointer       notify_data,
sl@0
   494
			    GClosureNotify notify_func)
sl@0
   495
{
sl@0
   496
  GClosureNotifyData *ndata, *nlast;
sl@0
   497
sl@0
   498
  nlast = closure->notifiers + CLOSURE_N_NOTIFIERS (closure) - closure->n_inotifiers - 1;
sl@0
   499
  for (ndata = nlast + 1 - closure->n_fnotifiers; ndata <= nlast; ndata++)
sl@0
   500
    if (ndata->notify == notify_func && ndata->data == notify_data)
sl@0
   501
      {
sl@0
   502
	DEC (closure, n_fnotifiers);
sl@0
   503
	if (ndata < nlast)
sl@0
   504
	  *ndata = *nlast;
sl@0
   505
	if (closure->n_inotifiers)
sl@0
   506
	  closure->notifiers[(CLOSURE_N_MFUNCS (closure) +
sl@0
   507
			      closure->n_fnotifiers)] = closure->notifiers[(CLOSURE_N_MFUNCS (closure) +
sl@0
   508
									    closure->n_fnotifiers +
sl@0
   509
									    closure->n_inotifiers)];
sl@0
   510
	return TRUE;
sl@0
   511
      }
sl@0
   512
  return FALSE;
sl@0
   513
}
sl@0
   514
sl@0
   515
/**
sl@0
   516
 * g_closure_ref:
sl@0
   517
 * @closure: #GClosure to increment the reference count on
sl@0
   518
 *
sl@0
   519
 * Increments the reference count on a closure to force it staying
sl@0
   520
 * alive while the caller holds a pointer to it.
sl@0
   521
 *
sl@0
   522
 * Returns: The @closure passed in, for convenience
sl@0
   523
 */
sl@0
   524
EXPORT_C GClosure*
sl@0
   525
g_closure_ref (GClosure *closure)
sl@0
   526
{
sl@0
   527
  guint new_ref_count;
sl@0
   528
  g_return_val_if_fail (closure != NULL, NULL);
sl@0
   529
  g_return_val_if_fail (closure->ref_count > 0, NULL);
sl@0
   530
  g_return_val_if_fail (closure->ref_count < CLOSURE_MAX_REF_COUNT, NULL);
sl@0
   531
sl@0
   532
  INC_ASSIGN (closure, ref_count, &new_ref_count);
sl@0
   533
  g_return_val_if_fail (new_ref_count > 1, NULL);
sl@0
   534
sl@0
   535
  return closure;
sl@0
   536
}
sl@0
   537
sl@0
   538
/**
sl@0
   539
 * g_closure_invalidate:
sl@0
   540
 * @closure: GClosure to invalidate
sl@0
   541
 *
sl@0
   542
 * Sets a flag on the closure to indicate that its calling
sl@0
   543
 * environment has become invalid, and thus causes any future
sl@0
   544
 * invocations of g_closure_invoke() on this @closure to be
sl@0
   545
 * ignored. Also, invalidation notifiers installed on the closure will
sl@0
   546
 * be called at this point. Note that unless you are holding a
sl@0
   547
 * reference to the closure yourself, the invalidation notifiers may
sl@0
   548
 * unref the closure and cause it to be destroyed, so if you need to
sl@0
   549
 * access the closure after calling g_closure_invalidate(), make sure
sl@0
   550
 * that you've previously called g_closure_ref().
sl@0
   551
 *
sl@0
   552
 * Note that g_closure_invalidate() will also be called when the
sl@0
   553
 * reference count of a closure drops to zero (unless it has already
sl@0
   554
 * been invalidated before).
sl@0
   555
 */
sl@0
   556
EXPORT_C void
sl@0
   557
g_closure_invalidate (GClosure *closure)
sl@0
   558
{
sl@0
   559
  g_return_if_fail (closure != NULL);
sl@0
   560
sl@0
   561
  if (!closure->is_invalid)
sl@0
   562
    {
sl@0
   563
      gboolean was_invalid;
sl@0
   564
      g_closure_ref (closure);           /* preserve floating flag */
sl@0
   565
      SWAP (closure, is_invalid, TRUE, &was_invalid);
sl@0
   566
      /* invalidate only once */
sl@0
   567
      if (!was_invalid)
sl@0
   568
        closure_invoke_notifiers (closure, INOTIFY);
sl@0
   569
      g_closure_unref (closure);
sl@0
   570
    }
sl@0
   571
}
sl@0
   572
sl@0
   573
/**
sl@0
   574
 * g_closure_unref:
sl@0
   575
 * @closure: #GClosure to decrement the reference count on
sl@0
   576
 *
sl@0
   577
 * Decrements the reference count of a closure after it was previously
sl@0
   578
 * incremented by the same caller. If no other callers are using the
sl@0
   579
 * closure, then the closure will be destroyed and freed.
sl@0
   580
 */
sl@0
   581
EXPORT_C void
sl@0
   582
g_closure_unref (GClosure *closure)
sl@0
   583
{
sl@0
   584
  guint new_ref_count;
sl@0
   585
sl@0
   586
  g_return_if_fail (closure != NULL);
sl@0
   587
  g_return_if_fail (closure->ref_count > 0);
sl@0
   588
sl@0
   589
  if (closure->ref_count == 1)	/* last unref, invalidate first */
sl@0
   590
    g_closure_invalidate (closure);
sl@0
   591
sl@0
   592
  DEC_ASSIGN (closure, ref_count, &new_ref_count);
sl@0
   593
sl@0
   594
  if (new_ref_count == 0)
sl@0
   595
    {
sl@0
   596
      closure_invoke_notifiers (closure, FNOTIFY);
sl@0
   597
      g_free (closure->notifiers);
sl@0
   598
      g_free (closure);
sl@0
   599
    }
sl@0
   600
}
sl@0
   601
sl@0
   602
/**
sl@0
   603
 * g_closure_sink:
sl@0
   604
 * @closure: #GClosure to decrement the initial reference count on, if it's
sl@0
   605
 *           still being held
sl@0
   606
 *
sl@0
   607
 * Takes over the initial ownership of a closure.  Each closure is
sl@0
   608
 * initially created in a <firstterm>floating</firstterm> state, which
sl@0
   609
 * means that the initial reference count is not owned by any caller.
sl@0
   610
 * g_closure_sink() checks to see if the object is still floating, and
sl@0
   611
 * if so, unsets the floating state and decreases the reference
sl@0
   612
 * count. If the closure is not floating, g_closure_sink() does
sl@0
   613
 * nothing. The reason for the existance of the floating state is to
sl@0
   614
 * prevent cumbersome code sequences like:
sl@0
   615
 * |[
sl@0
   616
 * closure = g_cclosure_new (cb_func, cb_data);
sl@0
   617
 * g_source_set_closure (source, closure);
sl@0
   618
 * g_closure_unref (closure); // XXX GObject doesn't really need this
sl@0
   619
 * ]|
sl@0
   620
 * Because g_source_set_closure() (and similar functions) take ownership of the
sl@0
   621
 * initial reference count, if it is unowned, we instead can write:
sl@0
   622
 * |[
sl@0
   623
 * g_source_set_closure (source, g_cclosure_new (cb_func, cb_data));
sl@0
   624
 * ]|
sl@0
   625
 *
sl@0
   626
 * Generally, this function is used together with g_closure_ref(). Ane example
sl@0
   627
 * of storing a closure for later notification looks like:
sl@0
   628
 * |[
sl@0
   629
 * static GClosure *notify_closure = NULL;
sl@0
   630
 * void
sl@0
   631
 * foo_notify_set_closure (GClosure *closure)
sl@0
   632
 * {
sl@0
   633
 *   if (notify_closure)
sl@0
   634
 *     g_closure_unref (notify_closure);
sl@0
   635
 *   notify_closure = closure;
sl@0
   636
 *   if (notify_closure)
sl@0
   637
 *     {
sl@0
   638
 *       g_closure_ref (notify_closure);
sl@0
   639
 *       g_closure_sink (notify_closure);
sl@0
   640
 *     }
sl@0
   641
 * }
sl@0
   642
 * ]|
sl@0
   643
 *
sl@0
   644
 * Because g_closure_sink() may decrement the reference count of a closure
sl@0
   645
 * (if it hasn't been called on @closure yet) just like g_closure_unref(),
sl@0
   646
 * g_closure_ref() should be called prior to this function.
sl@0
   647
 */
sl@0
   648
EXPORT_C void
sl@0
   649
g_closure_sink (GClosure *closure)
sl@0
   650
{
sl@0
   651
  g_return_if_fail (closure != NULL);
sl@0
   652
  g_return_if_fail (closure->ref_count > 0);
sl@0
   653
sl@0
   654
  /* floating is basically a kludge to avoid creating closures
sl@0
   655
   * with a ref_count of 0. so the intial ref_count a closure has
sl@0
   656
   * is unowned. with invoking g_closure_sink() code may
sl@0
   657
   * indicate that it takes over that intiial ref_count.
sl@0
   658
   */
sl@0
   659
  if (closure->floating)
sl@0
   660
    {
sl@0
   661
      gboolean was_floating;
sl@0
   662
      SWAP (closure, floating, FALSE, &was_floating);
sl@0
   663
      /* unref floating flag only once */
sl@0
   664
      if (was_floating)
sl@0
   665
        g_closure_unref (closure);
sl@0
   666
    }
sl@0
   667
}
sl@0
   668
sl@0
   669
/**
sl@0
   670
 * g_closure_remove_invalidate_notifier:
sl@0
   671
 * @closure: a #GClosure
sl@0
   672
 * @notify_data: data which was passed to g_closure_add_invalidate_notifier()
sl@0
   673
 *               when registering @notify_func
sl@0
   674
 * @notify_func: the callback function to remove
sl@0
   675
 *
sl@0
   676
 * Removes an invalidation notifier.
sl@0
   677
 *
sl@0
   678
 * Notice that notifiers are automatically removed after they are run.
sl@0
   679
 */
sl@0
   680
EXPORT_C void
sl@0
   681
g_closure_remove_invalidate_notifier (GClosure      *closure,
sl@0
   682
				      gpointer       notify_data,
sl@0
   683
				      GClosureNotify notify_func)
sl@0
   684
{
sl@0
   685
  g_return_if_fail (closure != NULL);
sl@0
   686
  g_return_if_fail (notify_func != NULL);
sl@0
   687
sl@0
   688
  if (closure->is_invalid && closure->in_inotify && /* account removal of notify_func() while it's called */
sl@0
   689
      ((gpointer) closure->marshal) == ((gpointer) notify_func) &&
sl@0
   690
      closure->data == notify_data)
sl@0
   691
    closure->marshal = NULL;
sl@0
   692
  else if (!closure_try_remove_inotify (closure, notify_data, notify_func))
sl@0
   693
    g_warning (G_STRLOC ": unable to remove uninstalled invalidation notifier: %p (%p)",
sl@0
   694
	       notify_func, notify_data);
sl@0
   695
}
sl@0
   696
sl@0
   697
/**
sl@0
   698
 * g_closure_remove_finalize_notifier:
sl@0
   699
 * @closure: a #GClosure
sl@0
   700
 * @notify_data: data which was passed to g_closure_add_finalize_notifier()
sl@0
   701
 *  when registering @notify_func
sl@0
   702
 * @notify_func: the callback function to remove
sl@0
   703
 *
sl@0
   704
 * Removes a finalization notifier.
sl@0
   705
 *
sl@0
   706
 * Notice that notifiers are automatically removed after they are run.
sl@0
   707
 */
sl@0
   708
EXPORT_C void
sl@0
   709
g_closure_remove_finalize_notifier (GClosure      *closure,
sl@0
   710
				    gpointer       notify_data,
sl@0
   711
				    GClosureNotify notify_func)
sl@0
   712
{
sl@0
   713
  g_return_if_fail (closure != NULL);
sl@0
   714
  g_return_if_fail (notify_func != NULL);
sl@0
   715
sl@0
   716
  if (closure->is_invalid && !closure->in_inotify && /* account removal of notify_func() while it's called */
sl@0
   717
      ((gpointer) closure->marshal) == ((gpointer) notify_func) &&
sl@0
   718
      closure->data == notify_data)
sl@0
   719
    closure->marshal = NULL;
sl@0
   720
  else if (!closure_try_remove_fnotify (closure, notify_data, notify_func))
sl@0
   721
    g_warning (G_STRLOC ": unable to remove uninstalled finalization notifier: %p (%p)",
sl@0
   722
               notify_func, notify_data);
sl@0
   723
}
sl@0
   724
sl@0
   725
/**
sl@0
   726
 * g_closure_invoke:
sl@0
   727
 * @closure: a #GClosure
sl@0
   728
 * @return_value: a #GValue to store the return value. May be %NULL if the
sl@0
   729
 *                callback of @closure doesn't return a value.
sl@0
   730
 * @n_param_values: the length of the @param_values array
sl@0
   731
 * @param_values: an array of #GValue<!-- -->s holding the arguments on
sl@0
   732
 *                which to invoke the callback of @closure
sl@0
   733
 * @invocation_hint: a context-dependent invocation hint
sl@0
   734
 *
sl@0
   735
 * Invokes the closure, i.e. executes the callback represented by the @closure.
sl@0
   736
 */
sl@0
   737
EXPORT_C void
sl@0
   738
g_closure_invoke (GClosure       *closure,
sl@0
   739
		  GValue /*out*/ *return_value,
sl@0
   740
		  guint           n_param_values,
sl@0
   741
		  const GValue   *param_values,
sl@0
   742
		  gpointer        invocation_hint)
sl@0
   743
{
sl@0
   744
  g_return_if_fail (closure != NULL);
sl@0
   745
sl@0
   746
  g_closure_ref (closure);      /* preserve floating flag */
sl@0
   747
  if (!closure->is_invalid)
sl@0
   748
    {
sl@0
   749
      GClosureMarshal marshal;
sl@0
   750
      gpointer marshal_data;
sl@0
   751
      gboolean in_marshal = closure->in_marshal;
sl@0
   752
sl@0
   753
      g_return_if_fail (closure->marshal || closure->meta_marshal);
sl@0
   754
sl@0
   755
      SET (closure, in_marshal, TRUE);
sl@0
   756
      if (closure->meta_marshal)
sl@0
   757
	{
sl@0
   758
	  marshal_data = closure->notifiers[0].data;
sl@0
   759
	  marshal = (GClosureMarshal) closure->notifiers[0].notify;
sl@0
   760
	}
sl@0
   761
      else
sl@0
   762
	{
sl@0
   763
	  marshal_data = NULL;
sl@0
   764
	  marshal = closure->marshal;
sl@0
   765
	}
sl@0
   766
      if (!in_marshal)
sl@0
   767
	closure_invoke_notifiers (closure, PRE_NOTIFY);
sl@0
   768
      marshal (closure,
sl@0
   769
	       return_value,
sl@0
   770
	       n_param_values, param_values,
sl@0
   771
	       invocation_hint,
sl@0
   772
	       marshal_data);
sl@0
   773
      if (!in_marshal)
sl@0
   774
	closure_invoke_notifiers (closure, POST_NOTIFY);
sl@0
   775
      SET (closure, in_marshal, in_marshal);
sl@0
   776
    }
sl@0
   777
  g_closure_unref (closure);
sl@0
   778
}
sl@0
   779
sl@0
   780
/**
sl@0
   781
 * g_closure_set_marshal:
sl@0
   782
 * @closure: a #GClosure
sl@0
   783
 * @marshal: a #GClosureMarshal function
sl@0
   784
 *
sl@0
   785
 * Sets the marshaller of @closure. The <literal>marshal_data</literal>
sl@0
   786
 * of @marshal provides a way for a meta marshaller to provide additional
sl@0
   787
 * information to the marshaller. (See g_closure_set_meta_marshal().) For
sl@0
   788
 * GObject's C predefined marshallers (the g_cclosure_marshal_*()
sl@0
   789
 * functions), what it provides is a callback function to use instead of
sl@0
   790
 * @closure->callback.
sl@0
   791
 */
sl@0
   792
EXPORT_C void
sl@0
   793
g_closure_set_marshal (GClosure       *closure,
sl@0
   794
		       GClosureMarshal marshal)
sl@0
   795
{
sl@0
   796
  g_return_if_fail (closure != NULL);
sl@0
   797
  g_return_if_fail (marshal != NULL);
sl@0
   798
sl@0
   799
  if (closure->marshal && closure->marshal != marshal)
sl@0
   800
    g_warning ("attempt to override closure->marshal (%p) with new marshal (%p)",
sl@0
   801
	       closure->marshal, marshal);
sl@0
   802
  else
sl@0
   803
    closure->marshal = marshal;
sl@0
   804
}
sl@0
   805
sl@0
   806
/**
sl@0
   807
 * g_cclosure_new:
sl@0
   808
 * @callback_func: the function to invoke
sl@0
   809
 * @user_data: user data to pass to @callback_func
sl@0
   810
 * @destroy_data: destroy notify to be called when @user_data is no longer used
sl@0
   811
 *
sl@0
   812
 * Creates a new closure which invokes @callback_func with @user_data as
sl@0
   813
 * the last parameter.
sl@0
   814
 *
sl@0
   815
 * Returns: a new #GCClosure
sl@0
   816
 */
sl@0
   817
EXPORT_C GClosure*
sl@0
   818
g_cclosure_new (GCallback      callback_func,
sl@0
   819
		gpointer       user_data,
sl@0
   820
		GClosureNotify destroy_data)
sl@0
   821
{
sl@0
   822
  GClosure *closure;
sl@0
   823
  
sl@0
   824
  g_return_val_if_fail (callback_func != NULL, NULL);
sl@0
   825
  
sl@0
   826
  closure = g_closure_new_simple (sizeof (GCClosure), user_data);
sl@0
   827
  if (destroy_data)
sl@0
   828
    g_closure_add_finalize_notifier (closure, user_data, destroy_data);
sl@0
   829
  ((GCClosure*) closure)->callback = (gpointer) callback_func;
sl@0
   830
  
sl@0
   831
  return closure;
sl@0
   832
}
sl@0
   833
sl@0
   834
/**
sl@0
   835
 * g_cclosure_new_swap:
sl@0
   836
 * @callback_func: the function to invoke
sl@0
   837
 * @user_data: user data to pass to @callback_func
sl@0
   838
 * @destroy_data: destroy notify to be called when @user_data is no longer used
sl@0
   839
 *
sl@0
   840
 * Creates a new closure which invokes @callback_func with @user_data as
sl@0
   841
 * the first parameter.
sl@0
   842
 *
sl@0
   843
 * Returns: a new #GCClosure
sl@0
   844
 */
sl@0
   845
EXPORT_C GClosure*
sl@0
   846
g_cclosure_new_swap (GCallback      callback_func,
sl@0
   847
		     gpointer       user_data,
sl@0
   848
		     GClosureNotify destroy_data)
sl@0
   849
{
sl@0
   850
  GClosure *closure;
sl@0
   851
  
sl@0
   852
  g_return_val_if_fail (callback_func != NULL, NULL);
sl@0
   853
  
sl@0
   854
  closure = g_closure_new_simple (sizeof (GCClosure), user_data);
sl@0
   855
  if (destroy_data)
sl@0
   856
    g_closure_add_finalize_notifier (closure, user_data, destroy_data);
sl@0
   857
  ((GCClosure*) closure)->callback = (gpointer) callback_func;
sl@0
   858
  SET (closure, derivative_flag, TRUE);
sl@0
   859
  
sl@0
   860
  return closure;
sl@0
   861
}
sl@0
   862
sl@0
   863
static void
sl@0
   864
g_type_class_meta_marshal (GClosure       *closure,
sl@0
   865
			   GValue /*out*/ *return_value,
sl@0
   866
			   guint           n_param_values,
sl@0
   867
			   const GValue   *param_values,
sl@0
   868
			   gpointer        invocation_hint,
sl@0
   869
			   gpointer        marshal_data)
sl@0
   870
{
sl@0
   871
  GTypeClass *class;
sl@0
   872
  gpointer callback;
sl@0
   873
  /* GType itype = (GType) closure->data; */
sl@0
   874
  guint offset = GPOINTER_TO_UINT (marshal_data);
sl@0
   875
  
sl@0
   876
  class = G_TYPE_INSTANCE_GET_CLASS (g_value_peek_pointer (param_values + 0), itype, GTypeClass);
sl@0
   877
  callback = G_STRUCT_MEMBER (gpointer, class, offset);
sl@0
   878
  if (callback)
sl@0
   879
    closure->marshal (closure,
sl@0
   880
		      return_value,
sl@0
   881
		      n_param_values, param_values,
sl@0
   882
		      invocation_hint,
sl@0
   883
		      callback);
sl@0
   884
}
sl@0
   885
sl@0
   886
static void
sl@0
   887
g_type_iface_meta_marshal (GClosure       *closure,
sl@0
   888
			   GValue /*out*/ *return_value,
sl@0
   889
			   guint           n_param_values,
sl@0
   890
			   const GValue   *param_values,
sl@0
   891
			   gpointer        invocation_hint,
sl@0
   892
			   gpointer        marshal_data)
sl@0
   893
{
sl@0
   894
  GTypeClass *class;
sl@0
   895
  gpointer callback;
sl@0
   896
  GType itype = (GType) closure->data;
sl@0
   897
  guint offset = GPOINTER_TO_UINT (marshal_data);
sl@0
   898
  
sl@0
   899
  class = G_TYPE_INSTANCE_GET_INTERFACE (g_value_peek_pointer (param_values + 0), itype, GTypeClass);
sl@0
   900
  callback = G_STRUCT_MEMBER (gpointer, class, offset);
sl@0
   901
  if (callback)
sl@0
   902
    closure->marshal (closure,
sl@0
   903
		      return_value,
sl@0
   904
		      n_param_values, param_values,
sl@0
   905
		      invocation_hint,
sl@0
   906
		      callback);
sl@0
   907
}
sl@0
   908
sl@0
   909
/**
sl@0
   910
 * g_signal_type_cclosure_new:
sl@0
   911
 * @itype: the #GType identifier of an interface or classed type
sl@0
   912
 * @struct_offset: the offset of the member function of @itype's class
sl@0
   913
 *  structure which is to be invoked by the new closure
sl@0
   914
 *
sl@0
   915
 * Creates a new closure which invokes the function found at the offset
sl@0
   916
 * @struct_offset in the class structure of the interface or classed type
sl@0
   917
 * identified by @itype.
sl@0
   918
 *
sl@0
   919
 * Returns: a new #GCClosure
sl@0
   920
 */
sl@0
   921
EXPORT_C GClosure*
sl@0
   922
g_signal_type_cclosure_new (GType    itype,
sl@0
   923
			    guint    struct_offset)
sl@0
   924
{
sl@0
   925
  GClosure *closure;
sl@0
   926
  
sl@0
   927
  g_return_val_if_fail (G_TYPE_IS_CLASSED (itype) || G_TYPE_IS_INTERFACE (itype), NULL);
sl@0
   928
  g_return_val_if_fail (struct_offset >= sizeof (GTypeClass), NULL);
sl@0
   929
  
sl@0
   930
  closure = g_closure_new_simple (sizeof (GClosure), (gpointer) itype);
sl@0
   931
  if (G_TYPE_IS_INTERFACE (itype))
sl@0
   932
    g_closure_set_meta_marshal (closure, GUINT_TO_POINTER (struct_offset), g_type_iface_meta_marshal);
sl@0
   933
  else
sl@0
   934
    g_closure_set_meta_marshal (closure, GUINT_TO_POINTER (struct_offset), g_type_class_meta_marshal);
sl@0
   935
  
sl@0
   936
  return closure;
sl@0
   937
}
sl@0
   938
sl@0
   939
sl@0
   940
/**
sl@0
   941
 * g_cclosure_marshal_VOID__VOID:
sl@0
   942
 * @closure: the #GClosure to which the marshaller belongs
sl@0
   943
 * @return_value: ignored
sl@0
   944
 * @n_param_values: 1
sl@0
   945
 * @param_values: a #GValue array holding only the instance
sl@0
   946
 * @invocation_hint: the invocation hint given as the last argument
sl@0
   947
 *  to g_closure_invoke()
sl@0
   948
 * @marshal_data: additional data specified when registering the marshaller
sl@0
   949
 *
sl@0
   950
 * A marshaller for a #GCClosure with a callback of type
sl@0
   951
 * <literal>void (*callback) (gpointer instance, gpointer user_data)</literal>.
sl@0
   952
 */
sl@0
   953
sl@0
   954
/**
sl@0
   955
 * g_cclosure_marshal_VOID__BOOLEAN:
sl@0
   956
 * @closure: the #GClosure to which the marshaller belongs
sl@0
   957
 * @return_value: ignored
sl@0
   958
 * @n_param_values: 2
sl@0
   959
 * @param_values: a #GValue array holding the instance and the #gboolean parameter
sl@0
   960
 * @invocation_hint: the invocation hint given as the last argument
sl@0
   961
 *  to g_closure_invoke()
sl@0
   962
 * @marshal_data: additional data specified when registering the marshaller
sl@0
   963
 *
sl@0
   964
 * A marshaller for a #GCClosure with a callback of type
sl@0
   965
 * <literal>void (*callback) (gpointer instance, gboolean arg1, gpointer user_data)</literal>.
sl@0
   966
 */
sl@0
   967
sl@0
   968
/**
sl@0
   969
 * g_cclosure_marshal_VOID__CHAR:
sl@0
   970
 * @closure: the #GClosure to which the marshaller belongs
sl@0
   971
 * @return_value: ignored
sl@0
   972
 * @n_param_values: 2
sl@0
   973
 * @param_values: a #GValue array holding the instance and the #gchar parameter
sl@0
   974
 * @invocation_hint: the invocation hint given as the last argument
sl@0
   975
 *  to g_closure_invoke()
sl@0
   976
 * @marshal_data: additional data specified when registering the marshaller
sl@0
   977
 *
sl@0
   978
 * A marshaller for a #GCClosure with a callback of type
sl@0
   979
 * <literal>void (*callback) (gpointer instance, gchar arg1, gpointer user_data)</literal>.
sl@0
   980
 */
sl@0
   981
sl@0
   982
/**
sl@0
   983
 * g_cclosure_marshal_VOID__UCHAR:
sl@0
   984
 * @closure: the #GClosure to which the marshaller belongs
sl@0
   985
 * @return_value: ignored
sl@0
   986
 * @n_param_values: 2
sl@0
   987
 * @param_values: a #GValue array holding the instance and the #guchar parameter
sl@0
   988
 * @invocation_hint: the invocation hint given as the last argument
sl@0
   989
 *  to g_closure_invoke()
sl@0
   990
 * @marshal_data: additional data specified when registering the marshaller
sl@0
   991
 *
sl@0
   992
 * A marshaller for a #GCClosure with a callback of type
sl@0
   993
 * <literal>void (*callback) (gpointer instance, guchar arg1, gpointer user_data)</literal>.
sl@0
   994
 */
sl@0
   995
sl@0
   996
/**
sl@0
   997
 * g_cclosure_marshal_VOID__INT:
sl@0
   998
 * @closure: the #GClosure to which the marshaller belongs
sl@0
   999
 * @return_value: ignored
sl@0
  1000
 * @n_param_values: 2
sl@0
  1001
 * @param_values: a #GValue array holding the instance and the #gint parameter
sl@0
  1002
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1003
 *  to g_closure_invoke()
sl@0
  1004
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1005
 *
sl@0
  1006
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1007
 * <literal>void (*callback) (gpointer instance, gint arg1, gpointer user_data)</literal>.
sl@0
  1008
 */
sl@0
  1009
sl@0
  1010
/**
sl@0
  1011
 * g_cclosure_marshal_VOID__UINT:
sl@0
  1012
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1013
 * @return_value: ignored
sl@0
  1014
 * @n_param_values: 2
sl@0
  1015
 * @param_values: a #GValue array holding the instance and the #guint parameter
sl@0
  1016
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1017
 *  to g_closure_invoke()
sl@0
  1018
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1019
 *
sl@0
  1020
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1021
 * <literal>void (*callback) (gpointer instance, guint arg1, gpointer user_data)</literal>.
sl@0
  1022
 */
sl@0
  1023
sl@0
  1024
/**
sl@0
  1025
 * g_cclosure_marshal_VOID__LONG:
sl@0
  1026
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1027
 * @return_value: ignored
sl@0
  1028
 * @n_param_values: 2
sl@0
  1029
 * @param_values: a #GValue array holding the instance and the #glong parameter
sl@0
  1030
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1031
 *  to g_closure_invoke()
sl@0
  1032
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1033
 *
sl@0
  1034
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1035
 * <literal>void (*callback) (gpointer instance, glong arg1, gpointer user_data)</literal>.
sl@0
  1036
 */
sl@0
  1037
sl@0
  1038
/**
sl@0
  1039
 * g_cclosure_marshal_VOID__ULONG:
sl@0
  1040
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1041
 * @return_value: ignored
sl@0
  1042
 * @n_param_values: 2
sl@0
  1043
 * @param_values: a #GValue array holding the instance and the #gulong parameter
sl@0
  1044
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1045
 *  to g_closure_invoke()
sl@0
  1046
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1047
 *
sl@0
  1048
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1049
 * <literal>void (*callback) (gpointer instance, gulong arg1, gpointer user_data)</literal>.
sl@0
  1050
 */
sl@0
  1051
sl@0
  1052
/**
sl@0
  1053
 * g_cclosure_marshal_VOID__ENUM:
sl@0
  1054
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1055
 * @return_value: ignored
sl@0
  1056
 * @n_param_values: 2
sl@0
  1057
 * @param_values: a #GValue array holding the instance and the enumeration parameter
sl@0
  1058
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1059
 *  to g_closure_invoke()
sl@0
  1060
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1061
 *
sl@0
  1062
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1063
 * <literal>void (*callback) (gpointer instance, gint arg1, gpointer user_data)</literal> where the #gint parameter denotes an enumeration type..
sl@0
  1064
 */
sl@0
  1065
sl@0
  1066
/**
sl@0
  1067
 * g_cclosure_marshal_VOID__FLAGS:
sl@0
  1068
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1069
 * @return_value: ignored
sl@0
  1070
 * @n_param_values: 2
sl@0
  1071
 * @param_values: a #GValue array holding the instance and the flags parameter
sl@0
  1072
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1073
 *  to g_closure_invoke()
sl@0
  1074
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1075
 *
sl@0
  1076
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1077
 * <literal>void (*callback) (gpointer instance, gint arg1, gpointer user_data)</literal> where the #gint parameter denotes a flags type.
sl@0
  1078
 */
sl@0
  1079
sl@0
  1080
/**
sl@0
  1081
 * g_cclosure_marshal_VOID__FLOAT:
sl@0
  1082
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1083
 * @return_value: ignored
sl@0
  1084
 * @n_param_values: 2
sl@0
  1085
 * @param_values: a #GValue array holding the instance and the #gfloat parameter
sl@0
  1086
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1087
 *  to g_closure_invoke()
sl@0
  1088
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1089
 *
sl@0
  1090
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1091
 * <literal>void (*callback) (gpointer instance, gfloat arg1, gpointer user_data)</literal>.
sl@0
  1092
 */
sl@0
  1093
sl@0
  1094
/**
sl@0
  1095
 * g_cclosure_marshal_VOID__DOUBLE:
sl@0
  1096
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1097
 * @return_value: ignored
sl@0
  1098
 * @n_param_values: 2
sl@0
  1099
 * @param_values: a #GValue array holding the instance and the #gdouble parameter
sl@0
  1100
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1101
 *  to g_closure_invoke()
sl@0
  1102
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1103
 *
sl@0
  1104
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1105
 * <literal>void (*callback) (gpointer instance, gdouble arg1, gpointer user_data)</literal>.
sl@0
  1106
 */
sl@0
  1107
sl@0
  1108
/**
sl@0
  1109
 * g_cclosure_marshal_VOID__STRING:
sl@0
  1110
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1111
 * @return_value: ignored
sl@0
  1112
 * @n_param_values: 2
sl@0
  1113
 * @param_values: a #GValue array holding the instance and the #gchar* parameter
sl@0
  1114
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1115
 *  to g_closure_invoke()
sl@0
  1116
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1117
 *
sl@0
  1118
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1119
 * <literal>void (*callback) (gpointer instance, const gchar *arg1, gpointer user_data)</literal>.
sl@0
  1120
 */
sl@0
  1121
sl@0
  1122
/**
sl@0
  1123
 * g_cclosure_marshal_VOID__PARAM:
sl@0
  1124
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1125
 * @return_value: ignored
sl@0
  1126
 * @n_param_values: 2
sl@0
  1127
 * @param_values: a #GValue array holding the instance and the #GParamSpec* parameter
sl@0
  1128
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1129
 *  to g_closure_invoke()
sl@0
  1130
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1131
 *
sl@0
  1132
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1133
 * <literal>void (*callback) (gpointer instance, GParamSpec *arg1, gpointer user_data)</literal>.
sl@0
  1134
 */
sl@0
  1135
sl@0
  1136
/**
sl@0
  1137
 * g_cclosure_marshal_VOID__BOXED:
sl@0
  1138
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1139
 * @return_value: ignored
sl@0
  1140
 * @n_param_values: 2
sl@0
  1141
 * @param_values: a #GValue array holding the instance and the #GBoxed* parameter
sl@0
  1142
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1143
 *  to g_closure_invoke()
sl@0
  1144
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1145
 *
sl@0
  1146
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1147
 * <literal>void (*callback) (gpointer instance, GBoxed *arg1, gpointer user_data)</literal>.
sl@0
  1148
 */
sl@0
  1149
sl@0
  1150
/**
sl@0
  1151
 * g_cclosure_marshal_VOID__POINTER:
sl@0
  1152
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1153
 * @return_value: ignored
sl@0
  1154
 * @n_param_values: 2
sl@0
  1155
 * @param_values: a #GValue array holding the instance and the #gpointer parameter
sl@0
  1156
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1157
 *  to g_closure_invoke()
sl@0
  1158
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1159
 *
sl@0
  1160
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1161
 * <literal>void (*callback) (gpointer instance, gpointer arg1, gpointer user_data)</literal>.
sl@0
  1162
 */
sl@0
  1163
sl@0
  1164
/**
sl@0
  1165
 * g_cclosure_marshal_VOID__OBJECT:
sl@0
  1166
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1167
 * @return_value: ignored
sl@0
  1168
 * @n_param_values: 2
sl@0
  1169
 * @param_values: a #GValue array holding the instance and the #GObject* parameter
sl@0
  1170
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1171
 *  to g_closure_invoke()
sl@0
  1172
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1173
 *
sl@0
  1174
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1175
 * <literal>void (*callback) (gpointer instance, GOBject *arg1, gpointer user_data)</literal>.
sl@0
  1176
 */
sl@0
  1177
sl@0
  1178
/**
sl@0
  1179
 * g_cclosure_marshal_VOID__UINT_POINTER:
sl@0
  1180
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1181
 * @return_value: ignored
sl@0
  1182
 * @n_param_values: 3
sl@0
  1183
 * @param_values: a #GValue array holding instance, arg1 and arg2
sl@0
  1184
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1185
 *  to g_closure_invoke()
sl@0
  1186
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1187
 *
sl@0
  1188
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1189
 * <literal>void (*callback) (gpointer instance, guint arg1, gpointer arg2, gpointer user_data)</literal>.
sl@0
  1190
 */
sl@0
  1191
sl@0
  1192
/**
sl@0
  1193
 * g_cclosure_marshal_BOOLEAN__FLAGS:
sl@0
  1194
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1195
 * @return_value: a #GValue which can store the returned #gboolean
sl@0
  1196
 * @n_param_values: 2
sl@0
  1197
 * @param_values: a #GValue array holding instance and arg1
sl@0
  1198
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1199
 *  to g_closure_invoke()
sl@0
  1200
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1201
 *
sl@0
  1202
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1203
 * <literal>gboolean (*callback) (gpointer instance, gint arg1, gpointer user_data)</literal> where the #gint parameter
sl@0
  1204
 * denotes a flags type.
sl@0
  1205
 */
sl@0
  1206
sl@0
  1207
/**
sl@0
  1208
 * g_cclosure_marshal_BOOL__FLAGS:
sl@0
  1209
 *
sl@0
  1210
 * Another name for g_cclosure_marshal_BOOLEAN__FLAGS().
sl@0
  1211
 */
sl@0
  1212
/**
sl@0
  1213
 * g_cclosure_marshal_STRING__OBJECT_POINTER:
sl@0
  1214
 * @closure: the #GClosure to which the marshaller belongs
sl@0
  1215
 * @return_value: a #GValue, which can store the returned string
sl@0
  1216
 * @n_param_values: 3
sl@0
  1217
 * @param_values: a #GValue array holding instance, arg1 and arg2
sl@0
  1218
 * @invocation_hint: the invocation hint given as the last argument
sl@0
  1219
 *  to g_closure_invoke()
sl@0
  1220
 * @marshal_data: additional data specified when registering the marshaller
sl@0
  1221
 *
sl@0
  1222
 * A marshaller for a #GCClosure with a callback of type
sl@0
  1223
 * <literal>gchar* (*callback) (gpointer instance, GObject *arg1, gpointer arg2, gpointer user_data)</literal>.
sl@0
  1224
 */
sl@0
  1225
sl@0
  1226
#define __G_CLOSURE_C__
sl@0
  1227
#include "gobjectaliasdef.c"