]> git.meshlink.io Git - catta/blob - avahi-common/dbus-watch-glue.c
efddd41e9ee659850841e5b50c696b8811234de9
[catta] / avahi-common / dbus-watch-glue.c
1 /* $Id$ */
2
3 /***
4   This file is part of avahi.
5  
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.
10  
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.
15  
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
19   USA.
20 ***/
21
22 #include <assert.h>
23 #include <stdio.h>
24
25 #include "malloc.h"
26 #include "timeval.h"
27 #include "dbus-watch-glue.h"
28
29 static AvahiWatchEvent translate_dbus_to_avahi(unsigned int f) {
30     AvahiWatchEvent e = 0;
31
32     if (f & DBUS_WATCH_READABLE)
33         e |= AVAHI_WATCH_IN;
34     if (f & DBUS_WATCH_WRITABLE)
35         e |= AVAHI_WATCH_OUT;
36     if (f & DBUS_WATCH_ERROR)
37         e |= AVAHI_WATCH_ERR;
38     if (f & DBUS_WATCH_HANGUP)
39         e |= AVAHI_WATCH_HUP;
40
41     return e;
42 }
43
44 static unsigned int translate_avahi_to_dbus(AvahiWatchEvent e) {
45     unsigned int f = 0;
46
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;
55
56     return f;
57 }
58
59 typedef struct {
60     DBusConnection *connection;
61     const AvahiPoll *poll_api;
62     AvahiTimeout *dispatch_timeout;
63     int ref;
64 } ConnectionData;
65
66 static ConnectionData *connection_data_ref(ConnectionData *d) {
67     assert(d);
68     assert(d->ref >= 1);
69
70     d->ref++;
71     return d;
72 }
73
74 static void connection_data_unref(ConnectionData *d) {
75     assert(d);
76     assert(d->ref >= 1);
77
78     if (--d->ref <= 0) {
79         d->poll_api->timeout_free(d->dispatch_timeout);
80         avahi_free(d);
81     }
82 }
83
84 static void request_dispatch(ConnectionData *d, int enable) {
85     static const struct timeval tv = { 0, 0 };
86     assert(d);
87
88     if (enable) {
89         assert(dbus_connection_get_dispatch_status(d->connection) == DBUS_DISPATCH_DATA_REMAINS);
90         d->poll_api->timeout_update(d->dispatch_timeout, &tv);
91     } else
92         d->poll_api->timeout_update(d->dispatch_timeout, NULL);
93 }
94
95 static void dispatch_timeout_callback(AvahiTimeout *t, void *userdata) {
96     ConnectionData *d = userdata;
97     assert(t);
98     assert(d);
99
100     connection_data_ref(d);
101     dbus_connection_ref(d->connection);
102
103     if (dbus_connection_dispatch(d->connection) == DBUS_DISPATCH_DATA_REMAINS)
104         /* If there's still data, request that this handler is called again */
105         request_dispatch(d, 1);
106     else
107         request_dispatch(d, 0);
108
109     dbus_connection_unref(d->connection);
110     connection_data_unref(d);
111 }
112
113 static void watch_callback(AvahiWatch *avahi_watch, AVAHI_GCC_UNUSED int fd, AvahiWatchEvent events, void *userdata) {
114     DBusWatch *dbus_watch = userdata;
115     
116     assert(avahi_watch);
117     assert(dbus_watch);
118
119     dbus_watch_handle(dbus_watch, translate_avahi_to_dbus(events));
120     /* Ignore the return value */
121 }
122
123 static dbus_bool_t update_watch(const AvahiPoll *poll_api, DBusWatch *dbus_watch) {
124     AvahiWatch *avahi_watch;
125     dbus_bool_t b;
126     
127     assert(dbus_watch);
128
129     avahi_watch = dbus_watch_get_data(dbus_watch);
130
131     b = dbus_watch_get_enabled(dbus_watch);
132     
133     if (b && !avahi_watch) {
134
135         if (!(avahi_watch = poll_api->watch_new(
136                   poll_api,
137                   dbus_watch_get_unix_fd(dbus_watch),
138                   translate_dbus_to_avahi(dbus_watch_get_flags(dbus_watch)),
139                   watch_callback,
140                   dbus_watch)))
141             return FALSE;
142
143         dbus_watch_set_data(dbus_watch, avahi_watch, NULL);
144         
145     } else if (!b && avahi_watch) {
146         
147         poll_api->watch_free(avahi_watch);
148         dbus_watch_set_data(dbus_watch, NULL, NULL);
149
150     } else if (avahi_watch) {
151         
152         /* Update flags */
153         poll_api->watch_update(avahi_watch, dbus_watch_get_flags(dbus_watch));
154     }
155
156     return TRUE;
157 }
158
159 static dbus_bool_t add_watch(DBusWatch *dbus_watch, void *userdata) {
160     ConnectionData *d = userdata;
161     
162     assert(dbus_watch);
163     assert(d);
164
165     return update_watch(d->poll_api, dbus_watch);
166 }
167
168 static void remove_watch(DBusWatch *dbus_watch, void *userdata) {
169     ConnectionData *d = userdata;
170     AvahiWatch *avahi_watch;
171     
172     assert(dbus_watch);
173     assert(d);
174
175     if ((avahi_watch = dbus_watch_get_data(dbus_watch))) {
176         d->poll_api->watch_free(avahi_watch);
177         dbus_watch_set_data(dbus_watch, NULL, NULL);
178     }
179 }
180
181 static void watch_toggled(DBusWatch *dbus_watch, void *userdata) {
182     ConnectionData *d = userdata;
183     
184     assert(dbus_watch);
185     assert(d);
186
187     update_watch(d->poll_api, dbus_watch);
188 }
189
190 typedef struct TimeoutData {
191     const AvahiPoll *poll_api;
192     AvahiTimeout *avahi_timeout;
193     DBusTimeout *dbus_timeout;
194     int ref;
195 } TimeoutData;
196
197 static TimeoutData* timeout_data_ref(TimeoutData *t) {
198     assert(t);
199     assert(t->ref >= 1);
200
201     t->ref++;
202     return t;
203 }
204
205 static void timeout_data_unref(TimeoutData *t) {
206     assert(t);
207     assert(t->ref >= 1);
208
209     if (--t->ref <= 0) {
210         if (t->avahi_timeout)
211             t->poll_api->timeout_free(t->avahi_timeout);
212         
213         avahi_free(t);
214     }
215 }
216
217 static void update_timeout(TimeoutData *timeout) {
218     assert(timeout);
219     assert(timeout->ref >= 1);
220     
221     if (dbus_timeout_get_enabled(timeout->dbus_timeout)) {
222         struct timeval tv;
223         avahi_elapse_time(&tv, dbus_timeout_get_interval(timeout->dbus_timeout), 0);
224         timeout->poll_api->timeout_update(timeout->
225                                       avahi_timeout, &tv);
226     } else
227         timeout->poll_api->timeout_update(timeout->avahi_timeout, NULL);
228
229 }
230
231 static void timeout_callback(AvahiTimeout *avahi_timeout, void *userdata) {
232     TimeoutData *timeout = userdata;
233     
234     assert(avahi_timeout);
235     assert(timeout);
236
237     timeout_data_ref(timeout);
238
239     dbus_timeout_handle(timeout->dbus_timeout);
240     /* Ignore the return value */
241
242     if (timeout->avahi_timeout)
243         update_timeout(timeout);
244     
245     timeout_data_unref(timeout);
246 }
247
248 static dbus_bool_t add_timeout(DBusTimeout *dbus_timeout, void *userdata) {
249     TimeoutData *timeout;
250     ConnectionData *d = userdata;
251     struct timeval tv;
252     dbus_bool_t b;
253
254     assert(dbus_timeout);
255     assert(d);
256
257     if (!(timeout = avahi_new(TimeoutData, 1)))
258         return FALSE;
259
260     timeout->dbus_timeout = dbus_timeout;
261     timeout->poll_api = d->poll_api;
262     timeout->ref = 1;
263
264     if ((b = dbus_timeout_get_enabled(dbus_timeout)))
265         avahi_elapse_time(&tv, dbus_timeout_get_interval(dbus_timeout), 0);
266     
267     if (!(timeout->avahi_timeout = d->poll_api->timeout_new(
268               d->poll_api,
269               b ? &tv : NULL,
270               timeout_callback,
271               timeout))) {
272         avahi_free(timeout);
273         return FALSE;
274     }
275
276     dbus_timeout_set_data(dbus_timeout, timeout, (DBusFreeFunction) timeout_data_unref);
277     return TRUE;
278 }
279
280 static void remove_timeout(DBusTimeout *dbus_timeout, void *userdata) {
281     ConnectionData *d = userdata;
282     TimeoutData *timeout;
283
284     assert(dbus_timeout);
285     assert(d);
286
287     timeout = dbus_timeout_get_data(dbus_timeout);
288     assert(timeout);
289
290     d->poll_api->timeout_free(timeout->avahi_timeout);
291     timeout->avahi_timeout = NULL;
292 }
293
294 static void timeout_toggled(DBusTimeout *dbus_timeout, AVAHI_GCC_UNUSED void *userdata) {
295     TimeoutData *timeout;
296
297     assert(dbus_timeout);
298     timeout = dbus_timeout_get_data(dbus_timeout);
299     assert(timeout);
300
301     update_timeout(timeout);
302 }
303
304 static void dispatch_status(AVAHI_GCC_UNUSED DBusConnection *connection, DBusDispatchStatus new_status, void *userdata) {
305     ConnectionData *d = userdata;
306     
307     if (new_status == DBUS_DISPATCH_DATA_REMAINS)
308         request_dispatch(d, 1);
309  }
310
311 int avahi_dbus_connection_glue(DBusConnection *c, const AvahiPoll *poll_api) {
312     ConnectionData *d = NULL;
313     
314     assert(c);
315     assert(poll_api);
316
317     if (!(d = avahi_new(ConnectionData, 1)))
318         goto fail;;
319
320     d->poll_api = poll_api;
321     d->connection = c;
322     d->ref = 1;
323     
324     if (!(d->dispatch_timeout = poll_api->timeout_new(poll_api, NULL, dispatch_timeout_callback, d)))
325         goto fail;
326     
327     if (!(dbus_connection_set_watch_functions(c, add_watch, remove_watch, watch_toggled, connection_data_ref(d), (DBusFreeFunction)connection_data_unref)))
328         goto fail;
329
330     if (!(dbus_connection_set_timeout_functions(c, add_timeout, remove_timeout, timeout_toggled, connection_data_ref(d), (DBusFreeFunction)connection_data_unref)))
331         goto fail;
332
333     dbus_connection_set_dispatch_status_function(c, dispatch_status, connection_data_ref(d), (DBusFreeFunction)connection_data_unref);
334
335     if (dbus_connection_get_dispatch_status(c) == DBUS_DISPATCH_DATA_REMAINS)
336         request_dispatch(d, 1);
337
338     connection_data_unref(d);
339     
340     return 0;
341
342 fail:
343
344     if (d) {
345         d->poll_api->timeout_free(d->dispatch_timeout);
346
347         avahi_free(d);
348     }
349
350     return -1;
351 }