![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This mostly concrete class implements the Cpl::Persistent::DataRecord interface where a DataRecord instance contains an unmanaged data store. More...
This mostly concrete class implements the Cpl::Persistent::DataRecord interface where a DataRecord instance contains an unmanaged data store.
A final child class is needed to provide the specifics of the 'data store' (i.e. implement the Cpl::Persistent::Payload interface).
The data is only read/written from Persistent storage 'on demand' from the application.
NOTE: This interface/class is NOT THREAD SAFE and should only be 'used' from the Record Server's thread.
#include <DataRecord.h>
Public Member Functions | |
DataRecord (Cpl::Persistent::Chunk &chunkHandler) noexcept | |
Constructor. | |
~DataRecord () | |
Destructor. | |
virtual bool | writeToMedia (size_t index=0) noexcept |
This method is used by the application to write the DataRecord's data to persistent storage. | |
virtual bool | readFromMedia (size_t index=0) noexcept |
This method is used by the application to read the DataRecord's data from persistent storage. | |
void | start (Cpl::Dm::MailboxServer &myMbox) noexcept |
See Cpl::Persistent::DataRecord. | |
void | stop () noexcept |
See Cpl::Persistent::DataRecord. | |
![]() | |
virtual | ~Record () |
Virtual destructor. | |
![]() | |
virtual size_t | getData (void *dst, size_t maxDstLen) noexcept=0 |
This method returns a Record's data payload contents. | |
virtual bool | putData (const void *src, size_t srcLen) noexcept=0 |
This method used to transfer persistently stored data into a Record. | |
virtual | ~Payload () |
Virtual destructor. | |
Protected Member Functions | |
virtual bool | processNoValidData () noexcept=0 |
This method is responsible for updating the 'data store' in RAM to default values. | |
Protected Attributes | |
Cpl::Persistent::Chunk & | m_chunkHandler |
Chunk handler for the DataRecord. | |
bool | m_started |
Remember my started state. | |
|
noexcept |
Constructor.
Cpl::Persistent::DataRecord::~DataRecord | ( | ) |
Destructor.
|
protectedpure virtualnoexcept |
This method is responsible for updating the 'data store' in RAM to default values.
This method is called when there is NO valid data when reading the record's data from persistence storage.
The method returns true if the 'data store' is in an acceptable state and the end of the call; else if there is error or there is no acceptable state of the 'data store' then false is returned
Implemented in Cpl::Persistent::IndexedEntryRecord, and Cpl::Persistent::IndexRecord.
|
virtualnoexcept |
This method is used by the application to read the DataRecord's data from persistent storage.
Note: This method calls the DataRecord's putData() method with the data read from persistent storage.
The 'index' offset can be used to 'index into' the RegionMedia instead of starting at offset zero. This argument should only be used when multiple instances of a Record is being stored in a single region.
The method returns true on success; else false if an error occurred
NOTE: This method is NOT THREAD SAFE and should only be called from the Record Server's thread.
|
virtualnoexcept |
See Cpl::Persistent::DataRecord.
Implements Cpl::Persistent::Record.
Reimplemented in Cpl::Persistent::IndexedEntryRecord, and Cpl::Persistent::IndexRecord.
|
virtualnoexcept |
See Cpl::Persistent::DataRecord.
Implements Cpl::Persistent::Record.
Reimplemented in Cpl::Persistent::IndexedEntryRecord, and Cpl::Persistent::IndexRecord.
|
virtualnoexcept |
This method is used by the application to write the DataRecord's data to persistent storage.
Note: This method calls the DataRecord's getData() method for the data to write to persistent storage.
The 'index' offset can be used to 'index into' the RegionMedia instead of starting at offset zero. This argument should only be used when multiple instances of a Record is being stored in a single region.
The method returns true on success; else false if an error occurred.
NOTE: This method is NOT THREAD SAFE and should only be called from the Record Server's thread.
|
protected |
Chunk handler for the DataRecord.
|
protected |
Remember my started state.