1 #pragma once 2 3 #include "DeviceMgmt.hpp" 4 #include "Thresholds.hpp" 5 #include "Utils.hpp" 6 #include "sensor.hpp" 7 8 #include <boost/asio/io_context.hpp> 9 #include <boost/asio/random_access_file.hpp> 10 #include <boost/asio/steady_timer.hpp> 11 #include <sdbusplus/asio/connection.hpp> 12 #include <sdbusplus/asio/object_server.hpp> 13 14 #include <array> 15 #include <cstddef> 16 #include <memory> 17 #include <string> 18 #include <vector> 19 20 struct SensorParams 21 { 22 double minValue; 23 double maxValue; 24 double offsetValue; 25 double scaleValue; 26 std::string units; 27 std::string typeName; 28 }; 29 30 class HwmonTempSensor : 31 public Sensor, 32 public std::enable_shared_from_this<HwmonTempSensor> 33 { 34 public: 35 HwmonTempSensor(const std::string& path, const std::string& objectType, 36 sdbusplus::asio::object_server& objectServer, 37 std::shared_ptr<sdbusplus::asio::connection>& conn, 38 boost::asio::io_context& io, const std::string& sensorName, 39 std::vector<thresholds::Threshold>&& thresholds, 40 const struct SensorParams& thisSensorParameters, 41 float pollRate, const std::string& sensorConfiguration, 42 PowerState powerState, 43 const std::shared_ptr<I2CDevice>& i2cDevice); 44 ~HwmonTempSensor() override; 45 void setupRead(); 46 void activate(const std::string& newPath, 47 const std::shared_ptr<I2CDevice>& newI2CDevice); 48 void deactivate(); 49 bool isActive(); 50 getI2CDevice() const51 std::shared_ptr<I2CDevice> getI2CDevice() const 52 { 53 return i2cDevice; 54 } 55 56 private: 57 // Ordering is important here; readBuf is first so that it's not destroyed 58 // while async operations from other member fields might still be using it. 59 std::array<char, 128> readBuf{}; 60 std::shared_ptr<I2CDevice> i2cDevice; 61 sdbusplus::asio::object_server& objServer; 62 boost::asio::random_access_file inputDev; 63 boost::asio::steady_timer waitTimer; 64 std::string path; 65 double offsetValue; 66 double scaleValue; 67 unsigned int sensorPollMs; 68 69 void handleResponse(const boost::system::error_code& err, size_t bytesRead); 70 void restartRead(); 71 void checkThresholds() override; 72 }; 73