os/ossrv/glib/gobject/gclosure.h
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
#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
sl@0
    22
#error "Only <glib-object.h> can be included directly."
sl@0
    23
#endif
sl@0
    24
sl@0
    25
#ifndef __G_CLOSURE_H__
sl@0
    26
#define __G_CLOSURE_H__
sl@0
    27
sl@0
    28
#include        <gobject/gtype.h>
sl@0
    29
sl@0
    30
G_BEGIN_DECLS
sl@0
    31
sl@0
    32
/* --- defines --- */
sl@0
    33
/**
sl@0
    34
 * G_CLOSURE_NEEDS_MARSHAL:
sl@0
    35
 * @closure: a #GClosure
sl@0
    36
 * 
sl@0
    37
 * Check if the closure still needs a marshaller. See g_closure_set_marshal().
sl@0
    38
 *
sl@0
    39
 * Returns: %TRUE if a #GClosureMarshal marshaller has not yet been set on 
sl@0
    40
 * @closure.
sl@0
    41
 */
sl@0
    42
#define	G_CLOSURE_NEEDS_MARSHAL(closure) (((GClosure*) (closure))->marshal == NULL)
sl@0
    43
/**
sl@0
    44
 * G_CLOSURE_N_NOTIFIERS:
sl@0
    45
 * @cl: a #GClosure
sl@0
    46
 * 
sl@0
    47
 * Get the total number of notifiers connected with the closure @cl. 
sl@0
    48
 * The count includes the meta marshaller, the finalize and invalidate notifiers 
sl@0
    49
 * and the marshal guards. Note that each guard counts as two notifiers. 
sl@0
    50
 * See g_closure_set_meta_marshal(), g_closure_add_finalize_notifier(),
sl@0
    51
 * g_closure_add_invalidate_notifier() and g_closure_add_marshal_guards().
sl@0
    52
 *
sl@0
    53
 * Returns: number of notifiers
sl@0
    54
 */
sl@0
    55
#define	G_CLOSURE_N_NOTIFIERS(cl)	 ((cl)->meta_marshal + ((cl)->n_guards << 1L) + \
sl@0
    56
                                          (cl)->n_fnotifiers + (cl)->n_inotifiers)
sl@0
    57
/**
sl@0
    58
 * G_CCLOSURE_SWAP_DATA:
sl@0
    59
 * @cclosure: a #GCClosure
sl@0
    60
 * 
sl@0
    61
 * Checks whether the user data of the #GCClosure should be passed as the
sl@0
    62
 * first parameter to the callback. See g_cclosure_new_swap().
sl@0
    63
 *
sl@0
    64
 * Returns: %TRUE if data has to be swapped.
sl@0
    65
 */
sl@0
    66
#define	G_CCLOSURE_SWAP_DATA(cclosure)	 (((GClosure*) (cclosure))->derivative_flag)
sl@0
    67
/**
sl@0
    68
 * G_CALLBACK:
sl@0
    69
 * @f: a function pointer.
sl@0
    70
 * 
sl@0
    71
 * Cast a function pointer to a #GCallback.
sl@0
    72
 */
sl@0
    73
#define	G_CALLBACK(f)			 ((GCallback) (f))
sl@0
    74
sl@0
    75
sl@0
    76
/* -- typedefs --- */
sl@0
    77
typedef struct _GClosure		 GClosure;
sl@0
    78
typedef struct _GClosureNotifyData	 GClosureNotifyData;
sl@0
    79
sl@0
    80
/**
sl@0
    81
 * GCallback:
sl@0
    82
 * 
sl@0
    83
 * The type used for callback functions in structure definitions and function 
sl@0
    84
 * signatures. This doesn't mean that all callback functions must take no 
sl@0
    85
 * parameters and return void. The required signature of a callback function 
sl@0
    86
 * is determined by the context in which is used (e.g. the signal to which it 
sl@0
    87
 * is connected). Use G_CALLBACK() to cast the callback function to a #GCallback. 
sl@0
    88
 */
sl@0
    89
typedef void  (*GCallback)              (void);
sl@0
    90
/**
sl@0
    91
 * GClosureNotify:
sl@0
    92
 * @data: data specified when registering the notification callback
sl@0
    93
 * @closure: the #GClosure on which the notification is emitted
sl@0
    94
 * 
sl@0
    95
 * The type used for the various notification callbacks which can be registered
sl@0
    96
 * on closures.
sl@0
    97
 */
sl@0
    98
typedef void  (*GClosureNotify)		(gpointer	 data,
sl@0
    99
					 GClosure	*closure);
sl@0
   100
