]> git.meshlink.io Git - catta/blob - examples/client-publish-service.c
* Fix typo of failure, thanks to Michael Burns (Closes #98)
[catta] / examples / client-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-client/client.h>
32 #include <avahi-client/publish.h>
33
34 #include <avahi-common/alternative.h>
35 #include <avahi-common/simple-watch.h>
36 #include <avahi-common/malloc.h>
37 #include <avahi-common/error.h>
38 #include <avahi-common/timeval.h>
39
40 static AvahiEntryGroup *group = NULL;
41 static AvahiSimplePoll *simple_poll = NULL;
42 static char *name = NULL;
43
44 static void create_services(AvahiClient *c);
45
46 static void entry_group_callback(AvahiEntryGroup *g, AvahiEntryGroupState state, AVAHI_GCC_UNUSED void *userdata) {
47     assert(g == group || group == NULL);
48
49     /* Called whenever the entry group state changes */
50
51     switch (state) {
52         case AVAHI_ENTRY_GROUP_ESTABLISHED :
53             /* The entry group has been established successfully */
54             fprintf(stderr, "Service '%s' successfully established.\n", name);
55             break;
56
57         case AVAHI_ENTRY_GROUP_COLLISION : {
58             char *n;
59             
60             /* A service name collision happened. Let's pick a new name */
61             n = avahi_alternative_service_name(name);
62             avahi_free(name);
63             name = n;
64             
65             fprintf(stderr, "Service name collision, renaming service to '%s'\n", name);
66             
67             /* And recreate the services */
68             create_services(avahi_entry_group_get_client(g));
69             break;
70         }
71
72         case AVAHI_ENTRY_GROUP_FAILURE :
73
74             fprintf(stderr, "Entry group failure: %s\n", avahi_strerror(avahi_client_errno(avahi_entry_group_get_client(g))));
75
76             /* Some kind of failure happened while we were registering our services */
77             avahi_simple_poll_quit(simple_poll);
78             break;
79
80         case AVAHI_ENTRY_GROUP_UNCOMMITED:
81         case AVAHI_ENTRY_GROUP_REGISTERING:
82             ;
83     }
84 }
85
86 static void create_services(AvahiClient *c) {
87     char r[128];
88     int ret;
89     assert(c);
90
91     /* If this is the first time we're called, let's create a new entry group */
92     if (!group)
93         if (!(group = avahi_entry_group_new(c, entry_group_callback, NULL))) {
94             fprintf(stderr, "avahi_entry_group_new() failed: %s\n", avahi_strerror(avahi_client_errno(c)));
95             goto fail;
96         }
97     
98     fprintf(stderr, "Adding service '%s'\n", name);
99     
100     /* Create some random TXT data */
101     snprintf(r, sizeof(r), "random=%i", rand());
102
103     /* Add the service for IPP */
104     if ((ret = avahi_entry_group_add_service(group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, name, "_ipp._tcp", NULL, NULL, 651, "test=blah", r, NULL)) < 0) {
105         fprintf(stderr, "Failed to add _ipp._tcp service: %s\n", avahi_strerror(ret));
106         goto fail;
107     }
108
109     /* Add the same service for BSD LPR */
110     if ((ret = avahi_entry_group_add_service(group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, name, "_printer._tcp", NULL, NULL, 515, NULL)) < 0) {
111         fprintf(stderr, "Failed to add _printer._tcp service: %s\n", avahi_strerror(ret));
112         goto fail;
113     }
114
115     /* Add an additional (hypothetic) subtype */
116     if ((ret = avahi_entry_group_add_service_subtype(group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, name, "_printer._tcp", NULL, "_magic._sub._printer._tcp") < 0)) {
117         fprintf(stderr, "Failed to add subtype _magic._sub._printer._tcp: %s\n", avahi_strerror(ret));
118         goto fail;
119     }
120     
121     /* Tell the server to register the service */
122     if ((ret = avahi_entry_group_commit(group)) < 0) {
123         fprintf(stderr, "Failed to commit entry_group: %s\n", avahi_strerror(ret));
124         goto fail;
125     }
126
127     return;
128
129 fail:
130     avahi_simple_poll_quit(simple_poll);
131 }
132
133 static void client_callback(AvahiClient *c, AvahiClientState state, AVAHI_GCC_UNUSED void * userdata) {
134     assert(c);
135
136     /* Called whenever the client or server state changes */
137
138     switch (state) {
139         case AVAHI_CLIENT_S_RUNNING:
140         
141             /* The server has startup successfully and registered its host
142              * name on the network, so it's time to create our services */
143             if (!group)
144                 create_services(c);
145             break;
146
147         case AVAHI_CLIENT_FAILURE:
148             
149             fprintf(stderr, "Client failure: %s\n", avahi_strerror(avahi_client_errno(c)));
150             avahi_simple_poll_quit(simple_poll);
151             
152             break;
153
154         case AVAHI_CLIENT_S_COLLISION:
155         
156             /* Let's drop our registered services. When the server is back
157              * in AVAHI_SERVER_RUNNING state we will register them
158              * again with the new host name. */
159             
160         case AVAHI_CLIENT_S_REGISTERING:
161
162             /* The server records are now being established. This
163              * might be caused by a host name change. We need to wait
164              * for our own records to register until the host name is
165              * properly esatblished. */
166             
167             if (group)
168                 avahi_entry_group_reset(group);
169             
170             break;
171
172         case AVAHI_CLIENT_CONNECTING:
173             ;
174     }
175 }
176
177 static void modify_callback(AVAHI_GCC_UNUSED AvahiTimeout *e, void *userdata) {
178     AvahiClient *client = userdata;
179
180     fprintf(stderr, "Doing some weird modification\n");
181
182     avahi_free(name); 
183     name = avahi_strdup("Modified MegaPrinter"); 
184
185     /* If the server is currently running, we need to remove our
186      * service and create it anew */
187     if (avahi_client_get_state(client) == AVAHI_CLIENT_S_RUNNING) {
188
189         /* Remove the old services */
190         if (group)
191             avahi_entry_group_reset(group);
192
193         /* And create them again with the new name */
194         create_services(client);
195     }
196 }
197
198 int main(AVAHI_GCC_UNUSED int argc, AVAHI_GCC_UNUSED char*argv[]) {
199     AvahiClient *client = NULL;
200     int error;
201     int ret = 1;
202     struct timeval tv;
203     
204     /* Allocate main loop object */
205     if (!(simple_poll = avahi_simple_poll_new())) {
206         fprintf(stderr, "Failed to create simple poll object.\n");
207         goto fail;
208     }
209     
210     name = avahi_strdup("MegaPrinter");
211
212     /* Allocate a new client */
213     client = avahi_client_new(avahi_simple_poll_get(simple_poll), 0, client_callback, NULL, &error);
214
215     /* Check wether creating the client object succeeded */
216     if (!client) {
217         fprintf(stderr, "Failed to create client: %s\n", avahi_strerror(error));
218         goto fail;
219     }
220
221     /* After 20s do some weird modification to the service */
222     avahi_simple_poll_get(simple_poll)->timeout_new(
223         avahi_simple_poll_get(simple_poll),
224         avahi_elapse_time(&tv, 1000*10, 0),
225         modify_callback,
226         client);
227     
228     /* Run the main loop */
229     avahi_simple_poll_loop(simple_poll);
230     
231     ret = 0;
232     
233 fail:
234     
235     /* Cleanup things */
236
237     if (client)
238         avahi_client_free(client);
239
240     if (simple_poll)
241         avahi_simple_poll_free(simple_poll);
242
243     avahi_free(name);
244     
245     return ret;
246 }