blob: a4710271dca450b926adf9ca08bce40e11e49fa3 [file] [log] [blame]
Szymon Dompkef763c9e2021-03-12 09:19:22 +01001#pragma once
2
Szymon Dompkeb7b7e1b2022-05-19 10:15:48 +02003#include "interfaces/clock.hpp"
Szymon Dompkef763c9e2021-03-12 09:19:22 +01004#include "interfaces/sensor.hpp"
5#include "interfaces/sensor_listener.hpp"
6#include "interfaces/threshold.hpp"
7#include "interfaces/trigger_action.hpp"
Krzysztof Grobelny51f0fd52021-12-28 16:32:08 +01008#include "types/duration_types.hpp"
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +00009#include "types/trigger_types.hpp"
Szymon Dompke94f71c52021-12-10 07:16:33 +010010#include "utils/threshold_operations.hpp"
Szymon Dompkef763c9e2021-03-12 09:19:22 +010011
12#include <boost/asio/steady_timer.hpp>
13
14#include <chrono>
Szymon Dompke94f71c52021-12-10 07:16:33 +010015#include <map>
Szymon Dompkef763c9e2021-03-12 09:19:22 +010016#include <memory>
17#include <vector>
18
19class DiscreteThreshold :
20 public interfaces::Threshold,
21 public interfaces::SensorListener,
22 public std::enable_shared_from_this<DiscreteThreshold>
23{
24 public:
25 DiscreteThreshold(
Szymon Dompkeb7b7e1b2022-05-19 10:15:48 +020026 boost::asio::io_context& ioc, const std::string& triggerId,
27 Sensors sensors,
Szymon Dompkef763c9e2021-03-12 09:19:22 +010028 std::vector<std::unique_ptr<interfaces::TriggerAction>> actions,
Szymon Dompkeaa572362022-03-23 16:31:24 +010029 Milliseconds dwellTime, const std::string& thresholdValue,
Szymon Dompkeb7b7e1b2022-05-19 10:15:48 +020030 const std::string& name, const discrete::Severity severity,
31 std::unique_ptr<interfaces::Clock> clock);
Szymon Dompkef763c9e2021-03-12 09:19:22 +010032 DiscreteThreshold(const DiscreteThreshold&) = delete;
33 DiscreteThreshold(DiscreteThreshold&&) = delete;
Szymon Dompkef763c9e2021-03-12 09:19:22 +010034
35 void initialize() override;
Krzysztof Grobelny51f0fd52021-12-28 16:32:08 +010036 void sensorUpdated(interfaces::Sensor&, Milliseconds, double) override;
Szymon Dompke94f71c52021-12-10 07:16:33 +010037 LabeledThresholdParam getThresholdParam() const override;
38 void updateSensors(Sensors newSensors) override;
Szymon Dompkef763c9e2021-03-12 09:19:22 +010039
40 private:
41 boost::asio::io_context& ioc;
Szymon Dompkeb7b7e1b2022-05-19 10:15:48 +020042 const std::string& triggerId;
Szymon Dompkef763c9e2021-03-12 09:19:22 +010043 const std::vector<std::unique_ptr<interfaces::TriggerAction>> actions;
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000044 const Milliseconds dwellTime;
Szymon Dompkeaa572362022-03-23 16:31:24 +010045 const std::string thresholdValue;
46 const double numericThresholdValue;
Szymon Dompke94f71c52021-12-10 07:16:33 +010047 const discrete::Severity severity;
Szymon Dompkeb7b7e1b2022-05-19 10:15:48 +020048 const std::string name;
Szymon Dompke94f71c52021-12-10 07:16:33 +010049 bool initialized = false;
Szymon Dompkeb7b7e1b2022-05-19 10:15:48 +020050 std::unique_ptr<interfaces::Clock> clock;
Szymon Dompkef763c9e2021-03-12 09:19:22 +010051
52 struct ThresholdDetail
53 {
54 std::string sensorName;
55 bool dwell;
56 boost::asio::steady_timer timer;
57
58 ThresholdDetail(const std::string& name, bool dwell,
59 boost::asio::io_context& ioc) :
60 sensorName(name),
61 dwell(dwell), timer(ioc)
62 {}
63 };
Szymon Dompke94f71c52021-12-10 07:16:33 +010064 using SensorDetails =
65 std::unordered_map<std::shared_ptr<interfaces::Sensor>,
66 std::shared_ptr<ThresholdDetail>>;
67 SensorDetails sensorDetails;
Szymon Dompkef763c9e2021-03-12 09:19:22 +010068
Szymon Dompke94f71c52021-12-10 07:16:33 +010069 friend ThresholdOperations;
70
Szymon Dompkeb7b7e1b2022-05-19 10:15:48 +020071 void startTimer(ThresholdDetail&, double);
72 void commit(const std::string&, double);
Szymon Dompke94f71c52021-12-10 07:16:33 +010073 ThresholdDetail& getDetails(const interfaces::Sensor& sensor);
74 std::shared_ptr<ThresholdDetail> makeDetails(const std::string& sensorName);
Szymon Dompkeb7b7e1b2022-05-19 10:15:48 +020075 std::string getNonEmptyName(const std::string& nameIn) const;
Szymon Dompkef763c9e2021-03-12 09:19:22 +010076};