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