]> git.meshlink.io Git - catta/blob - avahi-core/conformance-test.c
* move unicast DNS server registration/browsing routines to their own header dns...
[catta] / avahi-core / conformance-test.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 <sys/socket.h>
27 #include <netinet/in.h>
28 #include <arpa/inet.h>
29 #include <stdlib.h>
30 #include <unistd.h>
31 #include <stdio.h>
32 #include <assert.h>
33
34 #include <avahi-common/alternative.h>
35 #include <avahi-common/malloc.h>
36 #include <avahi-common/simple-watch.h>
37 #include <avahi-common/timeval.h>
38
39 #include <avahi-core/core.h>
40 #include <avahi-core/log.h>
41 #include <avahi-core/lookup.h>
42 #include <avahi-core/publish.h>
43
44 static char *name = NULL;
45 static AvahiSEntryGroup *group = NULL;
46 static int try = 0;
47 static AvahiServer *avahi = NULL;
48 static const AvahiPoll *poll_api;
49
50 static void dump_line(const char *text, void* userdata) {
51     printf("%s\n", text);
52 }
53
54 static void dump_timeout_callback(AvahiTimeout *timeout, void* data) {
55     struct timeval tv;
56     
57     avahi_server_dump(avahi, dump_line, NULL);
58
59     avahi_elapse_time(&tv, 5000, 0);
60     poll_api->timeout_update(timeout, &tv);
61 }
62
63 static void entry_group_callback(AvahiServer *s, AvahiSEntryGroup *g, AvahiEntryGroupState state, void* userdata);
64
65 static void create_service(const char *t) {
66     char *n;
67
68     assert(t || name);
69
70     n = t ? avahi_strdup(t) : avahi_alternative_service_name(name);
71     avahi_free(name);
72     name = n;
73
74     if (group)
75         avahi_s_entry_group_reset(group);
76     else
77         group = avahi_s_entry_group_new(avahi, entry_group_callback, NULL);
78     
79     avahi_server_add_service(avahi, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, name, "_http._tcp", NULL, NULL, 80, "foo", NULL);   
80     avahi_s_entry_group_commit(group);
81
82     try++;
83 }
84
85 static void rename_timeout_callback(AvahiTimeout *timeout, void *userdata) {
86     struct timeval tv;
87     
88     if (access("flag", F_OK) == 0) { 
89         create_service("New - Bonjour Service Name");
90         return;
91     }
92
93     avahi_elapse_time(&tv, 5000, 0);
94     poll_api->timeout_update(timeout, &tv);
95 }
96
97 static void entry_group_callback(AvahiServer *s, AvahiSEntryGroup *g, AvahiEntryGroupState state, void* userdata) {
98     if (state == AVAHI_ENTRY_GROUP_COLLISION)
99         create_service(NULL);
100     else if (state == AVAHI_ENTRY_GROUP_ESTABLISHED) {
101         avahi_log_debug("ESTABLISHED !!!!");
102         try = 0;
103     }
104 }
105
106 static void server_callback(AvahiServer *s, AvahiServerState state, void* userdata) {
107     avahi_log_debug("server state: %i", state);
108
109     if (state == AVAHI_SERVER_RUNNING) {
110         create_service("gurke");
111         avahi_server_dump(avahi, dump_line, NULL);
112     } else if (state == AVAHI_SERVER_COLLISION) {
113         char *n;
114         
115         n = avahi_alternative_host_name(avahi_server_get_host_name(s));
116         avahi_log_warn("Host name conflict, retrying with <%s>", n);
117         avahi_server_set_host_name(s, n);
118         avahi_free(n);
119
120     }
121 }
122
123 int main(int argc, char *argv[]) {
124     int error;
125     AvahiSimplePoll *simple_poll;
126     struct timeval tv;
127     struct AvahiServerConfig config;
128
129     simple_poll = avahi_simple_poll_new();
130     poll_api = avahi_simple_poll_get(simple_poll);
131
132     avahi_server_config_init(&config);
133     config.publish_workstation = 0;
134     config.use_ipv6 = 0;
135     config.publish_domain = 0;
136     config.publish_hinfo = 0;
137     avahi = avahi_server_new(poll_api, &config, server_callback, NULL, &error);
138     avahi_server_config_free(&config);
139
140     avahi_elapse_time(&tv, 5000, 0);
141     poll_api->timeout_new(poll_api, &tv, dump_timeout_callback, avahi);
142
143     avahi_elapse_time(&tv, 5000, 0);
144     poll_api->timeout_new(poll_api, &tv, rename_timeout_callback, avahi);
145
146     for (;;)
147         if (avahi_simple_poll_iterate(simple_poll, -1) != 0)
148             break;
149     
150     if (group)
151         avahi_s_entry_group_free(group);   
152     avahi_server_free(avahi);
153
154     avahi_simple_poll_free(simple_poll);
155     
156     return 0;
157 }