Loom
Protected Attributes | List of all members
Loom_BatchSD Class Reference

Batch SD logging platform module. More...

#include <BatchSD.h>

Inheritance diagram for Loom_BatchSD:
Inheritance graph
[legend]

Public Member Functions

CONSTRUCTORS / DESTRUCTOR
 Loom_BatchSD (LoomManager *manager, const bool enable_rate_filter=true, const uint16_t min_filter_delay=1000, const byte chip_select=10)
 SD Module Constructor. More...
 
 Loom_BatchSD (LoomManager *manager, JsonArrayConst p)
 Constructor that takes Json Array, extracts args. More...
 
 ~Loom_BatchSD ()=default
 Destructor. More...
 
OPERATION
bool log (JsonObject json) override
 Log a Json object. More...
 
void clear_batch_log ()
 Clears all the files that are being stored in the batch on the SD card. More...
 
bool store_batch ()
 Accesses the internal json from Loom Manager to store to batch using store_batch_json. More...
 
bool store_batch_json (JsonObject json)
 Uses JsonObject to write file as packet in the batch onto the SD Card. More...
 
void power_up () override
 Turn on any hardware. More...
 
void power_down () override
 Turn off any hardware. More...
 
void package (JsonObject json)
 No package necessary for logging platforms. More...
 
PRINT INFORMATION
void print_config () const override
 Display the configuration settings of the module. More...
 
bool dump_batch (int index)
 Prints the contents of a particular packet file in the batch. More...
 
GETTERS
JsonObject get_batch_json (int index)
 Returns a JsonObject of the packet file (.json) in the batch from the SD card. More...
 
int get_packet_counter ()
 Get the current amount of packets that are being stored in the batch. More...
 
void add_drop_count (uint8_t dropped)
 Updates the count of packets that have failed to send. More...
 
- Public Member Functions inherited from LoomLogPlat
 LoomLogPlat (LoomManager *manager, const char *module_name, const LoomModule::Type module_type, const bool enable_rate_filter=true, const uint16_t min_filter_delay=1000)
 Constructor. More...
 
virtual ~LoomLogPlat ()=default
 Destructor. More...
 
bool log ()
 Version of log for use with LoomManager. More...
 
- Public Member Functions inherited from LoomModule
 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 add_config (JsonObject json)
 Add configuration information to JsonObject. More...
 
Type get_module_type () const
 Get module type. More...
 
LoomManagerget_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...
 
virtual void print_state () const
 Display current state of the module. More...
 

Protected Attributes

SdFat sd
 File System Object. More...
 
const byte chip_select
 Chip select pin. More...
 
int batch_counter
 Current batch count value. More...
 
int packet_counter
 Current packet count value in a batch. More...
 
int drop_count
 Current count of packets that failed to be sent. More...
 
DynamicJsonDocument doc
 
- Protected Attributes inherited from LoomLogPlat
bool enable_rate_filter
 Whether or not to enable a minimum delay between logging. More...
 
uint16_t min_filter_delay
 Minimum delay between logging (milliseconds) More...
 
unsigned long last_log_millis
 Value of millis() at last executed log time. More...
 
- Protected Attributes inherited from LoomModule
const Type module_type
 Module type. More...
 
LoomManagerdevice_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...
 

Additional Inherited Members

- Public Types inherited from LoomModule
enum  Type {
  Type::Unknown = 0, Type::Other =1000, Type::Interrupt_Manager, Type::Sleep_Manager,
  Type::Multiplexer, Type::NTP, Type::TempSync, Type::WarmUp_Manager,
  Type::Sensor =2000, Type::Analog, Type::Digital, Type::I2C =2100,
  Type::ADS1115, Type::AS7262, Type::AS7263, Type::AS7265X,
  Type::FXAS21002, Type::FXOS8700, Type::LIS3DH, Type::MB1232,
  Type::MMA8451, Type::MPU6050, Type::MS5803, Type::SHT31D,
  Type::TMP007, Type::TSL2561, Type::TSL2591, Type::ZXGesture,
  Type::STEMMA, Type::SDI12 =2200, Type::Decagon5TM, Type::DecagonGS3,
  Type::SPI =2300, Type::MAX31855, Type::MAX31856, Type::L_SERIAL =2400,
  Type::K30, Type::L_RTC =3000, Type::DS3231, Type::PCF8523,
  Type::Actuator =4000, Type::Neopixel, Type::Relay, Type::Servo,
  Type::Stepper, Type::LogPlat =5000, Type::OLED, Type::SDCARD,
  Type::BATCHSD, Type::CommPlat =6000, Type::LoRa, Type::nRF,
  Type::Bluetooth, Type::InternetPlat =7000, Type::Ethernet, Type::WiFi,
  Type::LTE, Type::PublishPlat =8000, Type::GoogleSheets, Type::MaxPub,
  Type::SpoolPub, Type::SubscribePlats =9000, Type::MaxSub
}
 Enum to check against to when finding individual component managed by a LoomManager. More...
 
