]> git.meshlink.io Git - meshlink/blob - examples/channels.c
2059b387e803dcd140cfa083b57953b9ba585f1f
[meshlink] / examples / channels.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <strings.h>
5 #include "../src/meshlink.h"
6
7 #define CHAT_PORT 531
8
9 static void log_message(meshlink_handle_t *mesh, meshlink_log_level_t level, const char *text) {
10         (void) mesh;
11
12         static const char *levelstr[] = {
13                 [MESHLINK_DEBUG] = "\x1b[34mDEBUG",
14                 [MESHLINK_INFO] = "\x1b[32mINFO",
15                 [MESHLINK_WARNING] = "\x1b[33mWARNING",
16                 [MESHLINK_ERROR] = "\x1b[31mERROR",
17                 [MESHLINK_CRITICAL] = "\x1b[31mCRITICAL",
18         };
19         fprintf(stderr, "%s:\x1b[0m %s\n", levelstr[level], text);
20 }
21
22 static void channel_receive(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *data, size_t len) {
23         if(!len) {
24                 if(meshlink_errno) {
25                         fprintf(stderr, "Error while reading data from %s: %s\n", channel->node->name, meshlink_strerror(meshlink_errno));
26                 } else {
27                         fprintf(stderr, "Chat connection closed by %s\n", channel->node->name);
28                 }
29
30                 channel->node->priv = NULL;
31                 meshlink_channel_close(mesh, channel);
32                 return;
33         }
34
35         // TODO: we now have TCP semantics, don't expect exactly one message per receive call.
36
37         printf("%s says: ", channel->node->name);
38         fwrite(data, len, 1, stdout);
39         fputc('\n', stdout);
40 }
41
42 static bool channel_accept(meshlink_handle_t *mesh, meshlink_channel_t *channel, uint16_t port, const void *data, size_t len) {
43         (void)data;
44         (void)len;
45
46         // Only accept connections to the chat port
47         if(port != CHAT_PORT) {
48                 fprintf(stderr, "Rejected incoming channel from '%s' to port %u\n", channel->node->name, port);
49                 return false;
50         }
51
52         fprintf(stderr, "Accepted incoming channel from '%s'\n", channel->node->name);
53
54         // Remember the channel
55         channel->node->priv = channel;
56
57         // Set the receive callback
58         meshlink_set_channel_receive_cb(mesh, channel, channel_receive);
59
60         // Accept this channel
61         return true;
62 }
63
64 static void channel_poll(meshlink_handle_t *mesh, meshlink_channel_t *channel, size_t len) {
65         (void)len;
66
67         fprintf(stderr, "Channel to '%s' connected\n", channel->node->name);
68         meshlink_set_channel_poll_cb(mesh, channel, NULL);
69 }
70
71 static void node_status(meshlink_handle_t *mesh, meshlink_node_t *node, bool reachable) {
72         (void)mesh;
73
74         if(reachable) {
75                 printf("%s joined.\n", node->name);
76         } else {
77                 printf("%s left.\n", node->name);
78         }
79 }
80
81 static meshlink_node_t **nodes;
82 static size_t nnodes;
83
84 static void parse_command(meshlink_handle_t *mesh, char *buf) {
85         char *arg = strchr(buf, ' ');
86
87         if(arg) {
88                 *arg++ = 0;
89         }
90
91         if(!strcasecmp(buf, "invite")) {
92                 char *invitation;
93
94                 if(!arg) {
95                         fprintf(stderr, "/invite requires an argument!\n");
96                         return;
97                 }
98
99                 invitation = meshlink_invite(mesh, arg);
100
101                 if(!invitation) {
102                         fprintf(stderr, "Could not invite '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
103                         return;
104                 }
105
106                 printf("Invitation for %s: %s\n", arg, invitation);
107                 free(invitation);
108         } else if(!strcasecmp(buf, "join")) {
109                 if(!arg) {
110                         fprintf(stderr, "/join requires an argument!\n");
111                         return;
112                 }
113
114                 meshlink_stop(mesh);
115
116                 if(!meshlink_join(mesh, arg)) {
117                         fprintf(stderr, "Could not join using invitation: %s\n", meshlink_strerror(meshlink_errno));
118                 } else {
119                         fprintf(stderr, "Invitation accepted!\n");
120                 }
121
122                 if(!meshlink_start(mesh)) {
123                         fprintf(stderr, "Could not restart MeshLink: %s\n", meshlink_strerror(meshlink_errno));
124                         exit(1);
125                 }
126         } else if(!strcasecmp(buf, "kick")) {
127                 if(!arg) {
128                         fprintf(stderr, "/kick requires an argument!\n");
129                         return;
130                 }
131
132                 meshlink_node_t *node = meshlink_get_node(mesh, arg);
133
134                 if(!node) {
135                         fprintf(stderr, "Error looking up '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
136                         return;
137                 }
138
139                 meshlink_blacklist(mesh, node);
140
141                 printf("Node '%s' blacklisted.\n", arg);
142         } else if(!strcasecmp(buf, "who")) {
143                 if(!arg) {
144                         nodes = meshlink_get_all_nodes(mesh, nodes, &nnodes);
145
146                         if(!nnodes) {
147                                 fprintf(stderr, "Could not get list of nodes: %s\n", meshlink_strerror(meshlink_errno));
148                         } else {
149                                 printf("%zu known nodes:", nnodes);
150
151                                 for(size_t i = 0; i < nnodes; i++) {
152                                         printf(" %s", nodes[i]->name);
153                                 }
154
155                                 printf("\n");
156                         }
157                 } else {
158                         meshlink_node_t *node = meshlink_get_node(mesh, arg);
159
160                         if(!node) {
161                                 fprintf(stderr, "Error looking up '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
162                         } else {
163                                 printf("Node %s found\n", arg);
164                         }
165                 }
166         } else if(!strcasecmp(buf, "quit")) {
167                 printf("Bye!\n");
168                 fclose(stdin);
169         } else if(!strcasecmp(buf, "help")) {
170                 printf(
171                         "<name>: <message>     Send a message to the given node.\n"
172                         "                      Subsequent messages don't need the <name>: prefix.\n"
173                         "/invite <name>        Create an invitation for a new node.\n"
174                         "/join <invitation>    Join an existing mesh using an invitation.\n"
175                         "/kick <name>          Blacklist the given node.\n"
176                         "/who [<name>]         List all nodes or show information about the given node.\n"
177                         "/quit                 Exit this program.\n"
178                 );
179         } else {
180                 fprintf(stderr, "Unknown command '/%s'\n", buf);
181         }
182 }
183
184 static void parse_input(meshlink_handle_t *mesh, char *buf) {
185         static meshlink_node_t *destination;
186         size_t len;
187
188         if(!buf) {
189                 return;
190         }
191
192         // Remove newline.
193
194         len = strlen(buf);
195
196         if(len && buf[len - 1] == '\n') {
197                 buf[--len] = 0;
198         }
199
200         if(len && buf[len - 1] == '\r') {
201                 buf[--len] = 0;
202         }
203
204         // Ignore empty lines.
205
206         if(!len) {
207                 return;
208         }
209
210         // Commands start with '/'
211
212         if(*buf == '/') {
213                 parse_command(mesh, buf + 1);
214                 return;
215         }
216
217         // Lines in the form "name: message..." set the destination node.
218
219         char *msg = buf;
220         char *colon = strchr(buf, ':');
221
222         if(colon) {
223                 *colon = 0;
224                 msg = colon + 1;
225
226                 if(*msg == ' ') {
227                         msg++;
228                 }
229
230                 destination = meshlink_get_node(mesh, buf);
231
232                 if(!destination) {
233                         fprintf(stderr, "Error looking up '%s': %s\n", buf, meshlink_strerror(meshlink_errno));
234                         return;
235                 }
236         }
237
238         if(!destination) {
239                 fprintf(stderr, "Who are you talking to? Write 'name: message...'\n");
240                 return;
241         }
242
243         // We want to have one channel per node.
244         // We keep the pointer to the meshlink_channel_t in the priv field of that node.
245         meshlink_channel_t *channel = destination->priv;
246
247         if(!channel) {
248                 fprintf(stderr, "Opening chat channel to '%s'\n", destination->name);
249                 channel = meshlink_channel_open(mesh, destination, CHAT_PORT, channel_receive, NULL, 0);
250
251                 if(!channel) {
252                         fprintf(stderr, "Could not create channel to '%s': %s\n", destination->name, meshlink_strerror(meshlink_errno));
253                         return;
254                 }
255
256                 destination->priv = channel;
257                 meshlink_set_channel_poll_cb(mesh, channel, channel_poll);
258         }
259
260         if(!meshlink_channel_send(mesh, channel, msg, strlen(msg))) {
261                 fprintf(stderr, "Could not send message to '%s': %s\n", destination->name, meshlink_strerror(meshlink_errno));
262                 return;
263         }
264
265         printf("Message sent to '%s'.\n", destination->name);
266 }
267
268 int main(int argc, char *argv[]) {
269         const char *confbase = ".chat";
270         const char *nick = NULL;
271         char buf[1024];
272
273         if(argc > 1) {
274                 confbase = argv[1];
275         }
276
277         if(argc > 2) {
278                 nick = argv[2];
279         }
280
281         meshlink_set_log_cb(NULL, MESHLINK_DEBUG, log_message);
282
283         meshlink_handle_t *mesh = meshlink_open(confbase, nick, "chat", DEV_CLASS_STATIONARY);
284
285         if(!mesh) {
286                 fprintf(stderr, "Could not open MeshLink: %s\n", meshlink_strerror(meshlink_errno));
287                 return 1;
288         }
289
290         meshlink_set_node_status_cb(mesh, node_status);
291         meshlink_set_log_cb(mesh, MESHLINK_INFO, log_message);
292
293         // Set the channel accept callback. This implicitly turns on channels for all nodes.
294         // This replaces the call to meshlink_set_receive_cb().
295         meshlink_set_channel_accept_cb(mesh, channel_accept);
296
297         if(!meshlink_start(mesh)) {
298                 fprintf(stderr, "Could not start MeshLink: %s\n", meshlink_strerror(meshlink_errno));
299                 return 1;
300         }
301
302         printf("Chat started.\nType /help for a list of commands.\n");
303
304         while(fgets(buf, sizeof(buf), stdin)) {
305                 parse_input(mesh, buf);
306         }
307
308         printf("Chat stopping.\n");
309
310         meshlink_stop(mesh);
311         meshlink_close(mesh);
312
313         return 0;
314 }