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
30 #include <dbus/dbus.h>
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>
41 void avahi_entry_group_set_state(AvahiEntryGroup *group, AvahiEntryGroupState state) {
44 if (group->state == state)
50 group->callback(group, state, group->userdata);
53 static int retrieve_state(AvahiEntryGroup *group) {
54 DBusMessage *message, *reply;
60 dbus_error_init(&error);
63 client = group->client;
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);
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);
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);
82 dbus_message_unref(message);
83 dbus_message_unref(reply);
85 avahi_entry_group_set_state(group, (AvahiEntryGroupState) state);
90 if (dbus_error_is_set(&error)) {
91 r = avahi_client_set_dbus_error(client, &error);
92 dbus_error_free(&error);
96 dbus_message_unref(message);
99 dbus_message_unref(reply);
104 AvahiEntryGroup* avahi_entry_group_new (AvahiClient *client, AvahiEntryGroupCallback callback, void *userdata) {
105 AvahiEntryGroup *group = NULL;
106 DBusMessage *message = NULL, *reply = NULL;
112 dbus_error_init (&error);
114 if (client->state == AVAHI_CLIENT_DISCONNECTED) {
115 avahi_client_set_errno(client, AVAHI_ERR_BAD_STATE);
119 if (!(group = avahi_new(AvahiEntryGroup, 1))) {
120 avahi_client_set_errno(client, AVAHI_ERR_NO_MEMORY);
124 group->client = client;
125 group->callback = callback;
126 group->userdata = userdata;
127 group->state = AVAHI_ENTRY_GROUP_UNCOMMITED;
129 AVAHI_LLIST_PREPEND(AvahiEntryGroup, groups, client->groups, group);
131 if (!(message = dbus_message_new_method_call(
133 AVAHI_DBUS_PATH_SERVER,
134 AVAHI_DBUS_INTERFACE_SERVER,
136 avahi_client_set_errno(client, AVAHI_ERR_NO_MEMORY);
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);
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);
152 if (!(group->path = avahi_strdup (path))) {
154 /* FIXME: We don't remove the object on the server side */
156 avahi_client_set_errno(client, AVAHI_ERR_NO_MEMORY);
160 if (retrieve_state(group) < 0)
163 dbus_message_unref(message);
164 dbus_message_unref(reply);
169 if (dbus_error_is_set(&error)) {
170 avahi_client_set_dbus_error(client, &error);
171 dbus_error_free(&error);
175 avahi_entry_group_free(group);
178 dbus_message_unref(message);
181 dbus_message_unref(reply);
186 static int entry_group_simple_method_call(AvahiEntryGroup *group, const char *method) {
187 DBusMessage *message = NULL, *reply = NULL;
192 dbus_error_init(&error);
195 client = group->client;
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);
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);
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);
214 dbus_message_unref(message);
215 dbus_message_unref(reply);
220 if (dbus_error_is_set(&error)) {
221 r = avahi_client_set_dbus_error(client, &error);
222 dbus_error_free(&error);
226 dbus_message_unref(message);
229 dbus_message_unref(reply);
234 int avahi_entry_group_free(AvahiEntryGroup *group) {
235 AvahiClient *client = group->client;
240 if (group->path && client->state != AVAHI_CLIENT_DISCONNECTED)
241 r = entry_group_simple_method_call(group, "Free");
243 AVAHI_LLIST_REMOVE(AvahiEntryGroup, groups, client->groups, group);
245 avahi_free(group->path);
251 int avahi_entry_group_commit(AvahiEntryGroup *group) {
254 if (!group->path || group->client->state == AVAHI_CLIENT_DISCONNECTED)
255 return avahi_client_set_errno(group->client, AVAHI_ERR_BAD_STATE);
257 return entry_group_simple_method_call(group, "Commit");
260 int avahi_entry_group_reset(AvahiEntryGroup *group) {
263 if (!group->path || group->client->state == AVAHI_CLIENT_DISCONNECTED)
264 return avahi_client_set_errno(group->client, AVAHI_ERR_BAD_STATE);
266 return entry_group_simple_method_call(group, "Reset");
269 int avahi_entry_group_get_state (AvahiEntryGroup *group) {
275 AvahiClient* avahi_entry_group_get_client (AvahiEntryGroup *group) {
278 return group->client;
281 int avahi_entry_group_is_empty (AvahiEntryGroup *group) {
282 DBusMessage *message, *reply;
289 client = group->client;
291 if (!group->path || group->client->state == AVAHI_CLIENT_DISCONNECTED)
292 return avahi_client_set_errno(group->client, AVAHI_ERR_BAD_STATE);
294 dbus_error_init(&error);
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);
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);
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);
313 dbus_message_unref(message);
314 dbus_message_unref(reply);
319 if (dbus_error_is_set(&error)) {
320 r = avahi_client_set_dbus_error(client, &error);
321 dbus_error_free(&error);
325 dbus_message_unref(message);
328 dbus_message_unref(reply);
333 int avahi_entry_group_add_service_strlst(
334 AvahiEntryGroup *group,
335 AvahiIfIndex interface,
336 AvahiProtocol protocol,
337 AvahiPublishFlags flags,
343 AvahiStringList *txt) {
345 DBusMessage *message = NULL, *reply = NULL;
346 DBusMessageIter iter, sub;
348 int reverse = 0, r = AVAHI_OK;
351 int32_t i_interface, i_protocol;
358 client = group->client;
360 if (!group->path || group->client->state == AVAHI_CLIENT_DISCONNECTED)
361 return avahi_client_set_errno(group->client, AVAHI_ERR_BAD_STATE);
369 dbus_error_init(&error);
371 if (!(message = dbus_message_new_method_call (AVAHI_DBUS_NAME, group->path, AVAHI_DBUS_INTERFACE_ENTRY_GROUP, "AddService"))) {
372 r = avahi_client_set_errno(client, AVAHI_ERR_NO_MEMORY);
376 i_interface = (int32_t) interface;
377 i_protocol = (int32_t) protocol;
378 u_flags = (uint32_t) flags;
380 if (!dbus_message_append_args(
382 DBUS_TYPE_INT32, &i_interface,
383 DBUS_TYPE_INT32, &i_protocol,
384 DBUS_TYPE_UINT32, &u_flags,
385 DBUS_TYPE_STRING, &name,
386 DBUS_TYPE_STRING, &type,
387 DBUS_TYPE_STRING, &domain,
388 DBUS_TYPE_STRING, &host,
389 DBUS_TYPE_UINT16, &port,
390 DBUS_TYPE_INVALID)) {
391 r = avahi_client_set_errno(group->client, AVAHI_ERR_NO_MEMORY);
395 dbus_message_iter_init_append(message, &iter);
397 /* Reverse the string list, so that we can pass it in-order to the server */
398 txt = avahi_string_list_reverse(txt);
401 if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "ay", &sub)) {
402 r = avahi_client_set_errno(group->client, AVAHI_ERR_NO_MEMORY);
406 /* Assemble the AvahiStringList into an Array of Array of Bytes to send over dbus */
407 for (p = txt; p != NULL; p = p->next) {
408 DBusMessageIter sub2;
409 const uint8_t *data = p->text;
411 if (!(dbus_message_iter_open_container(&sub, DBUS_TYPE_ARRAY, "y", &sub2)) ||
412 !(dbus_message_iter_append_fixed_array(&sub2, DBUS_TYPE_BYTE, &data, p->size)) ||
413 !(dbus_message_iter_close_container(&sub, &sub2))) {
414 r = avahi_client_set_errno(group->client, AVAHI_ERR_NO_MEMORY);
419 if (!dbus_message_iter_close_container(&iter, &sub)) {
420 r = avahi_client_set_errno(group->client, AVAHI_ERR_NO_MEMORY);
424 /* Reverse the string list to the original state */
425 txt = avahi_string_list_reverse(txt);
428 if (!(reply = dbus_connection_send_with_reply_and_block(client->bus, message, -1, &error)) ||
429 dbus_error_is_set (&error)) {
430 r = avahi_client_set_errno(client, AVAHI_ERR_DBUS_ERROR);
434 if (!dbus_message_get_args(reply, &error, DBUS_TYPE_INVALID) ||
435 dbus_error_is_set (&error)) {
436 r = avahi_client_set_errno(client, AVAHI_ERR_DBUS_ERROR);
440 dbus_message_unref(message);
441 dbus_message_unref(reply);
447 txt = avahi_string_list_reverse(txt);
449 if (dbus_error_is_set(&error)) {
450 r = avahi_client_set_dbus_error(client, &error);
451 dbus_error_free(&error);
455 dbus_message_unref(message);
458 dbus_message_unref(reply);
463 int avahi_entry_group_add_service(
464 AvahiEntryGroup *group,
465 AvahiIfIndex interface,
466 AvahiProtocol protocol,
467 AvahiPublishFlags flags,
481 r = avahi_entry_group_add_service_va(group, interface, protocol, flags, name, type, domain, host, port, va);
486 int avahi_entry_group_add_service_va(
487 AvahiEntryGroup *group,
488 AvahiIfIndex interface,
489 AvahiProtocol protocol,
490 AvahiPublishFlags flags,
499 AvahiStringList *txt;
503 txt = avahi_string_list_new_va(va);
504 r = avahi_entry_group_add_service_strlst(group, interface, protocol, flags, name, type, domain, host, port, txt);
505 avahi_string_list_free(txt);
510 int avahi_entry_group_add_service_subtype(
511 AvahiEntryGroup *group,
512 AvahiIfIndex interface,
513 AvahiProtocol protocol,
514 AvahiPublishFlags flags,
518 const char *subtype) {
520 DBusMessage *message = NULL, *reply = NULL;
524 int32_t i_interface, i_protocol;
532 client = group->client;
534 if (!group->path || group->client->state == AVAHI_CLIENT_DISCONNECTED)
535 return avahi_client_set_errno(group->client, AVAHI_ERR_BAD_STATE);
540 dbus_error_init(&error);
542 if (!(message = dbus_message_new_method_call (AVAHI_DBUS_NAME, group->path, AVAHI_DBUS_INTERFACE_ENTRY_GROUP, "AddServiceSubtype"))) {
543 r = avahi_client_set_errno(client, AVAHI_ERR_NO_MEMORY);
547 i_interface = (int32_t) interface;
548 i_protocol = (int32_t) protocol;
549 u_flags = (uint32_t) flags;
551 if (!dbus_message_append_args(
553 DBUS_TYPE_INT32, &i_interface,
554 DBUS_TYPE_INT32, &i_protocol,
555 DBUS_TYPE_UINT32, &u_flags,
556 DBUS_TYPE_STRING, &name,
557 DBUS_TYPE_STRING, &type,
558 DBUS_TYPE_STRING, &domain,
559 DBUS_TYPE_STRING, &subtype,
560 DBUS_TYPE_INVALID)) {
561 r = avahi_client_set_errno(group->client, AVAHI_ERR_NO_MEMORY);
565 if (!(reply = dbus_connection_send_with_reply_and_block(client->bus, message, -1, &error)) ||
566 dbus_error_is_set (&error)) {
567 r = avahi_client_set_errno(client, AVAHI_ERR_DBUS_ERROR);
571 if (!dbus_message_get_args(reply, &error, DBUS_TYPE_INVALID) ||
572 dbus_error_is_set (&error)) {
573 r = avahi_client_set_errno(client, AVAHI_ERR_DBUS_ERROR);
577 dbus_message_unref(message);
578 dbus_message_unref(reply);
584 if (dbus_error_is_set(&error)) {
585 r = avahi_client_set_dbus_error(client, &error);
586 dbus_error_free(&error);
590 dbus_message_unref(message);
593 dbus_message_unref(reply);