LoomFactory class

Factory is used by LoomManager when parsing Json to match module names to their associated constructors, and calling with parameters from the Json.

The template parameters are used to select whether certain blocks of modules are included in the lookup table. This is determined at compile time to not include unnecessary module classes and supporting code, thus reducing code size

Base classes

class FactoryBase
Base class that factory is derived from.

Constructors, destructors, conversion operators

LoomFactory() defaulted
Constructor.
~LoomFactory() defaulted
Destructor.

Public functions

void print_table() const virtual
Print the contents of the lookup table.
auto Create(LoomManager* manager, JsonVariant module) const -> LoomModule* virtual
Create LoomManager* manager, a module based on a subset of a Json configuration.

Function documentation

template<Enable::Internet INTERNET, Enable::Sensors SENSORS, Enable::Radios RADIOS, Enable::Actuators ACTUATORS, Enable::Max MAX>
LoomModule* LoomFactory<INTERNET, SENSORS, RADIOS, ACTUATORS, MAX>::Create(LoomManager* manager, JsonVariant module) const virtual

Create LoomManager* manager, a module based on a subset of a Json configuration.

Parameters
manager
module in Subset of a Json configuration, used to identify module to create and with what parameters
Returns LoomModule if created, nullptr if it could not be created

Needs name and parameters to the constructor as an array (or the word 'default') if that module has default values for all parameters