]> git.meshlink.io Git - catta/blob - examples/core-publish-service.c
fix core-publish-service.c
[catta] / examples / core-publish-service.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 <time.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <assert.h>
30
31 #include <avahi-core/core.h>
32 #include <avahi-core/publish.h>
33 #include <avahi-common/simple-watch.h>
34 #include <avahi-common/malloc.h>
35 #include <avahi-common/alternative.h>
36 #include <avahi-common/error.h>
37
38 static AvahiSEntryGroup *group = NULL;
39 static AvahiSimplePoll *simple_poll = NULL;
40 static char *name = NULL;
41
42 static void create_services(AvahiServer *s);
43
44 static void entry_group_callback(AvahiServer *s, AvahiSEntryGroup *g, AvahiEntryGroupState state, void *userdata) {
45     assert(s);
46     assert(g == group);
47
48     /* Called whenever the entry group state changes */
49
50     switch (state) {
51         
52         case AVAHI_ENTRY_GROUP_ESTABLISHED:
53
54             /* The entry group has been established successfully */
55             fprintf(stderr, "Service '%s' successfully established.\n", name);
56             break;
57
58         case AVAHI_ENTRY_GROUP_COLLISION: {
59             char *n;
60             
61             /* A service name collision happened. Let's pick a new name */
62             n = avahi_alternative_service_name(name);
63             avahi_free(name);
64             name = n;
65             
66             fprintf(stderr, "Service name collision, renaming service to '%s'\n", name);
67             
68             /* And recreate the services */
69             create_services(s);
70             break;
71         }
72             
73         case AVAHI_ENTRY_GROUP_FAILURE :
74
75             /* Some kind of failure happened while we were registering our services */
76             avahi_simple_poll_quit(simple_poll);
77             break;
78
79         case AVAHI_ENTRY_GROUP_UNCOMMITED:
80         case AVAHI_ENTRY_GROUP_REGISTERING:
81             ;
82     }
83 }
84
85 static void create_services(AvahiServer *s) {
86     char r[128];
87     int ret;
88     assert(s);
89
90     /* If this is the first time we're called, let's create a new entry group */
91     if (!group)
92         if (!(group = avahi_s_entry_group_new(s, entry_group_callback, NULL))) {
93             fprintf(stderr, "avahi_entry_group_new() failed: %s\n", avahi_strerror(avahi_server_errno(s)));
94             goto fail;
95         }
96     
97     fprintf(stderr, "Adding service '%s'\n", name);
98
99     /* Create some random TXT data */
100     snprintf(r, sizeof(r), "random=%i", rand());
101
102     /* Add the service for IPP */
103     if ((ret = avahi_server_add_service(s, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, name, "_ipp._tcp", NULL, NULL, 651, "test=blah", r, NULL)) < 0) {
104         fprintf(stderr, "Failed to add _ipp._tcp service: %s\n", avahi_strerror(ret));
105         goto fail;
106     }
107
108     /* Add the same service for BSD LPR */
109     if ((ret = avahi_server_add_service(s, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, name, "_printer._tcp", NULL, NULL, 515, NULL)) < 0) {
110         fprintf(stderr, "Failed to add _printer._tcp service: %s\n", avahi_strerror(ret));
111         goto fail;
112     }
113
114     /* Add an additional (hypothetic) subtype */
115     if ((ret = avahi_server_add_service_subtype(s, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, name, "_printer._tcp", NULL, "_magic._sub._printer._tcp") < 0)) {
116         fprintf(stderr, "Failed to add subtype _magic._sub._printer._tcp: %s\n", avahi_strerror(ret));
117         goto fail;
118     }
119
120     /* Tell the server to register the service */
121     if ((ret = avahi_s_entry_group_commit(group)) < 0) {
122         fprintf(stderr, "Failed to commit entry_group: %s\n", avahi_strerror(ret));
123         goto fail;
124     }
125
126     return;
127
128 fail:
129     avahi_simple_poll_quit(simple_poll);
130 }
131
132 static void server_callback(AvahiServer *s, AvahiServerState state, void * userdata) {
133     assert(s);
134
135     /* Called whenever the server state changes */
136
137     switch (state) {
138
139         case AVAHI_SERVER_RUNNING:
140             /* The serve has startup successfully and registered its host
141              * name on the network, so it's time to create our services */
142             
143             if (!group)
144                 create_services(s);
145
146             break;
147
148         case AVAHI_SERVER_COLLISION: {
149             char *n;
150             int r;
151             
152             /* A host name collision happened. Let's pick a new name for the server */
153             n = avahi_alternative_host_name(avahi_server_get_host_name(s));
154             fprintf(stderr, "Host name collision, retrying with '%s'\n", n);
155             r = avahi_server_set_host_name(s, n);
156             avahi_free(n);
157             
158             if (r < 0) {
159                 fprintf(stderr, "Failed to set new host name: %s\n", avahi_strerror(r));
160                 
161                 avahi_simple_poll_quit(simple_poll);
162                 return;
163             }
164
165             /* Let's drop our registered services. When the server is back
166              * in AVAHI_SERVER_RUNNING state we will register them
167              * again with the new host name. */
168             if (group)
169                 avahi_s_entry_group_reset(group);
170
171             break;
172         }
173
174         case AVAHI_SERVER_FAILURE:
175             
176             /* Terminate on failure */
177             
178             fprintf(stderr, "Server failure: %s\n", avahi_strerror(avahi_server_errno(s)));
179             avahi_simple_poll_quit(simple_poll);
180             break;
181
182         case AVAHI_SERVER_INVALID:
183         case AVAHI_SERVER_REGISTERING:
184             ;
185     }
186 }
187
188 int main(int argc, char*argv[]) {
189     AvahiServerConfig config;
190     AvahiServer *server = NULL;
191     int error;
192     int ret = 1;
193     
194     /* Initialize the pseudo-RNG */
195     srand(time(NULL));
196
197     /* Allocate main loop object */
198     if (!(simple_poll = avahi_simple_poll_new())) {
199         fprintf(stderr, "Failed to create simple poll object.\n");
200         goto fail;
201     }
202     
203     name = avahi_strdup("MegaPrinter");
204
205     /* Let's set the host name for this server. */
206     avahi_server_config_init(&config);
207     config.host_name = avahi_strdup("gurkiman");
208     config.publish_workstation = 0;
209     
210     /* Allocate a new server */
211     server = avahi_server_new(avahi_simple_poll_get(simple_poll), &config, server_callback, NULL, &error);
212
213     /* Free the configuration data */
214     avahi_server_config_free(&config);
215
216     /* Check wether creating the server object succeeded */
217     if (!server) {
218         fprintf(stderr, "Failed to create server: %s\n", avahi_strerror(error));
219         goto fail;
220     }
221
222     /* Run the main loop */
223     avahi_simple_poll_loop(simple_poll);
224     
225     ret = 0;
226     
227 fail:
228     
229     /* Cleanup things */
230
231     if (server)
232         avahi_server_free(server);
233
234     if (simple_poll)
235         avahi_simple_poll_free(simple_poll);
236
237     avahi_free(name);
238     
239     return ret;
240 }