blob: 811250d0ed4e5b72ffff31f72c8dde39caec9ea7 [file] [log] [blame]
Cheng C Yang209ec562019-03-12 16:37:44 +08001#pragma once
2
Patrick Ventureca44b2f2019-10-31 11:02:26 -07003#include "PwmSensor.hpp"
4#include "Thresholds.hpp"
5#include "sensor.hpp"
6
Patrick Venturefd6ba732019-10-31 14:27:39 -07007#include <memory>
Cheng C Yang209ec562019-03-12 16:37:44 +08008#include <sdbusplus/asio/object_server.hpp>
Patrick Venturefd6ba732019-10-31 14:27:39 -07009#include <string>
Cheng C Yang209ec562019-03-12 16:37:44 +080010
Yong Libf8b1da2020-04-15 16:32:50 +080011class PSUSensor : public Sensor, public std::enable_shared_from_this<PSUSensor>
Cheng C Yang209ec562019-03-12 16:37:44 +080012{
13 public:
14 PSUSensor(const std::string& path, const std::string& objectType,
15 sdbusplus::asio::object_server& objectServer,
16 std::shared_ptr<sdbusplus::asio::connection>& conn,
17 boost::asio::io_service& io, const std::string& sensorName,
18 std::vector<thresholds::Threshold>&& thresholds,
19 const std::string& sensorConfiguration,
20 std::string& sensorTypeName, unsigned int factor, double max,
Cheng C Yang6b1247a2020-03-09 23:48:39 +080021 double min, const std::string& label, size_t tSize);
Cheng C Yang209ec562019-03-12 16:37:44 +080022 ~PSUSensor();
Yong Libf8b1da2020-04-15 16:32:50 +080023 void setupRead(void);
Cheng C Yang209ec562019-03-12 16:37:44 +080024
25 private:
26 sdbusplus::asio::object_server& objServer;
27 boost::asio::posix::stream_descriptor inputDev;
28 boost::asio::deadline_timer waitTimer;
Yong Libf8b1da2020-04-15 16:32:50 +080029 std::shared_ptr<boost::asio::streambuf> readBuf;
James Feist930fcde2019-05-28 12:58:43 -070030 std::string path;
Brad Bishopfbb44ad2019-11-08 09:42:37 -050031 size_t errCount;
Cheng C Yang209ec562019-03-12 16:37:44 +080032 unsigned int sensorFactor;
Cheng C Yang209ec562019-03-12 16:37:44 +080033 void handleResponse(const boost::system::error_code& err);
34 void checkThresholds(void) override;
35
Cheng C Yanga97f1342020-02-11 15:10:41 +080036 int fd;
37 static constexpr unsigned int sensorPollMs = 1000;
Cheng C Yang209ec562019-03-12 16:37:44 +080038 static constexpr size_t warnAfterErrorCount = 10;
39};
40
41class PSUProperty
42{
43 public:
44 PSUProperty(std::string name, double max, double min, unsigned int factor) :
Cheng C Yange50345b2019-04-02 17:26:15 +080045 labelTypeName(name), maxReading(max), minReading(min),
Cheng C Yang209ec562019-03-12 16:37:44 +080046 sensorScaleFactor(factor)
47 {
48 }
49 ~PSUProperty() = default;
50
Cheng C Yange50345b2019-04-02 17:26:15 +080051 std::string labelTypeName;
Cheng C Yang209ec562019-03-12 16:37:44 +080052 double maxReading;
53 double minReading;
54 unsigned int sensorScaleFactor;
55};