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