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
25 #include <avahi-common/malloc.h>
27 #include "dbus-watch-glue.h"
29 static AvahiWatchEvent translate_dbus_to_avahi(unsigned int f) {
30 AvahiWatchEvent e = 0;
32 if (f & DBUS_WATCH_READABLE)
34 if (f & DBUS_WATCH_WRITABLE)
36 if (f & DBUS_WATCH_ERROR)
38 if (f & DBUS_WATCH_HANGUP)
44 static unsigned int translate_avahi_to_dbus(AvahiWatchEvent e) {
47 if (e & AVAHI_WATCH_IN)
48 f |= DBUS_WATCH_READABLE;
49 if (e & AVAHI_WATCH_OUT)
50 f |= DBUS_WATCH_WRITABLE;
51 if (e & AVAHI_WATCH_ERR)
52 f |= DBUS_WATCH_ERROR;
53 if (e & AVAHI_WATCH_HUP)
54 f |= DBUS_WATCH_HANGUP;
60 DBusConnection *connection;
61 const AvahiPoll *poll_api;
62 AvahiTimeout *dispatch_timeout;
66 static ConnectionData *connection_data_ref(ConnectionData *d) {
74 static void connection_data_unref(ConnectionData *d) {
79 d->poll_api->timeout_free(d->dispatch_timeout);
84 static void request_dispatch(ConnectionData *d) {
85 static const struct timeval tv = { 0, 0 };
88 assert(dbus_connection_get_dispatch_status(d->connection) == DBUS_DISPATCH_DATA_REMAINS);
90 d->poll_api->timeout_update(d->dispatch_timeout, &tv);
93 static void dispatch_timeout_callback(AvahiTimeout *t, void *userdata) {
94 ConnectionData *d = userdata;
98 connection_data_ref(d);
99 dbus_connection_ref(d->connection);
101 if (dbus_connection_dispatch(d->connection) == DBUS_DISPATCH_DATA_REMAINS)
102 /* If there's still data, request that this handler is called again */
105 dbus_connection_unref(d->connection);
106 connection_data_unref(d);
109 static void watch_callback(AvahiWatch *avahi_watch, int fd, AvahiWatchEvent events, void *userdata) {
110 DBusWatch *dbus_watch = userdata;
114 dbus_watch_handle(dbus_watch, translate_avahi_to_dbus(events));
115 /* Ignore the return value */
118 static dbus_bool_t update_watch(const AvahiPoll *poll_api, DBusWatch *dbus_watch) {
119 AvahiWatch *avahi_watch;
124 avahi_watch = dbus_watch_get_data(dbus_watch);
126 b = dbus_watch_get_enabled(dbus_watch);
128 if (b && !avahi_watch) {
130 if (!(avahi_watch = poll_api->watch_new(
132 dbus_watch_get_fd(dbus_watch),
133 translate_dbus_to_avahi(dbus_watch_get_flags(dbus_watch)),
138 dbus_watch_set_data(dbus_watch, avahi_watch, NULL);
140 } else if (!b && avahi_watch) {
142 poll_api->watch_free(avahi_watch);
143 dbus_watch_set_data(dbus_watch, NULL, NULL);
145 } else if (avahi_watch) {
148 poll_api->watch_update(avahi_watch, dbus_watch_get_flags(dbus_watch));
154 static dbus_bool_t add_watch(DBusWatch *dbus_watch, void *userdata) {
155 ConnectionData *d = userdata;
160 return update_watch(d->poll_api, dbus_watch);
163 static void remove_watch(DBusWatch *dbus_watch, void *userdata) {
164 ConnectionData *d = userdata;
165 AvahiWatch *avahi_watch;
170 if ((avahi_watch = dbus_watch_get_data(dbus_watch))) {
171 d->poll_api->watch_free(avahi_watch);
172 dbus_watch_set_data(dbus_watch, NULL, NULL);
176 static void watch_toggled(DBusWatch *dbus_watch, void *userdata) {
177 ConnectionData *d = userdata;
182 update_watch(d->poll_api, dbus_watch);
185 typedef struct TimeoutData {
186 const AvahiPoll *poll_api;
187 AvahiTimeout *avahi_timeout;
188 DBusTimeout *dbus_timeout;
192 static TimeoutData* timeout_data_ref(TimeoutData *t) {
200 static void timeout_data_unref(TimeoutData *t) {
205 if (t->avahi_timeout)
206 t->poll_api->timeout_free(t->avahi_timeout);
212 static void update_timeout(TimeoutData *timeout) {
214 assert(timeout->ref >= 1);
216 if (dbus_timeout_get_enabled(timeout->dbus_timeout)) {
218 avahi_elapse_time(&tv, dbus_timeout_get_interval(timeout->dbus_timeout), 0);
219 timeout->poll_api->timeout_update(timeout->
222 timeout->poll_api->timeout_update(timeout->avahi_timeout, NULL);
226 static void timeout_callback(AvahiTimeout *avahi_timeout, void *userdata) {
227 TimeoutData *timeout = userdata;
229 assert(avahi_timeout);
232 timeout_data_ref(timeout);
234 dbus_timeout_handle(timeout->dbus_timeout);
235 /* Ignore the return value */
237 if (timeout->avahi_timeout)
238 update_timeout(timeout);
240 timeout_data_unref(timeout);
243 static dbus_bool_t add_timeout(DBusTimeout *dbus_timeout, void *userdata) {
244 TimeoutData *timeout;
245 ConnectionData *d = userdata;
249 assert(dbus_timeout);
252 if (!(timeout = avahi_new(TimeoutData, 1)))
255 timeout->dbus_timeout = dbus_timeout;
256 timeout->poll_api = d->poll_api;
259 if ((b = dbus_timeout_get_enabled(dbus_timeout)))
260 avahi_elapse_time(&tv, dbus_timeout_get_interval(dbus_timeout), 0);
262 if (!(timeout->avahi_timeout = d->poll_api->timeout_new(
271 dbus_timeout_set_data(dbus_timeout, timeout, (DBusFreeFunction) timeout_data_unref);
275 static void remove_timeout(DBusTimeout *dbus_timeout, void *userdata) {
276 ConnectionData *d = userdata;
277 TimeoutData *timeout;
279 assert(dbus_timeout);
282 timeout = dbus_timeout_get_data(dbus_timeout);
285 d->poll_api->timeout_free(timeout->avahi_timeout);
286 timeout->avahi_timeout = NULL;
289 static void timeout_toggled(DBusTimeout *dbus_timeout, void *userdata) {
290 TimeoutData *timeout;
292 assert(dbus_timeout);
293 timeout = dbus_timeout_get_data(dbus_timeout);
296 update_timeout(timeout);
299 static void dispatch_status(DBusConnection *connection, DBusDispatchStatus new_status, void *userdata) {
300 ConnectionData *d = userdata;
302 if (new_status == DBUS_DISPATCH_DATA_REMAINS)
306 int avahi_dbus_connection_glue(DBusConnection *c, const AvahiPoll *poll_api) {
307 ConnectionData *d = NULL;
312 if (!(d = avahi_new(ConnectionData, 1)))
315 d->poll_api = poll_api;
319 if (!(d->dispatch_timeout = poll_api->timeout_new(poll_api, NULL, dispatch_timeout_callback, d)))
322 if (!(dbus_connection_set_watch_functions(c, add_watch, remove_watch, watch_toggled, connection_data_ref(d), (DBusFreeFunction)connection_data_unref)))
325 if (!(dbus_connection_set_timeout_functions(c, add_timeout, remove_timeout, timeout_toggled, connection_data_ref(d), (DBusFreeFunction)connection_data_unref)))
328 dbus_connection_set_dispatch_status_function(c, dispatch_status, connection_data_ref(d), (DBusFreeFunction)connection_data_unref);
330 if (dbus_connection_get_dispatch_status(c) == DBUS_DISPATCH_DATA_REMAINS)
333 connection_data_unref(d);
340 d->poll_api->timeout_free(d->dispatch_timeout);