GM6000 Digital Heater Controller Branch: main
SDX-1330
Record.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Persistent_Record_h_
2#define Cpl_Dm_Persistent_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
19#include "Cpl/Dm/ModelPoint.h"
23#include "Cpl/System/Timer.h"
24
25///
26namespace Cpl {
27///
28namespace Dm {
29///
30namespace Persistent {
31
32/** This mostly concrete class implements the Cpl::Persistent::Record interface
33 where a Record instance contains the data from N model points. A final
34 child class is needed to provide the specifics of 'resetting' the Record's
35 data.
36 */
37class Record :
40 public FlushRequest,
41 public EraseRequest,
43{
44public:
45 /** This data structure associates a Data Model subscriber instance with a
46 Model Point instance.
47 */
48 typedef struct
49 {
50 Cpl::Dm::ModelPoint* mpPtr; //!< Pointer to a Model Point
51 Cpl::Dm::SubscriberComposer<Record, Cpl::Dm::ModelPoint>* observerPtr; //!< Place holder to for dynamically allocated Subscriber Instance. Note: A ZERO value will not allocate a subscriber
52 } Item_T;
53
54public:
55 /** Constructor. The 'itemList' is variable length array where the last item
56 in the list MUST be a 'null' entry, e.g. {0,0}. The application is
57 responsible for ALLOCATING all of the Model Point and Subscriber
58 instances in the itemList.
59
60 If the schema indexes does not match when reading data from persistent
61 storage, THEN the upgrade method is called.record data is defaulted. If the schema minor index from
62 persistent storage does is less than 'schemaMinorIndex' argument, the
63 the record is data loaded and the upgrade() method is called. If the
64 schema minor index from persistent storage is greater than the
65 'schemaMinorIndex' argument, THEN the record data is defaulted.
66
67 The 'writeDelayMs' and 'maxWriteDelayMs' arguments are used to impose
68 a 'settling time' after an model point is updated before writing the
69 change(s) to NVRAM. This is useful when multiple MP changes at the
70 'same' time - so that there is single update to NVRAM instead of
71 attempting multiple NVRAM writes for each MP change notification.
72 */
73 Record( Item_T itemList[],
74 Cpl::Persistent::Chunk& chunkHandler,
75 uint8_t schemaMajorIndex,
76 uint8_t schemaMinorIndex,
77 uint32_t writeDelayMs = 0,
78 uint32_t maxWriteDelayMs = 0 ) noexcept;
79
80 /// Destructor
82
83
84public:
85 /// See Cpl::Persistent::Record
86 void start( Cpl::Dm::MailboxServer& myMbox ) noexcept;
87
88 /// See Cpl::Persistent::Record
89 void stop() noexcept;
90
91 /// See Cpl::Persistent::Payload
92 size_t getData( void* dst, size_t maxDstLen ) noexcept;
93
94 /// See Cpl::Persistent::Payload
95 bool putData( const void* src, size_t srcLen ) noexcept;
96
97public:
98 /// Returns the size of record. Does NOT include any meta-data that the Chunk Handler adds
99 size_t getRecordSize() noexcept;
100
101public:
102 /** Synchronous Flush/update of the Record to persistent storage.
103 Note: Use this method with CAUTION. The call will BLOCK the calling
104 thread for an undetermined amount of time!!
105 */
106 bool flush( Cpl::Persistent::RecordServer& myRecordsServer ) noexcept;
107
108 /** Synchronous Invalidate/logically-erase of the Record in persistent storage.
109 Note: Use this method with CAUTION. The call will BLOCK the calling
110 thread for an undetermined amount of time!!
111 */
112 bool erase( Cpl::Persistent::RecordServer& myRecordsServer ) noexcept;
113
114public:
115 /// See Cpl::Dm::Persistent::FlushRequest
116 void request( FlushMsg& msg );
117
118 /// See Cpl::Dm::Persistent::EraseRequest
119 void request( EraseMsg& msg );
120
121protected:
122 /** This method is responsible for updating all of the Model Points in
123 record to their default values. This method is called when there is
124 NO valid data when reading the record's data from persistence storage.
125
126 When the method returns true, the 'reset data' is written to persistence
127 storage; else the persistence storage is NOT updated and NO further updates
128 of the persistence storage will be allowed.
129 */
130 virtual bool resetData() noexcept = 0;
131
132 /** This method is called when the stored record data has different
133 schema indexes. It is up to the child record class on what to do when
134 the schema is different. The default behavior is default all of the
135 data.
136
137 The 'src' argument contains the record data (as stored in persistent
138 storage). The child class can make use of the data as needed. Note:
139 the data in 'src' is AFTER the schema indexes fields.
140
141 The method should return true if the child class has successfully
142 processed in the incoming data. Returning false will cause the
143 record data to be defaulted;
144 */
145 virtual bool schemaChange( uint8_t previousSchemaMajorIndex,
146 uint8_t previousSchemaMinorIndex,
147 const void* src,
148 size_t srcLen ) noexcept {
149 return false;
150 }
151
152 /** This method is called when the Record has been successfully loaded into
153 RAM/Model-Points. The default action does nothing.
154 */
155 virtual void hookProcessPostRecordLoaded() noexcept {};
156
157 /// Settling timer expired callback
158 void expired( void ) noexcept;
159
160
161protected:
162 /// Callback method for Model Point change notifications
163 virtual void dataChanged( Cpl::Dm::ModelPoint& point, Cpl::Dm::SubscriberApi& observer ) noexcept;
164
165 /// Helper method that is used to initiate the update to the NVRAM
166 virtual void updateNVRAM() noexcept;
167
168protected:
169 /// List of model points
171
172 /// Chunk handler for the Record
173 Cpl::Persistent::Chunk& m_chunkHandler;
174
175 /// Delay time, in milliseconds, when updated NVRAM (i.e. 'settling time' after an MP update before writing NVRAM)
176 uint32_t m_delayMs;
177
178 /// Maximum amount of time, in milliseconds, to delay before updating NVRAM
179 uint32_t m_maxDelayMs;
180
181 /// Timer marker of the 'first' MP change notification (for a NVRAM update)
183
184 /// Schema Major version
185 uint8_t m_major;
186
187 /// Schema Minor version
188 uint8_t m_minor;
189
190 /// Remember my started state
192};
193
194/// Magic value to indicate that Subscriber instance should be allocated for Model Point item
195#define CPL_DM_PERISTENCE_RECORD_USE_SUBSCRIBER ((Cpl::Dm::SubscriberComposer<Record,Cpl::Dm::ModelPoint>*) 1 )
196
197/// Magic value to indicate that Subscriber instance should NOT be allocated for Model Point item
198#define CPL_DM_PERISTENCE_RECORD_NO_SUBSCRIBER ((Cpl::Dm::SubscriberComposer<Record,Cpl::Dm::ModelPoint>*) 0 )
199
200
201
202}; // end namespaces
203};
204};
205#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 mostly abstract class defines the interface for a Model Point.
Definition ModelPoint.h:46
This abstract class define ITC message type and payload for the application to request invalidating/c...
Definition EraseRequest.h:39
This abstract class define ITC message type and payload for the application to request flushing the R...
Definition FlushRequest.h:38
This mostly concrete class implements the Cpl::Persistent::Record interface where a Record instance c...
Definition Record.h:43
bool erase(Cpl::Persistent::RecordServer &myRecordsServer) noexcept
Synchronous Invalidate/logically-erase of the Record in persistent storage.
uint32_t m_delayMs
Delay time, in milliseconds, when updated NVRAM (i.e. 'settling time' after an MP update before writi...
Definition Record.h:176
Record(Item_T itemList[], Cpl::Persistent::Chunk &chunkHandler, uint8_t schemaMajorIndex, uint8_t schemaMinorIndex, uint32_t writeDelayMs=0, uint32_t maxWriteDelayMs=0) noexcept
Constructor.
void stop() noexcept
See Cpl::Persistent::Record.
Item_T * m_items
List of model points.
Definition Record.h:170
void start(Cpl::Dm::MailboxServer &myMbox) noexcept
See Cpl::Persistent::Record.
virtual void updateNVRAM() noexcept
Helper method that is used to initiate the update to the NVRAM.
Cpl::Persistent::Chunk & m_chunkHandler
Chunk handler for the Record.
Definition Record.h:173
Cpl::Dm::SubscriberComposer< Record, Cpl::Dm::ModelPoint > * observerPtr
Place holder to for dynamically allocated Subscriber Instance.
Definition Record.h:51
virtual void hookProcessPostRecordLoaded() noexcept
This method is called when the Record has been successfully loaded into RAM/Model-Points.
Definition Record.h:155
virtual bool resetData() noexcept=0
This method is responsible for updating all of the Model Points in record to their default values.
bool m_started
Remember my started state.
Definition Record.h:191
Cpl::Dm::ModelPoint * mpPtr
Pointer to a Model Point.
Definition Record.h:50
bool putData(const void *src, size_t srcLen) noexcept
See Cpl::Persistent::Payload.
size_t getData(void *dst, size_t maxDstLen) noexcept
See Cpl::Persistent::Payload.
uint8_t m_major
Schema Major version.
Definition Record.h:185
void expired(void) noexcept
Settling timer expired callback.
uint32_t m_timerMarker
Timer marker of the 'first' MP change notification (for a NVRAM update)
Definition Record.h:182
void request(FlushMsg &msg)
See Cpl::Dm::Persistent::FlushRequest.
virtual bool schemaChange(uint8_t previousSchemaMajorIndex, uint8_t previousSchemaMinorIndex, const void *src, size_t srcLen) noexcept
This method is called when the stored record data has different schema indexes.
Definition Record.h:145
size_t getRecordSize() noexcept
Returns the size of record. Does NOT include any meta-data that the Chunk Handler adds.
virtual void dataChanged(Cpl::Dm::ModelPoint &point, Cpl::Dm::SubscriberApi &observer) noexcept
Callback method for Model Point change notifications.
uint32_t m_maxDelayMs
Maximum amount of time, in milliseconds, to delay before updating NVRAM.
Definition Record.h:179
uint8_t m_minor
Schema Minor version.
Definition Record.h:188
bool flush(Cpl::Persistent::RecordServer &myRecordsServer) noexcept
Synchronous Flush/update of the Record to persistent storage.
This data structure associates a Data Model subscriber instance with a Model Point instance.
Definition Record.h:49
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
This template class is a composer pattern/class that manages the callback function for a Model Point'...
Definition SubscriberComposer.h:37
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
This abstract class defines the interface for a Chunk.
Definition Chunk.h:30
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
This mostly concrete interface defines the operations that can be performed on a software timer.
Definition Timer.h:47
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20