GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Ajax_Heating_Supervisor_Api_h_
2#define Ajax_Heating_Supervisor_Api_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 "Cpl/Itc/CloseSync.h"
18#include "Cpl/System/Timer.h"
22#include "Cpl/Dm/Mp/Int32.h"
23#include "Cpl/Dm/Mp/Bool.h"
24
25
26/// Periodic interval (in milliseconds) for calling the FLC
27#ifndef OPTION_AJAX_HEATING_SUPERVISOR_ALGO_INTERVAL_MS
28#define OPTION_AJAX_HEATING_SUPERVISOR_ALGO_INTERVAL_MS (2*1000) // 2 seconds
29#endif
30
31///
32namespace Ajax {
33///
34namespace Heating {
35///
36namespace Supervisor {
37
38/** This class implements the Heating Algorithm Supervisor. The supervisor
39 is responsible for "managing/sequencing' the heating algorithm
40
41 All inputs and outputs (including alerts) are done via Model Points. The
42 model point references are via 'hard coded' model point names.
43
44 The class is NOT thread safe.
45 */
47{
48public:
49 /// Constructor
50 Api( Cpl::Dm::MailboxServer& myMbox ) noexcept;
51
52public:
53 /// This method starts the supervisor (See Cpl::Itc::OpenSync)
54 void request( OpenMsg& msg );
55
56 /// This method stops the supervisor (See Cpl::Itc::CloseSync)
57 void request( CloseMsg& msg );
58
59
60protected:
61 /// Action
62 void allOff() noexcept;
63
64 /// Action
65 void checkForSensor() noexcept;
66
67 /// Action
68 void fanOff() noexcept;
69
70 /// Action
71 void fanOn() noexcept;
72
73 /// Action
74 void heatOff() noexcept;
75
76 /// Action
77 void runHeatingAlgo() noexcept;
78
79public:
80 /// Guard
81 bool isSensorAvailable() noexcept;
82
83
84protected:
85 /// See Cpl::System::Timer (timer expired callback)
86 void expired() noexcept;
87
88 /// Change notification
89 void hwSafetyChanged( Cpl::Dm::Mp::Bool& mp, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
90
91 /// Change notification
92 void heatingEnabledChanged( Cpl::Dm::Mp::Bool& mp, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
93
94protected:
95 /// Helper method to select temperature source. Returns false if there is no valid temperature source
96 bool getTemperature( int32_t& idt ) noexcept;
97
98 /// Helper method that schedules when the algorithm executes
99 void scheduleAlgorithm() noexcept;
100
101 /** Helper method that is called when the algorithm's periodic interval has
102 expired, i.e. the periodic execution of the algorithm
103 */
104 virtual void intervalExpired() noexcept;
105
106 /// Helper method that gets the fan setting
107 uint32_t getFanPWM() noexcept;
108
109protected:
110 /// Heating controller
111 Ajax::Heating::Flc::Api m_flcController;
112
113 /// Observer for change notification (to the hardware temperature safety limit)
114 Cpl::Dm::SubscriberComposer<Api, Cpl::Dm::Mp::Bool> m_obHwSafety;
115
116 /// Observer for change notification (to the heating mode)
117 Cpl::Dm::SubscriberComposer<Api, Cpl::Dm::Mp::Bool> m_obHeatingEnabled;
118
119 /// Accumulated capacity requests
121
122 /// Timer marker of last processing cycle
123 uint32_t m_timeMarker;
124
125 /// Maximum capacity
127
128 /// Flag for first execution of the algorithm
130
131 /// Temperature sensor available
133
134 /// Open state
136};
137
138
139} // end namespaces
140}
141}
142#endif // end header latch
143
This class implements the Heating Algorithm Supervisor.
Definition Api.h:47
void allOff() noexcept
Action.
virtual void intervalExpired() noexcept
Helper method that is called when the algorithm's periodic interval has expired, i....
uint32_t m_maxCapacity
Maximum capacity.
Definition Api.h:126
void request(CloseMsg &msg)
This method stops the supervisor (See Cpl::Itc::CloseSync)
void fanOff() noexcept
Action.
bool m_temperatureSensorAvailable
Temperature sensor available.
Definition Api.h:132
void heatingEnabledChanged(Cpl::Dm::Mp::Bool &mp, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification.
Api(Cpl::Dm::MailboxServer &myMbox) noexcept
Constructor.
void expired() noexcept
See Cpl::System::Timer (timer expired callback)
Cpl::Dm::SubscriberComposer< Api, Cpl::Dm::Mp::Bool > m_obHwSafety
Observer for change notification (to the hardware temperature safety limit)
Definition Api.h:114
uint32_t getFanPWM() noexcept
Helper method that gets the fan setting.
void fanOn() noexcept
Action.
bool getTemperature(int32_t &idt) noexcept
Helper method to select temperature source. Returns false if there is no valid temperature source.
int32_t m_sumCapacityRequest
Accumulated capacity requests.
Definition Api.h:120
void checkForSensor() noexcept
Action.
void hwSafetyChanged(Cpl::Dm::Mp::Bool &mp, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification.
bool m_opened
Open state.
Definition Api.h:135
void runHeatingAlgo() noexcept
Action.
void heatOff() noexcept
Action.
void request(OpenMsg &msg)
This method starts the supervisor (See Cpl::Itc::OpenSync)
void scheduleAlgorithm() noexcept
Helper method that schedules when the algorithm executes.
uint32_t m_timeMarker
Timer marker of last processing cycle.
Definition Api.h:123
Ajax::Heating::Flc::Api m_flcController
Heating controller.
Definition Api.h:111
bool isSensorAvailable() noexcept
Guard.
bool m_firstExecution
Flag for first execution of the algorithm.
Definition Api.h:129
Cpl::Dm::SubscriberComposer< Api, Cpl::Dm::Mp::Bool > m_obHeatingEnabled
Observer for change notification (to the heating mode)
Definition Api.h:117
Event Queue for FSM events.
Definition FsmEventQueue_.h:30
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This partially concrete class implements the synchronous ITC close call for the CloseApi.
Definition CloseSync.h:34
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
This mostly concrete interface defines the operations that can be performed on a software timer.
Definition Timer.h:47
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
Encapsulate all Model Points in the 'mp' namespace to prevent polluting the global name space.
Definition ModelPoints.h:30