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 */ |
| 111 | std::unique_ptr<CriticalObject> criticalIface; |
| 112 | /** @brief The warning threshold interface object */ |
| 113 | std::unique_ptr<WarningObject> warningIface; |
| 114 | /** @brief The soft shutdown threshold interface object */ |
| 115 | std::unique_ptr<SoftShutdownObject> softShutdownIface; |
| 116 | /** @brief The hard shutdown threshold interface object */ |
| 117 | std::unique_ptr<HardShutdownObject> hardShutdownIface; |
| 118 | |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 119 | /** @brief Read config from json object and initialize sensor data |
| 120 | * for each virtual sensor |
| 121 | */ |
Matt Spinler | ce67522 | 2021-01-14 16:38:09 -0600 | [diff] [blame] | 122 | void initVirtualSensor(const Json& sensorConfig, |
| 123 | const std::string& objPath); |
| 124 | |
Vijay Khemka | 32a7156 | 2020-09-10 15:29:18 -0700 | [diff] [blame] | 125 | /** @brief Check Sensor threshold and update alarm and log */ |
Matt Spinler | 8f5e611 | 2021-01-15 10:44:32 -0600 | [diff] [blame] | 126 | template <typename T> |
| 127 | void checkThresholds(double value, T* iface) |
| 128 | { |
| 129 | if (iface) |
| 130 | { |
| 131 | if (value >= Threshold<T>::high(iface)) |
| 132 | { |
| 133 | if (!Threshold<T>::alarmHigh(iface)) |
| 134 | { |
| 135 | Threshold<T>::alarmHigh(iface, true); |
| 136 | log<level::ERR>(fmt::format("ASSERT: {} has exceeded the " |
| 137 | "{} high threshold", |
| 138 | name, Threshold<T>::name()) |
| 139 | .c_str()); |
| 140 | } |
| 141 | } |
| 142 | else if (Threshold<T>::alarmHigh(iface)) |
| 143 | { |
| 144 | Threshold<T>::alarmHigh(iface, false); |
| 145 | log<level::INFO>(fmt::format("DEASSERT: {} is under the " |
| 146 | "{} high threshold", |
| 147 | name, Threshold<T>::name()) |
| 148 | .c_str()); |
| 149 | } |
| 150 | |
| 151 | if (value <= Threshold<T>::low(iface)) |
| 152 | { |
| 153 | if (!Threshold<T>::alarmLow(iface)) |
| 154 | { |
| 155 | Threshold<T>::alarmLow(iface, true); |
| 156 | log<level::ERR>(fmt::format("ASSERT: {} is under the " |
| 157 | "{} high threshold", |
| 158 | name, Threshold<T>::name()) |
| 159 | .c_str()); |
| 160 | } |
| 161 | } |
| 162 | else if (Threshold<T>::alarmLow(iface)) |
| 163 | { |
| 164 | Threshold<T>::alarmLow(iface, false); |
| 165 | log<level::INFO>(fmt::format("DEASSERT: {} is above the " |
| 166 | "{} high threshold", |
| 167 | name, Threshold<T>::name()) |
| 168 | .c_str()); |
| 169 | } |
| 170 | } |
| 171 | } |
Vijay Khemka | abcc94f | 2020-08-11 15:27:44 -0700 | [diff] [blame] | 172 | }; |
| 173 | |
| 174 | class VirtualSensors |
| 175 | { |
| 176 | public: |
| 177 | VirtualSensors() = delete; |
| 178 | virtual ~VirtualSensors() = default; |
| 179 | |
| 180 | /** @brief Constructs VirtualSensors |
| 181 | * |
| 182 | * @param[in] bus - Handle to system dbus |
| 183 | */ |
| 184 | explicit VirtualSensors(sdbusplus::bus::bus& bus) : bus(bus) |
| 185 | { |
| 186 | createVirtualSensors(); |
| 187 | } |
| 188 | |
| 189 | private: |
| 190 | /** @brief sdbusplus bus client connection. */ |
| 191 | sdbusplus::bus::bus& bus; |
| 192 | /** @brief Parsing virtual sensor config JSON file */ |
| 193 | Json parseConfigFile(const std::string configFile); |
| 194 | |
| 195 | /** @brief Map of the object VirtualSensor */ |
| 196 | std::unordered_map<std::string, std::unique_ptr<VirtualSensor>> |
| 197 | virtualSensorsMap; |
| 198 | |
| 199 | /** @brief Create list of virtual sensors */ |
| 200 | void createVirtualSensors(); |
| 201 | }; |
| 202 | |
| 203 | } // namespace virtualSensor |
| 204 | } // namespace phosphor |