]> git.meshlink.io Git - catta/blob - avahi-core/conformance-test.c
* cleanup build system a little
[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
38 #include "core.h"
39 #include "log.h"
40
41 static char *name = NULL;
42 static AvahiSEntryGroup *group = NULL;
43 static int try = 0;
44 static AvahiServer *avahi = NULL;
45 static const AvahiPoll *poll_api;
46
47 static void dump_line(const char *text, void* userdata) {
48     printf("%s\n", text);
49 }
50
51 static void dump_timeout_callback(AvahiTimeout *timeout, void* data) {
52     struct timeval tv;
53     
54     avahi_server_dump(avahi, dump_line, NULL);
55
56     avahi_elapse_time(&tv, 5000, 0);
57     poll_api->timeout_update(timeout, &tv);
58 }
59
60 static void entry_group_callback(AvahiServer *s, AvahiSEntryGroup *g, AvahiEntryGroupState state, void* userdata);
61
62 static void create_service(const char *t) {
63     char *n;
64
65     assert(t || name);
66
67     n = t ? avahi_strdup(t) : avahi_alternative_service_name(name);
68     avahi_free(name);
69     name = n;
70
71     if (group)
72         avahi_s_entry_group_reset(group);
73     else
74         group = avahi_s_entry_group_new(avahi, entry_group_callback, NULL);
75     
76     avahi_server_add_service(avahi, group, 0, AF_UNSPEC, name, "_http._tcp", NULL, NULL, 80, "foo", NULL);   
77     avahi_s_entry_group_commit(group);
78
79     try++;
80 }
81
82 static void rename_timeout_callback(AvahiTimeout *timeout, void *userdata) {
83     struct timeval tv;
84     
85     if (access("flag", F_OK) == 0) { 
86         create_service("New - Bonjour Service Name");
87         return;
88     }
89
90     avahi_elapse_time(&tv, 5000, 0);
91     poll_api->timeout_update(timeout, &tv);
92 }
93
94 static void entry_group_callback(AvahiServer *s, AvahiSEntryGroup *g, AvahiEntryGroupState state, void* userdata) {
95     if (state == AVAHI_ENTRY_GROUP_COLLISION)
96         create_service(NULL);
97     else if (state == AVAHI_ENTRY_GROUP_ESTABLISHED) {
98         avahi_log_debug("ESTABLISHED !!!!");
99         try = 0;
100     }
101 }
102
103 static void server_callback(AvahiServer *s, AvahiServerState state, void* userdata) {
104     avahi_log_debug("server state: %i", state);
105
106     if (state == AVAHI_SERVER_RUNNING) {
107         create_service("gurke");
108         avahi_server_dump(avahi, dump_line, NULL);
109     }
110 }
111
112 int main(int argc, char *argv[]) {
113     int error;
114     AvahiSimplePoll *simple_poll;
115     struct timeval tv;
116
117     simple_poll = avahi_simple_poll_new();
118     poll_api = avahi_simple_poll_get(simple_poll);
119     
120     avahi = avahi_server_new(poll_api, NULL, server_callback, NULL, &error);
121
122     avahi_elapse_time(&tv, 5000, 0);
123     poll_api->timeout_new(poll_api, &tv, dump_timeout_callback, avahi);
124
125     avahi_elapse_time(&tv, 5000, 0);
126     poll_api->timeout_new(poll_api, &tv, rename_timeout_callback, avahi);
127
128     for (;;)
129         if (avahi_simple_poll_iterate(simple_poll, -1) != 0)
130             break;
131     
132     if (group)
133         avahi_s_entry_group_free(group);   
134     avahi_server_free(avahi);
135
136     avahi_simple_poll_free(simple_poll);
137     
138     return 0;
139 }