]> git.meshlink.io Git - catta/blob - avahi-core/conformance-test.c
fab9b5641414e58eca822760d495bba8426b5f49
[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-glib/glib-watch.h>
36 #include <avahi-glib/glib-malloc.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
46 static void dump_line(const char *text, void* userdata) {
47     printf("%s\n", text);
48 }
49
50 static int dump_timeout(void* data) {
51     avahi_server_dump(avahi, dump_line, NULL);
52     return 1;
53 }
54
55 static void entry_group_callback(AvahiServer *s, AvahiSEntryGroup *g, AvahiEntryGroupState state, void* userdata);
56
57 static void create_service(const char *t) {
58     char *n;
59
60     assert(t || name);
61
62     n = t ? g_strdup(t) : avahi_alternative_service_name(name);
63     avahi_free(name);
64     name = n;
65
66     if (group)
67         avahi_s_entry_group_reset(group);
68     else
69         group = avahi_s_entry_group_new(avahi, entry_group_callback, NULL);
70     
71     avahi_server_add_service(avahi, group, 0, AF_UNSPEC, name, "_http._tcp", NULL, NULL, 80, "foo", NULL);   
72     avahi_s_entry_group_commit(group);
73
74     try++;
75 }
76
77 static int rename_timeout(void* data) {
78     
79     if (access("flag", F_OK) == 0) { 
80         create_service("New - Bonjour Service Name");
81         return 0;
82     }
83
84     return 1;
85 }
86
87 static void entry_group_callback(AvahiServer *s, AvahiSEntryGroup *g, AvahiEntryGroupState state, void* userdata) {
88     if (state == AVAHI_ENTRY_GROUP_COLLISION)
89         create_service(NULL);
90     else if (state == AVAHI_ENTRY_GROUP_ESTABLISHED) {
91         avahi_log_debug("ESTABLISHED !!!!");
92         try = 0;
93     }
94 }
95
96 static void server_callback(AvahiServer *s, AvahiServerState state, void* userdata) {
97     avahi_log_debug("server state: %i", state);
98
99     if (state == AVAHI_SERVER_RUNNING) {
100         create_service("gurke");
101         avahi_server_dump(avahi, dump_line, NULL);
102     }
103 }
104
105 int main(int argc, char *argv[]) {
106     GMainLoop *loop = NULL;
107     gint error;
108     AvahiGLibPoll *glib_poll;
109
110     avahi_set_allocator(avahi_glib_allocator());
111
112     glib_poll = avahi_glib_poll_new(NULL, G_PRIORITY_DEFAULT);
113     
114     avahi = avahi_server_new(avahi_glib_poll_get(glib_poll), NULL, server_callback, NULL, &error);
115     
116     loop = g_main_loop_new(NULL, 0);
117     g_timeout_add(1000*5, dump_timeout, avahi);
118     g_timeout_add(1000*5, rename_timeout, avahi); 
119     g_main_loop_run(loop);
120     g_main_loop_unref(loop);
121
122     if (group)
123         avahi_s_entry_group_free(group);   
124     avahi_server_free(avahi);
125
126     avahi_glib_poll_free(glib_poll);
127     
128     return 0;
129 }