GM6000 Digital Heater Controller Branch: main
SDX-1330
MirroredChunk.h
Go to the documentation of this file.
1#ifndef Cpl_Persistent_Mirrored_Chunk_h_
2#define Cpl_Persistent_Mirrored_Chunk_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
15
18#include <stdint.h>
19
20///
21namespace Cpl {
22///
23namespace Persistent {
24
25
26/** This concrete class implements the Chunk interface by storing two copies
27 of the Record's data. This ensures that if power fails during a write
28 operation to persistent media - there will also be a good 'previous' copy
29 of the data available.
30 */
31class MirroredChunk: public Chunk
32{
33public:
34 /// Length of the data
35 constexpr static size_t FRAME_OFFSET_DATA_LEN = sizeof(uint64_t);
36
37 /// Start of data (aka overhead length)
38 constexpr static size_t FRAME_OFFSET_DATA = sizeof( size_t ) + FRAME_OFFSET_DATA_LEN;
39
40 /// The size of the CRC
41 constexpr static size_t CRC_SIZE = sizeof( uint32_t );
42
43 /// Total overhead size
44 constexpr static size_t FRAME_OVERHEAD = FRAME_OFFSET_DATA + CRC_SIZE;
45
46
47public:
48 /// Constructor
49 MirroredChunk( RegionMedia& regionA, RegionMedia& regionB );
50
51public:
52 /// See Cpl::Persistent::Chunk
53 void start( Cpl::Dm::MailboxServer& myMbox ) noexcept;
54
55 /// See Cpl::Persistent::Chunk
56 void stop() noexcept;
57
58 /// See Cpl::Persistent::Chunk
59 bool loadData( Payload& dstHandler, size_t index=0 ) noexcept;
60
61 /// See Cpl::Persistent::Chunk
62 bool updateData( Payload& srcHandler, size_t index=0, bool invalidate=false ) noexcept;
63
64 /// See Cpl::Persistent::Chunk
65 size_t getMetadataLength() const noexcept;
66
67protected:
68 /// Helper method. If the region is 'corrupt' a transaction ID of zero is returned
69 uint64_t virtual getTransactionId( RegionMedia& region, size_t& dataLen, size_t index=0 );
70
71 /// Helper method. Encapsulates pushing data to the record
72 virtual bool pushToRecord(Payload& dstHandler);
73
74 /// Helper method. Encapsulates retrieving data from the record. Returns the length of the data
75 virtual size_t pullFromRecord( Payload& srcHandler );
76
77 /// Helper method. Encapsulates actions that occur when there is NO VALID data
78 virtual void reset();
79
80
81protected:
82 /// Region/Media for copy A
84
85 /// Region/Media for copy B
87
88 /// Current Transaction ID (the larger the value - the newer the data)
89 uint64_t m_transId;
90
91 /// Data Length for the region
92 size_t m_dataLen;
93
94 /// Pointer to the current region (i.e. newest read/written region)
96
97};
98
99
100}; // end namespaces
101};
102#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 abstract class defines the interface for a Chunk.
Definition Chunk.h:30
This concrete class implements the Chunk interface by storing two copies of the Record's data.
Definition MirroredChunk.h:32
virtual size_t pullFromRecord(Payload &srcHandler)
Helper method. Encapsulates retrieving data from the record. Returns the length of the data.
MirroredChunk(RegionMedia &regionA, RegionMedia &regionB)
Constructor.
virtual uint64_t getTransactionId(RegionMedia &region, size_t &dataLen, size_t index=0)
Helper method. If the region is 'corrupt' a transaction ID of zero is returned.
size_t getMetadataLength() const noexcept
See Cpl::Persistent::Chunk.
bool updateData(Payload &srcHandler, size_t index=0, bool invalidate=false) noexcept
See Cpl::Persistent::Chunk.
void start(Cpl::Dm::MailboxServer &myMbox) noexcept
See Cpl::Persistent::Chunk.
static constexpr size_t FRAME_OVERHEAD
Total overhead size.
Definition MirroredChunk.h:44
RegionMedia & m_regionB
Region/Media for copy B.
Definition MirroredChunk.h:86
uint64_t m_transId
Current Transaction ID (the larger the value - the newer the data)
Definition MirroredChunk.h:89
size_t m_dataLen
Data Length for the region.
Definition MirroredChunk.h:92
static constexpr size_t FRAME_OFFSET_DATA_LEN
Length of the data.
Definition MirroredChunk.h:35
virtual bool pushToRecord(Payload &dstHandler)
Helper method. Encapsulates pushing data to the record.
static constexpr size_t FRAME_OFFSET_DATA
Start of data (aka overhead length)
Definition MirroredChunk.h:38
bool loadData(Payload &dstHandler, size_t index=0) noexcept
See Cpl::Persistent::Chunk.
RegionMedia & m_regionA
Region/Media for copy A.
Definition MirroredChunk.h:83
static constexpr size_t CRC_SIZE
The size of the CRC.
Definition MirroredChunk.h:41
virtual void reset()
Helper method. Encapsulates actions that occur when there is NO VALID data.
void stop() noexcept
See Cpl::Persistent::Chunk.
RegionMedia * m_currentRegion
Pointer to the current region (i.e. newest read/written region)
Definition MirroredChunk.h:95
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