blob: 934357691ab2b53cab5fe81e28809330fd845163 [file] [log] [blame]
James Feist6714a252018-09-10 15:26:18 -07001#pragma once
2
3#include <Thresholds.hpp>
4#include <sdbusplus/asio/object_server.hpp>
James Feist251c7822018-09-12 12:54:15 -07005#include <sensor.hpp>
James Feist6714a252018-09-10 15:26:18 -07006
James Feist251c7822018-09-12 12:54:15 -07007class HwmonTempSensor : public Sensor
James Feist6714a252018-09-10 15:26:18 -07008{
9 public:
James Feistd8705872019-02-08 13:26:09 -080010 HwmonTempSensor(const std::string& path, const std::string& objectType,
11 sdbusplus::asio::object_server& objectServer,
12 std::shared_ptr<sdbusplus::asio::connection>& conn,
13 boost::asio::io_service& io, const std::string& fanName,
14 std::vector<thresholds::Threshold>&& thresholds,
15 const std::string& sensorConfiguration);
James Feist6714a252018-09-10 15:26:18 -070016 ~HwmonTempSensor();
17
18 private:
James Feistd8705872019-02-08 13:26:09 -080019 sdbusplus::asio::object_server& objServer;
Jae Hyun Yoo9ced0a32018-10-25 10:42:39 -070020 boost::asio::posix::stream_descriptor inputDev;
21 boost::asio::deadline_timer waitTimer;
22 boost::asio::streambuf readBuf;
23 int errCount;
Jae Hyun Yoo9ced0a32018-10-25 10:42:39 -070024 void setupRead(void);
James Feistd8705872019-02-08 13:26:09 -080025 void handleResponse(const boost::system::error_code& err);
James Feistce3fca42018-11-21 12:58:24 -080026 void checkThresholds(void) override;
James Feist6714a252018-09-10 15:26:18 -070027};