5 * Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org>
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
29 #include <dbus/dbus.h>
31 #ifdef NEED_DBUS_WATCH_GET_UNIX_FD
32 #define dbus_watch_get_unix_fd dbus_watch_get_fd
37 #define DISPATCH_TIMEOUT 0
43 struct timeout_handler {
54 struct disconnect_data {
55 GDBusWatchFunction function;
59 static gboolean disconnected_signal(DBusConnection *conn,
60 DBusMessage *msg, void *data)
62 struct disconnect_data *dc_data = data;
64 error("Got disconnected from the system message bus");
66 dc_data->function(conn, dc_data->user_data);
68 dbus_connection_unref(conn);
73 static gboolean message_dispatch(void *data)
75 DBusConnection *conn = data;
77 dbus_connection_ref(conn);
79 /* Dispatch messages */
80 while (dbus_connection_dispatch(conn) == DBUS_DISPATCH_DATA_REMAINS);
82 dbus_connection_unref(conn);
87 static inline void queue_dispatch(DBusConnection *conn,
88 DBusDispatchStatus status)
90 if (status == DBUS_DISPATCH_DATA_REMAINS)
91 g_timeout_add(DISPATCH_TIMEOUT, message_dispatch, conn);
94 static gboolean watch_func(GIOChannel *chan, GIOCondition cond, gpointer data)
96 struct watch_info *info = data;
97 unsigned int flags = 0;
99 dbus_connection_ref(info->conn);
101 if (cond & G_IO_IN) flags |= DBUS_WATCH_READABLE;
102 if (cond & G_IO_OUT) flags |= DBUS_WATCH_WRITABLE;
103 if (cond & G_IO_HUP) flags |= DBUS_WATCH_HANGUP;
104 if (cond & G_IO_ERR) flags |= DBUS_WATCH_ERROR;
106 dbus_watch_handle(info->watch, flags);
108 dbus_connection_unref(info->conn);
113 static void watch_info_free(void *data)
115 struct watch_info *info = data;
118 g_source_remove(info->id);
122 dbus_connection_unref(info->conn);
127 static dbus_bool_t add_watch(DBusWatch *watch, void *data)
129 DBusConnection *conn = data;
130 GIOCondition cond = G_IO_HUP | G_IO_ERR;
132 struct watch_info *info;
136 if (!dbus_watch_get_enabled(watch))
139 info = g_new0(struct watch_info, 1);
141 fd = dbus_watch_get_unix_fd(watch);
142 chan = g_io_channel_unix_new(fd);
145 info->conn = dbus_connection_ref(conn);
147 dbus_watch_set_data(watch, info, watch_info_free);
149 flags = dbus_watch_get_flags(watch);
151 if (flags & DBUS_WATCH_READABLE) cond |= G_IO_IN;
152 if (flags & DBUS_WATCH_WRITABLE) cond |= G_IO_OUT;
154 info->id = g_io_add_watch(chan, cond, watch_func, info);
156 g_io_channel_unref(chan);
161 static void remove_watch(DBusWatch *watch, void *data)
163 if (dbus_watch_get_enabled(watch))
166 /* will trigger watch_info_free() */
167 dbus_watch_set_data(watch, NULL, NULL);
170 static void watch_toggled(DBusWatch *watch, void *data)
172 /* Because we just exit on OOM, enable/disable is
173 * no different from add/remove */
174 if (dbus_watch_get_enabled(watch))
175 add_watch(watch, data);
177 remove_watch(watch, data);
180 static gboolean timeout_handler_dispatch(gpointer data)
182 struct timeout_handler *handler = data;
186 /* if not enabled should not be polled by the main loop */
187 if (!dbus_timeout_get_enabled(handler->timeout))
190 dbus_timeout_handle(handler->timeout);
195 static void timeout_handler_free(void *data)
197 struct timeout_handler *handler = data;
199 if (handler->id > 0) {
200 g_source_remove(handler->id);
207 static dbus_bool_t add_timeout(DBusTimeout *timeout, void *data)
209 int interval = dbus_timeout_get_interval(timeout);
210 struct timeout_handler *handler;
212 if (!dbus_timeout_get_enabled(timeout))
215 handler = g_new0(struct timeout_handler, 1);
217 handler->timeout = timeout;
219 dbus_timeout_set_data(timeout, handler, timeout_handler_free);
221 handler->id = g_timeout_add(interval, timeout_handler_dispatch,
227 static void remove_timeout(DBusTimeout *timeout, void *data)
229 if (dbus_timeout_get_enabled(timeout))
232 /* will trigger timeout_handler_free() */
233 dbus_timeout_set_data(timeout, NULL, NULL);
236 static void timeout_toggled(DBusTimeout *timeout, void *data)
238 if (dbus_timeout_get_enabled(timeout))
239 add_timeout(timeout, data);
241 remove_timeout(timeout, data);
244 static void dispatch_status(DBusConnection *conn,
245 DBusDispatchStatus status, void *data)
247 if (!dbus_connection_get_is_connected(conn))
250 queue_dispatch(conn, status);
253 static inline void setup_dbus_with_main_loop(DBusConnection *conn)
255 dbus_connection_set_watch_functions(conn, add_watch, remove_watch,
256 watch_toggled, conn, NULL);
258 dbus_connection_set_timeout_functions(conn, add_timeout, remove_timeout,
259 timeout_toggled, NULL, NULL);
261 dbus_connection_set_dispatch_status_function(conn, dispatch_status,
265 static gboolean setup_bus(DBusConnection *conn, const char *name,
269 DBusDispatchStatus status;
272 result = g_dbus_request_name(conn, name, error);
275 if (dbus_error_is_set(error) == TRUE)
283 setup_dbus_with_main_loop(conn);
285 status = dbus_connection_get_dispatch_status(conn);
286 queue_dispatch(conn, status);
291 DBusConnection *g_dbus_setup_bus(DBusBusType type, const char *name,
294 DBusConnection *conn;
296 conn = dbus_bus_get(type, error);
299 if (dbus_error_is_set(error) == TRUE)
306 if (setup_bus(conn, name, error) == FALSE) {
307 dbus_connection_unref(conn);
314 DBusConnection *g_dbus_setup_private(DBusBusType type, const char *name,
317 DBusConnection *conn;
319 conn = dbus_bus_get_private(type, error);
322 if (dbus_error_is_set(error) == TRUE)
329 if (setup_bus(conn, name, error) == FALSE) {
330 dbus_connection_unref(conn);
337 gboolean g_dbus_request_name(DBusConnection *connection, const char *name,
342 result = dbus_bus_request_name(connection, name,
343 DBUS_NAME_FLAG_DO_NOT_QUEUE, error);
346 if (dbus_error_is_set(error) == TRUE)
350 if (result != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER)
356 gboolean g_dbus_set_disconnect_function(DBusConnection *connection,
357 GDBusWatchFunction function,
358 void *user_data, DBusFreeFunction destroy)
360 struct disconnect_data *dc_data;
362 dc_data = g_new0(struct disconnect_data, 1);
364 dc_data->function = function;
365 dc_data->user_data = user_data;
367 dbus_connection_set_exit_on_disconnect(connection, FALSE);
369 if (g_dbus_add_signal_watch(connection, NULL, NULL,
370 DBUS_INTERFACE_LOCAL, "Disconnected",
371 disconnected_signal, dc_data, g_free) == 0) {
372 error("Failed to add watch for D-Bus Disconnected signal");