![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class extends the Cpl::Persistent::DataRecord interface to store a latest/oldest 'record index' into a RegionMedia. More...
This concrete class extends the Cpl::Persistent::DataRecord interface to store a latest/oldest 'record index' into a RegionMedia.
This class is for tracking the head pointer (so to speak) of a collection of IndexedEntryRecords.
From a logical perspective, IndexedEntryRecords are stored in a Ring Buffer and when the buffer is full, the oldest entry/records are overwritten. The head pointer of this logical ring buffer is stored in this class.
Each entry that is stored has an 'index' value associated with it. This 'index' is used to uniquely identify each entry (even across overwritten entries) and it is used to identify the relative age between the entries.
NOTE: The index value for the oldest entry is NOT tracked by the Index Record
NOTE: This class should not be used/directly access by the Application. The methods are public to facilitate use by the Cpl::Persistent namespace ONLY
NOTE: This class can be extended by an application specific child class to add additional information to be stored with the index offsets.
NOTE: This interface/class is NOT THREAD SAFE and should only be 'used' from the Record Server's thread.
#include <IndexRecord.h>
Public Member Functions | |
IndexRecord (Cpl::Persistent::Chunk &chunkHandler) noexcept | |
Constructor. | |
virtual bool | getLatestOffset (size_t &offset, uint64_t &indexValue) const noexcept |
This method returns the 'offset-index' (starting from the start of RegionMedia used for the entries) of the most recently written Indexed Entry. | |
virtual void | setLatestOffset (size_t offset, uint64_t indexValue) noexcept |
This method updates/sets the 'offset-index' (starting from the start of RegionMedia used for the entries) of the most recently written Indexed Entry. | |
size_t | getPayloadSize () const noexcept |
Helper method: returns the length of the payload. | |
void | start (Cpl::Dm::MailboxServer &myMbox) noexcept |
See Cpl::Persistent::DataRecord. | |
void | stop () noexcept |
See Cpl::Persistent::DataRecord. | |
size_t | getData (void *dst, size_t maxDstLen) noexcept |
Default Payload method: payload is the 2 offset-index values. | |
bool | putData (const void *src, size_t srcLen) noexcept |
Default Payload method: payload is the 2 offset-index values. | |
bool | processNoValidData () noexcept |
Default Method: Simply resets both the head/tail pointers to ZERO. | |
![]() | |
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. | |
![]() | |
virtual | ~Record () |
Virtual destructor. | |
![]() | |
virtual | ~Payload () |
Virtual destructor. | |
Protected Attributes | |
uint64_t | m_latestIndex |
Index of the latest entry. | |
size_t | m_latest |
Offset for the latest entry. | |
bool | m_validLatest |
Flag that indicates the state of offsets. | |
![]() | |
Cpl::Persistent::Chunk & | m_chunkHandler |
Chunk handler for the DataRecord. | |
bool | m_started |
Remember my started state. | |
Additional Inherited Members |
|
noexcept |
Constructor.
|
virtualnoexcept |
Default Payload method: payload is the 2 offset-index values.
Implements Cpl::Persistent::Payload.
|
virtualnoexcept |
This method returns the 'offset-index' (starting from the start of RegionMedia used for the entries) of the most recently written Indexed Entry.
Returns true if there is at least 'entry' persistent stored; else false is returned;
|
noexcept |
Helper method: returns the length of the payload.
|
virtualnoexcept |
Default Method: Simply resets both the head/tail pointers to ZERO.
Implements Cpl::Persistent::DataRecord.
|
virtualnoexcept |
Default Payload method: payload is the 2 offset-index values.
Implements Cpl::Persistent::Payload.
|
virtualnoexcept |
This method updates/sets the 'offset-index' (starting from the start of RegionMedia used for the entries) of the most recently written Indexed Entry.
|
virtualnoexcept |
See Cpl::Persistent::DataRecord.
Reimplemented from Cpl::Persistent::DataRecord.
|
virtualnoexcept |
See Cpl::Persistent::DataRecord.
Reimplemented from Cpl::Persistent::DataRecord.
|
protected |
Offset for the latest entry.
|
protected |
Index of the latest entry.
|
protected |
Flag that indicates the state of offsets.