2005-07-06 Colin Walters <walters@verbum.org>
[platform/upstream/dbus.git] / tools / dbus-monitor.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-monitor.c  Utility program to monitor messages on the bus
3  *
4  * Copyright (C) 2003 Philip Blundell <philb@gnu.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25
26 #include <glib.h>
27 #include <dbus/dbus-glib-lowlevel.h>
28 #include "dbus-print-message.h"
29
30 static DBusHandlerResult
31 filter_func (DBusConnection     *connection,
32              DBusMessage        *message,
33              void               *user_data)
34 {
35   print_message (message, FALSE);
36   
37   if (dbus_message_is_signal (message,
38                               DBUS_INTERFACE_LOCAL,
39                               "Disconnected"))
40     exit (0);
41   
42   /* Conceptually we want this to be
43    * DBUS_HANDLER_RESULT_NOT_YET_HANDLED, but this raises
44    * some problems.  See bug 1719.
45    */
46   return DBUS_HANDLER_RESULT_HANDLED;
47 }
48
49 static void
50 usage (char *name, int ecode)
51 {
52   fprintf (stderr, "Usage: %s [--system | --session]\n", name);
53   exit (ecode);
54 }
55
56 int
57 main (int argc, char *argv[])
58 {
59   DBusConnection *connection;
60   DBusError error;
61   DBusBusType type = DBUS_BUS_SESSION;
62   GMainLoop *loop;
63   int i;
64
65   for (i = 1; i < argc; i++)
66     {
67       char *arg = argv[i];
68
69       if (!strcmp (arg, "--system"))
70         type = DBUS_BUS_SYSTEM;
71       else if (!strcmp (arg, "--session"))
72         type = DBUS_BUS_SESSION;
73       else if (!strcmp (arg, "--help"))
74         usage (argv[0], 0);
75       else if (!strcmp (arg, "--"))
76         break;
77       else if (arg[0] == '-')
78         usage (argv[0], 1);
79     }
80
81   if (argc > 2)
82     usage (argv[0], 1);
83
84   loop = g_main_loop_new (NULL, FALSE);
85
86   dbus_error_init (&error);
87   connection = dbus_bus_get (type, &error);
88   if (connection == NULL)
89     {
90       fprintf (stderr, "Failed to open connection to %s message bus: %s\n",
91                (type == DBUS_BUS_SYSTEM) ? "system" : "session",
92                error.message);
93       dbus_error_free (&error);
94       exit (1);
95     }
96
97   dbus_connection_setup_with_g_main (connection, NULL);
98
99   dbus_bus_add_match (connection,
100                       "type='signal'",
101                       &error);
102   if (dbus_error_is_set (&error))
103     goto lose;
104   dbus_bus_add_match (connection,
105                       "type='method_call'",
106                       &error);
107   if (dbus_error_is_set (&error))
108     goto lose;
109   dbus_bus_add_match (connection,
110                       "type='method_return'",
111                       &error);
112   if (dbus_error_is_set (&error))
113     goto lose;
114   dbus_bus_add_match (connection,
115                       "type='error'",
116                       &error);
117   if (dbus_error_is_set (&error))
118     goto lose;
119   if (!dbus_connection_add_filter (connection, filter_func, NULL, NULL)) {
120     fprintf (stderr, "Couldn't add filter!\n");
121     exit (1);
122   }
123
124   g_main_loop_run (loop);
125
126   exit (0);
127  lose:
128   fprintf (stderr, "Error: %s\n", error.message);
129   exit (1);
130 }