1#ifndef Cpl_Dm_ModelDatabase_h_
2#define Cpl_Dm_ModelDatabase_h_
15#include "colony_config.h"
19#include "Cpl/Json/Arduino.h"
26#ifndef OPTION_CPL_DM_MODEL_DATABASE_MAX_CAPACITY_JSON_DOC
27#define OPTION_CPL_DM_MODEL_DATABASE_MAX_CAPACITY_JSON_DOC (1024*2)
70 ModelDatabase( const
char* ignoreThisParameter_usedToCreateAUniqueConstructor ) noexcept;
86 bool fromJSON( const
char* src,
Cpl::Text::String* errorMsg=0,
ModelPoint** retMp = 0, uint16_t* retSequenceNumber=0 ) noexcept;
#define OPTION_CPL_DM_MODEL_DATABASE_MAX_CAPACITY_JSON_DOC
This symbol defines the size, in bytes, of a single/global JSON document buffer that is used for the ...
Definition ModelDatabase.h:27
This class defines the basic operations that can be performed on a Model Base.
Definition ModelDatabaseApi.h:32
This concrete class implements a simple Model Database.
Definition ModelDatabase.h:56
ModelPoint * getFirstByName() noexcept
See Cpl::Dm::ModelDatabaseApi.
static StaticJsonDocument< OPTION_CPL_DM_MODEL_DATABASE_MAX_CAPACITY_JSON_DOC > g_doc_
This variable has 'PACKAGE Scope' in that is should only be called by other classes in the Cpl::Dm na...
Definition ModelDatabase.h:145
virtual ModelPoint * find(const char *name) noexcept
Helper method to find a point by name.
ModelDatabase() noexcept
Constructor.
bool m_listSorted
Keep track if the point list has beed sorted.
Definition ModelDatabase.h:166
ModelPoint * lookupModelPoint(const char *modelPointName) noexcept
See Cpl::Dm::ModelDatabaseApi.
ModelPoint * getNextByName(ModelPoint ¤tModelPoint) noexcept
See Cpl::Dm::ModelDatabaseApi.
Cpl::System::Mutex * m_lock
Mutex for making the Database thread safe.
Definition ModelDatabase.h:163
bool createLock()
Helper method to create the database lock.
virtual void sortList() noexcept
Helper method to sort the model point list alphabetical.
static void globalLock_() noexcept
This method has 'PACKAGE Scope' in that is should only be called by other classes in the Cpl::Dm name...
Cpl::Container::SList< ModelPoint > m_list
Map to the store the Model Points.
Definition ModelDatabase.h:160
static void globalUnlock_() noexcept
This method has 'PACKAGE Scope' in that is should only be called by other classes in the Cpl::Dm name...
void lock_() noexcept
This method has 'PACKAGE Scope' in that is should only be called by other classes in the Cpl::Dm name...
void insert_(ModelPoint &mpToAdd) noexcept
This method has 'PACKAGE Scope' in that is should only be called by other classes in the Cpl::Dm name...
void unlock_() noexcept
This method has 'PACKAGE Scope' in that is should only be called by other classes in the Cpl::Dm name...
bool fromJSON(const char *src, Cpl::Text::String *errorMsg=0, ModelPoint **retMp=0, uint16_t *retSequenceNumber=0) noexcept
See Cpl::Dm::ModelDatabaseApi.
This mostly abstract class defines the interface for a Model Point.
Definition ModelPoint.h:46
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20