GM6000 Digital Heater Controller Branch: main
SDX-1330
Chunk.h
Go to the documentation of this file.
1#ifndef Cpl_Persistent_Chunk_h_
2#define Cpl_Persistent_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
19///
20namespace Cpl {
21///
22namespace Persistent {
23
24
25/** This abstract class defines the interface for a Chunk. A Chunk is responsible
26 for managing the meta-data (e.g. CRC) associated with a Record's data. There
27 is one-to-one relationship between a Chunk and Record instances.
28 */
29class Chunk
30{
31public:
32 /** This method is to start/initialize the chunk. It is typically only
33 called once at the startup of the application. However, start() can be
34 called after a previous call to the stop() method.
35
36 This method is called when the corresponding Record instance is 'started'
37
38 The 'myMbox' is reference to the RecordServer's DM/ITC mailbox, i.e. the
39 mailbox for the thread that the Chunk executes in.
40 */
41 virtual void start( Cpl::Dm::MailboxServer& myMbox ) noexcept = 0;
42
43 /** This method is to stop/shutdown the chunk. It is typically only
44 called once during an orderly shutdown of the application. However,
45 start() can be after a previous call to the stop() method.
46 */
47 virtual void stop() noexcept = 0;
48
49
50public:
51 /** This method is used to initiate the sequence to retrieve a Record's
52 data from persistent storage. This method should ONLY be called once
53 (after start() has been called) to load its data into RAM.
54
55 The 'index' offset can be used by the Chunk client to 'index into' the
56 Chunk's region instead of starting at offset zero. This argument should
57 only be used when multiple instances of a Record is being stored in
58 a single region.
59
60 The method returns true if the read operation was successful and that
61 the CRC for the data is valid; else false is returned
62 */
63 virtual bool loadData( Payload& dstHandler, size_t index=0 ) noexcept = 0;
64
65 /** This method is used to update persistent storage with new data for the
66 Record. The entire record is written/updated when this call is made.
67 The method does not return until the write operation has completed.
68
69 If the 'invalidate' argument is true, the instead of writing the
70 new data to persistent storage, all binary zero's are written AND in
71 incorrect CRC is written. This effectively erases the Record, i.e. the
72 next time the record is loaded, it will fail because the chunk data is
73 NOT valid.
74
75 The 'index' offset can be used by the Chunk client to 'index into' the
76 Chunk's region instead of starting at offset zero. This argument should
77 only be used when multiple instances of a Record is being stored in
78 a single region.
79
80 The method returns true if successful; else false is returned. It is
81 the responsibility of the Record/Application to decided what to do when
82 there is error (e.g. ignored, a log entry generated, etc.)
83 */
84 virtual bool updateData( Payload& srcHandler, size_t index=0, bool invalidate=false ) noexcept = 0;
85
86
87public:
88 /** This method returns the size, in bytes, of any/all metadata that is
89 included with the record.
90 */
91 virtual size_t getMetadataLength() const noexcept = 0;
92
93public:
94 /// Virtual destructor
95 virtual ~Chunk() {}
96};
97
98
99}; // end namespaces
100};
101#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
virtual void stop() noexcept=0
This method is to stop/shutdown the chunk.
virtual void start(Cpl::Dm::MailboxServer &myMbox) noexcept=0
This method is to start/initialize the chunk.
virtual size_t getMetadataLength() const noexcept=0
This method returns the size, in bytes, of any/all metadata that is included with the record.
virtual bool updateData(Payload &srcHandler, size_t index=0, bool invalidate=false) noexcept=0
This method is used to update persistent storage with new data for the Record.
virtual bool loadData(Payload &dstHandler, size_t index=0) noexcept=0
This method is used to initiate the sequence to retrieve a Record's data from persistent storage.
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