Update contrib.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-glib-tool.c Tool used by apps using glib bindings
4 * Copyright (C) 2003, 2004 Red Hat, Inc.
5 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
6 * Licensed under the Academic Free License version 2.1
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #define VERSION "1.0.2"
32 #endif //__SYMBIAN32__
33 #include "dbus-gidl.h"
34 #include "dbus-gparser.h"
35 #include "dbus-gutils.h"
36 #include "dbus-glib-tool.h"
37 #include "dbus-binding-tool-glib.h"
41 #define _(x) dgettext (GETTEXT_PACKAGE, x)
54 #ifdef DBUS_BUILD_TESTS
55 static void run_all_tests (const char *test_data_dir);
59 DBUS_BINDING_OUTPUT_NONE,
60 DBUS_BINDING_OUTPUT_PRETTY,
61 DBUS_BINDING_OUTPUT_GLIB_SERVER,
62 DBUS_BINDING_OUTPUT_GLIB_CLIENT
63 } DBusBindingOutputMode;
68 depth *= 2; /* 2-space indent */
77 static void pretty_print (BaseInfo *base,
81 pretty_print_list (GSList *list,
89 pretty_print (tmp->data, depth);
95 pretty_print (BaseInfo *base,
101 t = base_info_get_type (base);
102 name = base_info_get_name (base);
110 NodeInfo *n = (NodeInfo*) base;
113 printf (_("<anonymous node> {\n"));
115 printf (_("node \"%s\" {\n"), name);
117 pretty_print_list (node_info_get_interfaces (n), depth + 1);
118 pretty_print_list (node_info_get_nodes (n), depth + 1);
124 case INFO_TYPE_INTERFACE:
126 InterfaceInfo *i = (InterfaceInfo*) base;
127 GSList *annotations, *elt;
129 g_assert (name != NULL);
131 printf (_("interface \"%s\" {\n"), name);
133 annotations = interface_info_get_annotations (i);
134 for (elt = annotations; elt; elt = elt->next)
136 const char *name = elt->data;
137 const char *value = interface_info_get_annotation (i, name);
139 printf (_(" (binding \"%s\": \"%s\") "),
142 g_slist_free (annotations);
144 pretty_print_list (interface_info_get_methods (i), depth + 1);
145 pretty_print_list (interface_info_get_signals (i), depth + 1);
146 pretty_print_list (interface_info_get_properties (i), depth + 1);
152 case INFO_TYPE_METHOD:
154 MethodInfo *m = (MethodInfo*) base;
155 GSList *annotations, *elt;
157 g_assert (name != NULL);
159 annotations = method_info_get_annotations (m);
160 printf (_("method \"%s\""), name);
161 for (elt = annotations; elt; elt = elt->next)
163 const char *name = elt->data;
164 const char *value = method_info_get_annotation (m, name);
166 printf (_(" (annotation \"%s\": \"%s\") "),
169 g_slist_free (annotations);
171 pretty_print_list (method_info_get_args (m), depth + 1);
177 case INFO_TYPE_SIGNAL:
179 SignalInfo *s = (SignalInfo*) base;
181 g_assert (name != NULL);
183 printf (_("signal \"%s\" (\n"), name);
185 pretty_print_list (signal_info_get_args (s), depth + 1);
191 case INFO_TYPE_PROPERTY:
193 PropertyInfo *a = (PropertyInfo*) base;
194 const char *pt = property_info_get_type (a);
195 PropertyAccessFlags acc = property_info_get_access (a);
198 acc & PROPERTY_READ ? "read" : "",
199 acc & PROPERTY_WRITE ? "write" : "",
202 printf (" %s\n", name);
209 ArgInfo *a = (ArgInfo*) base;
210 const char *at = arg_info_get_type (a);
211 ArgDirection d = arg_info_get_direction (a);
214 d == ARG_IN ? "in" : "out",
217 printf (" %s\n", name);
226 dbus_binding_tool_error_quark (void)
228 static GQuark quark = 0;
230 quark = g_quark_from_static_string ("dbus_binding_tool_error");
235 static void lose (const char *fmt, ...) G_GNUC_NORETURN G_GNUC_PRINTF (1, 2);
236 static void lose_gerror (const char *prefix, GError *error) G_GNUC_NORETURN;
239 lose (const char *str, ...)
243 va_start (args, str);
245 vfprintf (stderr, str, args);
246 fputc ('\n', stderr);
254 lose_gerror (const char *prefix, GError *error)
256 lose ("%s: %s", prefix, error->message);
262 fprintf (stderr, "dbus-binding-tool [--version] [--help]\n");
263 fprintf (stderr, "dbus-binding-tool --mode=[pretty|glib-server|glib-client] [--prefix=SYMBOL_PREFIX] [--ignore-unsupported] [--force] [--output=FILE] [\n");
264 fprintf (stderr, "dbus-binding-tool --mode=glib-server --prefix=SYMBOL_PREFIX [--ignore-unsupported] [--force] [--output=FILE] [\n");
271 printf ("D-BUS Binding Tool %s\n"
272 "Copyright (C) 2003-2005 Red Hat, Inc.\n"
273 "This is free software; see the source for copying conditions.\n"
274 "There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n",
281 main (int argc, char **argv)
283 const char *output_file;
285 char *output_file_tmp;
288 DBusBindingOutputMode outputmode;
289 gboolean end_of_args;
295 struct stat targetbuf;
297 gboolean ignore_unsupported;
298 gboolean has_prefix = FALSE;
301 setlocale (LC_ALL, "");
302 bindtextdomain (GETTEXT_PACKAGE, DBUS_LOCALEDIR);
303 bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
304 textdomain (GETTEXT_PACKAGE);
308 outputmode = DBUS_BINDING_OUTPUT_NONE;
313 ignore_unsupported = FALSE;
318 const char *arg = argv[i];
322 if (strcmp (arg, "--help") == 0 ||
323 strcmp (arg, "-h") == 0 ||
324 strcmp (arg, "-?") == 0)
326 else if (strcmp (arg, "--version") == 0)
328 else if (strcmp (arg, "--force") == 0)
330 #ifdef DBUS_BUILD_TESTS
331 else if (strcmp (arg, "--self-test") == 0)
332 run_all_tests (NULL);
333 #endif /* DBUS_BUILD_TESTS */
334 else if (strncmp (arg, "--mode=", 7) == 0)
336 const char *mode = arg + 7;
337 if (!strcmp (mode, "pretty"))
338 outputmode = DBUS_BINDING_OUTPUT_PRETTY;
339 else if (!strcmp (mode, "glib-server"))
340 outputmode = DBUS_BINDING_OUTPUT_GLIB_SERVER;
341 else if (!strcmp (mode, "glib-client"))
342 outputmode = DBUS_BINDING_OUTPUT_GLIB_CLIENT;
346 else if (strcmp (arg, "--ignore-unsupported") == 0)
347 ignore_unsupported = TRUE;
348 else if (strncmp (arg, "--output=", 9) == 0)
350 output_file = arg + 9;
352 else if (strncmp (arg, "--prefix=", 9) == 0)
357 else if (arg[0] == '-' &&
361 else if (arg[0] == '-')
367 files = g_slist_prepend (files, (char*) arg);
371 files = g_slist_prepend (files, (char*) arg);
376 if (outputmode == DBUS_BINDING_OUTPUT_GLIB_SERVER && !has_prefix)
381 files = g_slist_reverse (files);
383 if (output_file && !force)
386 for (tmp = files; tmp != NULL; tmp = tmp->next)
388 const char *filename;
390 filename = tmp->data;
391 if (stat (filename, &srcbuf) < 0)
392 lose ("Couldn't stat %s: %s", filename, g_strerror (errno));
394 if (srcbuf.st_mtime > newest_src)
395 newest_src = srcbuf.st_mtime;
398 if (stat (output_file, &targetbuf) > 0
399 && targetbuf.st_mtime >= newest_src)
405 output_file_tmp = g_strconcat (output_file, ".tmp", NULL);
407 if (!(channel = g_io_channel_new_file (output_file_tmp, "w", &error)))
408 lose_gerror (_("Couldn't open temporary file"), error);
412 channel = g_io_channel_unix_new (fileno (stdout));
413 output_file_tmp = NULL; /* silence gcc */
415 if (!g_io_channel_set_encoding (channel, NULL, &error))
416 lose_gerror (_("Couldn't set channel encoding to NULL"), error);
419 for (tmp = files; tmp != NULL; tmp = tmp->next)
423 const char *filename;
425 filename = tmp->data;
428 node = description_load_from_file (filename,
432 lose_gerror (_("Unable to load \"%s\""), error);
438 case DBUS_BINDING_OUTPUT_PRETTY:
439 pretty_print ((BaseInfo*) node, 0);
441 case DBUS_BINDING_OUTPUT_GLIB_SERVER:
442 if (!dbus_binding_tool_output_glib_server ((BaseInfo *) node, channel, prefix, &error))
443 lose_gerror (_("Compilation failed"), error);
445 case DBUS_BINDING_OUTPUT_GLIB_CLIENT:
446 if (!dbus_binding_tool_output_glib_client ((BaseInfo *) node, channel, ignore_unsupported, &error))
447 lose_gerror (_("Compilation failed"), error);
449 case DBUS_BINDING_OUTPUT_NONE:
455 node_info_unref (node);
458 if (g_io_channel_shutdown (channel, TRUE, &error) != G_IO_STATUS_NORMAL)
459 lose_gerror (_("Failed to shutdown IO channel"), error);
460 g_io_channel_unref (channel);
464 if (rename (output_file_tmp, output_file) < 0)
465 lose ("Failed to rename %s to %s: %s", output_file_tmp, output_file,
467 g_free (output_file_tmp);
474 #ifdef DBUS_BUILD_TESTS
476 test_die (const char *failure)
478 lose ("Unit test failed: %s", failure);
483 * Unit test for GLib utility tool
484 * Returns: #TRUE on success.
487 _dbus_gtool_test (const char *test_data_dir)
494 run_all_tests (const char *test_data_dir)
496 if (test_data_dir == NULL)
497 test_data_dir = g_getenv ("DBUS_TEST_DATA");
499 if (test_data_dir != NULL)
500 printf ("Test data in %s\n", test_data_dir);
502 printf ("No test data!\n");
504 printf ("%s: running binding tests\n", "dbus-binding-tool");
505 if (!_dbus_gtool_test (test_data_dir))
508 printf ("%s: completed successfully\n", "dbus-binding-tool");
511 #endif /* DBUS_BUILD_TESTS */