]> git.meshlink.io Git - meshlink/blob - examples/channels.c
1fceb0b4594ce7948d873cf0a942380a3bee70de
[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                 }
142         } else if(!strcasecmp(buf, "quit")) {
143                 printf("Bye!\n");
144                 fclose(stdin);
145         } else if(!strcasecmp(buf, "help")) {
146                 printf(
147                         "<name>: <message>     Send a message to the given node.\n"
148                         "                      Subsequent messages don't need the <name>: prefix.\n"
149                         "/invite <name>        Create an invitation for a new node.\n"
150                         "/join <invitation>    Join an existing mesh using an invitation.\n"
151                         "/kick <name>          Blacklist the given node.\n"
152                         "/who [<name>]         List all nodes or show information about the given node.\n"
153                         "/quit                 Exit this program.\n"
154                         );
155         } else {
156                 fprintf(stderr, "Unknown command '/%s'\n", buf);
157         }
158 }
159
160 static void parse_input(meshlink_handle_t *mesh, char *buf) {
161         static meshlink_node_t *destination;
162         size_t len;
163
164         if(!buf)
165                 return;
166
167         // Remove newline.
168
169         len = strlen(buf);
170
171         if(len && buf[len - 1] == '\n')
172                 buf[--len] = 0;
173
174         if(len && buf[len - 1] == '\r')
175                 buf[--len] = 0;
176
177         // Ignore empty lines.
178
179         if(!len)
180                 return;
181
182         // Commands start with '/'
183
184         if(*buf == '/')
185                 return parse_command(mesh, buf + 1);
186
187         // Lines in the form "name: message..." set the destination node.
188
189         char *msg = buf;
190         char *colon = strchr(buf, ':');
191
192         if(colon) {
193                 *colon = 0;
194                 msg = colon + 1;
195                 if(*msg == ' ')
196                         msg++;
197
198                 destination = meshlink_get_node(mesh, buf);
199                 if(!destination) {
200                         fprintf(stderr, "Error looking up '%s': %s\n", buf, meshlink_strerror(meshlink_errno));
201                         return;
202                 }
203         }
204
205         if(!destination) {
206                 fprintf(stderr, "Who are you talking to? Write 'name: message...'\n");
207                 return;
208         }
209
210         // We want to have one channel per node.
211         // We keep the pointer to the meshlink_channel_t in the priv field of that node.
212         meshlink_channel_t *channel = destination->priv;
213
214         if(!channel) {
215                 fprintf(stderr, "Opening chat channel to '%s'\n", destination->name);
216                 channel = meshlink_channel_open(mesh, destination, CHAT_PORT, channel_receive, NULL, 0);
217                 if(!channel) {
218                         fprintf(stderr, "Could not create channel to '%s': %s\n", destination->name, meshlink_strerror(meshlink_errno));
219                         return;
220                 }
221                 destination->priv = channel;
222                 meshlink_set_channel_poll_cb(mesh, channel, channel_poll);
223         }
224
225         if(!meshlink_channel_send(mesh, channel, msg, strlen(msg))) {
226                 fprintf(stderr, "Could not send message to '%s': %s\n", destination->name, meshlink_strerror(meshlink_errno));
227                 return;
228         }
229
230         printf("Message sent to '%s'.\n", destination->name);
231 }
232
233 int main(int argc, char *argv[]) {
234         const char *confbase = ".chat";
235         const char *nick = NULL;
236         char buf[1024];
237
238         if(argc > 1)
239                 confbase = argv[1];
240
241         if(argc > 2)
242                 nick = argv[2];
243
244         meshlink_set_log_cb(NULL, MESHLINK_DEBUG, log_message);
245
246         meshlink_handle_t *mesh = meshlink_open(confbase, nick, "chat", DEV_CLASS_STATIONARY);
247         if(!mesh) {
248                 fprintf(stderr, "Could not open MeshLink: %s\n", meshlink_strerror(meshlink_errno));
249                 return 1;
250         }
251
252         meshlink_set_node_status_cb(mesh, node_status);
253         meshlink_set_log_cb(mesh, MESHLINK_INFO, log_message);
254
255         // Set the channel accept callback. This implicitly turns on channels for all nodes.
256         // This replaces the call to meshlink_set_receive_cb().
257         meshlink_set_channel_accept_cb(mesh, channel_accept);
258
259         if(!meshlink_start(mesh)) {
260                 fprintf(stderr, "Could not start MeshLink: %s\n", meshlink_strerror(meshlink_errno));
261                 return 1;
262         }
263
264         printf("Chat started.\nType /help for a list of commands.\n");
265
266         while(fgets(buf, sizeof buf, stdin))
267                 parse_input(mesh, buf);
268
269         printf("Chat stopping.\n");
270
271         meshlink_stop(mesh);
272         meshlink_close(mesh);
273
274         return 0;
275 }