1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-viewer.c Graphical D-BUS frontend utility
4 * Copyright (C) 2003 Red Hat, Inc.
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
29 #include "dbus-tree-view.h"
30 #include "dbus-names-model.h"
31 #include <glib/dbus-gparser.h>
32 #include <glib/dbus-gutils.h>
33 #include <dbus/dbus-glib.h>
34 #include <glib/gi18n.h>
37 show_error_dialog (GtkWindow *transient_parent,
39 const char *message_format,
47 va_start (args, message_format);
48 message = g_strdup_vprintf (message_format, args);
54 if (weak_ptr == NULL || *weak_ptr == NULL)
57 dialog = gtk_message_dialog_new (transient_parent,
58 GTK_DIALOG_DESTROY_WITH_PARENT,
63 g_signal_connect (G_OBJECT (dialog), "response", G_CALLBACK (gtk_widget_destroy), NULL);
68 g_object_add_weak_pointer (G_OBJECT (dialog), (void**)weak_ptr);
71 gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
73 gtk_widget_show_all (dialog);
77 g_return_if_fail (GTK_IS_MESSAGE_DIALOG (*weak_ptr));
79 gtk_label_set_text (GTK_LABEL (GTK_MESSAGE_DIALOG (*weak_ptr)->label), message);
81 gtk_window_present (GTK_WINDOW (*weak_ptr));
87 DBusGConnection *connection;
93 GtkTreeModel *names_model;
95 GtkWidget *error_dialog;
101 tree_window_set_node (TreeWindow *w,
107 name = node_info_get_name (node);
111 g_printerr (_("Assuming root node is at path /, since no absolute path is specified"));
115 path = _dbus_gutils_split_path (name);
117 dbus_tree_view_update (GTK_TREE_VIEW (w->treeview),
126 DBusGConnection *connection;
130 TreeWindow *window; /* Not touched from child thread */
131 } LoadFromServiceData;
134 load_child_nodes (const char *service_name,
139 DBusGConnection *connection;
142 connection = dbus_g_bus_get (DBUS_BUS_SESSION, error);
143 if (connection == NULL)
146 tmp = node_info_get_nodes (parent);
152 NodeInfo *complete_child;
155 complete_child = NULL;
159 save_len = path->len;
162 g_string_append (path, "/");
163 g_string_append (path, base_info_get_name ((BaseInfo*)child));
165 if (*service_name == ':')
167 proxy = dbus_g_proxy_new_for_name (connection,
170 DBUS_INTERFACE_INTROSPECTABLE);
171 g_assert (proxy != NULL);
175 proxy = dbus_g_proxy_new_for_name_owner (connection,
178 DBUS_INTERFACE_INTROSPECTABLE,
184 if (!dbus_g_proxy_call (proxy, "Introspect", error,
186 G_TYPE_STRING, &data,
190 complete_child = description_load_from_string (data, -1, error);
192 if (complete_child == NULL)
194 g_printerr ("%s\n", data);
199 g_object_unref (proxy);
201 if (complete_child == NULL)
204 /* change complete_child's name to relative */
205 base_info_set_name ((BaseInfo*)complete_child,
206 base_info_get_name ((BaseInfo*)child));
208 /* Stitch in complete_child rather than child */
209 node_info_replace_node (parent, child, complete_child);
210 node_info_unref (complete_child); /* ref still held by parent */
213 if (!load_child_nodes (service_name, complete_child, path, error))
217 g_string_set_size (path, save_len);
226 load_from_service_complete_idle (void *data)
228 /* Called in main thread */
229 GThread *thread = data;
230 LoadFromServiceData *d;
233 d = g_thread_join (thread);
239 g_assert (d->node == NULL);
240 show_error_dialog (GTK_WINDOW (d->window->window), &d->window->error_dialog,
241 _("Unable to load \"%s\": %s\n"),
242 d->service_name, d->error->message);
243 g_error_free (d->error);
247 g_assert (d->error == NULL);
249 tree_window_set_node (d->window, node);
250 node_info_unref (node);
253 g_free (d->service_name);
254 dbus_g_connection_unref (d->connection);
261 load_from_service_thread_func (void *thread_data)
263 DBusGProxy *root_proxy;
267 LoadFromServiceData *lfsd;
275 /* this will end up autolaunching the service when we introspect it */
276 root_proxy = dbus_g_proxy_new_for_name (lfsd->connection,
279 DBUS_INTERFACE_INTROSPECTABLE);
280 g_assert (root_proxy != NULL);
282 /* this will be an error if the service doesn't exist */
283 root_proxy = dbus_g_proxy_new_for_name_owner (lfsd->connection,
286 DBUS_INTERFACE_INTROSPECTABLE,
288 if (root_proxy == NULL)
290 g_printerr ("Failed to get owner of '%s'\n", lfsd->service_name);
295 if (!dbus_g_proxy_call (root_proxy, "Introspect", &lfsd->error,
297 G_TYPE_STRING, &data,
300 g_printerr ("Failed to Introspect() %s\n",
301 dbus_g_proxy_get_bus_name (root_proxy));
305 node = description_load_from_string (data, -1, &lfsd->error);
307 /* g_print ("%s\n", data); */
312 base_info_set_name ((BaseInfo*)node, "/");
314 path = g_string_new ("/");
316 if (!load_child_nodes (dbus_g_proxy_get_bus_name (root_proxy),
317 node, path, &lfsd->error))
319 node_info_unref (node);
325 g_object_unref (root_proxy);
328 g_string_free (path, TRUE);
331 g_assert (lfsd->node || lfsd->error);
332 g_assert (lfsd->node == NULL || lfsd->error == NULL);
334 /* Add idle to main thread that will join us back */
335 g_idle_add (load_from_service_complete_idle, g_thread_self ());
341 start_load_from_service (TreeWindow *w,
342 DBusGConnection *connection,
343 const char *service_name)
345 LoadFromServiceData *d;
347 d = g_new0 (LoadFromServiceData, 1);
349 d->connection = dbus_g_connection_ref (connection);
350 d->service_name = g_strdup (service_name);
355 g_thread_create (load_from_service_thread_func, d, TRUE, NULL);
359 tree_window_set_service (TreeWindow *w,
360 const char *service_name)
362 start_load_from_service (w, w->connection, service_name);
366 name_combo_changed_callback (GtkComboBox *combo,
371 if (gtk_combo_box_get_active_iter (combo, &iter))
376 model = gtk_combo_box_get_model (combo);
377 gtk_tree_model_get (model, &iter, 0, &text, -1);
381 tree_window_set_service (w, text);
388 window_closed_callback (GtkWidget *window,
391 g_assert (window == w->window);
397 tree_window_new (DBusGConnection *connection,
398 GtkTreeModel *names_model)
406 /* Should use glade, blah */
408 w = g_new0 (TreeWindow, 1);
409 w->window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
411 gtk_window_set_title (GTK_WINDOW (w->window), "D-BUS Viewer");
412 gtk_window_set_default_size (GTK_WINDOW (w->window), 400, 500);
414 g_signal_connect (w->window, "destroy", G_CALLBACK (window_closed_callback),
416 gtk_container_set_border_width (GTK_CONTAINER (w->window), 6);
418 vbox = gtk_vbox_new (FALSE, 6);
419 gtk_container_add (GTK_CONTAINER (w->window), vbox);
421 /* Create names option menu */
424 GtkCellRenderer *cell;
426 w->connection = connection;
428 w->names_model = names_model;
430 combo = gtk_combo_box_new_with_model (w->names_model);
432 cell = gtk_cell_renderer_text_new ();
433 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), cell, TRUE);
434 gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo), cell,
438 gtk_box_pack_start (GTK_BOX (vbox), combo, FALSE, FALSE, 0);
440 g_signal_connect (combo, "changed",
441 G_CALLBACK (name_combo_changed_callback),
445 /* Create tree view */
446 hbox = gtk_hbox_new (FALSE, 6);
447 gtk_container_add (GTK_CONTAINER (vbox), hbox);
449 sw = gtk_scrolled_window_new (NULL, NULL);
450 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw),
451 GTK_POLICY_AUTOMATIC,
452 GTK_POLICY_AUTOMATIC);
454 gtk_box_pack_start (GTK_BOX (hbox), sw, TRUE, TRUE, 0);
456 w->treeview = dbus_tree_view_new ();
458 gtk_container_add (GTK_CONTAINER (sw), w->treeview);
460 /* Show everything */
461 gtk_widget_show_all (w->window);
469 fprintf (stderr, "dbus-viewer [--version] [--help]\n");
476 printf ("D-BUS Message Bus Viewer %s\n"
477 "Copyright (C) 2003 Red Hat, Inc.\n"
478 "This is free software; see the source for copying conditions.\n"
479 "There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n",
485 main (int argc, char **argv)
487 const char *prev_arg;
490 gboolean end_of_args;
493 DBusGConnection *connection;
495 GtkTreeModel *names_model;
497 g_thread_init (NULL);
498 dbus_g_thread_init ();
500 bindtextdomain (GETTEXT_PACKAGE, DBUS_LOCALEDIR);
501 bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
502 textdomain (GETTEXT_PACKAGE);
504 gtk_init (&argc, &argv);
513 const char *arg = argv[i];
517 if (strcmp (arg, "--help") == 0 ||
518 strcmp (arg, "-h") == 0 ||
519 strcmp (arg, "-?") == 0)
521 else if (strcmp (arg, "--version") == 0)
523 else if (strcmp (arg, "--services") == 0)
525 else if (arg[0] == '-' &&
529 else if (arg[0] == '-')
535 files = g_slist_prepend (files, (char*) arg);
539 files = g_slist_prepend (files, (char*) arg);
546 if (services || files == NULL)
549 connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error);
550 if (connection == NULL)
552 g_printerr ("Could not open bus connection: %s\n",
554 g_error_free (error);
558 g_assert (connection == dbus_g_bus_get (DBUS_BUS_SESSION, NULL));
560 names_model = names_model_new (connection);
572 w = tree_window_new (connection, names_model);
575 files = g_slist_reverse (files);
580 const char *filename;
583 filename = tmp->data;
587 w = tree_window_new (connection, names_model);
588 tree_window_set_service (w, filename);
595 node = description_load_from_file (filename,
600 g_assert (error != NULL);
601 show_error_dialog (NULL, NULL,
602 _("Unable to load \"%s\": %s\n"),
603 filename, error->message);
604 g_error_free (error);
608 w = tree_window_new (connection, names_model);
609 tree_window_set_node (w, node);
610 node_info_unref (node);