![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines interface for reading/retrieve 'entries' from a a collection of entries (i.e. More...
This abstract class defines interface for reading/retrieve 'entries' from a a collection of entries (i.e.
read an entry from a IndexedEntryRecord).
From a logical perspective, 'entries' are stored in a Ring Buffer. The Ring Buffer can be 'traversed' from the either end (i.e. oldest to newest, or newest to oldest).
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: ALL entries (for a given IndexEntryRecord) must be the same fixed length.
NOTE: This interface/class is NOT THREAD SAFE and should only be 'used' from the Record Server's thread.
#include <IndexedEntryReader.h>
Classes | |
struct | EntryMarker_T |
This structure define an 'marker' that identifies an entry's location in persistent media. More... | |
Public Member Functions | |
virtual bool | getLatest (Payload &dst, EntryMarker_T &entryMarker) noexcept=0 |
This method reads/retrieves the latest entry (from the list of Indexed Entries) stored in the persistent media. | |
virtual bool | getNext (uint64_t newerThan, const EntryMarker_T beginHereMarker, Payload &dst, EntryMarker_T &entryMarker) noexcept=0 |
This method walks the entire 'list of entries' and returns the next newer entry as specified by the 'newerThan' value. | |
virtual bool | getPrevious (uint64_t olderThan, const EntryMarker_T beginHereMarker, Payload &dst, EntryMarker_T &entryMarker) noexcept=0 |
This method is similar to getNext(), except that it returns the next oldest entry. | |
virtual bool | getByBufferIndex (size_t bufferIndex, Payload &dst, EntryMarker_T &entryMarker) noexcept=0 |
This method can be used to read an entry by its 'buffer index'. | |
virtual size_t | getMaxIndex () const noexcept=0 |
This method returns the maximum allowed 'bufferIndex' when calling getByIndex(). | |
virtual | ~IndexedEntryReader () |
Virtual destructor. | |
struct Cpl::Persistent::IndexedEntryReader::EntryMarker_T |
This structure define an 'marker' that identifies an entry's location in persistent media.
Class Members | ||
---|---|---|
uint64_t | indexValue | The index/timestamp value for the entry (Note: This is NOT the 'Buffer Index' used by the getByBufferIndex() call) |
size_t | mediaOffset | Offset, within a RegionMedia to the start of the Entry. |
|
inlinevirtual |
Virtual destructor.
|
pure virtualnoexcept |
This method can be used to read an entry by its 'buffer index'.
The buffer index is a zero based index.
Returns true if the entry at 'bufferIndex' is a valid entry; else false is returned. Note: if 'bufferIndex' is out of range, false is returned.
NOTE: 'dst' is ALWAYS updated EVEN if no valid entry was 'found', basically 'dst' is used as a work buffer when traversing the list.
|
pure virtualnoexcept |
This method reads/retrieves the latest entry (from the list of Indexed Entries) stored in the persistent media.
The method is synchronous in that the method does not return until the entry has been 'read' from the persistent media.
Returns true if the latest entry is valid and has been read into 'dst'; else false is returned.
NOTE: When getLatest() returns false, this means there are NO entries stored.
NOTE: 'dst' is ALWAYS updated EVEN if no entry was 'found', basically 'dst' is used as a work buffer when traversing the list.
|
pure virtualnoexcept |
This method returns the maximum allowed 'bufferIndex' when calling getByIndex().
|
pure virtualnoexcept |
This method walks the entire 'list of entries' and returns the next newer entry as specified by the 'newerThan' value.
The traversal starts with the 'beginHereMarker' The method is synchronous in that the method does not return until the entry has been 'read' from the persistent media.
Returns true if the 'next' entry was found and has been read into 'dst'; else false is returned.
NOTE: 'dst' is ALWAYS updated EVEN if no entry was 'found', basically 'dst' is used as a work buffer when traversing the list.
|
pure virtualnoexcept |
This method is similar to getNext(), except that it returns the next oldest entry.