blob: 1e01859845a9d2868049e44b362317c172db3d1f [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 Feistd8705872019-02-08 13:26:09 -08009constexpr const char* gpioPath = "/sys/class/gpio/";
James Feist7bc2bab2018-10-26 14:09:45 -070010class PresenceSensor
11{
12
13 public:
14 PresenceSensor(const size_t index, bool inverted,
James Feistd8705872019-02-08 13:26:09 -080015 boost::asio::io_service& io);
James Feist7bc2bab2018-10-26 14:09:45 -070016 ~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:
James Feistd8705872019-02-08 13:26:09 -080032 RedundancySensor(size_t count, const std::vector<std::string>& children,
33 sdbusplus::asio::object_server& objectServer);
James Feistdc6c55f2018-10-31 12:53:20 -070034 ~RedundancySensor();
35
James Feistd8705872019-02-08 13:26:09 -080036 void update(const std::string& name, bool failed);
James Feistdc6c55f2018-10-31 12:53:20 -070037
38 private:
39 size_t count;
40 std::shared_ptr<sdbusplus::asio::dbus_interface> iface;
James Feistd8705872019-02-08 13:26:09 -080041 sdbusplus::asio::object_server& objectServer;
James Feistdc6c55f2018-10-31 12:53:20 -070042 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 Feistd8705872019-02-08 13:26:09 -080048 TachSensor(const std::string& path, const std::string& objectType,
49 sdbusplus::asio::object_server& objectServer,
50 std::shared_ptr<sdbusplus::asio::connection>& conn,
51 std::unique_ptr<PresenceSensor>&& presence,
52 const std::shared_ptr<RedundancySensor>& redundancy,
53 boost::asio::io_service& io, const std::string& fanName,
54 std::vector<thresholds::Threshold>&& thresholds,
55 const std::string& sensorConfiguration,
56 const std::pair<size_t, size_t>& limits);
James Feist6714a252018-09-10 15:26:18 -070057 ~TachSensor();
58
59 private:
James Feistd8705872019-02-08 13:26:09 -080060 sdbusplus::asio::object_server& objServer;
James Feist95b079b2018-11-21 09:28:00 -080061 std::shared_ptr<RedundancySensor> redundancy;
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);
James Feistd8705872019-02-08 13:26:09 -080068 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};