blob: 4c319896b1048ae74b1911cdc9b0f167e909ddcb [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
James Feist8086aba2020-08-25 16:00:59 -07007#include <boost/asio/streambuf.hpp>
Cheng C Yang209ec562019-03-12 16:37:44 +08008#include <sdbusplus/asio/object_server.hpp>
James Feist38fb5982020-05-28 10:09:54 -07009
10#include <memory>
Patrick Venturefd6ba732019-10-31 14:27:39 -070011#include <string>
Cheng C Yang209ec562019-03-12 16:37:44 +080012
Yong Libf8b1da2020-04-15 16:32:50 +080013class PSUSensor : public Sensor, public std::enable_shared_from_this<PSUSensor>
Cheng C Yang209ec562019-03-12 16:37:44 +080014{
15 public:
16 PSUSensor(const std::string& path, const std::string& objectType,
17 sdbusplus::asio::object_server& objectServer,
18 std::shared_ptr<sdbusplus::asio::connection>& conn,
19 boost::asio::io_service& io, const std::string& sensorName,
20 std::vector<thresholds::Threshold>&& thresholds,
21 const std::string& sensorConfiguration,
22 std::string& sensorTypeName, unsigned int factor, double max,
Cheng C Yang6b1247a2020-03-09 23:48:39 +080023 double min, const std::string& label, size_t tSize);
Cheng C Yang209ec562019-03-12 16:37:44 +080024 ~PSUSensor();
Yong Libf8b1da2020-04-15 16:32:50 +080025 void setupRead(void);
Cheng C Yang209ec562019-03-12 16:37:44 +080026
27 private:
28 sdbusplus::asio::object_server& objServer;
29 boost::asio::posix::stream_descriptor inputDev;
30 boost::asio::deadline_timer waitTimer;
Yong Libf8b1da2020-04-15 16:32:50 +080031 std::shared_ptr<boost::asio::streambuf> readBuf;
James Feist930fcde2019-05-28 12:58:43 -070032 std::string path;
Brad Bishopfbb44ad2019-11-08 09:42:37 -050033 size_t errCount;
Cheng C Yang209ec562019-03-12 16:37:44 +080034 unsigned int sensorFactor;
Cheng C Yang209ec562019-03-12 16:37:44 +080035 void handleResponse(const boost::system::error_code& err);
36 void checkThresholds(void) override;
37
Cheng C Yanga97f1342020-02-11 15:10:41 +080038 int fd;
39 static constexpr unsigned int sensorPollMs = 1000;
Cheng C Yang209ec562019-03-12 16:37:44 +080040 static constexpr size_t warnAfterErrorCount = 10;
41};
42
43class PSUProperty
44{
45 public:
46 PSUProperty(std::string name, double max, double min, unsigned int factor) :
Cheng C Yange50345b2019-04-02 17:26:15 +080047 labelTypeName(name), maxReading(max), minReading(min),
Cheng C Yang209ec562019-03-12 16:37:44 +080048 sensorScaleFactor(factor)
James Feist38fb5982020-05-28 10:09:54 -070049 {}
Cheng C Yang209ec562019-03-12 16:37:44 +080050 ~PSUProperty() = default;
51
Cheng C Yange50345b2019-04-02 17:26:15 +080052 std::string labelTypeName;
Cheng C Yang209ec562019-03-12 16:37:44 +080053 double maxReading;
54 double minReading;
55 unsigned int sensorScaleFactor;
56};