]> git.meshlink.io Git - meshlink-tiny/blob - src/meshlink-tiny++.h
Remove support for automatically detecting external addresses.
[meshlink-tiny] / src / meshlink-tiny++.h
1 #ifndef MESHLINKPP_H
2 #define MESHLINKPP_H
3
4 /*
5     meshlink-tiny++.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-tiny.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 node path MTU changes.
61 /** @param mesh       A handle which represents an instance of MeshLink.
62  *  @param node       A pointer to a meshlink_node_t describing the node whose status changed.
63  *                    This pointer is valid until meshlink_close() is called.
64  *  @param pmtu       The current path MTU to the node, or 0 if UDP communication is not (yet) possible.
65  */
66 typedef void (*node_pmtu_cb_t)(mesh *mesh, node *node, uint16_t pmtu);
67
68 /// A callback reporting duplicate node detection.
69 /** @param mesh       A handle which represents an instance of MeshLink.
70  *  @param node       A pointer to a meshlink_node_t describing the node which is duplicate.
71  *                    This pointer is valid until meshlink_close() is called.
72  */
73 typedef void (*duplicate_cb_t)(mesh *mesh, node *node);
74
75 /// A callback for receiving log messages generated by MeshLink.
76 /** @param mesh      A handle which represents an instance of MeshLink.
77  *  @param level     An enum describing the severity level of the message.
78  *  @param text      A pointer to a string containing the textual log message.
79  */
80 typedef void (*log_cb_t)(mesh *mesh, log_level_t level, const char *text);
81
82 /// A callback for listening for incoming channels.
83 /** @param mesh         A handle which represents an instance of MeshLink.
84  *  @param node         A handle for the node that wants to open a channel.
85  *  @param port         The port number the peer wishes to connect to.
86  *
87  *  @return             This function should return true if the application listens for the incoming channel, false otherwise.
88  */
89 typedef bool (*meshlink_channel_listen_cb_t)(struct meshlink_handle *mesh, struct meshlink_node *node, uint16_t port);
90
91 /// A callback for accepting incoming channels.
92 /** @param mesh         A handle which represents an instance of MeshLink.
93  *  @param channel      A handle for the incoming channel.
94  *  @param port         The port number the peer wishes to connect to.
95  *  @param data         A pointer to a buffer containing data already received. (Not yet used.)
96  *  @param len          The length of the data. (Not yet used.)
97  *
98  *  @return             This function should return true if the application accepts the incoming channel, false otherwise.
99  *                      If returning false, the channel is invalid and may not be used anymore.
100  */
101 typedef bool (*channel_accept_cb_t)(mesh *mesh, channel *channel, uint16_t port, const void *data, size_t len);
102
103 /// A callback for receiving data from a channel.
104 /** @param mesh         A handle which represents an instance of MeshLink.
105  *  @param channel      A handle for the channel.
106  *  @param data         A pointer to a buffer containing data sent by the source.
107  *  @param len          The length of the data.
108  */
109 typedef void (*channel_receive_cb_t)(mesh *mesh, channel *channel, const void *data, size_t len);
110
111 /// A callback that is called when data can be send on a channel.
112 /** @param mesh         A handle which represents an instance of MeshLink.
113  *  @param channel      A handle for the channel.
114  *  @param len          The maximum length of data that is guaranteed to be accepted by a call to channel_send().
115  */
116 typedef void (*channel_poll_cb_t)(mesh *mesh, channel *channel, size_t len);
117
118 /// A callback for cleaning up buffers submitted for asynchronous I/O.
119 /** This callbacks signals that MeshLink has finished using this buffer.
120  *  The ownership of the buffer is now back into the application's hands.
121  *
122  *  @param mesh      A handle which represents an instance of MeshLink.
123  *  @param channel   A handle for the channel which used this buffer.
124  *  @param data      A pointer to a buffer containing the enqueued data.
125  *  @param len       The length of the buffer.
126  *  @param priv      A private pointer which was set by the application when submitting the buffer.
127  */
128 typedef void (*aio_cb_t)(mesh *mesh, channel *channel, const void *data, size_t len, void *priv);
129
130 /// A callback for asynchronous I/O to and from filedescriptors.
131 /** This callbacks signals that MeshLink has finished using this filedescriptor.
132  *
133  *  @param mesh      A handle which represents an instance of MeshLink.
134  *  @param channel   A handle for the channel which used this filedescriptor.
135  *  @param fd        The filedescriptor that was used.
136  *  @param len       The length of the data that was successfully sent or received.
137  *  @param priv      A private pointer which was set by the application when submitting the buffer.
138  */
139 typedef void (*aio_fd_cb_t)(mesh *mesh, channel *channel, int fd, size_t len, void *priv);
140
141 /// A class describing a MeshLink node.
142 class node: public meshlink_node_t {
143 };
144
145 /// A class describing a MeshLink Sub-Mesh.
146 class submesh: public meshlink_submesh_t {
147 };
148
149 /// A class describing a MeshLink channel.
150 class channel: public meshlink_channel_t {
151 public:
152         static const uint32_t RELIABLE = MESHLINK_CHANNEL_RELIABLE;
153         static const uint32_t ORDERED = MESHLINK_CHANNEL_ORDERED;
154         static const uint32_t FRAMED = MESHLINK_CHANNEL_FRAMED;
155         static const uint32_t DROP_LATE = MESHLINK_CHANNEL_DROP_LATE;
156         static const uint32_t NO_PARTIAL = MESHLINK_CHANNEL_NO_PARTIAL;
157         static const uint32_t TCP = MESHLINK_CHANNEL_TCP;
158         static const uint32_t UDP = MESHLINK_CHANNEL_UDP;
159 };
160
161 /// A class describing a MeshLink mesh.
162 class mesh {
163 public:
164         mesh() : handle(0) {}
165
166         virtual ~mesh() {
167                 this->close();
168         }
169
170         bool isOpen() const {
171                 return (handle != 0);
172         }
173
174 // TODO: please enable C++11 in autoconf to enable "move constructors":
175 //              mesh(mesh&& other)
176 //              : handle(other.handle)
177 //              {
178 //                      if(handle)
179 //                              handle->priv = this;
180 //                      other.handle = 0;
181 //              }
182
183         /// Initialize MeshLink's configuration directory.
184         /** This function causes MeshLink to initialize its configuration directory,
185          *  if it hasn't already been initialized.
186          *  It only has to be run the first time the application starts,
187          *  but it is not a problem if it is run more than once, as long as
188          *  the arguments given are the same.
189          *
190          *  This function does not start any network I/O yet. The application should
191          *  first set callbacks, and then call meshlink_start().
192          *
193          *  @param confbase The directory in which MeshLink will store its configuration files.
194          *  @param name     The name which this instance of the application will use in the mesh.
195          *  @param appname  The application name which will be used in the mesh.
196          *  @param devclass The device class which will be used in the mesh.
197          *
198          *  @return         This function will return a pointer to a meshlink::mesh if MeshLink has successfully set up its configuration files, NULL otherwise.
199          */
200         bool open(const char *confbase, const char *name, const char *appname, dev_class_t devclass) {
201                 handle = meshlink_open(confbase, name, appname, devclass);
202
203                 if(handle) {
204                         handle->priv = this;
205                 }
206
207                 return isOpen();
208         }
209
210         mesh(const char *confbase, const char *name, const char *appname, dev_class_t devclass) {
211                 open(confbase, name, appname, devclass);
212         }
213
214         /// Close the MeshLink handle.
215         /** This function calls meshlink_stop() if necessary,
216          *  and frees all memory allocated by MeshLink.
217          *  Afterwards, the handle and any pointers to a struct meshlink_node are invalid.
218          */
219         void close() {
220                 if(handle) {
221                         handle->priv = 0;
222                         meshlink_close(handle);
223                 }
224
225                 handle = 0;
226         }
227
228         /** instead of registerin callbacks you derive your own class and overwrite the following abstract member functions.
229          *  These functions are run in MeshLink's own thread.
230          *  It is therefore important that these functions use apprioriate methods (queues, pipes, locking, etc.)
231          *  to hand the data over to the application's thread.
232          *  These functions should also not block itself and return as quickly as possible.
233          * The default member functions are no-ops, so you are not required to overwrite all these member functions
234          */
235
236         /// This function is called whenever another node sends data to the local node.
237         virtual void receive(node *source, const void *data, size_t length) {
238                 /* do nothing */
239                 (void)source;
240                 (void)data;
241                 (void) length;
242         }
243
244         /// This functions is called whenever another node's status changed.
245         virtual void node_status(node *peer, bool reachable) {
246                 /* do nothing */
247                 (void)peer;
248                 (void)reachable;
249         }
250
251         /// This functions is called whenever another node's path MTU changes.
252         virtual void node_pmtu(node *peer, uint16_t pmtu) {
253                 /* do nothing */
254                 (void)peer;
255                 (void)pmtu;
256         }
257
258         /// This functions is called whenever a duplicate node is detected.
259         virtual void node_duplicate(node *peer) {
260                 /* do nothing */
261                 (void)peer;
262         }
263
264         /// This functions is called whenever MeshLink has some information to log.
265         virtual void log(log_level_t level, const char *message) {
266                 /* do nothing */
267                 (void)level;
268                 (void)message;
269         }
270
271         /// This functions is called whenever MeshLink has encountered a serious error.
272         virtual void error(meshlink_errno_t meshlink_errno) {
273                 /* do nothing */
274                 (void)meshlink_errno;
275         }
276
277         /// This functions is called whenever MeshLink a meta-connection attempt is made.
278         virtual void connection_try(node *peer) {
279                 /* do nothing */
280                 (void)peer;
281         }
282
283         /// This functions is called to determine if we are listening for incoming channels.
284         /**
285          *  The function is run in MeshLink's own thread.
286          *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
287          *  to pass data to or from the application's thread.
288          *  The callback should also not block itself and return as quickly as possible.
289          *
290          *  @param node         A handle for the node that wants to open a channel.
291          *  @param port         The port number the peer wishes to connect to.
292          *
293          *  @return             This function should return true if the application accepts the incoming channel, false otherwise.
294          */
295         virtual bool channel_listen(node *node, uint16_t port) {
296                 /* by default accept all channels */
297                 (void)node;
298                 (void)port;
299                 return true;
300         }
301
302         /// This functions is called whenever another node attempts to open a channel to the local node.
303         /**
304          *  If the channel is accepted, the poll_callback will be set to channel_poll and can be
305          *  changed using set_channel_poll_cb(). Likewise, the receive callback is set to
306          *  channel_receive().
307          *
308          *  The function is run in MeshLink's own thread.
309          *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
310          *  to pass data to or from the application's thread.
311          *  The callback should also not block itself and return as quickly as possible.
312          *
313          *  @param channel      A handle for the incoming channel.
314          *  @param port         The port number the peer wishes to connect to.
315          *  @param data         A pointer to a buffer containing data already received. (Not yet used.)
316          *  @param len          The length of the data. (Not yet used.)
317          *
318          *  @return             This function should return true if the application accepts the incoming channel, false otherwise.
319          *                      If returning false, the channel is invalid and may not be used anymore.
320          */
321         virtual bool channel_accept(channel *channel, uint16_t port, const void *data, size_t len) {
322                 /* by default reject all channels */
323                 (void)channel;
324                 (void)port;
325                 (void)data;
326                 (void)len;
327                 return false;
328         }
329
330         /// This function is called by Meshlink for receiving data from a channel.
331         /**
332          *  The function is run in MeshLink's own thread.
333          *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
334          *  to pass data to or from the application's thread.
335          *  The callback should also not block itself and return as quickly as possible.
336          *
337          *  @param channel      A handle for the channel.
338          *  @param data         A pointer to a buffer containing data sent by the source.
339          *  @param len          The length of the data.
340          */
341         virtual void channel_receive(channel *channel, const void *data, size_t len) {
342                 /* do nothing */
343                 (void)channel;
344                 (void)data;
345                 (void)len;
346         }
347
348         /// This function is called by Meshlink when data can be send on a channel.
349         /**
350          *  The function is run in MeshLink's own thread.
351          *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
352          *  to pass data to or from the application's thread.
353          *
354          *  The callback should also not block itself and return as quickly as possible.
355          *  @param channel      A handle for the channel.
356          *  @param len          The maximum length of data that is guaranteed to be accepted by a call to channel_send().
357          */
358         virtual void channel_poll(channel *channel, size_t len) {
359                 /* do nothing */
360                 (void)channel;
361                 (void)len;
362         }
363
364         /// Start MeshLink.
365         /** This function causes MeshLink to open network sockets, make outgoing connections, and
366          *  create a new thread, which will handle all network I/O.
367          *
368          *  @return         This function will return true if MeshLink has successfully started its thread, false otherwise.
369          */
370         bool start() {
371                 meshlink_set_receive_cb(handle, &receive_trampoline);
372                 meshlink_set_node_status_cb(handle, &node_status_trampoline);
373                 meshlink_set_node_pmtu_cb(handle, &node_pmtu_trampoline);
374                 meshlink_set_node_duplicate_cb(handle, &node_duplicate_trampoline);
375                 meshlink_set_log_cb(handle, MESHLINK_DEBUG, &log_trampoline);
376                 meshlink_set_error_cb(handle, &error_trampoline);
377                 meshlink_set_channel_listen_cb(handle, &channel_listen_trampoline);
378                 meshlink_set_channel_accept_cb(handle, &channel_accept_trampoline);
379                 meshlink_set_connection_try_cb(handle, &connection_try_trampoline);
380                 return meshlink_start(handle);
381         }
382
383         /// Stop MeshLink.
384         /** This function causes MeshLink to disconnect from all other nodes,
385          *  close all sockets, and shut down its own thread.
386          */
387         void stop() {
388                 meshlink_stop(handle);
389         }
390
391         /// Send data to another node.
392         /** This functions sends one packet of data to another node in the mesh.
393          *  The packet is sent using UDP semantics, which means that
394          *  the packet is sent as one unit and is received as one unit,
395          *  and that there is no guarantee that the packet will arrive at the destination.
396          *  The application should take care of getting an acknowledgement and retransmission if necessary.
397          *
398          *  @param destination  A pointer to a meshlink::node describing the destination for the data.
399          *  @param data         A pointer to a buffer containing the data to be sent to the source.
400          *  @param len          The length of the data.
401          *  @return             This function will return true if MeshLink has queued the message for transmission, and false otherwise.
402          *                      A return value of true does not guarantee that the message will actually arrive at the destination.
403          */
404         bool send(node *destination, const void *data, unsigned int len) {
405                 return meshlink_send(handle, destination, data, len);
406         }
407
408         /// Get a handle for a specific node.
409         /** This function returns a handle for the node with the given name.
410          *
411          *  @param name         The name of the node for which a handle is requested.
412          *
413          *  @return             A pointer to a meshlink::node which represents the requested node,
414          *                      or NULL if the requested node does not exist.
415          */
416         node *get_node(const char *name) {
417                 return (node *)meshlink_get_node(handle, name);
418         }
419
420         /// Get a node's reachability status.
421         /** This function returns the current reachability of a given node, and the times of the last state changes.
422          *  If a given state change never happened, the time returned will be 0.
423          *
424          *  @param node              A pointer to a meshlink::node describing the node.
425          *  @param last_reachable    A pointer to a time_t variable that will be filled in with the last time the node became reachable.
426          *  @param last_unreachable  A pointer to a time_t variable that will be filled in with the last time the node became unreachable.
427          *
428          *  @return                  This function returns true if the node is currently reachable, false otherwise.
429          */
430         bool get_node_reachability(node *node, time_t *last_reachable = NULL, time_t *last_unreachable = NULL) {
431                 return meshlink_get_node_reachability(handle, node, last_reachable, last_unreachable);
432         }
433
434         /// Get a handle for a specific submesh.
435         /** This function returns a handle for the submesh with the given name.
436          *
437          *  @param name         The name of the submesh for which a handle is requested.
438          *
439          *  @return             A pointer to a meshlink::submesh which represents the requested submesh,
440          *                      or NULL if the requested submesh does not exist.
441          */
442         submesh *get_submesh(const char *name) {
443                 return (submesh *)meshlink_get_submesh(handle, name);
444         }
445
446         /// Get a handle for our own node.
447         /** This function returns a handle for the local node.
448          *
449          *  @return             A pointer to a meshlink::node which represents the local node.
450          */
451         node *get_self() {
452                 return (node *)meshlink_get_self(handle);
453         }
454
455         /// Get a list of all nodes.
456         /** This function returns a list with handles for all known nodes.
457          *
458          *  @param nodes        A pointer to an array of pointers to meshlink::node, which should be allocated by the application.
459          *  @param nmemb        The maximum number of pointers that can be stored in the nodes array.
460          *
461          *  @return             The number of known nodes, or -1 in case of an error.
462          *                      This can be larger than nmemb, in which case not all nodes were stored in the nodes array.
463          */
464         node **get_all_nodes(node **nodes, size_t *nmemb) {
465                 return (node **)meshlink_get_all_nodes(handle, (meshlink_node_t **)nodes, nmemb);
466         }
467
468         /// Sign data using the local node's MeshLink key.
469         /** This function signs data using the local node's MeshLink key.
470          *  The generated signature can be securely verified by other nodes.
471          *
472          *  @param data         A pointer to a buffer containing the data to be signed.
473          *  @param len          The length of the data to be signed.
474          *  @param signature    A pointer to a buffer where the signature will be stored.
475          *  @param siglen       The size of the signature buffer. Will be changed after the call to match the size of the signature itself.
476          *
477          *  @return             This function returns true if the signature is valid, false otherwise.
478          */
479         bool sign(const void *data, size_t len, void *signature, size_t *siglen) {
480                 return meshlink_sign(handle, data, len, signature, siglen);
481         }
482
483         /// Verify the signature generated by another node of a piece of data.
484         /** This function verifies the signature that another node generated for a piece of data.
485          *
486          *  @param source       A pointer to a meshlink_node_t describing the source of the signature.
487          *  @param data         A pointer to a buffer containing the data to be verified.
488          *  @param len          The length of the data to be verified.
489          *  @param signature    A pointer to a string containing the signature.
490          *  @param siglen       The size of the signature.
491          *
492          *  @return             This function returns true if the signature is valid, false otherwise.
493          */
494         bool verify(node *source, const void *data, size_t len, const void *signature, size_t siglen) {
495                 return meshlink_verify(handle, source, data, len, signature, siglen);
496         }
497
498         /// Set the canonical Address for a node.
499         /** This function sets the canonical Address for a node.
500          *  This address is stored permanently until it is changed by another call to this function,
501          *  unlike other addresses associated with a node,
502          *  such as those added with meshlink_hint_address() or addresses discovered at runtime.
503          *
504          *  If a canonical Address is set for the local node,
505          *  it will be used for the hostname part of generated invitation URLs.
506          *
507          *  @param node         A pointer to a meshlink_node_t describing the node.
508          *  @param address      A nul-terminated C string containing the address, which can be either in numeric format or a hostname.
509          *  @param port         A nul-terminated C string containing the port, which can be either in numeric or symbolic format.
510          *                      If it is NULL, the listening port's number will be used.
511          *
512          *  @return             This function returns true if the address was added, false otherwise.
513          */
514         bool set_canonical_address(node *node, const char *address, const char *port = NULL) {
515                 return meshlink_set_canonical_address(handle, node, address, port);
516         }
517
518         /// Clear the canonical Address for a node.
519         /** This function clears the canonical Address for a node.
520          *
521          *  @param node         A pointer to a struct meshlink_node describing the node.
522          *
523          *  @return             This function returns true if the address was removed, false otherwise.
524          */
525         bool clear_canonical_address(node *node) {
526                 return meshlink_clear_canonical_address(handle, node);
527         }
528
529         /// Set the scheduling granularity of the application
530         /** This should be set to the effective scheduling granularity for the application.
531          *  This depends on the scheduling granularity of the operating system, the application's
532          *  process priority and whether it is running as realtime or not.
533          *  The default value is 10000 (10 milliseconds).
534          *
535          *  @param granularity  The scheduling granularity of the application in microseconds.
536          */
537         void set_granularity(long granularity) {
538                 meshlink_set_scheduling_granularity(handle, granularity);
539         }
540
541         /// Sets the storage policy used by MeshLink
542         /** This sets the policy MeshLink uses when it has new information about nodes.
543          *  By default, all udpates will be stored to disk (unless an ephemeral instance has been opened).
544          *  Setting the policy to MESHLINK_STORAGE_KEYS_ONLY, only updates that contain new keys for nodes
545          *  are stored.
546          *  By setting the policy to MESHLINK_STORAGE_DISABLED, no updates will be stored.
547          *
548          *  @param policy  The storage policy to use.
549          */
550         void set_storage_policy(meshlink_storage_policy_t policy) {
551                 meshlink_set_storage_policy(handle, policy);
552         }
553
554         /// Use an invitation to join a mesh.
555         /** This function allows the local node to join an existing mesh using an invitation URL generated by another node.
556          *  An invitation can only be used if the local node has never connected to other nodes before.
557          *  After a successfully accepted invitation, the name of the local node may have changed.
558          *
559          *  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.
560          *
561          *  This function is blocking. It can take several seconds before it returns.
562          *  There is no guarantee it will perform a successful join.
563          *  Failures might be caused by temporary network outages, or by the invitation having expired.
564          *
565          *  @param invitation   A string containing the invitation URL.
566          *
567          *  @return             This function returns true if the local node joined the mesh it was invited to, false otherwise.
568          */
569         bool join(const char *invitation) {
570                 return meshlink_join(handle, invitation);
571         }
572
573         /// Export the local node's key and addresses.
574         /** This function generates a string that contains the local node's public key and one or more IP addresses.
575          *  The application can pass it in some way to another node, which can then import it,
576          *  granting the local node access to the other node's mesh.
577          *
578          *  @return             This function returns a string that contains the exported key and addresses.
579          *                      The application should call free() after it has finished using this string.
580          */
581         char *export_key() {
582                 return meshlink_export(handle);
583         }
584
585         /// Import another node's key and addresses.
586         /** This function accepts a string containing the exported public key and addresses of another node.
587          *  By importing this data, the local node grants the other node access to its mesh.
588          *
589          *  @param data         A string containing the other node's exported key and addresses.
590          *
591          *  @return             This function returns true if the data was valid and the other node has been granted access to the mesh, false otherwise.
592          */
593         bool import_key(const char *data) {
594                 return meshlink_import(handle, data);
595         }
596
597         /// Forget any information about a node.
598         /** This function allows the local node to forget any information it has about a node,
599          *  and if possible will remove any data it has stored on disk about the node.
600          *
601          *  Any open channels to this node must be closed before calling this function.
602          *
603          *  After this call returns, the node handle is invalid and may no longer be used, regardless
604          *  of the return value of this call.
605          *
606          *  Note that this function does not prevent MeshLink from actually forgetting about a node,
607          *  or re-learning information about a node at a later point in time. It is merely a hint that
608          *  the application does not care about this node anymore and that any resources kept could be
609          *  cleaned up.
610          *
611          *  \memberof meshlink_node
612          *  @param node         A pointer to a struct meshlink_node describing the node to be forgotten.
613          *
614          *  @return             This function returns true if all currently known data about the node has been forgotten, false otherwise.
615          */
616         bool forget_node(node *node) {
617                 return meshlink_forget_node(handle, node);
618         }
619
620         /// Set the poll callback.
621         /** This functions sets the callback that is called whenever data can be sent to another node.
622          *  The callback is run in MeshLink's own thread.
623          *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
624          *  to pass data to or from the application's thread.
625          *  The callback should also not block itself and return as quickly as possible.
626          *
627          *  @param channel   A handle for the channel.
628          *  @param cb        A pointer to the function which will be called when data can be sent to another node.
629          *                   If a NULL pointer is given, the callback will be disabled.
630          */
631         void set_channel_poll_cb(channel *channel, channel_poll_cb_t cb) {
632                 meshlink_set_channel_poll_cb(handle, channel, (meshlink_channel_poll_cb_t)cb);
633         }
634
635         /// Set the send buffer size of a channel.
636         /** This function sets the desired size of the send buffer.
637          *  The default size is 128 kB.
638          *
639          *  @param channel   A handle for the channel.
640          *  @param size      The desired size for the send buffer.
641          *                   If a NULL pointer is given, the callback will be disabled.
642          */
643         void set_channel_sndbuf(channel *channel, size_t size) {
644                 meshlink_set_channel_sndbuf(handle, channel, size);
645         }
646
647         /// Set the receive buffer size of a channel.
648         /** This function sets the desired size of the receive buffer.
649          *  The default size is 128 kB.
650          *
651          *  @param channel   A handle for the channel.
652          *  @param size      The desired size for the send buffer.
653          *                   If a NULL pointer is given, the callback will be disabled.
654          */
655         void set_channel_rcvbuf(channel *channel, size_t size) {
656                 meshlink_set_channel_rcvbuf(handle, channel, size);
657         }
658
659         /// Set the flags of a channel.
660         /** This function allows changing some of the channel flags.
661          *  Currently only MESHLINK_CHANNEL_NO_PARTIAL and MESHLINK_CHANNEL_DROP_LATE are supported, other flags are ignored.
662          *  These flags only affect the local side of the channel with the peer.
663          *  The changes take effect immediately.
664          *
665          *  @param channel   A handle for the channel.
666          *  @param flags     A bitwise-or'd combination of flags that set the semantics for this channel.
667          */
668         void set_channel_flags(channel *channel, uint32_t flags) {
669                 meshlink_set_channel_flags(handle, channel, flags);
670         }
671
672         /// Set the send buffer storage of a channel.
673         /** This function provides MeshLink with a send buffer allocated by the application.
674         *
675         *  @param channel   A handle for the channel.
676         *  @param buf       A pointer to the start of the buffer.
677         *                   If a NULL pointer is given, MeshLink will use its own internal buffer again.
678         *  @param size      The size of the buffer.
679         */
680         void set_channel_sndbuf_storage(channel *channel, void *buf, size_t size) {
681                 meshlink_set_channel_sndbuf_storage(handle, channel, buf, size);
682         }
683
684         /// Set the receive buffer storage of a channel.
685         /** This function provides MeshLink with a receive buffer allocated by the application.
686         *
687         *  @param channel   A handle for the channel.
688         *  @param buf       A pointer to the start of the buffer.
689         *                   If a NULL pointer is given, MeshLink will use its own internal buffer again.
690         *  @param size      The size of the buffer.
691         */
692         void set_channel_rcvbuf_storage(channel *channel, void *buf, size_t size) {
693                 meshlink_set_channel_rcvbuf_storage(handle, channel, buf, size);
694         }
695
696         /// Set the connection timeout used for channels to the given node.
697         /** This sets the timeout after which unresponsive channels will be reported as closed.
698          *  The timeout is set for all current and future channels to the given node.
699          *
700          *  @param node         The node to set the channel timeout for.
701          *  @param timeout      The timeout in seconds after which unresponsive channels will be reported as closed.
702          *                      The default is 60 seconds.
703          */
704         void set_node_channel_timeout(node *node, int timeout) {
705                 meshlink_set_node_channel_timeout(handle, node, timeout);
706         }
707
708         /// Open a reliable stream channel to another node.
709         /** This function is called whenever a remote node wants to open a channel to the local node.
710          *  The application then has to decide whether to accept or reject this channel.
711          *
712          *  This function sets the channel poll callback to channel_poll_trampoline, which in turn
713          *  calls channel_poll. To set a different, channel-specific poll callback, use set_channel_poll_cb.
714          *
715          *  @param node         The node to which this channel is being initiated.
716          *  @param port         The port number the peer wishes to connect to.
717          *  @param cb           A pointer to the function which will be called when the remote node sends data to the local node.
718          *  @param data         A pointer to a buffer containing data to already queue for sending.
719          *  @param len          The length of the data.
720          *                      If len is 0, the data pointer is copied into the channel's priv member.
721          *  @param flags        A bitwise-or'd combination of flags that set the semantics for this channel.
722          *
723          *  @return             A handle for the channel, or NULL in case of an error.
724          */
725         channel *channel_open(node *node, uint16_t port, channel_receive_cb_t cb, const void *data, size_t len, uint32_t flags = channel::TCP) {
726                 channel *ch = (channel *)meshlink_channel_open_ex(handle, node, port, (meshlink_channel_receive_cb_t)cb, data, len, flags);
727                 meshlink_set_channel_poll_cb(handle, ch, &channel_poll_trampoline);
728                 return ch;
729         }
730
731         /// Open a reliable stream channel to another node.
732         /** This function is called whenever a remote node wants to open a channel to the local node.
733          *  The application then has to decide whether to accept or reject this channel.
734          *
735          *  This function sets the channel receive callback to channel_receive_trampoline,
736          *  which in turn calls channel_receive.
737          *
738          *  This function sets the channel poll callback to channel_poll_trampoline, which in turn
739          *  calls channel_poll. To set a different, channel-specific poll callback, use set_channel_poll_cb.
740          *
741          *  @param node         The node to which this channel is being initiated.
742          *  @param port         The port number the peer wishes to connect to.
743          *  @param data         A pointer to a buffer containing data to already queue for sending.
744          *  @param len          The length of the data.
745          *                      If len is 0, the data pointer is copied into the channel's priv member.
746          *  @param flags        A bitwise-or'd combination of flags that set the semantics for this channel.
747          *
748          *  @return             A handle for the channel, or NULL in case of an error.
749          */
750         channel *channel_open(node *node, uint16_t port, const void *data, size_t len, uint32_t flags = channel::TCP) {
751                 channel *ch = (channel *)meshlink_channel_open_ex(handle, node, port, &channel_receive_trampoline, data, len, flags);
752                 meshlink_set_channel_poll_cb(handle, ch, &channel_poll_trampoline);
753                 return ch;
754         }
755
756         /// Partially close a reliable stream channel.
757         /** This shuts down the read or write side of a channel, or both, without closing the handle.
758          *  It can be used to inform the remote node that the local node has finished sending all data on the channel,
759          *  but still allows waiting for incoming data from the remote node.
760          *
761          *  @param channel      A handle for the channel.
762          *  @param direction    Must be one of SHUT_RD, SHUT_WR or SHUT_RDWR.
763          */
764         void channel_shutdown(channel *channel, int direction) {
765                 return meshlink_channel_shutdown(handle, channel, direction);
766         }
767
768         /// Close a reliable stream channel.
769         /** This informs the remote node that the local node has finished sending all data on the channel.
770          *  It also causes the local node to stop accepting incoming data from the remote node.
771          *  Afterwards, the channel handle is invalid and must not be used any more.
772          *
773          *  It is allowed to call this function at any time on a valid handle, even inside callback functions.
774          *  If called with a valid handle, this function always succeeds, otherwise the result is undefined.
775          *
776          *  @param channel      A handle for the channel.
777          */
778         void channel_close(meshlink_channel_t *channel) {
779                 return meshlink_channel_close(handle, channel);
780         }
781
782         /// Abort a reliable stream channel.
783         /** This aborts a channel.
784          *  Data that was in the send and receive buffers is dropped, so potentially there is some data that
785          *  was sent on this channel that will not be received by the peer.
786          *  Afterwards, the channel handle is invalid and must not be used any more.
787          *
788          *  It is allowed to call this function at any time on a valid handle, even inside callback functions.
789          *  If called with a valid handle, this function always succeeds, otherwise the result is undefined.
790          *
791          *  @param channel      A handle for the channel.
792          */
793         void channel_abort(meshlink_channel_t *channel) {
794                 return meshlink_channel_abort(handle, channel);
795         }
796
797         /// Transmit data on a channel
798         /** This queues data to send to the remote node.
799          *
800          *  @param channel      A handle for the channel.
801          *  @param data         A pointer to a buffer containing data sent by the source.
802          *  @param len          The length of the data.
803          *
804          *  @return             The amount of data that was queued, which can be less than len, or a negative value in case of an error.
805          *                      If MESHLINK_CHANNEL_NO_PARTIAL is set, then the result will either be len,
806          *                      0 if the buffer is currently too full, or -1 if len is too big even for an empty buffer.
807          */
808         ssize_t channel_send(channel *channel, void *data, size_t len) {
809                 return meshlink_channel_send(handle, channel, data, len);
810         }
811
812         /// Transmit data on a channel asynchronously
813         /** This registers a buffer that will be used to send data to the remote node.
814          *  Multiple buffers can be registered, in which case data will be sent in the order the buffers were registered.
815          *  While there are still buffers with unsent data, the poll callback will not be called.
816          *
817          *  @param channel      A handle for the channel.
818          *  @param data         A pointer to a buffer containing data sent by the source, or NULL if there is no data to send.
819          *                      After meshlink_channel_aio_send() returns, the buffer may not be modified or freed by the application
820          *                      until the callback routine is called.
821          *  @param len          The length of the data, or 0 if there is no data to send.
822          *  @param cb           A pointer to the function which will be called when MeshLink has finished using the buffer.
823          *  @param priv         A private pointer which was set by the application when submitting the buffer.
824          *
825          *  @return             True if the buffer was enqueued, false otherwise.
826          */
827         bool channel_aio_send(channel *channel, const void *data, size_t len, meshlink_aio_cb_t cb, void *priv) {
828                 return meshlink_channel_aio_send(handle, channel, data, len, cb, priv);
829         }
830
831         /// Transmit data on a channel asynchronously from a filedescriptor
832         /** This will read up to the specified length number of bytes from the given filedescriptor, and send it over the channel.
833          *  The callback may be returned early if there is an error reading from the filedescriptor.
834          *  While there is still with unsent data, the poll callback will not be called.
835          *
836          *  @param channel      A handle for the channel.
837          *  @param fd           A file descriptor from which data will be read.
838          *  @param len          The length of the data, or 0 if there is no data to send.
839          *  @param cb           A pointer to the function which will be called when MeshLink has finished using the filedescriptor.
840          *  @param priv         A private pointer which was set by the application when submitting the buffer.
841          *
842          *  @return             True if the buffer was enqueued, false otherwise.
843          */
844         bool channel_aio_fd_send(channel *channel, int fd, size_t len, meshlink_aio_fd_cb_t cb, void *priv) {
845                 return meshlink_channel_aio_fd_send(handle, channel, fd, len, cb, priv);
846         }
847
848         /// Receive data on a channel asynchronously
849         /** This registers a buffer that will be filled with incoming channel data.
850          *  Multiple buffers can be registered, in which case data will be received in the order the buffers were registered.
851          *  While there are still buffers that have not been filled, the receive callback will not be called.
852          *
853          *  @param channel      A handle for the channel.
854          *  @param data         A pointer to a buffer that will be filled with incoming data.
855          *                      After meshlink_channel_aio_receive() returns, the buffer may not be modified or freed by the application
856          *                      until the callback routine is called.
857          *  @param len          The length of the data.
858          *  @param cb           A pointer to the function which will be called when MeshLink has finished using the buffer.
859          *  @param priv         A private pointer which was set by the application when submitting the buffer.
860          *
861          *  @return             True if the buffer was enqueued, false otherwise.
862          */
863         bool channel_aio_receive(channel *channel, const void *data, size_t len, meshlink_aio_cb_t cb, void *priv) {
864                 return meshlink_channel_aio_receive(handle, channel, data, len, cb, priv);
865         }
866
867         /// Receive data on a channel asynchronously and send it to a filedescriptor
868         /** This will read up to the specified length number of bytes from the channel, and send it to the filedescriptor.
869          *  The callback may be returned early if there is an error writing to the filedescriptor.
870          *  While there is still unread data, the receive callback will not be called.
871          *
872          *  @param channel      A handle for the channel.
873          *  @param fd           A file descriptor to which data will be written.
874          *  @param len          The length of the data.
875          *  @param cb           A pointer to the function which will be called when MeshLink has finished using the filedescriptor.
876          *  @param priv         A private pointer which was set by the application when submitting the buffer.
877          *
878          *  @return             True if the buffer was enqueued, false otherwise.
879          */
880         bool channel_aio_fd_receive(channel *channel, int fd, size_t len, meshlink_aio_fd_cb_t cb, void *priv) {
881                 return meshlink_channel_aio_fd_receive(handle, channel, fd, len, cb, priv);
882         }
883
884         /// Get the amount of bytes in the send buffer.
885         /** This returns the amount of bytes in the send buffer.
886          *  These bytes have not been received by the peer yet.
887          *
888          *  @param channel      A handle for the channel.
889          *
890          *  @return             The amount of un-ACKed bytes in the send buffer.
891          */
892         size_t channel_get_sendq(channel *channel) {
893                 return meshlink_channel_get_sendq(handle, channel);
894         }
895
896         /// Get the amount of bytes in the receive buffer.
897         /** This returns the amount of bytes in the receive buffer.
898          *  These bytes have not been processed by the application yet.
899          *
900          *  @param channel      A handle for the channel.
901          *
902          *  @return             The amount of bytes in the receive buffer.
903          */
904         size_t channel_get_recvq(channel *channel) {
905                 return meshlink_channel_get_recvq(handle, channel);
906         }
907
908         /// Get the maximum segment size of a channel.
909         /** This returns the amount of bytes that can be sent at once for channels with UDP semantics.
910          *
911          *  @param channel      A handle for the channel.
912          *
913          *  @return             The amount of bytes in the receive buffer.
914          */
915         size_t channel_get_mss(channel *channel) {
916                 return meshlink_channel_get_mss(handle, channel);
917         };
918
919         /// Inform MeshLink that the local network configuration might have changed
920         /** This is intended to be used when there is no way for MeshLink to get notifications of local network changes.
921          *  It forces MeshLink to scan all network interfaces for changes in up/down status and new/removed addresses,
922          *  and will immediately check if all connections to other nodes are still alive.
923          */
924         void hint_network_change() {
925                 meshlink_hint_network_change(handle);
926         }
927
928         /// Set device class timeouts
929         /** This sets the ping interval and timeout for a given device class.
930          *
931          *  @param devclass      The device class to update
932          *  @param pinginterval  The interval between keepalive packets, in seconds. The default is 60.
933          *  @param pingtimeout   The required time within which a peer should respond, in seconds. The default is 5.
934          *                       The timeout must be smaller than the interval.
935          */
936         void set_dev_class_timeouts(dev_class_t devclass, int pinginterval, int pingtimeout) {
937                 meshlink_set_dev_class_timeouts(handle, devclass, pinginterval, pingtimeout);
938         }
939
940         /// Set device class fast retry period
941         /** This sets the fast retry period for a given device class.
942          *  During this period after the last time the mesh becomes unreachable, connections are tried once a second.
943          *
944          *  @param devclass           The device class to update
945          *  @param fast_retry_period  The period during which fast connection retries are done. The default is 0.
946          */
947         void set_dev_class_fast_retry_period(dev_class_t devclass, int fast_retry_period) {
948                 meshlink_set_dev_class_fast_retry_period(handle, devclass, fast_retry_period);
949         }
950
951         /// Set device class maximum timeout
952         /** This sets the maximum timeout for outgoing connection retries for a given device class.
953          *
954          *  @param devclass      The device class to update
955          *  @param maxtimeout    The maximum timeout between reconnection attempts, in seconds. The default is 900.
956          */
957         void set_dev_class_maxtimeout(dev_class_t devclass, int maxtimeout) {
958                 meshlink_set_dev_class_maxtimeout(handle, devclass, maxtimeout);
959         }
960
961         /// Set which order invitations are committed
962         /** This determines in which order configuration files are written to disk during an invitation.
963          *  By default, the invitee saves the configuration to disk first, then the inviter.
964          *  By calling this function with @a inviter_commits_first set to true, the order is reversed.
965          *
966          *  @param inviter_commits_first  If true, then the node that invited a peer will commit data to disk first.
967          */
968         void set_inviter_commits_first(bool inviter_commits_first) {
969                 meshlink_set_inviter_commits_first(handle, inviter_commits_first);
970         }
971
972 private:
973         // non-copyable:
974         mesh(const mesh &) /* TODO: C++11: = delete */;
975         void operator=(const mesh &) /* TODO: C++11: = delete */;
976
977         /// static callback trampolines:
978         static void receive_trampoline(meshlink_handle_t *handle, meshlink_node_t *source, const void *data, size_t length) {
979                 if(!(handle->priv)) {
980                         return;
981                 }
982
983                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
984                 that->receive(static_cast<node *>(source), data, length);
985         }
986
987         static void node_status_trampoline(meshlink_handle_t *handle, meshlink_node_t *peer, bool reachable) {
988                 if(!(handle->priv)) {
989                         return;
990                 }
991
992                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
993                 that->node_status(static_cast<node *>(peer), reachable);
994         }
995
996         static void node_pmtu_trampoline(meshlink_handle_t *handle, meshlink_node_t *peer, uint16_t pmtu) {
997                 if(!(handle->priv)) {
998                         return;
999                 }
1000
1001                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
1002                 that->node_pmtu(static_cast<node *>(peer), pmtu);
1003         }
1004
1005         static void node_duplicate_trampoline(meshlink_handle_t *handle, meshlink_node_t *peer) {
1006                 if(!(handle->priv)) {
1007                         return;
1008                 }
1009
1010                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
1011                 that->node_duplicate(static_cast<node *>(peer));
1012         }
1013
1014         static void log_trampoline(meshlink_handle_t *handle, log_level_t level, const char *message) {
1015                 if(!(handle->priv)) {
1016                         return;
1017                 }
1018
1019                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
1020                 that->log(level, message);
1021         }
1022
1023         static void error_trampoline(meshlink_handle_t *handle, meshlink_errno_t meshlink_errno) {
1024                 if(!(handle->priv)) {
1025                         return;
1026                 }
1027
1028                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
1029                 that->error(meshlink_errno);
1030         }
1031
1032         static void connection_try_trampoline(meshlink_handle_t *handle, meshlink_node_t *peer) {
1033                 if(!(handle->priv)) {
1034                         return;
1035                 }
1036
1037                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
1038                 that->connection_try(static_cast<node *>(peer));
1039         }
1040
1041         static bool channel_listen_trampoline(meshlink_handle_t *handle, meshlink_node_t *node, uint16_t port) {
1042                 if(!(handle->priv)) {
1043                         return false;
1044                 }
1045
1046                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
1047                 return that->channel_listen(static_cast<meshlink::node *>(node), port);
1048         }
1049
1050         static bool channel_accept_trampoline(meshlink_handle_t *handle, meshlink_channel *channel, uint16_t port, const void *data, size_t len) {
1051                 if(!(handle->priv)) {
1052                         return false;
1053                 }
1054
1055                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
1056                 bool accepted = that->channel_accept(static_cast<meshlink::channel *>(channel), port, data, len);
1057
1058                 if(accepted) {
1059                         meshlink_set_channel_receive_cb(handle, channel, &channel_receive_trampoline);
1060                         meshlink_set_channel_poll_cb(handle, channel, &channel_poll_trampoline);
1061                 }
1062
1063                 return accepted;
1064         }
1065
1066         static void channel_receive_trampoline(meshlink_handle_t *handle, meshlink_channel *channel, const void *data, size_t len) {
1067                 if(!(handle->priv)) {
1068                         return;
1069                 }
1070
1071                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
1072                 that->channel_receive(static_cast<meshlink::channel *>(channel), data, len);
1073         }
1074
1075         static void channel_poll_trampoline(meshlink_handle_t *handle, meshlink_channel *channel, size_t len) {
1076                 if(!(handle->priv)) {
1077                         return;
1078                 }
1079
1080                 meshlink::mesh *that = static_cast<mesh *>(handle->priv);
1081                 that->channel_poll(static_cast<meshlink::channel *>(channel), len);
1082         }
1083
1084         meshlink_handle_t *handle;
1085 };
1086
1087 static inline const char *strerror(errno_t err = meshlink_errno) {
1088         return meshlink_strerror(err);
1089 }
1090
1091 /// Destroy a MeshLink instance.
1092 /** This function remove all configuration files of a MeshLink instance. It should only be called when the application
1093  *  does not have an open handle to this instance. Afterwards, a call to meshlink_open() will create a completely
1094  *  new instance.
1095  *
1096  *  @param confbase The directory in which MeshLink stores its configuration files.
1097  *                  After the function returns, the application is free to overwrite or free @a confbase @a.
1098  *
1099  *  @return         This function will return true if the MeshLink instance was successfully destroyed, false otherwise.
1100  */
1101 static inline bool destroy(const char *confbase) {
1102         return meshlink_destroy(confbase);
1103 }
1104 }
1105
1106 #endif