]> git.meshlink.io Git - catta/blob - avahi-common/dbus-watch-glue.c
* Add support for specifying the protocol in service definition files
[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 <avahi-common/malloc.h>
26
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) {
85     static const struct timeval tv = { 0, 0 };
86     assert(d);
87
88     assert(dbus_connection_get_dispatch_status(d->connection) == DBUS_DISPATCH_DATA_REMAINS);
89
90     d->poll_api->timeout_update(d->dispatch_timeout, &tv);
91 }
92
93 static void dispatch_timeout_callback(AvahiTimeout *t, void *userdata) {
94     ConnectionData *d = userdata;
95     assert(t);
96     assert(d);
97
98     if (dbus_connection_dispatch(d->connection) == DBUS_DISPATCH_DATA_REMAINS)
99         /* If there's still data, request that this handler is called again */
100         request_dispatch(d);
101 }
102
103 static void watch_callback(AvahiWatch *avahi_watch, int fd, AvahiWatchEvent events, void *userdata) {
104     DBusWatch *dbus_watch = userdata;
105     assert(avahi_watch);
106     assert(dbus_watch);
107
108     dbus_watch_handle(dbus_watch, translate_avahi_to_dbus(events));
109     /* Ignore the return value */
110 }
111
112 static dbus_bool_t update_watch(const AvahiPoll *poll_api, DBusWatch *dbus_watch) {
113     AvahiWatch *avahi_watch;
114     dbus_bool_t b;
115     
116     assert(dbus_watch);
117
118     avahi_watch = dbus_watch_get_data(dbus_watch);
119
120     b = dbus_watch_get_enabled(dbus_watch);
121     
122     if (b && !avahi_watch) {
123
124         if (!(avahi_watch = poll_api->watch_new(
125                   poll_api,
126                   dbus_watch_get_fd(dbus_watch),
127                   translate_dbus_to_avahi(dbus_watch_get_flags(dbus_watch)),
128                   watch_callback,
129                   dbus_watch)))
130             return FALSE;
131
132         dbus_watch_set_data(dbus_watch, avahi_watch, NULL);
133         
134     } else if (!b && avahi_watch) {
135         
136         poll_api->watch_free(avahi_watch);
137         dbus_watch_set_data(dbus_watch, NULL, NULL);
138
139     } else if (avahi_watch) {
140         
141         /* Update flags */
142         poll_api->watch_update(avahi_watch, dbus_watch_get_flags(dbus_watch));
143     }
144
145     return TRUE;
146 }
147
148 static dbus_bool_t add_watch(DBusWatch *dbus_watch, void *userdata) {
149     ConnectionData *d = userdata;
150     
151     assert(dbus_watch);
152     assert(d);
153
154     return update_watch(d->poll_api, dbus_watch);
155 }
156
157 static void remove_watch(DBusWatch *dbus_watch, void *userdata) {
158     ConnectionData *d = userdata;
159     AvahiWatch *avahi_watch;
160     
161     assert(dbus_watch);
162     assert(d);
163
164     if ((avahi_watch = dbus_watch_get_data(dbus_watch))) {
165         d->poll_api->watch_free(avahi_watch);
166         dbus_watch_set_data(dbus_watch, NULL, NULL);
167     }
168 }
169
170 static void watch_toggled(DBusWatch *dbus_watch, void *userdata) {
171     ConnectionData *d = userdata;
172     
173     assert(dbus_watch);
174     assert(d);
175
176     update_watch(d->poll_api, dbus_watch);
177 }
178
179 typedef struct TimeoutData {
180     const AvahiPoll *poll_api;
181     AvahiTimeout *avahi_timeout;
182     DBusTimeout *dbus_timeout;
183 } TimeoutData;
184
185 static void update_timeout(TimeoutData *timeout) {
186     assert(timeout);
187     
188     if (dbus_timeout_get_enabled(timeout->dbus_timeout)) {
189         struct timeval tv;
190         avahi_elapse_time(&tv, dbus_timeout_get_interval(timeout->dbus_timeout), 0);
191         timeout->poll_api->timeout_update(timeout->
192                                       avahi_timeout, &tv);
193     } else
194         timeout->poll_api->timeout_update(timeout->avahi_timeout, NULL);
195
196 }
197
198 static void timeout_callback(AvahiTimeout *avahi_timeout, void *userdata) {
199     TimeoutData *timeout = userdata;
200     
201     assert(avahi_timeout);
202     assert(timeout);
203
204     dbus_timeout_handle(timeout->dbus_timeout);
205     /* Ignore the return value */
206     
207     update_timeout(timeout);
208 }
209
210 static dbus_bool_t add_timeout(DBusTimeout *dbus_timeout, void *userdata) {
211     TimeoutData *timeout;
212     ConnectionData *d = userdata;
213     struct timeval tv;
214     dbus_bool_t b;
215
216     assert(dbus_timeout);
217     assert(d);
218
219     if (!(timeout = avahi_new(TimeoutData, 1)))
220         return FALSE;
221
222     timeout->dbus_timeout = dbus_timeout;
223     timeout->poll_api = d->poll_api;
224
225     if ((b = dbus_timeout_get_enabled(dbus_timeout)))
226         avahi_elapse_time(&tv, dbus_timeout_get_interval(dbus_timeout), 0);
227     
228     if (!(timeout->avahi_timeout = d->poll_api->timeout_new(
229               d->poll_api,
230               b ? &tv : NULL,
231               timeout_callback,
232               dbus_timeout))) {
233         avahi_free(timeout);
234         return FALSE;
235     }
236
237     dbus_timeout_set_data(dbus_timeout, timeout, NULL);
238     return TRUE;
239 }
240
241 static void remove_timeout(DBusTimeout *dbus_timeout, void *userdata) {
242     ConnectionData *d = userdata;
243     TimeoutData *timeout;
244
245     assert(dbus_timeout);
246     assert(d);
247
248     timeout = dbus_timeout_get_data(dbus_timeout);
249     assert(timeout);
250
251     d->poll_api->timeout_free(timeout->avahi_timeout);
252     avahi_free(timeout);
253     dbus_timeout_set_data(dbus_timeout, NULL, NULL);
254 }
255
256 static void timeout_toggled(DBusTimeout *dbus_timeout, void *userdata) {
257     TimeoutData *timeout;
258
259     assert(dbus_timeout);
260     timeout = dbus_timeout_get_data(dbus_timeout);
261     assert(timeout);
262
263     update_timeout(timeout);
264 }
265
266 static void dispatch_status(DBusConnection *connection, DBusDispatchStatus new_status, void *userdata) {
267     ConnectionData *d = userdata;
268     
269     if (new_status == DBUS_DISPATCH_DATA_REMAINS)
270         request_dispatch(d);
271  }
272
273 int avahi_dbus_connection_glue(DBusConnection *c, const AvahiPoll *poll_api) {
274     ConnectionData *d = NULL;
275     
276     assert(c);
277     assert(poll_api);
278
279     if (!(d = avahi_new(ConnectionData, 1)))
280         goto fail;;
281
282     d->poll_api = poll_api;
283     d->connection = c;
284     d->ref = 1;
285     
286     if (!(d->dispatch_timeout = poll_api->timeout_new(poll_api, NULL, dispatch_timeout_callback, d)))
287         goto fail;
288     
289     if (!(dbus_connection_set_watch_functions(c, add_watch, remove_watch, watch_toggled, connection_data_ref(d), (DBusFreeFunction)connection_data_unref)))
290         goto fail;
291
292     if (!(dbus_connection_set_timeout_functions(c, add_timeout, remove_timeout, timeout_toggled, connection_data_ref(d), (DBusFreeFunction)connection_data_unref)))
293         goto fail;
294
295     dbus_connection_set_dispatch_status_function(c, dispatch_status, connection_data_ref(d), (DBusFreeFunction)connection_data_unref);
296
297     if (dbus_connection_get_dispatch_status(c) == DBUS_DISPATCH_DATA_REMAINS)
298         request_dispatch(d);
299
300     connection_data_unref(d);
301     
302     return 0;
303
304 fail:
305
306     if (d) {
307         d->poll_api->timeout_free(d->dispatch_timeout);
308
309         avahi_free(d);
310     }
311
312     return -1;
313 }