]> git.meshlink.io Git - meshlink-tiny/blob - examples/chat.c
4e6f5d6a08518540f6bc2a81835c90c25760bf18
[meshlink-tiny] / examples / chat.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <strings.h>
5 #include "../src/meshlink.h"
6
7 static void log_message(meshlink_handle_t *mesh, meshlink_log_level_t level, const char *text) {
8         (void)mesh;
9
10         static 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
18         fprintf(stderr, "%s:\x1b[0m %s\n", levelstr[level], text);
19 }
20
21 static void receive(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len) {
22         (void)mesh;
23
24         const char *msg = data;
25
26         if(!len || msg[len - 1]) {
27                 fprintf(stderr, "Received invalid data from %s\n", source->name);
28                 return;
29         }
30
31         printf("%s says: %s\n", source->name, msg);
32 }
33
34 static void node_status(meshlink_handle_t *mesh, meshlink_node_t *node, bool reachable) {
35         (void)mesh;
36
37         if(reachable) {
38                 printf("%s joined.\n", node->name);
39         } else {
40                 printf("%s left.\n", node->name);
41         }
42 }
43
44 static meshlink_node_t **nodes;
45 static size_t nnodes;
46
47 static void parse_command(meshlink_handle_t *mesh, char *buf) {
48         char *arg = strchr(buf, ' ');
49
50         if(arg) {
51                 *arg++ = 0;
52         }
53
54         if(!strcasecmp(buf, "join")) {
55                 if(!arg) {
56                         fprintf(stderr, "/join requires an argument!\n");
57                         return;
58                 }
59
60                 meshlink_stop(mesh);
61
62                 if(!meshlink_join(mesh, arg)) {
63                         fprintf(stderr, "Could not join using invitation: %s\n", meshlink_strerror(meshlink_errno));
64                 } else {
65                         fprintf(stderr, "Invitation accepted!\n");
66                 }
67
68                 if(!meshlink_start(mesh)) {
69                         fprintf(stderr, "Could not restart MeshLink: %s\n", meshlink_strerror(meshlink_errno));
70                         exit(1);
71                 }
72         } else if(!strcasecmp(buf, "kick")) {
73                 if(!arg) {
74                         fprintf(stderr, "/kick requires an argument!\n");
75                         return;
76                 }
77
78                 meshlink_node_t *node = meshlink_get_node(mesh, arg);
79
80                 if(!node) {
81                         fprintf(stderr, "Error looking up '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
82                         return;
83                 }
84
85                 if(!meshlink_blacklist(mesh, node)) {
86                         fprintf(stderr, "Error blacklising '%s': %s", arg, meshlink_strerror(meshlink_errno));
87                         return;
88                 }
89
90                 printf("Node '%s' blacklisted.\n", arg);
91         } else if(!strcasecmp(buf, "whitelist")) {
92                 if(!arg) {
93                         fprintf(stderr, "/whitelist requires an argument!\n");
94                         return;
95                 }
96
97                 meshlink_node_t *node = meshlink_get_node(mesh, arg);
98
99                 if(!node) {
100                         fprintf(stderr, "Error looking up '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
101                         return;
102                 }
103
104                 if(!meshlink_whitelist(mesh, node)) {
105                         fprintf(stderr, "Error whitelising '%s': %s", arg, meshlink_strerror(meshlink_errno));
106                         return;
107                 }
108
109                 printf("Node '%s' whitelisted.\n", arg);
110         } else if(!strcasecmp(buf, "who")) {
111                 if(!arg) {
112                         nodes = meshlink_get_all_nodes(mesh, nodes, &nnodes);
113
114                         if(!nnodes) {
115                                 fprintf(stderr, "Could not get list of nodes: %s\n", meshlink_strerror(meshlink_errno));
116                         } else {
117                                 printf("%zu known nodes:", nnodes);
118
119                                 for(size_t i = 0; i < nnodes; i++) {
120                                         printf(" %s", nodes[i]->name);
121                                 }
122
123                                 printf("\n");
124                         }
125                 } else {
126                         meshlink_node_t *node = meshlink_get_node(mesh, arg);
127
128                         if(!node) {
129                                 fprintf(stderr, "Error looking up '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
130                         } else {
131                                 printf("Node %s found\n", arg);
132                         }
133                 }
134         } else if(!strcasecmp(buf, "quit")) {
135                 printf("Bye!\n");
136                 fclose(stdin);
137         } else if(!strcasecmp(buf, "help")) {
138                 printf(
139                         "<name>: <message>     Send a message to the given node.\n"
140                         "                      Subsequent messages don't need the <name>: prefix.\n"
141                         "/join <invitation>    Join an existing mesh using an invitation.\n"
142                         "/kick <name>          Blacklist the given node.\n"
143                         "/who [<name>]         List all nodes or show information about the given node.\n"
144                         "/quit                 Exit this program.\n"
145                 );
146         } else {
147                 fprintf(stderr, "Unknown command '/%s'\n", buf);
148         }
149 }
150
151 static void parse_input(meshlink_handle_t *mesh, char *buf) {
152         static meshlink_node_t *destination;
153         size_t len;
154
155         if(!buf) {
156                 return;
157         }
158
159         // Remove newline.
160
161         len = strlen(buf);
162
163         if(len && buf[len - 1] == '\n') {
164                 buf[--len] = 0;
165         }
166
167         if(len && buf[len - 1] == '\r') {
168                 buf[--len] = 0;
169         }
170
171         // Ignore empty lines.
172
173         if(!len) {
174                 return;
175         }
176
177         // Commands start with '/'
178
179         if(*buf == '/') {
180                 parse_command(mesh, buf + 1);
181                 return;
182         }
183
184         // Lines in the form "name: message..." set the destination node.
185
186         char *msg = buf;
187         char *colon = strchr(buf, ':');
188
189         if(colon) {
190                 *colon = 0;
191                 msg = colon + 1;
192
193                 if(*msg == ' ') {
194                         msg++;
195                 }
196
197                 destination = meshlink_get_node(mesh, buf);
198
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         if(!meshlink_send(mesh, destination, msg, strlen(msg) + 1)) {
211                 fprintf(stderr, "Could not send message to '%s': %s\n", destination->name, meshlink_strerror(meshlink_errno));
212                 return;
213         }
214
215         printf("Message sent to '%s'.\n", destination->name);
216 }
217
218 int main(int argc, char *argv[]) {
219         const char *confbase = ".chat";
220         const char *nick = NULL;
221         char buf[1024];
222
223         if(argc > 1) {
224                 confbase = argv[1];
225         }
226
227         if(argc > 2) {
228                 nick = argv[2];
229         }
230
231         meshlink_set_log_cb(NULL, MESHLINK_INFO, log_message);
232
233         meshlink_handle_t *mesh = meshlink_open(confbase, nick, "chat", DEV_CLASS_STATIONARY);
234
235         if(!mesh) {
236                 fprintf(stderr, "Could not open MeshLink: %s\n", meshlink_strerror(meshlink_errno));
237                 return 1;
238         }
239
240         meshlink_set_receive_cb(mesh, receive);
241         meshlink_set_node_status_cb(mesh, node_status);
242         meshlink_set_log_cb(mesh, MESHLINK_INFO, log_message);
243
244         if(!meshlink_start(mesh)) {
245                 fprintf(stderr, "Could not start MeshLink: %s\n", meshlink_strerror(meshlink_errno));
246                 return 1;
247         }
248
249         printf("Chat started.\nType /help for a list of commands.\n");
250
251         while(fgets(buf, sizeof(buf), stdin)) {
252                 parse_input(mesh, buf);
253         }
254
255         printf("Chat stopping.\n");
256
257         meshlink_stop(mesh);
258         meshlink_close(mesh);
259
260         return 0;
261 }