GM6000 Digital Heater Controller Branch: main
SDX-1330
MetricsRecord.h
Go to the documentation of this file.
1#ifndef Ajax_Main_MetricsRecord_h_
2#define Ajax_Main_MetricsRecord_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-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "colony_config.h"
17#include "mp/ModelPoints.h"
18
19
20/// Major Schema index for my record
21#ifndef OPTION_AJAX_MAIN_METRICS_RECORD_MAJOR
22#define OPTION_AJAX_MAIN_METRICS_RECORD_MAJOR 0
23#endif
24
25/// Minor Schema index for my record
26#ifndef OPTION_AJAX_MAIN_METRICS_RECORD_MINOR
27#define OPTION_AJAX_MAIN_METRICS_RECORD_MINOR 0
28#endif
29
30
31
32///
33namespace Ajax {
34///
35namespace Main {
36
37
38/** This concrete class implements the "Record" class for storing user settings.
39 */
41{
42public:
43 /// Constructor
46 {
47 m_modelPoints[0] = { &mp::metricBootCounter, CPL_DM_PERISTENCE_RECORD_NO_SUBSCRIBER };
48 m_modelPoints[1] = { &mp::metricRunningTime, CPL_DM_PERISTENCE_RECORD_USE_SUBSCRIBER };
49 m_modelPoints[2] = { &mp::metricHeaterOnTime, CPL_DM_PERISTENCE_RECORD_USE_SUBSCRIBER };
50 m_modelPoints[3] = { &mp::metricFanOnTime, CPL_DM_PERISTENCE_RECORD_USE_SUBSCRIBER };
51 m_modelPoints[4] = { &mp::metricFaultHeaterSafety, CPL_DM_PERISTENCE_RECORD_USE_SUBSCRIBER };
52 m_modelPoints[5] = { 0,0 };
53 }
54
55protected:
56 /// List of Model Points for the Record
58
59public:
60 /// See Cpl::Dm::Persistent::Record
61 bool resetData() noexcept
62 {
63 mp::metricBootCounter.write( 1 );
64 mp::metricRunningTime.write( 0 );
65 mp::metricHeaterOnTime.write( 0 );
66 mp::metricFanOnTime.write( 0 );
67 mp::metricFaultHeaterSafety.write( 0 );
68 return true;
69 }
70
71 /// See Cpl::Dm::Persistent::Record
73 {
74 mp::metricBootCounter.increment();
75 }
76};
77
78} // end namespace(s)
79}
80
81#endif // end header latch
#define CPL_DM_PERISTENCE_RECORD_USE_SUBSCRIBER
Magic value to indicate that Subscriber instance should be allocated for Model Point item.
Definition Record.h:195
#define CPL_DM_PERISTENCE_RECORD_NO_SUBSCRIBER
Magic value to indicate that Subscriber instance should NOT be allocated for Model Point item.
Definition Record.h:198
#define OPTION_AJAX_MAIN_METRICS_RECORD_MAJOR
Major Schema index for my record.
Definition MetricsRecord.h:22
#define OPTION_AJAX_MAIN_METRICS_RECORD_MINOR
Minor Schema index for my record.
Definition MetricsRecord.h:27
This concrete class implements the "Record" class for storing user settings.
Definition MetricsRecord.h:41
Cpl::Dm::Persistent::Record::Item_T m_modelPoints[5+1]
List of Model Points for the Record.
Definition MetricsRecord.h:57
void hookProcessPostRecordLoaded() noexcept
See Cpl::Dm::Persistent::Record.
Definition MetricsRecord.h:72
MetricsRecord(Cpl::Persistent::Chunk &chunkHandler)
Constructor.
Definition MetricsRecord.h:44
bool resetData() noexcept
See Cpl::Dm::Persistent::Record.
Definition MetricsRecord.h:61
This mostly concrete class implements the Cpl::Persistent::Record interface where a Record instance c...
Definition Record.h:43
Record(Item_T itemList[], Cpl::Persistent::Chunk &chunkHandler, uint8_t schemaMajorIndex, uint8_t schemaMinorIndex, uint32_t writeDelayMs=0, uint32_t maxWriteDelayMs=0) noexcept
Constructor.
This data structure associates a Data Model subscriber instance with a Model Point instance.
Definition Record.h:49
This abstract class defines the interface for a Chunk.
Definition Chunk.h:30
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20