GM6000 Digital Heater Controller Branch: main
SDX-1330
PersonalityRecord.h
Go to the documentation of this file.
1#ifndef Ajax_Main_PersonalityRecord_h_
2#define Ajax_Main_PersonalityRecord_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#include "Cpl/System/Trace.h"
19
20/// Major Schema index for my record
21#ifndef OPTION_AJAX_MAIN_PERSONALITY_RECORD_MAJOR
22#define OPTION_AJAX_MAIN_PERSONALITY_RECORD_MAJOR 0
23#endif
24
25/// Minor Schema index for my record
26#ifndef OPTION_AJAX_MAIN_PERSONALITY_RECORD_MINOR
27#define OPTION_AJAX_MAIN_PERSONALITY_RECORD_MINOR 0
28#endif
29
30
31///
32namespace Ajax {
33///
34namespace Main {
35
36
37/** This concrete class implements the "Record" class for storing the 'Personality' settings.
38 */
40{
41public:
42 /// Constructor
45 {
48 m_modelPoints[2] ={ &mp::consolePwdHash, CPL_DM_PERISTENCE_RECORD_NO_SUBSCRIBER };
49 m_modelPoints[3] ={ &mp::consolePwdSalt, CPL_DM_PERISTENCE_RECORD_NO_SUBSCRIBER };
51 m_modelPoints[5] ={ &mp::fanLowPercentage, CPL_DM_PERISTENCE_RECORD_NO_SUBSCRIBER };
52 m_modelPoints[6] ={ &mp::fanMedPercentage, CPL_DM_PERISTENCE_RECORD_NO_SUBSCRIBER };
53 m_modelPoints[7] ={ &mp::fanHighPercentage, CPL_DM_PERISTENCE_RECORD_NO_SUBSCRIBER };
54 m_modelPoints[8] ={ &mp::maxHeatingCapacity, CPL_DM_PERISTENCE_RECORD_NO_SUBSCRIBER };
55
56 // TODO: Add Algorithm config MPs here...
57 m_modelPoints[9] ={ 0,0 };
58 }
59
60protected:
61 /// List of Model Points for the Record
63
64public:
65 /// See Cpl::Dm::Persistent::Record
66 bool resetData() noexcept
67 {
68 // There are NO defaults -->throw an error and trigger the Error UI screen
69 mp::notProvisionedAlert.raiseAlert();
70
71 // Do NOT update/reset flash, i.e. trigger the error again on the next reboot until I get provisioned
72 return false;
73 }
74
75};
76
77} // end namespace(s)
78}
79
80#endif // end header latch
#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_PERSONALITY_RECORD_MINOR
Minor Schema index for my record.
Definition PersonalityRecord.h:27
#define OPTION_AJAX_MAIN_PERSONALITY_RECORD_MAJOR
Major Schema index for my record.
Definition PersonalityRecord.h:22
This concrete class implements the "Record" class for storing the 'Personality' settings.
Definition PersonalityRecord.h:40
PersonalityRecord(Cpl::Persistent::Chunk &chunkHandler)
Constructor.
Definition PersonalityRecord.h:43
bool resetData() noexcept
See Cpl::Dm::Persistent::Record.
Definition PersonalityRecord.h:66
Cpl::Dm::Persistent::Record::Item_T m_modelPoints[9+1]
List of Model Points for the Record.
Definition PersonalityRecord.h:62
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