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