James Feist | 6714a25 | 2018-09-10 15:26:18 -0700 | [diff] [blame] | 1 | #pragma once |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 2 | #include <VariantVisitors.hpp> |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 3 | #include <boost/algorithm/string/predicate.hpp> |
Zhikui Ren | da98f09 | 2021-11-01 09:41:08 -0700 | [diff] [blame] | 4 | #include <boost/algorithm/string/replace.hpp> |
James Feist | 8086aba | 2020-08-25 16:00:59 -0700 | [diff] [blame] | 5 | #include <boost/asio/steady_timer.hpp> |
James Feist | 6714a25 | 2018-09-10 15:26:18 -0700 | [diff] [blame] | 6 | #include <boost/container/flat_map.hpp> |
James Feist | 38fb598 | 2020-05-28 10:09:54 -0700 | [diff] [blame] | 7 | #include <sdbusplus/asio/connection.hpp> |
| 8 | #include <sdbusplus/asio/object_server.hpp> |
| 9 | #include <sdbusplus/message/types.hpp> |
| 10 | |
James Feist | 24f02f2 | 2019-04-15 11:05:39 -0700 | [diff] [blame] | 11 | #include <filesystem> |
Patrick Venture | fd6ba73 | 2019-10-31 14:27:39 -0700 | [diff] [blame] | 12 | #include <functional> |
James Feist | 6714a25 | 2018-09-10 15:26:18 -0700 | [diff] [blame] | 13 | #include <iostream> |
Patrick Venture | fd6ba73 | 2019-10-31 14:27:39 -0700 | [diff] [blame] | 14 | #include <memory> |
Bruce Mitchell | 544e7dc | 2021-07-29 18:05:49 -0500 | [diff] [blame] | 15 | #include <optional> |
James Feist | 6714a25 | 2018-09-10 15:26:18 -0700 | [diff] [blame] | 16 | #include <regex> |
Patrick Venture | fd6ba73 | 2019-10-31 14:27:39 -0700 | [diff] [blame] | 17 | #include <string> |
| 18 | #include <tuple> |
| 19 | #include <utility> |
| 20 | #include <variant> |
| 21 | #include <vector> |
James Feist | 6714a25 | 2018-09-10 15:26:18 -0700 | [diff] [blame] | 22 | |
Jae Hyun Yoo | 9ced0a3 | 2018-10-25 10:42:39 -0700 | [diff] [blame] | 23 | const constexpr char* jsonStore = "/var/configuration/flattened.json"; |
| 24 | const constexpr char* inventoryPath = "/xyz/openbmc_project/inventory"; |
| 25 | const constexpr char* entityManagerName = "xyz.openbmc_project.EntityManager"; |
James Feist | 58295ad | 2019-05-30 15:01:41 -0700 | [diff] [blame] | 26 | |
| 27 | constexpr const char* cpuInventoryPath = |
| 28 | "/xyz/openbmc_project/inventory/system/chassis/motherboard"; |
Jae Hyun Yoo | 9ced0a3 | 2018-10-25 10:42:39 -0700 | [diff] [blame] | 29 | const std::regex illegalDbusRegex("[^A-Za-z0-9_]"); |
James Feist | 6714a25 | 2018-09-10 15:26:18 -0700 | [diff] [blame] | 30 | |
| 31 | using BasicVariantType = |
James Feist | 3eb8262 | 2019-02-08 13:10:22 -0800 | [diff] [blame] | 32 | std::variant<std::vector<std::string>, std::string, int64_t, uint64_t, |
| 33 | double, int32_t, uint32_t, int16_t, uint16_t, uint8_t, bool>; |
Alex Qiu | 8b3f7d4 | 2020-01-06 13:54:42 -0800 | [diff] [blame] | 34 | using SensorBaseConfigMap = |
| 35 | boost::container::flat_map<std::string, BasicVariantType>; |
| 36 | using SensorBaseConfiguration = std::pair<std::string, SensorBaseConfigMap>; |
| 37 | using SensorData = boost::container::flat_map<std::string, SensorBaseConfigMap>; |
| 38 | using ManagedObjectType = |
| 39 | boost::container::flat_map<sdbusplus::message::object_path, SensorData>; |
James Feist | 6714a25 | 2018-09-10 15:26:18 -0700 | [diff] [blame] | 40 | |
James Feist | a5e5872 | 2019-04-22 14:43:11 -0700 | [diff] [blame] | 41 | using GetSubTreeType = std::vector< |
| 42 | std::pair<std::string, |
| 43 | std::vector<std::pair<std::string, std::vector<std::string>>>>>; |
James Feist | d8bd562 | 2019-06-26 12:09:05 -0700 | [diff] [blame] | 44 | using Association = std::tuple<std::string, std::string, std::string>; |
| 45 | |
Zhikui Ren | da98f09 | 2021-11-01 09:41:08 -0700 | [diff] [blame] | 46 | inline std::string escapeName(const std::string& sensorName) |
| 47 | { |
| 48 | return boost::replace_all_copy(sensorName, " ", "_"); |
| 49 | } |
| 50 | |
Zev Weiss | 88cb29d | 2022-05-09 03:46:15 +0000 | [diff] [blame^] | 51 | enum class PowerState |
| 52 | { |
| 53 | on, |
| 54 | biosPost, |
| 55 | always |
| 56 | }; |
| 57 | |
Jason Ling | 100c20b | 2020-08-11 14:50:33 -0700 | [diff] [blame] | 58 | std::optional<std::string> openAndRead(const std::string& hwmonFile); |
| 59 | std::optional<std::string> |
| 60 | getFullHwmonFilePath(const std::string& directory, |
| 61 | const std::string& hwmonBaseName, |
| 62 | const std::set<std::string>& permitSet); |
| 63 | std::set<std::string> getPermitSet(const SensorBaseConfigMap& config); |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 64 | bool findFiles(const std::filesystem::path& dirPath, |
Lei YU | 6a4e973 | 2021-10-20 13:27:34 +0800 | [diff] [blame] | 65 | std::string_view matchString, |
James Feist | cf3bce6 | 2019-01-08 10:07:19 -0800 | [diff] [blame] | 66 | std::vector<std::filesystem::path>& foundPaths, |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 67 | int symlinkDepth = 1); |
James Feist | 71d31b2 | 2019-01-02 16:57:54 -0800 | [diff] [blame] | 68 | bool isPowerOn(void); |
James Feist | fc94b21 | 2019-02-06 16:14:51 -0800 | [diff] [blame] | 69 | bool hasBiosPost(void); |
Zev Weiss | 88cb29d | 2022-05-09 03:46:15 +0000 | [diff] [blame^] | 70 | void setupPowerMatchCallback( |
| 71 | const std::shared_ptr<sdbusplus::asio::connection>& conn, |
| 72 | std::function<void(PowerState type, bool state)>&& callback); |
James Feist | 71d31b2 | 2019-01-02 16:57:54 -0800 | [diff] [blame] | 73 | void setupPowerMatch(const std::shared_ptr<sdbusplus::asio::connection>& conn); |
James Feist | 6714a25 | 2018-09-10 15:26:18 -0700 | [diff] [blame] | 74 | bool getSensorConfiguration( |
| 75 | const std::string& type, |
| 76 | const std::shared_ptr<sdbusplus::asio::connection>& dbusConnection, |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 77 | ManagedObjectType& resp, bool useCache); |
| 78 | |
| 79 | bool getSensorConfiguration( |
| 80 | const std::string& type, |
| 81 | const std::shared_ptr<sdbusplus::asio::connection>& dbusConnection, |
| 82 | ManagedObjectType& resp); |
James Feist | 87d713a | 2018-12-06 16:06:24 -0800 | [diff] [blame] | 83 | |
James Feist | 82bac4c | 2019-03-11 11:16:53 -0700 | [diff] [blame] | 84 | void createAssociation( |
| 85 | std::shared_ptr<sdbusplus::asio::dbus_interface>& association, |
| 86 | const std::string& path); |
| 87 | |
James Feist | 87d713a | 2018-12-06 16:06:24 -0800 | [diff] [blame] | 88 | // replaces limits if MinReading and MaxReading are found. |
| 89 | void findLimits(std::pair<double, double>& limits, |
James Feist | 40a7214 | 2018-12-21 10:09:53 -0800 | [diff] [blame] | 90 | const SensorBaseConfiguration* data); |
| 91 | |
Konstantin Aladyshev | c7a1ae6 | 2021-04-30 08:50:43 +0000 | [diff] [blame] | 92 | bool readingStateGood(const PowerState& powerState); |
| 93 | |
James Feist | a5e5872 | 2019-04-22 14:43:11 -0700 | [diff] [blame] | 94 | namespace mapper |
| 95 | { |
| 96 | constexpr const char* busName = "xyz.openbmc_project.ObjectMapper"; |
| 97 | constexpr const char* path = "/xyz/openbmc_project/object_mapper"; |
| 98 | constexpr const char* interface = "xyz.openbmc_project.ObjectMapper"; |
| 99 | constexpr const char* subtree = "GetSubTree"; |
| 100 | } // namespace mapper |
| 101 | |
| 102 | namespace properties |
| 103 | { |
| 104 | constexpr const char* interface = "org.freedesktop.DBus.Properties"; |
| 105 | constexpr const char* get = "Get"; |
James Feist | 49a8ccd | 2020-09-16 16:09:52 -0700 | [diff] [blame] | 106 | constexpr const char* set = "Set"; |
James Feist | a5e5872 | 2019-04-22 14:43:11 -0700 | [diff] [blame] | 107 | } // namespace properties |
| 108 | |
James Feist | 52497fd | 2019-06-07 13:01:33 -0700 | [diff] [blame] | 109 | namespace power |
| 110 | { |
| 111 | const static constexpr char* busname = "xyz.openbmc_project.State.Host"; |
| 112 | const static constexpr char* interface = "xyz.openbmc_project.State.Host"; |
| 113 | const static constexpr char* path = "/xyz/openbmc_project/state/host0"; |
| 114 | const static constexpr char* property = "CurrentHostState"; |
| 115 | } // namespace power |
| 116 | namespace post |
| 117 | { |
| 118 | const static constexpr char* busname = |
| 119 | "xyz.openbmc_project.State.OperatingSystem"; |
| 120 | const static constexpr char* interface = |
| 121 | "xyz.openbmc_project.State.OperatingSystem.Status"; |
| 122 | const static constexpr char* path = "/xyz/openbmc_project/state/os"; |
| 123 | const static constexpr char* property = "OperatingSystemState"; |
| 124 | } // namespace post |
| 125 | |
James Feist | 2adc95c | 2019-09-30 14:55:28 -0700 | [diff] [blame] | 126 | namespace association |
| 127 | { |
| 128 | const static constexpr char* interface = |
| 129 | "xyz.openbmc_project.Association.Definitions"; |
| 130 | } // namespace association |
| 131 | |
James Feist | 40a7214 | 2018-12-21 10:09:53 -0800 | [diff] [blame] | 132 | template <typename T> |
Zev Weiss | afd1504 | 2022-07-18 12:28:40 -0700 | [diff] [blame] | 133 | inline T loadVariant(const SensorBaseConfigMap& data, const std::string& key) |
James Feist | 40a7214 | 2018-12-21 10:09:53 -0800 | [diff] [blame] | 134 | { |
| 135 | auto it = data.find(key); |
| 136 | if (it == data.end()) |
| 137 | { |
| 138 | std::cerr << "Configuration missing " << key << "\n"; |
| 139 | throw std::invalid_argument("Key Missing"); |
| 140 | } |
| 141 | if constexpr (std::is_same_v<T, double>) |
| 142 | { |
James Feist | 3eb8262 | 2019-02-08 13:10:22 -0800 | [diff] [blame] | 143 | return std::visit(VariantToDoubleVisitor(), it->second); |
James Feist | 40a7214 | 2018-12-21 10:09:53 -0800 | [diff] [blame] | 144 | } |
James Feist | 6ef2040 | 2019-01-07 16:45:08 -0800 | [diff] [blame] | 145 | else if constexpr (std::is_unsigned_v<T>) |
| 146 | { |
James Feist | 3eb8262 | 2019-02-08 13:10:22 -0800 | [diff] [blame] | 147 | return std::visit(VariantToUnsignedIntVisitor(), it->second); |
James Feist | 6ef2040 | 2019-01-07 16:45:08 -0800 | [diff] [blame] | 148 | } |
James Feist | 40a7214 | 2018-12-21 10:09:53 -0800 | [diff] [blame] | 149 | else if constexpr (std::is_same_v<T, std::string>) |
| 150 | { |
James Feist | 3eb8262 | 2019-02-08 13:10:22 -0800 | [diff] [blame] | 151 | return std::visit(VariantToStringVisitor(), it->second); |
James Feist | 40a7214 | 2018-12-21 10:09:53 -0800 | [diff] [blame] | 152 | } |
| 153 | else |
| 154 | { |
James Feist | 52497fd | 2019-06-07 13:01:33 -0700 | [diff] [blame] | 155 | static_assert(!std::is_same_v<T, T>, "Type Not Implemented"); |
James Feist | 40a7214 | 2018-12-21 10:09:53 -0800 | [diff] [blame] | 156 | } |
| 157 | } |
James Feist | fc94b21 | 2019-02-06 16:14:51 -0800 | [diff] [blame] | 158 | |
| 159 | inline void setReadState(const std::string& str, PowerState& val) |
| 160 | { |
| 161 | |
| 162 | if (str == "On") |
| 163 | { |
| 164 | val = PowerState::on; |
| 165 | } |
| 166 | else if (str == "BiosPost") |
| 167 | { |
| 168 | val = PowerState::biosPost; |
| 169 | } |
| 170 | else if (str == "Always") |
| 171 | { |
| 172 | val = PowerState::always; |
| 173 | } |
| 174 | } |
Cheng C Yang | 5580f2f | 2019-09-19 09:01:47 +0800 | [diff] [blame] | 175 | |
Zev Weiss | a4d2768 | 2022-07-19 15:30:36 -0700 | [diff] [blame] | 176 | inline PowerState getPowerState(const SensorBaseConfigMap& cfg) |
| 177 | { |
| 178 | PowerState state = PowerState::always; |
| 179 | auto findPowerState = cfg.find("PowerState"); |
| 180 | if (findPowerState != cfg.end()) |
| 181 | { |
| 182 | std::string powerState = |
| 183 | std::visit(VariantToStringVisitor(), findPowerState->second); |
| 184 | setReadState(powerState, state); |
| 185 | } |
| 186 | return state; |
| 187 | } |
| 188 | |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 189 | inline void setLed(const std::shared_ptr<sdbusplus::asio::connection>& conn, |
James Feist | 49a8ccd | 2020-09-16 16:09:52 -0700 | [diff] [blame] | 190 | const std::string& name, bool on) |
| 191 | { |
| 192 | conn->async_method_call( |
| 193 | [name](const boost::system::error_code ec) { |
Ed Tanous | bb67932 | 2022-05-16 16:10:00 -0700 | [diff] [blame] | 194 | if (ec) |
| 195 | { |
| 196 | std::cerr << "Failed to set LED " << name << "\n"; |
| 197 | } |
James Feist | 49a8ccd | 2020-09-16 16:09:52 -0700 | [diff] [blame] | 198 | }, |
| 199 | "xyz.openbmc_project.LED.GroupManager", |
| 200 | "/xyz/openbmc_project/led/groups/" + name, properties::interface, |
| 201 | properties::set, "xyz.openbmc_project.Led.Group", "Asserted", |
| 202 | std::variant<bool>(on)); |
| 203 | } |
| 204 | |
Cheng C Yang | 5580f2f | 2019-09-19 09:01:47 +0800 | [diff] [blame] | 205 | void createInventoryAssoc( |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 206 | const std::shared_ptr<sdbusplus::asio::connection>& conn, |
| 207 | const std::shared_ptr<sdbusplus::asio::dbus_interface>& association, |
Cheng C Yang | 5580f2f | 2019-09-19 09:01:47 +0800 | [diff] [blame] | 208 | const std::string& path); |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 209 | |
James Feist | 38fb598 | 2020-05-28 10:09:54 -0700 | [diff] [blame] | 210 | struct GetSensorConfiguration : |
| 211 | std::enable_shared_from_this<GetSensorConfiguration> |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 212 | { |
| 213 | GetSensorConfiguration( |
| 214 | std::shared_ptr<sdbusplus::asio::connection> connection, |
| 215 | std::function<void(ManagedObjectType& resp)>&& callbackFunc) : |
Ed Tanous | 8a57ec0 | 2020-10-09 12:46:52 -0700 | [diff] [blame] | 216 | dbusConnection(std::move(connection)), |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 217 | callback(std::move(callbackFunc)) |
James Feist | 38fb598 | 2020-05-28 10:09:54 -0700 | [diff] [blame] | 218 | {} |
James Feist | f27a55c | 2020-08-04 14:27:30 -0700 | [diff] [blame] | 219 | |
| 220 | void getPath(const std::string& path, const std::string& interface, |
| 221 | const std::string& owner, size_t retries = 5) |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 222 | { |
James Feist | f27a55c | 2020-08-04 14:27:30 -0700 | [diff] [blame] | 223 | if (retries > 5) |
| 224 | { |
| 225 | retries = 5; |
| 226 | } |
| 227 | std::shared_ptr<GetSensorConfiguration> self = shared_from_this(); |
| 228 | |
| 229 | self->dbusConnection->async_method_call( |
Zev Weiss | afd1504 | 2022-07-18 12:28:40 -0700 | [diff] [blame] | 230 | [self, path, interface, owner, retries]( |
| 231 | const boost::system::error_code ec, SensorBaseConfigMap& data) { |
Ed Tanous | bb67932 | 2022-05-16 16:10:00 -0700 | [diff] [blame] | 232 | if (ec) |
| 233 | { |
| 234 | std::cerr << "Error getting " << path << ": retries left" |
| 235 | << retries - 1 << "\n"; |
Ed Tanous | 2049bd2 | 2022-07-09 07:20:26 -0700 | [diff] [blame] | 236 | if (retries == 0U) |
James Feist | f27a55c | 2020-08-04 14:27:30 -0700 | [diff] [blame] | 237 | { |
James Feist | f27a55c | 2020-08-04 14:27:30 -0700 | [diff] [blame] | 238 | return; |
| 239 | } |
Ed Tanous | bb67932 | 2022-05-16 16:10:00 -0700 | [diff] [blame] | 240 | auto timer = std::make_shared<boost::asio::steady_timer>( |
| 241 | self->dbusConnection->get_io_context()); |
| 242 | timer->expires_after(std::chrono::seconds(10)); |
| 243 | timer->async_wait([self, timer, path, interface, owner, |
| 244 | retries](boost::system::error_code ec) { |
| 245 | if (ec) |
| 246 | { |
| 247 | std::cerr << "Timer error!\n"; |
| 248 | return; |
| 249 | } |
| 250 | self->getPath(path, interface, owner, retries - 1); |
| 251 | }); |
| 252 | return; |
| 253 | } |
James Feist | f27a55c | 2020-08-04 14:27:30 -0700 | [diff] [blame] | 254 | |
Ed Tanous | bb67932 | 2022-05-16 16:10:00 -0700 | [diff] [blame] | 255 | self->respData[path][interface] = std::move(data); |
James Feist | f27a55c | 2020-08-04 14:27:30 -0700 | [diff] [blame] | 256 | }, |
| 257 | owner, path, "org.freedesktop.DBus.Properties", "GetAll", |
| 258 | interface); |
| 259 | } |
| 260 | |
| 261 | void getConfiguration(const std::vector<std::string>& interfaces, |
| 262 | size_t retries = 0) |
| 263 | { |
| 264 | if (retries > 5) |
| 265 | { |
| 266 | retries = 5; |
| 267 | } |
| 268 | |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 269 | std::shared_ptr<GetSensorConfiguration> self = shared_from_this(); |
| 270 | dbusConnection->async_method_call( |
James Feist | f27a55c | 2020-08-04 14:27:30 -0700 | [diff] [blame] | 271 | [self, interfaces, retries](const boost::system::error_code ec, |
| 272 | const GetSubTreeType& ret) { |
Ed Tanous | bb67932 | 2022-05-16 16:10:00 -0700 | [diff] [blame] | 273 | if (ec) |
| 274 | { |
| 275 | std::cerr << "Error calling mapper\n"; |
Ed Tanous | 2049bd2 | 2022-07-09 07:20:26 -0700 | [diff] [blame] | 276 | if (retries == 0U) |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 277 | { |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 278 | return; |
| 279 | } |
Ed Tanous | bb67932 | 2022-05-16 16:10:00 -0700 | [diff] [blame] | 280 | auto timer = std::make_shared<boost::asio::steady_timer>( |
| 281 | self->dbusConnection->get_io_context()); |
| 282 | timer->expires_after(std::chrono::seconds(10)); |
| 283 | timer->async_wait([self, timer, interfaces, |
| 284 | retries](boost::system::error_code ec) { |
| 285 | if (ec) |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 286 | { |
Ed Tanous | bb67932 | 2022-05-16 16:10:00 -0700 | [diff] [blame] | 287 | std::cerr << "Timer error!\n"; |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 288 | return; |
| 289 | } |
Ed Tanous | bb67932 | 2022-05-16 16:10:00 -0700 | [diff] [blame] | 290 | self->getConfiguration(interfaces, retries - 1); |
| 291 | }); |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 292 | |
Ed Tanous | bb67932 | 2022-05-16 16:10:00 -0700 | [diff] [blame] | 293 | return; |
| 294 | } |
| 295 | for (const auto& [path, objDict] : ret) |
| 296 | { |
| 297 | if (objDict.empty()) |
| 298 | { |
| 299 | return; |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 300 | } |
Ed Tanous | bb67932 | 2022-05-16 16:10:00 -0700 | [diff] [blame] | 301 | const std::string& owner = objDict.begin()->first; |
| 302 | |
| 303 | for (const std::string& interface : objDict.begin()->second) |
| 304 | { |
| 305 | // anything that starts with a requested configuration |
| 306 | // is good |
| 307 | if (std::find_if(interfaces.begin(), interfaces.end(), |
| 308 | [interface](const std::string& possible) { |
| 309 | return boost::starts_with(interface, possible); |
| 310 | }) == interfaces.end()) |
| 311 | { |
| 312 | continue; |
| 313 | } |
| 314 | self->getPath(path, interface, owner); |
| 315 | } |
| 316 | } |
James Feist | c71c119 | 2019-09-18 14:31:33 -0700 | [diff] [blame] | 317 | }, |
| 318 | mapper::busName, mapper::path, mapper::interface, mapper::subtree, |
| 319 | "/", 0, interfaces); |
| 320 | } |
| 321 | |
| 322 | ~GetSensorConfiguration() |
| 323 | { |
| 324 | callback(respData); |
| 325 | } |
| 326 | |
| 327 | std::shared_ptr<sdbusplus::asio::connection> dbusConnection; |
| 328 | std::function<void(ManagedObjectType& resp)> callback; |
| 329 | ManagedObjectType respData; |
| 330 | }; |
Zbigniew Kurzynski | 63f3866 | 2020-06-09 13:02:11 +0200 | [diff] [blame] | 331 | |
| 332 | // The common scheme for sysfs files naming is: <type><number>_<item>. |
| 333 | // This function returns optionally these 3 elements as a tuple. |
| 334 | std::optional<std::tuple<std::string, std::string, std::string>> |
| 335 | splitFileName(const std::filesystem::path& filePath); |
| 336 | std::optional<double> readFile(const std::string& thresholdFile, |
James Feist | 8086aba | 2020-08-25 16:00:59 -0700 | [diff] [blame] | 337 | const double& scaleFactor); |
Bruce Lee | 1263c3d | 2021-06-04 15:16:33 +0800 | [diff] [blame] | 338 | void setupManufacturingModeMatch(sdbusplus::asio::connection& conn); |
| 339 | bool getManufacturingMode(); |