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