os/ossrv/glib/gobject/gclosure.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/glib/gobject/gclosure.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,252 @@
     1.4 +/* GObject - GLib Type, Object, Parameter and Signal Library
     1.5 + * Copyright (C) 2000-2001 Red Hat, Inc.
     1.6 + * Copyright (C) 2005 Imendio AB
     1.7 + * Portions copyright (c) 2006-2009 Nokia Corporation.  All rights reserved.
     1.8 + *
     1.9 + * This library is free software; you can redistribute it and/or
    1.10 + * modify it under the terms of the GNU Lesser General Public
    1.11 + * License as published by the Free Software Foundation; either
    1.12 + * version 2 of the License, or (at your option) any later version.
    1.13 + *
    1.14 + * This library is distributed in the hope that it will be useful,
    1.15 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.16 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    1.17 + * Lesser General Public License for more details.
    1.18 + *
    1.19 + * You should have received a copy of the GNU Lesser General
    1.20 + * Public License along with this library; if not, write to the
    1.21 + * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
    1.22 + * Boston, MA 02111-1307, USA.
    1.23 + */
    1.24 +#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
    1.25 +#error "Only <glib-object.h> can be included directly."
    1.26 +#endif
    1.27 +
    1.28 +#ifndef __G_CLOSURE_H__
    1.29 +#define __G_CLOSURE_H__
    1.30 +
    1.31 +#include        <gobject/gtype.h>
    1.32 +
    1.33 +G_BEGIN_DECLS
    1.34 +
    1.35 +/* --- defines --- */
    1.36 +/**
    1.37 + * G_CLOSURE_NEEDS_MARSHAL:
    1.38 + * @closure: a #GClosure
    1.39 + * 
    1.40 + * Check if the closure still needs a marshaller. See g_closure_set_marshal().
    1.41 + *
    1.42 + * Returns: %TRUE if a #GClosureMarshal marshaller has not yet been set on 
    1.43 + * @closure.
    1.44 + */
    1.45 +#define	G_CLOSURE_NEEDS_MARSHAL(closure) (((GClosure*) (closure))->marshal == NULL)
    1.46 +/**
    1.47 + * G_CLOSURE_N_NOTIFIERS:
    1.48 + * @cl: a #GClosure
    1.49 + * 
    1.50 + * Get the total number of notifiers connected with the closure @cl. 
    1.51 + * The count includes the meta marshaller, the finalize and invalidate notifiers 
    1.52 + * and the marshal guards. Note that each guard counts as two notifiers. 
    1.53 + * See g_closure_set_meta_marshal(), g_closure_add_finalize_notifier(),
    1.54 + * g_closure_add_invalidate_notifier() and g_closure_add_marshal_guards().
    1.55 + *
    1.56 + * Returns: number of notifiers
    1.57 + */
    1.58 +#define	G_CLOSURE_N_NOTIFIERS(cl)	 ((cl)->meta_marshal + ((cl)->n_guards << 1L) + \
    1.59 +                                          (cl)->n_fnotifiers + (cl)->n_inotifiers)
    1.60 +/**
    1.61 + * G_CCLOSURE_SWAP_DATA:
    1.62 + * @cclosure: a #GCClosure
    1.63 + * 
    1.64 + * Checks whether the user data of the #GCClosure should be passed as the
    1.65 + * first parameter to the callback. See g_cclosure_new_swap().
    1.66 + *
    1.67 + * Returns: %TRUE if data has to be swapped.
    1.68 + */
    1.69 +#define	G_CCLOSURE_SWAP_DATA(cclosure)	 (((GClosure*) (cclosure))->derivative_flag)
    1.70 +/**
    1.71 + * G_CALLBACK:
    1.72 + * @f: a function pointer.
    1.73 + * 
    1.74 + * Cast a function pointer to a #GCallback.
    1.75 + */
    1.76 +#define	G_CALLBACK(f)			 ((GCallback) (f))
    1.77 +
    1.78 +
    1.79 +/* -- typedefs --- */
    1.80 +typedef struct _GClosure		 GClosure;
    1.81 +typedef struct _GClosureNotifyData	 GClosureNotifyData;
    1.82 +
    1.83 +/**
    1.84 + * GCallback:
    1.85 + * 
    1.86 + * The type used for callback functions in structure definitions and function 
    1.87 + * signatures. This doesn't mean that all callback functions must take no 
    1.88 + * parameters and return void. The required signature of a callback function 
    1.89 + * is determined by the context in which is used (e.g. the signal to which it 
    1.90 + * is connected). Use G_CALLBACK() to cast the callback function to a #GCallback. 
    1.91 + */
    1.92 +typedef void  (*GCallback)              (void);
    1.93 +/**
    1.94 + * GClosureNotify:
    1.95 + * @data: data specified when registering the notification callback
    1.96 + * @closure: the #GClosure on which the notification is emitted
    1.97 + * 
    1.98 + * The type used for the various notification callbacks which can be registered
    1.99 + * on closures.
   1.100 + */
   1.101 +typedef void  (*GClosureNotify)		(gpointer	 data,
   1.102 +					 GClosure	*closure);
   1.103 +/**
   1.104 + * GClosureMarshal:
   1.105 + * @closure: the #GClosure to which the marshaller belongs
   1.106 + * @return_value: a #GValue to store the return value. May be %NULL if the
   1.107 + *  callback of @closure doesn't return a value.
   1.108 + * @n_param_values: the length of the @param_values array
   1.109 + * @param_values: an array of #GValue<!-- -->s holding the arguments on
   1.110 + *  which to invoke the callback of @closure
   1.111 + * @invocation_hint: the invocation hint given as the last argument
   1.112 + *  to g_closure_invoke()
   1.113 + * @marshal_data: additional data specified when registering the marshaller,
   1.114 + *  see g_closure_set_marshal() and g_closure_set_meta_marshal()
   1.115 + * 
   1.116 + * The type used for marshaller functions.
   1.117 + */
   1.118 +typedef void  (*GClosureMarshal)	(GClosure	*closure,
   1.119 +					 GValue         *return_value,
   1.120 +					 guint           n_param_values,
   1.121 +					 const GValue   *param_values,
   1.122 +					 gpointer        invocation_hint,
   1.123 +					 gpointer	 marshal_data);
   1.124 +/**
   1.125 + * GCClosure:
   1.126 + * @closure: the #GClosure
   1.127 + * @callback: the callback function
   1.128 + * 
   1.129 + * A #GCClosure is a specialization of #GClosure for C function callbacks.
   1.130 + */
   1.131 +typedef struct _GCClosure		 GCClosure;
   1.132 +
   1.133 +
   1.134 +/* --- structures --- */
   1.135 +struct _GClosureNotifyData
   1.136 +{
   1.137 +  gpointer       data;
   1.138 +  GClosureNotify notify;
   1.139 +};
   1.140 +/**
   1.141 + * GClosure:
   1.142 + * @in_marshal: Indicates whether the closure is currently being invoked with 
   1.143 + *  g_closure_invoke()
   1.144 + * @is_invalid: Indicates whether the closure has been invalidated by 
   1.145 + *  g_closure_invalidate()
   1.146 + * 
   1.147 + * A #GClosure represents a callback supplied by the programmer.
   1.148 + */
   1.149 +struct _GClosure
   1.150 +{
   1.151 +  /*< private >*/
   1.152 +  volatile      	guint	 ref_count : 15;
   1.153 +  volatile       	guint	 meta_marshal : 1;
   1.154 +  volatile       	guint	 n_guards : 1;
   1.155 +  volatile       	guint	 n_fnotifiers : 2;	/* finalization notifiers */
   1.156 +  volatile       	guint	 n_inotifiers : 8;	/* invalidation notifiers */
   1.157 +  volatile       	guint	 in_inotify : 1;
   1.158 +  volatile       	guint	 floating : 1;
   1.159 +  /*< protected >*/
   1.160 +  volatile         	guint	 derivative_flag : 1;
   1.161 +  /*< public >*/
   1.162 +  volatile       	guint	 in_marshal : 1;
   1.163 +  volatile       	guint	 is_invalid : 1;
   1.164 +
   1.165 +  /*< private >*/	void   (*marshal)  (GClosure       *closure,
   1.166 +					    GValue /*out*/ *return_value,
   1.167 +					    guint           n_param_values,
   1.168 +					    const GValue   *param_values,
   1.169 +					    gpointer        invocation_hint,
   1.170 +					    gpointer	    marshal_data);
   1.171 +  /*< protected >*/	gpointer data;
   1.172 +
   1.173 +  /*< private >*/	GClosureNotifyData *notifiers;
   1.174 +
   1.175 +  /* invariants/constrains:
   1.176 +   * - ->marshal and ->data are _invalid_ as soon as ->is_invalid==TRUE
   1.177 +   * - invocation of all inotifiers occours prior to fnotifiers
   1.178 +   * - order of inotifiers is random
   1.179 +   *   inotifiers may _not_ free/invalidate parameter values (e.g. ->data)
   1.180 +   * - order of fnotifiers is random
   1.181 +   * - each notifier may only be removed before or during its invocation
   1.182 +   * - reference counting may only happen prior to fnotify invocation
   1.183 +   *   (in that sense, fnotifiers are really finalization handlers)
   1.184 +   */
   1.185 +};
   1.186 +/* closure for C function calls, callback() is the user function
   1.187 + */
   1.188 +struct _GCClosure
   1.189 +{
   1.190 +  GClosure	closure;
   1.191 +  gpointer	callback;
   1.192 +};
   1.193 +
   1.194 +
   1.195 +/* --- prototypes --- */
   1.196 +IMPORT_C GClosure* g_cclosure_new			(GCallback	callback_func,
   1.197 +						 gpointer	user_data,
   1.198 +						 GClosureNotify destroy_data);
   1.199 +IMPORT_C GClosure* g_cclosure_new_swap			(GCallback	callback_func,
   1.200 +						 gpointer	user_data,
   1.201 +						 GClosureNotify destroy_data);
   1.202 +IMPORT_C GClosure* g_signal_type_cclosure_new		(GType          itype,
   1.203 +						 guint          struct_offset);
   1.204 +
   1.205 +
   1.206 +/* --- prototypes --- */
   1.207 +IMPORT_C GClosure* g_closure_ref				(GClosure	*closure);
   1.208 +IMPORT_C void	  g_closure_sink			(GClosure	*closure);
   1.209 +IMPORT_C void	  g_closure_unref			(GClosure	*closure);
   1.210 +/* intimidating */
   1.211 +IMPORT_C GClosure* g_closure_new_simple			(guint		 sizeof_closure,
   1.212 +						 gpointer	 data);
   1.213 +IMPORT_C void	  g_closure_add_finalize_notifier	(GClosure       *closure,
   1.214 +						 gpointer	 notify_data,
   1.215 +						 GClosureNotify	 notify_func);
   1.216 +IMPORT_C void	  g_closure_remove_finalize_notifier	(GClosure       *closure,
   1.217 +						 gpointer	 notify_data,
   1.218 +						 GClosureNotify	 notify_func);
   1.219 +IMPORT_C void	  g_closure_add_invalidate_notifier	(GClosure       *closure,
   1.220 +						 gpointer	 notify_data,
   1.221 +						 GClosureNotify	 notify_func);
   1.222 +IMPORT_C void	  g_closure_remove_invalidate_notifier	(GClosure       *closure,
   1.223 +						 gpointer	 notify_data,
   1.224 +						 GClosureNotify	 notify_func);
   1.225 +IMPORT_C void	  g_closure_add_marshal_guards		(GClosure	*closure,
   1.226 +						 gpointer        pre_marshal_data,
   1.227 +						 GClosureNotify	 pre_marshal_notify,
   1.228 +						 gpointer        post_marshal_data,
   1.229 +						 GClosureNotify	 post_marshal_notify);
   1.230 +IMPORT_C void	  g_closure_set_marshal			(GClosure	*closure,
   1.231 +						 GClosureMarshal marshal);
   1.232 +IMPORT_C void	  g_closure_set_meta_marshal		(GClosure       *closure,
   1.233 +						 gpointer	 marshal_data,
   1.234 +						 GClosureMarshal meta_marshal);
   1.235 +IMPORT_C void	  g_closure_invalidate			(GClosure	*closure);
   1.236 +IMPORT_C void	  g_closure_invoke			(GClosure 	*closure,
   1.237 +						 GValue	/*out*/	*return_value,
   1.238 +						 guint		 n_param_values,
   1.239 +						 const GValue	*param_values,
   1.240 +						 gpointer	 invocation_hint);
   1.241 +
   1.242 +/* FIXME:
   1.243 +   OK:  data_object::destroy		-> closure_invalidate();
   1.244 +   MIS:	closure_invalidate()		-> disconnect(closure);
   1.245 +   MIS:	disconnect(closure)		-> (unlink) closure_unref();
   1.246 +   OK:	closure_finalize()		-> g_free (data_string);
   1.247 +
   1.248 +   random remarks:
   1.249 +   - need marshaller repo with decent aliasing to base types
   1.250 +   - provide marshaller collection, virtually covering anything out there
   1.251 +*/
   1.252 +
   1.253 +G_END_DECLS
   1.254 +
   1.255 +#endif /* __G_CLOSURE_H__ */