GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Ajax_Metrics_Api_h_
2#define Ajax_Metrics_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"
18#include "Cpl/Itc/CloseSync.h"
20#include "Cpl/System/Timer.h"
21#include "Ajax/Dm/MpAlert.h"
22#include "Cpl/Dm/Mp/Uint32.h"
23
24/// Time, in milliseconds, between updates to persistent storage
25#ifndef OPTION_AJAX_METRICS_INTERVAL_TIME_MS
26#define OPTION_AJAX_METRICS_INTERVAL_TIME_MS (15*60*1000) // 15 min
27#endif
28
29///
30namespace Ajax
31{
32///
33namespace Metrics
34{
35
36
37/** This class manages the collection of Metrics and triggering their
38 updates to persistent storage.
39 */
41{
42public:
43 /** Constructor.
44 */
46
47public:
48 /// Starts the component
49 void request( OpenMsg& msg );
50
51 /// Shutdowns the component
52 void request( CloseMsg& msg );
53
54protected:
55 /// Software time expired
56 void expired() noexcept;
57
58 /// Change notification
59 void fanPWMChanged( Cpl::Dm::Mp::Uint32& mpPWM, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
60
61 /// Change notification
62 void heaterPWMChanged( Cpl::Dm::Mp::Uint32& mpPWM, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
63
64 /// Change notification
65 void failsafeAlertChanged( Ajax::Dm::MpAlert& mpAlert, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
66
67 /// Helper method to increment metric mp
68 void processFanMetric( uint32_t currentElapsedTimeMs,
69 uint32_t pwm,
70 uint32_t intervalTime = OPTION_AJAX_METRICS_INTERVAL_TIME_MS ) noexcept;
71
72 /// Helper method to increment metric mp
73 void processHeaterMetric( uint32_t currentElapsedTimeMs,
74 uint32_t pwm,
75 uint32_t intervalTime = OPTION_AJAX_METRICS_INTERVAL_TIME_MS ) noexcept;
76
77protected:
78 /// Observer for change notifications
79 Cpl::Dm::SubscriberComposer<Api, Cpl::Dm::Mp::Uint32> m_obFanPWM;
80
81 /// Observer for change notifications
82 Cpl::Dm::SubscriberComposer<Api, Cpl::Dm::Mp::Uint32> m_obHeaterPWM;
83
84 /// Observer for change notifications
85 Cpl::Dm::SubscriberComposer<Api, Ajax::Dm::MpAlert> m_obFailsafeAlert;
86
87 /// Time marker of when last updated the metrics to persistent storage
89
90 /// Time marker of when last updated the metrics to persistent storage
92
93 /// Time marker of when last updated the metrics to persistent storage
94 uint32_t m_fanMarker;
95
96 /// Current on/off state
97 bool m_fanOn;
98
99 /// Current on/off state
101
102 /// open/close state
104};
105
106} // end namespaces
107}
108#endif // end header latch
109
#define OPTION_AJAX_METRICS_INTERVAL_TIME_MS
Time, in milliseconds, between updates to persistent storage.
Definition Api.h:26
This class manages the collection of Metrics and triggering their updates to persistent storage.
Definition Api.h:41
Cpl::Dm::SubscriberComposer< Api, Cpl::Dm::Mp::Uint32 > m_obHeaterPWM
Observer for change notifications.
Definition Api.h:82
void processFanMetric(uint32_t currentElapsedTimeMs, uint32_t pwm, uint32_t intervalTime=OPTION_AJAX_METRICS_INTERVAL_TIME_MS) noexcept
Helper method to increment metric mp.
void request(OpenMsg &msg)
Starts the component.
void failsafeAlertChanged(Ajax::Dm::MpAlert &mpAlert, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification.
void request(CloseMsg &msg)
Shutdowns the component.
void fanPWMChanged(Cpl::Dm::Mp::Uint32 &mpPWM, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification.
uint32_t m_fanMarker
Time marker of when last updated the metrics to persistent storage.
Definition Api.h:94
void expired() noexcept
Software time expired.
uint32_t m_heaterMarker
Time marker of when last updated the metrics to persistent storage.
Definition Api.h:91
bool m_opened
open/close state
Definition Api.h:103
Cpl::Dm::SubscriberComposer< Api, Ajax::Dm::MpAlert > m_obFailsafeAlert
Observer for change notifications.
Definition Api.h:85
bool m_fanOn
Current on/off state.
Definition Api.h:97
void processHeaterMetric(uint32_t currentElapsedTimeMs, uint32_t pwm, uint32_t intervalTime=OPTION_AJAX_METRICS_INTERVAL_TIME_MS) noexcept
Helper method to increment metric mp.
bool m_heaterOn
Current on/off state.
Definition Api.h:100
void heaterPWMChanged(Cpl::Dm::Mp::Uint32 &mpPWM, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification.
uint32_t m_runtimeMarker
Time marker of when last updated the metrics to persistent storage.
Definition Api.h:88
Cpl::Dm::SubscriberComposer< Api, Cpl::Dm::Mp::Uint32 > m_obFanPWM
Observer for change notifications.
Definition Api.h:79
Api(Cpl::Dm::MailboxServer &myMbox)
Constructor.
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