Loom
|
Abstract subscribe platform module. More...
#include <SubscribePlat.h>
Public Member Functions | |
CONSTRUCTORS / DESTRUCTOR | |
Document to read incoming data into | |
LoomSubscribePlat (LoomManager *manager, const char *module_name, const LoomModule::Type module_type, const LoomModule::Type internet_type) | |
Constructor. More... | |
virtual | ~LoomSubscribePlat ()=default |
Destructor. More... | |
void | second_stage_ctor () override |
Grab the internet platform specified by the ctor parameters. More... | |
OPERATION | |
virtual bool | subscribe (JsonObject json)=0 |
Request / try to receive data from platform subscribed to. More... | |
bool | subscribe () |
Version of log for use with LoomManager. 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... | |
![]() | |
LoomModule (LoomManager *manager, const char *module_name="Unknown", const Type module_type=Type::Unknown) | |
Constructor. More... | |
virtual | ~LoomModule ()=default |
Destructor. More... | |
virtual void | package (JsonObject json)=0 |
Package a modules measurements or state. 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 Attributes | |
LoomInternetPlat * | m_internet |
Pointer to internet platform to use to publish. More... | |
const LoomModule::Type | internet_type |
Type of internet platform used to publish. More... | |
StaticJsonDocument< 1000 > | messageJson |
Subscribe Platforms need their own JsonDocument because an incoming message can only be deserialized into JsonDocuments, not JsonObjects. More... | |
![]() | |
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... | |
Abstract subscribe platform module.
All SubscribePlat modules inherit from this class.
LoomSubscribePlat::LoomSubscribePlat | ( | LoomManager * | manager, |
const char * | module_name, | ||
const LoomModule::Type | module_type, | ||
const LoomModule::Type | internet_type | ||
) |
Constructor.
[in] | module_name | String | <"Internet-Plat"> | null | Publish platform module name |
[in] | module_type | Type of the module (provided by derived classes) |
[in] | internet_type | Set(LoomModule::Type) | <7001> | {7001("Ethernet"), 7002("WiFi")} | Code of the desired internet platform. |
|
virtualdefault |
Destructor.
|
overridevirtual |
Display the configuration settings of the module.
Reimplemented from LoomModule.
Reimplemented in Loom_MaxSub.
|
overridevirtual |
Display current state of the module.
Reimplemented from LoomModule.
|
overridevirtual |
Grab the internet platform specified by the ctor parameters.
Reimplemented from LoomModule.
|
pure virtual |
Request / try to receive data from platform subscribed to.
[out] | json | Received data |
Implemented in Loom_MaxSub.
bool LoomSubscribePlat::subscribe | ( | ) |
Version of log for use with LoomManager.
Accesses Json from LoomManager
|
protected |
Type of internet platform used to publish.
Needed because finding the module for m_internet happens in second_stage_ctor(), rather than the regular constructor.
|
protected |
Pointer to internet platform to use to publish.
|
protected |
Subscribe Platforms 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. Also as the LoomManager is intended to be non-mandatory for usage of Loom