4 This file is part of avahi.
6 avahi is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 avahi is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14 Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with avahi; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
28 #define DBUS_API_SUBJECT_TO_CHANGE
29 #include <dbus/dbus.h>
30 #include <dbus/dbus-glib-lowlevel.h>
32 #include "dbus-protocol.h"
34 static DBusConnection *bus = NULL;
36 static DBusHandlerResult
37 do_register (DBusConnection *conn, DBusMessage *message)
42 dbus_error_init (&error);
44 dbus_message_get_args (message, &error,
48 if (dbus_error_is_set (&error))
50 g_warning ("Error parsing register attempt");
51 dbus_error_free (&error);
53 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
56 g_message ("Register received from: %s", s);
58 return DBUS_HANDLER_RESULT_HANDLED;
61 static DBusHandlerResult
62 signal_filter (DBusConnection *conn, DBusMessage *message, void *user_data)
64 GMainLoop *loop = user_data;
67 dbus_error_init (&error);
69 g_message ("dbus: interface=%s, path=%s, member=%s",
70 dbus_message_get_interface (message),
71 dbus_message_get_path (message),
72 dbus_message_get_member (message));
74 if (dbus_message_is_signal (message,
75 #ifdef DBUS_USE_NEW_API
78 DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL,
82 /* No, we shouldn't quit, but until we get somewhere
83 * usefull such that we can restore our state, we will */
84 g_warning ("Disconnnected from d-bus, terminating...");
86 g_main_loop_quit (loop);
87 return DBUS_HANDLER_RESULT_HANDLED;
88 } else if (dbus_message_is_method_call (message, DBUS_SERVICE_AVAHI,
91 return do_register (conn, message);
92 } else if (dbus_message_is_signal (message,
93 #ifdef DBUS_USE_NEW_API
96 DBUS_INTERFACE_ORG_FREEDESKTOP_DBUS,
102 dbus_message_get_args (message, &error,
103 DBUS_TYPE_STRING, &name,
106 if (dbus_error_is_set (&error))
108 g_warning ("Error parsing NameAcquired message");
109 dbus_error_free (&error);
111 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
114 g_message ("dbus: ServiceAcquired (%s)", name);
116 return DBUS_HANDLER_RESULT_HANDLED;
119 g_message ("dbus: missed event");
121 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
125 dbus_protocol_setup (GMainLoop *loop)
129 dbus_error_init (&error);
131 bus = dbus_bus_get (DBUS_BUS_SYSTEM, &error);
135 g_warning ("dbus_bus_get(): %s", error.message);
136 dbus_error_free (&error);
141 dbus_connection_setup_with_g_main (bus, NULL);
142 dbus_connection_set_exit_on_disconnect (bus, FALSE);
144 #ifdef DBUS_USE_NEW_API
145 dbus_bus_request_name (bus, DBUS_SERVICE_AVAHI, 0, &error);
147 dbus_bus_acquire_service (bus, DBUS_SERVICE_AVAHI, 0, &error);
150 if (dbus_error_is_set (&error))
152 g_warning ("dbus_error_is_set (): %s", error.message);
153 dbus_error_free (&error);
158 dbus_connection_add_filter (bus, signal_filter, loop, NULL);
159 dbus_bus_add_match (bus,
160 "type='method_call',interface='org.freedesktop.Avahi'",
163 if (dbus_error_is_set (&error))
165 g_warning ("dbus_bus_add_match (): %s", error.message);
166 dbus_error_free (&error);
175 dbus_protocol_shutdown ()
178 dbus_connection_disconnect(bus);
179 dbus_connection_unref(bus);