5 #include "../src/meshlink.h"
7 static void log_message(meshlink_handle_t *mesh, meshlink_log_level_t level, const char *text) {
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",
18 fprintf(stderr, "%s:\x1b[0m %s\n", levelstr[level], text);
21 static void receive(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len) {
24 const char *msg = data;
26 if(!len || msg[len - 1]) {
27 fprintf(stderr, "Received invalid data from %s\n", source->name);
31 printf("%s says: %s\n", source->name, msg);
34 static void node_status(meshlink_handle_t *mesh, meshlink_node_t *node, bool reachable) {
38 printf("%s joined.\n", node->name);
40 printf("%s left.\n", node->name);
44 static meshlink_node_t **nodes;
47 static void parse_command(meshlink_handle_t *mesh, char *buf) {
48 char *arg = strchr(buf, ' ');
54 if(!strcasecmp(buf, "invite")) {
58 fprintf(stderr, "/invite requires an argument!\n");
62 invitation = meshlink_invite(mesh, arg);
65 fprintf(stderr, "Could not invite '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
69 printf("Invitation for %s: %s\n", arg, invitation);
71 } else if(!strcasecmp(buf, "join")) {
73 fprintf(stderr, "/join requires an argument!\n");
79 if(!meshlink_join(mesh, arg)) {
80 fprintf(stderr, "Could not join using invitation: %s\n", meshlink_strerror(meshlink_errno));
82 fprintf(stderr, "Invitation accepted!\n");
85 if(!meshlink_start(mesh)) {
86 fprintf(stderr, "Could not restart MeshLink: %s\n", meshlink_strerror(meshlink_errno));
89 } else if(!strcasecmp(buf, "kick")) {
91 fprintf(stderr, "/kick requires an argument!\n");
95 meshlink_node_t *node = meshlink_get_node(mesh, arg);
98 fprintf(stderr, "Error looking up '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
102 meshlink_blacklist(mesh, node);
104 printf("Node '%s' blacklisted.\n", arg);
105 } else if(!strcasecmp(buf, "who")) {
107 nodes = meshlink_get_all_nodes(mesh, nodes, &nnodes);
110 fprintf(stderr, "Could not get list of nodes: %s\n", meshlink_strerror(meshlink_errno));
112 printf("%zu known nodes:", nnodes);
114 for(size_t i = 0; i < nnodes; i++) {
115 printf(" %s", nodes[i]->name);
121 meshlink_node_t *node = meshlink_get_node(mesh, arg);
124 fprintf(stderr, "Error looking up '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
126 printf("Node %s found\n", arg);
129 } else if(!strcasecmp(buf, "quit")) {
132 } else if(!strcasecmp(buf, "help")) {
134 "<name>: <message> Send a message to the given node.\n"
135 " Subsequent messages don't need the <name>: prefix.\n"
136 "/invite <name> Create an invitation for a new node.\n"
137 "/join <invitation> Join an existing mesh using an invitation.\n"
138 "/kick <name> Blacklist the given node.\n"
139 "/who [<name>] List all nodes or show information about the given node.\n"
140 "/quit Exit this program.\n"
143 fprintf(stderr, "Unknown command '/%s'\n", buf);
147 static void parse_input(meshlink_handle_t *mesh, char *buf) {
148 static meshlink_node_t *destination;
159 if(len && buf[len - 1] == '\n') {
163 if(len && buf[len - 1] == '\r') {
167 // Ignore empty lines.
173 // Commands start with '/'
176 parse_command(mesh, buf + 1);
180 // Lines in the form "name: message..." set the destination node.
183 char *colon = strchr(buf, ':');
193 destination = meshlink_get_node(mesh, buf);
196 fprintf(stderr, "Error looking up '%s': %s\n", buf, meshlink_strerror(meshlink_errno));
202 fprintf(stderr, "Who are you talking to? Write 'name: message...'\n");
206 if(!meshlink_send(mesh, destination, msg, strlen(msg) + 1)) {
207 fprintf(stderr, "Could not send message to '%s': %s\n", destination->name, meshlink_strerror(meshlink_errno));
211 printf("Message sent to '%s'.\n", destination->name);
214 int main(int argc, char *argv[]) {
215 const char *confbase = ".chat";
216 const char *nick = NULL;
227 meshlink_set_log_cb(NULL, MESHLINK_INFO, log_message);
229 meshlink_handle_t *mesh = meshlink_open(confbase, nick, "chat", DEV_CLASS_STATIONARY);
232 fprintf(stderr, "Could not open MeshLink: %s\n", meshlink_strerror(meshlink_errno));
236 meshlink_set_receive_cb(mesh, receive);
237 meshlink_set_node_status_cb(mesh, node_status);
238 meshlink_set_log_cb(mesh, MESHLINK_INFO, log_message);
240 if(!meshlink_start(mesh)) {
241 fprintf(stderr, "Could not start MeshLink: %s\n", meshlink_strerror(meshlink_errno));
245 printf("Chat started.\nType /help for a list of commands.\n");
247 while(fgets(buf, sizeof(buf), stdin)) {
248 parse_input(mesh, buf);
251 printf("Chat stopping.\n");
254 meshlink_close(mesh);