1#ifndef Cpl_Dm_Persistent_IndexEntryRecord_h_
2#define Cpl_Dm_Persistent_IndexEntryRecord_h_
57 size_t singleEntrySizeInBytes,
71 size_t getData(
void* dst,
size_t maxDstLen ) noexcept;
74 bool putData( const
void* src,
size_t srcLen ) noexcept;
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This class provides a concrete implementation for a Point who's data is a uint64_t.
Definition Uint64.h:42
This abstract class defines the interface for a Chunk.
Definition Chunk.h:30
This mostly concrete class implements the Cpl::Persistent::DataRecord interface where a DataRecord in...
Definition DataRecord.h:36
This concrete class extends the Cpl::Persistent::DataRecord interface to store a latest/oldest 'recor...
Definition IndexRecord.h:48
This abstract class defines interface for reading/retrieve 'entries' from a a collection of entries (...
Definition IndexedEntryReader.h:41
This concrete class implements the Cpl::Persistent::Record interface to store a collection 'entries'.
Definition IndexedEntryRecord.h:53
size_t m_maxEntries
Maximum number of entry that can be stored in the allocated space.
Definition IndexedEntryRecord.h:156
bool clearAllEntries() noexcept
See Cpl::Persistent::IndexedEntryWriter.
size_t getData(void *dst, size_t maxDstLen) noexcept
See Cpl::Persistent::Payload (this is for 'entry' payload)
IndexRecord & m_indexRecord
Index record for storing head/tail pointers.
Definition IndexedEntryRecord.h:144
size_t m_latestOffset
Offset of the latest record.
Definition IndexedEntryRecord.h:162
size_t getMaxIndex() const 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.
Cpl::Dm::Mp::Uint64 & m_mpIndex
Model point to report out the Newest index value.
Definition IndexedEntryRecord.h:141
bool getByBufferIndex(size_t bufferIndex, Payload &dst, IndexedEntryReader::EntryMarker_T &entryMarker) noexcept
See Cpl::Persistent::IndexedEntryReader.
bool addEntry(const Payload &src) noexcept
See Cpl::Persistent::IndexedEntryWriter.
void stop() noexcept
See Cpl::Persistent::Record.
size_t m_maxOffset
The maximum offset value that can be used to store entry without exceeded the allocate entry space.
Definition IndexedEntryRecord.h:159
IndexedEntryRecord(Chunk &entryChunkHandler, size_t singleEntrySizeInBytes, RegionMedia &entryRegion, IndexRecord &secondaryRecord, Cpl::Dm::Mp::Uint64 &mpForLatestIndexValue) noexcept
Constructor.
bool putData(const void *src, size_t srcLen) noexcept
See Cpl::Persistent::Payload (this is for 'entry' payload)
void scanAllEntries()
Helper method: scans all of the 'flash' and returns the newest value found. If no valid entries found...
size_t m_entrySize
Size, in bytes, of individual Entry.
Definition IndexedEntryRecord.h:153
void verifyIndex() noexcept
Helper method: Verifies the 'correctness' of the index/head pointer and 'fixes' the head pointer if i...
void start(Cpl::Dm::MailboxServer &myMbox) noexcept
See Cpl::Persistent::Record.
bool processNoValidData() noexcept
See Cpl::Persistent::DataRecord.
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.
uint64_t m_latestTimestamp
Index value of the latest record.
Definition IndexedEntryRecord.h:135
size_t incrementOffset(size_t offsetToIncrement) const noexcept
Helper method: 'increments' the offset by the size of entry (and handles the 'roll-over' case)
uint64_t m_entryTimestamp
Index value to store/push when reading/writing an entry to persistent storage.
Definition IndexedEntryRecord.h:138
size_t getMetadataLength() const noexcept
Helper method: returns the size of 'meta-data' that is added to entry.
RegionMedia & m_entryRegion
Handle the region used for the entries.
Definition IndexedEntryRecord.h:147
Payload * m_entryPayloadHandlerPtr
Application specific Payload handler for an entry.
Definition IndexedEntryRecord.h:150
bool getLatest(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.
This abstract class defines the interface accessing the 'data payload' of an individual Record instan...
Definition Payload.h:29
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20