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