1#ifndef Cpl_Dm_Persistent_Record_h_
2#define Cpl_Dm_Persistent_Record_h_
75 uint8_t schemaMajorIndex,
76 uint8_t schemaMinorIndex,
77 uint32_t writeDelayMs = 0,
78 uint32_t maxWriteDelayMs = 0 ) noexcept;
92 size_t getData(
void* dst,
size_t maxDstLen ) noexcept;
95 bool putData( const
void* src,
size_t srcLen ) noexcept;
106 bool flush(
Cpl::Persistent::RecordServer& myRecordsServer ) noexcept;
112 bool erase(
Cpl::Persistent::RecordServer& myRecordsServer ) noexcept;
146 uint8_t previousSchemaMinorIndex,
148 size_t srcLen ) noexcept {
195#define CPL_DM_PERISTENCE_RECORD_USE_SUBSCRIBER ((Cpl::Dm::SubscriberComposer<Record,Cpl::Dm::ModelPoint>*) 1 )
198#define CPL_DM_PERISTENCE_RECORD_NO_SUBSCRIBER ((Cpl::Dm::SubscriberComposer<Record,Cpl::Dm::ModelPoint>*) 0 )
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This mostly abstract class defines the interface for a Model Point.
Definition ModelPoint.h:46
This abstract class define ITC message type and payload for the application to request invalidating/c...
Definition EraseRequest.h:39
This abstract class define ITC message type and payload for the application to request flushing the R...
Definition FlushRequest.h:38
This mostly concrete class implements the Cpl::Persistent::Record interface where a Record instance c...
Definition Record.h:43
bool erase(Cpl::Persistent::RecordServer &myRecordsServer) noexcept
Synchronous Invalidate/logically-erase of the Record in persistent storage.
uint32_t m_delayMs
Delay time, in milliseconds, when updated NVRAM (i.e. 'settling time' after an MP update before writi...
Definition Record.h:176
Record(Item_T itemList[], Cpl::Persistent::Chunk &chunkHandler, uint8_t schemaMajorIndex, uint8_t schemaMinorIndex, uint32_t writeDelayMs=0, uint32_t maxWriteDelayMs=0) noexcept
Constructor.
void stop() noexcept
See Cpl::Persistent::Record.
Item_T * m_items
List of model points.
Definition Record.h:170
void start(Cpl::Dm::MailboxServer &myMbox) noexcept
See Cpl::Persistent::Record.
virtual void updateNVRAM() noexcept
Helper method that is used to initiate the update to the NVRAM.
Cpl::Persistent::Chunk & m_chunkHandler
Chunk handler for the Record.
Definition Record.h:173
Cpl::Dm::SubscriberComposer< Record, Cpl::Dm::ModelPoint > * observerPtr
Place holder to for dynamically allocated Subscriber Instance.
Definition Record.h:51
virtual void hookProcessPostRecordLoaded() noexcept
This method is called when the Record has been successfully loaded into RAM/Model-Points.
Definition Record.h:155
virtual bool resetData() noexcept=0
This method is responsible for updating all of the Model Points in record to their default values.
bool m_started
Remember my started state.
Definition Record.h:191
Cpl::Dm::ModelPoint * mpPtr
Pointer to a Model Point.
Definition Record.h:50
bool putData(const void *src, size_t srcLen) noexcept
See Cpl::Persistent::Payload.
size_t getData(void *dst, size_t maxDstLen) noexcept
See Cpl::Persistent::Payload.
uint8_t m_major
Schema Major version.
Definition Record.h:185
void expired(void) noexcept
Settling timer expired callback.
uint32_t m_timerMarker
Timer marker of the 'first' MP change notification (for a NVRAM update)
Definition Record.h:182
void request(FlushMsg &msg)
See Cpl::Dm::Persistent::FlushRequest.
virtual bool schemaChange(uint8_t previousSchemaMajorIndex, uint8_t previousSchemaMinorIndex, const void *src, size_t srcLen) noexcept
This method is called when the stored record data has different schema indexes.
Definition Record.h:145
size_t getRecordSize() noexcept
Returns the size of record. Does NOT include any meta-data that the Chunk Handler adds.
virtual void dataChanged(Cpl::Dm::ModelPoint &point, Cpl::Dm::SubscriberApi &observer) noexcept
Callback method for Model Point change notifications.
uint32_t m_maxDelayMs
Maximum amount of time, in milliseconds, to delay before updating NVRAM.
Definition Record.h:179
uint8_t m_minor
Schema Minor version.
Definition Record.h:188
bool flush(Cpl::Persistent::RecordServer &myRecordsServer) noexcept
Synchronous Flush/update of the Record to persistent storage.
This data structure associates a Data Model subscriber instance with a Model Point instance.
Definition Record.h:49
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
This template class is a composer pattern/class that manages the callback function for a Model Point'...
Definition SubscriberComposer.h:37
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
This abstract class defines the interface for a Chunk.
Definition Chunk.h:30
This abstract class defines the interface accessing the 'data payload' of an individual Record instan...
Definition Payload.h:29
This abstract class defines the public interface for a Record instance.
Definition Record.h:28
This mostly concrete interface defines the operations that can be performed on a software timer.
Definition Timer.h:47
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20