Loom
Public Member Functions | List of all members
LoomFactory< INTERNET, SENSORS, RADIOS, ACTUATORS, MAX > Class Template Reference

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

#include <Module_Factory.h>

Inheritance diagram for LoomFactory< INTERNET, SENSORS, RADIOS, ACTUATORS, MAX >:
Inheritance graph
[legend]

Public Member Functions

 LoomFactory ()=default
 Constructor. More...
 
 ~LoomFactory ()=default
 Destructor. More...
 
void print_table () const
 Print the contents of the lookup table. More...
 
LoomModuleCreate (LoomManager *manager, JsonVariant module) const
 Create LoomManager* manager, a module based on a subset of a Json configuration. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from FactoryBase
template<class T >
static T * CreateDefault ()
 Creates a LoomModule with its default parameters. More...
 

Detailed Description

template<Enable::Internet INTERNET = Enable::Internet::All, Enable::Sensors SENSORS = Enable::Sensors::Enabled, Enable::Radios RADIOS = Enable::Radios::Enabled, Enable::Actuators ACTUATORS = Enable::Actuators::Enabled, Enable::Max MAX = Enable::Max::Disabled>
class LoomFactory< INTERNET, SENSORS, RADIOS, ACTUATORS, MAX >

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

Resources

Constructor & Destructor Documentation

template<Enable::Internet INTERNET = Enable::Internet::All, Enable::Sensors SENSORS = Enable::Sensors::Enabled, Enable::Radios RADIOS = Enable::Radios::Enabled, Enable::Actuators ACTUATORS = Enable::Actuators::Enabled, Enable::Max MAX = Enable::Max::Disabled>
LoomFactory< INTERNET, SENSORS, RADIOS, ACTUATORS, MAX >::LoomFactory ( )
default

Constructor.

template<Enable::Internet INTERNET = Enable::Internet::All, Enable::Sensors SENSORS = Enable::Sensors::Enabled, Enable::Radios RADIOS = Enable::Radios::Enabled, Enable::Actuators ACTUATORS = Enable::Actuators::Enabled, Enable::Max MAX = Enable::Max::Disabled>
LoomFactory< INTERNET, SENSORS, RADIOS, ACTUATORS, MAX >::~LoomFactory ( )
default

Destructor.

Member Function Documentation

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

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

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

Parameters
[in]moduleSubset 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

Implements FactoryBase.

template<Enable::Internet INTERNET = Enable::Internet::All, Enable::Sensors SENSORS = Enable::Sensors::Enabled, Enable::Radios RADIOS = Enable::Radios::Enabled, Enable::Actuators ACTUATORS = Enable::Actuators::Enabled, Enable::Max MAX = Enable::Max::Disabled>
void LoomFactory< INTERNET, SENSORS, RADIOS, ACTUATORS, MAX >::print_table ( ) const
inlinevirtual

Print the contents of the lookup table.

Implements FactoryBase.


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