/**
sl@0
   101
 * GClosureMarshal:
sl@0
   102
 * @closure: the #GClosure to which the marshaller belongs
sl@0
   103
 * @return_value: a #GValue to store the return value. May be %NULL if the
sl@0
   104
 *  callback of @closure doesn't return a value.
sl@0
   105
 * @n_param_values: the length of the @param_values array
sl@0
   106
 * @param_values: an array of #GValue<!-- -->s holding the arguments on
sl@0
   107
 *  which to invoke the callback of @closure
sl@0
   108
 * @invocation_hint: the invocation hint given as the last argument
sl@0
   109
 *  to g_closure_invoke()
sl@0
   110
 * @marshal_data: additional data specified when registering the marshaller,
sl@0
   111
 *  see g_closure_set_marshal() and g_closure_set_meta_marshal()
sl@0
   112
 * 
sl@0
   113
 * The type used for marshaller functions.
sl@0
   114
 */
sl@0
   115
typedef void  (*GClosureMarshal)	(GClosure	*closure,
sl@0
   116
					 GValue         *return_value,
sl@0
   117
					 guint           n_param_values,
sl@0
   118
					 const GValue   *param_values,
sl@0
   119
					 gpointer        invocation_hint,
sl@0
   120
					 gpointer	 marshal_data);
sl@0
   121
/**
sl@0
   122
 * GCClosure:
sl@0
   123
 * @closure: the #GClosure
sl@0
   124
 * @callback: the callback function
sl@0
   125
 * 
sl@0
   126
 * A #GCClosure is a specialization of #GClosure for C function callbacks.
sl@0
   127
 */
sl@0
   128
typedef struct _GCClosure		 GCClosure;
sl@0
   129
sl@0
   130
sl@0
   131
/* --- structures --- */
sl@0
   132
struct _GClosureNotifyData
sl@0
   133
{
sl@0
   134
  gpointer       data;
sl@0
   135
  GClosureNotify notify;
sl@0
   136
};
sl@0
   137
/**
sl@0
   138
 * GClosure:
sl@0
   139
 * @in_marshal: Indicates whether the closure is currently being invoked with 
sl@0
   140
 *  g_closure_invoke()
sl@0
   141
 * @is_invalid: Indicates whether the closure has been invalidated by 
sl@0
   142
 *  g_closure_invalidate()
sl@0
   143
 * 
sl@0
   144
 * A #GClosure represents a callback supplied by the programmer.
sl@0
   145
 */
sl@0
   146
struct _GClosure
sl@0
   147
{
sl@0
   148
  /*< private >*/
sl@0
   149
  volatile      	guint	 ref_count : 15;
sl@0
   150
  volatile       	guint	 meta_marshal : 1;
sl@0
   151
  volatile       	guint	 n_guards : 1;
sl@0
   152
  volatile       	guint	 n_fnotifiers : 2;	/* finalization notifiers */
sl@0
   153
  volatile       	guint	 n_inotifiers : 8;	/* invalidation notifiers */
sl@0
   154
  volatile       	guint	 in_inotify : 1;
sl@0
   155
  volatile       	guint	 floating : 1;
sl@0
   156
  /*< protected >*/
sl@0
   157
  volatile         	guint	 derivative_flag : 1;
sl@0
   158
  /*< public >*/
sl@0
   159
  volatile       	guint	 in_marshal : 1;
sl@0
   160
  volatile       	guint	 is_invalid : 1;
sl@0
   161
sl@0
   162
  /*< private >*/	void   (*marshal)  (GClosure       *closure,
sl@0
   163
					    GValue /*out*/ *return_value,
sl@0
   164
					    guint           n_param_values,
sl@0
   165
					    const GValue   *param_values,
sl@0
   166
					    gpointer        invocation_hint,
sl@0
   167
					    gpointer	    marshal_data);
sl@0
   168
  /*< protected >*/	gpointer data;
sl@0
   169
sl@0
   170
  /*< private >*/	GClosureNotifyData *notifiers;
sl@0
   171
sl@0
   172
  /* invariants/constrains:
sl@0
   173
   * - ->marshal and ->data are _invalid_ as soon as ->is_invalid==TRUE
sl@0
   174
   * - invocation of all inotifiers occours prior to fnotifiers
sl@0
   175
   * - order of inotifiers is random
sl@0
   176
   *   inotifiers may _not_ free/invalidate parameter values (e.g. ->data)
sl@0
   177
   * - order of fnotifiers is random
sl@0
   178
   * - each notifier may only be removed before or during its invocation
sl@0
   179
   * - reference counting may only happen prior to fnotify invocation
sl@0
   180
   *   (in that sense, fnotifiers are really finalization handlers)
sl@0
   181
   */
sl@0
   182
};
sl@0
   183
