blob: c9aa80a7770f8efce17dd87e1e7af60828289d09 [file] [log] [blame]
James Feist6714a252018-09-10 15:26:18 -07001#pragma once
2
3#include <Thresholds.hpp>
James Feistdc6c55f2018-10-31 12:53:20 -07004#include <boost/container/flat_map.hpp>
5#include <boost/container/flat_set.hpp>
James Feist6714a252018-09-10 15:26:18 -07006#include <sdbusplus/asio/object_server.hpp>
James Feist251c7822018-09-12 12:54:15 -07007#include <sensor.hpp>
James Feist6714a252018-09-10 15:26:18 -07008
James Feist7bc2bab2018-10-26 14:09:45 -07009constexpr const char *gpioPath = "/sys/class/gpio/";
10class PresenceSensor
11{
12
13 public:
14 PresenceSensor(const size_t index, bool inverted,
15 boost::asio::io_service &io);
16 ~PresenceSensor();
17
18 void monitorPresence(void);
19 void read(void);
20 bool getValue(void);
21
22 private:
23 bool status = true;
24 bool inverted;
25 boost::asio::ip::tcp::socket inputDev;
26 int fd;
27};
James Feistdc6c55f2018-10-31 12:53:20 -070028
29class RedundancySensor
30{
31 public:
32 RedundancySensor(size_t count, const std::vector<std::string> &children,
33 sdbusplus::asio::object_server &objectServer);
34 ~RedundancySensor();
35
36 void update(const std::string &name, bool failed);
37
38 private:
39 size_t count;
40 std::shared_ptr<sdbusplus::asio::dbus_interface> iface;
41 sdbusplus::asio::object_server &objectServer;
42 boost::container::flat_map<std::string, bool> statuses;
43};
44
James Feist251c7822018-09-12 12:54:15 -070045class TachSensor : public Sensor
James Feist6714a252018-09-10 15:26:18 -070046{
47 public:
James Feistce3fca42018-11-21 12:58:24 -080048 TachSensor(const std::string &path, const std::string &objectType,
James Feist6714a252018-09-10 15:26:18 -070049 sdbusplus::asio::object_server &objectServer,
50 std::shared_ptr<sdbusplus::asio::connection> &conn,
James Feist7bc2bab2018-10-26 14:09:45 -070051 std::unique_ptr<PresenceSensor> &&presence,
James Feist95b079b2018-11-21 09:28:00 -080052 const std::shared_ptr<RedundancySensor> &redundancy,
Jae Hyun Yoo9ced0a32018-10-25 10:42:39 -070053 boost::asio::io_service &io, const std::string &fanName,
James Feist6714a252018-09-10 15:26:18 -070054 std::vector<thresholds::Threshold> &&thresholds,
55 const std::string &sensorConfiguration);
56 ~TachSensor();
57
58 private:
James Feist6714a252018-09-10 15:26:18 -070059 sdbusplus::asio::object_server &objServer;
James Feist95b079b2018-11-21 09:28:00 -080060 std::shared_ptr<RedundancySensor> redundancy;
James Feist6714a252018-09-10 15:26:18 -070061 std::shared_ptr<sdbusplus::asio::connection> dbusConnection;
James Feist7bc2bab2018-10-26 14:09:45 -070062 std::unique_ptr<PresenceSensor> presence;
Jae Hyun Yoo9ced0a32018-10-25 10:42:39 -070063 boost::asio::posix::stream_descriptor inputDev;
64 boost::asio::deadline_timer waitTimer;
65 boost::asio::streambuf readBuf;
66 int errCount;
Jae Hyun Yoo9ced0a32018-10-25 10:42:39 -070067 void setupRead(void);
68 void handleResponse(const boost::system::error_code &err);
James Feistce3fca42018-11-21 12:58:24 -080069 void checkThresholds(void) override;
James Feist6714a252018-09-10 15:26:18 -070070};