GM6000 Digital Heater Controller Branch: main
SDX-1330
IndexRecord.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Persistent_IndexRecord_h_
2#define Cpl_Dm_Persistent_IndexRecord_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
16
17///
18namespace Cpl {
19///
20namespace Persistent {
21
22/** This concrete class extends the Cpl::Persistent::DataRecord interface
23 to store a latest/oldest 'record index' into a RegionMedia. This class
24 is for tracking the head pointer (so to speak) of a collection of
25 IndexedEntryRecords.
26
27 From a logical perspective, IndexedEntryRecords are stored in a Ring Buffer
28 and when the buffer is full, the oldest entry/records are overwritten. The
29 head pointer of this logical ring buffer is stored in this class.
30
31 Each entry that is stored has an 'index' value associated with it. This
32 'index' is used to uniquely identify each entry (even across overwritten
33 entries) and it is used to identify the relative age between the entries.
34
35 NOTE: The index value for the oldest entry is NOT tracked by the Index Record
36
37 NOTE: This class should not be used/directly access by the Application. The
38 methods are public to facilitate use by the Cpl::Persistent namespace
39 ONLY
40
41 NOTE: This class can be extended by an application specific child class to
42 add additional information to be stored with the index offsets.
43
44 NOTE: This interface/class is NOT THREAD SAFE and should only be 'used' from
45 the Record Server's thread.
46 */
47class IndexRecord : public DataRecord
48{
49public:
50 /// Constructor.
51 IndexRecord( Cpl::Persistent::Chunk& chunkHandler ) noexcept;
52
53
54public:
55 /** This method returns the 'offset-index' (starting from the start of
56 RegionMedia used for the entries) of the most recently written
57 Indexed Entry.
58
59 Returns true if there is at least 'entry' persistent stored; else
60 false is returned;
61 */
62 virtual bool getLatestOffset( size_t& offset, uint64_t& indexValue ) const noexcept;
63
64
65public:
66 /** This method updates/sets the 'offset-index' (starting from the start of
67 RegionMedia used for the entries) of the most recently written
68 Indexed Entry.
69 */
70 virtual void setLatestOffset( size_t offset, uint64_t indexValue ) noexcept;
71
72
73public:
74 /// Helper method: returns the length of the payload
75 size_t getPayloadSize() const noexcept;
76
77public:
78 /// See Cpl::Persistent::DataRecord
79 void start( Cpl::Dm::MailboxServer& myMbox ) noexcept;
80
81 /// See Cpl::Persistent::DataRecord
82 void stop() noexcept;
83
84public:
85 /// Default Payload method: payload is the 2 offset-index values
86 size_t getData( void* dst, size_t maxDstLen ) noexcept;
87
88 /// Default Payload method: payload is the 2 offset-index values
89 bool putData( const void* src, size_t srcLen ) noexcept;
90
91public:
92 /// Default Method: Simply resets both the head/tail pointers to ZERO
93 bool processNoValidData() noexcept;
94
95
96protected:
97 /// Index of the latest entry
98 uint64_t m_latestIndex;
99
100 /// Offset for the latest entry
101 size_t m_latest;
102
103 /// Flag that indicates the state of offsets
105};
106
107
108
109}; // end namespaces
110};
111#endif // end header latch
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
bool putData(const void *src, size_t srcLen) noexcept
Default Payload method: payload is the 2 offset-index values.
size_t m_latest
Offset for the latest entry.
Definition IndexRecord.h:101
size_t getPayloadSize() const noexcept
Helper method: returns the length of the payload.
bool m_validLatest
Flag that indicates the state of offsets.
Definition IndexRecord.h:104
bool processNoValidData() noexcept
Default Method: Simply resets both the head/tail pointers to ZERO.
void stop() noexcept
See Cpl::Persistent::DataRecord.
void start(Cpl::Dm::MailboxServer &myMbox) noexcept
See Cpl::Persistent::DataRecord.
uint64_t m_latestIndex
Index of the latest entry.
Definition IndexRecord.h:98
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) ...
IndexRecord(Cpl::Persistent::Chunk &chunkHandler) noexcept
Constructor.
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 entr...
size_t getData(void *dst, size_t maxDstLen) noexcept
Default Payload method: payload is the 2 offset-index values.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20