]> git.meshlink.io Git - catta/blob - avahi-core/conformance-test.c
* allow caller to specifiy additional CFLAGS arguments to bootstrap.sh
[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
33 #include "core.h"
34 #include "util.h"
35 #include "alternative.h"
36 #include "log.h"
37
38 static gchar *name = NULL;
39 static AvahiEntryGroup *group = NULL;
40 static int try = 0;
41 static AvahiServer *avahi = NULL;
42
43 static void dump_line(const gchar *text, gpointer userdata) {
44     printf("%s\n", text);
45 }
46
47 static gboolean dump_timeout(gpointer data) {
48     avahi_server_dump(avahi, dump_line, NULL);
49     return TRUE;
50 }
51
52 static void entry_group_callback(AvahiServer *s, AvahiEntryGroup *g, AvahiEntryGroupState state, gpointer userdata);
53
54 static void create_service(const gchar *t) {
55     gchar *n;
56
57     g_assert(t || name);
58
59     if (group)
60         avahi_entry_group_free(group);
61     
62     n = t ? g_strdup(t) : avahi_alternative_service_name(name);
63     g_free(name);
64     name = n;
65
66     if (try > 10)
67         sleep(2); /* ugly ugly ugly hack */
68     
69     group = avahi_entry_group_new(avahi, entry_group_callback, NULL);   
70     avahi_server_add_service(avahi, group, 0, AF_UNSPEC, name, "_http._tcp", NULL, NULL, 80, "foo", NULL);   
71     avahi_entry_group_commit(group);
72
73     try++;
74 }
75
76 static gboolean rename_timeout(gpointer data) {
77     
78     if (access("flag", F_OK) == 0) { 
79         create_service("New - Bonjour Service Name");
80         return FALSE;
81     }
82
83     return TRUE;
84 }
85
86 static void entry_group_callback(AvahiServer *s, AvahiEntryGroup *g, AvahiEntryGroupState state, gpointer userdata) {
87     if (state == AVAHI_ENTRY_GROUP_COLLISION)
88         create_service(NULL);
89     else if (state == AVAHI_ENTRY_GROUP_ESTABLISHED) {
90         avahi_log_debug("ESTABLISHED !!!!");
91         try = 0;
92     }
93 }
94
95 static void server_callback(AvahiServer *s, AvahiServerState state, gpointer userdata) {
96     avahi_log_debug("server state: %i", state);
97 }
98
99 int main(int argc, char *argv[]) {
100     GMainLoop *loop = NULL;
101
102     avahi = avahi_server_new(NULL, NULL, server_callback, NULL);
103     create_service("gurke");
104     avahi_server_dump(avahi, dump_line, NULL);
105     
106     loop = g_main_loop_new(NULL, FALSE);
107     g_timeout_add(1000*5, dump_timeout, avahi);
108     g_timeout_add(1000*5, rename_timeout, avahi); 
109     g_main_loop_run(loop);
110     g_main_loop_unref(loop);
111
112     avahi_entry_group_free(group);   
113     avahi_server_free(avahi);
114     
115     return 0;
116 }