blob: 3e582abcf3cfbcef5b677a68d321c3903900d0fc [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 Feist6714a252018-09-10 15:26:18 -070010 HwmonTempSensor(const std::string &path, const std::string &objectType,
11 sdbusplus::asio::object_server &objectServer,
12 std::shared_ptr<sdbusplus::asio::connection> &conn,
Jae Hyun Yoo9ced0a32018-10-25 10:42:39 -070013 boost::asio::io_service &io, const std::string &fanName,
James Feist6714a252018-09-10 15:26:18 -070014 std::vector<thresholds::Threshold> &&thresholds,
15 const std::string &sensorConfiguration);
16 ~HwmonTempSensor();
17
18 private:
James Feist6714a252018-09-10 15:26:18 -070019 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);
25 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};