1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 2001 Red Hat, Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General
15 * Public License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17 * Boston, MA 02111-1307, USA.
20 #include "gsourceclosure.h"
25 #include "gvaluetypes.h"
28 g_io_channel_get_type (void)
30 static GType our_type = 0;
33 our_type = g_boxed_type_register_static ("GIOChannel",
35 (GBoxedCopyFunc) g_io_channel_ref,
36 (GBoxedFreeFunc) g_io_channel_unref,
43 g_io_condition_get_type (void)
45 static GType etype = 0;
48 static const GFlagsValue values[] = {
49 { G_IO_IN, "G_IO_IN", "in" },
50 { G_IO_OUT, "G_IO_OUT", "out" },
51 { G_IO_PRI, "G_IO_PRI", "pri" },
52 { G_IO_ERR, "G_IO_ERR", "err" },
53 { G_IO_HUP, "G_IO_HUP", "hup" },
54 { G_IO_NVAL, "G_IO_NVAL", "nval" },
57 etype = g_flags_register_static ("GIOCondition", values);
62 /* We need to hand-write this marshaler, since it doesn't have an
66 source_closure_marshal_BOOLEAN__VOID (GClosure *closure,
69 const GValue *param_values,
70 gpointer invocation_hint,
71 gpointer marshal_data)
74 GCClosure *cc = (GCClosure*) closure;
77 g_return_if_fail (return_value != NULL);
78 g_return_if_fail (n_param_values == 0);
80 callback = (GSourceFunc) (marshal_data ? marshal_data : cc->callback);
82 v_return = callback (closure->data);
84 g_value_set_boolean (return_value, v_return);
88 io_watch_closure_callback (GIOChannel *channel,
89 GIOCondition condition,
92 GClosure *closure = data;
94 GValue params[2] = { { 0, }, { 0, } };
95 GValue result_value = { 0, };
98 g_value_init (&result_value, G_TYPE_BOOLEAN);
99 g_value_init (¶ms[0], G_TYPE_IO_CHANNEL);
100 g_value_set_boxed (¶ms[0], channel);
102 g_value_init (¶ms[1], G_TYPE_IO_CONDITION);
103 g_value_set_flags (¶ms[1], condition);
105 g_closure_invoke (closure, &result_value, 2, params, NULL);
107 result = g_value_get_boolean (&result_value);
108 g_value_unset (&result_value);
109 g_value_unset (¶ms[0]);
110 g_value_unset (¶ms[1]);
116 source_closure_callback (gpointer data)
118 GClosure *closure = data;
119 GValue result_value = { 0, };
122 g_value_init (&result_value, G_TYPE_BOOLEAN);
124 g_closure_invoke (closure, &result_value, 0, NULL, NULL);
126 result = g_value_get_boolean (&result_value);
127 g_value_unset (&result_value);
133 closure_callback_get (gpointer cb_data,
138 GSourceFunc closure_callback = source->source_funcs->closure_callback;
140 if (!closure_callback)
142 if (source->source_funcs == &g_io_watch_funcs)
143 closure_callback = (GSourceFunc)io_watch_closure_callback;
144 else if (source->source_funcs == &g_timeout_funcs ||
145 source->source_funcs == &g_idle_funcs)
146 closure_callback = source_closure_callback;
149 *func = closure_callback;
153 GSourceCallbackFuncs closure_callback_funcs = {
154 (void (*) (gpointer)) g_closure_ref,
155 (void (*) (gpointer)) g_closure_unref,
160 * g_source_set_callback:
161 * @source: the source
164 * Set the callback for a source as a #GClosure.
166 * If the source is not one of the standard GLib types, the closure_callback
167 * and closure_marshal fields of the GSourceFuncs structure must have been
168 * filled in with pointers to appropriate functions.
171 g_source_set_closure (GSource *source,
174 if (!source->source_funcs->closure_callback &&
175 source->source_funcs != &g_io_watch_funcs &&
176 source->source_funcs != &g_timeout_funcs &&
177 source->source_funcs != &g_idle_funcs)
179 g_critical (G_STRLOC "closure can not be set on closure without GSourceFuncs::closure_callback\n");
183 g_closure_ref (closure);
184 g_closure_sink (closure);
185 g_source_set_callback_indirect (source, closure, &closure_callback_funcs);
187 if (G_CLOSURE_NEEDS_MARSHAL (closure))
189 GClosureMarshal marshal = (GClosureMarshal)source->source_funcs->closure_marshal;
192 if (source->source_funcs == &g_idle_funcs ||
193 source->source_funcs == &g_timeout_funcs)
194 marshal = source_closure_marshal_BOOLEAN__VOID;
195 else if (source->source_funcs == &g_io_watch_funcs)
196 marshal = g_cclosure_marshal_BOOLEAN__FLAGS;
199 g_closure_set_marshal (closure, marshal);