Loom
|
Abstract base of communication platform modules. More...
#include <CommPlat.h>
Public Member Functions | |
CONSTRUCTORS / DESTRUCTOR | |
LoomCommPlat (LoomManager *manager, const char *module_name, const LoomModule::Type module_type, const uint16_t max_message_len) | |
Constructor. More... | |
virtual | ~LoomCommPlat ()=default |
Destructor. More... | |
OPERATION | |
virtual void | package (JsonObject json) override |
Package a modules measurements or state. More... | |
bool | receive_blocking (JsonObject json, uint max_wait_time) |
Receive, but block until packet received, or timeout reached. More... | |
bool | receive (JsonObject json) |
Build json from packet if any exists. More... | |
bool | receive_batch () |
Receive and immediately create a batch file from JSON receieved. More... | |
bool | receive_batch_blocking (uint max_wait_time) |
Receive, and block until packet recieved or timeout, and immediately create a batch file from JSON receieved. More... | |
bool | receive () |
Version of receive for use with LoomManager. More... | |
bool | receive_blocking (const uint max_wait_time) |
Version of receive_blocking for use with LoomManager. More... | |
JsonObject | pre_merge_receive_blocking (JsonObject json) |
Giving the header of the Package from the other board. More... | |
bool | merge_json (JsonObject json, const uint8_t loop) |
It will merge all the small packages into one big package. More... | |
bool | send (JsonObject json, const uint8_t destination) |
Send json to a specific address. More... | |
bool | send (const uint8_t destination) |
Version of send for use with LoomManager. More... | |
uint8_t | send_batch (const uint8_t destination, int delay_time) |
Sends all the jsons stored in the batch. More... | |
uint16_t | determine_json_size (JsonObject json) |
Return the size of the json to determing wether to send as split or not. More... | |
bool | split_send_notification (JsonObject json, const uint8_t destination) |
If the json is over 251, then it let the user the know that it will be sending small mulitple jsons with how many will it be splited into. More... | |
bool | split_send (JsonObject json, const uint8_t destination, const uint8_t index) |
The actual processing spliting into small json. More... | |
void | broadcast (JsonObject json) |
Broadcast data to all that can receive. More... | |
void | broadcast () |
Version of send for use with LoomManager. More... | |
void | broadcast_batch (int delay_time) |
Broadcasts all the jsons stored in the batch. More... | |
PRINT INFORMATION | |
virtual void | print_config () const override |
Display the configuration settings of the module. More... | |
virtual void | print_state () const override |
Display current state of the module. More... | |
GETTERS | |
virtual uint8_t | get_address () const =0 |
Get the address of this device. More... | |
float | get_drop_rate () const |
Get the packet drop rate since the start of operation. More... | |
float | get_last_ten_drop_rate () const |
Get the packet drop rate of the last ten send() calls. More... | |
![]() | |
LoomModule (LoomManager *manager, const char *module_name="Unknown", const Type module_type=Type::Unknown) | |
Constructor. More... | |
virtual | ~LoomModule ()=default |
Destructor. More... | |
virtual void | second_stage_ctor () |
Second stage construction. More... | |
virtual bool | dispatch (JsonObject json) |
Route command to driver. More... | |
virtual void | power_down () |
Turn off any hardware. More... | |
virtual void | power_up () |
Turn on any hardware. More... | |
virtual void | add_config (JsonObject json) |
Add configuration information to JsonObject. More... | |
Type | get_module_type () const |
Get module type. More... | |
LoomManager * | get_device_manager () const |
Get the device manager class if linked. More... | |
void | get_module_name (char *buf) const |
Copy module name into buffer. More... | |
const char * | get_module_name () const |
Get module name. More... | |
Verbosity | get_print_verbosity () const |
Get print verbosity. More... | |
Verbosity | get_package_verbosity () const |
Get package verbosity. More... | |
bool | get_active () const |
Get whether or not the module should be treated as active. More... | |
Category | category () const |
Get the category of the module. More... | |
virtual void | link_device_manager (LoomManager *LM) |
Add pointer back to device manager. More... | |
void | set_print_verbosity (const Verbosity v) |
Set print verbosity Controlls level of detail included in debug prints. More... | |
void | set_package_verbosity (const Verbosity v) |
Set package verbosity. More... | |
void | set_active (const bool enable) |
Set whether or not the module should be treated as active. More... | |
Protected Member Functions | |
RADIO IMPLEMENTATION | |
virtual bool | receive_blocking_impl (JsonObject json, uint max_wait_time) |
Receive, but block until packet received, or timeout reached. More... | |
virtual bool | send_impl (JsonObject json, const uint8_t destination) |
Send json to a specific address. More... | |
virtual void | broadcast_impl (JsonObject json) |
Broadcast data to all that can receive. More... | |
![]() | |
void | print_module_label () const |
Print the module name as a label. More... | |
Protected Attributes | |
uint16_t | max_message_len |
The maximum message length. More... | |
int16_t | signal_strength |
RSSI for Lora (need to determine what the other platforms use) More... | |
StaticJsonDocument< 1500 > | messageJson |
Document to read incoming data into. More... | |
DynamicJsonDocument | mergeJson |
uint32_t | total_packet_count |
uint32_t | total_drop_count |
bool | last_ten_dropped [10] |
uint8_t | last_ten_dropped_idx |
![]() | |
const Type | module_type |
Module type. More... | |
LoomManager * | device_manager |
Pointer to manager. More... | |
const String | module_name_base |
The name of the module (Should have a DEFAULT but can be overriden if provided to constructor) More... | |
const char * | module_name |
bool | active |
Whether or not the module should be treated as active. More... | |
Verbosity | print_verbosity |
Print verbosity. More... | |
Verbosity | package_verbosity |
Package verbosity. More... | |
SETTERS | |
bool | json_to_msgpack_buffer (JsonObjectConst json, char *buffer, const uint16_t max_len) const |
Serialize a JsonObject into a MessagePack buffer. More... | |
bool | msgpack_buffer_to_json (const char *buffer, JsonObject json) |
Deserialize a MessagePack buffer into a JsonObject. More... | |
void | add_packet_result (const bool did_drop) |
Add the result of a packet to the drop_rate tracker. More... | |
virtual void | set_address (const uint8_t a)=0 |
Set the address of this device. More... | |
Abstract base of communication platform modules.
All communication platform modules inherit from this class.
LoomCommPlat::LoomCommPlat | ( | LoomManager * | manager, |
const char * | module_name, | ||
const LoomModule::Type | module_type, | ||
const uint16_t | max_message_len | ||
) |
Constructor.
[in] | module_name | Name of the module (provided by derived classes) |
[in] | module_type | Type of the module (provided by derived classes) |
[in] | max_message_len | The maximum possible message length |
|
virtualdefault |
Destructor.
|
protected |
Add the result of a packet to the drop_rate tracker.
[in] | did_drop | Whether or not the packet dropped during transmission. |
|
inline |
Broadcast data to all that can receive.
Derived classes can optionally provide an implementation for this, As supported by the radio/platform's library
[in] | json | Json object to send |
void LoomCommPlat::broadcast | ( | ) |
Version of send for use with LoomManager.
Accesses Json from LoomManager
void LoomCommPlat::broadcast_batch | ( | int | delay_time | ) |
Broadcasts all the jsons stored in the batch.
[in] | delay_time | The amount of time between each packet in the batch being broadcasted |
|
inlineprotectedvirtual |
Broadcast data to all that can receive.
Derived classes can optionally provide an implementation for this, As supported by the radio/platform's library
[in] | json | Json object to send |
Reimplemented in Loom_nRF.
uint16_t LoomCommPlat::determine_json_size | ( | JsonObject | json | ) |
Return the size of the json to determing wether to send as split or not.
[in] | json | Json that will the measurement of the size |
|
pure virtual |
Get the address of this device.
Each platform may have a different addressing scheme
Implemented in Loom_LoRa, Loom_nRF, and Loom_Bluetooth.
float LoomCommPlat::get_drop_rate | ( | ) | const |
Get the packet drop rate since the start of operation.
Keep in mind that this drop rate will not account for retransmissions done internally by RadioHead (ex Reliable datagram), but rather will count data packets that were discarded. This rate will also ignore broadcasts, since they are nearly impossible to quantify.
float LoomCommPlat::get_last_ten_drop_rate | ( | ) | const |
Get the packet drop rate of the last ten send() calls.
Keep in mind that this drop rate will not account for retransmissions done internally by RadioHead (ex Reliable datagram), but rather will count data packets that were discarded. This rate will also ignore broadcasts, since they are nearly impossible to quantify.
|
protected |
Serialize a JsonObject into a MessagePack buffer.
Also contains buffer memsetting and print statements
[in] | json | JsonObject to serialize |
[out] | buffer | Buffer to fill with MessagePack of json |
[in] | max_len | Length of buffer |
bool LoomCommPlat::merge_json | ( | JsonObject | json, |
const uint8_t | loop | ||
) |
It will merge all the small packages into one big package.
[in] | json | The header of the package |
[in] | loop | How many small packages are coming |
|
protected |
Deserialize a MessagePack buffer into a JsonObject.
Also clears the json, contains prints and error checks.
[in] | buffer | Buffer to deserialize |
[out] | json | JsonObject to deserialize into |
[in] | max_len | Length of buffer |
|
inlineoverridevirtual |
Package a modules measurements or state.
[out] | json | Object to put data into |
Implements LoomModule.
JsonObject LoomCommPlat::pre_merge_receive_blocking | ( | JsonObject | json | ) |
Giving the header of the Package from the other board.
[in] | json | json of the headers if it came in split |
|
overridevirtual |
Display the configuration settings of the module.
Reimplemented from LoomModule.
Reimplemented in Loom_LoRa, Loom_nRF, and Loom_Bluetooth.
|
overridevirtual |
Display current state of the module.
Reimplemented from LoomModule.
|
inline |
Build json from packet if any exists.
[out] | json | Json object to fill with incoming data |
bool LoomCommPlat::receive | ( | ) |
Version of receive for use with LoomManager.
Accesses Json from LoomManager
|
inline |
Receive and immediately create a batch file from JSON receieved.
bool LoomCommPlat::receive_batch_blocking | ( | uint | max_wait_time | ) |
Receive, and block until packet recieved or timeout, and immediately create a batch file from JSON receieved.
[in] | max_wait_time | Maximum number of milliseconds to block for |
bool LoomCommPlat::receive_blocking | ( | JsonObject | json, |
uint | max_wait_time | ||
) |
Receive, but block until packet received, or timeout reached.
[out] | json | Json object to fill with incoming data |
[in] | max_wait_time | Maximum number of milliseconds to block for |
bool LoomCommPlat::receive_blocking | ( | const uint | max_wait_time | ) |
Version of receive_blocking for use with LoomManager.
Accesses Json from LoomManager
[out] | max_wait_time | Maximum number of milliseconds to block for |
|
inlineprotectedvirtual |
bool LoomCommPlat::send | ( | JsonObject | json, |
const uint8_t | destination | ||
) |
Send json to a specific address.
[in] | json | Json package to send |
[in] | destination | Device to send to |
bool LoomCommPlat::send | ( | const uint8_t | destination | ) |
Version of send for use with LoomManager.
Accesses Json from LoomManager
[in] | destination | Address of destination device |
uint8_t LoomCommPlat::send_batch | ( | const uint8_t | destination, |
int | delay_time | ||
) |
Sends all the jsons stored in the batch.
[in] | destination | Address of destination device |
[in] | delay_time | The amount of time between each packet in the batch being sent |
|
inlineprotectedvirtual |
|
pure virtual |
Set the address of this device.
Each platform may have a different addressing scheme. Changing the device's address is not recommended.
[in] | a | The address to set this device to |
Implemented in Loom_LoRa, Loom_nRF, and Loom_Bluetooth.
bool LoomCommPlat::split_send | ( | JsonObject | json, |
const uint8_t | destination, | ||
const uint8_t | index | ||
) |
The actual processing spliting into small json.
[in] | json | The original message package |
[in] | destination | Address of destination device |
[in] | index | Json array Contents part location |
bool LoomCommPlat::split_send_notification | ( | JsonObject | json, |
const uint8_t | destination | ||
) |
If the json is over 251, then it let the user the know that it will be sending small mulitple jsons with how many will it be splited into.
[in] | json | The original message pacakge |
[in] | destination | Address of destination device |
|
protected |
|
protected |
|
protected |
The maximum message length.
|
protected |
|
protected |
Document to read incoming data into.
CommPlatforms need their own JsonDocument because an incoming message can only be deserialized into JsonDocuments, not JsonObjects. And it seemed bad design to pass around references to the LoomManager's internal JsonDocument. Especially as the LoomManager is intended to be non-mandatory for usage of Loom
|
protected |
RSSI for Lora (need to determine what the other platforms use)
|
protected |
|
protected |