3#ifndef IMT_BASE_LIB_ALARMS_RANGEALARMWITHDELAY_H
4#define IMT_BASE_LIB_ALARMS_RANGEALARMWITHDELAY_H
19template<
typename ValueType>
52 DelayTicks const upperAlarmDelayTicks)
noexcept;
72 DelayTicks const lowerAlarmActivationDelayTicks,
73 DelayTicks const lowerAlarmDeactivationDelayTicks,
75 DelayTicks const upperAlarmActivationDelayTicks,
76 DelayTicks const upperAlarmDeactivationDelayTicks)
noexcept;
120 bool isInRange(ValueType
const& value)
const;
130 void activateLowerAlarm();
131 void activateUpperAlarm();
132 void deactivateLowerAlarm();
133 void deactivateUpperAlarm();
135 void updateValueUpperRange(ValueType
const& value,
bool const doForce);
136 void updateValueLowerRange(ValueType
const& value,
bool const doForce);
141 DelayTicks const m_lowerAlarmActivationDelayTicks;
142 DelayTicks const m_lowerAlarmDeactivationDelayTicks;
144 DelayTicks const m_upperAlarmActivationDelayTicks;
145 DelayTicks const m_upperAlarmDeactivationDelayTicks;
147 bool m_isLowerAlarmActive;
150 bool m_isUpperAlarmActive;
160template<
typename ValueType>
167 DelayTicks const upperAlarmDelayTicks) noexcept :
168 RangeAlarmWithDelay {alarmSender, range, lowerAlarmId, lowerAlarmDelayTicks, lowerAlarmDelayTicks, upperAlarmId, upperAlarmDelayTicks, upperAlarmDelayTicks} {
171template<
typename ValueType>
176 DelayTicks const lowerAlarmActivationDelayTicks,
177 DelayTicks const lowerAlarmDeactivationDelayTicks,
179 DelayTicks const upperAlarmActivationDelayTicks,
180 DelayTicks const upperAlarmDeactivationDelayTicks) noexcept :
182 m_alarmSender {alarmSender},
184 m_lowerAlarmId {lowerAlarmId},
185 m_lowerAlarmActivationDelayTicks {lowerAlarmActivationDelayTicks},
186 m_lowerAlarmDeactivationDelayTicks {lowerAlarmDeactivationDelayTicks},
187 m_upperAlarmId {upperAlarmId},
188 m_upperAlarmActivationDelayTicks {upperAlarmActivationDelayTicks},
189 m_upperAlarmDeactivationDelayTicks {upperAlarmDeactivationDelayTicks},
190 m_isLowerAlarmActive {
false},
191 m_lowerAlarmTick {NULL_DELAY},
192 m_isUpperAlarmActive {
false},
193 m_upperAlarmTick {NULL_DELAY},
195 m_tick {NULL_DELAY} {
198template<
typename ValueType>
203 updateValueUpperRange(value,
false);
204 updateValueLowerRange(value,
false);
207template<
typename ValueType>
212 updateValueUpperRange(value,
true);
213 updateValueLowerRange(value,
true);
216template<
typename ValueType>
218 deactivateLowerAlarm();
219 deactivateUpperAlarm();
222template<
typename ValueType>
224 return m_isLowerAlarmActive || m_isUpperAlarmActive;
227template<
typename ValueType>
229 return m_isLowerAlarmActive;
232template<
typename ValueType>
234 return m_isUpperAlarmActive;
237template<
typename ValueType>
239 return m_range.isInRange(value);
242template<
typename ValueType>
249template<
typename ValueType>
252 m_lowerAlarmTick = m_tick;
254 if (!m_isLowerAlarmActive) {
255 if (m_lowerAlarmId != NO_ALARM) {
256 m_alarmSender.activateAlarm(m_lowerAlarmId);
257 m_isLowerAlarmActive =
true;
258 deactivateUpperAlarm();
263template<
typename ValueType>
264void RangeAlarmWithDelay<ValueType>::activateUpperAlarm() {
266 m_upperAlarmTick = m_tick;
268 if (!m_isUpperAlarmActive) {
269 if (m_upperAlarmId != NO_ALARM) {
270 m_alarmSender.activateAlarm(m_upperAlarmId);
271 m_isUpperAlarmActive =
true;
272 deactivateLowerAlarm();
277template<
typename ValueType>
278void RangeAlarmWithDelay<ValueType>::deactivateLowerAlarm() {
280 m_lowerAlarmTick = m_tick;
282 if (m_isLowerAlarmActive) {
283 if (m_lowerAlarmId != NO_ALARM) {
284 m_alarmSender.deactivateAlarm(m_lowerAlarmId);
286 m_isLowerAlarmActive =
false;
290template<
typename ValueType>
291void RangeAlarmWithDelay<ValueType>::deactivateUpperAlarm() {
293 m_upperAlarmTick = m_tick;
295 if (m_isUpperAlarmActive) {
296 if (m_upperAlarmId != NO_ALARM) {
297 m_alarmSender.deactivateAlarm(m_upperAlarmId);
299 m_isUpperAlarmActive =
false;
303template<
typename ValueType>
304void RangeAlarmWithDelay<ValueType>::resetAlarmTick(
bool const isAlarmActive,
bool const isInAlarmRange, DelayTicks*
const pAlarmTick) {
305 if (pAlarmTick ==
nullptr) {
310 if (isInAlarmRange) {
312 *pAlarmTick = m_tick;
319 if (isInAlarmRange) {
324 *pAlarmTick = m_tick;
329template<
typename ValueType>
330void RangeAlarmWithDelay<ValueType>::updateValueUpperRange(ValueType
const& value,
bool const doForce) {
331 resetAlarmTick(m_isUpperAlarmActive, m_range.isAbove(value), &m_upperAlarmTick);
333 DelayTicks
const ticksPassedUpper {m_tick - m_upperAlarmTick};
334 if (m_range.isAbove(value)) {
335 if ((ticksPassedUpper >= m_upperAlarmActivationDelayTicks) || doForce) {
336 activateUpperAlarm();
340 if ((ticksPassedUpper >= m_upperAlarmDeactivationDelayTicks) || doForce) {
341 deactivateUpperAlarm();
346template<
typename ValueType>
347void RangeAlarmWithDelay<ValueType>::updateValueLowerRange(ValueType
const& value,
bool const doForce) {
348 resetAlarmTick(m_isLowerAlarmActive, m_range.isBelow(value), &m_lowerAlarmTick);
350 DelayTicks
const ticksPassedLower {m_tick - m_lowerAlarmTick};
351 if (m_range.isBelow(value)) {
352 if ((ticksPassedLower >= m_lowerAlarmActivationDelayTicks) || doForce) {
353 activateLowerAlarm();
357 if ((ticksPassedLower >= m_lowerAlarmDeactivationDelayTicks) || doForce) {
358 deactivateLowerAlarm();
A range of values limited by an lower and upper value that is included in the range.
Interface to send an alarm message to activate or deactivate a given alarm.
Activates the given alarms if the value is outside the range longer as the given delay.
bool isInRange(ValueType const &value) const
Returns true if the given value is inside the range.
void updateRange(::imt::base::core::util::Range< ValueType > const &range)
Changes the range of the alarm.
void deactivateAlarms()
Deactivates both alarms.
void forceValue(ValueType const &value)
Updates the value and checks for the alarm condition.
bool isLowerAlarmActive() const
Returns whether the lower alarm is currently activated.
uint32_t DelayTicks
The delay in ticks.
void updateValue(ValueType const &value)
Updates the value and checks for the alarm condition.
RangeAlarmWithDelay(AlarmSenderIfc &alarmSender, ::imt::base::core::util::Range< ValueType > const &range, AlarmIdentifier const lowerAlarmId, DelayTicks const lowerAlarmDelayTicks, AlarmIdentifier const upperAlarmId, DelayTicks const upperAlarmDelayTicks) noexcept
Constructor.
static constexpr DelayTicks NULL_DELAY
A delay of 0 ticks.
bool isUpperAlarmActive() const
Returns whether the upper alarm is currently activated.
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.
unsigned __int32 uint32_t