RadioHead
|
RHRouter subclass for sending addressed, optionally acknowledged datagrams multi-hop routed across a network, with automatic route discovery. More...
#include <RHMesh.h>
Classes | |
struct | MeshApplicationMessage |
Signals an application layer message for the caller of RHMesh. More... | |
struct | MeshMessageHeader |
Structure of the basic RHMesh header. More... | |
struct | MeshRouteDiscoveryMessage |
Signals a route discovery request or reply (At present only supports physical dest addresses of length 1 octet) More... | |
struct | MeshRouteFailureMessage |
Signals a route failure. More... | |
Public Member Functions | |
RHMesh (RHGenericDriver &driver, uint8_t thisAddress=0) | |
uint8_t | sendtoWait (uint8_t *buf, uint8_t len, uint8_t dest, uint8_t flags=0) |
bool | recvfromAck (uint8_t *buf, uint8_t *len, uint8_t *source=NULL, uint8_t *dest=NULL, uint8_t *id=NULL, uint8_t *flags=NULL, uint8_t *hops=NULL) |
bool | recvfromAckTimeout (uint8_t *buf, uint8_t *len, uint16_t timeout, uint8_t *source=NULL, uint8_t *dest=NULL, uint8_t *id=NULL, uint8_t *flags=NULL, uint8_t *hops=NULL) |
Public Member Functions inherited from RHRouter | |
RHRouter (RHGenericDriver &driver, uint8_t thisAddress=0) | |
bool | init () |
void | setIsaRouter (bool isa_router) |
void | setMaxHops (uint8_t max_hops) |
void | addRouteTo (uint8_t dest, uint8_t next_hop, uint8_t state=Valid) |
RoutingTableEntry * | getRouteTo (uint8_t dest) |
bool | deleteRouteTo (uint8_t dest) |
void | retireOldestRoute () |
void | clearRoutingTable () |
void | printRoutingTable () |
bool | getNextValidRoutingTableEntry (RoutingTableEntry *RTE_p, int *lastIndex_p) |
uint8_t | sendtoWait (uint8_t *buf, uint8_t len, uint8_t dest, uint8_t flags=0) |
uint8_t | sendtoFromSourceWait (uint8_t *buf, uint8_t len, uint8_t dest, uint8_t source, uint8_t flags=0) |
bool | recvfromAck (uint8_t *buf, uint8_t *len, uint8_t *source=NULL, uint8_t *dest=NULL, uint8_t *id=NULL, uint8_t *flags=NULL, uint8_t *hops=NULL) |
bool | recvfromAckTimeout (uint8_t *buf, uint8_t *len, uint16_t timeout, uint8_t *source=NULL, uint8_t *dest=NULL, uint8_t *id=NULL, uint8_t *flags=NULL, uint8_t *hops=NULL) |
Public Member Functions inherited from RHReliableDatagram | |
RHReliableDatagram (RHGenericDriver &driver, uint8_t thisAddress=0) | |
void | setTimeout (uint16_t timeout) |
void | setRetries (uint8_t retries) |
uint8_t | retries () |
bool | sendtoWait (uint8_t *buf, uint8_t len, uint8_t address) |
bool | recvfromAck (uint8_t *buf, uint8_t *len, uint8_t *from=NULL, uint8_t *to=NULL, uint8_t *id=NULL, uint8_t *flags=NULL) |
bool | recvfromAckTimeout (uint8_t *buf, uint8_t *len, uint16_t timeout, uint8_t *from=NULL, uint8_t *to=NULL, uint8_t *id=NULL, uint8_t *flags=NULL) |
uint32_t | retransmissions () |
void | resetRetransmissions () |
Public Member Functions inherited from RHDatagram | |
RHDatagram (RHGenericDriver &driver, uint8_t thisAddress=0) | |
bool | init () |
void | setThisAddress (uint8_t thisAddress) |
bool | sendto (uint8_t *buf, uint8_t len, uint8_t address) |
bool | recvfrom (uint8_t *buf, uint8_t *len, uint8_t *from=NULL, uint8_t *to=NULL, uint8_t *id=NULL, uint8_t *flags=NULL) |
bool | available () |
void | waitAvailable (uint16_t polldelay=0) |
bool | waitPacketSent () |
bool | waitPacketSent (uint16_t timeout) |
bool | waitAvailableTimeout (uint16_t timeout, uint16_t polldelay=0) |
void | setHeaderTo (uint8_t to) |
void | setHeaderFrom (uint8_t from) |
void | setHeaderId (uint8_t id) |
void | setHeaderFlags (uint8_t set, uint8_t clear=RH_FLAGS_NONE) |
uint8_t | headerTo () |
uint8_t | headerFrom () |
uint8_t | headerId () |
uint8_t | headerFlags () |
uint8_t | thisAddress () |
Protected Member Functions | |
virtual void | peekAtMessage (RoutedMessage *message, uint8_t messageLen) |
virtual uint8_t | route (RoutedMessage *message, uint8_t messageLen) |
virtual bool | doArp (uint8_t address) |
virtual bool | isPhysicalAddress (uint8_t *address, uint8_t addresslen) |
Protected Member Functions inherited from RHRouter | |
void | deleteRoute (uint8_t index) |
Protected Member Functions inherited from RHReliableDatagram | |
void | acknowledge (uint8_t id, uint8_t from) |
bool | haveNewMessage () |
Additional Inherited Members | |
Public Types inherited from RHRouter | |
enum | RouteState { Invalid = 0 , Discovering , Valid } |
Values for the possible states for routes. More... | |
Protected Attributes inherited from RHRouter | |
uint8_t | _lastE2ESequenceNumber |
uint8_t | _max_hops |
bool | _isa_router |
Flag to set if packets are forwarded or not. | |
Protected Attributes inherited from RHDatagram | |
RHGenericDriver & | _driver |
The Driver we are to use. | |
uint8_t | _thisAddress |
The address of this node. | |
RHRouter subclass for sending addressed, optionally acknowledged datagrams multi-hop routed across a network, with automatic route discovery.
Manager class that extends RHRouter to add automatic route discovery within a mesh of adjacent nodes, and route signalling.
Unlike RHRouter, RHMesh can be used in networks where the network topology is fluid, or unknown, or if nodes can mode around or go in or out of service. When a node wants to send a message to another node, it will automatically discover a route to the destination node and use it. If the route becomes unavailable, a new route will be discovered.
When a RHMesh mesh node is initialised, it doe not know any routes to any other nodes (see RHRouter for details on route and the routing table). When you attempt to send a message with sendtoWait, will first check to see if there is a route to the destinastion node in the routing tabl;e. If not, it wil initialite 'Route Discovery'. When a node needs to discover a route to another node, it broadcasts MeshRouteDiscoveryMessage with a message type of RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_REQUEST. Any node that receives such a request checks to see if it is a request for a route to itself (in which case it makes a unicast reply to the originating node with a MeshRouteDiscoveryMessage with a message type of RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_RESPONSE) otherwise it rebroadcasts the request, after adding itself to the list of nodes visited so far by the request.
If a node receives a RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_REQUEST that already has itself listed in the visited nodes, it knows it has already seen and rebroadcast this request, and threfore ignores it. This prevents broadcast storms. When a node receives a RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_REQUEST it can use the list of nodes aready visited to deduce routes back towards the originating (requesting node). This also means that when the destination node of the request is reached, it (and all the previous nodes the request visited) will have a route back to the originating node. This means the unicast RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_RESPONSE reply will be routed successfully back to the original route requester.
The RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_RESPONSE sent back by the destination node contains the full list of nodes that were visited on the way to the destination. Therefore, intermediate nodes that route the reply back towards the originating node can use the node list in the reply to deduce routes to all the nodes between it and the destination node.
Therefore, RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_REQUEST and RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_RESPONSE together ensure the original requester and all the intermediate nodes know how to route to the source and destination nodes and every node along the path.
Note that there is a race condition here that can effect routing on multipath routes. For example, if the route to the destination can traverse several paths, last reply from the destination will be the one used.
RHRouter (and therefore RHMesh) use reliable hop-to-hop delivery of messages using hop-to-hop acknowledgements, but not end-to-end acknowledgements. When sendtoWait() returns, you know that the message has been delivered to the next hop, but not if it is (or even if it can be) delivered to the destination node. If during the course of hop-to-hop routing of a message, one of the intermediate RHMesh nodes finds it cannot deliver to the next hop (say due to a lost route or no acknwledgement from the next hop), it replies to the originator with a unicast MeshRouteFailureMessage RH_MESH_MESSAGE_TYPE_ROUTE_FAILURE message. Intermediate nodes (on the way beack to the originator) and the originating node use this message to delete the route to the destination node of the original message. This means that if a route to a destination becomes unusable (either because an intermediate node is off the air, or has moved out of range) a new route will be established the next time a message is to be sent.
RHMesh uses a number of message formats layered on top of RHRouter:
Part of the Arduino RH library for operating with HopeRF RH compatible transceivers (see http://www.hoperf.com)
RHMesh programs require significant amount of SRAM, often approaching 2kbytes, which is beyond or at the limits of some Arduinos and other processors. Programs with additional software besides basic RHMesh programs may well require even more. If you have insufficient SRAM for your program, it may result in failure to run, or wierd crashes and other hard to trace behaviour. In this event you should consider a processor with more SRAM, such as the MotienoMEGA with 16k (https://lowpowerlab.com/shop/moteinomega) or others.
RHMesh::RHMesh | ( | RHGenericDriver & | driver, |
uint8_t | thisAddress = 0 |
||
) |
Constructor.
[in] | driver | The RadioHead driver to use to transport messages. |
[in] | thisAddress | The address to assign to this node. Defaults to 0 |
|
protectedvirtual |
Try to resolve a route for the given address. Blocks while discovering the route which may take up to 4000 msec. Virtual so subclasses can override.
[in] | address | The physical address to resolve |
References RHRouter::addRouteTo(), RHMesh::MeshRouteDiscoveryMessage::dest, RHMesh::MeshRouteDiscoveryMessage::destlen, RHMesh::MeshRouteDiscoveryMessage::header, RHDatagram::headerFrom(), RHMesh::MeshMessageHeader::msgType, RHRouter::recvfromAck(), RHRouter::sendtoWait(), and RHDatagram::waitAvailableTimeout().
Referenced by sendtoWait().
|
protectedvirtual |
Tests if the given address of length addresslen is indentical to the physical address of this node. RHMesh always implements physical addresses as the 1 octet address of the node given by _thisAddress Called by recvfromAck() to test whether a RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_REQUEST is for this node. Subclasses may want to override to implement more complicated or longer physical addresses
[in] | address | Address of the pyysical addres being tested |
[in] | addresslen | Lengthof the address in bytes |
References RHDatagram::_thisAddress.
Referenced by recvfromAck().
|
protectedvirtual |
Internal function that inspects messages being received and adjusts the routing table if necessary. Called by recvfromAck() immediately after it gets the message from RHReliableDatagram
[in] | message | Pointer to the RHRouter message that was received. |
[in] | messageLen | Length of message in octets |
Reimplemented from RHRouter.
References RHDatagram::_thisAddress, RHRouter::addRouteTo(), RHRouter::RoutedMessage::data, RHRouter::deleteRouteTo(), RHMesh::MeshRouteDiscoveryMessage::dest, RHMesh::MeshRouteFailureMessage::dest, RHDatagram::headerFrom(), RHMesh::MeshMessageHeader::msgType, and RHMesh::MeshRouteDiscoveryMessage::route.
bool RHMesh::recvfromAck | ( | uint8_t * | buf, |
uint8_t * | len, | ||
uint8_t * | source = NULL , |
||
uint8_t * | dest = NULL , |
||
uint8_t * | id = NULL , |
||
uint8_t * | flags = NULL , |
||
uint8_t * | hops = NULL |
||
) |
Starts the receiver if it is not running already, processes and possibly routes any received messages addressed to other nodes and delivers any messages addressed to this node. If there is a valid application layer message available for this node (or RH_BROADCAST_ADDRESS), send an acknowledgement to the last hop address (blocking until this is complete), then copy the application message payload data to buf and return true else return false. If a message is copied, *len is set to the length.. If from is not NULL, the originator SOURCE address is placed in *source. If to is not NULL, the DEST address is placed in *dest. This might be this nodes address or RH_BROADCAST_ADDRESS. This is the preferred function for getting messages addressed to this node. If the message is not a broadcast, acknowledge to the sender before returning.
[in] | buf | Location to copy the received message |
[in,out] | len | Pointer to the number of octets available in buf. The number be reset to the actual number of octets copied. |
[in] | source | If present and not NULL, the referenced uint8_t will be set to the SOURCE address |
[in] | dest | If present and not NULL, the referenced uint8_t will be set to the DEST address |
[in] | id | If present and not NULL, the referenced uint8_t will be set to the ID |
[in] | flags | If present and not NULL, the referenced uint8_t will be set to the FLAGS |
[in] | hops | If present and not NULL, the referenced uint8_t will be set to the HOPS (not just those addressed to this node). |
References RHRouter::_isa_router, RHRouter::_max_hops, RHDatagram::_thisAddress, RHRouter::addRouteTo(), RHMesh::MeshApplicationMessage::data, RHMesh::MeshRouteDiscoveryMessage::dest, RHMesh::MeshRouteDiscoveryMessage::destlen, RHMesh::MeshRouteDiscoveryMessage::header, RHDatagram::headerFrom(), isPhysicalAddress(), RHMesh::MeshMessageHeader::msgType, RHRouter::recvfromAck(), RHMesh::MeshRouteDiscoveryMessage::route, RHRouter::sendtoFromSourceWait(), and RHRouter::sendtoWait().
Referenced by recvfromAckTimeout().
bool RHMesh::recvfromAckTimeout | ( | uint8_t * | buf, |
uint8_t * | len, | ||
uint16_t | timeout, | ||
uint8_t * | source = NULL , |
||
uint8_t * | dest = NULL , |
||
uint8_t * | id = NULL , |
||
uint8_t * | flags = NULL , |
||
uint8_t * | hops = NULL |
||
) |
Starts the receiver if it is not running already. Similar to recvfromAck(), this will block until either a valid application layer message available for this node or the timeout expires.
[in] | buf | Location to copy the received message |
[in,out] | len | Pointer to the number of octets available in buf. The number be reset to the actual number of octets copied. |
[in] | timeout | Maximum time to wait in milliseconds |
[in] | source | If present and not NULL, the referenced uint8_t will be set to the SOURCE address |
[in] | dest | If present and not NULL, the referenced uint8_t will be set to the DEST address |
[in] | id | If present and not NULL, the referenced uint8_t will be set to the ID |
[in] | flags | If present and not NULL, the referenced uint8_t will be set to the FLAGS |
[in] | hops | If present and not NULL, the referenced uint8_t will be set to the HOPS (not just those addressed to this node). |
References recvfromAck(), and RHDatagram::waitAvailableTimeout().
|
protectedvirtual |
Internal function that inspects messages being received and adjusts the routing table if necessary. This is virtual, which lets subclasses override or intercept the route() function. Called by sendtoWait after the message header has been filled in.
[in] | message | Pointer to the RHRouter message to be sent. |
[in] | messageLen | Length of message in octets |
Reimplemented from RHRouter.
References RHDatagram::_thisAddress, RHRouter::addRouteTo(), RHRouter::deleteRouteTo(), RHMesh::MeshRouteFailureMessage::dest, RHRouter::RoutedMessageHeader::dest, RHMesh::MeshRouteFailureMessage::header, RHRouter::RoutedMessage::header, RHDatagram::headerFrom(), RHMesh::MeshMessageHeader::msgType, RHRouter::route(), RHRouter::sendtoWait(), and RHRouter::RoutedMessageHeader::source.
Referenced by sendtoWait().
uint8_t RHMesh::sendtoWait | ( | uint8_t * | buf, |
uint8_t | len, | ||
uint8_t | dest, | ||
uint8_t | flags = 0 |
||
) |
Sends a message to the destination node. Initialises the RHRouter message header (the SOURCE address is set to the address of this node, HOPS to 0) and calls route() which looks up in the routing table the next hop to deliver to. If no route is known, initiates route discovery and waits for a reply. Then sends the message to the next hop Then waits for an acknowledgement from the next hop (but not from the destination node (if that is different).
[in] | buf | The application message data |
[in] | len | Number of octets in the application message data. 0 is permitted |
[in] | dest | The destination node address. If the address is RH_BROADCAST_ADDRESS (255) the message will be broadcast to all the nearby nodes, but not routed or relayed. |
[in] | flags | Optional flags for use by subclasses or application layer, delivered end-to-end to the dest address. The receiver can recover the flags with recvFromAck(). |
References RHMesh::MeshApplicationMessage::data, doArp(), RHRouter::getRouteTo(), RHMesh::MeshApplicationMessage::header, RHMesh::MeshMessageHeader::msgType, route(), and RHRouter::sendtoWait().