1 /* GDBus - GLib D-Bus Library
3 * Copyright (C) 2008-2010 Red Hat, Inc.
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.
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.
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.
20 * Author: David Zeuthen <davidz@redhat.com>
35 #include "glib/glib-private.h"
38 /* ---------------------------------------------------------------------------------------------------- */
40 G_GNUC_UNUSED static void completion_debug (const gchar *format, ...);
42 /* Uncomment to get debug traces in /tmp/gdbus-completion-debug.txt (nice
43 * to not have it interfere with stdout/stderr)
46 G_GNUC_UNUSED static void
47 completion_debug (const gchar *format, ...)
51 static FILE *f = NULL;
53 va_start (var_args, format);
54 s = g_strdup_vprintf (format, var_args);
57 f = fopen ("/tmp/gdbus-completion-debug.txt", "a+");
59 fprintf (f, "%s\n", s);
64 completion_debug (const gchar *format, ...)
69 /* ---------------------------------------------------------------------------------------------------- */
73 remove_arg (gint num, gint *argc, gchar **argv[])
77 g_assert (num <= (*argc));
79 for (n = num; (*argv)[n] != NULL; n++)
80 (*argv)[n] = (*argv)[n+1];
82 (*argc) = (*argc) - 1;
86 usage (gint *argc, gchar **argv[], gboolean use_stdout)
92 o = g_option_context_new (_("COMMAND"));
93 g_option_context_set_help_enabled (o, FALSE);
94 /* Ignore parsing result */
95 g_option_context_parse (o, argc, argv, NULL);
96 program_name = g_path_get_basename ((*argv)[0]);
97 s = g_strdup_printf (_("Commands:\n"
98 " help Shows this information\n"
99 " introspect Introspect a remote object\n"
100 " monitor Monitor a remote object\n"
101 " call Invoke a method on a remote object\n"
102 " emit Emit a signal\n"
104 "Use \"%s COMMAND --help\" to get help on each command.\n"),
106 g_free (program_name);
107 g_option_context_set_description (o, s);
109 s = g_option_context_get_help (o, FALSE, NULL);
113 g_printerr ("%s", s);
115 g_option_context_free (o);
119 modify_argv0_for_command (gint *argc, gchar **argv[], const gchar *command)
125 * 1. get a g_set_prgname() ?; or
126 * 2. save old argv[0] and restore later
129 g_assert (g_strcmp0 ((*argv)[1], command) == 0);
130 remove_arg (1, argc, argv);
132 program_name = g_path_get_basename ((*argv)[0]);
133 s = g_strdup_printf ("%s %s", (*argv)[0], command);
135 g_free (program_name);
138 /* ---------------------------------------------------------------------------------------------------- */
141 print_methods (GDBusConnection *c,
147 const gchar *xml_data;
153 result = g_dbus_connection_call_sync (c,
156 "org.freedesktop.DBus.Introspectable",
159 G_VARIANT_TYPE ("(s)"),
160 G_DBUS_CALL_FLAGS_NONE,
166 g_printerr (_("Error: %s\n"), error->message);
167 g_error_free (error);
170 g_variant_get (result, "(&s)", &xml_data);
173 node = g_dbus_node_info_new_for_xml (xml_data, &error);
174 g_variant_unref (result);
177 g_printerr (_("Error parsing introspection XML: %s\n"), error->message);
178 g_error_free (error);
182 for (n = 0; node->interfaces != NULL && node->interfaces[n] != NULL; n++)
184 const GDBusInterfaceInfo *iface = node->interfaces[n];
185 for (m = 0; iface->methods != NULL && iface->methods[m] != NULL; m++)
187 const GDBusMethodInfo *method = iface->methods[m];
188 g_print ("%s.%s \n", iface->name, method->name);
191 g_dbus_node_info_unref (node);
198 print_paths (GDBusConnection *c,
204 const gchar *xml_data;
209 result = g_dbus_connection_call_sync (c,
212 "org.freedesktop.DBus.Introspectable",
215 G_VARIANT_TYPE ("(s)"),
216 G_DBUS_CALL_FLAGS_NONE,
222 g_printerr (_("Error: %s\n"), error->message);
223 g_error_free (error);
226 g_variant_get (result, "(&s)", &xml_data);
228 //g_printerr ("xml=`%s'", xml_data);
231 node = g_dbus_node_info_new_for_xml (xml_data, &error);
232 g_variant_unref (result);
235 g_printerr (_("Error parsing introspection XML: %s\n"), error->message);
236 g_error_free (error);
240 //g_printerr ("bar `%s'\n", path);
242 if (node->interfaces != NULL)
243 g_print ("%s \n", path);
245 for (n = 0; node->nodes != NULL && node->nodes[n] != NULL; n++)
249 //g_printerr ("foo `%s'\n", node->nodes[n].path);
251 if (g_strcmp0 (path, "/") == 0)
252 s = g_strdup_printf ("/%s", node->nodes[n]->path);
254 s = g_strdup_printf ("%s/%s", path, node->nodes[n]->path);
256 print_paths (c, name, s);
260 g_dbus_node_info_unref (node);
267 print_names (GDBusConnection *c,
268 gboolean include_unique_names)
274 GHashTable *name_set;
278 name_set = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
281 result = g_dbus_connection_call_sync (c,
282 "org.freedesktop.DBus",
283 "/org/freedesktop/DBus",
284 "org.freedesktop.DBus",
287 G_VARIANT_TYPE ("(as)"),
288 G_DBUS_CALL_FLAGS_NONE,
294 g_printerr (_("Error: %s\n"), error->message);
295 g_error_free (error);
298 g_variant_get (result, "(as)", &iter);
299 while (g_variant_iter_loop (iter, "s", &str))
300 g_hash_table_insert (name_set, g_strdup (str), NULL);
301 g_variant_iter_free (iter);
302 g_variant_unref (result);
305 result = g_dbus_connection_call_sync (c,
306 "org.freedesktop.DBus",
307 "/org/freedesktop/DBus",
308 "org.freedesktop.DBus",
309 "ListActivatableNames",
311 G_VARIANT_TYPE ("(as)"),
312 G_DBUS_CALL_FLAGS_NONE,
318 g_printerr (_("Error: %s\n"), error->message);
319 g_error_free (error);
322 g_variant_get (result, "(as)", &iter);
323 while (g_variant_iter_loop (iter, "s", &str))
324 g_hash_table_insert (name_set, g_strdup (str), NULL);
325 g_variant_iter_free (iter);
326 g_variant_unref (result);
328 keys = g_hash_table_get_keys (name_set);
329 keys = g_list_sort (keys, (GCompareFunc) g_strcmp0);
330 for (l = keys; l != NULL; l = l->next)
332 const gchar *name = l->data;
333 if (!include_unique_names && g_str_has_prefix (name, ":"))
336 g_print ("%s \n", name);
341 g_hash_table_unref (name_set);
344 /* ---------------------------------------------------------------------------------------------------- */
346 static gboolean opt_connection_system = FALSE;
347 static gboolean opt_connection_session = FALSE;
348 static gchar *opt_connection_address = NULL;
350 static const GOptionEntry connection_entries[] =
352 { "system", 'y', 0, G_OPTION_ARG_NONE, &opt_connection_system, N_("Connect to the system bus"), NULL},
353 { "session", 'e', 0, G_OPTION_ARG_NONE, &opt_connection_session, N_("Connect to the session bus"), NULL},
354 { "address", 'a', 0, G_OPTION_ARG_STRING, &opt_connection_address, N_("Connect to given D-Bus address"), NULL},
358 static GOptionGroup *
359 connection_get_group (void)
361 static GOptionGroup *g;
363 g = g_option_group_new ("connection",
364 N_("Connection Endpoint Options:"),
365 N_("Options specifying the connection endpoint"),
368 g_option_group_set_translation_domain (g, GETTEXT_PACKAGE);
369 g_option_group_add_entries (g, connection_entries);
374 static GDBusConnection *
375 connection_get_dbus_connection (GError **error)
381 /* First, ensure we have exactly one connect */
382 if (!opt_connection_system && !opt_connection_session && opt_connection_address == NULL)
387 _("No connection endpoint specified"));
390 else if ((opt_connection_system && (opt_connection_session || opt_connection_address != NULL)) ||
391 (opt_connection_session && (opt_connection_system || opt_connection_address != NULL)) ||
392 (opt_connection_address != NULL && (opt_connection_system || opt_connection_session)))
397 _("Multiple connection endpoints specified"));
401 if (opt_connection_system)
403 c = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, error);
405 else if (opt_connection_session)
407 c = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, error);
409 else if (opt_connection_address != NULL)
411 c = g_dbus_connection_new_for_address_sync (opt_connection_address,
412 G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT,
413 NULL, /* GDBusAuthObserver */
414 NULL, /* GCancellable */
422 /* ---------------------------------------------------------------------------------------------------- */
425 call_helper_get_method_in_signature (GDBusConnection *c,
428 const gchar *interface_name,
429 const gchar *method_name,
434 GDBusNodeInfo *node_info;
435 const gchar *xml_data;
436 GDBusInterfaceInfo *interface_info;
437 GDBusMethodInfo *method_info;
444 result = g_dbus_connection_call_sync (c,
447 "org.freedesktop.DBus.Introspectable",
450 G_VARIANT_TYPE ("(s)"),
451 G_DBUS_CALL_FLAGS_NONE,
458 g_variant_get (result, "(&s)", &xml_data);
459 node_info = g_dbus_node_info_new_for_xml (xml_data, error);
460 if (node_info == NULL)
463 interface_info = g_dbus_node_info_lookup_interface (node_info, interface_name);
464 if (interface_info == NULL)
466 g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
467 _("Warning: According to introspection data, interface `%s' does not exist\n"),
472 method_info = g_dbus_interface_info_lookup_method (interface_info, method_name);
473 if (method_info == NULL)
475 g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
476 _("Warning: According to introspection data, method `%s' does not exist on interface `%s'\n"),
482 ret = g_ptr_array_new_with_free_func ((GDestroyNotify) g_variant_type_free);
483 for (n = 0; method_info->in_args != NULL && method_info->in_args[n] != NULL; n++)
485 g_ptr_array_add (ret, g_variant_type_new (method_info->in_args[n]->signature));
489 if (node_info != NULL)
490 g_dbus_node_info_unref (node_info);
492 g_variant_unref (result);
497 /* ---------------------------------------------------------------------------------------------------- */
500 _g_variant_parse_me_harder (GVariantType *type,
501 const gchar *given_str,
509 str = g_string_new ("\"");
510 for (n = 0; given_str[n] != '\0'; n++)
512 if (G_UNLIKELY (given_str[n] == '\"'))
513 g_string_append (str, "\\\"");
515 g_string_append_c (str, given_str[n]);
517 g_string_append_c (str, '"');
518 s = g_string_free (str, FALSE);
520 value = g_variant_parse (type,
530 /* ---------------------------------------------------------------------------------------------------- */
532 static gchar *opt_emit_dest = NULL;
533 static gchar *opt_emit_object_path = NULL;
534 static gchar *opt_emit_signal = NULL;
536 static const GOptionEntry emit_entries[] =
538 { "dest", 'd', 0, G_OPTION_ARG_STRING, &opt_emit_dest, N_("Optional destination for signal (unique name)"), NULL},
539 { "object-path", 'o', 0, G_OPTION_ARG_STRING, &opt_emit_object_path, N_("Object path to emit signal on"), NULL},
540 { "signal", 's', 0, G_OPTION_ARG_STRING, &opt_emit_signal, N_("Signal and interface name"), NULL},
545 handle_emit (gint *argc,
547 gboolean request_completion,
548 const gchar *completion_cur,
549 const gchar *completion_prev)
556 GVariant *parameters;
557 gchar *interface_name;
559 GVariantBuilder builder;
565 interface_name = NULL;
568 modify_argv0_for_command (argc, argv, "emit");
570 o = g_option_context_new (NULL);
571 g_option_context_set_help_enabled (o, FALSE);
572 g_option_context_set_summary (o, _("Emit a signal."));
573 g_option_context_add_main_entries (o, emit_entries, GETTEXT_PACKAGE);
574 g_option_context_add_group (o, connection_get_group ());
576 if (!g_option_context_parse (o, argc, argv, NULL))
578 if (!request_completion)
580 s = g_option_context_get_help (o, FALSE, NULL);
581 g_printerr ("%s", s);
588 c = connection_get_dbus_connection (&error);
591 if (request_completion)
593 if (g_strcmp0 (completion_prev, "--address") == 0)
601 g_print ("--system \n--session \n--address \n");
606 g_printerr (_("Error connecting: %s\n"), error->message);
607 g_error_free (error);
612 /* All done with completion now */
613 if (request_completion)
616 if (opt_emit_object_path == NULL)
618 g_printerr (_("Error: object path not specified.\n"));
621 if (!g_variant_is_object_path (opt_emit_object_path))
623 g_printerr (_("Error: %s is not a valid object path\n"), opt_emit_object_path);
627 if (opt_emit_signal == NULL)
629 g_printerr (_("Error: signal not specified.\n"));
633 s = strrchr (opt_emit_signal, '.');
636 g_printerr (_("Error: signal must be the fully-qualified name.\n"));
639 signal_name = g_strdup (s + 1);
640 interface_name = g_strndup (opt_emit_signal, s - opt_emit_signal);
642 if (!g_dbus_is_interface_name (interface_name))
644 g_printerr (_("Error: %s is not a valid interface name\n"), interface_name);
648 if (!g_dbus_is_member_name (signal_name))
650 g_printerr (_("Error: %s is not a valid member name\n"), signal_name);
654 if (opt_emit_dest != NULL && !g_dbus_is_unique_name (opt_emit_dest))
656 g_printerr (_("Error: %s is not a valid unique bus name.\n"), opt_emit_dest);
660 /* Read parameters */
661 g_variant_builder_init (&builder, G_VARIANT_TYPE_TUPLE);
662 for (n = 1; n < (guint) *argc; n++)
667 value = g_variant_parse (NULL,
674 g_error_free (error);
676 value = _g_variant_parse_me_harder (NULL, (*argv)[n], &error);
679 g_printerr (_("Error parsing parameter %d: %s\n"),
682 g_error_free (error);
683 g_variant_builder_clear (&builder);
687 g_variant_builder_add_value (&builder, value);
689 parameters = g_variant_builder_end (&builder);
691 if (parameters != NULL)
692 parameters = g_variant_ref_sink (parameters);
693 if (!g_dbus_connection_emit_signal (c,
695 opt_emit_object_path,
701 g_printerr (_("Error: %s\n"), error->message);
702 g_error_free (error);
706 if (!g_dbus_connection_flush_sync (c, NULL, &error))
708 g_printerr (_("Error flushing connection: %s\n"), error->message);
709 g_error_free (error);
718 if (parameters != NULL)
719 g_variant_unref (parameters);
720 g_free (interface_name);
721 g_free (signal_name);
722 g_option_context_free (o);
726 /* ---------------------------------------------------------------------------------------------------- */
728 static gchar *opt_call_dest = NULL;
729 static gchar *opt_call_object_path = NULL;
730 static gchar *opt_call_method = NULL;
731 static gint opt_call_timeout = -1;
733 static const GOptionEntry call_entries[] =
735 { "dest", 'd', 0, G_OPTION_ARG_STRING, &opt_call_dest, N_("Destination name to invoke method on"), NULL},
736 { "object-path", 'o', 0, G_OPTION_ARG_STRING, &opt_call_object_path, N_("Object path to invoke method on"), NULL},
737 { "method", 'm', 0, G_OPTION_ARG_STRING, &opt_call_method, N_("Method and interface name"), NULL},
738 { "timeout", 't', 0, G_OPTION_ARG_INT, &opt_call_timeout, N_("Timeout in seconds"), NULL},
743 handle_call (gint *argc,
745 gboolean request_completion,
746 const gchar *completion_cur,
747 const gchar *completion_prev)
754 GVariant *parameters;
755 gchar *interface_name;
758 GPtrArray *in_signature_types;
759 gboolean complete_names;
760 gboolean complete_paths;
761 gboolean complete_methods;
762 GVariantBuilder builder;
768 interface_name = NULL;
771 in_signature_types = NULL;
773 modify_argv0_for_command (argc, argv, "call");
775 o = g_option_context_new (NULL);
776 g_option_context_set_help_enabled (o, FALSE);
777 g_option_context_set_summary (o, _("Invoke a method on a remote object."));
778 g_option_context_add_main_entries (o, call_entries, GETTEXT_PACKAGE);
779 g_option_context_add_group (o, connection_get_group ());
781 complete_names = FALSE;
782 if (request_completion && *argc > 1 && g_strcmp0 ((*argv)[(*argc)-1], "--dest") == 0)
784 complete_names = TRUE;
785 remove_arg ((*argc) - 1, argc, argv);
788 complete_paths = FALSE;
789 if (request_completion && *argc > 1 && g_strcmp0 ((*argv)[(*argc)-1], "--object-path") == 0)
791 complete_paths = TRUE;
792 remove_arg ((*argc) - 1, argc, argv);
795 complete_methods = FALSE;
796 if (request_completion && *argc > 1 && g_strcmp0 ((*argv)[(*argc)-1], "--method") == 0)
798 complete_methods = TRUE;
799 remove_arg ((*argc) - 1, argc, argv);
802 if (!g_option_context_parse (o, argc, argv, NULL))
804 if (!request_completion)
806 s = g_option_context_get_help (o, FALSE, NULL);
807 g_printerr ("%s", s);
814 c = connection_get_dbus_connection (&error);
817 if (request_completion)
819 if (g_strcmp0 (completion_prev, "--address") == 0)
827 g_print ("--system \n--session \n--address \n");
832 g_printerr (_("Error connecting: %s\n"), error->message);
833 g_error_free (error);
838 /* validate and complete destination (bus name) */
839 if (g_dbus_connection_get_unique_name (c) != NULL)
841 /* this only makes sense on message bus connections */
844 print_names (c, FALSE);
847 if (opt_call_dest == NULL)
849 if (request_completion)
850 g_print ("--dest \n");
852 g_printerr (_("Error: Destination is not specified\n"));
855 if (request_completion && g_strcmp0 ("--dest", completion_prev) == 0)
857 print_names (c, g_str_has_prefix (opt_call_dest, ":"));
862 /* validate and complete object path */
865 print_paths (c, opt_call_dest, "/");
868 if (opt_call_object_path == NULL)
870 if (request_completion)
871 g_print ("--object-path \n");
873 g_printerr (_("Error: Object path is not specified\n"));
876 if (request_completion && g_strcmp0 ("--object-path", completion_prev) == 0)
879 s = g_strdup (opt_call_object_path);
880 p = strrchr (s, '/');
887 print_paths (c, opt_call_dest, s);
891 if (!request_completion && !g_variant_is_object_path (opt_call_object_path))
893 g_printerr (_("Error: %s is not a valid object path\n"), opt_call_object_path);
897 /* validate and complete method (interface + method name) */
898 if (complete_methods)
900 print_methods (c, opt_call_dest, opt_call_object_path);
903 if (opt_call_method == NULL)
905 if (request_completion)
906 g_print ("--method \n");
908 g_printerr (_("Error: Method name is not specified\n"));
911 if (request_completion && g_strcmp0 ("--method", completion_prev) == 0)
913 print_methods (c, opt_call_dest, opt_call_object_path);
916 s = strrchr (opt_call_method, '.');
917 if (!request_completion && s == NULL)
919 g_printerr (_("Error: Method name `%s' is invalid\n"), opt_call_method);
922 method_name = g_strdup (s + 1);
923 interface_name = g_strndup (opt_call_method, s - opt_call_method);
925 /* All done with completion now */
926 if (request_completion)
929 /* Introspect, for easy conversion - it's not fatal if we can't do this */
930 in_signature_types = call_helper_get_method_in_signature (c,
932 opt_call_object_path,
936 if (in_signature_types == NULL)
938 //g_printerr ("Error getting introspection data: %s\n", error->message);
939 g_error_free (error);
943 /* Read parameters */
944 g_variant_builder_init (&builder, G_VARIANT_TYPE_TUPLE);
945 for (n = 1; n < (guint) *argc; n++)
951 if (in_signature_types != NULL)
953 if (n - 1 >= in_signature_types->len)
955 /* Only warn for the first param */
956 if (n - 1 == in_signature_types->len)
958 g_printerr ("Warning: Introspection data indicates %d parameters but more was passed\n",
959 in_signature_types->len);
964 type = in_signature_types->pdata[n - 1];
969 value = g_variant_parse (type,
976 g_error_free (error);
978 value = _g_variant_parse_me_harder (type, (*argv)[n], &error);
983 s = g_variant_type_dup_string (type);
984 g_printerr (_("Error parsing parameter %d of type `%s': %s\n"),
992 g_printerr (_("Error parsing parameter %d: %s\n"),
996 g_error_free (error);
997 g_variant_builder_clear (&builder);
1001 g_variant_builder_add_value (&builder, value);
1003 parameters = g_variant_builder_end (&builder);
1005 if (parameters != NULL)
1006 parameters = g_variant_ref_sink (parameters);
1007 result = g_dbus_connection_call_sync (c,
1009 opt_call_object_path,
1014 G_DBUS_CALL_FLAGS_NONE,
1015 opt_call_timeout > 0 ? opt_call_timeout * 1000 : opt_call_timeout,
1020 g_printerr (_("Error: %s\n"), error->message);
1021 g_error_free (error);
1022 if (in_signature_types != NULL)
1025 s = g_string_new (NULL);
1026 for (n = 0; n < in_signature_types->len; n++)
1028 GVariantType *type = in_signature_types->pdata[n];
1029 g_string_append_len (s,
1030 g_variant_type_peek_string (type),
1031 g_variant_type_get_string_length (type));
1033 g_printerr ("(According to introspection data, you need to pass `%s')\n", s->str);
1034 g_string_free (s, TRUE);
1039 s = g_variant_print (result, TRUE);
1040 g_print ("%s\n", s);
1046 if (in_signature_types != NULL)
1047 g_ptr_array_unref (in_signature_types);
1049 g_variant_unref (result);
1052 if (parameters != NULL)
1053 g_variant_unref (parameters);
1054 g_free (interface_name);
1055 g_free (method_name);
1056 g_option_context_free (o);
1060 /* ---------------------------------------------------------------------------------------------------- */
1062 static gchar *opt_introspect_dest = NULL;
1063 static gchar *opt_introspect_object_path = NULL;
1064 static gboolean opt_introspect_xml = FALSE;
1065 static gboolean opt_introspect_recurse = FALSE;
1066 static gboolean opt_introspect_only_properties = FALSE;
1069 dump_annotation (const GDBusAnnotationInfo *o,
1071 gboolean ignore_indent)
1074 g_print ("%*s@%s(\"%s\")\n",
1075 ignore_indent ? 0 : indent, "",
1078 for (n = 0; o->annotations != NULL && o->annotations[n] != NULL; n++)
1079 dump_annotation (o->annotations[n], indent + 2, FALSE);
1083 dump_arg (const GDBusArgInfo *o,
1085 const gchar *direction,
1086 gboolean ignore_indent,
1087 gboolean include_newline)
1091 for (n = 0; o->annotations != NULL && o->annotations[n] != NULL; n++)
1093 dump_annotation (o->annotations[n], indent, ignore_indent);
1094 ignore_indent = FALSE;
1097 g_print ("%*s%s%s %s%s",
1098 ignore_indent ? 0 : indent, "",
1102 include_newline ? ",\n" : "");
1106 count_args (GDBusArgInfo **args)
1112 while (args[n] != NULL)
1119 dump_method (const GDBusMethodInfo *o,
1125 guint total_num_args;
1127 for (n = 0; o->annotations != NULL && o->annotations[n] != NULL; n++)
1128 dump_annotation (o->annotations[n], indent, FALSE);
1130 g_print ("%*s%s(", indent, "", o->name);
1131 name_len = strlen (o->name);
1132 total_num_args = count_args (o->in_args) + count_args (o->out_args);
1133 for (n = 0, m = 0; o->in_args != NULL && o->in_args[n] != NULL; n++, m++)
1135 gboolean ignore_indent = (m == 0);
1136 gboolean include_newline = (m != total_num_args - 1);
1138 dump_arg (o->in_args[n],
1139 indent + name_len + 1,
1144 for (n = 0; o->out_args != NULL && o->out_args[n] != NULL; n++, m++)
1146 gboolean ignore_indent = (m == 0);
1147 gboolean include_newline = (m != total_num_args - 1);
1148 dump_arg (o->out_args[n],
1149 indent + name_len + 1,
1158 dump_signal (const GDBusSignalInfo *o,
1163 guint total_num_args;
1165 for (n = 0; o->annotations != NULL && o->annotations[n] != NULL; n++)
1166 dump_annotation (o->annotations[n], indent, FALSE);
1168 g_print ("%*s%s(", indent, "", o->name);
1169 name_len = strlen (o->name);
1170 total_num_args = count_args (o->args);
1171 for (n = 0; o->args != NULL && o->args[n] != NULL; n++)
1173 gboolean ignore_indent = (n == 0);
1174 gboolean include_newline = (n != total_num_args - 1);
1175 dump_arg (o->args[n],
1176 indent + name_len + 1,
1185 dump_property (const GDBusPropertyInfo *o,
1189 const gchar *access;
1192 if (o->flags == G_DBUS_PROPERTY_INFO_FLAGS_READABLE)
1193 access = "readonly";
1194 else if (o->flags == G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE)
1195 access = "writeonly";
1196 else if (o->flags == (G_DBUS_PROPERTY_INFO_FLAGS_READABLE | G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE))
1197 access = "readwrite";
1199 g_assert_not_reached ();
1201 for (n = 0; o->annotations != NULL && o->annotations[n] != NULL; n++)
1202 dump_annotation (o->annotations[n], indent, FALSE);
1206 gchar *s = g_variant_print (value, FALSE);
1207 g_print ("%*s%s %s %s = %s;\n", indent, "", access, o->signature, o->name, s);
1212 g_print ("%*s%s %s %s;\n", indent, "", access, o->signature, o->name);
1217 dump_interface (GDBusConnection *c,
1219 const GDBusInterfaceInfo *o,
1221 const gchar *object_path)
1224 GHashTable *properties;
1226 properties = g_hash_table_new_full (g_str_hash,
1229 (GDestroyNotify) g_variant_unref);
1231 /* Try to get properties */
1232 if (c != NULL && name != NULL && object_path != NULL && o->properties != NULL)
1235 result = g_dbus_connection_call_sync (c,
1238 "org.freedesktop.DBus.Properties",
1240 g_variant_new ("(s)", o->name),
1242 G_DBUS_CALL_FLAGS_NONE,
1248 if (g_variant_is_of_type (result, G_VARIANT_TYPE ("(a{sv})")))
1252 g_variant_get (result,
1255 while ((item = g_variant_iter_next_value (iter)))
1259 g_variant_get (item,
1264 g_hash_table_insert (properties, key, g_variant_ref (value));
1267 g_variant_unref (result);
1272 for (n = 0; o->properties != NULL && o->properties[n] != NULL; n++)
1274 result = g_dbus_connection_call_sync (c,
1277 "org.freedesktop.DBus.Properties",
1279 g_variant_new ("(ss)", o->name, o->properties[n]->name),
1280 G_VARIANT_TYPE ("(v)"),
1281 G_DBUS_CALL_FLAGS_NONE,
1287 GVariant *property_value;
1288 g_variant_get (result,
1291 g_hash_table_insert (properties,
1292 g_strdup (o->properties[n]->name),
1293 g_variant_ref (property_value));
1294 g_variant_unref (result);
1300 for (n = 0; o->annotations != NULL && o->annotations[n] != NULL; n++)
1301 dump_annotation (o->annotations[n], indent, FALSE);
1303 g_print ("%*sinterface %s {\n", indent, "", o->name);
1304 if (o->methods != NULL && !opt_introspect_only_properties)
1306 g_print ("%*s methods:\n", indent, "");
1307 for (n = 0; o->methods[n] != NULL; n++)
1308 dump_method (o->methods[n], indent + 4);
1310 if (o->signals != NULL && !opt_introspect_only_properties)
1312 g_print ("%*s signals:\n", indent, "");
1313 for (n = 0; o->signals[n] != NULL; n++)
1314 dump_signal (o->signals[n], indent + 4);
1316 if (o->properties != NULL)
1318 g_print ("%*s properties:\n", indent, "");
1319 for (n = 0; o->properties[n] != NULL; n++)
1321 dump_property (o->properties[n],
1323 g_hash_table_lookup (properties, (o->properties[n])->name));
1329 g_hash_table_unref (properties);
1333 introspect_do (GDBusConnection *c,
1334 const gchar *object_path,
1338 dump_node (GDBusConnection *c,
1340 const GDBusNodeInfo *o,
1342 const gchar *object_path,
1346 const gchar *object_path_to_print;
1348 object_path_to_print = object_path;
1349 if (o->path != NULL)
1350 object_path_to_print = o->path;
1352 for (n = 0; o->annotations != NULL && o->annotations[n] != NULL; n++)
1353 dump_annotation (o->annotations[n], indent, FALSE);
1355 g_print ("%*snode %s", indent, "", object_path_to_print != NULL ? object_path_to_print : "(not set)");
1356 if (o->interfaces != NULL || o->nodes != NULL)
1359 for (n = 0; o->interfaces != NULL && o->interfaces[n] != NULL; n++)
1361 if (opt_introspect_only_properties)
1363 if (o->interfaces[n]->properties != NULL && o->interfaces[n]->properties[0] != NULL)
1364 dump_interface (c, name, o->interfaces[n], indent + 2, object_path);
1368 dump_interface (c, name, o->interfaces[n], indent + 2, object_path);
1371 for (n = 0; o->nodes != NULL && o->nodes[n] != NULL; n++)
1376 if (g_variant_is_object_path (o->nodes[n]->path))
1378 child_path = g_strdup (o->nodes[n]->path);
1379 /* avoid infinite loops */
1380 if (g_str_has_prefix (child_path, object_path))
1382 introspect_do (c, child_path, indent + 2);
1386 g_print ("Skipping path %s that is not enclosed by parent %s\n",
1387 child_path, object_path);
1392 if (g_strcmp0 (object_path, "/") == 0)
1393 child_path = g_strdup_printf ("/%s", o->nodes[n]->path);
1395 child_path = g_strdup_printf ("%s/%s", object_path, o->nodes[n]->path);
1396 introspect_do (c, child_path, indent + 2);
1398 g_free (child_path);
1402 dump_node (NULL, NULL, o->nodes[n], indent + 2, NULL, recurse);
1414 static const GOptionEntry introspect_entries[] =
1416 { "dest", 'd', 0, G_OPTION_ARG_STRING, &opt_introspect_dest, N_("Destination name to introspect"), NULL},
1417 { "object-path", 'o', 0, G_OPTION_ARG_STRING, &opt_introspect_object_path, N_("Object path to introspect"), NULL},
1418 { "xml", 'x', 0, G_OPTION_ARG_NONE, &opt_introspect_xml, N_("Print XML"), NULL},
1419 { "recurse", 'r', 0, G_OPTION_ARG_NONE, &opt_introspect_recurse, N_("Introspect children"), NULL},
1420 { "only-properties", 'p', 0, G_OPTION_ARG_NONE, &opt_introspect_only_properties, N_("Only print properties"), NULL},
1425 introspect_do (GDBusConnection *c,
1426 const gchar *object_path,
1431 GDBusNodeInfo *node;
1433 const gchar *xml_data;
1440 result = g_dbus_connection_call_sync (c,
1441 opt_introspect_dest,
1443 "org.freedesktop.DBus.Introspectable",
1446 G_VARIANT_TYPE ("(s)"),
1447 G_DBUS_CALL_FLAGS_NONE,
1453 g_printerr (_("Error: %s\n"), error->message);
1454 g_error_free (error);
1457 g_variant_get (result, "(&s)", &xml_data);
1459 if (opt_introspect_xml)
1461 g_print ("%s", xml_data);
1466 node = g_dbus_node_info_new_for_xml (xml_data, &error);
1469 g_printerr (_("Error parsing introspection XML: %s\n"), error->message);
1470 g_error_free (error);
1474 dump_node (c, opt_introspect_dest, node, indent, object_path, opt_introspect_recurse);
1481 g_dbus_node_info_unref (node);
1483 g_variant_unref (result);
1488 handle_introspect (gint *argc,
1490 gboolean request_completion,
1491 const gchar *completion_cur,
1492 const gchar *completion_prev)
1499 gboolean complete_names;
1500 gboolean complete_paths;
1505 modify_argv0_for_command (argc, argv, "introspect");
1507 o = g_option_context_new (NULL);
1508 if (request_completion)
1509 g_option_context_set_ignore_unknown_options (o, TRUE);
1510 g_option_context_set_help_enabled (o, FALSE);
1511 g_option_context_set_summary (o, _("Introspect a remote object."));
1512 g_option_context_add_main_entries (o, introspect_entries, GETTEXT_PACKAGE);
1513 g_option_context_add_group (o, connection_get_group ());
1515 complete_names = FALSE;
1516 if (request_completion && *argc > 1 && g_strcmp0 ((*argv)[(*argc)-1], "--dest") == 0)
1518 complete_names = TRUE;
1519 remove_arg ((*argc) - 1, argc, argv);
1522 complete_paths = FALSE;
1523 if (request_completion && *argc > 1 && g_strcmp0 ((*argv)[(*argc)-1], "--object-path") == 0)
1525 complete_paths = TRUE;
1526 remove_arg ((*argc) - 1, argc, argv);
1529 if (!g_option_context_parse (o, argc, argv, NULL))
1531 if (!request_completion)
1533 s = g_option_context_get_help (o, FALSE, NULL);
1534 g_printerr ("%s", s);
1541 c = connection_get_dbus_connection (&error);
1544 if (request_completion)
1546 if (g_strcmp0 (completion_prev, "--address") == 0)
1554 g_print ("--system \n--session \n--address \n");
1559 g_printerr (_("Error connecting: %s\n"), error->message);
1560 g_error_free (error);
1565 if (g_dbus_connection_get_unique_name (c) != NULL)
1569 print_names (c, FALSE);
1572 /* this only makes sense on message bus connections */
1573 if (opt_introspect_dest == NULL)
1575 if (request_completion)
1576 g_print ("--dest \n");
1578 g_printerr (_("Error: Destination is not specified\n"));
1581 if (request_completion && g_strcmp0 ("--dest", completion_prev) == 0)
1583 print_names (c, g_str_has_prefix (opt_introspect_dest, ":"));
1589 print_paths (c, opt_introspect_dest, "/");
1592 if (opt_introspect_object_path == NULL)
1594 if (request_completion)
1595 g_print ("--object-path \n");
1597 g_printerr (_("Error: Object path is not specified\n"));
1600 if (request_completion && g_strcmp0 ("--object-path", completion_prev) == 0)
1603 s = g_strdup (opt_introspect_object_path);
1604 p = strrchr (s, '/');
1611 print_paths (c, opt_introspect_dest, s);
1615 if (!request_completion && !g_variant_is_object_path (opt_introspect_object_path))
1617 g_printerr (_("Error: %s is not a valid object path\n"), opt_introspect_object_path);
1621 if (request_completion && opt_introspect_object_path != NULL && !opt_introspect_recurse)
1623 g_print ("--recurse \n");
1626 if (request_completion && opt_introspect_object_path != NULL && !opt_introspect_only_properties)
1628 g_print ("--only-properties \n");
1631 /* All done with completion now */
1632 if (request_completion)
1635 if (!introspect_do (c, opt_introspect_object_path, 0))
1643 g_option_context_free (o);
1647 /* ---------------------------------------------------------------------------------------------------- */
1649 static gchar *opt_monitor_dest = NULL;
1650 static gchar *opt_monitor_object_path = NULL;
1652 static guint monitor_filter_id = 0;
1655 monitor_signal_cb (GDBusConnection *connection,
1656 const gchar *sender_name,
1657 const gchar *object_path,
1658 const gchar *interface_name,
1659 const gchar *signal_name,
1660 GVariant *parameters,
1664 s = g_variant_print (parameters, TRUE);
1665 g_print ("%s: %s.%s %s\n",
1674 monitor_on_name_appeared (GDBusConnection *connection,
1676 const gchar *name_owner,
1679 g_print ("The name %s is owned by %s\n", name, name_owner);
1680 g_assert (monitor_filter_id == 0);
1681 monitor_filter_id = g_dbus_connection_signal_subscribe (connection,
1683 NULL, /* any interface */
1684 NULL, /* any member */
1685 opt_monitor_object_path,
1687 G_DBUS_SIGNAL_FLAGS_NONE,
1689 NULL, /* user_data */
1690 NULL); /* user_data destroy notify */
1694 monitor_on_name_vanished (GDBusConnection *connection,
1698 g_print ("The name %s does not have an owner\n", name);
1700 if (monitor_filter_id != 0)
1702 g_dbus_connection_signal_unsubscribe (connection, monitor_filter_id);
1703 monitor_filter_id = 0;
1707 static const GOptionEntry monitor_entries[] =
1709 { "dest", 'd', 0, G_OPTION_ARG_STRING, &opt_monitor_dest, N_("Destination name to monitor"), NULL},
1710 { "object-path", 'o', 0, G_OPTION_ARG_STRING, &opt_monitor_object_path, N_("Object path to monitor"), NULL},
1715 handle_monitor (gint *argc,
1717 gboolean request_completion,
1718 const gchar *completion_cur,
1719 const gchar *completion_prev)
1727 GDBusNodeInfo *node;
1728 gboolean complete_names;
1729 gboolean complete_paths;
1737 modify_argv0_for_command (argc, argv, "monitor");
1739 o = g_option_context_new (NULL);
1740 if (request_completion)
1741 g_option_context_set_ignore_unknown_options (o, TRUE);
1742 g_option_context_set_help_enabled (o, FALSE);
1743 g_option_context_set_summary (o, _("Monitor a remote object."));
1744 g_option_context_add_main_entries (o, monitor_entries, GETTEXT_PACKAGE);
1745 g_option_context_add_group (o, connection_get_group ());
1747 complete_names = FALSE;
1748 if (request_completion && *argc > 1 && g_strcmp0 ((*argv)[(*argc)-1], "--dest") == 0)
1750 complete_names = TRUE;
1751 remove_arg ((*argc) - 1, argc, argv);
1754 complete_paths = FALSE;
1755 if (request_completion && *argc > 1 && g_strcmp0 ((*argv)[(*argc)-1], "--object-path") == 0)
1757 complete_paths = TRUE;
1758 remove_arg ((*argc) - 1, argc, argv);
1761 if (!g_option_context_parse (o, argc, argv, NULL))
1763 if (!request_completion)
1765 s = g_option_context_get_help (o, FALSE, NULL);
1766 g_printerr ("%s", s);
1773 c = connection_get_dbus_connection (&error);
1776 if (request_completion)
1778 if (g_strcmp0 (completion_prev, "--address") == 0)
1786 g_print ("--system \n--session \n--address \n");
1791 g_printerr (_("Error connecting: %s\n"), error->message);
1792 g_error_free (error);
1797 if (g_dbus_connection_get_unique_name (c) != NULL)
1801 print_names (c, FALSE);
1804 /* this only makes sense on message bus connections */
1805 if (opt_monitor_dest == NULL)
1807 if (request_completion)
1808 g_print ("--dest \n");
1810 g_printerr (_("Error: Destination is not specified\n"));
1813 if (request_completion && g_strcmp0 ("--dest", completion_prev) == 0)
1815 print_names (c, g_str_has_prefix (opt_monitor_dest, ":"));
1821 print_paths (c, opt_monitor_dest, "/");
1824 if (opt_monitor_object_path == NULL)
1826 if (request_completion)
1828 g_print ("--object-path \n");
1831 /* it's fine to not have an object path */
1833 if (request_completion && g_strcmp0 ("--object-path", completion_prev) == 0)
1836 s = g_strdup (opt_monitor_object_path);
1837 p = strrchr (s, '/');
1844 print_paths (c, opt_monitor_dest, s);
1848 if (!request_completion && (opt_monitor_object_path != NULL && !g_variant_is_object_path (opt_monitor_object_path)))
1850 g_printerr (_("Error: %s is not a valid object path\n"), opt_monitor_object_path);
1854 /* All done with completion now */
1855 if (request_completion)
1858 if (opt_monitor_object_path != NULL)
1859 g_print ("Monitoring signals on object %s owned by %s\n", opt_monitor_object_path, opt_monitor_dest);
1861 g_print ("Monitoring signals from all objects owned by %s\n", opt_monitor_dest);
1863 loop = g_main_loop_new (NULL, FALSE);
1864 g_bus_watch_name_on_connection (c,
1866 G_BUS_NAME_WATCHER_FLAGS_AUTO_START,
1867 monitor_on_name_appeared,
1868 monitor_on_name_vanished,
1872 g_main_loop_run (loop);
1873 g_main_loop_unref (loop);
1879 g_dbus_node_info_unref (node);
1881 g_variant_unref (result);
1884 g_option_context_free (o);
1888 /* ---------------------------------------------------------------------------------------------------- */
1891 pick_word_at (const gchar *s,
1893 gint *out_word_begins_at)
1900 if (out_word_begins_at != NULL)
1901 *out_word_begins_at = -1;
1905 if (g_ascii_isspace (s[cursor]) && ((cursor > 0 && g_ascii_isspace(s[cursor-1])) || cursor == 0))
1907 if (out_word_begins_at != NULL)
1908 *out_word_begins_at = cursor;
1909 return g_strdup ("");
1912 while (!g_ascii_isspace (s[cursor - 1]) && cursor > 0)
1917 while (!g_ascii_isspace (s[end]) && s[end] != '\0')
1920 if (out_word_begins_at != NULL)
1921 *out_word_begins_at = begin;
1923 return g_strndup (s + begin, end - begin);
1927 main (gint argc, gchar *argv[])
1930 const gchar *command;
1931 gboolean request_completion;
1932 gchar *completion_cur;
1933 gchar *completion_prev;
1938 setlocale (LC_ALL, "");
1939 textdomain (GETTEXT_PACKAGE);
1942 tmp = _glib_get_locale_dir ();
1943 bindtextdomain (GETTEXT_PACKAGE, tmp);
1946 bindtextdomain (GETTEXT_PACKAGE, GLIB_LOCALE_DIR);
1949 #ifdef HAVE_BIND_TEXTDOMAIN_CODESET
1950 bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
1954 completion_cur = NULL;
1955 completion_prev = NULL;
1959 usage (&argc, &argv, FALSE);
1963 request_completion = FALSE;
1965 //completion_debug ("---- argc=%d --------------------------------------------------------", argc);
1969 if (g_strcmp0 (command, "help") == 0)
1971 if (request_completion)
1977 usage (&argc, &argv, TRUE);
1982 else if (g_strcmp0 (command, "emit") == 0)
1984 if (handle_emit (&argc,
1992 else if (g_strcmp0 (command, "call") == 0)
1994 if (handle_call (&argc,
2002 else if (g_strcmp0 (command, "introspect") == 0)
2004 if (handle_introspect (&argc,
2012 else if (g_strcmp0 (command, "monitor") == 0)
2014 if (handle_monitor (&argc,
2022 else if (g_strcmp0 (command, "complete") == 0 && argc == 4 && !request_completion)
2024 const gchar *completion_line;
2025 gchar **completion_argv;
2026 gint completion_argc;
2027 gint completion_point;
2031 request_completion = TRUE;
2033 completion_line = argv[2];
2034 completion_point = strtol (argv[3], &endp, 10);
2035 if (endp == argv[3] || *endp != '\0')
2039 completion_debug ("completion_point=%d", completion_point);
2040 completion_debug ("----");
2041 completion_debug (" 0123456789012345678901234567890123456789012345678901234567890123456789");
2042 completion_debug ("`%s'", completion_line);
2043 completion_debug (" %*s^",
2044 completion_point, "");
2045 completion_debug ("----");
2048 if (!g_shell_parse_argv (completion_line,
2053 /* it's very possible the command line can't be parsed (for
2054 * example, missing quotes etc) - in that case, we just
2055 * don't autocomplete at all
2060 /* compute cur and prev */
2061 completion_prev = NULL;
2062 completion_cur = pick_word_at (completion_line, completion_point, &cur_begin);
2066 for (prev_end = cur_begin - 1; prev_end >= 0; prev_end--)
2068 if (!g_ascii_isspace (completion_line[prev_end]))
2070 completion_prev = pick_word_at (completion_line, prev_end, NULL);
2076 completion_debug (" cur=`%s'", completion_cur);
2077 completion_debug ("prev=`%s'", completion_prev);
2080 argc = completion_argc;
2081 argv = completion_argv;
2089 if (request_completion)
2091 g_print ("help \nemit \ncall \nintrospect \nmonitor \n");
2097 g_printerr ("Unknown command `%s'\n", command);
2098 usage (&argc, &argv, FALSE);
2104 g_free (completion_cur);
2105 g_free (completion_prev);