enum  Category {
  Category::Unknown =0, Category::Other =1, Category::Sensor =2, Category::L_RTC =3,
  Category::Actuator =4, Category::LogPlat =5, Category::CommPlat =6, Category::InternetPlat =7,
  Category::PublishPlat =8, Category::SubscribePlat =9
}
 Enum to classify modules. More...
 
- Static Public Member Functions inherited from LoomModule
static const char * enum_verbosity_string (const Verbosity v)
 Get string of name associated with verbosity enum. More...
 
static const char * enum_category_string (const Category c)
 Get string of the category associated with a Category. More...
 
- Protected Member Functions inherited from LoomLogPlat
bool check_millis ()
 Check against millis to determine if time since last log exceeds min time. More...
 
- Protected Member Functions inherited from LoomModule
void print_module_label () const
 Print the module name as a label. More...
 

Detailed Description

Batch SD logging platform module.

Resources

Constructor & Destructor Documentation

Loom_BatchSD::Loom_BatchSD ( LoomManager manager,
const bool  enable_rate_filter = true,
const uint16_t  min_filter_delay = 1000,
const byte  chip_select = 10 
)

SD Module Constructor.

Parameters
[in]enable_rate_filterBool | <true> | {true, false} | Whether or not to impose maximum update rate
[in]min_filter_delayInt | <1000> | [100-5000] | Minimum update delay, if enable_rate_filter enabled
[in]chip_selectSet(Int) | <10> | {5, 6, 9, 10, 11, 12, 13, 14("A0"), 15("A1"), 16("A2"), 17("A3"), 18("A4"), 19("A5")} | Which pin to use for chip select
Loom_BatchSD::Loom_BatchSD ( LoomManager manager,
JsonArrayConst  p 
)

Constructor that takes Json Array, extracts args.

and delegates to regular constructor

Parameters
[in]pThe array of constuctor args to expand
Loom_BatchSD::~Loom_BatchSD ( )
default

Destructor.

Member Function Documentation

void Loom_BatchSD::add_drop_count ( uint8_t  dropped)
inline

Updates the count of packets that have failed to send.

Parameters
[in]droppedThe amount of packets that have been dropped during transmit
void Loom_BatchSD::clear_batch_log ( )

Clears all the files that are being stored in the batch on the SD card.

bool Loom_BatchSD::dump_batch ( int  index)

Prints the contents of a particular packet file in the batch.

Parameters
[in]indexThe index of file in the batch to print
Returns
True if success
JsonObject Loom_BatchSD::get_batch_json ( int  index)

Returns a JsonObject of the packet file (.json) in the batch from the SD card.

Parameters
[in]indexThe index of the file in the batch to retrieve
Returns
The JsonObject stored index
int Loom_BatchSD::get_packet_counter ( )
inline

Get the current amount of packets that are being stored in the batch.

Returns
The current number of packets
bool Loom_BatchSD::log ( JsonObject  json)
inlineoverridevirtual

Log a Json object.

Parameters
[in]jsonJson Object to log

Implements LoomLogPlat.

void Loom_BatchSD::package ( JsonObject  json)
virtual

No package necessary for logging platforms.

implement with empty body.

Reimplemented from LoomLogPlat.

void Loom_BatchSD::power_down ( )
overridevirtual

Turn off any hardware.

Reimplemented from LoomModule.

void Loom_BatchSD::power_up ( )
overridevirtual

Turn on any hardware.

Reimplemented from LoomModule.

void Loom_BatchSD::print_config ( ) const
overridevirtual

Display the configuration settings of the module.

Reimplemented from LoomLogPlat.

bool Loom_BatchSD::store_batch ( )

Accesses the internal json from Loom Manager to store to batch using store_batch_json.

Returns
True if success
bool Loom_BatchSD::store_batch_json ( JsonObject  json)

Uses JsonObject to write file as packet in the batch onto the SD Card.

Parameters
[in]jsonThe data to be saved as .json file
Returns
True if success

Member Data Documentation

int Loom_BatchSD::batch_counter
protected

Current batch count value.

const byte Loom_BatchSD::chip_select
protected

Chip select pin.

DynamicJsonDocument Loom_BatchSD::doc
protected
int Loom_BatchSD::drop_count
protected

Current count of packets that failed to be sent.

int Loom_BatchSD::packet_counter
protected

Current packet count value in a batch.

SdFat Loom_BatchSD::sd
protected

File System Object.


The documentation for this class was generated from the following files: