sl@0
|
1 |
/* -*- mode: C; c-file-style: "gnu" -*- */
|
sl@0
|
2 |
/* dbus-binding-tool-glib.c: Output C glue
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* Copyright (C) 2003, 2004, 2005 Red Hat, Inc.
|
sl@0
|
5 |
* Copyright (C) 2005 Nokia
|
sl@0
|
6 |
* Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
7 |
* Licensed under the Academic Free License version 2.1
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This program is free software; you can redistribute it and/or modify
|
sl@0
|
10 |
* it under the terms of the GNU General Public License as published by
|
sl@0
|
11 |
* the Free Software Foundation; either version 2 of the License, or
|
sl@0
|
12 |
* (at your option) any later version.
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* This program is distributed in the hope that it will be useful,
|
sl@0
|
15 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
16 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
sl@0
|
17 |
* GNU General Public License for more details.
|
sl@0
|
18 |
*
|
sl@0
|
19 |
* You should have received a copy of the GNU General Public License
|
sl@0
|
20 |
* along with this program; if not, write to the Free Software
|
sl@0
|
21 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
sl@0
|
22 |
*
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
|
sl@0
|
25 |
#ifndef __SYMBIAN32__
|
sl@0
|
26 |
#include <config.h>
|
sl@0
|
27 |
#else
|
sl@0
|
28 |
#include "config.h"
|
sl@0
|
29 |
#endif //__SYMBIAN32__
|
sl@0
|
30 |
#include "dbus/dbus-glib.h"
|
sl@0
|
31 |
#include "dbus-gidl.h"
|
sl@0
|
32 |
#include "dbus-gparser.h"
|
sl@0
|
33 |
#include "dbus-gutils.h"
|
sl@0
|
34 |
#include "dbus-gtype-specialized.h"
|
sl@0
|
35 |
#include "dbus-gsignature.h"
|
sl@0
|
36 |
#include "dbus-gvalue-utils.h"
|
sl@0
|
37 |
#include "dbus-glib-tool.h"
|
sl@0
|
38 |
#include "dbus-binding-tool-glib.h"
|
sl@0
|
39 |
|
sl@0
|
40 |
#ifndef __SYMBIAN32__
|
sl@0
|
41 |
#include <glib/gi18n.h>
|
sl@0
|
42 |
#include <libintl.h>
|
sl@0
|
43 |
#define _(x) dgettext (GETTEXT_PACKAGE, x)
|
sl@0
|
44 |
#define N_(x) x
|
sl@0
|
45 |
#else
|
sl@0
|
46 |
|
sl@0
|
47 |
#define _(x) x
|
sl@0
|
48 |
#define N_(x) x
|
sl@0
|
49 |
#endif
|
sl@0
|
50 |
|
sl@0
|
51 |
#include <stdio.h>
|
sl@0
|
52 |
#include <stdlib.h>
|
sl@0
|
53 |
#include <string.h>
|
sl@0
|
54 |
#include <unistd.h>
|
sl@0
|
55 |
|
sl@0
|
56 |
#define MARSHAL_PREFIX "dbus_glib_marshal_"
|
sl@0
|
57 |
|
sl@0
|
58 |
typedef struct
|
sl@0
|
59 |
{
|
sl@0
|
60 |
gboolean ignore_unsupported;
|
sl@0
|
61 |
const char* prefix;
|
sl@0
|
62 |
GIOChannel *channel;
|
sl@0
|
63 |
|
sl@0
|
64 |
GError **error;
|
sl@0
|
65 |
|
sl@0
|
66 |
GHashTable *generated;
|
sl@0
|
67 |
GString *blob;
|
sl@0
|
68 |
GString *signal_blob;
|
sl@0
|
69 |
GString *property_blob;
|
sl@0
|
70 |
guint count;
|
sl@0
|
71 |
} DBusBindingToolCData;
|
sl@0
|
72 |
|
sl@0
|
73 |
static gboolean gather_marshallers (BaseInfo *base, DBusBindingToolCData *data, GError **error);
|
sl@0
|
74 |
static gboolean generate_glue (BaseInfo *base, DBusBindingToolCData *data, GError **error);
|
sl@0
|
75 |
static gboolean generate_client_glue (BaseInfo *base, DBusBindingToolCData *data, GError **error);
|
sl@0
|
76 |
|
sl@0
|
77 |
static const char *
|
sl@0
|
78 |
dbus_g_type_get_marshal_name (GType gtype)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
switch (G_TYPE_FUNDAMENTAL (gtype))
|
sl@0
|
81 |
{
|
sl@0
|
82 |
case G_TYPE_NONE:
|
sl@0
|
83 |
return "NONE";
|
sl@0
|
84 |
case G_TYPE_BOOLEAN:
|
sl@0
|
85 |
return "BOOLEAN";
|
sl@0
|
86 |
case G_TYPE_UCHAR:
|
sl@0
|
87 |
return "UCHAR";
|
sl@0
|
88 |
case G_TYPE_INT:
|
sl@0
|
89 |
return "INT";
|
sl@0
|
90 |
case G_TYPE_UINT:
|
sl@0
|
91 |
return "UINT";
|
sl@0
|
92 |
case G_TYPE_INT64:
|
sl@0
|
93 |
return "INT64";
|
sl@0
|
94 |
case G_TYPE_UINT64:
|
sl@0
|
95 |
return "UINT64";
|
sl@0
|
96 |
case G_TYPE_DOUBLE:
|
sl@0
|
97 |
return "DOUBLE";
|
sl@0
|
98 |
case G_TYPE_STRING:
|
sl@0
|
99 |
return "STRING";
|
sl@0
|
100 |
case G_TYPE_POINTER:
|
sl@0
|
101 |
return "POINTER";
|
sl@0
|
102 |
case G_TYPE_BOXED:
|
sl@0
|
103 |
return "BOXED";
|
sl@0
|
104 |
case G_TYPE_OBJECT:
|
sl@0
|
105 |
return "OBJECT";
|
sl@0
|
106 |
default:
|
sl@0
|
107 |
return NULL;
|
sl@0
|
108 |
}
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
/* This entire function is kind of...ugh. */
|
sl@0
|
112 |
static const char *
|
sl@0
|
113 |
dbus_g_type_get_c_name (GType gtype)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
GType subtype;
|
sl@0
|
116 |
if (dbus_g_type_is_struct (gtype))
|
sl@0
|
117 |
{
|
sl@0
|
118 |
return "GValueArray";
|
sl@0
|
119 |
}
|
sl@0
|
120 |
if (dbus_g_type_is_collection (gtype))
|
sl@0
|
121 |
{
|
sl@0
|
122 |
subtype = dbus_g_type_get_collection_specialization(gtype);
|
sl@0
|
123 |
if (_dbus_g_type_is_fixed (subtype))
|
sl@0
|
124 |
return "GArray";
|
sl@0
|
125 |
else
|
sl@0
|
126 |
return "GPtrArray";
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
if (dbus_g_type_is_map (gtype))
|
sl@0
|
130 |
return "GHashTable";
|
sl@0
|
131 |
|
sl@0
|
132 |
if (g_type_is_a (gtype, G_TYPE_STRING))
|
sl@0
|
133 |
return "char *";
|
sl@0
|
134 |
|
sl@0
|
135 |
/* This one is even more hacky...we get an extra *
|
sl@0
|
136 |
* because G_TYPE_STRV is a G_TYPE_BOXED
|
sl@0
|
137 |
*/
|
sl@0
|
138 |
if (g_type_is_a (gtype, G_TYPE_STRV))
|
sl@0
|
139 |
return "char *";
|
sl@0
|
140 |
|
sl@0
|
141 |
if (g_type_is_a (gtype, DBUS_TYPE_G_OBJECT_PATH))
|
sl@0
|
142 |
return "char";
|
sl@0
|
143 |
|
sl@0
|
144 |
return g_type_name (gtype);
|
sl@0
|
145 |
}
|
sl@0
|
146 |
|
sl@0
|
147 |
static gboolean
|
sl@0
|
148 |
compute_gsignature (MethodInfo *method, GType *rettype, GArray **params, GError **error)
|
sl@0
|
149 |
{
|
sl@0
|
150 |
GSList *elt;
|
sl@0
|
151 |
GType retval_type;
|
sl@0
|
152 |
GArray *ret;
|
sl@0
|
153 |
gboolean is_async;
|
sl@0
|
154 |
const char *arg_type;
|
sl@0
|
155 |
gboolean retval_signals_error;
|
sl@0
|
156 |
|
sl@0
|
157 |
is_async = method_info_get_annotation (method, DBUS_GLIB_ANNOTATION_ASYNC) != NULL;
|
sl@0
|
158 |
retval_signals_error = FALSE;
|
sl@0
|
159 |
|
sl@0
|
160 |
ret = g_array_new (TRUE, TRUE, sizeof (GType));
|
sl@0
|
161 |
|
sl@0
|
162 |
if (is_async)
|
sl@0
|
163 |
retval_type = G_TYPE_NONE;
|
sl@0
|
164 |
else
|
sl@0
|
165 |
{
|
sl@0
|
166 |
gboolean found_retval;
|
sl@0
|
167 |
|
sl@0
|
168 |
/* Look for return value */
|
sl@0
|
169 |
found_retval = FALSE;
|
sl@0
|
170 |
for (elt = method_info_get_args (method); elt; elt = elt->next)
|
sl@0
|
171 |
{
|
sl@0
|
172 |
ArgInfo *arg = elt->data;
|
sl@0
|
173 |
const char *returnval_annotation;
|
sl@0
|
174 |
|
sl@0
|
175 |
returnval_annotation = arg_info_get_annotation (arg, DBUS_GLIB_ANNOTATION_RETURNVAL);
|
sl@0
|
176 |
if (returnval_annotation != NULL)
|
sl@0
|
177 |
{
|
sl@0
|
178 |
arg_type = arg_info_get_type (arg);
|
sl@0
|
179 |
retval_type = _dbus_gtype_from_signature (arg_type, FALSE);
|
sl@0
|
180 |
if (retval_type == G_TYPE_INVALID)
|
sl@0
|
181 |
goto invalid_type;
|
sl@0
|
182 |
found_retval = TRUE;
|
sl@0
|
183 |
if (!strcmp (returnval_annotation, "error"))
|
sl@0
|
184 |
retval_signals_error = TRUE;
|
sl@0
|
185 |
break;
|
sl@0
|
186 |
}
|
sl@0
|
187 |
}
|
sl@0
|
188 |
if (!found_retval)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
retval_type = G_TYPE_BOOLEAN;
|
sl@0
|
191 |
retval_signals_error = TRUE;
|
sl@0
|
192 |
}
|
sl@0
|
193 |
}
|
sl@0
|
194 |
|
sl@0
|
195 |
*rettype = retval_type;
|
sl@0
|
196 |
|
sl@0
|
197 |
/* Handle all input arguments */
|
sl@0
|
198 |
for (elt = method_info_get_args (method); elt; elt = elt->next)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
ArgInfo *arg = elt->data;
|
sl@0
|
201 |
if (arg_info_get_direction (arg) == ARG_IN)
|
sl@0
|
202 |
{
|
sl@0
|
203 |
GType gtype;
|
sl@0
|
204 |
|
sl@0
|
205 |
arg_type = arg_info_get_type (arg);
|
sl@0
|
206 |
gtype = _dbus_gtype_from_signature (arg_type, FALSE);
|
sl@0
|
207 |
if (gtype == G_TYPE_INVALID)
|
sl@0
|
208 |
goto invalid_type;
|
sl@0
|
209 |
|
sl@0
|
210 |
g_array_append_val (ret, gtype);
|
sl@0
|
211 |
}
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
if (!is_async)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
/* Append pointer for each out arg storage */
|
sl@0
|
217 |
for (elt = method_info_get_args (method); elt; elt = elt->next)
|
sl@0
|
218 |
{
|
sl@0
|
219 |
ArgInfo *arg = elt->data;
|
sl@0
|
220 |
|
sl@0
|
221 |
/* Skip return value */
|
sl@0
|
222 |
if (arg_info_get_annotation (arg, DBUS_GLIB_ANNOTATION_RETURNVAL) != NULL)
|
sl@0
|
223 |
continue;
|
sl@0
|
224 |
|
sl@0
|
225 |
if (arg_info_get_direction (arg) == ARG_OUT)
|
sl@0
|
226 |
{
|
sl@0
|
227 |
GType gtype;
|
sl@0
|
228 |
arg_type = arg_info_get_type (arg);
|
sl@0
|
229 |
gtype = _dbus_gtype_from_signature (arg_type, FALSE);
|
sl@0
|
230 |
if (gtype == G_TYPE_INVALID)
|
sl@0
|
231 |
goto invalid_type;
|
sl@0
|
232 |
/* We actually just need a pointer for the return value
|
sl@0
|
233 |
storage */
|
sl@0
|
234 |
gtype = G_TYPE_POINTER;
|
sl@0
|
235 |
g_array_append_val (ret, gtype);
|
sl@0
|
236 |
}
|
sl@0
|
237 |
}
|
sl@0
|
238 |
|
sl@0
|
239 |
if (retval_signals_error)
|
sl@0
|
240 |
{
|
sl@0
|
241 |
/* Final GError parameter */
|
sl@0
|
242 |
GType gtype = G_TYPE_POINTER;
|
sl@0
|
243 |
g_array_append_val (ret, gtype);
|
sl@0
|
244 |
}
|
sl@0
|
245 |
}
|
sl@0
|
246 |
else
|
sl@0
|
247 |
{
|
sl@0
|
248 |
/* Context pointer */
|
sl@0
|
249 |
GType gtype = G_TYPE_POINTER;
|
sl@0
|
250 |
g_array_append_val (ret, gtype);
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
*params = ret;
|
sl@0
|
254 |
return TRUE;
|
sl@0
|
255 |
|
sl@0
|
256 |
invalid_type:
|
sl@0
|
257 |
g_set_error (error,
|
sl@0
|
258 |
DBUS_BINDING_TOOL_ERROR,
|
sl@0
|
259 |
DBUS_BINDING_TOOL_ERROR_UNSUPPORTED_CONVERSION,
|
sl@0
|
260 |
_("Unsupported conversion from D-BUS type %s to glib-genmarshal type"),
|
sl@0
|
261 |
arg_type);
|
sl@0
|
262 |
return FALSE;
|
sl@0
|
263 |
}
|
sl@0
|
264 |
|
sl@0
|
265 |
|
sl@0
|
266 |
static char *
|
sl@0
|
267 |
compute_marshaller (MethodInfo *method, GError **error)
|
sl@0
|
268 |
{
|
sl@0
|
269 |
GArray *signature;
|
sl@0
|
270 |
GType rettype;
|
sl@0
|
271 |
const char *marshal_name;
|
sl@0
|
272 |
GString *ret;
|
sl@0
|
273 |
guint i;
|
sl@0
|
274 |
|
sl@0
|
275 |
if (!compute_gsignature (method, &rettype, &signature, error))
|
sl@0
|
276 |
return NULL;
|
sl@0
|
277 |
|
sl@0
|
278 |
ret = g_string_new ("");
|
sl@0
|
279 |
marshal_name = dbus_g_type_get_marshal_name (rettype);
|
sl@0
|
280 |
g_assert (marshal_name != NULL);
|
sl@0
|
281 |
g_string_append (ret, marshal_name);
|
sl@0
|
282 |
g_string_append_c (ret, ':');
|
sl@0
|
283 |
for (i = 0; i < signature->len; i++)
|
sl@0
|
284 |
{
|
sl@0
|
285 |
marshal_name = dbus_g_type_get_marshal_name (g_array_index (signature, GType, i));
|
sl@0
|
286 |
g_assert (marshal_name != NULL);
|
sl@0
|
287 |
g_string_append (ret, marshal_name);
|
sl@0
|
288 |
if (i < signature->len - 1)
|
sl@0
|
289 |
g_string_append_c (ret, ',');
|
sl@0
|
290 |
}
|
sl@0
|
291 |
if (signature->len == 0)
|
sl@0
|
292 |
{
|
sl@0
|
293 |
marshal_name = dbus_g_type_get_marshal_name (G_TYPE_NONE);
|
sl@0
|
294 |
g_assert (marshal_name != NULL);
|
sl@0
|
295 |
g_string_append (ret, marshal_name);
|
sl@0
|
296 |
}
|
sl@0
|
297 |
g_array_free (signature, TRUE);
|
sl@0
|
298 |
return g_string_free (ret, FALSE);
|
sl@0
|
299 |
}
|
sl@0
|
300 |
|
sl@0
|
301 |
static char *
|
sl@0
|
302 |
compute_marshaller_name (MethodInfo *method, const char *prefix, GError **error)
|
sl@0
|
303 |
{
|
sl@0
|
304 |
GString *ret;
|
sl@0
|
305 |
GArray *signature;
|
sl@0
|
306 |
GType rettype;
|
sl@0
|
307 |
const char *marshal_name;
|
sl@0
|
308 |
guint i;
|
sl@0
|
309 |
|
sl@0
|
310 |
if (!compute_gsignature (method, &rettype, &signature, error))
|
sl@0
|
311 |
return NULL;
|
sl@0
|
312 |
|
sl@0
|
313 |
ret = g_string_new (MARSHAL_PREFIX);
|
sl@0
|
314 |
g_string_append (ret, prefix);
|
sl@0
|
315 |
g_string_append_c (ret, '_');
|
sl@0
|
316 |
|
sl@0
|
317 |
marshal_name = dbus_g_type_get_marshal_name (rettype);
|
sl@0
|
318 |
g_assert (marshal_name != NULL);
|
sl@0
|
319 |
g_string_append (ret, marshal_name);
|
sl@0
|
320 |
g_string_append (ret, "__");
|
sl@0
|
321 |
for (i = 0; i < signature->len; i++)
|
sl@0
|
322 |
{
|
sl@0
|
323 |
marshal_name = dbus_g_type_get_marshal_name (g_array_index (signature, GType, i));
|
sl@0
|
324 |
g_assert (marshal_name != NULL);
|
sl@0
|
325 |
g_string_append (ret, marshal_name);
|
sl@0
|
326 |
if (i < signature->len - 1)
|
sl@0
|
327 |
g_string_append_c (ret, '_');
|
sl@0
|
328 |
}
|
sl@0
|
329 |
if (signature->len == 0)
|
sl@0
|
330 |
{
|
sl@0
|
331 |
marshal_name = dbus_g_type_get_marshal_name (G_TYPE_NONE);
|
sl@0
|
332 |
g_assert (marshal_name != NULL);
|
sl@0
|
333 |
g_string_append (ret, marshal_name);
|
sl@0
|
334 |
}
|
sl@0
|
335 |
g_array_free (signature, TRUE);
|
sl@0
|
336 |
return g_string_free (ret, FALSE);
|
sl@0
|
337 |
}
|
sl@0
|
338 |
|
sl@0
|
339 |
static gboolean
|
sl@0
|
340 |
gather_marshallers_list (GSList *list, DBusBindingToolCData *data, GError **error)
|
sl@0
|
341 |
{
|
sl@0
|
342 |
GSList *tmp;
|
sl@0
|
343 |
|
sl@0
|
344 |
tmp = list;
|
sl@0
|
345 |
while (tmp != NULL)
|
sl@0
|
346 |
{
|
sl@0
|
347 |
if (!gather_marshallers (tmp->data, data, error))
|
sl@0
|
348 |
return FALSE;
|
sl@0
|
349 |
tmp = tmp->next;
|
sl@0
|
350 |
}
|
sl@0
|
351 |
return TRUE;
|
sl@0
|
352 |
}
|
sl@0
|
353 |
|
sl@0
|
354 |
static gboolean
|
sl@0
|
355 |
gather_marshallers (BaseInfo *base, DBusBindingToolCData *data, GError **error)
|
sl@0
|
356 |
{
|
sl@0
|
357 |
if (base_info_get_type (base) == INFO_TYPE_NODE)
|
sl@0
|
358 |
{
|
sl@0
|
359 |
if (!gather_marshallers_list (node_info_get_nodes ((NodeInfo *) base),
|
sl@0
|
360 |
data, error))
|
sl@0
|
361 |
return FALSE;
|
sl@0
|
362 |
if (!gather_marshallers_list (node_info_get_interfaces ((NodeInfo *) base),
|
sl@0
|
363 |
data, error))
|
sl@0
|
364 |
return FALSE;
|
sl@0
|
365 |
}
|
sl@0
|
366 |
else
|
sl@0
|
367 |
{
|
sl@0
|
368 |
InterfaceInfo *interface;
|
sl@0
|
369 |
GSList *methods;
|
sl@0
|
370 |
GSList *tmp;
|
sl@0
|
371 |
const char *interface_c_name;
|
sl@0
|
372 |
|
sl@0
|
373 |
interface = (InterfaceInfo *) base;
|
sl@0
|
374 |
interface_c_name = interface_info_get_annotation (interface, DBUS_GLIB_ANNOTATION_C_SYMBOL);
|
sl@0
|
375 |
if (interface_c_name == NULL)
|
sl@0
|
376 |
{
|
sl@0
|
377 |
if (!data->prefix)
|
sl@0
|
378 |
return TRUE;
|
sl@0
|
379 |
}
|
sl@0
|
380 |
|
sl@0
|
381 |
methods = interface_info_get_methods (interface);
|
sl@0
|
382 |
|
sl@0
|
383 |
/* Generate the necessary marshallers for the methods. */
|
sl@0
|
384 |
|
sl@0
|
385 |
for (tmp = methods; tmp != NULL; tmp = g_slist_next (tmp))
|
sl@0
|
386 |
{
|
sl@0
|
387 |
MethodInfo *method;
|
sl@0
|
388 |
char *marshaller_name;
|
sl@0
|
389 |
|
sl@0
|
390 |
method = (MethodInfo *) tmp->data;
|
sl@0
|
391 |
|
sl@0
|
392 |
marshaller_name = compute_marshaller (method, error);
|
sl@0
|
393 |
if (!marshaller_name)
|
sl@0
|
394 |
return FALSE;
|
sl@0
|
395 |
|
sl@0
|
396 |
if (g_hash_table_lookup (data->generated, marshaller_name))
|
sl@0
|
397 |
{
|
sl@0
|
398 |
g_free (marshaller_name);
|
sl@0
|
399 |
continue;
|
sl@0
|
400 |
}
|
sl@0
|
401 |
|
sl@0
|
402 |
g_hash_table_insert (data->generated, marshaller_name, NULL);
|
sl@0
|
403 |
}
|
sl@0
|
404 |
|
sl@0
|
405 |
}
|
sl@0
|
406 |
return TRUE;
|
sl@0
|
407 |
}
|
sl@0
|
408 |
|
sl@0
|
409 |
static gboolean
|
sl@0
|
410 |
generate_glue_list (GSList *list, DBusBindingToolCData *data, GError **error)
|
sl@0
|
411 |
{
|
sl@0
|
412 |
GSList *tmp;
|
sl@0
|
413 |
|
sl@0
|
414 |
tmp = list;
|
sl@0
|
415 |
while (tmp != NULL)
|
sl@0
|
416 |
{
|
sl@0
|
417 |
if (!generate_glue (tmp->data, data, error))
|
sl@0
|
418 |
return FALSE;
|
sl@0
|
419 |
tmp = tmp->next;
|
sl@0
|
420 |
}
|
sl@0
|
421 |
return TRUE;
|
sl@0
|
422 |
}
|
sl@0
|
423 |
|
sl@0
|
424 |
#define WRITE_OR_LOSE(x) do { gsize bytes_written; if (!g_io_channel_write_chars (channel, x, -1, &bytes_written, error)) goto io_lose; } while (0)
|
sl@0
|
425 |
|
sl@0
|
426 |
static gboolean
|
sl@0
|
427 |
write_printf_to_iochannel (const char *fmt, GIOChannel *channel, GError **error, ...)
|
sl@0
|
428 |
{
|
sl@0
|
429 |
char *str;
|
sl@0
|
430 |
va_list args;
|
sl@0
|
431 |
GIOStatus status;
|
sl@0
|
432 |
gsize written;
|
sl@0
|
433 |
gboolean ret;
|
sl@0
|
434 |
|
sl@0
|
435 |
va_start (args, error);
|
sl@0
|
436 |
|
sl@0
|
437 |
str = g_strdup_vprintf (fmt, args);
|
sl@0
|
438 |
if ((status = g_io_channel_write_chars (channel, str, -1, &written, error)) == G_IO_STATUS_NORMAL)
|
sl@0
|
439 |
ret = TRUE;
|
sl@0
|
440 |
else
|
sl@0
|
441 |
ret = FALSE;
|
sl@0
|
442 |
|
sl@0
|
443 |
g_free (str);
|
sl@0
|
444 |
|
sl@0
|
445 |
va_end (args);
|
sl@0
|
446 |
|
sl@0
|
447 |
return ret;
|
sl@0
|
448 |
}
|
sl@0
|
449 |
|
sl@0
|
450 |
static gboolean
|
sl@0
|
451 |
write_quoted_string (GIOChannel *channel, GString *string, GError **error)
|
sl@0
|
452 |
{
|
sl@0
|
453 |
guint i;
|
sl@0
|
454 |
|
sl@0
|
455 |
WRITE_OR_LOSE ("\"");
|
sl@0
|
456 |
for (i = 0; i < string->len; i++)
|
sl@0
|
457 |
{
|
sl@0
|
458 |
if (string->str[i] != '\0')
|
sl@0
|
459 |
{
|
sl@0
|
460 |
if (!g_io_channel_write_chars (channel, string->str + i, 1, NULL, error))
|
sl@0
|
461 |
return FALSE;
|
sl@0
|
462 |
}
|
sl@0
|
463 |
else
|
sl@0
|
464 |
{
|
sl@0
|
465 |
if (!g_io_channel_write_chars (channel, "\\0", -1, NULL, error))
|
sl@0
|
466 |
return FALSE;
|
sl@0
|
467 |
}
|
sl@0
|
468 |
}
|
sl@0
|
469 |
WRITE_OR_LOSE ("\\0\"");
|
sl@0
|
470 |
return TRUE;
|
sl@0
|
471 |
io_lose:
|
sl@0
|
472 |
return FALSE;
|
sl@0
|
473 |
}
|
sl@0
|
474 |
|
sl@0
|
475 |
static gboolean
|
sl@0
|
476 |
generate_glue (BaseInfo *base, DBusBindingToolCData *data, GError **error)
|
sl@0
|
477 |
{
|
sl@0
|
478 |
if (base_info_get_type (base) == INFO_TYPE_NODE)
|
sl@0
|
479 |
{
|
sl@0
|
480 |
GString *object_introspection_data_blob;
|
sl@0
|
481 |
GIOChannel *channel;
|
sl@0
|
482 |
|
sl@0
|
483 |
channel = data->channel;
|
sl@0
|
484 |
|
sl@0
|
485 |
object_introspection_data_blob = g_string_new_len ("", 0);
|
sl@0
|
486 |
|
sl@0
|
487 |
data->blob = object_introspection_data_blob;
|
sl@0
|
488 |
data->count = 0;
|
sl@0
|
489 |
|
sl@0
|
490 |
data->signal_blob = g_string_new_len ("", 0);
|
sl@0
|
491 |
data->property_blob = g_string_new_len ("", 0);
|
sl@0
|
492 |
|
sl@0
|
493 |
if (!write_printf_to_iochannel ("static const DBusGMethodInfo dbus_glib_%s_methods[] = {\n", channel, error, data->prefix))
|
sl@0
|
494 |
goto io_lose;
|
sl@0
|
495 |
|
sl@0
|
496 |
if (!generate_glue_list (node_info_get_nodes ((NodeInfo *) base),
|
sl@0
|
497 |
data, error))
|
sl@0
|
498 |
return FALSE;
|
sl@0
|
499 |
if (!generate_glue_list (node_info_get_interfaces ((NodeInfo *) base),
|
sl@0
|
500 |
data, error))
|
sl@0
|
501 |
return FALSE;
|
sl@0
|
502 |
|
sl@0
|
503 |
WRITE_OR_LOSE ("};\n\n");
|
sl@0
|
504 |
|
sl@0
|
505 |
/* Information about the object. */
|
sl@0
|
506 |
|
sl@0
|
507 |
if (!write_printf_to_iochannel ("const DBusGObjectInfo dbus_glib_%s_object_info = {\n",
|
sl@0
|
508 |
channel, error, data->prefix))
|
sl@0
|
509 |
goto io_lose;
|
sl@0
|
510 |
WRITE_OR_LOSE (" 0,\n");
|
sl@0
|
511 |
if (!write_printf_to_iochannel (" dbus_glib_%s_methods,\n", channel, error, data->prefix))
|
sl@0
|
512 |
goto io_lose;
|
sl@0
|
513 |
if (!write_printf_to_iochannel (" %d,\n", channel, error, data->count))
|
sl@0
|
514 |
goto io_lose;
|
sl@0
|
515 |
|
sl@0
|
516 |
if (!write_quoted_string (channel, object_introspection_data_blob, error))
|
sl@0
|
517 |
goto io_lose;
|
sl@0
|
518 |
WRITE_OR_LOSE (",\n");
|
sl@0
|
519 |
if (!write_quoted_string (channel, data->signal_blob, error))
|
sl@0
|
520 |
goto io_lose;
|
sl@0
|
521 |
WRITE_OR_LOSE (",\n");
|
sl@0
|
522 |
if (!write_quoted_string (channel, data->property_blob, error))
|
sl@0
|
523 |
goto io_lose;
|
sl@0
|
524 |
WRITE_OR_LOSE ("\n};\n\n");
|
sl@0
|
525 |
|
sl@0
|
526 |
g_string_free (object_introspection_data_blob, TRUE);
|
sl@0
|
527 |
g_string_free (data->signal_blob, TRUE);
|
sl@0
|
528 |
g_string_free (data->property_blob, TRUE);
|
sl@0
|
529 |
}
|
sl@0
|
530 |
else
|
sl@0
|
531 |
{
|
sl@0
|
532 |
GIOChannel *channel;
|
sl@0
|
533 |
InterfaceInfo *interface;
|
sl@0
|
534 |
GSList *methods;
|
sl@0
|
535 |
GSList *signals;
|
sl@0
|
536 |
GSList *properties;
|
sl@0
|
537 |
GSList *tmp;
|
sl@0
|
538 |
const char *interface_c_name;
|
sl@0
|
539 |
GString *object_introspection_data_blob;
|
sl@0
|
540 |
|
sl@0
|
541 |
channel = data->channel;
|
sl@0
|
542 |
object_introspection_data_blob = data->blob;
|
sl@0
|
543 |
|
sl@0
|
544 |
interface = (InterfaceInfo *) base;
|
sl@0
|
545 |
interface_c_name = interface_info_get_annotation (interface, DBUS_GLIB_ANNOTATION_C_SYMBOL);
|
sl@0
|
546 |
if (interface_c_name == NULL)
|
sl@0
|
547 |
{
|
sl@0
|
548 |
if (data->prefix == NULL)
|
sl@0
|
549 |
return TRUE;
|
sl@0
|
550 |
interface_c_name = data->prefix;
|
sl@0
|
551 |
}
|
sl@0
|
552 |
|
sl@0
|
553 |
methods = interface_info_get_methods (interface);
|
sl@0
|
554 |
|
sl@0
|
555 |
/* Table of marshalled methods. */
|
sl@0
|
556 |
|
sl@0
|
557 |
for (tmp = methods; tmp != NULL; tmp = g_slist_next (tmp))
|
sl@0
|
558 |
{
|
sl@0
|
559 |
MethodInfo *method;
|
sl@0
|
560 |
char *marshaller_name;
|
sl@0
|
561 |
char *method_c_name;
|
sl@0
|
562 |
gboolean async = FALSE;
|
sl@0
|
563 |
GSList *args;
|
sl@0
|
564 |
gboolean found_retval = FALSE;
|
sl@0
|
565 |
|
sl@0
|
566 |
method = (MethodInfo *) tmp->data;
|
sl@0
|
567 |
method_c_name = g_strdup (method_info_get_annotation (method, DBUS_GLIB_ANNOTATION_C_SYMBOL));
|
sl@0
|
568 |
if (method_c_name == NULL)
|
sl@0
|
569 |
{
|
sl@0
|
570 |
char *method_name_uscored;
|
sl@0
|
571 |
method_name_uscored = _dbus_gutils_wincaps_to_uscore (method_info_get_name (method));
|
sl@0
|
572 |
method_c_name = g_strdup_printf ("%s_%s",
|
sl@0
|
573 |
interface_c_name,
|
sl@0
|
574 |
method_name_uscored);
|
sl@0
|
575 |
g_free (method_name_uscored);
|
sl@0
|
576 |
}
|
sl@0
|
577 |
|
sl@0
|
578 |
if (!write_printf_to_iochannel (" { (GCallback) %s, ", channel, error,
|
sl@0
|
579 |
method_c_name))
|
sl@0
|
580 |
goto io_lose;
|
sl@0
|
581 |
|
sl@0
|
582 |
marshaller_name = compute_marshaller_name (method, data->prefix, error);
|
sl@0
|
583 |
if (!marshaller_name)
|
sl@0
|
584 |
goto io_lose;
|
sl@0
|
585 |
|
sl@0
|
586 |
if (!write_printf_to_iochannel ("%s, %d },\n", channel, error,
|
sl@0
|
587 |
marshaller_name,
|
sl@0
|
588 |
object_introspection_data_blob->len))
|
sl@0
|
589 |
{
|
sl@0
|
590 |
g_free (marshaller_name);
|
sl@0
|
591 |
goto io_lose;
|
sl@0
|
592 |
}
|
sl@0
|
593 |
|
sl@0
|
594 |
if (method_info_get_annotation (method, DBUS_GLIB_ANNOTATION_ASYNC) != NULL)
|
sl@0
|
595 |
async = TRUE;
|
sl@0
|
596 |
|
sl@0
|
597 |
/* Object method data blob format:
|
sl@0
|
598 |
* <iface>\0<name>\0(<argname>\0<argdirection>\0<argtype>\0)*\0
|
sl@0
|
599 |
*/
|
sl@0
|
600 |
|
sl@0
|
601 |
g_string_append (object_introspection_data_blob, interface_info_get_name (interface));
|
sl@0
|
602 |
g_string_append_c (object_introspection_data_blob, '\0');
|
sl@0
|
603 |
|
sl@0
|
604 |
g_string_append (object_introspection_data_blob, method_info_get_name (method));
|
sl@0
|
605 |
g_string_append_c (object_introspection_data_blob, '\0');
|
sl@0
|
606 |
|
sl@0
|
607 |
g_string_append_c (object_introspection_data_blob, async ? 'A' : 'S');
|
sl@0
|
608 |
g_string_append_c (object_introspection_data_blob, '\0');
|
sl@0
|
609 |
|
sl@0
|
610 |
for (args = method_info_get_args (method); args; args = args->next)
|
sl@0
|
611 |
{
|
sl@0
|
612 |
ArgInfo *arg;
|
sl@0
|
613 |
char direction;
|
sl@0
|
614 |
const char *returnval_annotation;
|
sl@0
|
615 |
|
sl@0
|
616 |
arg = args->data;
|
sl@0
|
617 |
|
sl@0
|
618 |
g_string_append (object_introspection_data_blob, arg_info_get_name (arg));
|
sl@0
|
619 |
g_string_append_c (object_introspection_data_blob, '\0');
|
sl@0
|
620 |
|
sl@0
|
621 |
switch (arg_info_get_direction (arg))
|
sl@0
|
622 |
{
|
sl@0
|
623 |
case ARG_IN:
|
sl@0
|
624 |
direction = 'I';
|
sl@0
|
625 |
break;
|
sl@0
|
626 |
case ARG_OUT:
|
sl@0
|
627 |
direction = 'O';
|
sl@0
|
628 |
break;
|
sl@0
|
629 |
case ARG_INVALID:
|
sl@0
|
630 |
default:
|
sl@0
|
631 |
g_assert_not_reached ();
|
sl@0
|
632 |
direction = 0; /* silence gcc */
|
sl@0
|
633 |
break;
|
sl@0
|
634 |
}
|
sl@0
|
635 |
g_string_append_c (object_introspection_data_blob, direction);
|
sl@0
|
636 |
g_string_append_c (object_introspection_data_blob, '\0');
|
sl@0
|
637 |
|
sl@0
|
638 |
if (arg_info_get_annotation (arg, DBUS_GLIB_ANNOTATION_CONST) != NULL)
|
sl@0
|
639 |
{
|
sl@0
|
640 |
if (arg_info_get_direction (arg) == ARG_IN)
|
sl@0
|
641 |
{
|
sl@0
|
642 |
g_set_error (error,
|
sl@0
|
643 |
DBUS_BINDING_TOOL_ERROR,
|
sl@0
|
644 |
DBUS_BINDING_TOOL_ERROR_INVALID_ANNOTATION,
|
sl@0
|
645 |
"Input argument \"%s\" cannot have const annotation in method \"%s\" of interface \"%s\"\n",
|
sl@0
|
646 |
arg_info_get_name (arg),
|
sl@0
|
647 |
method_info_get_name (method),
|
sl@0
|
648 |
interface_info_get_name (interface));
|
sl@0
|
649 |
return FALSE;
|
sl@0
|
650 |
}
|
sl@0
|
651 |
g_string_append_c (object_introspection_data_blob, 'C');
|
sl@0
|
652 |
g_string_append_c (object_introspection_data_blob, '\0');
|
sl@0
|
653 |
}
|
sl@0
|
654 |
else if (arg_info_get_direction (arg) == ARG_OUT)
|
sl@0
|
655 |
{
|
sl@0
|
656 |
g_string_append_c (object_introspection_data_blob, 'F');
|
sl@0
|
657 |
g_string_append_c (object_introspection_data_blob, '\0');
|
sl@0
|
658 |
}
|
sl@0
|
659 |
|
sl@0
|
660 |
returnval_annotation = arg_info_get_annotation (arg, DBUS_GLIB_ANNOTATION_RETURNVAL);
|
sl@0
|
661 |
if (returnval_annotation != NULL)
|
sl@0
|
662 |
{
|
sl@0
|
663 |
GType gtype;
|
sl@0
|
664 |
|
sl@0
|
665 |
if (found_retval)
|
sl@0
|
666 |
{
|
sl@0
|
667 |
g_set_error (error,
|
sl@0
|
668 |
DBUS_BINDING_TOOL_ERROR,
|
sl@0
|
669 |
DBUS_BINDING_TOOL_ERROR_INVALID_ANNOTATION,
|
sl@0
|
670 |
"Multiple arguments with return value annotation in method \"%s\" of interface \"%s\"\n",
|
sl@0
|
671 |
method_info_get_name (method),
|
sl@0
|
672 |
interface_info_get_name (interface));
|
sl@0
|
673 |
return FALSE;
|
sl@0
|
674 |
}
|
sl@0
|
675 |
found_retval = TRUE;
|
sl@0
|
676 |
if (arg_info_get_direction (arg) == ARG_IN)
|
sl@0
|
677 |
{
|
sl@0
|
678 |
g_set_error (error,
|
sl@0
|
679 |
DBUS_BINDING_TOOL_ERROR,
|
sl@0
|
680 |
DBUS_BINDING_TOOL_ERROR_INVALID_ANNOTATION,
|
sl@0
|
681 |
"Input argument \"%s\" cannot have return value annotation in method \"%s\" of interface \"%s\"\n",
|
sl@0
|
682 |
arg_info_get_name (arg),
|
sl@0
|
683 |
method_info_get_name (method),
|
sl@0
|
684 |
interface_info_get_name (interface));
|
sl@0
|
685 |
return FALSE;
|
sl@0
|
686 |
}
|
sl@0
|
687 |
if (!strcmp ("", returnval_annotation))
|
sl@0
|
688 |
g_string_append_c (object_introspection_data_blob, 'R');
|
sl@0
|
689 |
else if (!strcmp ("error", returnval_annotation))
|
sl@0
|
690 |
{
|
sl@0
|
691 |
gtype = _dbus_gtype_from_signature (arg_info_get_type (arg), TRUE);
|
sl@0
|
692 |
if (!_dbus_gtype_can_signal_error (gtype))
|
sl@0
|
693 |
{
|
sl@0
|
694 |
g_set_error (error,
|
sl@0
|
695 |
DBUS_BINDING_TOOL_ERROR,
|
sl@0
|
696 |
DBUS_BINDING_TOOL_ERROR_INVALID_ANNOTATION,
|
sl@0
|
697 |
"Output argument \"%s\" cannot signal error with type \"%s\" in method \"%s\" of interface \"%s\"\n",
|
sl@0
|
698 |
arg_info_get_name (arg),
|
sl@0
|
699 |
g_type_name (gtype),
|
sl@0
|
700 |
method_info_get_name (method),
|
sl@0
|
701 |
interface_info_get_name (interface));
|
sl@0
|
702 |
return FALSE;
|
sl@0
|
703 |
}
|
sl@0
|
704 |
g_string_append_c (object_introspection_data_blob, 'E');
|
sl@0
|
705 |
}
|
sl@0
|
706 |
else
|
sl@0
|
707 |
{
|
sl@0
|
708 |
g_set_error (error,
|
sl@0
|
709 |
DBUS_BINDING_TOOL_ERROR,
|
sl@0
|
710 |
DBUS_BINDING_TOOL_ERROR_INVALID_ANNOTATION,
|
sl@0
|
711 |
"Invalid ReturnVal annotation for argument \"%s\" in method \"%s\" of interface \"%s\"\n",
|
sl@0
|
712 |
arg_info_get_name (arg),
|
sl@0
|
713 |
method_info_get_name (method),
|
sl@0
|
714 |
interface_info_get_name (interface));
|
sl@0
|
715 |
return FALSE;
|
sl@0
|
716 |
}
|
sl@0
|
717 |
|
sl@0
|
718 |
g_string_append_c (object_introspection_data_blob, '\0');
|
sl@0
|
719 |
}
|
sl@0
|
720 |
else if (arg_info_get_direction (arg) == ARG_OUT)
|
sl@0
|
721 |
{
|
sl@0
|
722 |
g_string_append_c (object_introspection_data_blob, 'N');
|
sl@0
|
723 |
g_string_append_c (object_introspection_data_blob, '\0');
|
sl@0
|
724 |
}
|
sl@0
|
725 |
|
sl@0
|
726 |
g_string_append (object_introspection_data_blob, arg_info_get_type (arg));
|
sl@0
|
727 |
g_string_append_c (object_introspection_data_blob, '\0');
|
sl@0
|
728 |
}
|
sl@0
|
729 |
|
sl@0
|
730 |
g_string_append_c (object_introspection_data_blob, '\0');
|
sl@0
|
731 |
|
sl@0
|
732 |
data->count++;
|
sl@0
|
733 |
}
|
sl@0
|
734 |
|
sl@0
|
735 |
signals = interface_info_get_signals (interface);
|
sl@0
|
736 |
|
sl@0
|
737 |
for (tmp = signals; tmp != NULL; tmp = g_slist_next (tmp))
|
sl@0
|
738 |
{
|
sl@0
|
739 |
SignalInfo *sig;
|
sl@0
|
740 |
|
sl@0
|
741 |
sig = tmp->data;
|
sl@0
|
742 |
|
sl@0
|
743 |
g_string_append (data->signal_blob, interface_info_get_name (interface));
|
sl@0
|
744 |
g_string_append_c (data->signal_blob, '\0');
|
sl@0
|
745 |
g_string_append (data->signal_blob, signal_info_get_name (sig));
|
sl@0
|
746 |
g_string_append_c (data->signal_blob, '\0');
|
sl@0
|
747 |
}
|
sl@0
|
748 |
|
sl@0
|
749 |
properties = interface_info_get_properties (interface);
|
sl@0
|
750 |
|
sl@0
|
751 |
for (tmp = properties; tmp != NULL; tmp = g_slist_next (tmp))
|
sl@0
|
752 |
{
|
sl@0
|
753 |
PropertyInfo *prop;
|
sl@0
|
754 |
|
sl@0
|
755 |
prop = tmp->data;
|
sl@0
|
756 |
|
sl@0
|
757 |
g_string_append (data->property_blob, interface_info_get_name (interface));
|
sl@0
|
758 |
g_string_append_c (data->property_blob, '\0');
|
sl@0
|
759 |
g_string_append (data->property_blob, property_info_get_name (prop));
|
sl@0
|
760 |
g_string_append_c (data->property_blob, '\0');
|
sl@0
|
761 |
}
|
sl@0
|
762 |
}
|
sl@0
|
763 |
return TRUE;
|
sl@0
|
764 |
io_lose:
|
sl@0
|
765 |
return FALSE;
|
sl@0
|
766 |
}
|
sl@0
|
767 |
|
sl@0
|
768 |
static void
|
sl@0
|
769 |
write_marshaller (gpointer key, gpointer value, gpointer user_data)
|
sl@0
|
770 |
{
|
sl@0
|
771 |
DBusBindingToolCData *data;
|
sl@0
|
772 |
const char *marshaller;
|
sl@0
|
773 |
gsize bytes_written;
|
sl@0
|
774 |
|
sl@0
|
775 |
data = user_data;
|
sl@0
|
776 |
marshaller = key;
|
sl@0
|
777 |
|
sl@0
|
778 |
if (data->error && *data->error)
|
sl@0
|
779 |
return;
|
sl@0
|
780 |
|
sl@0
|
781 |
if (g_io_channel_write_chars (data->channel, marshaller, -1, &bytes_written, data->error) == G_IO_STATUS_NORMAL)
|
sl@0
|
782 |
g_io_channel_write_chars (data->channel, "\n", -1, &bytes_written, data->error);
|
sl@0
|
783 |
}
|
sl@0
|
784 |
|
sl@0
|
785 |
gboolean
|
sl@0
|
786 |
dbus_binding_tool_output_glib_server (BaseInfo *info, GIOChannel *channel, const char *prefix, GError **error)
|
sl@0
|
787 |
{
|
sl@0
|
788 |
gboolean ret;
|
sl@0
|
789 |
GPtrArray *argv;
|
sl@0
|
790 |
gint child_stdout;
|
sl@0
|
791 |
GIOChannel *genmarshal_stdout;
|
sl@0
|
792 |
GPid child_pid;
|
sl@0
|
793 |
DBusBindingToolCData data;
|
sl@0
|
794 |
char *tempfile_name;
|
sl@0
|
795 |
gint tempfile_fd;
|
sl@0
|
796 |
GIOStatus iostatus;
|
sl@0
|
797 |
char buf[4096];
|
sl@0
|
798 |
gsize bytes_read, bytes_written;
|
sl@0
|
799 |
|
sl@0
|
800 |
memset (&data, 0, sizeof (data));
|
sl@0
|
801 |
|
sl@0
|
802 |
dbus_g_type_specialized_init ();
|
sl@0
|
803 |
_dbus_g_type_specialized_builtins_init ();
|
sl@0
|
804 |
|
sl@0
|
805 |
data.prefix = prefix;
|
sl@0
|
806 |
data.generated = g_hash_table_new_full (g_str_hash, g_str_equal, (GDestroyNotify) g_free, NULL);
|
sl@0
|
807 |
data.error = error;
|
sl@0
|
808 |
genmarshal_stdout = NULL;
|
sl@0
|
809 |
tempfile_name = NULL;
|
sl@0
|
810 |
|
sl@0
|
811 |
if (!gather_marshallers (info, &data, error))
|
sl@0
|
812 |
goto io_lose;
|
sl@0
|
813 |
|
sl@0
|
814 |
tempfile_fd = g_file_open_tmp ("dbus-binding-tool-c-marshallers.XXXXXX",
|
sl@0
|
815 |
&tempfile_name, error);
|
sl@0
|
816 |
if (tempfile_fd < 0)
|
sl@0
|
817 |
goto io_lose;
|
sl@0
|
818 |
|
sl@0
|
819 |
data.channel = g_io_channel_unix_new (tempfile_fd);
|
sl@0
|
820 |
if (!g_io_channel_set_encoding (data.channel, NULL, error))
|
sl@0
|
821 |
goto io_lose;
|
sl@0
|
822 |
g_hash_table_foreach (data.generated, write_marshaller, &data);
|
sl@0
|
823 |
if (error && *error != NULL)
|
sl@0
|
824 |
{
|
sl@0
|
825 |
ret = FALSE;
|
sl@0
|
826 |
g_io_channel_close (data.channel);
|
sl@0
|
827 |
g_io_channel_unref (data.channel);
|
sl@0
|
828 |
goto io_lose;
|
sl@0
|
829 |
}
|
sl@0
|
830 |
|
sl@0
|
831 |
g_io_channel_close (data.channel);
|
sl@0
|
832 |
g_io_channel_unref (data.channel);
|
sl@0
|
833 |
|
sl@0
|
834 |
/* Now spawn glib-genmarshal to insert all our required marshallers */
|
sl@0
|
835 |
argv = g_ptr_array_new ();
|
sl@0
|
836 |
g_ptr_array_add (argv, "glib-genmarshal");
|
sl@0
|
837 |
g_ptr_array_add (argv, "--header");
|
sl@0
|
838 |
g_ptr_array_add (argv, "--body");
|
sl@0
|
839 |
g_ptr_array_add (argv, g_strdup_printf ("--prefix=%s%s", MARSHAL_PREFIX, prefix));
|
sl@0
|
840 |
g_ptr_array_add (argv, tempfile_name);
|
sl@0
|
841 |
g_ptr_array_add (argv, NULL);
|
sl@0
|
842 |
if (!g_spawn_async_with_pipes (NULL, (char**)argv->pdata, NULL,
|
sl@0
|
843 |
G_SPAWN_SEARCH_PATH,
|
sl@0
|
844 |
NULL, NULL,
|
sl@0
|
845 |
&child_pid,
|
sl@0
|
846 |
NULL,
|
sl@0
|
847 |
&child_stdout, NULL, error))
|
sl@0
|
848 |
{
|
sl@0
|
849 |
g_ptr_array_free (argv, TRUE);
|
sl@0
|
850 |
goto io_lose;
|
sl@0
|
851 |
}
|
sl@0
|
852 |
g_ptr_array_free (argv, TRUE);
|
sl@0
|
853 |
|
sl@0
|
854 |
genmarshal_stdout = g_io_channel_unix_new (child_stdout);
|
sl@0
|
855 |
if (!g_io_channel_set_encoding (genmarshal_stdout, NULL, error))
|
sl@0
|
856 |
goto io_lose;
|
sl@0
|
857 |
|
sl@0
|
858 |
WRITE_OR_LOSE ("/* Generated by dbus-binding-tool; do not edit! */\n\n");
|
sl@0
|
859 |
|
sl@0
|
860 |
while ((iostatus = g_io_channel_read_chars (genmarshal_stdout, buf, sizeof (buf),
|
sl@0
|
861 |
&bytes_read, error)) == G_IO_STATUS_NORMAL)
|
sl@0
|
862 |
if (g_io_channel_write_chars (channel, buf, bytes_read, &bytes_written, error) != G_IO_STATUS_NORMAL)
|
sl@0
|
863 |
goto io_lose;
|
sl@0
|
864 |
if (iostatus != G_IO_STATUS_EOF)
|
sl@0
|
865 |
goto io_lose;
|
sl@0
|
866 |
|
sl@0
|
867 |
g_io_channel_close (genmarshal_stdout);
|
sl@0
|
868 |
|
sl@0
|
869 |
WRITE_OR_LOSE ("#include <dbus/dbus-glib.h>\n");
|
sl@0
|
870 |
|
sl@0
|
871 |
data.channel = channel;
|
sl@0
|
872 |
g_io_channel_ref (data.channel);
|
sl@0
|
873 |
if (!generate_glue (info, &data, error))
|
sl@0
|
874 |
goto io_lose;
|
sl@0
|
875 |
|
sl@0
|
876 |
ret = TRUE;
|
sl@0
|
877 |
cleanup:
|
sl@0
|
878 |
if (tempfile_name)
|
sl@0
|
879 |
unlink (tempfile_name);
|
sl@0
|
880 |
g_free (tempfile_name);
|
sl@0
|
881 |
if (genmarshal_stdout)
|
sl@0
|
882 |
g_io_channel_unref (genmarshal_stdout);
|
sl@0
|
883 |
if (data.channel)
|
sl@0
|
884 |
g_io_channel_unref (data.channel);
|
sl@0
|
885 |
g_hash_table_destroy (data.generated);
|
sl@0
|
886 |
|
sl@0
|
887 |
return ret;
|
sl@0
|
888 |
io_lose:
|
sl@0
|
889 |
ret = FALSE;
|
sl@0
|
890 |
goto cleanup;
|
sl@0
|
891 |
}
|
sl@0
|
892 |
|
sl@0
|
893 |
static char *
|
sl@0
|
894 |
iface_to_c_prefix (const char *iface)
|
sl@0
|
895 |
{
|
sl@0
|
896 |
char **components;
|
sl@0
|
897 |
char **component;
|
sl@0
|
898 |
GString *ret;
|
sl@0
|
899 |
gboolean first;
|
sl@0
|
900 |
|
sl@0
|
901 |
components = g_strsplit (iface, ".", 0);
|
sl@0
|
902 |
|
sl@0
|
903 |
first = TRUE;
|
sl@0
|
904 |
ret = g_string_new ("");
|
sl@0
|
905 |
for (component = components; *component; component++)
|
sl@0
|
906 |
{
|
sl@0
|
907 |
if (!first)
|
sl@0
|
908 |
g_string_append_c (ret, '_');
|
sl@0
|
909 |
else
|
sl@0
|
910 |
first = FALSE;
|
sl@0
|
911 |
g_string_append (ret, *component);
|
sl@0
|
912 |
}
|
sl@0
|
913 |
g_strfreev (components);
|
sl@0
|
914 |
return g_string_free (ret, FALSE);
|
sl@0
|
915 |
}
|
sl@0
|
916 |
|
sl@0
|
917 |
static char *
|
sl@0
|
918 |
compute_client_method_name (const char *iface_prefix, MethodInfo *method)
|
sl@0
|
919 |
{
|
sl@0
|
920 |
char *method_name_uscored, *ret;
|
sl@0
|
921 |
|
sl@0
|
922 |
method_name_uscored = _dbus_gutils_wincaps_to_uscore (method_info_get_name (method));
|
sl@0
|
923 |
ret = g_strdup_printf ("%s_%s", iface_prefix, method_name_uscored);
|
sl@0
|
924 |
g_free (method_name_uscored);
|
sl@0
|
925 |
|
sl@0
|
926 |
return ret;
|
sl@0
|
927 |
}
|
sl@0
|
928 |
|
sl@0
|
929 |
static gboolean
|
sl@0
|
930 |
write_formal_parameters (InterfaceInfo *iface, MethodInfo *method, GIOChannel *channel, GError **error)
|
sl@0
|
931 |
{
|
sl@0
|
932 |
GSList *args;
|
sl@0
|
933 |
|
sl@0
|
934 |
for (args = method_info_get_args (method); args; args = args->next)
|
sl@0
|
935 |
{
|
sl@0
|
936 |
ArgInfo *arg;
|
sl@0
|
937 |
const char *type_str;
|
sl@0
|
938 |
const char *type_suffix;
|
sl@0
|
939 |
GType gtype;
|
sl@0
|
940 |
int direction;
|
sl@0
|
941 |
|
sl@0
|
942 |
arg = args->data;
|
sl@0
|
943 |
|
sl@0
|
944 |
WRITE_OR_LOSE (", ");
|
sl@0
|
945 |
|
sl@0
|
946 |
direction = arg_info_get_direction (arg);
|
sl@0
|
947 |
|
sl@0
|
948 |
gtype = _dbus_gtype_from_signature (arg_info_get_type (arg), TRUE);
|
sl@0
|
949 |
if (gtype == G_TYPE_INVALID)
|
sl@0
|
950 |
{
|
sl@0
|
951 |
g_set_error (error,
|
sl@0
|
952 |
DBUS_BINDING_TOOL_ERROR,
|
sl@0
|
953 |
DBUS_BINDING_TOOL_ERROR_UNSUPPORTED_CONVERSION,
|
sl@0
|
954 |
_("Unsupported conversion from D-BUS type signature \"%s\" to glib C type in method \"%s\" of interface \"%s\""),
|
sl@0
|
955 |
arg_info_get_type (arg),
|
sl@0
|
956 |
method_info_get_name (method),
|
sl@0
|
957 |
interface_info_get_name (iface));
|
sl@0
|
958 |
return FALSE;
|
sl@0
|
959 |
}
|
sl@0
|
960 |
type_str = dbus_g_type_get_c_name (gtype);
|
sl@0
|
961 |
g_assert (type_str);
|
sl@0
|
962 |
/* Variants are special...*/
|
sl@0
|
963 |
if (gtype == G_TYPE_VALUE)
|
sl@0
|
964 |
{
|
sl@0
|
965 |
if (direction == ARG_IN)
|
sl@0
|
966 |
type_suffix = "*";
|
sl@0
|
967 |
else
|
sl@0
|
968 |
type_suffix = "";
|
sl@0
|
969 |
}
|
sl@0
|
970 |
else if ((g_type_is_a (gtype, G_TYPE_BOXED)
|
sl@0
|
971 |
|| g_type_is_a (gtype, G_TYPE_OBJECT)
|
sl@0
|
972 |
|| g_type_is_a (gtype, G_TYPE_POINTER)))
|
sl@0
|
973 |
type_suffix = "*";
|
sl@0
|
974 |
else
|
sl@0
|
975 |
type_suffix = "";
|
sl@0
|
976 |
|
sl@0
|
977 |
|
sl@0
|
978 |
switch (direction)
|
sl@0
|
979 |
{
|
sl@0
|
980 |
case ARG_IN:
|
sl@0
|
981 |
if (!write_printf_to_iochannel ("const %s%s IN_%s", channel, error,
|
sl@0
|
982 |
type_str,
|
sl@0
|
983 |
type_suffix,
|
sl@0
|
984 |
arg_info_get_name (arg)))
|
sl@0
|
985 |
goto io_lose;
|
sl@0
|
986 |
break;
|
sl@0
|
987 |
case ARG_OUT:
|
sl@0
|
988 |
if (!write_printf_to_iochannel ("%s%s* OUT_%s", channel, error,
|
sl@0
|
989 |
type_str,
|
sl@0
|
990 |
type_suffix,
|
sl@0
|
991 |
arg_info_get_name (arg)))
|
sl@0
|
992 |
goto io_lose;
|
sl@0
|
993 |
break;
|
sl@0
|
994 |
case ARG_INVALID:
|
sl@0
|
995 |
break;
|
sl@0
|
996 |
}
|
sl@0
|
997 |
}
|
sl@0
|
998 |
|
sl@0
|
999 |
return TRUE;
|
sl@0
|
1000 |
io_lose:
|
sl@0
|
1001 |
return FALSE;
|
sl@0
|
1002 |
}
|
sl@0
|
1003 |
|
sl@0
|
1004 |
#define MAP_FUNDAMENTAL(NAME) \
|
sl@0
|
1005 |
case G_TYPE_ ## NAME: \
|
sl@0
|
1006 |
return g_strdup ("G_TYPE_" #NAME);
|
sl@0
|
1007 |
#define MAP_KNOWN(NAME) \
|
sl@0
|
1008 |
if (gtype == NAME) \
|
sl@0
|
1009 |
return g_strdup (#NAME)
|
sl@0
|
1010 |
static char *
|
sl@0
|
1011 |
dbus_g_type_get_lookup_function (GType gtype)
|
sl@0
|
1012 |
{
|
sl@0
|
1013 |
char *type_lookup;
|
sl@0
|
1014 |
switch (gtype)
|
sl@0
|
1015 |
{
|
sl@0
|
1016 |
MAP_FUNDAMENTAL(CHAR);
|
sl@0
|
1017 |
MAP_FUNDAMENTAL(UCHAR);
|
sl@0
|
1018 |
MAP_FUNDAMENTAL(BOOLEAN);
|
sl@0
|
1019 |
MAP_FUNDAMENTAL(LONG);
|
sl@0
|
1020 |
MAP_FUNDAMENTAL(ULONG);
|
sl@0
|
1021 |
MAP_FUNDAMENTAL(INT);
|
sl@0
|
1022 |
MAP_FUNDAMENTAL(UINT);
|
sl@0
|
1023 |
MAP_FUNDAMENTAL(INT64);
|
sl@0
|
1024 |
MAP_FUNDAMENTAL(UINT64);
|
sl@0
|
1025 |
MAP_FUNDAMENTAL(FLOAT);
|
sl@0
|
1026 |
MAP_FUNDAMENTAL(DOUBLE);
|
sl@0
|
1027 |
MAP_FUNDAMENTAL(STRING);
|
sl@0
|
1028 |
}
|
sl@0
|
1029 |
if (dbus_g_type_is_collection (gtype))
|
sl@0
|
1030 |
{
|
sl@0
|
1031 |
GType elt_gtype;
|
sl@0
|
1032 |
char *sublookup;
|
sl@0
|
1033 |
|
sl@0
|
1034 |
elt_gtype = dbus_g_type_get_collection_specialization (gtype);
|
sl@0
|
1035 |
sublookup = dbus_g_type_get_lookup_function (elt_gtype);
|
sl@0
|
1036 |
g_assert (sublookup);
|
sl@0
|
1037 |
|
sl@0
|
1038 |
if (_dbus_g_type_is_fixed (elt_gtype))
|
sl@0
|
1039 |
{
|
sl@0
|
1040 |
type_lookup = g_strdup_printf ("dbus_g_type_get_collection "
|
sl@0
|
1041 |
"(\"GArray\", %s)", sublookup);
|
sl@0
|
1042 |
}
|
sl@0
|
1043 |
else
|
sl@0
|
1044 |
{
|
sl@0
|
1045 |
type_lookup = g_strdup_printf ("dbus_g_type_get_collection "
|
sl@0
|
1046 |
"(\"GPtrArray\", %s)", sublookup);
|
sl@0
|
1047 |
}
|
sl@0
|
1048 |
|
sl@0
|
1049 |
g_free (sublookup);
|
sl@0
|
1050 |
|
sl@0
|
1051 |
return type_lookup;
|
sl@0
|
1052 |
}
|
sl@0
|
1053 |
else if (dbus_g_type_is_map (gtype))
|
sl@0
|
1054 |
{
|
sl@0
|
1055 |
GType key_gtype;
|
sl@0
|
1056 |
char *key_lookup;
|
sl@0
|
1057 |
GType value_gtype;
|
sl@0
|
1058 |
char *value_lookup;
|
sl@0
|
1059 |
|
sl@0
|
1060 |
key_gtype = dbus_g_type_get_map_key_specialization (gtype);
|
sl@0
|
1061 |
value_gtype = dbus_g_type_get_map_value_specialization (gtype);
|
sl@0
|
1062 |
key_lookup = dbus_g_type_get_lookup_function (key_gtype);
|
sl@0
|
1063 |
g_assert (key_lookup);
|
sl@0
|
1064 |
value_lookup = dbus_g_type_get_lookup_function (value_gtype);
|
sl@0
|
1065 |
g_assert (value_lookup);
|
sl@0
|
1066 |
type_lookup = g_strdup_printf ("dbus_g_type_get_map (\"GHashTable\", %s, %s)",
|
sl@0
|
1067 |
key_lookup, value_lookup);
|
sl@0
|
1068 |
g_free (key_lookup);
|
sl@0
|
1069 |
g_free (value_lookup);
|
sl@0
|
1070 |
return type_lookup;
|
sl@0
|
1071 |
}
|
sl@0
|
1072 |
else if (dbus_g_type_is_struct (gtype))
|
sl@0
|
1073 |
{
|
sl@0
|
1074 |
GType value_gtype;
|
sl@0
|
1075 |
GString *string;
|
sl@0
|
1076 |
char *value_lookup = NULL;
|
sl@0
|
1077 |
guint size, i;
|
sl@0
|
1078 |
|
sl@0
|
1079 |
string = g_string_new ("dbus_g_type_get_struct (\"GValueArray\"");
|
sl@0
|
1080 |
|
sl@0
|
1081 |
size = dbus_g_type_get_struct_size (gtype);
|
sl@0
|
1082 |
for (i=0; i < size; i++)
|
sl@0
|
1083 |
{
|
sl@0
|
1084 |
value_gtype = dbus_g_type_get_struct_member_type(gtype, i);
|
sl@0
|
1085 |
value_lookup = dbus_g_type_get_lookup_function (value_gtype);
|
sl@0
|
1086 |
g_assert (value_lookup);
|
sl@0
|
1087 |
g_string_append_printf (string, ", %s", value_lookup);
|
sl@0
|
1088 |
g_free (value_lookup);
|
sl@0
|
1089 |
}
|
sl@0
|
1090 |
g_string_append (string, ", G_TYPE_INVALID)");
|
sl@0
|
1091 |
return g_string_free (string, FALSE);
|
sl@0
|
1092 |
}
|
sl@0
|
1093 |
|
sl@0
|
1094 |
MAP_KNOWN(G_TYPE_VALUE);
|
sl@0
|
1095 |
MAP_KNOWN(G_TYPE_STRV);
|
sl@0
|
1096 |
MAP_KNOWN(G_TYPE_VALUE_ARRAY);
|
sl@0
|
1097 |
MAP_KNOWN(DBUS_TYPE_G_PROXY);
|
sl@0
|
1098 |
MAP_KNOWN(DBUS_TYPE_G_OBJECT_PATH);
|
sl@0
|
1099 |
return NULL;
|
sl@0
|
1100 |
}
|
sl@0
|
1101 |
#undef MAP_FUNDAMENTAL
|
sl@0
|
1102 |
#undef MAP_KNOWN
|
sl@0
|
1103 |
|
sl@0
|
1104 |
static gboolean
|
sl@0
|
1105 |
write_args_for_direction (InterfaceInfo *iface, MethodInfo *method, GIOChannel *channel, int direction, GError **error)
|
sl@0
|
1106 |
{
|
sl@0
|
1107 |
GSList *args;
|
sl@0
|
1108 |
|
sl@0
|
1109 |
for (args = method_info_get_args (method); args; args = args->next)
|
sl@0
|
1110 |
{
|
sl@0
|
1111 |
ArgInfo *arg;
|
sl@0
|
1112 |
GType gtype;
|
sl@0
|
1113 |
char *type_lookup;
|
sl@0
|
1114 |
|
sl@0
|
1115 |
arg = args->data;
|
sl@0
|
1116 |
|
sl@0
|
1117 |
if (direction != arg_info_get_direction (arg))
|
sl@0
|
1118 |
continue;
|
sl@0
|
1119 |
|
sl@0
|
1120 |
gtype = _dbus_gtype_from_signature (arg_info_get_type (arg), TRUE);
|
sl@0
|
1121 |
g_assert (gtype != G_TYPE_INVALID);
|
sl@0
|
1122 |
type_lookup = dbus_g_type_get_lookup_function (gtype);
|
sl@0
|
1123 |
g_assert (type_lookup != NULL);
|
sl@0
|
1124 |
|
sl@0
|
1125 |
switch (direction)
|
sl@0
|
1126 |
{
|
sl@0
|
1127 |
|
sl@0
|
1128 |
case ARG_IN:
|
sl@0
|
1129 |
if (!write_printf_to_iochannel ("%s, IN_%s, ", channel, error,
|
sl@0
|
1130 |
type_lookup,
|
sl@0
|
1131 |
arg_info_get_name (arg)))
|
sl@0
|
1132 |
goto io_lose;
|
sl@0
|
1133 |
break;
|
sl@0
|
1134 |
case ARG_OUT:
|
sl@0
|
1135 |
if (!write_printf_to_iochannel ("%s, OUT_%s, ", channel, error,
|
sl@0
|
1136 |
type_lookup,
|
sl@0
|
1137 |
arg_info_get_name (arg)))
|
sl@0
|
1138 |
goto io_lose;
|
sl@0
|
1139 |
break;
|
sl@0
|
1140 |
case ARG_INVALID:
|
sl@0
|
1141 |
break;
|
sl@0
|
1142 |
}
|
sl@0
|
1143 |
g_free (type_lookup);
|
sl@0
|
1144 |
}
|
sl@0
|
1145 |
|
sl@0
|
1146 |
return TRUE;
|
sl@0
|
1147 |
io_lose:
|
sl@0
|
1148 |
return FALSE;
|
sl@0
|
1149 |
}
|
sl@0
|
1150 |
|
sl@0
|
1151 |
static gboolean
|
sl@0
|
1152 |
check_supported_parameters (MethodInfo *method)
|
sl@0
|
1153 |
{
|
sl@0
|
1154 |
GSList *args;
|
sl@0
|
1155 |
|
sl@0
|
1156 |
for (args = method_info_get_args (method); args; args = args->next)
|
sl@0
|
1157 |
{
|
sl@0
|
1158 |
ArgInfo *arg;
|
sl@0
|
1159 |
GType gtype;
|
sl@0
|
1160 |
|
sl@0
|
1161 |
arg = args->data;
|
sl@0
|
1162 |
gtype = _dbus_gtype_from_signature (arg_info_get_type (arg), TRUE);
|
sl@0
|
1163 |
if (gtype == G_TYPE_INVALID)
|
sl@0
|
1164 |
return FALSE;
|
sl@0
|
1165 |
}
|
sl@0
|
1166 |
return TRUE;
|
sl@0
|
1167 |
}
|
sl@0
|
1168 |
|
sl@0
|
1169 |
static gboolean
|
sl@0
|
1170 |
write_untyped_out_args (InterfaceInfo *iface, MethodInfo *method, GIOChannel *channel, GError **error)
|
sl@0
|
1171 |
{
|
sl@0
|
1172 |
GSList *args;
|
sl@0
|
1173 |
|
sl@0
|
1174 |
for (args = method_info_get_args (method); args; args = args->next)
|
sl@0
|
1175 |
{
|
sl@0
|
1176 |
ArgInfo *arg;
|
sl@0
|
1177 |
|
sl@0
|
1178 |
arg = args->data;
|
sl@0
|
1179 |
if (arg_info_get_direction (arg) != ARG_OUT)
|
sl@0
|
1180 |
continue;
|
sl@0
|
1181 |
|
sl@0
|
1182 |
if (!write_printf_to_iochannel ("OUT_%s, ", channel, error,
|
sl@0
|
1183 |
arg_info_get_name (arg)))
|
sl@0
|
1184 |
goto io_lose;
|
sl@0
|
1185 |
}
|
sl@0
|
1186 |
|
sl@0
|
1187 |
return TRUE;
|
sl@0
|
1188 |
io_lose:
|
sl@0
|
1189 |
return FALSE;
|
sl@0
|
1190 |
}
|
sl@0
|
1191 |
|
sl@0
|
1192 |
static gboolean
|
sl@0
|
1193 |
write_formal_declarations_for_direction (InterfaceInfo *iface, MethodInfo *method, GIOChannel *channel, const int direction, GError **error)
|
sl@0
|
1194 |
{
|
sl@0
|
1195 |
GSList *args;
|
sl@0
|
1196 |
|
sl@0
|
1197 |
for (args = method_info_get_args (method); args; args = args->next)
|
sl@0
|
1198 |
{
|
sl@0
|
1199 |
ArgInfo *arg;
|
sl@0
|
1200 |
GType gtype;
|
sl@0
|
1201 |
const char *type_str, *type_suffix;
|
sl@0
|
1202 |
int dir;
|
sl@0
|
1203 |
|
sl@0
|
1204 |
arg = args->data;
|
sl@0
|
1205 |
|
sl@0
|
1206 |
dir = arg_info_get_direction (arg);
|
sl@0
|
1207 |
|
sl@0
|
1208 |
gtype = _dbus_gtype_from_signature (arg_info_get_type (arg), TRUE);
|
sl@0
|
1209 |
type_str = dbus_g_type_get_c_name (gtype);
|
sl@0
|
1210 |
|
sl@0
|
1211 |
if (!type_str)
|
sl@0
|
1212 |
{
|
sl@0
|
1213 |
g_set_error (error,
|
sl@0
|
1214 |
DBUS_BINDING_TOOL_ERROR,
|
sl@0
|
1215 |
DBUS_BINDING_TOOL_ERROR_UNSUPPORTED_CONVERSION,
|
sl@0
|
1216 |
_("Unsupported conversion from D-BUS type signature \"%s\" to glib C type in method \"%s\" of interface \"%s\""),
|
sl@0
|
1217 |
arg_info_get_type (arg),
|
sl@0
|
1218 |
method_info_get_name (method),
|
sl@0
|
1219 |
interface_info_get_name (iface));
|
sl@0
|
1220 |
return FALSE;
|
sl@0
|
1221 |
}
|
sl@0
|
1222 |
|
sl@0
|
1223 |
/* Variants are special...*/
|
sl@0
|
1224 |
if (gtype == G_TYPE_VALUE)
|
sl@0
|
1225 |
{
|
sl@0
|
1226 |
if (direction == ARG_IN)
|
sl@0
|
1227 |
type_suffix = "*";
|
sl@0
|
1228 |
else
|
sl@0
|
1229 |
type_suffix = "";
|
sl@0
|
1230 |
}
|
sl@0
|
1231 |
else if ((g_type_is_a (gtype, G_TYPE_BOXED)
|
sl@0
|
1232 |
|| g_type_is_a (gtype, G_TYPE_OBJECT)
|
sl@0
|
1233 |
|| g_type_is_a (gtype, G_TYPE_POINTER)))
|
sl@0
|
1234 |
type_suffix = "*";
|
sl@0
|
1235 |
else
|
sl@0
|
1236 |
type_suffix = "";
|
sl@0
|
1237 |
|
sl@0
|
1238 |
if (direction != dir)
|
sl@0
|
1239 |
continue;
|
sl@0
|
1240 |
|
sl@0
|
1241 |
switch (dir)
|
sl@0
|
1242 |
{
|
sl@0
|
1243 |
case ARG_IN:
|
sl@0
|
1244 |
if (!write_printf_to_iochannel (" %s%s IN_%s;\n", channel, error,
|
sl@0
|
1245 |
type_str, type_suffix,
|
sl@0
|
1246 |
arg_info_get_name (arg)))
|
sl@0
|
1247 |
goto io_lose;
|
sl@0
|
1248 |
break;
|
sl@0
|
1249 |
case ARG_OUT:
|
sl@0
|
1250 |
if (!write_printf_to_iochannel (" %s%s OUT_%s;\n", channel, error,
|
sl@0
|
1251 |
type_str, type_suffix,
|
sl@0
|
1252 |
arg_info_get_name (arg)))
|
sl@0
|
1253 |
goto io_lose;
|
sl@0
|
1254 |
break;
|
sl@0
|
1255 |
case ARG_INVALID:
|
sl@0
|
1256 |
break;
|
sl@0
|
1257 |
}
|
sl@0
|
1258 |
}
|
sl@0
|
1259 |
return TRUE;
|
sl@0
|
1260 |
io_lose:
|
sl@0
|
1261 |
return FALSE;
|
sl@0
|
1262 |
}
|
sl@0
|
1263 |
|
sl@0
|
1264 |
static gboolean
|
sl@0
|
1265 |
write_formal_parameters_for_direction (InterfaceInfo *iface, MethodInfo *method, int dir, GIOChannel *channel, GError **error)
|
sl@0
|
1266 |
{
|
sl@0
|
1267 |
GSList *args;
|
sl@0
|
1268 |
|
sl@0
|
1269 |
for (args = method_info_get_args (method); args; args = args->next)
|
sl@0
|
1270 |
{
|
sl@0
|
1271 |
ArgInfo *arg;
|
sl@0
|
1272 |
const char *type_str;
|
sl@0
|
1273 |
const char *type_suffix;
|
sl@0
|
1274 |
GType gtype;
|
sl@0
|
1275 |
int direction;
|
sl@0
|
1276 |
|
sl@0
|
1277 |
arg = args->data;
|
sl@0
|
1278 |
|
sl@0
|
1279 |
direction = arg_info_get_direction (arg);
|
sl@0
|
1280 |
if (dir != direction) continue;
|
sl@0
|
1281 |
|
sl@0
|
1282 |
WRITE_OR_LOSE (", ");
|
sl@0
|
1283 |
|
sl@0
|
1284 |
gtype = _dbus_gtype_from_signature (arg_info_get_type (arg), TRUE);
|
sl@0
|
1285 |
type_str = dbus_g_type_get_c_name (gtype);
|
sl@0
|
1286 |
/* Variants are special...*/
|
sl@0
|
1287 |
if (gtype == G_TYPE_VALUE)
|
sl@0
|
1288 |
{
|
sl@0
|
1289 |
if (direction == ARG_IN)
|
sl@0
|
1290 |
type_suffix = "*";
|
sl@0
|
1291 |
else
|
sl@0
|
1292 |
type_suffix = "";
|
sl@0
|
1293 |
}
|
sl@0
|
1294 |
else if ((g_type_is_a (gtype, G_TYPE_BOXED)
|
sl@0
|
1295 |
|| g_type_is_a (gtype, G_TYPE_OBJECT)
|
sl@0
|
1296 |
|| g_type_is_a (gtype, G_TYPE_POINTER)))
|
sl@0
|
1297 |
type_suffix = "*";
|
sl@0
|
1298 |
else
|
sl@0
|
1299 |
type_suffix = "";
|
sl@0
|
1300 |
|
sl@0
|
1301 |
if (!type_str)
|
sl@0
|
1302 |
{
|
sl@0
|
1303 |
g_set_error (error,
|
sl@0
|
1304 |
DBUS_BINDING_TOOL_ERROR,
|
sl@0
|
1305 |
DBUS_BINDING_TOOL_ERROR_UNSUPPORTED_CONVERSION,
|
sl@0
|
1306 |
_("Unsupported conversion from D-BUS type signature \"%s\" to glib C type in method \"%s\" of interface \"%s\""),
|
sl@0
|
1307 |
arg_info_get_type (arg),
|
sl@0
|
1308 |
method_info_get_name (method),
|
sl@0
|
1309 |
interface_info_get_name (iface));
|
sl@0
|
1310 |
return FALSE;
|
sl@0
|
1311 |
}
|
sl@0
|
1312 |
|
sl@0
|
1313 |
switch (direction)
|
sl@0
|
1314 |
{
|
sl@0
|
1315 |
case ARG_IN:
|
sl@0
|
1316 |
if (!write_printf_to_iochannel ("const %s%s IN_%s", channel, error,
|
sl@0
|
1317 |
type_str,
|
sl@0
|
1318 |
type_suffix,
|
sl@0
|
1319 |
arg_info_get_name (arg)))
|
sl@0
|
1320 |
goto io_lose;
|
sl@0
|
1321 |
break;
|
sl@0
|
1322 |
case ARG_OUT:
|
sl@0
|
1323 |
if (!write_printf_to_iochannel ("%s%s* OUT_%s", channel, error,
|
sl@0
|
1324 |
type_str,
|
sl@0
|
1325 |
type_suffix,
|
sl@0
|
1326 |
arg_info_get_name (arg)))
|
sl@0
|
1327 |
goto io_lose;
|
sl@0
|
1328 |
break;
|
sl@0
|
1329 |
case ARG_INVALID:
|
sl@0
|
1330 |
break;
|
sl@0
|
1331 |
}
|
sl@0
|
1332 |
}
|
sl@0
|
1333 |
return TRUE;
|
sl@0
|
1334 |
io_lose:
|
sl@0
|
1335 |
return FALSE;
|
sl@0
|
1336 |
}
|
sl@0
|
1337 |
|
sl@0
|
1338 |
static gboolean
|
sl@0
|
1339 |
write_typed_args_for_direction (InterfaceInfo *iface, MethodInfo *method, GIOChannel *channel, const int direction, GError **error)
|
sl@0
|
1340 |
{
|
sl@0
|
1341 |
GSList *args;
|
sl@0
|
1342 |
|
sl@0
|
1343 |
for (args = method_info_get_args (method); args; args = args->next)
|
sl@0
|
1344 |
{
|
sl@0
|
1345 |
ArgInfo *arg;
|
sl@0
|
1346 |
int dir;
|
sl@0
|
1347 |
GType gtype;
|
sl@0
|
1348 |
const char *type_lookup;
|
sl@0
|
1349 |
|
sl@0
|
1350 |
arg = args->data;
|
sl@0
|
1351 |
|
sl@0
|
1352 |
dir = arg_info_get_direction (arg);
|
sl@0
|
1353 |
|
sl@0
|
1354 |
if (dir != direction)
|
sl@0
|
1355 |
continue;
|
sl@0
|
1356 |
|
sl@0
|
1357 |
gtype = _dbus_gtype_from_signature (arg_info_get_type (arg), TRUE);
|
sl@0
|
1358 |
type_lookup = dbus_g_type_get_lookup_function (gtype);
|
sl@0
|
1359 |
|
sl@0
|
1360 |
if (!write_printf_to_iochannel ("%s, &%s_%s, ", channel, error, type_lookup, direction == ARG_IN ? "IN" : "OUT", arg_info_get_name (arg)))
|
sl@0
|
1361 |
goto io_lose;
|
sl@0
|
1362 |
}
|
sl@0
|
1363 |
return TRUE;
|
sl@0
|
1364 |
io_lose:
|
sl@0
|
1365 |
return FALSE;
|
sl@0
|
1366 |
}
|
sl@0
|
1367 |
|
sl@0
|
1368 |
static gboolean
|
sl@0
|
1369 |
write_async_method_client (GIOChannel *channel, InterfaceInfo *interface, MethodInfo *method, GError **error)
|
sl@0
|
1370 |
{
|
sl@0
|
1371 |
char *method_name, *iface_prefix;
|
sl@0
|
1372 |
const char *interface_c_name;
|
sl@0
|
1373 |
|
sl@0
|
1374 |
iface_prefix = iface_to_c_prefix (interface_info_get_name (interface));
|
sl@0
|
1375 |
interface_c_name = interface_info_get_annotation (interface, DBUS_GLIB_ANNOTATION_CLIENT_C_SYMBOL);
|
sl@0
|
1376 |
if (interface_c_name == NULL)
|
sl@0
|
1377 |
{
|
sl@0
|
1378 |
interface_c_name = (const char *) iface_prefix;
|
sl@0
|
1379 |
}
|
sl@0
|
1380 |
|
sl@0
|
1381 |
method_name = g_strdup (method_info_get_annotation (method, DBUS_GLIB_ANNOTATION_CLIENT_C_SYMBOL));
|
sl@0
|
1382 |
if (method_name == NULL)
|
sl@0
|
1383 |
{
|
sl@0
|
1384 |
method_name = compute_client_method_name (interface_c_name, method);
|
sl@0
|
1385 |
}
|
sl@0
|
1386 |
g_free(iface_prefix);
|
sl@0
|
1387 |
|
sl@0
|
1388 |
/* Write the typedef for the client callback */
|
sl@0
|
1389 |
if (!write_printf_to_iochannel ("typedef void (*%s_reply) (DBusGProxy *proxy, ", channel, error, method_name))
|
sl@0
|
1390 |
goto io_lose;
|
sl@0
|
1391 |
{
|
sl@0
|
1392 |
GSList *args;
|
sl@0
|
1393 |
for (args = method_info_get_args (method); args; args = args->next)
|
sl@0
|
1394 |
{
|
sl@0
|
1395 |
ArgInfo *arg;
|
sl@0
|
1396 |
const char *type_suffix, *type_str;
|
sl@0
|
1397 |
GType gtype;
|
sl@0
|
1398 |
|
sl@0
|
1399 |
arg = args->data;
|
sl@0
|
1400 |
|
sl@0
|
1401 |
if (arg_info_get_direction (arg) != ARG_OUT)
|
sl@0
|
1402 |
continue;
|
sl@0
|
1403 |
gtype = _dbus_gtype_from_signature (arg_info_get_type (arg), TRUE);
|
sl@0
|
1404 |
if (gtype != G_TYPE_VALUE && (g_type_is_a (gtype, G_TYPE_BOXED)
|
sl@0
|
1405 |
|| g_type_is_a (gtype, G_TYPE_OBJECT)
|
sl@0
|
1406 |
|| g_type_is_a (gtype, G_TYPE_POINTER)))
|
sl@0
|
1407 |
type_suffix = "*";
|
sl@0
|
1408 |
else
|
sl@0
|
1409 |
type_suffix = "";
|
sl@0
|
1410 |
type_str = dbus_g_type_get_c_name (_dbus_gtype_from_signature (arg_info_get_type (arg), TRUE));
|
sl@0
|
1411 |
if (!write_printf_to_iochannel ("%s %sOUT_%s, ", channel, error, type_str, type_suffix, arg_info_get_name (arg)))
|
sl@0
|
1412 |
goto io_lose;
|
sl@0
|
1413 |
}
|
sl@0
|
1414 |
}
|
sl@0
|
1415 |
WRITE_OR_LOSE ("GError *error, gpointer userdata);\n\n");
|
sl@0
|
1416 |
|
sl@0
|
1417 |
|
sl@0
|
1418 |
/* Write the callback when the call returns */
|
sl@0
|
1419 |
WRITE_OR_LOSE ("static void\n");
|
sl@0
|
1420 |
if (!write_printf_to_iochannel ("%s_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)\n", channel, error, method_name))
|
sl@0
|
1421 |
goto io_lose;
|
sl@0
|
1422 |
WRITE_OR_LOSE ("{\n");
|
sl@0
|
1423 |
WRITE_OR_LOSE (" DBusGAsyncData *data = (DBusGAsyncData*) user_data;\n GError *error = NULL;\n");
|
sl@0
|
1424 |
if (!write_formal_declarations_for_direction (interface, method, channel, ARG_OUT, error))
|
sl@0
|
1425 |
goto io_lose;
|
sl@0
|
1426 |
/* TODO: handle return boolean of end_call */
|
sl@0
|
1427 |
WRITE_OR_LOSE (" dbus_g_proxy_end_call (proxy, call, &error, ");
|
sl@0
|
1428 |
if (!write_typed_args_for_direction (interface, method, channel, ARG_OUT, error))
|
sl@0
|
1429 |
goto io_lose;
|
sl@0
|
1430 |
WRITE_OR_LOSE("G_TYPE_INVALID);\n");
|
sl@0
|
1431 |
if (!write_printf_to_iochannel (" (*(%s_reply)data->cb) (proxy, ", channel, error, method_name))
|
sl@0
|
1432 |
goto io_lose;
|
sl@0
|
1433 |
if (!write_untyped_out_args (interface, method, channel, error))
|
sl@0
|
1434 |
goto io_lose;
|
sl@0
|
1435 |
WRITE_OR_LOSE ("error, data->userdata);\n");
|
sl@0
|
1436 |
WRITE_OR_LOSE (" return;\n}\n\n");
|
sl@0
|
1437 |
|
sl@0
|
1438 |
|
sl@0
|
1439 |
/* Write the main wrapper function */
|
sl@0
|
1440 |
WRITE_OR_LOSE ("static\n#ifdef G_HAVE_INLINE\ninline\n#endif\nDBusGProxyCall*\n");
|
sl@0
|
1441 |
if (!write_printf_to_iochannel ("%s_async (DBusGProxy *proxy", channel, error,
|
sl@0
|
1442 |
method_name))
|
sl@0
|
1443 |
goto io_lose;
|
sl@0
|
1444 |
if (!write_formal_parameters_for_direction (interface, method, ARG_IN, channel, error))
|
sl@0
|
1445 |
goto io_lose;
|
sl@0
|
1446 |
|
sl@0
|
1447 |
if (!write_printf_to_iochannel (", %s_reply callback, gpointer userdata)\n\n", channel, error, method_name))
|
sl@0
|
1448 |
goto io_lose;
|
sl@0
|
1449 |
|
sl@0
|
1450 |
WRITE_OR_LOSE ("{\n");
|
sl@0
|
1451 |
WRITE_OR_LOSE (" DBusGAsyncData *stuff;\n stuff = g_new (DBusGAsyncData, 1);\n stuff->cb = G_CALLBACK (callback);\n stuff->userdata = userdata;\n");
|
sl@0
|
1452 |
if (!write_printf_to_iochannel (" return dbus_g_proxy_begin_call (proxy, \"%s\", %s_async_callback, stuff, g_free, ", channel, error, method_info_get_name (method), method_name))
|
sl@0
|
1453 |
goto io_lose;
|
sl@0
|
1454 |
if (!write_args_for_direction (interface, method, channel, ARG_IN, error))
|
sl@0
|
1455 |
goto io_lose;
|
sl@0
|
1456 |
WRITE_OR_LOSE ("G_TYPE_INVALID);\n}\n");
|
sl@0
|
1457 |
|
sl@0
|
1458 |
g_free (method_name);
|
sl@0
|
1459 |
return TRUE;
|
sl@0
|
1460 |
io_lose:
|
sl@0
|
1461 |
g_free (method_name);
|
sl@0
|
1462 |
return FALSE;
|
sl@0
|
1463 |
}
|
sl@0
|
1464 |
|
sl@0
|
1465 |
static gboolean
|
sl@0
|
1466 |
generate_client_glue_list (GSList *list, DBusBindingToolCData *data, GError **error)
|
sl@0
|
1467 |
{
|
sl@0
|
1468 |
GSList *tmp;
|
sl@0
|
1469 |
|
sl@0
|
1470 |
tmp = list;
|
sl@0
|
1471 |
while (tmp != NULL)
|
sl@0
|
1472 |
{
|
sl@0
|
1473 |
if (!generate_client_glue (tmp->data, data, error))
|
sl@0
|
1474 |
return FALSE;
|
sl@0
|
1475 |
tmp = tmp->next;
|
sl@0
|
1476 |
}
|
sl@0
|
1477 |
return TRUE;
|
sl@0
|
1478 |
}
|
sl@0
|
1479 |
|
sl@0
|
1480 |
static gboolean
|
sl@0
|
1481 |
generate_client_glue (BaseInfo *base, DBusBindingToolCData *data, GError **error)
|
sl@0
|
1482 |
{
|
sl@0
|
1483 |
if (base_info_get_type (base) == INFO_TYPE_NODE)
|
sl@0
|
1484 |
{
|
sl@0
|
1485 |
if (!generate_client_glue_list (node_info_get_nodes ((NodeInfo *) base),
|
sl@0
|
1486 |
data, error))
|
sl@0
|
1487 |
return FALSE;
|
sl@0
|
1488 |
if (!generate_client_glue_list (node_info_get_interfaces ((NodeInfo *) base),
|
sl@0
|
1489 |
data, error))
|
sl@0
|
1490 |
return FALSE;
|
sl@0
|
1491 |
}
|
sl@0
|
1492 |
else
|
sl@0
|
1493 |
{
|
sl@0
|
1494 |
GIOChannel *channel;
|
sl@0
|
1495 |
InterfaceInfo *interface;
|
sl@0
|
1496 |
GSList *methods;
|
sl@0
|
1497 |
GSList *tmp;
|
sl@0
|
1498 |
char *iface_prefix;
|
sl@0
|
1499 |
const char *interface_c_name;
|
sl@0
|
1500 |
|
sl@0
|
1501 |
channel = data->channel;
|
sl@0
|
1502 |
|
sl@0
|
1503 |
interface = (InterfaceInfo *) base;
|
sl@0
|
1504 |
|
sl@0
|
1505 |
methods = interface_info_get_methods (interface);
|
sl@0
|
1506 |
|
sl@0
|
1507 |
iface_prefix = iface_to_c_prefix (interface_info_get_name (interface));
|
sl@0
|
1508 |
interface_c_name = interface_info_get_annotation (interface, DBUS_GLIB_ANNOTATION_CLIENT_C_SYMBOL);
|
sl@0
|
1509 |
if (interface_c_name == NULL)
|
sl@0
|
1510 |
{
|
sl@0
|
1511 |
interface_c_name = (const char *) iface_prefix;
|
sl@0
|
1512 |
}
|
sl@0
|
1513 |
|
sl@0
|
1514 |
if (!write_printf_to_iochannel ("#ifndef DBUS_GLIB_CLIENT_WRAPPERS_%s\n"
|
sl@0
|
1515 |
"#define DBUS_GLIB_CLIENT_WRAPPERS_%s\n\n",
|
sl@0
|
1516 |
channel, error,
|
sl@0
|
1517 |
iface_prefix, iface_prefix))
|
sl@0
|
1518 |
{
|
sl@0
|
1519 |
g_free (iface_prefix);
|
sl@0
|
1520 |
goto io_lose;
|
sl@0
|
1521 |
}
|
sl@0
|
1522 |
|
sl@0
|
1523 |
for (tmp = methods; tmp != NULL; tmp = g_slist_next (tmp))
|
sl@0
|
1524 |
{
|
sl@0
|
1525 |
MethodInfo *method;
|
sl@0
|
1526 |
char *method_c_name;
|
sl@0
|
1527 |
gboolean is_noreply;
|
sl@0
|
1528 |
|
sl@0
|
1529 |
method = (MethodInfo *) tmp->data;
|
sl@0
|
1530 |
method_c_name = g_strdup (method_info_get_annotation (method, DBUS_GLIB_ANNOTATION_CLIENT_C_SYMBOL));
|
sl@0
|
1531 |
if (method_c_name == NULL)
|
sl@0
|
1532 |
{
|
sl@0
|
1533 |
method_c_name = compute_client_method_name (interface_c_name, method);
|
sl@0
|
1534 |
}
|
sl@0
|
1535 |
|
sl@0
|
1536 |
is_noreply = method_info_get_annotation (method, DBUS_GLIB_ANNOTATION_NOREPLY) != NULL;
|
sl@0
|
1537 |
|
sl@0
|
1538 |
if (data->ignore_unsupported && !check_supported_parameters (method))
|
sl@0
|
1539 |
{
|
sl@0
|
1540 |
g_warning ("Ignoring unsupported signature in method \"%s\" of interface \"%s\"\n",
|
sl@0
|
1541 |
method_info_get_name (method),
|
sl@0
|
1542 |
interface_info_get_name (interface));
|
sl@0
|
1543 |
continue;
|
sl@0
|
1544 |
}
|
sl@0
|
1545 |
|
sl@0
|
1546 |
|
sl@0
|
1547 |
WRITE_OR_LOSE ("static\n#ifdef G_HAVE_INLINE\ninline\n#endif\ngboolean\n");
|
sl@0
|
1548 |
if (!write_printf_to_iochannel ("%s (DBusGProxy *proxy", channel, error,
|
sl@0
|
1549 |
method_c_name))
|
sl@0
|
1550 |
goto io_lose;
|
sl@0
|
1551 |
g_free (method_c_name);
|
sl@0
|
1552 |
|
sl@0
|
1553 |
if (!write_formal_parameters (interface, method, channel, error))
|
sl@0
|
1554 |
goto io_lose;
|
sl@0
|
1555 |
|
sl@0
|
1556 |
WRITE_OR_LOSE (", GError **error)\n\n");
|
sl@0
|
1557 |
|
sl@0
|
1558 |
WRITE_OR_LOSE ("{\n");
|
sl@0
|
1559 |
|
sl@0
|
1560 |
if (is_noreply) {
|
sl@0
|
1561 |
if (!write_printf_to_iochannel (" dbus_g_proxy_call_no_reply (proxy, \"%s\", ", channel, error,
|
sl@0
|
1562 |
method_info_get_name (method)))
|
sl@0
|
1563 |
goto io_lose;
|
sl@0
|
1564 |
|
sl@0
|
1565 |
if (!write_args_for_direction (interface, method, channel, ARG_IN, error))
|
sl@0
|
1566 |
goto io_lose;
|
sl@0
|
1567 |
|
sl@0
|
1568 |
WRITE_OR_LOSE ("G_TYPE_INVALID, ");
|
sl@0
|
1569 |
|
sl@0
|
1570 |
if (!write_args_for_direction (interface, method, channel, ARG_OUT, error))
|
sl@0
|
1571 |
goto io_lose;
|
sl@0
|
1572 |
|
sl@0
|
1573 |
WRITE_OR_LOSE ("G_TYPE_INVALID);\n");
|
sl@0
|
1574 |
|
sl@0
|
1575 |
WRITE_OR_LOSE (" return TRUE;\n}\n\n");
|
sl@0
|
1576 |
} else {
|
sl@0
|
1577 |
if (!write_printf_to_iochannel (" return dbus_g_proxy_call (proxy, \"%s\", ", channel, error,
|
sl@0
|
1578 |
method_info_get_name (method)))
|
sl@0
|
1579 |
goto io_lose;
|
sl@0
|
1580 |
|
sl@0
|
1581 |
WRITE_OR_LOSE ("error, ");
|
sl@0
|
1582 |
|
sl@0
|
1583 |
if (!write_args_for_direction (interface, method, channel, ARG_IN, error))
|
sl@0
|
1584 |
goto io_lose;
|
sl@0
|
1585 |
|
sl@0
|
1586 |
WRITE_OR_LOSE ("G_TYPE_INVALID, ");
|
sl@0
|
1587 |
|
sl@0
|
1588 |
if (!write_args_for_direction (interface, method, channel, ARG_OUT, error))
|
sl@0
|
1589 |
goto io_lose;
|
sl@0
|
1590 |
|
sl@0
|
1591 |
WRITE_OR_LOSE ("G_TYPE_INVALID);\n}\n\n");
|
sl@0
|
1592 |
}
|
sl@0
|
1593 |
|
sl@0
|
1594 |
write_async_method_client (channel, interface, method, error);
|
sl@0
|
1595 |
}
|
sl@0
|
1596 |
|
sl@0
|
1597 |
if (!write_printf_to_iochannel ("#endif /* defined DBUS_GLIB_CLIENT_WRAPPERS_%s */\n\n", channel, error, iface_prefix))
|
sl@0
|
1598 |
{
|
sl@0
|
1599 |
g_free (iface_prefix);
|
sl@0
|
1600 |
goto io_lose;
|
sl@0
|
1601 |
}
|
sl@0
|
1602 |
|
sl@0
|
1603 |
g_free (iface_prefix);
|
sl@0
|
1604 |
}
|
sl@0
|
1605 |
return TRUE;
|
sl@0
|
1606 |
io_lose:
|
sl@0
|
1607 |
return FALSE;
|
sl@0
|
1608 |
}
|
sl@0
|
1609 |
|
sl@0
|
1610 |
|
sl@0
|
1611 |
gboolean
|
sl@0
|
1612 |
dbus_binding_tool_output_glib_client (BaseInfo *info, GIOChannel *channel, gboolean ignore_unsupported, GError **error)
|
sl@0
|
1613 |
{
|
sl@0
|
1614 |
DBusBindingToolCData data;
|
sl@0
|
1615 |
gboolean ret;
|
sl@0
|
1616 |
|
sl@0
|
1617 |
memset (&data, 0, sizeof (data));
|
sl@0
|
1618 |
|
sl@0
|
1619 |
data.channel = channel;
|
sl@0
|
1620 |
data.ignore_unsupported = ignore_unsupported;
|
sl@0
|
1621 |
|
sl@0
|
1622 |
dbus_g_type_specialized_init ();
|
sl@0
|
1623 |
_dbus_g_type_specialized_builtins_init ();
|
sl@0
|
1624 |
|
sl@0
|
1625 |
WRITE_OR_LOSE ("/* Generated by dbus-binding-tool; do not edit! */\n\n");
|
sl@0
|
1626 |
WRITE_OR_LOSE ("#include <glib/gtypes.h>\n");
|
sl@0
|
1627 |
WRITE_OR_LOSE ("#include <glib/gerror.h>\n");
|
sl@0
|
1628 |
WRITE_OR_LOSE ("#include <dbus/dbus-glib.h>\n\n");
|
sl@0
|
1629 |
WRITE_OR_LOSE ("G_BEGIN_DECLS\n\n");
|
sl@0
|
1630 |
|
sl@0
|
1631 |
ret = generate_client_glue (info, &data, error);
|
sl@0
|
1632 |
if (!ret)
|
sl@0
|
1633 |
goto io_lose;
|
sl@0
|
1634 |
|
sl@0
|
1635 |
WRITE_OR_LOSE ("G_END_DECLS\n");
|
sl@0
|
1636 |
|
sl@0
|
1637 |
return ret;
|
sl@0
|
1638 |
io_lose:
|
sl@0
|
1639 |
return FALSE;
|
sl@0
|
1640 |
}
|