Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 3 | #include <PwmSensor.hpp> |
| 4 | #include <Thresholds.hpp> |
James Feist | 8086aba | 2020-08-25 16:00:59 -0700 | [diff] [blame] | 5 | #include <boost/asio/streambuf.hpp> |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 6 | #include <sdbusplus/asio/object_server.hpp> |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 7 | #include <sensor.hpp> |
James Feist | 38fb598 | 2020-05-28 10:09:54 -0700 | [diff] [blame] | 8 | |
| 9 | #include <memory> |
Patrick Venture | fd6ba73 | 2019-10-31 14:27:39 -0700 | [diff] [blame] | 10 | #include <string> |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 11 | #include <utility> |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 12 | |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 13 | class PSUSensor : public Sensor, public std::enable_shared_from_this<PSUSensor> |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 14 | { |
| 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, |
Zev Weiss | 6b6891c | 2021-04-22 02:46:21 -0500 | [diff] [blame] | 22 | const std::string& sensorUnits, unsigned int factor, double max, |
Jeff Lin | e41d52f | 2021-04-07 19:38:51 +0800 | [diff] [blame^] | 23 | double min, double offset, const std::string& label, size_t tSize, |
Lei YU | 7170a23 | 2021-02-04 16:19:27 +0800 | [diff] [blame] | 24 | double pollRate); |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 25 | ~PSUSensor() override; |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 26 | void setupRead(void); |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 27 | |
| 28 | private: |
| 29 | sdbusplus::asio::object_server& objServer; |
| 30 | boost::asio::posix::stream_descriptor inputDev; |
| 31 | boost::asio::deadline_timer waitTimer; |
James Feist | 930fcde | 2019-05-28 12:58:43 -0700 | [diff] [blame] | 32 | std::string path; |
Zbigniew Kurzynski | 484b9b3 | 2020-06-18 18:15:55 +0200 | [diff] [blame] | 33 | std::string pathRatedMax; |
Brad Bishop | feb19ef | 2019-11-07 18:02:16 -0500 | [diff] [blame] | 34 | std::string pathRatedMin; |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 35 | unsigned int sensorFactor; |
Zbigniew Kurzynski | 484b9b3 | 2020-06-18 18:15:55 +0200 | [diff] [blame] | 36 | uint8_t minMaxReadCounter; |
Jeff Lin | e41d52f | 2021-04-07 19:38:51 +0800 | [diff] [blame^] | 37 | double sensorOffset; |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 38 | void handleResponse(const boost::system::error_code& err); |
| 39 | void checkThresholds(void) override; |
Zbigniew Kurzynski | 484b9b3 | 2020-06-18 18:15:55 +0200 | [diff] [blame] | 40 | void updateMinMaxValues(void); |
Lei YU | 7170a23 | 2021-02-04 16:19:27 +0800 | [diff] [blame] | 41 | unsigned int sensorPollMs = defaultSensorPollMs; |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 42 | |
Cheng C Yang | a97f134 | 2020-02-11 15:10:41 +0800 | [diff] [blame] | 43 | int fd; |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 44 | static constexpr size_t warnAfterErrorCount = 10; |
Lei YU | 7170a23 | 2021-02-04 16:19:27 +0800 | [diff] [blame] | 45 | |
| 46 | public: |
| 47 | static constexpr double defaultSensorPoll = 1.0; |
| 48 | static constexpr unsigned int defaultSensorPollMs = |
| 49 | static_cast<unsigned int>(defaultSensorPoll * 1000); |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | class PSUProperty |
| 53 | { |
| 54 | public: |
Jeff Lin | e41d52f | 2021-04-07 19:38:51 +0800 | [diff] [blame^] | 55 | PSUProperty(std::string name, double max, double min, unsigned int factor, |
| 56 | double offset) : |
| 57 | labelTypeName(std::move(name)), |
| 58 | maxReading(max), minReading(min), sensorScaleFactor(factor), |
| 59 | sensorOffset(offset) |
James Feist | 38fb598 | 2020-05-28 10:09:54 -0700 | [diff] [blame] | 60 | {} |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 61 | ~PSUProperty() = default; |
| 62 | |
Cheng C Yang | e50345b | 2019-04-02 17:26:15 +0800 | [diff] [blame] | 63 | std::string labelTypeName; |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 64 | double maxReading; |
| 65 | double minReading; |
| 66 | unsigned int sensorScaleFactor; |
Jeff Lin | e41d52f | 2021-04-07 19:38:51 +0800 | [diff] [blame^] | 67 | double sensorOffset; |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 68 | }; |