/* closure for C function calls, callback() is the user function
sl@0
   184
 */
sl@0
   185
struct _GCClosure
sl@0
   186
{
sl@0
   187
  GClosure	closure;
sl@0
   188
  gpointer	callback;
sl@0
   189
};
sl@0
   190
sl@0
   191
sl@0
   192
/* --- prototypes --- */
sl@0
   193
IMPORT_C GClosure* g_cclosure_new			(GCallback	callback_func,
sl@0
   194
						 gpointer	user_data,
sl@0
   195
						 GClosureNotify destroy_data);
sl@0
   196
IMPORT_C GClosure* g_cclosure_new_swap			(GCallback	callback_func,
sl@0
   197
						 gpointer	user_data,
sl@0
   198
						 GClosureNotify destroy_data);
sl@0
   199
IMPORT_C GClosure* g_signal_type_cclosure_new		(GType          itype,
sl@0
   200
						 guint          struct_offset);
sl@0
   201
sl@0
   202
sl@0
   203
/* --- prototypes --- */
sl@0
   204
IMPORT_C GClosure* g_closure_ref				(GClosure	*closure);
sl@0
   205
IMPORT_C void	  g_closure_sink			(GClosure	*closure);
sl@0
   206
IMPORT_C void	  g_closure_unref			(GClosure	*closure);
sl@0
   207
/* intimidating */
sl@0
   208
IMPORT_C GClosure* g_closure_new_simple			(guint		 sizeof_closure,
sl@0
   209
						 gpointer	 data);
sl@0
   210
IMPORT_C void	  g_closure_add_finalize_notifier	(GClosure       *closure,
sl@0
   211
						 gpointer	 notify_data,
sl@0
   212
						 GClosureNotify	 notify_func);
sl@0
   213
IMPORT_C void	  g_closure_remove_finalize_notifier	(GClosure       *closure,
sl@0
   214
						 gpointer	 notify_data,
sl@0
   215
						 GClosureNotify	 notify_func);
sl@0
   216
IMPORT_C void	  g_closure_add_invalidate_notifier	(GClosure       *closure,
sl@0
   217
						 gpointer	 notify_data,
sl@0
   218
						 GClosureNotify	 notify_func);
sl@0
   219
IMPORT_C void	  g_closure_remove_invalidate_notifier	(GClosure       *closure,
sl@0
   220
						 gpointer	 notify_data,
sl@0
   221
						 GClosureNotify	 notify_func);
sl@0
   222
IMPORT_C void	  g_closure_add_marshal_guards		(GClosure	*closure,
sl@0
   223
						 gpointer        pre_marshal_data,
sl@0
   224
						 GClosureNotify	 pre_marshal_notify,
sl@0
   225
						 gpointer        post_marshal_data,
sl@0
   226
						 GClosureNotify	 post_marshal_notify);
sl@0
   227
IMPORT_C void	  g_closure_set_marshal			(GClosure	*closure,
sl@0
   228
						 GClosureMarshal marshal);
sl@0
   229
IMPORT_C void	  g_closure_set_meta_marshal		(GClosure       *closure,
sl@0
   230
						 gpointer	 marshal_data,
sl@0
   231
						 GClosureMarshal meta_marshal);
sl@0
   232
IMPORT_C void	  g_closure_invalidate			(GClosure	*closure);
sl@0
   233
IMPORT_C void	  g_closure_invoke			(GClosure 	*closure,
sl@0
   234
						 GValue	/*out*/	*return_value,
sl@0
   235
						 guint		 n_param_values,
sl@0
   236
						 const GValue	*param_values,
sl@0
   237
						 gpointer	 invocation_hint);
sl@0
   238
sl@0
   239
/* FIXME:
sl@0
   240
   OK:  data_object::destroy		-> closure_invalidate();
sl@0
   241
   MIS:	closure_invalidate()		-> disconnect(closure);
sl@0
   242
   MIS:	disconnect(closure)		-> (unlink) closure_unref();
sl@0
   243
   OK:	closure_finalize()		-> g_free (data_string);
sl@0
   244
sl@0
   245
   random remarks:
sl@0
   246
   - need marshaller repo with decent aliasing to base types
sl@0
   247
   - provide marshaller collection, virtually covering anything out there
sl@0
   248
*/
sl@0
   249
sl@0
   250
G_END_DECLS
sl@0
   251
sl@0
   252
#endif /* __G_CLOSURE_H__ */