]> git.meshlink.io Git - catta/blob - avahi-client/entrygroup.c
dc0994a231cef8780e9cead0110c4a54dbd20b7b
[catta] / avahi-client / entrygroup.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 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <string.h>
29
30 #include <dbus/dbus.h>
31
32 #include <avahi-client/client.h>
33 #include <avahi-common/dbus.h>
34 #include <avahi-common/llist.h>
35 #include <avahi-common/error.h>
36 #include <avahi-common/malloc.h>
37
38 #include "client.h"
39 #include "internal.h"
40
41 void avahi_entry_group_set_state(AvahiEntryGroup *group, AvahiEntryGroupState state) {
42     assert(group);
43
44     if (group->state == state)
45         return;
46
47     group->state = state;
48
49     if (group->callback)
50         group->callback(group, state, group->userdata);
51 }
52
53 static int retrieve_state(AvahiEntryGroup *group) {
54     DBusMessage *message, *reply;
55     DBusError error;
56     int r = AVAHI_OK;
57     int32_t state;
58     AvahiClient *client;
59     
60     dbus_error_init(&error);
61
62     assert(group);
63     client = group->client;
64     
65     if (!(message = dbus_message_new_method_call(AVAHI_DBUS_NAME, group->path, AVAHI_DBUS_INTERFACE_ENTRY_GROUP, "GetState"))) {
66         r = avahi_client_set_errno(client, AVAHI_ERR_NO_MEMORY);
67         goto fail;
68     }
69         
70     if (!(reply = dbus_connection_send_with_reply_and_block(client->bus, message, -1, &error)) ||
71         dbus_error_is_set (&error)) {
72         r = avahi_client_set_errno(client, AVAHI_ERR_DBUS_ERROR);
73         goto fail;
74     }
75     
76     if (!dbus_message_get_args(reply, &error, DBUS_TYPE_INT32, &state, DBUS_TYPE_INVALID) ||
77         dbus_error_is_set (&error)) {
78         r = avahi_client_set_errno(client, AVAHI_ERR_DBUS_ERROR);
79         goto fail;
80     }
81
82     dbus_message_unref(message);
83     dbus_message_unref(reply);
84
85     avahi_entry_group_set_state(group, (AvahiEntryGroupState) state);
86     
87     return AVAHI_OK;
88     
89 fail:
90     if (dbus_error_is_set(&error)) {
91         r = avahi_client_set_dbus_error(client, &error);
92         dbus_error_free(&error);
93     }
94
95     if (message)
96         dbus_message_unref(message);
97
98     if (reply)
99         dbus_message_unref(reply);
100
101     return r;
102 }
103
104 AvahiEntryGroup* avahi_entry_group_new (AvahiClient *client, AvahiEntryGroupCallback callback, void *userdata) {
105     AvahiEntryGroup *group = NULL;
106     DBusMessage *message = NULL, *reply = NULL;
107     DBusError error;
108     char *path;
109
110     assert(client);
111
112     dbus_error_init (&error);
113
114     if (client->state == AVAHI_CLIENT_DISCONNECTED) {
115         avahi_client_set_errno(client, AVAHI_ERR_BAD_STATE);
116         goto fail;
117     }
118
119     if (!(group = avahi_new(AvahiEntryGroup, 1))) {
120         avahi_client_set_errno(client, AVAHI_ERR_NO_MEMORY);
121         goto fail;
122     }
123     
124     group->client = client;
125     group->callback = callback;
126     group->userdata = userdata;
127     group->state = AVAHI_ENTRY_GROUP_UNCOMMITED;
128     group->path = NULL;
129     AVAHI_LLIST_PREPEND(AvahiEntryGroup, groups, client->groups, group);
130     
131     if (!(message = dbus_message_new_method_call(
132               AVAHI_DBUS_NAME,
133               AVAHI_DBUS_PATH_SERVER,
134               AVAHI_DBUS_INTERFACE_SERVER,
135               "EntryGroupNew"))) {
136         avahi_client_set_errno(client, AVAHI_ERR_NO_MEMORY);
137         goto fail;
138     }
139
140     if (!(reply = dbus_connection_send_with_reply_and_block (client->bus, message, -1, &error)) ||
141         dbus_error_is_set (&error)) {
142         avahi_client_set_errno (client, AVAHI_ERR_DBUS_ERROR);
143         goto fail;
144     }
145
146     if (!dbus_message_get_args(reply, &error, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID) ||
147         dbus_error_is_set (&error)) {
148         avahi_client_set_errno (client, AVAHI_ERR_DBUS_ERROR);
149         goto fail;
150     }
151     
152     if (!(group->path = avahi_strdup (path))) {
153
154         /* FIXME: We don't remove the object on the server side */
155
156         avahi_client_set_errno(client, AVAHI_ERR_NO_MEMORY);
157         goto fail;
158     }
159
160     if (retrieve_state(group) < 0)
161         goto fail;
162
163     dbus_message_unref(message);
164     dbus_message_unref(reply);
165
166     return group;
167
168 fail:
169     if (dbus_error_is_set(&error)) {
170         avahi_client_set_dbus_error(client, &error);
171         dbus_error_free(&error);
172     }
173
174     if (group)
175         avahi_entry_group_free(group);
176     
177     if (message)
178         dbus_message_unref(message);
179
180     if (reply)
181         dbus_message_unref(reply);
182     
183     return NULL;
184 }
185
186 static int entry_group_simple_method_call(AvahiEntryGroup *group, const char *method) {
187     DBusMessage *message = NULL, *reply = NULL;
188     DBusError error;
189     int r = AVAHI_OK;
190     AvahiClient *client;
191     
192     dbus_error_init(&error);
193
194     assert(group);
195     client = group->client;
196     
197     if (!(message = dbus_message_new_method_call(AVAHI_DBUS_NAME, group->path, AVAHI_DBUS_INTERFACE_ENTRY_GROUP, method))) {
198         r = avahi_client_set_errno(client, AVAHI_ERR_NO_MEMORY);
199         goto fail;
200     }
201         
202     if (!(reply = dbus_connection_send_with_reply_and_block(client->bus, message, -1, &error)) ||
203         dbus_error_is_set (&error)) {
204         r = avahi_client_set_errno(client, AVAHI_ERR_DBUS_ERROR);
205         goto fail;
206     }
207     
208     if (!dbus_message_get_args(reply, &error, DBUS_TYPE_INVALID) ||
209         dbus_error_is_set (&error)) {
210         r = avahi_client_set_errno(client, AVAHI_ERR_DBUS_ERROR);
211         goto fail;
212     }
213
214     dbus_message_unref(message);
215     dbus_message_unref(reply);
216
217     return AVAHI_OK;
218     
219 fail:
220     if (dbus_error_is_set(&error)) {
221         r = avahi_client_set_dbus_error(client, &error);
222         dbus_error_free(&error);
223     }
224
225     if (message)
226         dbus_message_unref(message);
227
228     if (reply)
229         dbus_message_unref(reply);
230
231     return r;
232 }
233
234 int avahi_entry_group_free(AvahiEntryGroup *group) {
235     AvahiClient *client = group->client;
236     int r = AVAHI_OK;
237         
238     assert(group);
239     
240     if (group->path && client->state != AVAHI_CLIENT_DISCONNECTED)
241         r = entry_group_simple_method_call(group, "Free");
242     
243     AVAHI_LLIST_REMOVE(AvahiEntryGroup, groups, client->groups, group);
244
245     avahi_free(group->path);
246     avahi_free(group);
247
248     return r;
249 }
250
251 int avahi_entry_group_commit(AvahiEntryGroup *group) {
252     assert(group);
253     
254     if (!group->path || group->client->state == AVAHI_CLIENT_DISCONNECTED)
255         return avahi_client_set_errno(group->client, AVAHI_ERR_BAD_STATE);
256
257     return entry_group_simple_method_call(group, "Commit");
258 }
259
260 int avahi_entry_group_reset(AvahiEntryGroup *group) {
261     assert(group);
262     
263     if (!group->path || group->client->state == AVAHI_CLIENT_DISCONNECTED)
264         return avahi_client_set_errno(group->client, AVAHI_ERR_BAD_STATE);
265
266     return entry_group_simple_method_call(group, "Reset");
267 }
268
269 int avahi_entry_group_get_state (AvahiEntryGroup *group) {
270     assert (group);
271
272     return group->state;
273 }
274
275 AvahiClient* avahi_entry_group_get_client (AvahiEntryGroup *group) {
276     assert(group);
277     
278     return group->client;
279 }
280
281 int avahi_entry_group_is_empty (AvahiEntryGroup *group) {
282     DBusMessage *message, *reply;
283     DBusError error;
284     int r = AVAHI_OK;
285     int b;
286     AvahiClient *client;
287     
288     assert(group);
289     client = group->client;
290
291     if (!group->path || group->client->state == AVAHI_CLIENT_DISCONNECTED)
292         return avahi_client_set_errno(group->client, AVAHI_ERR_BAD_STATE);
293
294     dbus_error_init(&error);
295     
296     if (!(message = dbus_message_new_method_call(AVAHI_DBUS_NAME, group->path, AVAHI_DBUS_INTERFACE_ENTRY_GROUP, "IsEmpty"))) {
297         r = avahi_client_set_errno(client, AVAHI_ERR_NO_MEMORY);
298         goto fail;
299     }
300         
301     if (!(reply = dbus_connection_send_with_reply_and_block(client->bus, message, -1, &error)) ||
302         dbus_error_is_set (&error)) {
303         r = avahi_client_set_errno(client, AVAHI_ERR_DBUS_ERROR);
304         goto fail;
305     }
306     
307     if (!dbus_message_get_args(reply, &error, DBUS_TYPE_BOOLEAN, &b, DBUS_TYPE_INVALID) ||
308         dbus_error_is_set (&error)) {
309         r = avahi_client_set_errno(client, AVAHI_ERR_DBUS_ERROR);
310         goto fail;
311     }
312
313     dbus_message_unref(message);
314     dbus_message_unref(reply);
315
316     return !!b;
317     
318 fail:
319     if (dbus_error_is_set(&error)) {
320         r = avahi_client_set_dbus_error(client, &error);
321         dbus_error_free(&error);
322     }
323
324     if (message)
325         dbus_message_unref(message);
326
327     if (reply)
328         dbus_message_unref(reply);
329
330     return r;
331 }
332
333 int avahi_entry_group_add_service_strlst(
334     AvahiEntryGroup *group,
335     AvahiIfIndex interface,
336     AvahiProtocol protocol,
337     const char *name,
338     const char *type,
339     const char *domain,
340     const char *host,
341     uint16_t port,
342     AvahiStringList *txt) {
343     
344     DBusMessage *message = NULL, *reply = NULL;
345     DBusMessageIter iter, sub;
346     AvahiStringList *p;
347     int reverse = 0, r = AVAHI_OK;
348     DBusError error;
349     AvahiClient *client;
350     int32_t i_interface, i_protocol;
351
352     assert(group);
353     assert(name);
354     assert(type);
355
356     client = group->client;
357
358     if (!group->path || group->client->state == AVAHI_CLIENT_DISCONNECTED)
359         return avahi_client_set_errno(group->client, AVAHI_ERR_BAD_STATE);
360
361     if (!domain)
362         domain = "";
363
364     if (!host)
365         host = "";
366     
367     dbus_error_init(&error);
368     
369     if (!(message = dbus_message_new_method_call (AVAHI_DBUS_NAME, group->path, AVAHI_DBUS_INTERFACE_ENTRY_GROUP, "AddService"))) {
370         r = avahi_client_set_errno(client, AVAHI_ERR_NO_MEMORY);
371         goto fail;
372     }
373
374     i_interface = (int32_t) interface;
375     i_protocol = (int32_t) protocol;
376
377     if (!dbus_message_append_args(
378             message,
379             DBUS_TYPE_INT32, &i_interface,
380             DBUS_TYPE_INT32, &i_protocol,
381             DBUS_TYPE_STRING, &name,
382             DBUS_TYPE_STRING, &type,
383             DBUS_TYPE_STRING, &domain,
384             DBUS_TYPE_STRING, &host,
385             DBUS_TYPE_UINT16, &port,
386             DBUS_TYPE_INVALID)) {
387         r = avahi_client_set_errno(group->client, AVAHI_ERR_NO_MEMORY);
388         goto fail;
389     }
390     
391     dbus_message_iter_init_append(message, &iter);
392
393     /* Reverse the string list, so that we can pass it in-order to the server */
394     txt = avahi_string_list_reverse(txt);
395     reverse = 1;
396     
397     if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "ay", &sub)) {
398         r = avahi_client_set_errno(group->client, AVAHI_ERR_NO_MEMORY);
399         goto fail;
400     }
401
402     /* Assemble the AvahiStringList into an Array of Array of Bytes to send over dbus */
403     for (p = txt; p != NULL; p = p->next) {
404         DBusMessageIter sub2;
405         const uint8_t *data = p->text;
406         
407         if (!(dbus_message_iter_open_container(&sub, DBUS_TYPE_ARRAY, "y", &sub2)) ||
408             !(dbus_message_iter_append_fixed_array(&sub2, DBUS_TYPE_BYTE, &data, p->size)) ||
409             !(dbus_message_iter_close_container(&sub, &sub2))) {
410             r = avahi_client_set_errno(group->client, AVAHI_ERR_NO_MEMORY);
411             goto fail;
412         }
413     }
414
415     if (!dbus_message_iter_close_container(&iter, &sub))  {
416         r = avahi_client_set_errno(group->client, AVAHI_ERR_NO_MEMORY);
417         goto fail;
418     }
419
420     /* Reverse the string list to the original state */
421     txt = avahi_string_list_reverse(txt);
422     reverse = 0;
423     
424     if (!(reply = dbus_connection_send_with_reply_and_block(client->bus, message, -1, &error)) ||
425         dbus_error_is_set (&error)) {
426         r = avahi_client_set_errno(client, AVAHI_ERR_DBUS_ERROR);
427         goto fail;
428     }
429     
430     if (!dbus_message_get_args(reply, &error, DBUS_TYPE_INVALID) ||
431         dbus_error_is_set (&error)) {
432         r = avahi_client_set_errno(client, AVAHI_ERR_DBUS_ERROR);
433         goto fail;
434     }
435
436     dbus_message_unref(message);
437     dbus_message_unref(reply);
438
439     return AVAHI_OK;
440
441 fail:
442     if (reverse)
443         txt = avahi_string_list_reverse(txt);
444     
445     if (dbus_error_is_set(&error)) {
446         r = avahi_client_set_dbus_error(client, &error);
447         dbus_error_free(&error);
448     }
449
450     if (message)
451         dbus_message_unref(message);
452
453     if (reply)
454         dbus_message_unref(reply);
455
456     return r;
457 }
458
459 int avahi_entry_group_add_service(
460     AvahiEntryGroup *group,
461     AvahiIfIndex interface,
462     AvahiProtocol protocol,
463     const char *name,
464     const char *type,
465     const char *domain,
466     const char *host,
467     uint16_t port,
468     ...) {
469     
470     va_list va;
471     int r;
472
473     assert(group);
474
475     va_start(va, port);
476     r = avahi_entry_group_add_service_va(group, interface, protocol, name, type, domain, host, port, va);
477     va_end(va);
478     return r;
479 }
480
481 int avahi_entry_group_add_service_va(
482     AvahiEntryGroup *group,
483     AvahiIfIndex interface,
484     AvahiProtocol protocol,
485     const char *name,
486     const char *type,
487     const char *domain,
488     const char *host,
489     uint16_t port,
490     va_list va) {
491
492     int r;
493     AvahiStringList *txt;
494
495     assert(group);
496
497     txt = avahi_string_list_new_va(va);
498     r = avahi_entry_group_add_service_strlst(group, interface, protocol, name, type, domain, host, port, txt);
499     avahi_string_list_free(txt);
500
501     return r;
502 }
503