2003-05-28 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.h>
28  /* Don't copy this, for programs outside the dbus tree it's dbus/dbus-glib.h */
29 #include <glib/dbus-glib.h>
30 #include "dbus-print-message.h"
31
32 static DBusHandlerResult
33 handler_func (DBusMessageHandler *handler,
34               DBusConnection     *connection,
35               DBusMessage        *message,
36               void               *user_data)
37 {
38   print_message (message);
39   
40   if (dbus_message_has_name (message, DBUS_MESSAGE_LOCAL_DISCONNECT))
41     exit (0);
42   
43   return DBUS_HANDLER_RESULT_ALLOW_MORE_HANDLERS;
44 }
45
46 static void
47 usage (char *name, int ecode)
48 {
49   fprintf (stderr, "Usage: %s [--system]\n", name);
50   exit (ecode);
51 }
52
53 int
54 main (int argc, char *argv[])
55 {
56   DBusConnection *connection;
57   DBusError error;
58   DBusBusType type = DBUS_BUS_SESSION;
59   DBusMessageHandler *handler;
60   GMainLoop *loop;
61   int i;
62
63   for (i = 1; i < argc; i++)
64     {
65       char *arg = argv[i];
66
67       if (!strcmp (arg, "--system"))
68         type = DBUS_BUS_SYSTEM;
69       else if (!strcmp (arg, "--help"))
70         usage (argv[0], 0);
71       else if (!strcmp (arg, "--"))
72         break;
73       else if (arg[0] == '-')
74         usage (argv[0], 1);
75     }
76
77   if (argc > 2)
78     usage (argv[0], 1);
79
80   loop = g_main_loop_new (NULL, FALSE);
81
82   dbus_error_init (&error);
83   connection = dbus_bus_get (type, &error);
84   if (connection == NULL)
85     {
86       fprintf (stderr, "Failed to open connection to %s message bus: %s\n",
87                (type == DBUS_BUS_SYSTEM) ? "system" : "session",
88                error.message);
89       dbus_error_free (&error);
90       exit (1);
91     }
92
93   dbus_connection_setup_with_g_main (connection, NULL);
94
95   handler = dbus_message_handler_new (handler_func, NULL, NULL);
96   dbus_connection_add_filter (connection, handler);
97
98   g_main_loop_run (loop);
99
100   exit (0);
101 }