GM6000 Digital Heater Controller Branch: main
SDX-1330
DataRecord.h
Go to the documentation of this file.
1#ifndef Cpl_Persistent_Data_Record_h_
2#define Cpl_Persistent_Data_Record_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
18
19///
20namespace Cpl {
21///
22namespace Persistent {
23
24/** This mostly concrete class implements the Cpl::Persistent::DataRecord interface
25 where a DataRecord instance contains an unmanaged data store. A final
26 child class is needed to provide the specifics of the 'data store' (i.e.
27 implement the Cpl::Persistent::Payload interface).
28
29 The data is only read/written from Persistent storage 'on demand' from
30 the application.
31
32 NOTE: This interface/class is NOT THREAD SAFE and should only be 'used' from
33 the Record Server's thread.
34 */
36{
37public:
38 /// Constructor.
39 DataRecord( Cpl::Persistent::Chunk& chunkHandler ) noexcept;
40
41 /// Destructor
43
44public:
45 /** This method is used by the application to write the DataRecord's data
46 to persistent storage. Note: This method calls the DataRecord's getData()
47 method for the data to write to persistent storage.
48
49 The 'index' offset can be used to 'index into' the RegionMedia instead
50 of starting at offset zero. This argument should only be used when
51 multiple instances of a Record is being stored in a single region.
52
53 The method returns true on success; else false if an error occurred.
54
55 NOTE: This method is NOT THREAD SAFE and should only be called from the
56 Record Server's thread.
57 */
58 virtual bool writeToMedia( size_t index = 0 ) noexcept;
59
60 /** This method is used by the application to read the DataRecord's data
61 from persistent storage. Note: This method calls the DataRecord's putData()
62 method with the data read from persistent storage.
63
64 The 'index' offset can be used to 'index into' the RegionMedia instead
65 of starting at offset zero. This argument should only be used when
66 multiple instances of a Record is being stored in a single region.
67
68 The method returns true on success; else false if an error occurred
69
70 NOTE: This method is NOT THREAD SAFE and should only be called from the
71 Record Server's thread.
72 */
73 virtual bool readFromMedia( size_t index = 0 ) noexcept;
74
75public:
76 /// See Cpl::Persistent::DataRecord
77 void start( Cpl::Dm::MailboxServer& myMbox ) noexcept;
78
79 /// See Cpl::Persistent::DataRecord
80 void stop() noexcept;
81
82
83protected:
84 /** This method is responsible for updating the 'data store' in RAM to
85 default values. This method is called when there is NO valid data when
86 reading the record's data from persistence storage.
87
88 The method returns true if the 'data store' is in an acceptable state
89 and the end of the call; else if there is error or there is no acceptable
90 state of the 'data store' then false is returned
91 */
92 virtual bool processNoValidData() noexcept = 0;
93
94
95protected:
96 /// Chunk handler for the DataRecord
97 Cpl::Persistent::Chunk& m_chunkHandler;
98
99 /// Remember my started state
101};
102
103
104
105}; // end namespaces
106};
107#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
DataRecord(Cpl::Persistent::Chunk &chunkHandler) noexcept
Constructor.
bool m_started
Remember my started state.
Definition DataRecord.h:100
void stop() noexcept
See Cpl::Persistent::DataRecord.
Cpl::Persistent::Chunk & m_chunkHandler
Chunk handler for the DataRecord.
Definition DataRecord.h:97
virtual bool writeToMedia(size_t index=0) noexcept
This method is used by the application to write the DataRecord's data to persistent storage.
virtual bool processNoValidData() noexcept=0
This method is responsible for updating the 'data store' in RAM to default values.
void start(Cpl::Dm::MailboxServer &myMbox) noexcept
See Cpl::Persistent::DataRecord.
virtual bool readFromMedia(size_t index=0) noexcept
This method is used by the application to read the DataRecord's data from persistent storage.
This abstract class defines the interface accessing the 'data payload' of an individual Record instan...
Definition Payload.h:29
This abstract class defines the public interface for a Record instance.
Definition Record.h:28
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20