GM6000 Digital Heater Controller Branch: main
SDX-1330
IndexedEntryRecord.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Persistent_IndexEntryRecord_h_
2#define Cpl_Dm_Persistent_IndexEntryRecord_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
20#include "Cpl/Dm/Mp/Uint64.h"
21
22///
23namespace Cpl {
24///
25namespace Persistent {
26
27/** This concrete class implements the Cpl::Persistent::Record interface
28 to store a collection 'entries'. All 'entries' are required to the same/fixed
29 length. A single Chunk handler is used to read/write all of the entries.
30
31 The content of the entry data is defined by a single instance of a application
32 specific child class of the Cpl::Persistent::Payload class.
33
34 The individual entries are logically stored in a Ring Buffer. This means that
35 once the Ring Buffer is full (i.e. all of the space available in the
36 RegionMedia has been written to) older entries are over written when there
37 is request to write a new entry. In addition a 'secondary record' (with its
38 own chunk handler) is used to persistently store the 'head pointer' of
39 the Ring Buffer.
40
41 NOTE: The 'secondary record' is wholly managed by the IndexedEntryRecord, i.e.
42 the secondary record instance should NOT be directly added to the Record
43 Server's list of records to manage.
44
45 A 'index value' is associated with each entry. The index value is a free
46 running counter that is used to determine the relative age between entries.
47 The larger an 'index value' is, the newer the entry is.
48
49 NOTE: This interface/class is NOT THREAD SAFE and should only be 'used' from
50 the Record Server's thread.
51 */
53{
54public:
55 /// Constructor.
56 IndexedEntryRecord( Chunk& entryChunkHandler,
57 size_t singleEntrySizeInBytes,
58 RegionMedia& entryRegion,
59 IndexRecord& secondaryRecord,
60 Cpl::Dm::Mp::Uint64& mpForLatestIndexValue ) noexcept;
61
62public:
63 /// See Cpl::Persistent::Record
64 void start( Cpl::Dm::MailboxServer& myMbox ) noexcept;
65
66 /// See Cpl::Persistent::Record
67 void stop() noexcept;
68
69public:
70 /// See Cpl::Persistent::Payload (this is for 'entry' payload)
71 size_t getData( void* dst, size_t maxDstLen ) noexcept;
72
73 /// See Cpl::Persistent::Payload (this is for 'entry' payload)
74 bool putData( const void* src, size_t srcLen ) noexcept;
75
76 /// See Cpl::Persistent::DataRecord
77 bool processNoValidData() noexcept;
78
79public:
80 /// See Cpl::Persistent::IndexedEntryWriter
81 bool addEntry( const Payload& src ) noexcept;
82
83 /// See Cpl::Persistent::IndexedEntryWriter
84 bool clearAllEntries() noexcept;
85
86public:
87 /// See Cpl::Persistent::IndexedEntryReader
88 bool getLatest( Payload& dst, IndexedEntryReader::EntryMarker_T& entryMarker ) noexcept;
89
90 /// See Cpl::Persistent::IndexedEntryReader
91 bool getNext( uint64_t newerThan,
92 const IndexedEntryReader::EntryMarker_T beginHereMarker,
93 Payload& dst,
94 IndexedEntryReader::EntryMarker_T& entryMarker ) noexcept;
95
96 /// See Cpl::Persistent::IndexedEntryReader
97 bool getPrevious( uint64_t olderThan,
98 const IndexedEntryReader::EntryMarker_T beginHereMarker,
99 Payload& dst,
100 IndexedEntryReader::EntryMarker_T& entryMarker ) noexcept;
101
102 /// See Cpl::Persistent::IndexedEntryReader
103 bool getByBufferIndex( size_t bufferIndex,
104 Payload& dst,
105 IndexedEntryReader::EntryMarker_T& entryMarker ) noexcept;
106
107
108 /// See Cpl::Persistent::IndexedEntryReader
109 size_t getMaxIndex() const noexcept;
110
111protected:
112 /// Helper method: Verifies the 'correctness' of the index/head pointer and 'fixes' the head pointer if it is 'bad'
113 void verifyIndex() noexcept;
114
115 /// Helper method: scans all of the 'flash' and returns the newest value found. If no valid entries found - everything is set to zero
117
118 /// Helper method: 'increments' the offset by the size of entry (and handles the 'roll-over' case)
119 size_t incrementOffset( size_t offsetToIncrement ) const noexcept;
120
121 /// Helper method: 'decrements' the offset by the size of entry (and handles the 'roll-over' case)
122 size_t decrementOffset( size_t offsetToDecrement ) const noexcept;
123
124 /// Helper method: get an entry by its offset
125 bool getByOffset( size_t offset,
126 Payload& dst,
127 IndexedEntryReader::EntryMarker_T& entryMarker ) noexcept;
128
129public:
130 /// Helper method: returns the size of 'meta-data' that is added to entry
131 size_t getMetadataLength() const noexcept;
132
133protected:
134 /// Index value of the latest record
136
137 /// Index value to store/push when reading/writing an entry to persistent storage
139
140 /// Model point to report out the Newest index value
141 Cpl::Dm::Mp::Uint64& m_mpIndex;
142
143 /// Index record for storing head/tail pointers
145
146 /// Handle the region used for the entries
148
149 /// Application specific Payload handler for an entry
151
152 /// Size, in bytes, of individual Entry
154
155 /// Maximum number of entry that can be stored in the allocated space
157
158 /// The maximum offset value that can be used to store entry without exceeded the allocate entry space
160
161 /// Offset of the latest record
163};
164
165
166
167}; // end namespaces
168};
169#endif // end header latch
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
This mostly abstract class defines the operations that can be performed on a persistent media.
Definition RegionMedia.h:33
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20