Vijay Khemka | 7452a86 | 2020-08-11 16:01:23 -0700 | [diff] [blame] | 1 | #include "dbusSensor.hpp" |
Vijay Khemka | 92d648b | 2020-08-21 18:55:07 -0700 | [diff] [blame] | 2 | #include "exprtkTools.hpp" |
Matt Spinler | 8f5e611 | 2021-01-15 10:44:32 -0600 | [diff] [blame] | 3 | #include "thresholds.hpp" |
| 4 | |
| 5 | #include <fmt/format.h> |
Vijay Khemka | 7452a86 | 2020-08-11 16:01:23 -0700 | [diff] [blame] | 6 | |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 7 | #include <nlohmann/json.hpp> |
| 8 | #include <sdbusplus/bus.hpp> |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 9 | #include <xyz/openbmc_project/Sensor/Value/server.hpp> |
| 10 | |
| 11 | #include <map> |
| 12 | #include <string> |
| 13 | |
| 14 | namespace phosphor |
| 15 | { |
| 16 | namespace virtualSensor |
| 17 | { |
| 18 | |
| 19 | using Json = nlohmann::json; |
Matt Spinler | ce67522 | 2021-01-14 16:38:09 -0600 | [diff] [blame] | 20 | |
| 21 | template <typename... T> |
| 22 | using ServerObject = typename sdbusplus::server::object::object<T...>; |
| 23 | |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 24 | using ValueIface = sdbusplus::xyz::openbmc_project::Sensor::server::Value; |
Matt Spinler | ce67522 | 2021-01-14 16:38:09 -0600 | [diff] [blame] | 25 | using ValueObject = ServerObject<ValueIface>; |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 26 | |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 27 | class SensorParam |
| 28 | { |
| 29 | public: |
| 30 | SensorParam() = delete; |
| 31 | virtual ~SensorParam() = default; |
| 32 | |
| 33 | enum ParamType |
| 34 | { |
| 35 | constParam, |
| 36 | dbusParam |
| 37 | }; |
| 38 | |
| 39 | /** @brief Constructs SensorParam (type = constParam) |
| 40 | * |
| 41 | * @param[in] value - Value of constant parameter |
| 42 | */ |
| 43 | explicit SensorParam(double value) : value(value), paramType(constParam) |
| 44 | {} |
| 45 | |
Vijay Khemka | 7452a86 | 2020-08-11 16:01:23 -0700 | [diff] [blame] | 46 | /** @brief Constructs SensorParam (type = dbusParam) |
| 47 | * |
| 48 | * @param[in] bus - Handle to system dbus |
| 49 | * @param[in] path - The Dbus path of sensor |
Vijay Khemka | 51f898e | 2020-09-09 22:24:18 -0700 | [diff] [blame] | 50 | * @param[in] ctx - sensor context for update |
Vijay Khemka | 7452a86 | 2020-08-11 16:01:23 -0700 | [diff] [blame] | 51 | */ |
Vijay Khemka | 51f898e | 2020-09-09 22:24:18 -0700 | [diff] [blame] | 52 | SensorParam(sdbusplus::bus::bus& bus, std::string path, void* ctx) : |
| 53 | dbusSensor(std::make_unique<DbusSensor>(bus, path, ctx)), |
Vijay Khemka | 7452a86 | 2020-08-11 16:01:23 -0700 | [diff] [blame] | 54 | paramType(dbusParam) |
| 55 | {} |
| 56 | |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 57 | /** @brief Get sensor value property from D-bus interface */ |
| 58 | double getParamValue(); |
| 59 | |
| 60 | private: |
Vijay Khemka | 7452a86 | 2020-08-11 16:01:23 -0700 | [diff] [blame] | 61 | std::unique_ptr<DbusSensor> dbusSensor = nullptr; |
| 62 | double value = 0; |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 63 | ParamType paramType; |
| 64 | }; |
| 65 | |
Matt Spinler | ce67522 | 2021-01-14 16:38:09 -0600 | [diff] [blame] | 66 | class VirtualSensor : public ValueObject |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 67 | { |
| 68 | public: |
| 69 | VirtualSensor() = delete; |
| 70 | virtual ~VirtualSensor() = default; |
| 71 | |
| 72 | /** @brief Constructs VirtualSensor |
| 73 | * |
| 74 | * @param[in] bus - Handle to system dbus |
| 75 | * @param[in] objPath - The Dbus path of sensor |
| 76 | * @param[in] sensorConfig - Json object for sensor config |
| 77 | */ |
| 78 | VirtualSensor(sdbusplus::bus::bus& bus, const char* objPath, |
Vijay Khemka | 32a7156 | 2020-09-10 15:29:18 -0700 | [diff] [blame] | 79 | const Json& sensorConfig, const std::string& name) : |
Matt Spinler | ce67522 | 2021-01-14 16:38:09 -0600 | [diff] [blame] | 80 | ValueObject(bus, objPath), |
Vijay Khemka | 32a7156 | 2020-09-10 15:29:18 -0700 | [diff] [blame] | 81 | bus(bus), name(name) |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 82 | { |
Matt Spinler | ce67522 | 2021-01-14 16:38:09 -0600 | [diff] [blame] | 83 | initVirtualSensor(sensorConfig, objPath); |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 86 | /** @brief Set sensor value */ |
| 87 | void setSensorValue(double value); |
Vijay Khemka | 3ed9a51 | 2020-08-21 16:13:05 -0700 | [diff] [blame] | 88 | /** @brief Update sensor at regular intrval */ |
| 89 | void updateVirtualSensor(); |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 90 | |
| 91 | /** @brief Map of list of parameters */ |
| 92 | using ParamMap = |
| 93 | std::unordered_map<std::string, std::unique_ptr<SensorParam>>; |
| 94 | ParamMap paramMap; |
| 95 | |
| 96 | private: |
| 97 | /** @brief sdbusplus bus client connection. */ |
| 98 | sdbusplus::bus::bus& bus; |
Vijay Khemka | 32a7156 | 2020-09-10 15:29:18 -0700 | [diff] [blame] | 99 | /** @brief name of sensor */ |
| 100 | std::string name; |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 101 | /** @brief Expression string for virtual sensor value calculations */ |
| 102 | std::string exprStr; |
Vijay Khemka | 3ed9a51 | 2020-08-21 16:13:05 -0700 | [diff] [blame] | 103 | /** @brief symbol table from exprtk */ |
| 104 | exprtk::symbol_table<double> symbols{}; |
| 105 | /** @brief expression from exprtk to calculate sensor value */ |
| 106 | exprtk::expression<double> expression{}; |
Matt Spinler | 9f1ef4f | 2020-11-09 15:59:11 -0600 | [diff] [blame] | 107 | /** @brief The vecops package so the expression can use vectors */ |
| 108 | exprtk::rtl::vecops::package<double> vecopsPackage; |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 109 | |
Matt Spinler | ce67522 | 2021-01-14 16:38:09 -0600 | [diff] [blame] | 110 | /** @brief The critical threshold interface object */ |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 111 | std::unique_ptr<Threshold<CriticalObject>> criticalIface; |
Matt Spinler | ce67522 | 2021-01-14 16:38:09 -0600 | [diff] [blame] | 112 | /** @brief The warning threshold interface object */ |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 113 | std::unique_ptr<Threshold<WarningObject>> warningIface; |
Matt Spinler | ce67522 | 2021-01-14 16:38:09 -0600 | [diff] [blame] | 114 | /** @brief The soft shutdown threshold interface object */ |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 115 | std::unique_ptr<Threshold<SoftShutdownObject>> softShutdownIface; |
Matt Spinler | ce67522 | 2021-01-14 16:38:09 -0600 | [diff] [blame] | 116 | /** @brief The hard shutdown threshold interface object */ |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 117 | std::unique_ptr<Threshold<HardShutdownObject>> hardShutdownIface; |
Matt Spinler | b306b03 | 2021-02-01 10:05:46 -0600 | [diff] [blame] | 118 | /** @brief The performance loss threshold interface object */ |
| 119 | std::unique_ptr<Threshold<PerformanceLossObject>> perfLossIface; |
Matt Spinler | ce67522 | 2021-01-14 16:38:09 -0600 | [diff] [blame] | 120 | |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 121 | /** @brief Read config from json object and initialize sensor data |
| 122 | * for each virtual sensor |
| 123 | */ |
Matt Spinler | ce67522 | 2021-01-14 16:38:09 -0600 | [diff] [blame] | 124 | void initVirtualSensor(const Json& sensorConfig, |
| 125 | const std::string& objPath); |
| 126 | |
Vijay Khemka | 32a7156 | 2020-09-10 15:29:18 -0700 | [diff] [blame] | 127 | /** @brief Check Sensor threshold and update alarm and log */ |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 128 | template <typename V, typename T> |
| 129 | void checkThresholds(V value, T& threshold) |
Matt Spinler | 8f5e611 | 2021-01-15 10:44:32 -0600 | [diff] [blame] | 130 | { |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 131 | if (!threshold) |
| 132 | return; |
Matt Spinler | 8f5e611 | 2021-01-15 10:44:32 -0600 | [diff] [blame] | 133 | |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 134 | static constexpr auto tname = T::element_type::name; |
| 135 | |
| 136 | auto alarmHigh = threshold->alarmHigh(); |
Matt Spinler | a4fe665 | 2021-01-28 14:02:59 -0600 | [diff] [blame] | 137 | if ((!alarmHigh && value >= threshold->high()) || |
| 138 | (alarmHigh && value < threshold->high())) |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 139 | { |
| 140 | if (!alarmHigh) |
Matt Spinler | 8f5e611 | 2021-01-15 10:44:32 -0600 | [diff] [blame] | 141 | { |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 142 | constexpr auto msg = |
| 143 | "ASSERT: {} has exceeded the {} high threshold"; |
| 144 | log<level::ERR>(fmt::format(msg, name, tname).c_str()); |
George Hung | 4294e6d | 2021-04-14 20:58:21 +0800 | [diff] [blame^] | 145 | threshold->alarmHighSignalAsserted(value); |
Matt Spinler | 8f5e611 | 2021-01-15 10:44:32 -0600 | [diff] [blame] | 146 | } |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 147 | else |
Matt Spinler | 8f5e611 | 2021-01-15 10:44:32 -0600 | [diff] [blame] | 148 | { |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 149 | constexpr auto msg = |
| 150 | "DEASSERT: {} is under the {} high threshold"; |
| 151 | log<level::INFO>(fmt::format(msg, name, tname).c_str()); |
George Hung | 4294e6d | 2021-04-14 20:58:21 +0800 | [diff] [blame^] | 152 | threshold->alarmHighSignalDeasserted(value); |
Matt Spinler | 8f5e611 | 2021-01-15 10:44:32 -0600 | [diff] [blame] | 153 | } |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 154 | threshold->alarmHigh(!alarmHigh); |
| 155 | } |
| 156 | |
| 157 | auto alarmLow = threshold->alarmLow(); |
Matt Spinler | a4fe665 | 2021-01-28 14:02:59 -0600 | [diff] [blame] | 158 | if ((!alarmLow && value <= threshold->low()) || |
| 159 | (alarmLow && value > threshold->low())) |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 160 | { |
| 161 | if (!alarmLow) |
| 162 | { |
| 163 | constexpr auto msg = "ASSERT: {} is under the {} low threshold"; |
| 164 | log<level::ERR>(fmt::format(msg, name, tname).c_str()); |
George Hung | 4294e6d | 2021-04-14 20:58:21 +0800 | [diff] [blame^] | 165 | threshold->alarmLowSignalAsserted(value); |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 166 | } |
| 167 | else |
| 168 | { |
| 169 | constexpr auto msg = |
| 170 | "DEASSERT: {} is above the {} low threshold"; |
| 171 | log<level::INFO>(fmt::format(msg, name, tname).c_str()); |
George Hung | 4294e6d | 2021-04-14 20:58:21 +0800 | [diff] [blame^] | 172 | threshold->alarmLowSignalDeasserted(value); |
Patrick Williams | fdb826d | 2021-01-20 14:37:53 -0600 | [diff] [blame] | 173 | } |
| 174 | threshold->alarmLow(!alarmLow); |
Matt Spinler | 8f5e611 | 2021-01-15 10:44:32 -0600 | [diff] [blame] | 175 | } |
| 176 | } |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 177 | }; |
| 178 | |
| 179 | class VirtualSensors |
| 180 | { |
| 181 | public: |
| 182 | VirtualSensors() = delete; |
| 183 | virtual ~VirtualSensors() = default; |
| 184 | |
| 185 | /** @brief Constructs VirtualSensors |
| 186 | * |
| 187 | * @param[in] bus - Handle to system dbus |
| 188 | */ |
| 189 | explicit VirtualSensors(sdbusplus::bus::bus& bus) : bus(bus) |
| 190 | { |
| 191 | createVirtualSensors(); |
| 192 | } |
| 193 | |
| 194 | private: |
| 195 | /** @brief sdbusplus bus client connection. */ |
| 196 | sdbusplus::bus::bus& bus; |
| 197 | /** @brief Parsing virtual sensor config JSON file */ |
| 198 | Json parseConfigFile(const std::string configFile); |
| 199 | |
| 200 | /** @brief Map of the object VirtualSensor */ |
| 201 | std::unordered_map<std::string, std::unique_ptr<VirtualSensor>> |
| 202 | virtualSensorsMap; |
| 203 | |
| 204 | /** @brief Create list of virtual sensors */ |
| 205 | void createVirtualSensors(); |
| 206 | }; |
| 207 | |
| 208 | } // namespace virtualSensor |
| 209 | } // namespace phosphor |