![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class implements the Chunk interface by storing two copies of the Record's data. More...
This concrete class implements the Chunk interface by storing two copies of the Record's data.
This ensures that if power fails during a write operation to persistent media - there will also be a good 'previous' copy of the data available.
#include <MirroredChunk.h>
Public Member Functions | |
MirroredChunk (RegionMedia ®ionA, RegionMedia ®ionB) | |
Constructor. | |
void | start (Cpl::Dm::MailboxServer &myMbox) noexcept |
See Cpl::Persistent::Chunk. | |
void | stop () noexcept |
See Cpl::Persistent::Chunk. | |
bool | loadData (Payload &dstHandler, size_t index=0) noexcept |
See Cpl::Persistent::Chunk. | |
bool | updateData (Payload &srcHandler, size_t index=0, bool invalidate=false) noexcept |
See Cpl::Persistent::Chunk. | |
size_t | getMetadataLength () const noexcept |
See Cpl::Persistent::Chunk. | |
![]() | |
virtual | ~Chunk () |
Virtual destructor. | |
Static Public Attributes | |
static constexpr size_t | FRAME_OFFSET_DATA_LEN = sizeof(uint64_t) |
Length of the data. | |
static constexpr size_t | FRAME_OFFSET_DATA = sizeof( size_t ) + FRAME_OFFSET_DATA_LEN |
Start of data (aka overhead length) | |
static constexpr size_t | CRC_SIZE = sizeof( uint32_t ) |
The size of the CRC. | |
static constexpr size_t | FRAME_OVERHEAD = FRAME_OFFSET_DATA + CRC_SIZE |
Total overhead size. | |
Protected Member Functions | |
virtual uint64_t | getTransactionId (RegionMedia ®ion, size_t &dataLen, size_t index=0) |
Helper method. If the region is 'corrupt' a transaction ID of zero is returned. | |
virtual bool | pushToRecord (Payload &dstHandler) |
Helper method. Encapsulates pushing data to the record. | |
virtual size_t | pullFromRecord (Payload &srcHandler) |
Helper method. Encapsulates retrieving data from the record. Returns the length of the data. | |
virtual void | reset () |
Helper method. Encapsulates actions that occur when there is NO VALID data. | |
Protected Attributes | |
RegionMedia & | m_regionA |
Region/Media for copy A. | |
RegionMedia & | m_regionB |
Region/Media for copy B. | |
uint64_t | m_transId |
Current Transaction ID (the larger the value - the newer the data) | |
size_t | m_dataLen |
Data Length for the region. | |
RegionMedia * | m_currentRegion |
Pointer to the current region (i.e. newest read/written region) | |
Cpl::Persistent::MirroredChunk::MirroredChunk | ( | RegionMedia & | regionA, |
RegionMedia & | regionB | ||
) |
Constructor.
|
virtualnoexcept |
Implements Cpl::Persistent::Chunk.
|
protectedvirtual |
Helper method. If the region is 'corrupt' a transaction ID of zero is returned.
|
virtualnoexcept |
Implements Cpl::Persistent::Chunk.
|
protectedvirtual |
Helper method. Encapsulates retrieving data from the record. Returns the length of the data.
|
protectedvirtual |
Helper method. Encapsulates pushing data to the record.
|
protectedvirtual |
Helper method. Encapsulates actions that occur when there is NO VALID data.
|
virtualnoexcept |
Implements Cpl::Persistent::Chunk.
|
virtualnoexcept |
Implements Cpl::Persistent::Chunk.
|
virtualnoexcept |
Implements Cpl::Persistent::Chunk.
|
staticconstexpr |
The size of the CRC.
|
staticconstexpr |
Start of data (aka overhead length)
|
staticconstexpr |
Length of the data.
|
staticconstexpr |
Total overhead size.
|
protected |
Pointer to the current region (i.e. newest read/written region)
|
protected |
Data Length for the region.
|
protected |
Region/Media for copy A.
|
protected |
Region/Media for copy B.
|
protected |
Current Transaction ID (the larger the value - the newer the data)