Move single-include guards inside include guards
[platform/upstream/glib.git] / gobject / gclosure.h
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2  * Copyright (C) 2000-2001 Red Hat, Inc.
3  * Copyright (C) 2005 Imendio AB
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20 #ifndef __G_CLOSURE_H__
21 #define __G_CLOSURE_H__
22
23 #if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
24 #error "Only <glib-object.h> can be included directly."
25 #endif
26
27 #include        <gobject/gtype.h>
28
29 G_BEGIN_DECLS
30
31 /* --- defines --- */
32 /**
33  * G_CLOSURE_NEEDS_MARSHAL:
34  * @closure: a #GClosure
35  * 
36  * Check if the closure still needs a marshaller. See g_closure_set_marshal().
37  *
38  * Returns: %TRUE if a #GClosureMarshal marshaller has not yet been set on 
39  * @closure.
40  */
41 #define G_CLOSURE_NEEDS_MARSHAL(closure) (((GClosure*) (closure))->marshal == NULL)
42 /**
43  * G_CLOSURE_N_NOTIFIERS:
44  * @cl: a #GClosure
45  * 
46  * Get the total number of notifiers connected with the closure @cl. 
47  * The count includes the meta marshaller, the finalize and invalidate notifiers 
48  * and the marshal guards. Note that each guard counts as two notifiers. 
49  * See g_closure_set_meta_marshal(), g_closure_add_finalize_notifier(),
50  * g_closure_add_invalidate_notifier() and g_closure_add_marshal_guards().
51  *
52  * Returns: number of notifiers
53  */
54 #define G_CLOSURE_N_NOTIFIERS(cl)        (((cl)->n_guards << 1L) + \
55                                           (cl)->n_fnotifiers + (cl)->n_inotifiers)
56 /**
57  * G_CCLOSURE_SWAP_DATA:
58  * @cclosure: a #GCClosure
59  * 
60  * Checks whether the user data of the #GCClosure should be passed as the
61  * first parameter to the callback. See g_cclosure_new_swap().
62  *
63  * Returns: %TRUE if data has to be swapped.
64  */
65 #define G_CCLOSURE_SWAP_DATA(cclosure)   (((GClosure*) (cclosure))->derivative_flag)
66 /**
67  * G_CALLBACK:
68  * @f: a function pointer.
69  * 
70  * Cast a function pointer to a #GCallback.
71  */
72 #define G_CALLBACK(f)                    ((GCallback) (f))
73
74
75 /* -- typedefs --- */
76 typedef struct _GClosure                 GClosure;
77 typedef struct _GClosureNotifyData       GClosureNotifyData;
78
79 /**
80  * GCallback:
81  * 
82  * The type used for callback functions in structure definitions and function 
83  * signatures. This doesn't mean that all callback functions must take no 
84  * parameters and return void. The required signature of a callback function 
85  * is determined by the context in which is used (e.g. the signal to which it 
86  * is connected). Use G_CALLBACK() to cast the callback function to a #GCallback. 
87  */
88 typedef void  (*GCallback)              (void);
89 /**
90  * GClosureNotify:
91  * @data: data specified when registering the notification callback
92  * @closure: the #GClosure on which the notification is emitted
93  * 
94  * The type used for the various notification callbacks which can be registered
95  * on closures.
96  */
97 typedef void  (*GClosureNotify)         (gpointer        data,
98                                          GClosure       *closure);
99 /**
100  * GClosureMarshal:
101  * @closure: the #GClosure to which the marshaller belongs
102  * @return_value: (allow-none): a #GValue to store the return
103  *  value. May be %NULL if the callback of @closure doesn't return a
104  *  value.
105  * @n_param_values: the length of the @param_values array
106  * @param_values: (array length=n_param_values): an array of
107  *  #GValue<!-- -->s holding the arguments on which to invoke the
108  *  callback of @closure
109  * @invocation_hint: (allow-none): the invocation hint given as the
110  *  last argument to g_closure_invoke()
111  * @marshal_data: (allow-none): additional data specified when
112  *  registering the marshaller, see g_closure_set_marshal() and
113  *  g_closure_set_meta_marshal()
114  * 
115  * The type used for marshaller functions.
116  */
117 typedef void  (*GClosureMarshal)        (GClosure       *closure,
118                                          GValue         *return_value,
119                                          guint           n_param_values,
120                                          const GValue   *param_values,
121                                          gpointer        invocation_hint,
122                                          gpointer        marshal_data);
123
124 typedef void (* GVaClosureMarshal) (GClosure *closure,
125                                     GValue   *return_value,
126                                     gpointer  instance,
127                                     va_list   args,
128                                     gpointer  marshal_data,
129                                     int       n_params,
130                                     GType    *param_types);
131
132 /**
133  * GCClosure:
134  * @closure: the #GClosure
135  * @callback: the callback function
136  * 
137  * A #GCClosure is a specialization of #GClosure for C function callbacks.
138  */
139 typedef struct _GCClosure                GCClosure;
140
141
142 /* --- structures --- */
143 struct _GClosureNotifyData
144 {
145   gpointer       data;
146   GClosureNotify notify;
147 };
148 /**
149  * GClosure:
150  * @in_marshal: Indicates whether the closure is currently being invoked with 
151  *  g_closure_invoke()
152  * @is_invalid: Indicates whether the closure has been invalidated by 
153  *  g_closure_invalidate()
154  * 
155  * A #GClosure represents a callback supplied by the programmer.
156  */
157 struct _GClosure
158 {
159   /*< private >*/
160   volatile              guint    ref_count : 15;
161   /* meta_marshal is not used anymore but must be zero for historical reasons
162      as it was exposed in the G_CLOSURE_N_NOTIFIERS macro */
163   volatile              guint    meta_marshal_nouse : 1;
164   volatile              guint    n_guards : 1;
165   volatile              guint    n_fnotifiers : 2;      /* finalization notifiers */
166   volatile              guint    n_inotifiers : 8;      /* invalidation notifiers */
167   volatile              guint    in_inotify : 1;
168   volatile              guint    floating : 1;
169   /*< protected >*/
170   volatile              guint    derivative_flag : 1;
171   /*< public >*/
172   volatile              guint    in_marshal : 1;
173   volatile              guint    is_invalid : 1;
174
175   /*< private >*/       void   (*marshal)  (GClosure       *closure,
176                                             GValue /*out*/ *return_value,
177                                             guint           n_param_values,
178                                             const GValue   *param_values,
179                                             gpointer        invocation_hint,
180                                             gpointer        marshal_data);
181   /*< protected >*/     gpointer data;
182
183   /*< private >*/       GClosureNotifyData *notifiers;
184
185   /* invariants/constrains:
186    * - ->marshal and ->data are _invalid_ as soon as ->is_invalid==TRUE
187    * - invocation of all inotifiers occours prior to fnotifiers
188    * - order of inotifiers is random
189    *   inotifiers may _not_ free/invalidate parameter values (e.g. ->data)
190    * - order of fnotifiers is random
191    * - each notifier may only be removed before or during its invocation
192    * - reference counting may only happen prior to fnotify invocation
193    *   (in that sense, fnotifiers are really finalization handlers)
194    */
195 };
196 /* closure for C function calls, callback() is the user function
197  */
198 struct _GCClosure
199 {
200   GClosure      closure;
201   gpointer      callback;
202 };
203
204
205 /* --- prototypes --- */
206 GClosure* g_cclosure_new                        (GCallback      callback_func,
207                                                  gpointer       user_data,
208                                                  GClosureNotify destroy_data);
209 GClosure* g_cclosure_new_swap                   (GCallback      callback_func,
210                                                  gpointer       user_data,
211                                                  GClosureNotify destroy_data);
212 GClosure* g_signal_type_cclosure_new            (GType          itype,
213                                                  guint          struct_offset);
214
215
216 /* --- prototypes --- */
217 GClosure* g_closure_ref                         (GClosure       *closure);
218 void      g_closure_sink                        (GClosure       *closure);
219 void      g_closure_unref                       (GClosure       *closure);
220 /* intimidating */
221 GClosure* g_closure_new_simple                  (guint           sizeof_closure,
222                                                  gpointer        data);
223 void      g_closure_add_finalize_notifier       (GClosure       *closure,
224                                                  gpointer        notify_data,
225                                                  GClosureNotify  notify_func);
226 void      g_closure_remove_finalize_notifier    (GClosure       *closure,
227                                                  gpointer        notify_data,
228                                                  GClosureNotify  notify_func);
229 void      g_closure_add_invalidate_notifier     (GClosure       *closure,
230                                                  gpointer        notify_data,
231                                                  GClosureNotify  notify_func);
232 void      g_closure_remove_invalidate_notifier  (GClosure       *closure,
233                                                  gpointer        notify_data,
234                                                  GClosureNotify  notify_func);
235 void      g_closure_add_marshal_guards          (GClosure       *closure,
236                                                  gpointer        pre_marshal_data,
237                                                  GClosureNotify  pre_marshal_notify,
238                                                  gpointer        post_marshal_data,
239                                                  GClosureNotify  post_marshal_notify);
240 void      g_closure_set_marshal                 (GClosure       *closure,
241                                                  GClosureMarshal marshal);
242 void      g_closure_set_meta_marshal            (GClosure       *closure,
243                                                  gpointer        marshal_data,
244                                                  GClosureMarshal meta_marshal);
245 void      g_closure_invalidate                  (GClosure       *closure);
246 void      g_closure_invoke                      (GClosure       *closure,
247                                                  GValue /*out*/ *return_value,
248                                                  guint           n_param_values,
249                                                  const GValue   *param_values,
250                                                  gpointer        invocation_hint);
251
252 /* FIXME:
253    OK:  data_object::destroy            -> closure_invalidate();
254    MIS: closure_invalidate()            -> disconnect(closure);
255    MIS: disconnect(closure)             -> (unlink) closure_unref();
256    OK:  closure_finalize()              -> g_free (data_string);
257
258    random remarks:
259    - need marshaller repo with decent aliasing to base types
260    - provide marshaller collection, virtually covering anything out there
261 */
262
263 void g_cclosure_marshal_generic (GClosure     *closure,
264                                  GValue       *return_gvalue,
265                                  guint         n_param_values,
266                                  const GValue *param_values,
267                                  gpointer      invocation_hint,
268                                  gpointer      marshal_data);
269
270 void g_cclosure_marshal_generic_va (GClosure *closure,
271                                     GValue   *return_value,
272                                     gpointer  instance,
273                                     va_list   args_list,
274                                     gpointer  marshal_data,
275                                     int       n_params,
276                                     GType    *param_types);
277
278
279 G_END_DECLS
280
281 #endif /* __G_CLOSURE_H__ */