This concrete class implements the Cpl::Persistent::Record interface to store a collection 'entries'.
All 'entries' are required to the same/fixed length. A single Chunk handler is used to read/write all of the entries.
The content of the entry data is defined by a single instance of a application specific child class of the Cpl::Persistent::Payload class.
The individual entries are logically stored in a Ring Buffer. This means that once the Ring Buffer is full (i.e. all of the space available in the RegionMedia has been written to) older entries are over written when there is request to write a new entry. In addition a 'secondary record' (with its own chunk handler) is used to persistently store the 'head pointer' of the Ring Buffer.
NOTE: The 'secondary record' is wholly managed by the IndexedEntryRecord, i.e. the secondary record instance should NOT be directly added to the Record Server's list of records to manage.
A 'index value' is associated with each entry. The index value is a free running counter that is used to determine the relative age between entries. The larger an 'index value' is, the newer the entry is.
NOTE: This interface/class is NOT THREAD SAFE and should only be 'used' from the Record Server's thread.
|
| IndexedEntryRecord (Chunk &entryChunkHandler, size_t singleEntrySizeInBytes, RegionMedia &entryRegion, IndexRecord &secondaryRecord, Cpl::Dm::Mp::Uint64 &mpForLatestIndexValue) noexcept |
| Constructor.
|
|
void | start (Cpl::Dm::MailboxServer &myMbox) noexcept |
| See Cpl::Persistent::Record.
|
|
void | stop () noexcept |
| See Cpl::Persistent::Record.
|
|
size_t | getData (void *dst, size_t maxDstLen) noexcept |
| See Cpl::Persistent::Payload (this is for 'entry' payload)
|
|
bool | putData (const void *src, size_t srcLen) noexcept |
| See Cpl::Persistent::Payload (this is for 'entry' payload)
|
|
bool | processNoValidData () noexcept |
| See Cpl::Persistent::DataRecord.
|
|
bool | addEntry (const Payload &src) noexcept |
| See Cpl::Persistent::IndexedEntryWriter.
|
|
bool | clearAllEntries () noexcept |
| See Cpl::Persistent::IndexedEntryWriter.
|
|
bool | getLatest (Payload &dst, IndexedEntryReader::EntryMarker_T &entryMarker) noexcept |
| See Cpl::Persistent::IndexedEntryReader.
|
|
bool | getNext (uint64_t newerThan, const IndexedEntryReader::EntryMarker_T beginHereMarker, Payload &dst, IndexedEntryReader::EntryMarker_T &entryMarker) noexcept |
| See Cpl::Persistent::IndexedEntryReader.
|
|
bool | getPrevious (uint64_t olderThan, const IndexedEntryReader::EntryMarker_T beginHereMarker, Payload &dst, IndexedEntryReader::EntryMarker_T &entryMarker) noexcept |
| See Cpl::Persistent::IndexedEntryReader.
|
|
bool | getByBufferIndex (size_t bufferIndex, Payload &dst, IndexedEntryReader::EntryMarker_T &entryMarker) noexcept |
| See Cpl::Persistent::IndexedEntryReader.
|
|
size_t | getMaxIndex () const noexcept |
| See Cpl::Persistent::IndexedEntryReader.
|
|
size_t | getMetadataLength () const noexcept |
| Helper method: returns the size of 'meta-data' that is added to entry.
|
|
| 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.
|
|
|
void | verifyIndex () noexcept |
| Helper method: Verifies the 'correctness' of the index/head pointer and 'fixes' the head pointer if it is 'bad'.
|
|
void | scanAllEntries () |
| Helper method: scans all of the 'flash' and returns the newest value found. If no valid entries found - everything is set to zero.
|
|
size_t | incrementOffset (size_t offsetToIncrement) const noexcept |
| Helper method: 'increments' the offset by the size of entry (and handles the 'roll-over' case)
|
|
size_t | decrementOffset (size_t offsetToDecrement) const noexcept |
| Helper method: 'decrements' the offset by the size of entry (and handles the 'roll-over' case)
|
|
bool | getByOffset (size_t offset, Payload &dst, IndexedEntryReader::EntryMarker_T &entryMarker) noexcept |
| Helper method: get an entry by its offset.
|
|