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> |
Ed Tanous | 16966b5 | 2021-09-15 15:06:59 -0700 | [diff] [blame] | 5 | #include <boost/asio/random_access_file.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 | |
Ed Tanous | 16966b5 | 2021-09-15 15:06:59 -0700 | [diff] [blame] | 9 | #include <array> |
James Feist | 38fb598 | 2020-05-28 10:09:54 -0700 | [diff] [blame] | 10 | #include <memory> |
Patrick Venture | fd6ba73 | 2019-10-31 14:27:39 -0700 | [diff] [blame] | 11 | #include <string> |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 12 | #include <utility> |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 13 | |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 14 | class PSUSensor : public Sensor, public std::enable_shared_from_this<PSUSensor> |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 15 | { |
| 16 | public: |
| 17 | PSUSensor(const std::string& path, const std::string& objectType, |
| 18 | sdbusplus::asio::object_server& objectServer, |
| 19 | std::shared_ptr<sdbusplus::asio::connection>& conn, |
| 20 | boost::asio::io_service& io, const std::string& sensorName, |
| 21 | std::vector<thresholds::Threshold>&& thresholds, |
| 22 | const std::string& sensorConfiguration, |
Konstantin Aladyshev | c7a1ae6 | 2021-04-30 08:50:43 +0000 | [diff] [blame] | 23 | const PowerState& powerState, const std::string& sensorUnits, |
| 24 | unsigned int factor, double max, double min, double offset, |
| 25 | const std::string& label, size_t tSize, double pollRate); |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 26 | ~PSUSensor() override; |
Yong Li | bf8b1da | 2020-04-15 16:32:50 +0800 | [diff] [blame] | 27 | void setupRead(void); |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 28 | |
| 29 | private: |
Ed Tanous | 16966b5 | 2021-09-15 15:06:59 -0700 | [diff] [blame] | 30 | // Note, this buffer is a shared_ptr because during a read, its lifetime |
| 31 | // might have to outlive the PSUSensor class if the object gets destroyed |
| 32 | // while in the middle of a read operation |
| 33 | std::shared_ptr<std::array<char, 128>> buffer; |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 34 | sdbusplus::asio::object_server& objServer; |
Ed Tanous | 16966b5 | 2021-09-15 15:06:59 -0700 | [diff] [blame] | 35 | boost::asio::random_access_file inputDev; |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 36 | boost::asio::deadline_timer waitTimer; |
James Feist | 930fcde | 2019-05-28 12:58:43 -0700 | [diff] [blame] | 37 | std::string path; |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 38 | unsigned int sensorFactor; |
Jeff Lin | e41d52f | 2021-04-07 19:38:51 +0800 | [diff] [blame] | 39 | double sensorOffset; |
Konstantin Aladyshev | c7a1ae6 | 2021-04-30 08:50:43 +0000 | [diff] [blame] | 40 | thresholds::ThresholdTimer thresholdTimer; |
| 41 | void restartRead(); |
Ed Tanous | 16966b5 | 2021-09-15 15:06:59 -0700 | [diff] [blame] | 42 | void handleResponse(const boost::system::error_code& err, size_t bytesRead); |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 43 | void checkThresholds(void) override; |
Lei YU | 7170a23 | 2021-02-04 16:19:27 +0800 | [diff] [blame] | 44 | unsigned int sensorPollMs = defaultSensorPollMs; |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 45 | |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 46 | static constexpr size_t warnAfterErrorCount = 10; |
Lei YU | 7170a23 | 2021-02-04 16:19:27 +0800 | [diff] [blame] | 47 | |
| 48 | public: |
| 49 | static constexpr double defaultSensorPoll = 1.0; |
| 50 | static constexpr unsigned int defaultSensorPollMs = |
| 51 | static_cast<unsigned int>(defaultSensorPoll * 1000); |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | class PSUProperty |
| 55 | { |
| 56 | public: |
Jeff Lin | e41d52f | 2021-04-07 19:38:51 +0800 | [diff] [blame] | 57 | PSUProperty(std::string name, double max, double min, unsigned int factor, |
| 58 | double offset) : |
| 59 | labelTypeName(std::move(name)), |
| 60 | maxReading(max), minReading(min), sensorScaleFactor(factor), |
| 61 | sensorOffset(offset) |
James Feist | 38fb598 | 2020-05-28 10:09:54 -0700 | [diff] [blame] | 62 | {} |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 63 | ~PSUProperty() = default; |
| 64 | |
Cheng C Yang | e50345b | 2019-04-02 17:26:15 +0800 | [diff] [blame] | 65 | std::string labelTypeName; |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 66 | double maxReading; |
| 67 | double minReading; |
| 68 | unsigned int sensorScaleFactor; |
Jeff Lin | e41d52f | 2021-04-07 19:38:51 +0800 | [diff] [blame] | 69 | double sensorOffset; |
Cheng C Yang | 209ec56 | 2019-03-12 16:37:44 +0800 | [diff] [blame] | 70 | }; |