Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RangeAlarmWithHysteresis.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_LIB_ALARMS_RANGEALARMWITHHYSTERESIS_H
4#define IMT_BASE_LIB_ALARMS_RANGEALARMWITHHYSTERESIS_H
5
10
11namespace imt {
12namespace base {
13namespace lib {
14namespace alarms {
15
19template<typename ValueType>
21
22public:
23
36 AlarmSenderIfc& alarmSender,
39 AlarmIdentifier const lowerAlarmId,
40 AlarmIdentifier const upperAlarmId);
41
46 void updateValue(ValueType const& value);
47
51 void deactivateAlarms();
52
57 bool isAlarmActive() const;
58
63 bool isLowerAlarmActive() const;
64
69 bool isUpperAlarmActive() const;
70
71private:
72
73 void activateLowerAlarm();
74 void activateUpperAlarm();
75 void deactivateLowerAlarm();
76 void deactivateUpperAlarm();
77 void updateValueUpperRange(ValueType const& value);
78 void updateValueLowerRange(ValueType const& value);
79
80 AlarmSenderIfc& m_alarmSender;
83 AlarmIdentifier const m_lowerAlarmId;
84 AlarmIdentifier const m_upperAlarmId;
85 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
86 bool m_isLowerAlarmActive;
87 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
88 bool m_isUpperAlarmActive;
89};
90
91template<typename ValueType>
93 AlarmSenderIfc& alarmSender,
96 AlarmIdentifier const lowerAlarmId,
97 AlarmIdentifier const upperAlarmId) :
98 ::imt::base::core::platform::Noncopyable {},
99 m_alarmSender {alarmSender},
100 m_rangeSet {rangeSet},
101 m_rangeReset {rangeReset},
102 m_lowerAlarmId {lowerAlarmId},
103 m_upperAlarmId {upperAlarmId},
104 m_isLowerAlarmActive {false},
105 m_isUpperAlarmActive {false} {
106}
107
108template<typename ValueType>
110 updateValueUpperRange(value);
111 updateValueLowerRange(value);
112}
113
114template<typename ValueType>
116 deactivateLowerAlarm();
117 deactivateUpperAlarm();
118}
119
120template<typename ValueType>
122 return m_isLowerAlarmActive || m_isUpperAlarmActive;
123}
124
125template<typename ValueType>
127 return m_isLowerAlarmActive;
128}
129
130template<typename ValueType>
132 return m_isUpperAlarmActive;
133}
134
135// private
136
137template<typename ValueType>
139
140 if (!m_isLowerAlarmActive) {
141 if (m_lowerAlarmId != NO_ALARM) {
142 m_alarmSender.activateAlarm(m_lowerAlarmId);
143 m_isLowerAlarmActive = true;
144 }
145 }
146}
147
148template<typename ValueType>
149void RangeAlarmWithHysteresis<ValueType>::activateUpperAlarm() {
150
151 if (!m_isUpperAlarmActive) {
152 if (m_upperAlarmId != NO_ALARM) {
153 m_alarmSender.activateAlarm(m_upperAlarmId);
154 m_isUpperAlarmActive = true;
155 }
156 }
157}
158
159template<typename ValueType>
160void RangeAlarmWithHysteresis<ValueType>::deactivateLowerAlarm() {
161
162 if (m_isLowerAlarmActive) {
163 if (m_lowerAlarmId != NO_ALARM) {
164 m_alarmSender.deactivateAlarm(m_lowerAlarmId);
165 }
166 m_isLowerAlarmActive = false;
167 }
168}
169
170template<typename ValueType>
171void RangeAlarmWithHysteresis<ValueType>::deactivateUpperAlarm() {
172
173 if (m_isUpperAlarmActive) {
174 if (m_upperAlarmId != NO_ALARM) {
175 m_alarmSender.deactivateAlarm(m_upperAlarmId);
176 }
177 m_isUpperAlarmActive = false;
178 }
179}
180
181template<typename ValueType>
182void RangeAlarmWithHysteresis<ValueType>::updateValueUpperRange(ValueType const& value) {
183
184 if (m_rangeSet.isAbove(value)) {
185 activateUpperAlarm();
186 }
187 else if (!m_rangeReset.isAbove(value)) {
188 deactivateUpperAlarm();
189 }
190}
191
192template<typename ValueType>
193void RangeAlarmWithHysteresis<ValueType>::updateValueLowerRange(ValueType const& value) {
194
195 if (m_rangeSet.isBelow(value)) {
196 activateLowerAlarm();
197 }
198 else if (!m_rangeReset.isBelow(value)) {
199 deactivateLowerAlarm();
200 }
201}
202
203} // namespace alarms
204} // namespace lib
205} // namespace base
206} // namespace imt
207
208#endif // IMT_BASE_LIB_ALARMS_RANGEALARMWITHHYSTERESIS_H
Base class for a non copyable class that disables copy and assignment of instances.
Definition Noncopyable.h:51
A range of values limited by an lower and upper value that is included in the range.
Definition Range.h:51
Interface to send an alarm message to activate or deactivate a given alarm.
Activates the given alarms if the value is outside the set range.
bool isUpperAlarmActive() const
Returns whether the upper alarm is currently activated.
RangeAlarmWithHysteresis(AlarmSenderIfc &alarmSender, ::imt::base::core::util::Range< ValueType > const &rangeSet, ::imt::base::core::util::Range< ValueType > const &rangeReset, AlarmIdentifier const lowerAlarmId, AlarmIdentifier const upperAlarmId)
Constructor.
bool isLowerAlarmActive() const
Returns whether the lower alarm is currently activated.
void updateValue(ValueType const &value)
Updates the value and checks for the alarm condition.
bool isAlarmActive() const
Returns if any alarm is currently activated.
uint32_t AlarmIdentifier
The alarm identifier.
This is a application specific file which is used to configure Imt.Base.Core.Math.
#define false
Definition stdbool.h:44