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