]> git.meshlink.io Git - meshlink/blob - src/meshlink++.h
dee2c7060d04bc352b59901f911fc7d8a78a7009
[meshlink] / src / meshlink++.h
1 #ifndef MESHLINKPP_H
2 #define MESHLINKPP_H
3
4 /*
5     meshlink++.h -- MeshLink C++ API
6     Copyright (C) 2014, 2017 Guus Sliepen <guus@meshlink.io>
7
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
12
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17
18     You should have received a copy of the GNU General Public License along
19     with this program; if not, write to the Free Software Foundation, Inc.,
20     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23 #include <meshlink.h>
24 #include <new> // for 'placement new'
25
26 namespace meshlink {
27 class mesh;
28 class node;
29 class channel;
30 class submesh;
31
32 /// Severity of log messages generated by MeshLink.
33 typedef meshlink_log_level_t log_level_t;
34
35 /// Code of most recent error encountered.
36 typedef meshlink_errno_t errno_t;
37
38 /// A callback for receiving data from the mesh.
39 /** @param mesh      A handle which represents an instance of MeshLink.
40  *  @param source    A pointer to a meshlink::node describing the source of the data.
41  *  @param data      A pointer to a buffer containing the data sent by the source.
42  *  @param len       The length of the received data.
43  */
44 typedef void (*receive_cb_t)(mesh *mesh, node *source, const void *data, size_t len);
45
46 /// A callback reporting the meta-connection attempt made by the host node to an another node.
47 /** @param mesh      A handle which represents an instance of MeshLink.
48  *  @param node      A pointer to a meshlink_node_t describing the node to whom meta-connection is being tried.
49  *                   This pointer is valid until meshlink_close() is called.
50  */
51 typedef void (*connection_try_cb_t)(mesh *mesh, node *node);
52
53 /// A callback reporting node status changes.
54 /** @param mesh       A handle which represents an instance of MeshLink.
55  *  @param node       A pointer to a meshlink::node describing the node whose status changed.
56  *  @param reachable  True if the node is reachable, false otherwise.
57  */
58 typedef void (*node_status_cb_t)(mesh *mesh, node *node, bool reachable);
59
60 /// A callback reporting duplicate node detection.
61 /** @param mesh       A handle which represents an instance of MeshLink.
62  *  @param node       A pointer to a meshlink_node_t describing the node which is duplicate.
63  *                    This pointer is valid until meshlink_close() is called.
64  */
65 typedef void (*duplicate_cb_t)(mesh *mesh, node *node);
66
67 /// A callback for receiving log messages generated by MeshLink.
68 /** @param mesh      A handle which represents an instance of MeshLink.
69  *  @param level     An enum describing the severity level of the message.
70  *  @param text      A pointer to a string containing the textual log message.
71  */
72 typedef void (*log_cb_t)(mesh *mesh, log_level_t level, const char *text);
73
74 /// A callback for accepting incoming channels.
75 /** @param mesh         A handle which represents an instance of MeshLink.
76  *  @param channel      A handle for the incoming channel.
77  *  @param port         The port number the peer wishes to connect to.
78  *  @param data         A pointer to a buffer containing data already received. (Not yet used.)
79  *  @param len          The length of the data. (Not yet used.)
80  *
81  *  @return             This function should return true if the application accepts the incoming channel, false otherwise.
82  *                      If returning false, the channel is invalid and may not be used anymore.
83  */
84 typedef bool (*channel_accept_cb_t)(mesh *mesh, channel *channel, uint16_t port, const void *data, size_t len);
85
86 /// A callback for receiving data from a channel.
87 /** @param mesh         A handle which represents an instance of MeshLink.
88  *  @param channel      A handle for the channel.
89  *  @param data         A pointer to a buffer containing data sent by the source.
90  *  @param len          The length of the data.
91  */
92 typedef void (*channel_receive_cb_t)(mesh *mesh, channel *channel, const void *data, size_t len);
93
94 /// A callback that is called when data can be send on a channel.
95 /** @param mesh         A handle which represents an instance of MeshLink.
96  *  @param channel      A handle for the channel.
97  *  @param len          The maximum length of data that is guaranteed to be accepted by a call to channel_send().
98  */
99 typedef void (*channel_poll_cb_t)(mesh *mesh, channel *channel, size_t len);
100
101 /// A callback for cleaning up buffers submitted for asynchronous I/O.
102 /** This callbacks signals that MeshLink has finished using this buffer.
103  *  The ownership of the buffer is now back into the application's hands.
104  *
105  *  @param mesh      A handle which represents an instance of MeshLink.
106  *  @param channel   A handle for the channel which used this buffer.
107  *  @param data      A pointer to a buffer containing the enqueued data.
108  *  @param len       The length of the buffer.
109  *  @param priv      A private pointer which was set by the application when submitting the buffer.
110  */
111 typedef void (*aio_cb_t)(mesh *mesh, channel *channel, const void *data, size_t len, void *priv);
112
113 /// A class describing a MeshLink node.
114 class node: public meshlink_node_t {
115 };
116
117 /// A class describing a MeshLink Sub-Mesh.
118 class submesh: public meshlink_submesh_t {
119 };
120
121 /// A class describing a MeshLink channel.
122 class channel: public meshlink_channel_t {
123 public:
124         static const uint32_t RELIABLE = MESHLINK_CHANNEL_RELIABLE;
125         static const uint32_t ORDERED = MESHLINK_CHANNEL_ORDERED;
126         static const uint32_t FRAMED = MESHLINK_CHANNEL_FRAMED;
127         static const uint32_t DROP_LATE = MESHLINK_CHANNEL_DROP_LATE;
128         static const uint32_t NO_PARTIAL = MESHLINK_CHANNEL_NO_PARTIAL;
129         static const uint32_t TCP = MESHLINK_CHANNEL_TCP;
130         static const uint32_t UDP = MESHLINK_CHANNEL_UDP;
131 };
132
133 /// A class describing a MeshLink mesh.
134 class mesh {
135 public:
136         mesh() : handle(0) {}
137
138         virtual ~mesh() {
139                 this->close();
140         }
141
142         bool isOpen() const {
143                 return (handle != 0);
144         }
145
146 // TODO: please enable C++11 in autoconf to enable "move constructors":
147 //              mesh(mesh&& other)
148 //              : handle(other.handle)
149 //              {
150 //                      if(handle)
151 //                              handle->priv = this;
152 //                      other.handle = 0;
153 //              }
154
155         /// Initialize MeshLink's configuration directory.
156         /** This function causes MeshLink to initialize its configuration directory,
157          *  if it hasn't already been initialized.
158          *  It only has to be run the first time the application starts,
159          *  but it is not a problem if it is run more than once, as long as
160          *  the arguments given are the same.
161          *
162          *  This function does not start any network I/O yet. The application should
163          *  first set callbacks, and then call meshlink_start().
164          *
165          *  @param confbase The directory in which MeshLink will store its configuration files.
166          *  @param name     The name which this instance of the application will use in the mesh.
167          *  @param appname  The application name which will be used in the mesh.
168          *  @param devclass The device class which will be used in the mesh.
169          *
170          *  @return         This function will return a pointer to a meshlink::mesh if MeshLink has successfully set up its configuration files, NULL otherwise.
171          */
172         bool open(const char *confbase, const char *name, const char *appname, dev_class_t devclass) {
173                 handle = meshlink_open(confbase, name, appname, devclass);
174
175                 if(handle) {
176                         handle->priv = this;
177                 }
178
179                 return isOpen();
180         }
181
182         mesh(const char *confbase, const char *name, const char *appname, dev_class_t devclass) {
183                 open(confbase, name, appname, devclass);
184         }
185
186         /// Close the MeshLink handle.
187         /** This function calls meshlink_stop() if necessary,
188          *  and frees all memory allocated by MeshLink.
189          *  Afterwards, the handle and any pointers to a struct meshlink_node are invalid.
190          */
191         void close() {
192                 if(handle) {
193                         handle->priv = 0;
194                         meshlink_close(handle);
195                 }
196
197                 handle = 0;
198         }
199
200         /** instead of registerin callbacks you derive your own class and overwrite the following abstract member functions.
201          *  These functions are run in MeshLink's own thread.
202          *  It is therefore important that these functions use apprioriate methods (queues, pipes, locking, etc.)
203          *  to hand the data over to the application's thread.
204          *  These functions should also not block itself and return as quickly as possible.
205          * The default member functions are no-ops, so you are not required to overwrite all these member functions
206          */
207
208         /// This function is called whenever another node sends data to the local node.
209         virtual void receive(node *source, const void *data, size_t length) {
210                 /* do nothing */
211                 (void)source;
212                 (void)data;
213                 (void) length;
214         }
215
216         /// This functions is called whenever another node's status changed.
217         virtual void node_status(node *peer, bool reachable) {
218                 /* do nothing */
219                 (void)peer;
220                 (void)reachable;
221         }
222
223         /// This functions is called whenever a duplicate node is detected.
224         virtual void node_duplicate(node *peer) {
225                 /* do nothing */
226                 (void)peer;
227         }
228
229         /// This functions is called whenever MeshLink has some information to log.
230         virtual void log(log_level_t level, const char *message) {
231                 /* do nothing */
232                 (void)level;
233                 (void)message;
234         }
235
236         /// This functions is called whenever MeshLink a meta-connection attempt is made.
237         virtual void connection_try(node *peer) {
238                 /* do nothing */
239                 (void)peer;
240         }
241
242         /// This functions is called whenever another node attempts to open a channel to the local node.
243         /**
244          *  If the channel is accepted, the poll_callback will be set to channel_poll and can be
245          *  changed using set_channel_poll_cb(). Likewise, the receive callback is set to
246          *  channel_receive().
247          *
248          *  The function is run in MeshLink's own thread.
249          *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
250          *  to pass data to or from the application's thread.
251          *  The callback should also not block itself and return as quickly as possible.
252          *
253          *  @param channel      A handle for the incoming channel.
254          *  @param port         The port number the peer wishes to connect to.
255          *  @param data         A pointer to a buffer containing data already received. (Not yet used.)
256          *  @param len          The length of the data. (Not yet used.)
257          *
258          *  @return             This function should return true if the application accepts the incoming channel, false otherwise.
259          *                      If returning false, the channel is invalid and may not be used anymore.
260          */
261         virtual bool channel_accept(channel *channel, uint16_t port, const void *data, size_t len) {
262                 /* by default reject all channels */
263                 (void)channel;
264                 (void)port;
265                 (void)data;
266                 (void)len;
267                 return false;
268         }
269
270         /// This function is called by Meshlink for receiving data from a channel.
271         /**
272          *  The function is run in MeshLink's own thread.
273          *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
274          *  to pass data to or from the application's thread.
275          *  The callback should also not block itself and return as quickly as possible.
276          *
277          *  @param channel      A handle for the channel.
278          *  @param data         A pointer to a buffer containing data sent by the source.
279          *  @param len          The length of the data.
280          */
281         virtual void channel_receive(channel *channel, const void *data, size_t len) {
282                 /* do nothing */
283                 (void)channel;
284                 (void)data;
285                 (void)len;
286         }
287
288         /// This function is called by Meshlink when data can be send on a channel.
289         /**
290          *  The function is run in MeshLink's own thread.
291          *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
292          *  to pass data to or from the application's thread.
293          *
294          *  The callback should also not block itself and return as quickly as possible.
295          *  @param channel      A handle for the channel.
296          *  @param len          The maximum length of data that is guaranteed to be accepted by a call to channel_send().
297          */
298         virtual void channel_poll(channel *channel, size_t len) {
299                 /* do nothing */
300                 (void)channel;
301                 (void)len;
302         }
303
304         /// Start MeshLink.
305         /** This function causes MeshLink to open network sockets, make outgoing connections, and
306          *  create a new thread, which will handle all network I/O.
307          *
308          *  @return         This function will return true if MeshLink has successfully started its thread, false otherwise.
309          */
310         bool start() {
311                 meshlink_set_receive_cb(handle, &receive_trampoline);
312                 meshlink_set_node_status_cb(handle, &node_status_trampoline);
313                 meshlink_set_node_duplicate_cb(handle, &node_duplicate_trampoline);
314                 meshlink_set_log_cb(handle, MESHLINK_DEBUG, &log_trampoline);
315                 meshlink_set_channel_accept_cb(handle, &channel_accept_trampoline);
316                 meshlink_set_connection_try_cb(handle, &connection_try_trampoline);
317                 return meshlink_start(handle);
318         }
319
320         /// Stop MeshLink.
321         /** This function causes MeshLink to disconnect from all other nodes,
322          *  close all sockets, and shut down its own thread.
323          */
324         void stop() {
325                 meshlink_stop(handle);
326         }
327
328         /// Send data to another node.
329         /** This functions sends one packet of data to another node in the mesh.
330          *  The packet is sent using UDP semantics, which means that
331          *  the packet is sent as one unit and is received as one unit,
332          *  and that there is no guarantee that the packet will arrive at the destination.
333          *  The application should take care of getting an acknowledgement and retransmission if necessary.
334          *
335          *  @param destination  A pointer to a meshlink::node describing the destination for the data.
336          *  @param data         A pointer to a buffer containing the data to be sent to the source.
337          *  @param len          The length of the data.
338          *  @return             This function will return true if MeshLink has queued the message for transmission, and false otherwise.
339          *                      A return value of true does not guarantee that the message will actually arrive at the destination.
340          */
341         bool send(node *destination, const void *data, unsigned int len) {
342                 return meshlink_send(handle, destination, data, len);
343         }
344
345         /// Get a handle for a specific node.
346         /** This function returns a handle for the node with the given name.
347          *
348          *  @param name         The name of the node for which a handle is requested.
349          *
350          *  @return             A pointer to a meshlink::node which represents the requested node,
351          *                      or NULL if the requested node does not exist.
352          */
353         node *get_node(const char *name) {
354                 return (node *)meshlink_get_node(handle, name);
355         }
356
357         /// Get a handle for a specific submesh.
358         /** This function returns a handle for the submesh with the given name.
359          *
360          *  @param name         The name of the submesh for which a handle is requested.
361          *
362          *  @return             A pointer to a meshlink::submesh which represents the requested submesh,
363          *                      or NULL if the requested submesh does not exist.
364          */
365         submesh *get_submesh(const char *name) {
366                 return (submesh *)meshlink_get_submesh(handle, name);
367         }
368
369         /// Get a handle for our own node.
370         /** This function returns a handle for the local node.
371          *
372          *  @return             A pointer to a meshlink::node which represents the local node.
373          */
374         node *get_self() {
375                 return (node *)meshlink_get_self(handle);
376         }
377
378         /// Get a list of all nodes.
379         /** This function returns a list with handles for all known nodes.
380          *
381          *  @param nodes        A pointer to an array of pointers to meshlink::node, which should be allocated by the application.
382          *  @param nmemb        The maximum number of pointers that can be stored in the nodes array.
383          *
384          *  @return             The number of known nodes, or -1 in case of an error.
385          *                      This can be larger than nmemb, in which case not all nodes were stored in the nodes array.
386          */
387         node **get_all_nodes(node **nodes, size_t *nmemb) {
388                 return (node **)meshlink_get_all_nodes(handle, (meshlink_node_t **)nodes, nmemb);
389         }
390
391         /// Sign data using the local node's MeshLink key.
392         /** This function signs data using the local node's MeshLink key.
393          *  The generated signature can be securely verified by other nodes.
394          *
395          *  @param data         A pointer to a buffer containing the data to be signed.
396          *  @param len          The length of the data to be signed.
397          *  @param signature    A pointer to a buffer where the signature will be stored.
398          *  @param siglen       The size of the signature buffer. Will be changed after the call to match the size of the signature itself.
399          *
400          *  @return             This function returns true if the signature is valid, false otherwise.
401          */
402         bool sign(const void *data, size_t len, void *signature, size_t *siglen) {
403                 return meshlink_sign(handle, data, len, signature, siglen);
404         }
405
406         /// Verify the signature generated by another node of a piece of data.
407         /** This function verifies the signature that another node generated for a piece of data.
408          *
409          *  @param source       A pointer to a meshlink_node_t describing the source of the signature.
410          *  @param data         A pointer to a buffer containing the data to be verified.
411          *  @param len          The length of the data to be verified.
412          *  @param signature    A pointer to a string containing the signature.
413          *  @param siglen       The size of the signature.
414          *
415          *  @return             This function returns true if the signature is valid, false otherwise.
416          */
417         bool verify(node *source, const void *data, size_t len, const void *signature, size_t siglen) {
418                 return meshlink_verify(handle, source, data, len, signature, siglen);
419         }
420
421         /// Set the canonical Address for a node.
422         /** This function sets the canonical Address for a node.
423          *  This address is stored permanently until it is changed by another call to this function,
424          *  unlike other addresses associated with a node,
425          *  such as those added with meshlink_hint_address() or addresses discovered at runtime.
426          *
427          *  If a canonical Address is set for the local node,
428          *  it will be used for the hostname part of generated invitation URLs.
429          *
430          *  @param node         A pointer to a meshlink_node_t describing the node.
431          *  @param address      A nul-terminated C string containing the address, which can be either in numeric format or a hostname.
432          *  @param port         A nul-terminated C string containing the port, which can be either in numeric or symbolic format.
433          *                      If it is NULL, the listening port's number will be used.
434          *
435          *  @return             This function returns true if the address was added, false otherwise.
436          */
437         bool set_canonical_address(node *node, const char *address, const char *port = NULL) {
438                 return meshlink_set_canonical_address(handle, node, address, port);
439         }
440
441         /// Set the canonical Address for the local node.
442         /** This function sets the canonical Address for the local node.
443          *  This address is stored permanently until it is changed by another call to this function,
444          *  unlike other addresses associated with a node,
445          *  such as those added with meshlink_hint_address() or addresses discovered at runtime.
446          *
447          *  @param address      A nul-terminated C string containing the address, which can be either in numeric format or a hostname.
448          *  @param port         A nul-terminated C string containing the port, which can be either in numeric or symbolic format.
449          *                      If it is NULL, the listening port's number will be used.
450          *
451          *  @return             This function returns true if the address was added, false otherwise.
452          */
453         bool set_canonical_address(const char *address, const char *port = NULL) {
454                 return meshlink_set_canonical_address(handle, get_self(), address, port);
455         }
456
457         /// Add an Address for the local node.
458         /** This function adds an Address for the local node, which will be used for invitation URLs.
459          *
460          *  @param address      A string containing the address, which can be either in numeric format or a hostname.
461          *
462          *  @return             This function returns true if the address was added, false otherwise.
463          */
464         bool add_address(const char *address) {
465                 return meshlink_add_address(handle, address);
466         }
467
468         /** This function performs tries to discover the local node's external address
469          *  by contacting the meshlink.io server. If a reverse lookup of the address works,
470          *  the FQDN associated with the address will be returned.
471          *
472          *  Please note that this is function only returns a single address,
473          *  even if the local node might have more than one external address.
474          *  In that case, there is no control over which address will be selected.
475          *  Also note that if you have a dynamic IP address, or are behind carrier-grade NAT,
476          *  there is no guarantee that the external address will be valid for an extended period of time.
477          *
478          *  This function is blocking. It can take several seconds before it returns.
479          *  There is no guarantee it will be able to resolve the external address.
480          *  Failures might be because by temporary network outages.
481          *
482          *  @param family       The address family to check, for example AF_INET or AF_INET6. If AF_UNSPEC is given,
483          *                      this might return the external address for any working address family.
484          *
485          *  @return             This function returns a pointer to a C string containing the discovered external address,
486          *                      or NULL if there was an error looking up the address.
487          *                      After get_external_address() returns, the application is free to overwrite or free this string.
488          */
489         bool get_external_address(int family = AF_UNSPEC) {
490                 return meshlink_get_external_address_for_family(handle, family);
491         }
492
493         /** This function performs tries to discover the address of the local interface used for outgoing connection.
494          *
495          *  Please note that this is function only returns a single address,
496          *  even if the local node might have more than one external address.
497          *  In that case, there is no control over which address will be selected.
498          *  Also note that if you have a dynamic IP address, or are behind carrier-grade NAT,
499          *  there is no guarantee that the external address will be valid for an extended period of time.
500          *
501          *  This function will fail if it couldn't find a local address for the given address family.
502          *  If hostname resolving is requested, this function may block for a few seconds.
503          *
504          *  @param family       The address family to check, for example AF_INET or AF_INET6. If AF_UNSPEC is given,
505          *                      this might return the external address for any working address family.
506          *
507          *  @return             This function returns a pointer to a C string containing the discovered external address,
508          *                      or NULL if there was an error looking up the address.
509          *                      After get_external_address() returns, the application is free to overwrite or free this string.
510          */
511         bool get_local_address(int family = AF_UNSPEC) {
512                 return meshlink_get_local_address_for_family(handle, family);
513         }
514
515         /// Try to discover the external address for the local node, and add it to its list of addresses.
516         /** This function is equivalent to:
517          *
518          *    mesh->add_address(mesh->get_external_address());
519          *
520          *  Read the description of get_external_address() for the limitations of this function.
521          *
522          *  @return             This function returns true if the address was added, false otherwise.
523          */
524         bool add_external_address() {
525                 return meshlink_add_external_address(handle);
526         }
527
528         /// Get the network port used by the local node.
529         /** This function returns the network port that the local node is listening on.
530          *
531          *  @return              This function returns the port number, or -1 in case of an error.
532          */
533         int get_port() {
534                 return meshlink_get_port(handle);
535         }
536
537         /// Set the network port used by the local node.
538         /** This function sets the network port that the local node is listening on.
539          *  It may only be called when the mesh is not running.
540          *  If unsure, call stop() before calling this function.
541          *  Also note that if your node is already part of a mesh with other nodes,
542          *  that the other nodes may no longer be able to initiate connections to the local node,
543          *  since they will try to connect to the previously configured port.
544          *
545          *  @param port          The port number to listen on. This must be between 0 and 65535.
546          *                       If the port is set to 0, then MeshLink will listen on a port
547          *                       that is randomly assigned by the operating system every time open() is called.
548          *
549          *  @return              This function returns true if the port was successfully changed
550          *                       to the desired port, false otherwise. If it returns false, there
551          *                       is no guarantee that MeshLink is listening on the old port.
552          */
553         bool set_port(int port) {
554                 return meshlink_set_port(handle, port);
555         }
556
557         /// Set the timeout for invitations.
558         /** This function sets the timeout for invitations.
559          *  The timeout is retroactively applied to all outstanding invitations.
560          *
561          *  @param timeout      The timeout for invitations in seconds.
562          */
563         void set_invitation_timeout(int timeout) {
564                 meshlink_set_invitation_timeout(handle, timeout);
565         }
566
567         /// Invite another node into the mesh.
568         /** This function generates an invitation that can be used by another node to join the same mesh as the local node.
569          *  The generated invitation is a string containing a URL.
570          *  This URL should be passed by the application to the invitee in a way that no eavesdroppers can see the URL.
571          *  The URL can only be used once, after the user has joined the mesh the URL is no longer valid.
572          *
573          *  @param submesh      A handle to the submesh to put the invitee in.
574          *  @param name         The name that the invitee will use in the mesh.
575          *  @param flags        A bitwise-or'd combination of flags that controls how the URL is generated.
576          *
577          *  @return             This function returns a string that contains the invitation URL.
578          *                      The application should call free() after it has finished using the URL.
579          */
580         char *invite(submesh *submesh, const char *name, uint32_t flags = 0) {
581                 return meshlink_invite_ex(handle, submesh, name, flags);
582         }
583
584         /// Use an invitation to join a mesh.
585         /** This function allows the local node to join an existing mesh using an invitation URL generated by another node.
586          *  An invitation can only be used if the local node has never connected to other nodes before.
587          *  After a successfully accepted invitation, the name of the local node may have changed.
588          *
589          *  This function may only be called on a mesh that has not been started yet and which is not already part of an existing mesh.
590          *
591          *  This function is blocking. It can take several seconds before it returns.
592          *  There is no guarantee it will perform a successful join.
593          *  Failures might be caused by temporary network outages, or by the invitation having expired.
594          *
595          *  @param invitation   A string containing the invitation URL.
596          *
597          *  @return             This function returns true if the local node joined the mesh it was invited to, false otherwise.
598          */
599         bool join(const char *invitation) {
600                 return meshlink_join(handle, invitation);
601         }
602
603         /// Export the local node's key and addresses.
604         /** This function generates a string that contains the local node's public key and one or more IP addresses.
605          *  The application can pass it in some way to another node, which can then import it,
606          *  granting the local node access to the other node's mesh.
607          *
608          *  @return             This function returns a string that contains the exported key and addresses.
609          *                      The application should call free() after it has finished using this string.
610          */
611         char *export_key() {
612                 return meshlink_export(handle);
613         }
614
615         /// Import another node's key and addresses.
616         /** This function accepts a string containing the exported public key and addresses of another node.
617          *  By importing this data, the local node grants the other node access to its mesh.
618          *
619          *  @param data         A string containing the other node's exported key and addresses.
620          *
621          *  @return             This function returns true if the data was valid and the other node has been granted access to the mesh, false otherwise.
622          */
623         bool import_key(const char *data) {
624                 return meshlink_import(handle, data);
625         }
626
627         /// Blacklist a node from the mesh.
628         /** This function causes the local node to blacklist another node.
629          *  The local node will drop any existing connections to that node,
630          *  and will not send data to it nor accept any data received from it any more.
631          *
632          *  @param node         A pointer to a meshlink::node describing the node to be blacklisted.
633          */
634         void blacklist(node *node) {
635                 return meshlink_blacklist(handle, node);
636         }
637
638         /// Set the poll callback.
639         /** This functions sets the callback that is called whenever data can be sent to another node.
640          *  The callback is run in MeshLink's own thread.
641          *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
642          *  to pass data to or from the application's thread.
643          *  The callback should also not block itself and return as quickly as possible.
644          *
645          *  @param channel   A handle for the channel.
646          *  @param cb        A pointer to the function which will be called when data can be sent to another node.
647          *                   If a NULL pointer is given, the callback will be disabled.
648          */
649         void set_channel_poll_cb(channel *channel, channel_poll_cb_t cb) {
650                 meshlink_set_channel_poll_cb(handle, channel, (meshlink_channel_poll_cb_t)cb);
651         }
652
653         /// Set the send buffer size of a channel.
654         /** This function sets the desired size of the send buffer.
655          *  The default size is 128 kB.
656          *
657          *  @param channel   A handle for the channel.
658          *  @param size      The desired size for the send buffer.
659          *                   If a NULL pointer is given, the callback will be disabled.
660          */
661         void set_channel_sndbuf(channel *channel, size_t size) {
662                 meshlink_set_channel_sndbuf(handle, channel, size);
663         }
664
665         /// Set the receive buffer size of a channel.
666         /** This function sets the desired size of the receive buffer.
667          *  The default size is 128 kB.
668          *
669          *  @param channel   A handle for the channel.
670          *  @param size      The desired size for the send buffer.
671          *                   If a NULL pointer is given, the callback will be disabled.
672          */
673         void set_channel_rcvbuf(channel *channel, size_t size) {
674                 meshlink_set_channel_rcvbuf(handle, channel, size);
675         }
676
677         /// Open a reliable stream channel to another node.
678         /** This function is called whenever a remote node wants to open a channel to the local node.
679          *  The application then has to decide whether to accept or reject this channel.
680          *
681          *  This function sets the channel poll callback to channel_poll_trampoline, which in turn
682          *  calls channel_poll. To set a different, channel-specific poll callback, use set_channel_poll_cb.
683          *
684          *  @param node         The node to which this channel is being initiated.
685          *  @param port         The port number the peer wishes to connect to.
686          *  @param cb           A pointer to the function which will be called when the remote node sends data to the local node.
687          *  @param data         A pointer to a buffer containing data to already queue for sending.
688          *  @param len          The length of the data.
689          *  @param flags        A bitwise-or'd combination of flags that set the semantics for this channel.
690          *
691          *  @return             A handle for the channel, or NULL in case of an error.
692          */
693         channel *channel_open(node *node, uint16_t port, channel_receive_cb_t cb, const void *data, size_t len, uint32_t flags = channel::TCP) {
694                 channel *ch = (channel *)meshlink_channel_open_ex(handle, node, port, (meshlink_channel_receive_cb_t)cb, data, len, flags);
695                 meshlink_set_channel_poll_cb(handle, ch, &channel_poll_trampoline);
696                 return ch;
697         }
698
699         /// Open a reliable stream channel to another node.
700         /** This function is called whenever a remote node wants to open a channel to the local node.
701          *  The application then has to decide whether to accept or reject this channel.
702          *
703          *  This function sets the channel receive callback to channel_receive_trampoline,
704          *  which in turn calls channel_receive.
705          *
706          *  This function sets the channel poll callback to channel_poll_trampoline, which in turn
707          *  calls channel_poll. To set a different, channel-specific poll callback, use set_channel_poll_cb.
708          *
709          *  @param node         The node to which this channel is being initiated.
710          *  @param port         The port number the peer wishes to connect to.
711          *  @param data         A pointer to a buffer containing data to already queue for sending.
712          *  @param len          The length of the data.
713          *  @param flags        A bitwise-or'd combination of flags that set the semantics for this channel.
714          *
715          *  @return             A handle for the channel, or NULL in case of an error.
716          */
717         channel *channel_open(node *node, uint16_t port, const void *data, size_t len, uint32_t flags = channel::TCP) {
718                 channel *ch = (channel *)meshlink_channel_open_ex(handle, node, port, &channel_receive_trampoline, data, len, flags);
719                 meshlink_set_channel_poll_cb(handle, ch, &channel_poll_trampoline);
720                 return ch;
721         }
722
723         /// Partially close a reliable stream channel.
724         /** This shuts down the read or write side of a channel, or both, without closing the handle.
725          *  It can be used to inform the remote node that the local node has finished sending all data on the channel,
726          *  but still allows waiting for incoming data from the remote node.
727          *
728          *  @param channel      A handle for the channel.
729          *  @param direction    Must be one of SHUT_RD, SHUT_WR or SHUT_RDWR.
730          */
731         void channel_shutdown(channel *channel, int direction) {
732                 return meshlink_channel_shutdown(handle, channel, direction);
733         }
734
735         /// Close a reliable stream channel.
736         /** This informs the remote node that the local node has finished sending all data on the channel.
737          *  It also causes the local node to stop accepting incoming data from the remote node.
738          *  Afterwards, the channel handle is invalid and must not be used any more.
739          *
740          *  @param channel      A handle for the channel.
741          */
742         void channel_close(meshlink_channel_t *channel) {
743                 return meshlink_channel_close(handle, channel);
744         }
745
746         /// Transmit data on a channel
747         /** This queues data to send to the remote node.
748          *
749          *  @param channel      A handle for the channel.
750          *  @param data         A pointer to a buffer containing data sent by the source.
751          *  @param len          The length of the data.
752          *
753          *  @return             The amount of data that was queued, which can be less than len, or a negative value in case of an error.
754          *                      If MESHLINK_CHANNEL_NO_PARTIAL is set, then the result will either be len,
755          *                      0 if the buffer is currently too full, or -1 if len is too big even for an empty buffer.
756          */
757         ssize_t channel_send(channel *channel, void *data, size_t len) {
758                 return meshlink_channel_send(handle, channel, data, len);
759         }
760
761         /// Transmit data on a channel asynchronously
762         /** This registers a buffer that will be used to send data to the remote node.
763          *  Multiple buffers can be registered, in which case data will be sent in the order the buffers were registered.
764          *  While there are still buffers with unsent data, the poll callback will not be called.
765          *
766          *  @param channel      A handle for the channel.
767          *  @param data         A pointer to a buffer containing data sent by the source, or NULL if there is no data to send.
768          *                      After meshlink_channel_aio_send() returns, the buffer may not be modified or freed by the application
769          *                      until the callback routine is called.
770          *  @param len          The length of the data, or 0 if there is no data to send.
771          *  @param cb           A pointer to the function which will be called when MeshLink has finished using the buffer.
772          *
773          *  @return             True if the buffer was enqueued, false otherwise.
774          */
775         bool channel_aio_send(channel *channel, const void *data, size_t len, meshlink_aio_cb_t cb, void *priv) {
776                 return meshlink_channel_aio_send(handle, channel, data, len, cb, priv);
777         }
778
779         /// Receive data on a channel asynchronously
780         /** This registers a buffer that will be filled with incoming channel data.
781          *  Multiple buffers can be registered, in which case data will be received in the order the buffers were registered.
782          *  While there are still buffers that have not been filled, the receive callback will not be called.
783          *
784          *  @param channel      A handle for the channel.
785          *  @param data         A pointer to a buffer that will be filled with incoming data.
786          *                      After meshlink_channel_aio_receive() returns, the buffer may not be modified or freed by the application
787          *                      until the callback routine is called.
788          *  @param len          The length of the data.
789          *  @param cb           A pointer to the function which will be called when MeshLink has finished using the buffer.
790          *
791          *  @return             True if the buffer was enqueued, false otherwise.
792          */
793         bool channel_aio_receive(channel *channel, const void *data, size_t len, meshlink_aio_cb_t cb, void *priv) {
794                 return meshlink_channel_aio_receive(handle, channel, data, len, cb, priv);
795         }
796
797         /// Get the amount of bytes in the send buffer.
798         /** This returns the amount of bytes in the send buffer.
799          *  These bytes have not been received by the peer yet.
800          *
801          *  @param channel      A handle for the channel.
802          *
803          *  @return             The amount of un-ACKed bytes in the send buffer.
804          */
805         size_t channel_get_sendq(channel *channel) {
806                 return meshlink_channel_get_sendq(handle, channel);
807         }
808
809         /// Get the amount of bytes in the receive buffer.
810         /** This returns the amount of bytes in the receive buffer.
811          *  These bytes have not been processed by the application yet.
812          *
813          *  @param channel      A handle for the channel.
814          *
815          *  @return             The amount of bytes in the receive buffer.
816          */
817         size_t channel_get_recvq(channel *channel) {
818                 return meshlink_channel_get_recvq(handle, channel);
819         }
820
821         /// Enable or disable zeroconf discovery of local peers
822         /** This controls whether zeroconf discovery using the Catta library will be
823          *  enabled to search for peers on the local network. By default, it is enabled.
824          *
825          *  @param enable  Set to true to enable discovery, false to disable.
826          */
827         void enable_discovery(bool enable = true) {
828                 meshlink_enable_discovery(handle, enable);
829         }
830
831 private:
832         // non-copyable:
833         mesh(const mesh &) /* TODO: C++11: = delete */;
834         void operator=(const mesh &) /* TODO: C++11: = delete */;
835
836         /// static callback trampolines:
837         static void receive_trampoline(meshlink_handle_t *handle, meshlink_node_t *source, const void *data, size_t length) {
838                 if(!(handle->priv)) {
839                         return;
840                 }
841
842                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
843                 that->receive(static_cast<node *>(source), data, length);
844         }
845
846         static void node_status_trampoline(meshlink_handle_t *handle, meshlink_node_t *peer, bool reachable) {
847                 if(!(handle->priv)) {
848                         return;
849                 }
850
851                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
852                 that->node_status(static_cast<node *>(peer), reachable);
853         }
854
855         static void node_duplicate_trampoline(meshlink_handle_t *handle, meshlink_node_t *peer) {
856                 if(!(handle->priv)) {
857                         return;
858                 }
859
860                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
861                 that->node_duplicate(static_cast<node *>(peer));
862         }
863
864         static void log_trampoline(meshlink_handle_t *handle, log_level_t level, const char *message) {
865                 if(!(handle->priv)) {
866                         return;
867                 }
868
869                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
870                 that->log(level, message);
871         }
872
873         static void connection_try_trampoline(meshlink_handle_t *handle, meshlink_node_t *peer) {
874                 if(!(handle->priv)) {
875                         return;
876                 }
877
878                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
879                 that->connection_try(static_cast<node *>(peer));
880         }
881
882         static bool channel_accept_trampoline(meshlink_handle_t *handle, meshlink_channel *channel, uint16_t port, const void *data, size_t len) {
883                 if(!(handle->priv)) {
884                         return false;
885                 }
886
887                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
888                 bool accepted = that->channel_accept(static_cast<meshlink::channel *>(channel), port, data, len);
889
890                 if(accepted) {
891                         meshlink_set_channel_receive_cb(handle, channel, &channel_receive_trampoline);
892                         meshlink_set_channel_poll_cb(handle, channel, &channel_poll_trampoline);
893                 }
894
895                 return accepted;
896         }
897
898         static void channel_receive_trampoline(meshlink_handle_t *handle, meshlink_channel *channel, const void *data, size_t len) {
899                 if(!(handle->priv)) {
900                         return;
901                 }
902
903                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
904                 that->channel_receive(static_cast<meshlink::channel *>(channel), data, len);
905         }
906
907         static void channel_poll_trampoline(meshlink_handle_t *handle, meshlink_channel *channel, size_t len) {
908                 if(!(handle->priv)) {
909                         return;
910                 }
911
912                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
913                 that->channel_poll(static_cast<meshlink::channel *>(channel), len);
914         }
915
916         meshlink_handle_t *handle;
917 };
918
919 static inline const char *strerror(errno_t err = meshlink_errno) {
920         return meshlink_strerror(err);
921 }
922
923 /// Destroy a MeshLink instance.
924 /** This function remove all configuration files of a MeshLink instance. It should only be called when the application
925  *  does not have an open handle to this instance. Afterwards, a call to meshlink_open() will create a completely
926  *  new instance.
927  *
928  *  @param confbase The directory in which MeshLink stores its configuration files.
929  *                  After the function returns, the application is free to overwrite or free @a confbase @a.
930  *
931  *  @return         This function will return true if the MeshLink instance was successfully destroyed, false otherwise.
932  */
933 static inline bool destroy(const char *confbase) {
934         return meshlink_destroy(confbase);
935 }
936 }
937
938 #endif