xref: /openbmc/bmcweb/features/redfish/lib/sensors.hpp (revision 72374eb7fe42257e866dd088bc13520b0b28cffa)
108777fb0SLewanczyk, Dawid /*
208777fb0SLewanczyk, Dawid // Copyright (c) 2018 Intel Corporation
308777fb0SLewanczyk, Dawid //
408777fb0SLewanczyk, Dawid // Licensed under the Apache License, Version 2.0 (the "License");
508777fb0SLewanczyk, Dawid // you may not use this file except in compliance with the License.
608777fb0SLewanczyk, Dawid // You may obtain a copy of the License at
708777fb0SLewanczyk, Dawid //
808777fb0SLewanczyk, Dawid //      http://www.apache.org/licenses/LICENSE-2.0
908777fb0SLewanczyk, Dawid //
1008777fb0SLewanczyk, Dawid // Unless required by applicable law or agreed to in writing, software
1108777fb0SLewanczyk, Dawid // distributed under the License is distributed on an "AS IS" BASIS,
1208777fb0SLewanczyk, Dawid // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1308777fb0SLewanczyk, Dawid // See the License for the specific language governing permissions and
1408777fb0SLewanczyk, Dawid // limitations under the License.
1508777fb0SLewanczyk, Dawid */
1608777fb0SLewanczyk, Dawid #pragma once
1708777fb0SLewanczyk, Dawid 
187e860f15SJohn Edward Broadbent #include <app.hpp>
1908777fb0SLewanczyk, Dawid #include <boost/algorithm/string/predicate.hpp>
2008777fb0SLewanczyk, Dawid #include <boost/algorithm/string/split.hpp>
2108777fb0SLewanczyk, Dawid #include <boost/container/flat_map.hpp>
2208777fb0SLewanczyk, Dawid #include <boost/range/algorithm/replace_copy_if.hpp>
231abe55efSEd Tanous #include <dbus_singleton.hpp>
24168e20c1SEd Tanous #include <dbus_utility.hpp>
25ed398213SEd Tanous #include <registries/privilege_registry.hpp>
261e1e598dSJonathan Doman #include <sdbusplus/asio/property.hpp>
27413961deSRichard Marian Thomaiyar #include <utils/json_utils.hpp>
281214b7e7SGunnar Mills 
291214b7e7SGunnar Mills #include <cmath>
30b5a76932SEd Tanous #include <utility>
31abf2add6SEd Tanous #include <variant>
3208777fb0SLewanczyk, Dawid 
331abe55efSEd Tanous namespace redfish
341abe55efSEd Tanous {
3508777fb0SLewanczyk, Dawid 
3608777fb0SLewanczyk, Dawid using GetSubTreeType = std::vector<
3708777fb0SLewanczyk, Dawid     std::pair<std::string,
3808777fb0SLewanczyk, Dawid               std::vector<std::pair<std::string, std::vector<std::string>>>>>;
3908777fb0SLewanczyk, Dawid 
4008777fb0SLewanczyk, Dawid using ManagedObjectsVectorType = std::vector<std::pair<
41aa2e59c1SEd Tanous     sdbusplus::message::object_path,
4208777fb0SLewanczyk, Dawid     boost::container::flat_map<
43168e20c1SEd Tanous         std::string, boost::container::flat_map<
44168e20c1SEd Tanous                          std::string, dbus::utility::DbusVariantType>>>>;
4508777fb0SLewanczyk, Dawid 
46a0ec28b6SAdrian Ambrożewicz namespace sensors
47a0ec28b6SAdrian Ambrożewicz {
48a0ec28b6SAdrian Ambrożewicz namespace node
49a0ec28b6SAdrian Ambrożewicz {
50a0ec28b6SAdrian Ambrożewicz static constexpr std::string_view power = "Power";
51a0ec28b6SAdrian Ambrożewicz static constexpr std::string_view sensors = "Sensors";
52a0ec28b6SAdrian Ambrożewicz static constexpr std::string_view thermal = "Thermal";
53a0ec28b6SAdrian Ambrożewicz } // namespace node
54a0ec28b6SAdrian Ambrożewicz 
55a0ec28b6SAdrian Ambrożewicz namespace dbus
56a0ec28b6SAdrian Ambrożewicz {
57c2bf7f99SWludzik, Jozef 
58a0ec28b6SAdrian Ambrożewicz static const boost::container::flat_map<std::string_view,
59a0ec28b6SAdrian Ambrożewicz                                         std::vector<const char*>>
60c2bf7f99SWludzik, Jozef     paths = {{node::power,
61a0ec28b6SAdrian Ambrożewicz               {"/xyz/openbmc_project/sensors/voltage",
62a0ec28b6SAdrian Ambrożewicz                "/xyz/openbmc_project/sensors/power"}},
63a0ec28b6SAdrian Ambrożewicz              {node::sensors,
64a0ec28b6SAdrian Ambrożewicz               {"/xyz/openbmc_project/sensors/power",
65a0ec28b6SAdrian Ambrożewicz                "/xyz/openbmc_project/sensors/current",
667088690cSBasheer Ahmed Muddebihal                "/xyz/openbmc_project/sensors/airflow",
67e8204933SGeorge Liu #ifdef BMCWEB_NEW_POWERSUBSYSTEM_THERMALSUBSYSTEM
68e8204933SGeorge Liu                "/xyz/openbmc_project/sensors/voltage",
69e8204933SGeorge Liu                "/xyz/openbmc_project/sensors/fan_tach",
70e8204933SGeorge Liu                "/xyz/openbmc_project/sensors/temperature",
71e8204933SGeorge Liu                "/xyz/openbmc_project/sensors/fan_pwm",
72e8204933SGeorge Liu                "/xyz/openbmc_project/sensors/altitude",
73e8204933SGeorge Liu                "/xyz/openbmc_project/sensors/energy",
74e8204933SGeorge Liu #endif
75a0ec28b6SAdrian Ambrożewicz                "/xyz/openbmc_project/sensors/utilization"}},
76a0ec28b6SAdrian Ambrożewicz              {node::thermal,
77a0ec28b6SAdrian Ambrożewicz               {"/xyz/openbmc_project/sensors/fan_tach",
78a0ec28b6SAdrian Ambrożewicz                "/xyz/openbmc_project/sensors/temperature",
79a0ec28b6SAdrian Ambrożewicz                "/xyz/openbmc_project/sensors/fan_pwm"}}};
80c2bf7f99SWludzik, Jozef } // namespace dbus
81c2bf7f99SWludzik, Jozef 
82c2bf7f99SWludzik, Jozef inline const char* toReadingType(const std::string& sensorType)
83c2bf7f99SWludzik, Jozef {
84c2bf7f99SWludzik, Jozef     if (sensorType == "voltage")
85c2bf7f99SWludzik, Jozef     {
86c2bf7f99SWludzik, Jozef         return "Voltage";
87c2bf7f99SWludzik, Jozef     }
88c2bf7f99SWludzik, Jozef     if (sensorType == "power")
89c2bf7f99SWludzik, Jozef     {
90c2bf7f99SWludzik, Jozef         return "Power";
91c2bf7f99SWludzik, Jozef     }
92c2bf7f99SWludzik, Jozef     if (sensorType == "current")
93c2bf7f99SWludzik, Jozef     {
94c2bf7f99SWludzik, Jozef         return "Current";
95c2bf7f99SWludzik, Jozef     }
96c2bf7f99SWludzik, Jozef     if (sensorType == "fan_tach")
97c2bf7f99SWludzik, Jozef     {
98c2bf7f99SWludzik, Jozef         return "Rotational";
99c2bf7f99SWludzik, Jozef     }
100c2bf7f99SWludzik, Jozef     if (sensorType == "temperature")
101c2bf7f99SWludzik, Jozef     {
102c2bf7f99SWludzik, Jozef         return "Temperature";
103c2bf7f99SWludzik, Jozef     }
104c2bf7f99SWludzik, Jozef     if (sensorType == "fan_pwm" || sensorType == "utilization")
105c2bf7f99SWludzik, Jozef     {
106c2bf7f99SWludzik, Jozef         return "Percent";
107c2bf7f99SWludzik, Jozef     }
108c2bf7f99SWludzik, Jozef     if (sensorType == "altitude")
109c2bf7f99SWludzik, Jozef     {
110c2bf7f99SWludzik, Jozef         return "Altitude";
111c2bf7f99SWludzik, Jozef     }
112c2bf7f99SWludzik, Jozef     if (sensorType == "airflow")
113c2bf7f99SWludzik, Jozef     {
114c2bf7f99SWludzik, Jozef         return "AirFlow";
115c2bf7f99SWludzik, Jozef     }
116c2bf7f99SWludzik, Jozef     if (sensorType == "energy")
117c2bf7f99SWludzik, Jozef     {
118c2bf7f99SWludzik, Jozef         return "EnergyJoules";
119c2bf7f99SWludzik, Jozef     }
120c2bf7f99SWludzik, Jozef     return "";
121c2bf7f99SWludzik, Jozef }
122c2bf7f99SWludzik, Jozef 
123c2bf7f99SWludzik, Jozef inline const char* toReadingUnits(const std::string& sensorType)
124c2bf7f99SWludzik, Jozef {
125c2bf7f99SWludzik, Jozef     if (sensorType == "voltage")
126c2bf7f99SWludzik, Jozef     {
127c2bf7f99SWludzik, Jozef         return "V";
128c2bf7f99SWludzik, Jozef     }
129c2bf7f99SWludzik, Jozef     if (sensorType == "power")
130c2bf7f99SWludzik, Jozef     {
131c2bf7f99SWludzik, Jozef         return "W";
132c2bf7f99SWludzik, Jozef     }
133c2bf7f99SWludzik, Jozef     if (sensorType == "current")
134c2bf7f99SWludzik, Jozef     {
135c2bf7f99SWludzik, Jozef         return "A";
136c2bf7f99SWludzik, Jozef     }
137c2bf7f99SWludzik, Jozef     if (sensorType == "fan_tach")
138c2bf7f99SWludzik, Jozef     {
139c2bf7f99SWludzik, Jozef         return "RPM";
140c2bf7f99SWludzik, Jozef     }
141c2bf7f99SWludzik, Jozef     if (sensorType == "temperature")
142c2bf7f99SWludzik, Jozef     {
143c2bf7f99SWludzik, Jozef         return "Cel";
144c2bf7f99SWludzik, Jozef     }
145c2bf7f99SWludzik, Jozef     if (sensorType == "fan_pwm" || sensorType == "utilization")
146c2bf7f99SWludzik, Jozef     {
147c2bf7f99SWludzik, Jozef         return "%";
148c2bf7f99SWludzik, Jozef     }
149c2bf7f99SWludzik, Jozef     if (sensorType == "altitude")
150c2bf7f99SWludzik, Jozef     {
151c2bf7f99SWludzik, Jozef         return "m";
152c2bf7f99SWludzik, Jozef     }
153c2bf7f99SWludzik, Jozef     if (sensorType == "airflow")
154c2bf7f99SWludzik, Jozef     {
155c2bf7f99SWludzik, Jozef         return "cft_i/min";
156c2bf7f99SWludzik, Jozef     }
157c2bf7f99SWludzik, Jozef     if (sensorType == "energy")
158c2bf7f99SWludzik, Jozef     {
159c2bf7f99SWludzik, Jozef         return "J";
160c2bf7f99SWludzik, Jozef     }
161c2bf7f99SWludzik, Jozef     return "";
162a0ec28b6SAdrian Ambrożewicz }
163a0ec28b6SAdrian Ambrożewicz } // namespace sensors
164a0ec28b6SAdrian Ambrożewicz 
16508777fb0SLewanczyk, Dawid /**
166588c3f0dSKowalski, Kamil  * SensorsAsyncResp
16708777fb0SLewanczyk, Dawid  * Gathers data needed for response processing after async calls are done
16808777fb0SLewanczyk, Dawid  */
1691abe55efSEd Tanous class SensorsAsyncResp
1701abe55efSEd Tanous {
17108777fb0SLewanczyk, Dawid   public:
172a0ec28b6SAdrian Ambrożewicz     using DataCompleteCb = std::function<void(
173a0ec28b6SAdrian Ambrożewicz         const boost::beast::http::status status,
174a0ec28b6SAdrian Ambrożewicz         const boost::container::flat_map<std::string, std::string>& uriToDbus)>;
175a0ec28b6SAdrian Ambrożewicz 
176a0ec28b6SAdrian Ambrożewicz     struct SensorData
177a0ec28b6SAdrian Ambrożewicz     {
178a0ec28b6SAdrian Ambrożewicz         const std::string name;
179a0ec28b6SAdrian Ambrożewicz         std::string uri;
180a0ec28b6SAdrian Ambrożewicz         const std::string valueKey;
181a0ec28b6SAdrian Ambrożewicz         const std::string dbusPath;
182a0ec28b6SAdrian Ambrożewicz     };
183a0ec28b6SAdrian Ambrożewicz 
1848d1b46d7Szhanghch05     SensorsAsyncResp(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
1858d1b46d7Szhanghch05                      const std::string& chassisIdIn,
186b5a76932SEd Tanous                      const std::vector<const char*>& typesIn,
187a0ec28b6SAdrian Ambrożewicz                      const std::string_view& subNode) :
1888d1b46d7Szhanghch05         asyncResp(asyncResp),
189271584abSEd Tanous         chassisId(chassisIdIn), types(typesIn), chassisSubNode(subNode)
1901214b7e7SGunnar Mills     {}
19108777fb0SLewanczyk, Dawid 
192a0ec28b6SAdrian Ambrożewicz     // Store extra data about sensor mapping and return it in callback
1938d1b46d7Szhanghch05     SensorsAsyncResp(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
1948d1b46d7Szhanghch05                      const std::string& chassisIdIn,
195b5a76932SEd Tanous                      const std::vector<const char*>& typesIn,
196a0ec28b6SAdrian Ambrożewicz                      const std::string_view& subNode,
197a0ec28b6SAdrian Ambrożewicz                      DataCompleteCb&& creationComplete) :
1988d1b46d7Szhanghch05         asyncResp(asyncResp),
199a0ec28b6SAdrian Ambrożewicz         chassisId(chassisIdIn), types(typesIn),
200a0ec28b6SAdrian Ambrożewicz         chassisSubNode(subNode), metadata{std::vector<SensorData>()},
201a0ec28b6SAdrian Ambrożewicz         dataComplete{std::move(creationComplete)}
202a0ec28b6SAdrian Ambrożewicz     {}
203a0ec28b6SAdrian Ambrożewicz 
2041abe55efSEd Tanous     ~SensorsAsyncResp()
2051abe55efSEd Tanous     {
2068d1b46d7Szhanghch05         if (asyncResp->res.result() ==
2078d1b46d7Szhanghch05             boost::beast::http::status::internal_server_error)
2081abe55efSEd Tanous         {
2091abe55efSEd Tanous             // Reset the json object to clear out any data that made it in
2101abe55efSEd Tanous             // before the error happened todo(ed) handle error condition with
2111abe55efSEd Tanous             // proper code
2128d1b46d7Szhanghch05             asyncResp->res.jsonValue = nlohmann::json::object();
21308777fb0SLewanczyk, Dawid         }
214a0ec28b6SAdrian Ambrożewicz 
215a0ec28b6SAdrian Ambrożewicz         if (dataComplete && metadata)
216a0ec28b6SAdrian Ambrożewicz         {
217a0ec28b6SAdrian Ambrożewicz             boost::container::flat_map<std::string, std::string> map;
2188d1b46d7Szhanghch05             if (asyncResp->res.result() == boost::beast::http::status::ok)
219a0ec28b6SAdrian Ambrożewicz             {
220a0ec28b6SAdrian Ambrożewicz                 for (auto& sensor : *metadata)
221a0ec28b6SAdrian Ambrożewicz                 {
222a0ec28b6SAdrian Ambrożewicz                     map.insert(std::make_pair(sensor.uri + sensor.valueKey,
223a0ec28b6SAdrian Ambrożewicz                                               sensor.dbusPath));
224a0ec28b6SAdrian Ambrożewicz                 }
225a0ec28b6SAdrian Ambrożewicz             }
2268d1b46d7Szhanghch05             dataComplete(asyncResp->res.result(), map);
227a0ec28b6SAdrian Ambrożewicz         }
22808777fb0SLewanczyk, Dawid     }
229588c3f0dSKowalski, Kamil 
230ecd6a3a2SEd Tanous     SensorsAsyncResp(const SensorsAsyncResp&) = delete;
231ecd6a3a2SEd Tanous     SensorsAsyncResp(SensorsAsyncResp&&) = delete;
232ecd6a3a2SEd Tanous     SensorsAsyncResp& operator=(const SensorsAsyncResp&) = delete;
233ecd6a3a2SEd Tanous     SensorsAsyncResp& operator=(SensorsAsyncResp&&) = delete;
234ecd6a3a2SEd Tanous 
235a0ec28b6SAdrian Ambrożewicz     void addMetadata(const nlohmann::json& sensorObject,
236a0ec28b6SAdrian Ambrożewicz                      const std::string& valueKey, const std::string& dbusPath)
237a0ec28b6SAdrian Ambrożewicz     {
238a0ec28b6SAdrian Ambrożewicz         if (metadata)
239a0ec28b6SAdrian Ambrożewicz         {
240a0ec28b6SAdrian Ambrożewicz             metadata->emplace_back(SensorData{sensorObject["Name"],
241a0ec28b6SAdrian Ambrożewicz                                               sensorObject["@odata.id"],
242a0ec28b6SAdrian Ambrożewicz                                               valueKey, dbusPath});
243a0ec28b6SAdrian Ambrożewicz         }
244a0ec28b6SAdrian Ambrożewicz     }
245a0ec28b6SAdrian Ambrożewicz 
246a0ec28b6SAdrian Ambrożewicz     void updateUri(const std::string& name, const std::string& uri)
247a0ec28b6SAdrian Ambrożewicz     {
248a0ec28b6SAdrian Ambrożewicz         if (metadata)
249a0ec28b6SAdrian Ambrożewicz         {
250a0ec28b6SAdrian Ambrożewicz             for (auto& sensor : *metadata)
251a0ec28b6SAdrian Ambrożewicz             {
252a0ec28b6SAdrian Ambrożewicz                 if (sensor.name == name)
253a0ec28b6SAdrian Ambrożewicz                 {
254a0ec28b6SAdrian Ambrożewicz                     sensor.uri = uri;
255a0ec28b6SAdrian Ambrożewicz                 }
256a0ec28b6SAdrian Ambrożewicz             }
257a0ec28b6SAdrian Ambrożewicz         }
258a0ec28b6SAdrian Ambrożewicz     }
259a0ec28b6SAdrian Ambrożewicz 
2608d1b46d7Szhanghch05     const std::shared_ptr<bmcweb::AsyncResp> asyncResp;
261a0ec28b6SAdrian Ambrożewicz     const std::string chassisId;
26208777fb0SLewanczyk, Dawid     const std::vector<const char*> types;
263a0ec28b6SAdrian Ambrożewicz     const std::string chassisSubNode;
264a0ec28b6SAdrian Ambrożewicz 
265a0ec28b6SAdrian Ambrożewicz   private:
266a0ec28b6SAdrian Ambrożewicz     std::optional<std::vector<SensorData>> metadata;
267a0ec28b6SAdrian Ambrożewicz     DataCompleteCb dataComplete;
26808777fb0SLewanczyk, Dawid };
26908777fb0SLewanczyk, Dawid 
27008777fb0SLewanczyk, Dawid /**
271d500549bSAnthony Wilson  * Possible states for physical inventory leds
272d500549bSAnthony Wilson  */
273d500549bSAnthony Wilson enum class LedState
274d500549bSAnthony Wilson {
275d500549bSAnthony Wilson     OFF,
276d500549bSAnthony Wilson     ON,
277d500549bSAnthony Wilson     BLINK,
278d500549bSAnthony Wilson     UNKNOWN
279d500549bSAnthony Wilson };
280d500549bSAnthony Wilson 
281d500549bSAnthony Wilson /**
282adc4f0dbSShawn McCarney  * D-Bus inventory item associated with one or more sensors.
283adc4f0dbSShawn McCarney  */
284adc4f0dbSShawn McCarney class InventoryItem
285adc4f0dbSShawn McCarney {
286adc4f0dbSShawn McCarney   public:
287e05aec50SEd Tanous     InventoryItem(const std::string& objPath) : objectPath(objPath)
288adc4f0dbSShawn McCarney     {
289adc4f0dbSShawn McCarney         // Set inventory item name to last node of object path
29028aa8de5SGeorge Liu         sdbusplus::message::object_path path(objectPath);
29128aa8de5SGeorge Liu         name = path.filename();
29228aa8de5SGeorge Liu         if (name.empty())
293adc4f0dbSShawn McCarney         {
29428aa8de5SGeorge Liu             BMCWEB_LOG_ERROR << "Failed to find '/' in " << objectPath;
295adc4f0dbSShawn McCarney         }
296adc4f0dbSShawn McCarney     }
297adc4f0dbSShawn McCarney 
298adc4f0dbSShawn McCarney     std::string objectPath;
299adc4f0dbSShawn McCarney     std::string name;
300e05aec50SEd Tanous     bool isPresent = true;
301e05aec50SEd Tanous     bool isFunctional = true;
302e05aec50SEd Tanous     bool isPowerSupply = false;
303e05aec50SEd Tanous     int powerSupplyEfficiencyPercent = -1;
304adc4f0dbSShawn McCarney     std::string manufacturer;
305adc4f0dbSShawn McCarney     std::string model;
306adc4f0dbSShawn McCarney     std::string partNumber;
307adc4f0dbSShawn McCarney     std::string serialNumber;
308adc4f0dbSShawn McCarney     std::set<std::string> sensors;
309d500549bSAnthony Wilson     std::string ledObjectPath;
310e05aec50SEd Tanous     LedState ledState = LedState::UNKNOWN;
311adc4f0dbSShawn McCarney };
312adc4f0dbSShawn McCarney 
313adc4f0dbSShawn McCarney /**
314413961deSRichard Marian Thomaiyar  * @brief Get objects with connection necessary for sensors
315588c3f0dSKowalski, Kamil  * @param SensorsAsyncResp Pointer to object holding response data
31608777fb0SLewanczyk, Dawid  * @param sensorNames Sensors retrieved from chassis
31708777fb0SLewanczyk, Dawid  * @param callback Callback for processing gathered connections
31808777fb0SLewanczyk, Dawid  */
31908777fb0SLewanczyk, Dawid template <typename Callback>
320413961deSRichard Marian Thomaiyar void getObjectsWithConnection(
32181ce609eSEd Tanous     const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp,
322b5a76932SEd Tanous     const std::shared_ptr<boost::container::flat_set<std::string>>& sensorNames,
3231abe55efSEd Tanous     Callback&& callback)
3241abe55efSEd Tanous {
325413961deSRichard Marian Thomaiyar     BMCWEB_LOG_DEBUG << "getObjectsWithConnection enter";
32603b5bae3SJames Feist     const std::string path = "/xyz/openbmc_project/sensors";
32708777fb0SLewanczyk, Dawid     const std::array<std::string, 1> interfaces = {
32808777fb0SLewanczyk, Dawid         "xyz.openbmc_project.Sensor.Value"};
32908777fb0SLewanczyk, Dawid 
33008777fb0SLewanczyk, Dawid     // Response handler for parsing objects subtree
331f94c4ecfSEd Tanous     auto respHandler = [callback{std::forward<Callback>(callback)},
332f94c4ecfSEd Tanous                         sensorsAsyncResp,
3331abe55efSEd Tanous                         sensorNames](const boost::system::error_code ec,
3341abe55efSEd Tanous                                      const GetSubTreeType& subtree) {
335413961deSRichard Marian Thomaiyar         BMCWEB_LOG_DEBUG << "getObjectsWithConnection resp_handler enter";
3361abe55efSEd Tanous         if (ec)
3371abe55efSEd Tanous         {
3388d1b46d7Szhanghch05             messages::internalError(sensorsAsyncResp->asyncResp->res);
339413961deSRichard Marian Thomaiyar             BMCWEB_LOG_ERROR
340413961deSRichard Marian Thomaiyar                 << "getObjectsWithConnection resp_handler: Dbus error " << ec;
34108777fb0SLewanczyk, Dawid             return;
34208777fb0SLewanczyk, Dawid         }
34308777fb0SLewanczyk, Dawid 
34455c7b7a2SEd Tanous         BMCWEB_LOG_DEBUG << "Found " << subtree.size() << " subtrees";
34508777fb0SLewanczyk, Dawid 
34608777fb0SLewanczyk, Dawid         // Make unique list of connections only for requested sensor types and
34708777fb0SLewanczyk, Dawid         // found in the chassis
34808777fb0SLewanczyk, Dawid         boost::container::flat_set<std::string> connections;
349413961deSRichard Marian Thomaiyar         std::set<std::pair<std::string, std::string>> objectsWithConnection;
3501abe55efSEd Tanous         // Intrinsic to avoid malloc.  Most systems will have < 8 sensor
3511abe55efSEd Tanous         // producers
35208777fb0SLewanczyk, Dawid         connections.reserve(8);
35308777fb0SLewanczyk, Dawid 
35449c53ac9SJohnathan Mantey         BMCWEB_LOG_DEBUG << "sensorNames list count: " << sensorNames->size();
35549c53ac9SJohnathan Mantey         for (const std::string& tsensor : *sensorNames)
3561abe55efSEd Tanous         {
35755c7b7a2SEd Tanous             BMCWEB_LOG_DEBUG << "Sensor to find: " << tsensor;
35808777fb0SLewanczyk, Dawid         }
35908777fb0SLewanczyk, Dawid 
36008777fb0SLewanczyk, Dawid         for (const std::pair<
36108777fb0SLewanczyk, Dawid                  std::string,
36208777fb0SLewanczyk, Dawid                  std::vector<std::pair<std::string, std::vector<std::string>>>>&
3631abe55efSEd Tanous                  object : subtree)
3641abe55efSEd Tanous         {
36549c53ac9SJohnathan Mantey             if (sensorNames->find(object.first) != sensorNames->end())
3661abe55efSEd Tanous             {
36749c53ac9SJohnathan Mantey                 for (const std::pair<std::string, std::vector<std::string>>&
3681abe55efSEd Tanous                          objData : object.second)
3691abe55efSEd Tanous                 {
37049c53ac9SJohnathan Mantey                     BMCWEB_LOG_DEBUG << "Adding connection: " << objData.first;
37108777fb0SLewanczyk, Dawid                     connections.insert(objData.first);
372de629b6eSShawn McCarney                     objectsWithConnection.insert(
373de629b6eSShawn McCarney                         std::make_pair(object.first, objData.first));
37408777fb0SLewanczyk, Dawid                 }
37508777fb0SLewanczyk, Dawid             }
37608777fb0SLewanczyk, Dawid         }
37755c7b7a2SEd Tanous         BMCWEB_LOG_DEBUG << "Found " << connections.size() << " connections";
378413961deSRichard Marian Thomaiyar         callback(std::move(connections), std::move(objectsWithConnection));
379413961deSRichard Marian Thomaiyar         BMCWEB_LOG_DEBUG << "getObjectsWithConnection resp_handler exit";
38008777fb0SLewanczyk, Dawid     };
38108777fb0SLewanczyk, Dawid     // Make call to ObjectMapper to find all sensors objects
38255c7b7a2SEd Tanous     crow::connections::systemBus->async_method_call(
38355c7b7a2SEd Tanous         std::move(respHandler), "xyz.openbmc_project.ObjectMapper",
3841abe55efSEd Tanous         "/xyz/openbmc_project/object_mapper",
3851abe55efSEd Tanous         "xyz.openbmc_project.ObjectMapper", "GetSubTree", path, 2, interfaces);
386413961deSRichard Marian Thomaiyar     BMCWEB_LOG_DEBUG << "getObjectsWithConnection exit";
387413961deSRichard Marian Thomaiyar }
388413961deSRichard Marian Thomaiyar 
389413961deSRichard Marian Thomaiyar /**
390413961deSRichard Marian Thomaiyar  * @brief Create connections necessary for sensors
391413961deSRichard Marian Thomaiyar  * @param SensorsAsyncResp Pointer to object holding response data
392413961deSRichard Marian Thomaiyar  * @param sensorNames Sensors retrieved from chassis
393413961deSRichard Marian Thomaiyar  * @param callback Callback for processing gathered connections
394413961deSRichard Marian Thomaiyar  */
395413961deSRichard Marian Thomaiyar template <typename Callback>
39649c53ac9SJohnathan Mantey void getConnections(
39781ce609eSEd Tanous     std::shared_ptr<SensorsAsyncResp> sensorsAsyncResp,
39849c53ac9SJohnathan Mantey     const std::shared_ptr<boost::container::flat_set<std::string>> sensorNames,
399413961deSRichard Marian Thomaiyar     Callback&& callback)
400413961deSRichard Marian Thomaiyar {
401413961deSRichard Marian Thomaiyar     auto objectsWithConnectionCb =
402413961deSRichard Marian Thomaiyar         [callback](const boost::container::flat_set<std::string>& connections,
403413961deSRichard Marian Thomaiyar                    const std::set<std::pair<std::string, std::string>>&
4043174e4dfSEd Tanous                    /*objectsWithConnection*/) { callback(connections); };
40581ce609eSEd Tanous     getObjectsWithConnection(sensorsAsyncResp, sensorNames,
406413961deSRichard Marian Thomaiyar                              std::move(objectsWithConnectionCb));
40708777fb0SLewanczyk, Dawid }
40808777fb0SLewanczyk, Dawid 
40908777fb0SLewanczyk, Dawid /**
41049c53ac9SJohnathan Mantey  * @brief Shrinks the list of sensors for processing
41149c53ac9SJohnathan Mantey  * @param SensorsAysncResp  The class holding the Redfish response
41249c53ac9SJohnathan Mantey  * @param allSensors  A list of all the sensors associated to the
41349c53ac9SJohnathan Mantey  * chassis element (i.e. baseboard, front panel, etc...)
41449c53ac9SJohnathan Mantey  * @param activeSensors A list that is a reduction of the incoming
41549c53ac9SJohnathan Mantey  * allSensors list.  Eliminate Thermal sensors when a Power request is
41649c53ac9SJohnathan Mantey  * made, and eliminate Power sensors when a Thermal request is made.
41749c53ac9SJohnathan Mantey  */
41823a21a1cSEd Tanous inline void reduceSensorList(
41981ce609eSEd Tanous     const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp,
42049c53ac9SJohnathan Mantey     const std::vector<std::string>* allSensors,
421b5a76932SEd Tanous     const std::shared_ptr<boost::container::flat_set<std::string>>&
422b5a76932SEd Tanous         activeSensors)
42349c53ac9SJohnathan Mantey {
42481ce609eSEd Tanous     if (sensorsAsyncResp == nullptr)
42549c53ac9SJohnathan Mantey     {
42649c53ac9SJohnathan Mantey         return;
42749c53ac9SJohnathan Mantey     }
42849c53ac9SJohnathan Mantey     if ((allSensors == nullptr) || (activeSensors == nullptr))
42949c53ac9SJohnathan Mantey     {
43049c53ac9SJohnathan Mantey         messages::resourceNotFound(
4318d1b46d7Szhanghch05             sensorsAsyncResp->asyncResp->res, sensorsAsyncResp->chassisSubNode,
43281ce609eSEd Tanous             sensorsAsyncResp->chassisSubNode == sensors::node::thermal
433a0ec28b6SAdrian Ambrożewicz                 ? "Temperatures"
43449c53ac9SJohnathan Mantey                 : "Voltages");
43549c53ac9SJohnathan Mantey 
43649c53ac9SJohnathan Mantey         return;
43749c53ac9SJohnathan Mantey     }
43849c53ac9SJohnathan Mantey     if (allSensors->empty())
43949c53ac9SJohnathan Mantey     {
44049c53ac9SJohnathan Mantey         // Nothing to do, the activeSensors object is also empty
44149c53ac9SJohnathan Mantey         return;
44249c53ac9SJohnathan Mantey     }
44349c53ac9SJohnathan Mantey 
44481ce609eSEd Tanous     for (const char* type : sensorsAsyncResp->types)
44549c53ac9SJohnathan Mantey     {
44649c53ac9SJohnathan Mantey         for (const std::string& sensor : *allSensors)
44749c53ac9SJohnathan Mantey         {
44849c53ac9SJohnathan Mantey             if (boost::starts_with(sensor, type))
44949c53ac9SJohnathan Mantey             {
45049c53ac9SJohnathan Mantey                 activeSensors->emplace(sensor);
45149c53ac9SJohnathan Mantey             }
45249c53ac9SJohnathan Mantey         }
45349c53ac9SJohnathan Mantey     }
45449c53ac9SJohnathan Mantey }
45549c53ac9SJohnathan Mantey 
45649c53ac9SJohnathan Mantey /**
4574bb3dc34SCarol Wang  * @brief Retrieves valid chassis path
4584bb3dc34SCarol Wang  * @param asyncResp   Pointer to object holding response data
4594bb3dc34SCarol Wang  * @param callback  Callback for next step to get valid chassis path
4604bb3dc34SCarol Wang  */
4614bb3dc34SCarol Wang template <typename Callback>
462b5a76932SEd Tanous void getValidChassisPath(const std::shared_ptr<SensorsAsyncResp>& asyncResp,
4634bb3dc34SCarol Wang                          Callback&& callback)
4644bb3dc34SCarol Wang {
4654bb3dc34SCarol Wang     BMCWEB_LOG_DEBUG << "checkChassisId enter";
4664bb3dc34SCarol Wang     const std::array<const char*, 2> interfaces = {
4674bb3dc34SCarol Wang         "xyz.openbmc_project.Inventory.Item.Board",
4684bb3dc34SCarol Wang         "xyz.openbmc_project.Inventory.Item.Chassis"};
4694bb3dc34SCarol Wang 
4704bb3dc34SCarol Wang     auto respHandler =
471f94c4ecfSEd Tanous         [callback{std::forward<Callback>(callback)},
4724bb3dc34SCarol Wang          asyncResp](const boost::system::error_code ec,
4734bb3dc34SCarol Wang                     const std::vector<std::string>& chassisPaths) mutable {
4744bb3dc34SCarol Wang             BMCWEB_LOG_DEBUG << "getValidChassisPath respHandler enter";
4754bb3dc34SCarol Wang             if (ec)
4764bb3dc34SCarol Wang             {
4774bb3dc34SCarol Wang                 BMCWEB_LOG_ERROR
4784bb3dc34SCarol Wang                     << "getValidChassisPath respHandler DBUS error: " << ec;
4798d1b46d7Szhanghch05                 messages::internalError(asyncResp->asyncResp->res);
4804bb3dc34SCarol Wang                 return;
4814bb3dc34SCarol Wang             }
4824bb3dc34SCarol Wang 
4834bb3dc34SCarol Wang             std::optional<std::string> chassisPath;
4844bb3dc34SCarol Wang             std::string chassisName;
4854bb3dc34SCarol Wang             for (const std::string& chassis : chassisPaths)
4864bb3dc34SCarol Wang             {
48728aa8de5SGeorge Liu                 sdbusplus::message::object_path path(chassis);
48828aa8de5SGeorge Liu                 chassisName = path.filename();
48928aa8de5SGeorge Liu                 if (chassisName.empty())
4904bb3dc34SCarol Wang                 {
4914bb3dc34SCarol Wang                     BMCWEB_LOG_ERROR << "Failed to find '/' in " << chassis;
4924bb3dc34SCarol Wang                     continue;
4934bb3dc34SCarol Wang                 }
4944bb3dc34SCarol Wang                 if (chassisName == asyncResp->chassisId)
4954bb3dc34SCarol Wang                 {
4964bb3dc34SCarol Wang                     chassisPath = chassis;
4974bb3dc34SCarol Wang                     break;
4984bb3dc34SCarol Wang                 }
4994bb3dc34SCarol Wang             }
5004bb3dc34SCarol Wang             callback(chassisPath);
5014bb3dc34SCarol Wang         };
5024bb3dc34SCarol Wang 
5034bb3dc34SCarol Wang     // Get the Chassis Collection
5044bb3dc34SCarol Wang     crow::connections::systemBus->async_method_call(
5054bb3dc34SCarol Wang         respHandler, "xyz.openbmc_project.ObjectMapper",
5064bb3dc34SCarol Wang         "/xyz/openbmc_project/object_mapper",
5074bb3dc34SCarol Wang         "xyz.openbmc_project.ObjectMapper", "GetSubTreePaths",
5084bb3dc34SCarol Wang         "/xyz/openbmc_project/inventory", 0, interfaces);
5094bb3dc34SCarol Wang     BMCWEB_LOG_DEBUG << "checkChassisId exit";
5104bb3dc34SCarol Wang }
5114bb3dc34SCarol Wang 
5124bb3dc34SCarol Wang /**
51308777fb0SLewanczyk, Dawid  * @brief Retrieves requested chassis sensors and redundancy data from DBus .
514588c3f0dSKowalski, Kamil  * @param SensorsAsyncResp   Pointer to object holding response data
51508777fb0SLewanczyk, Dawid  * @param callback  Callback for next step in gathered sensor processing
51608777fb0SLewanczyk, Dawid  */
51708777fb0SLewanczyk, Dawid template <typename Callback>
518b5a76932SEd Tanous void getChassis(const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp,
5191abe55efSEd Tanous                 Callback&& callback)
5201abe55efSEd Tanous {
52155c7b7a2SEd Tanous     BMCWEB_LOG_DEBUG << "getChassis enter";
522adc4f0dbSShawn McCarney     const std::array<const char*, 2> interfaces = {
52349c53ac9SJohnathan Mantey         "xyz.openbmc_project.Inventory.Item.Board",
524adc4f0dbSShawn McCarney         "xyz.openbmc_project.Inventory.Item.Chassis"};
525f94c4ecfSEd Tanous     auto respHandler = [callback{std::forward<Callback>(callback)},
526f94c4ecfSEd Tanous                         sensorsAsyncResp](
52749c53ac9SJohnathan Mantey                            const boost::system::error_code ec,
52849c53ac9SJohnathan Mantey                            const std::vector<std::string>& chassisPaths) {
52955c7b7a2SEd Tanous         BMCWEB_LOG_DEBUG << "getChassis respHandler enter";
5301abe55efSEd Tanous         if (ec)
5311abe55efSEd Tanous         {
53255c7b7a2SEd Tanous             BMCWEB_LOG_ERROR << "getChassis respHandler DBUS error: " << ec;
5338d1b46d7Szhanghch05             messages::internalError(sensorsAsyncResp->asyncResp->res);
53408777fb0SLewanczyk, Dawid             return;
53508777fb0SLewanczyk, Dawid         }
53608777fb0SLewanczyk, Dawid 
53749c53ac9SJohnathan Mantey         const std::string* chassisPath = nullptr;
53849c53ac9SJohnathan Mantey         std::string chassisName;
53949c53ac9SJohnathan Mantey         for (const std::string& chassis : chassisPaths)
5401abe55efSEd Tanous         {
54128aa8de5SGeorge Liu             sdbusplus::message::object_path path(chassis);
54228aa8de5SGeorge Liu             chassisName = path.filename();
54328aa8de5SGeorge Liu             if (chassisName.empty())
5441abe55efSEd Tanous             {
54549c53ac9SJohnathan Mantey                 BMCWEB_LOG_ERROR << "Failed to find '/' in " << chassis;
546daf36e2eSEd Tanous                 continue;
547daf36e2eSEd Tanous             }
54849c53ac9SJohnathan Mantey             if (chassisName == sensorsAsyncResp->chassisId)
5491abe55efSEd Tanous             {
55049c53ac9SJohnathan Mantey                 chassisPath = &chassis;
55149c53ac9SJohnathan Mantey                 break;
552daf36e2eSEd Tanous             }
55349c53ac9SJohnathan Mantey         }
55449c53ac9SJohnathan Mantey         if (chassisPath == nullptr)
5551abe55efSEd Tanous         {
5568d1b46d7Szhanghch05             messages::resourceNotFound(sensorsAsyncResp->asyncResp->res,
5578d1b46d7Szhanghch05                                        "Chassis", sensorsAsyncResp->chassisId);
55849c53ac9SJohnathan Mantey             return;
5591abe55efSEd Tanous         }
56008777fb0SLewanczyk, Dawid 
56149c53ac9SJohnathan Mantey         const std::string& chassisSubNode = sensorsAsyncResp->chassisSubNode;
562a0ec28b6SAdrian Ambrożewicz         if (chassisSubNode == sensors::node::power)
56349c53ac9SJohnathan Mantey         {
5648d1b46d7Szhanghch05             sensorsAsyncResp->asyncResp->res.jsonValue["@odata.type"] =
56549c53ac9SJohnathan Mantey                 "#Power.v1_5_2.Power";
56649c53ac9SJohnathan Mantey         }
567a0ec28b6SAdrian Ambrożewicz         else if (chassisSubNode == sensors::node::thermal)
56849c53ac9SJohnathan Mantey         {
5698d1b46d7Szhanghch05             sensorsAsyncResp->asyncResp->res.jsonValue["@odata.type"] =
57049c53ac9SJohnathan Mantey                 "#Thermal.v1_4_0.Thermal";
5718d1b46d7Szhanghch05             sensorsAsyncResp->asyncResp->res.jsonValue["Fans"] =
5728d1b46d7Szhanghch05                 nlohmann::json::array();
5738d1b46d7Szhanghch05             sensorsAsyncResp->asyncResp->res.jsonValue["Temperatures"] =
5744f9a2130SJennifer Lee                 nlohmann::json::array();
57549c53ac9SJohnathan Mantey         }
576a0ec28b6SAdrian Ambrożewicz         else if (chassisSubNode == sensors::node::sensors)
57795a3ecadSAnthony Wilson         {
5788d1b46d7Szhanghch05             sensorsAsyncResp->asyncResp->res.jsonValue["@odata.type"] =
57995a3ecadSAnthony Wilson                 "#SensorCollection.SensorCollection";
5808d1b46d7Szhanghch05             sensorsAsyncResp->asyncResp->res.jsonValue["Description"] =
58195a3ecadSAnthony Wilson                 "Collection of Sensors for this Chassis";
5828d1b46d7Szhanghch05             sensorsAsyncResp->asyncResp->res.jsonValue["Members"] =
58395a3ecadSAnthony Wilson                 nlohmann::json::array();
5848d1b46d7Szhanghch05             sensorsAsyncResp->asyncResp->res.jsonValue["Members@odata.count"] =
5858d1b46d7Szhanghch05                 0;
58695a3ecadSAnthony Wilson         }
58795a3ecadSAnthony Wilson 
588a0ec28b6SAdrian Ambrożewicz         if (chassisSubNode != sensors::node::sensors)
58995a3ecadSAnthony Wilson         {
5908d1b46d7Szhanghch05             sensorsAsyncResp->asyncResp->res.jsonValue["Id"] = chassisSubNode;
59195a3ecadSAnthony Wilson         }
59295a3ecadSAnthony Wilson 
5938d1b46d7Szhanghch05         sensorsAsyncResp->asyncResp->res.jsonValue["@odata.id"] =
59449c53ac9SJohnathan Mantey             "/redfish/v1/Chassis/" + sensorsAsyncResp->chassisId + "/" +
59549c53ac9SJohnathan Mantey             chassisSubNode;
5968d1b46d7Szhanghch05         sensorsAsyncResp->asyncResp->res.jsonValue["Name"] = chassisSubNode;
5978fb49dd6SShawn McCarney         // Get the list of all sensors for this Chassis element
5988fb49dd6SShawn McCarney         std::string sensorPath = *chassisPath + "/all_sensors";
5991e1e598dSJonathan Doman         sdbusplus::asio::getProperty<std::vector<std::string>>(
6001e1e598dSJonathan Doman             *crow::connections::systemBus, "xyz.openbmc_project.ObjectMapper",
6011e1e598dSJonathan Doman             sensorPath, "xyz.openbmc_project.Association", "endpoints",
602f94c4ecfSEd Tanous             [sensorsAsyncResp,
603f94c4ecfSEd Tanous              callback{std::forward<const Callback>(callback)}](
604271584abSEd Tanous                 const boost::system::error_code& e,
6051e1e598dSJonathan Doman                 const std::vector<std::string>& nodeSensorList) {
606271584abSEd Tanous                 if (e)
60749c53ac9SJohnathan Mantey                 {
608271584abSEd Tanous                     if (e.value() != EBADR)
60949c53ac9SJohnathan Mantey                     {
6108d1b46d7Szhanghch05                         messages::internalError(
6118d1b46d7Szhanghch05                             sensorsAsyncResp->asyncResp->res);
61249c53ac9SJohnathan Mantey                         return;
61349c53ac9SJohnathan Mantey                     }
61449c53ac9SJohnathan Mantey                 }
61549c53ac9SJohnathan Mantey                 const std::shared_ptr<boost::container::flat_set<std::string>>
61649c53ac9SJohnathan Mantey                     culledSensorList = std::make_shared<
61749c53ac9SJohnathan Mantey                         boost::container::flat_set<std::string>>();
6181e1e598dSJonathan Doman                 reduceSensorList(sensorsAsyncResp, &nodeSensorList,
61949c53ac9SJohnathan Mantey                                  culledSensorList);
62049c53ac9SJohnathan Mantey                 callback(culledSensorList);
6211e1e598dSJonathan Doman             });
62249c53ac9SJohnathan Mantey     };
62349c53ac9SJohnathan Mantey 
62449c53ac9SJohnathan Mantey     // Get the Chassis Collection
62549c53ac9SJohnathan Mantey     crow::connections::systemBus->async_method_call(
62649c53ac9SJohnathan Mantey         respHandler, "xyz.openbmc_project.ObjectMapper",
62749c53ac9SJohnathan Mantey         "/xyz/openbmc_project/object_mapper",
62849c53ac9SJohnathan Mantey         "xyz.openbmc_project.ObjectMapper", "GetSubTreePaths",
629271584abSEd Tanous         "/xyz/openbmc_project/inventory", 0, interfaces);
63055c7b7a2SEd Tanous     BMCWEB_LOG_DEBUG << "getChassis exit";
63108777fb0SLewanczyk, Dawid }
63208777fb0SLewanczyk, Dawid 
63308777fb0SLewanczyk, Dawid /**
634de629b6eSShawn McCarney  * @brief Finds all DBus object paths that implement ObjectManager.
635de629b6eSShawn McCarney  *
636de629b6eSShawn McCarney  * Creates a mapping from the associated connection name to the object path.
637de629b6eSShawn McCarney  *
638de629b6eSShawn McCarney  * Finds the object paths asynchronously.  Invokes callback when information has
639de629b6eSShawn McCarney  * been obtained.
640de629b6eSShawn McCarney  *
641de629b6eSShawn McCarney  * The callback must have the following signature:
642de629b6eSShawn McCarney  *   @code
6438fb49dd6SShawn McCarney  *   callback(std::shared_ptr<boost::container::flat_map<std::string,
6448fb49dd6SShawn McCarney  *                std::string>> objectMgrPaths)
645de629b6eSShawn McCarney  *   @endcode
646de629b6eSShawn McCarney  *
64749c53ac9SJohnathan Mantey  * @param sensorsAsyncResp Pointer to object holding response data.
648de629b6eSShawn McCarney  * @param callback Callback to invoke when object paths obtained.
649de629b6eSShawn McCarney  */
650de629b6eSShawn McCarney template <typename Callback>
651b5a76932SEd Tanous void getObjectManagerPaths(
65281ce609eSEd Tanous     const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp,
653de629b6eSShawn McCarney     Callback&& callback)
654de629b6eSShawn McCarney {
655de629b6eSShawn McCarney     BMCWEB_LOG_DEBUG << "getObjectManagerPaths enter";
656de629b6eSShawn McCarney     const std::array<std::string, 1> interfaces = {
657de629b6eSShawn McCarney         "org.freedesktop.DBus.ObjectManager"};
658de629b6eSShawn McCarney 
659de629b6eSShawn McCarney     // Response handler for GetSubTree DBus method
660f94c4ecfSEd Tanous     auto respHandler = [callback{std::forward<Callback>(callback)},
66181ce609eSEd Tanous                         sensorsAsyncResp](const boost::system::error_code ec,
662de629b6eSShawn McCarney                                           const GetSubTreeType& subtree) {
663de629b6eSShawn McCarney         BMCWEB_LOG_DEBUG << "getObjectManagerPaths respHandler enter";
664de629b6eSShawn McCarney         if (ec)
665de629b6eSShawn McCarney         {
6668d1b46d7Szhanghch05             messages::internalError(sensorsAsyncResp->asyncResp->res);
667de629b6eSShawn McCarney             BMCWEB_LOG_ERROR << "getObjectManagerPaths respHandler: DBus error "
668de629b6eSShawn McCarney                              << ec;
669de629b6eSShawn McCarney             return;
670de629b6eSShawn McCarney         }
671de629b6eSShawn McCarney 
672de629b6eSShawn McCarney         // Loop over returned object paths
6738fb49dd6SShawn McCarney         std::shared_ptr<boost::container::flat_map<std::string, std::string>>
6748fb49dd6SShawn McCarney             objectMgrPaths = std::make_shared<
6758fb49dd6SShawn McCarney                 boost::container::flat_map<std::string, std::string>>();
676de629b6eSShawn McCarney         for (const std::pair<
677de629b6eSShawn McCarney                  std::string,
678de629b6eSShawn McCarney                  std::vector<std::pair<std::string, std::vector<std::string>>>>&
679de629b6eSShawn McCarney                  object : subtree)
680de629b6eSShawn McCarney         {
681de629b6eSShawn McCarney             // Loop over connections for current object path
682de629b6eSShawn McCarney             const std::string& objectPath = object.first;
683de629b6eSShawn McCarney             for (const std::pair<std::string, std::vector<std::string>>&
684de629b6eSShawn McCarney                      objData : object.second)
685de629b6eSShawn McCarney             {
686de629b6eSShawn McCarney                 // Add mapping from connection to object path
687de629b6eSShawn McCarney                 const std::string& connection = objData.first;
6888fb49dd6SShawn McCarney                 (*objectMgrPaths)[connection] = objectPath;
689de629b6eSShawn McCarney                 BMCWEB_LOG_DEBUG << "Added mapping " << connection << " -> "
690de629b6eSShawn McCarney                                  << objectPath;
691de629b6eSShawn McCarney             }
692de629b6eSShawn McCarney         }
6938fb49dd6SShawn McCarney         callback(objectMgrPaths);
694de629b6eSShawn McCarney         BMCWEB_LOG_DEBUG << "getObjectManagerPaths respHandler exit";
695de629b6eSShawn McCarney     };
696de629b6eSShawn McCarney 
697de629b6eSShawn McCarney     // Query mapper for all DBus object paths that implement ObjectManager
698de629b6eSShawn McCarney     crow::connections::systemBus->async_method_call(
699de629b6eSShawn McCarney         std::move(respHandler), "xyz.openbmc_project.ObjectMapper",
700de629b6eSShawn McCarney         "/xyz/openbmc_project/object_mapper",
701271584abSEd Tanous         "xyz.openbmc_project.ObjectMapper", "GetSubTree", "/", 0, interfaces);
702de629b6eSShawn McCarney     BMCWEB_LOG_DEBUG << "getObjectManagerPaths exit";
703de629b6eSShawn McCarney }
704de629b6eSShawn McCarney 
705de629b6eSShawn McCarney /**
706adc4f0dbSShawn McCarney  * @brief Returns the Redfish State value for the specified inventory item.
707adc4f0dbSShawn McCarney  * @param inventoryItem D-Bus inventory item associated with a sensor.
708adc4f0dbSShawn McCarney  * @return State value for inventory item.
70934dd179eSJames Feist  */
71023a21a1cSEd Tanous inline std::string getState(const InventoryItem* inventoryItem)
711adc4f0dbSShawn McCarney {
712adc4f0dbSShawn McCarney     if ((inventoryItem != nullptr) && !(inventoryItem->isPresent))
713adc4f0dbSShawn McCarney     {
714adc4f0dbSShawn McCarney         return "Absent";
715adc4f0dbSShawn McCarney     }
71634dd179eSJames Feist 
717adc4f0dbSShawn McCarney     return "Enabled";
718adc4f0dbSShawn McCarney }
719adc4f0dbSShawn McCarney 
720adc4f0dbSShawn McCarney /**
721adc4f0dbSShawn McCarney  * @brief Returns the Redfish Health value for the specified sensor.
722adc4f0dbSShawn McCarney  * @param sensorJson Sensor JSON object.
723adc4f0dbSShawn McCarney  * @param interfacesDict Map of all sensor interfaces.
724adc4f0dbSShawn McCarney  * @param inventoryItem D-Bus inventory item associated with the sensor.  Will
725adc4f0dbSShawn McCarney  * be nullptr if no associated inventory item was found.
726adc4f0dbSShawn McCarney  * @return Health value for sensor.
727adc4f0dbSShawn McCarney  */
728711ac7a9SEd Tanous inline std::string
729711ac7a9SEd Tanous     getHealth(nlohmann::json& sensorJson,
730711ac7a9SEd Tanous               const dbus::utility::DBusInteracesMap& interfacesDict,
731adc4f0dbSShawn McCarney               const InventoryItem* inventoryItem)
73234dd179eSJames Feist {
733adc4f0dbSShawn McCarney     // Get current health value (if any) in the sensor JSON object.  Some JSON
734adc4f0dbSShawn McCarney     // objects contain multiple sensors (such as PowerSupplies).  We want to set
735adc4f0dbSShawn McCarney     // the overall health to be the most severe of any of the sensors.
736adc4f0dbSShawn McCarney     std::string currentHealth;
737adc4f0dbSShawn McCarney     auto statusIt = sensorJson.find("Status");
738adc4f0dbSShawn McCarney     if (statusIt != sensorJson.end())
739adc4f0dbSShawn McCarney     {
740adc4f0dbSShawn McCarney         auto healthIt = statusIt->find("Health");
741adc4f0dbSShawn McCarney         if (healthIt != statusIt->end())
742adc4f0dbSShawn McCarney         {
743adc4f0dbSShawn McCarney             std::string* health = healthIt->get_ptr<std::string*>();
744adc4f0dbSShawn McCarney             if (health != nullptr)
745adc4f0dbSShawn McCarney             {
746adc4f0dbSShawn McCarney                 currentHealth = *health;
747adc4f0dbSShawn McCarney             }
748adc4f0dbSShawn McCarney         }
749adc4f0dbSShawn McCarney     }
750adc4f0dbSShawn McCarney 
751adc4f0dbSShawn McCarney     // If current health in JSON object is already Critical, return that.  This
752adc4f0dbSShawn McCarney     // should override the sensor health, which might be less severe.
753adc4f0dbSShawn McCarney     if (currentHealth == "Critical")
754adc4f0dbSShawn McCarney     {
755adc4f0dbSShawn McCarney         return "Critical";
756adc4f0dbSShawn McCarney     }
757adc4f0dbSShawn McCarney 
758adc4f0dbSShawn McCarney     // Check if sensor has critical threshold alarm
759711ac7a9SEd Tanous 
7609eb808c1SEd Tanous     for (const auto& [interface, values] : interfacesDict)
76134dd179eSJames Feist     {
762711ac7a9SEd Tanous         if (interface == "xyz.openbmc_project.Sensor.Threshold.Critical")
76334dd179eSJames Feist         {
7649eb808c1SEd Tanous             for (const auto& [valueName, value] : values)
765711ac7a9SEd Tanous             {
766711ac7a9SEd Tanous                 if (valueName == "CriticalAlarmHigh" ||
767711ac7a9SEd Tanous                     valueName == "CriticalAlarmLow")
768711ac7a9SEd Tanous                 {
769711ac7a9SEd Tanous                     const bool* asserted = std::get_if<bool>(&value);
77034dd179eSJames Feist                     if (asserted == nullptr)
77134dd179eSJames Feist                     {
77234dd179eSJames Feist                         BMCWEB_LOG_ERROR << "Illegal sensor threshold";
77334dd179eSJames Feist                     }
77434dd179eSJames Feist                     else if (*asserted)
77534dd179eSJames Feist                     {
77634dd179eSJames Feist                         return "Critical";
77734dd179eSJames Feist                     }
77834dd179eSJames Feist                 }
77934dd179eSJames Feist             }
78034dd179eSJames Feist         }
78134dd179eSJames Feist     }
78234dd179eSJames Feist 
783adc4f0dbSShawn McCarney     // Check if associated inventory item is not functional
784adc4f0dbSShawn McCarney     if ((inventoryItem != nullptr) && !(inventoryItem->isFunctional))
785adc4f0dbSShawn McCarney     {
786adc4f0dbSShawn McCarney         return "Critical";
787adc4f0dbSShawn McCarney     }
788adc4f0dbSShawn McCarney 
789adc4f0dbSShawn McCarney     // If current health in JSON object is already Warning, return that.  This
790adc4f0dbSShawn McCarney     // should override the sensor status, which might be less severe.
791adc4f0dbSShawn McCarney     if (currentHealth == "Warning")
792adc4f0dbSShawn McCarney     {
793adc4f0dbSShawn McCarney         return "Warning";
794adc4f0dbSShawn McCarney     }
795adc4f0dbSShawn McCarney 
796adc4f0dbSShawn McCarney     // Check if sensor has warning threshold alarm
7979eb808c1SEd Tanous     for (const auto& [interface, values] : interfacesDict)
79834dd179eSJames Feist     {
799711ac7a9SEd Tanous         if (interface == "xyz.openbmc_project.Sensor.Threshold.Warning")
80034dd179eSJames Feist         {
8019eb808c1SEd Tanous             for (const auto& [valueName, value] : values)
802711ac7a9SEd Tanous             {
803711ac7a9SEd Tanous                 if (valueName == "WarningAlarmHigh" ||
804711ac7a9SEd Tanous                     valueName == "WarningAlarmLow")
805711ac7a9SEd Tanous                 {
806711ac7a9SEd Tanous                     const bool* asserted = std::get_if<bool>(&value);
80734dd179eSJames Feist                     if (asserted == nullptr)
80834dd179eSJames Feist                     {
80934dd179eSJames Feist                         BMCWEB_LOG_ERROR << "Illegal sensor threshold";
81034dd179eSJames Feist                     }
81134dd179eSJames Feist                     else if (*asserted)
81234dd179eSJames Feist                     {
813ebe4d91eSEd Tanous                         return "Warning";
81434dd179eSJames Feist                     }
81534dd179eSJames Feist                 }
81634dd179eSJames Feist             }
81734dd179eSJames Feist         }
81834dd179eSJames Feist     }
819adc4f0dbSShawn McCarney 
82034dd179eSJames Feist     return "OK";
82134dd179eSJames Feist }
82234dd179eSJames Feist 
82323a21a1cSEd Tanous inline void setLedState(nlohmann::json& sensorJson,
824d500549bSAnthony Wilson                         const InventoryItem* inventoryItem)
825d500549bSAnthony Wilson {
826d500549bSAnthony Wilson     if (inventoryItem != nullptr && !inventoryItem->ledObjectPath.empty())
827d500549bSAnthony Wilson     {
828d500549bSAnthony Wilson         switch (inventoryItem->ledState)
829d500549bSAnthony Wilson         {
830d500549bSAnthony Wilson             case LedState::OFF:
831d500549bSAnthony Wilson                 sensorJson["IndicatorLED"] = "Off";
832d500549bSAnthony Wilson                 break;
833d500549bSAnthony Wilson             case LedState::ON:
834d500549bSAnthony Wilson                 sensorJson["IndicatorLED"] = "Lit";
835d500549bSAnthony Wilson                 break;
836d500549bSAnthony Wilson             case LedState::BLINK:
837d500549bSAnthony Wilson                 sensorJson["IndicatorLED"] = "Blinking";
838d500549bSAnthony Wilson                 break;
83923a21a1cSEd Tanous             case LedState::UNKNOWN:
840d500549bSAnthony Wilson                 break;
841d500549bSAnthony Wilson         }
842d500549bSAnthony Wilson     }
843d500549bSAnthony Wilson }
844d500549bSAnthony Wilson 
84534dd179eSJames Feist /**
84608777fb0SLewanczyk, Dawid  * @brief Builds a json sensor representation of a sensor.
84708777fb0SLewanczyk, Dawid  * @param sensorName  The name of the sensor to be built
848274fad5aSGunnar Mills  * @param sensorType  The type (temperature, fan_tach, etc) of the sensor to
84908777fb0SLewanczyk, Dawid  * build
850a0ec28b6SAdrian Ambrożewicz  * @param sensorsAsyncResp  Sensor metadata
85108777fb0SLewanczyk, Dawid  * @param interfacesDict  A dictionary of the interfaces and properties of said
85208777fb0SLewanczyk, Dawid  * interfaces to be built from
85308777fb0SLewanczyk, Dawid  * @param sensor_json  The json object to fill
854adc4f0dbSShawn McCarney  * @param inventoryItem D-Bus inventory item associated with the sensor.  Will
855adc4f0dbSShawn McCarney  * be nullptr if no associated inventory item was found.
85608777fb0SLewanczyk, Dawid  */
85723a21a1cSEd Tanous inline void objectInterfacesToJson(
85808777fb0SLewanczyk, Dawid     const std::string& sensorName, const std::string& sensorType,
859b5a76932SEd Tanous     const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp,
860711ac7a9SEd Tanous     const dbus::utility::DBusInteracesMap& interfacesDict,
86181ce609eSEd Tanous     nlohmann::json& sensorJson, InventoryItem* inventoryItem)
8621abe55efSEd Tanous {
86308777fb0SLewanczyk, Dawid     // Assume values exist as is (10^0 == 1) if no scale exists
86408777fb0SLewanczyk, Dawid     int64_t scaleMultiplier = 0;
8659eb808c1SEd Tanous     for (const auto& [interface, values] : interfacesDict)
8661abe55efSEd Tanous     {
867711ac7a9SEd Tanous         if (interface == "xyz.openbmc_project.Sensor.Value")
868711ac7a9SEd Tanous         {
8699eb808c1SEd Tanous             for (const auto& [valueName, value] : values)
870711ac7a9SEd Tanous             {
871711ac7a9SEd Tanous                 if (valueName == "Scale")
872711ac7a9SEd Tanous                 {
873711ac7a9SEd Tanous                     const int64_t* int64Value = std::get_if<int64_t>(&value);
8741abe55efSEd Tanous                     if (int64Value != nullptr)
8751abe55efSEd Tanous                     {
87608777fb0SLewanczyk, Dawid                         scaleMultiplier = *int64Value;
87708777fb0SLewanczyk, Dawid                     }
87808777fb0SLewanczyk, Dawid                 }
879711ac7a9SEd Tanous             }
880711ac7a9SEd Tanous         }
881711ac7a9SEd Tanous     }
88208777fb0SLewanczyk, Dawid 
883a0ec28b6SAdrian Ambrożewicz     if (sensorsAsyncResp->chassisSubNode == sensors::node::sensors)
884adc4f0dbSShawn McCarney     {
88595a3ecadSAnthony Wilson         // For sensors in SensorCollection we set Id instead of MemberId,
88695a3ecadSAnthony Wilson         // including power sensors.
88781ce609eSEd Tanous         sensorJson["Id"] = sensorName;
88881ce609eSEd Tanous         sensorJson["Name"] = boost::replace_all_copy(sensorName, "_", " ");
88995a3ecadSAnthony Wilson     }
89095a3ecadSAnthony Wilson     else if (sensorType != "power")
89195a3ecadSAnthony Wilson     {
89295a3ecadSAnthony Wilson         // Set MemberId and Name for non-power sensors.  For PowerSupplies and
89395a3ecadSAnthony Wilson         // PowerControl, those properties have more general values because
89495a3ecadSAnthony Wilson         // multiple sensors can be stored in the same JSON object.
89581ce609eSEd Tanous         sensorJson["MemberId"] = sensorName;
89681ce609eSEd Tanous         sensorJson["Name"] = boost::replace_all_copy(sensorName, "_", " ");
897adc4f0dbSShawn McCarney     }
898e742b6ccSEd Tanous 
89981ce609eSEd Tanous     sensorJson["Status"]["State"] = getState(inventoryItem);
90081ce609eSEd Tanous     sensorJson["Status"]["Health"] =
90181ce609eSEd Tanous         getHealth(sensorJson, interfacesDict, inventoryItem);
90208777fb0SLewanczyk, Dawid 
90308777fb0SLewanczyk, Dawid     // Parameter to set to override the type we get from dbus, and force it to
90408777fb0SLewanczyk, Dawid     // int, regardless of what is available.  This is used for schemas like fan,
90508777fb0SLewanczyk, Dawid     // that require integers, not floats.
90608777fb0SLewanczyk, Dawid     bool forceToInt = false;
90708777fb0SLewanczyk, Dawid 
9083929aca1SAnthony Wilson     nlohmann::json::json_pointer unit("/Reading");
909a0ec28b6SAdrian Ambrożewicz     if (sensorsAsyncResp->chassisSubNode == sensors::node::sensors)
91095a3ecadSAnthony Wilson     {
91181ce609eSEd Tanous         sensorJson["@odata.type"] = "#Sensor.v1_0_0.Sensor";
912c2bf7f99SWludzik, Jozef 
913c2bf7f99SWludzik, Jozef         const std::string& readingType = sensors::toReadingType(sensorType);
914c2bf7f99SWludzik, Jozef         if (readingType.empty())
91595a3ecadSAnthony Wilson         {
916c2bf7f99SWludzik, Jozef             BMCWEB_LOG_ERROR << "Redfish cannot map reading type for "
917c2bf7f99SWludzik, Jozef                              << sensorType;
91895a3ecadSAnthony Wilson         }
919c2bf7f99SWludzik, Jozef         else
92095a3ecadSAnthony Wilson         {
921c2bf7f99SWludzik, Jozef             sensorJson["ReadingType"] = readingType;
92295a3ecadSAnthony Wilson         }
923c2bf7f99SWludzik, Jozef 
924c2bf7f99SWludzik, Jozef         const std::string& readingUnits = sensors::toReadingUnits(sensorType);
925c2bf7f99SWludzik, Jozef         if (readingUnits.empty())
926f8ede15eSAdrian Ambrożewicz         {
927c2bf7f99SWludzik, Jozef             BMCWEB_LOG_ERROR << "Redfish cannot map reading unit for "
928c2bf7f99SWludzik, Jozef                              << sensorType;
929c2bf7f99SWludzik, Jozef         }
930c2bf7f99SWludzik, Jozef         else
931c2bf7f99SWludzik, Jozef         {
932c2bf7f99SWludzik, Jozef             sensorJson["ReadingUnits"] = readingUnits;
933f8ede15eSAdrian Ambrożewicz         }
93495a3ecadSAnthony Wilson     }
93595a3ecadSAnthony Wilson     else if (sensorType == "temperature")
9361abe55efSEd Tanous     {
9373929aca1SAnthony Wilson         unit = "/ReadingCelsius"_json_pointer;
93881ce609eSEd Tanous         sensorJson["@odata.type"] = "#Thermal.v1_3_0.Temperature";
93908777fb0SLewanczyk, Dawid         // TODO(ed) Documentation says that path should be type fan_tach,
94008777fb0SLewanczyk, Dawid         // implementation seems to implement fan
9411abe55efSEd Tanous     }
9421abe55efSEd Tanous     else if (sensorType == "fan" || sensorType == "fan_tach")
9431abe55efSEd Tanous     {
9443929aca1SAnthony Wilson         unit = "/Reading"_json_pointer;
94581ce609eSEd Tanous         sensorJson["ReadingUnits"] = "RPM";
94681ce609eSEd Tanous         sensorJson["@odata.type"] = "#Thermal.v1_3_0.Fan";
94781ce609eSEd Tanous         setLedState(sensorJson, inventoryItem);
94808777fb0SLewanczyk, Dawid         forceToInt = true;
9491abe55efSEd Tanous     }
9506f6d0d32SEd Tanous     else if (sensorType == "fan_pwm")
9516f6d0d32SEd Tanous     {
9523929aca1SAnthony Wilson         unit = "/Reading"_json_pointer;
95381ce609eSEd Tanous         sensorJson["ReadingUnits"] = "Percent";
95481ce609eSEd Tanous         sensorJson["@odata.type"] = "#Thermal.v1_3_0.Fan";
95581ce609eSEd Tanous         setLedState(sensorJson, inventoryItem);
9566f6d0d32SEd Tanous         forceToInt = true;
9576f6d0d32SEd Tanous     }
9581abe55efSEd Tanous     else if (sensorType == "voltage")
9591abe55efSEd Tanous     {
9603929aca1SAnthony Wilson         unit = "/ReadingVolts"_json_pointer;
96181ce609eSEd Tanous         sensorJson["@odata.type"] = "#Power.v1_0_0.Voltage";
9621abe55efSEd Tanous     }
9632474adfaSEd Tanous     else if (sensorType == "power")
9642474adfaSEd Tanous     {
96549c53ac9SJohnathan Mantey         std::string sensorNameLower =
96649c53ac9SJohnathan Mantey             boost::algorithm::to_lower_copy(sensorName);
96749c53ac9SJohnathan Mantey 
968e662eae8SEd Tanous         if (sensorName.compare("total_power") == 0)
969028f7ebcSEddie James         {
97081ce609eSEd Tanous             sensorJson["@odata.type"] = "#Power.v1_0_0.PowerControl";
9717ab06f49SGunnar Mills             // Put multiple "sensors" into a single PowerControl, so have
9727ab06f49SGunnar Mills             // generic names for MemberId and Name. Follows Redfish mockup.
97381ce609eSEd Tanous             sensorJson["MemberId"] = "0";
97481ce609eSEd Tanous             sensorJson["Name"] = "Chassis Power Control";
9753929aca1SAnthony Wilson             unit = "/PowerConsumedWatts"_json_pointer;
976028f7ebcSEddie James         }
977028f7ebcSEddie James         else if (sensorNameLower.find("input") != std::string::npos)
97849c53ac9SJohnathan Mantey         {
9793929aca1SAnthony Wilson             unit = "/PowerInputWatts"_json_pointer;
98049c53ac9SJohnathan Mantey         }
98149c53ac9SJohnathan Mantey         else
98249c53ac9SJohnathan Mantey         {
9833929aca1SAnthony Wilson             unit = "/PowerOutputWatts"_json_pointer;
98449c53ac9SJohnathan Mantey         }
9852474adfaSEd Tanous     }
9861abe55efSEd Tanous     else
9871abe55efSEd Tanous     {
98855c7b7a2SEd Tanous         BMCWEB_LOG_ERROR << "Redfish cannot map object type for " << sensorName;
98908777fb0SLewanczyk, Dawid         return;
99008777fb0SLewanczyk, Dawid     }
99108777fb0SLewanczyk, Dawid     // Map of dbus interface name, dbus property name and redfish property_name
9923929aca1SAnthony Wilson     std::vector<
9933929aca1SAnthony Wilson         std::tuple<const char*, const char*, nlohmann::json::json_pointer>>
9943929aca1SAnthony Wilson         properties;
99508777fb0SLewanczyk, Dawid     properties.reserve(7);
99608777fb0SLewanczyk, Dawid 
99708777fb0SLewanczyk, Dawid     properties.emplace_back("xyz.openbmc_project.Sensor.Value", "Value", unit);
998de629b6eSShawn McCarney 
999a0ec28b6SAdrian Ambrożewicz     if (sensorsAsyncResp->chassisSubNode == sensors::node::sensors)
10003929aca1SAnthony Wilson     {
10013929aca1SAnthony Wilson         properties.emplace_back(
10023929aca1SAnthony Wilson             "xyz.openbmc_project.Sensor.Threshold.Warning", "WarningHigh",
10033929aca1SAnthony Wilson             "/Thresholds/UpperCaution/Reading"_json_pointer);
10043929aca1SAnthony Wilson         properties.emplace_back(
10053929aca1SAnthony Wilson             "xyz.openbmc_project.Sensor.Threshold.Warning", "WarningLow",
10063929aca1SAnthony Wilson             "/Thresholds/LowerCaution/Reading"_json_pointer);
10073929aca1SAnthony Wilson         properties.emplace_back(
10083929aca1SAnthony Wilson             "xyz.openbmc_project.Sensor.Threshold.Critical", "CriticalHigh",
10093929aca1SAnthony Wilson             "/Thresholds/UpperCritical/Reading"_json_pointer);
10103929aca1SAnthony Wilson         properties.emplace_back(
10113929aca1SAnthony Wilson             "xyz.openbmc_project.Sensor.Threshold.Critical", "CriticalLow",
10123929aca1SAnthony Wilson             "/Thresholds/LowerCritical/Reading"_json_pointer);
10133929aca1SAnthony Wilson     }
10143929aca1SAnthony Wilson     else if (sensorType != "power")
1015de629b6eSShawn McCarney     {
101608777fb0SLewanczyk, Dawid         properties.emplace_back("xyz.openbmc_project.Sensor.Threshold.Warning",
10173929aca1SAnthony Wilson                                 "WarningHigh",
10183929aca1SAnthony Wilson                                 "/UpperThresholdNonCritical"_json_pointer);
101908777fb0SLewanczyk, Dawid         properties.emplace_back("xyz.openbmc_project.Sensor.Threshold.Warning",
10203929aca1SAnthony Wilson                                 "WarningLow",
10213929aca1SAnthony Wilson                                 "/LowerThresholdNonCritical"_json_pointer);
102208777fb0SLewanczyk, Dawid         properties.emplace_back("xyz.openbmc_project.Sensor.Threshold.Critical",
10233929aca1SAnthony Wilson                                 "CriticalHigh",
10243929aca1SAnthony Wilson                                 "/UpperThresholdCritical"_json_pointer);
102508777fb0SLewanczyk, Dawid         properties.emplace_back("xyz.openbmc_project.Sensor.Threshold.Critical",
10263929aca1SAnthony Wilson                                 "CriticalLow",
10273929aca1SAnthony Wilson                                 "/LowerThresholdCritical"_json_pointer);
1028de629b6eSShawn McCarney     }
102908777fb0SLewanczyk, Dawid 
10302474adfaSEd Tanous     // TODO Need to get UpperThresholdFatal and LowerThresholdFatal
10312474adfaSEd Tanous 
1032a0ec28b6SAdrian Ambrożewicz     if (sensorsAsyncResp->chassisSubNode == sensors::node::sensors)
103395a3ecadSAnthony Wilson     {
103495a3ecadSAnthony Wilson         properties.emplace_back("xyz.openbmc_project.Sensor.Value", "MinValue",
10353929aca1SAnthony Wilson                                 "/ReadingRangeMin"_json_pointer);
103695a3ecadSAnthony Wilson         properties.emplace_back("xyz.openbmc_project.Sensor.Value", "MaxValue",
10373929aca1SAnthony Wilson                                 "/ReadingRangeMax"_json_pointer);
103895a3ecadSAnthony Wilson     }
103995a3ecadSAnthony Wilson     else if (sensorType == "temperature")
10401abe55efSEd Tanous     {
104108777fb0SLewanczyk, Dawid         properties.emplace_back("xyz.openbmc_project.Sensor.Value", "MinValue",
10423929aca1SAnthony Wilson                                 "/MinReadingRangeTemp"_json_pointer);
104308777fb0SLewanczyk, Dawid         properties.emplace_back("xyz.openbmc_project.Sensor.Value", "MaxValue",
10443929aca1SAnthony Wilson                                 "/MaxReadingRangeTemp"_json_pointer);
10451abe55efSEd Tanous     }
1046adc4f0dbSShawn McCarney     else if (sensorType != "power")
10471abe55efSEd Tanous     {
104808777fb0SLewanczyk, Dawid         properties.emplace_back("xyz.openbmc_project.Sensor.Value", "MinValue",
10493929aca1SAnthony Wilson                                 "/MinReadingRange"_json_pointer);
105008777fb0SLewanczyk, Dawid         properties.emplace_back("xyz.openbmc_project.Sensor.Value", "MaxValue",
10513929aca1SAnthony Wilson                                 "/MaxReadingRange"_json_pointer);
105208777fb0SLewanczyk, Dawid     }
105308777fb0SLewanczyk, Dawid 
10543929aca1SAnthony Wilson     for (const std::tuple<const char*, const char*,
10553929aca1SAnthony Wilson                           nlohmann::json::json_pointer>& p : properties)
10561abe55efSEd Tanous     {
1057711ac7a9SEd Tanous         for (auto& [interface, values] : interfacesDict)
10581abe55efSEd Tanous         {
1059711ac7a9SEd Tanous             if (interface != std::get<0>(p))
10601abe55efSEd Tanous             {
1061711ac7a9SEd Tanous                 continue;
1062711ac7a9SEd Tanous             }
1063711ac7a9SEd Tanous             for (auto& [valueName, valueVariant] : values)
1064711ac7a9SEd Tanous             {
1065711ac7a9SEd Tanous                 if (valueName != std::get<1>(p))
1066711ac7a9SEd Tanous                 {
1067711ac7a9SEd Tanous                     continue;
1068711ac7a9SEd Tanous                 }
10693929aca1SAnthony Wilson 
10703929aca1SAnthony Wilson                 // The property we want to set may be nested json, so use
10713929aca1SAnthony Wilson                 // a json_pointer for easy indexing into the json structure.
10723929aca1SAnthony Wilson                 const nlohmann::json::json_pointer& key = std::get<2>(p);
10733929aca1SAnthony Wilson 
107408777fb0SLewanczyk, Dawid                 // Attempt to pull the int64 directly
1075abf2add6SEd Tanous                 const int64_t* int64Value = std::get_if<int64_t>(&valueVariant);
107608777fb0SLewanczyk, Dawid 
1077abf2add6SEd Tanous                 const double* doubleValue = std::get_if<double>(&valueVariant);
1078028f7ebcSEddie James                 const uint32_t* uValue = std::get_if<uint32_t>(&valueVariant);
10796f6d0d32SEd Tanous                 double temp = 0.0;
10806f6d0d32SEd Tanous                 if (int64Value != nullptr)
10811abe55efSEd Tanous                 {
1082271584abSEd Tanous                     temp = static_cast<double>(*int64Value);
10836f6d0d32SEd Tanous                 }
10846f6d0d32SEd Tanous                 else if (doubleValue != nullptr)
10851abe55efSEd Tanous                 {
10866f6d0d32SEd Tanous                     temp = *doubleValue;
10871abe55efSEd Tanous                 }
1088028f7ebcSEddie James                 else if (uValue != nullptr)
1089028f7ebcSEddie James                 {
1090028f7ebcSEddie James                     temp = *uValue;
1091028f7ebcSEddie James                 }
10921abe55efSEd Tanous                 else
10931abe55efSEd Tanous                 {
10946f6d0d32SEd Tanous                     BMCWEB_LOG_ERROR
10956f6d0d32SEd Tanous                         << "Got value interface that wasn't int or double";
10966f6d0d32SEd Tanous                     continue;
109708777fb0SLewanczyk, Dawid                 }
10986f6d0d32SEd Tanous                 temp = temp * std::pow(10, scaleMultiplier);
10996f6d0d32SEd Tanous                 if (forceToInt)
11006f6d0d32SEd Tanous                 {
110181ce609eSEd Tanous                     sensorJson[key] = static_cast<int64_t>(temp);
11026f6d0d32SEd Tanous                 }
11036f6d0d32SEd Tanous                 else
11046f6d0d32SEd Tanous                 {
110581ce609eSEd Tanous                     sensorJson[key] = temp;
110608777fb0SLewanczyk, Dawid                 }
110708777fb0SLewanczyk, Dawid             }
110808777fb0SLewanczyk, Dawid         }
110908777fb0SLewanczyk, Dawid     }
1110a0ec28b6SAdrian Ambrożewicz 
111181ce609eSEd Tanous     sensorsAsyncResp->addMetadata(sensorJson, unit.to_string(),
1112a0ec28b6SAdrian Ambrożewicz                                   "/xyz/openbmc_project/sensors/" + sensorType +
1113a0ec28b6SAdrian Ambrożewicz                                       "/" + sensorName);
1114a0ec28b6SAdrian Ambrożewicz 
111555c7b7a2SEd Tanous     BMCWEB_LOG_DEBUG << "Added sensor " << sensorName;
111608777fb0SLewanczyk, Dawid }
111708777fb0SLewanczyk, Dawid 
1118b5a76932SEd Tanous inline void populateFanRedundancy(
1119b5a76932SEd Tanous     const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp)
11208bd25ccdSJames Feist {
11218bd25ccdSJames Feist     crow::connections::systemBus->async_method_call(
11228bd25ccdSJames Feist         [sensorsAsyncResp](const boost::system::error_code ec,
11238bd25ccdSJames Feist                            const GetSubTreeType& resp) {
11248bd25ccdSJames Feist             if (ec)
11258bd25ccdSJames Feist             {
11268bd25ccdSJames Feist                 return; // don't have to have this interface
11278bd25ccdSJames Feist             }
1128e278c18fSEd Tanous             for (const std::pair<std::string,
1129e278c18fSEd Tanous                                  std::vector<std::pair<
1130e278c18fSEd Tanous                                      std::string, std::vector<std::string>>>>&
1131e278c18fSEd Tanous                      pathPair : resp)
11328bd25ccdSJames Feist             {
1133e278c18fSEd Tanous                 const std::string& path = pathPair.first;
1134e278c18fSEd Tanous                 const std::vector<
1135e278c18fSEd Tanous                     std::pair<std::string, std::vector<std::string>>>& objDict =
1136e278c18fSEd Tanous                     pathPair.second;
11378bd25ccdSJames Feist                 if (objDict.empty())
11388bd25ccdSJames Feist                 {
11398bd25ccdSJames Feist                     continue; // this should be impossible
11408bd25ccdSJames Feist                 }
11418bd25ccdSJames Feist 
11428bd25ccdSJames Feist                 const std::string& owner = objDict.begin()->first;
11431e1e598dSJonathan Doman                 sdbusplus::asio::getProperty<std::vector<std::string>>(
11441e1e598dSJonathan Doman                     *crow::connections::systemBus,
11451e1e598dSJonathan Doman                     "xyz.openbmc_project.ObjectMapper", path + "/chassis",
11461e1e598dSJonathan Doman                     "xyz.openbmc_project.Association", "endpoints",
11471e1e598dSJonathan Doman                     [path, owner, sensorsAsyncResp](
11481e1e598dSJonathan Doman                         const boost::system::error_code e,
11491e1e598dSJonathan Doman                         const std::vector<std::string>& endpoints) {
1150271584abSEd Tanous                         if (e)
11518bd25ccdSJames Feist                         {
11528bd25ccdSJames Feist                             return; // if they don't have an association we
11538bd25ccdSJames Feist                                     // can't tell what chassis is
11548bd25ccdSJames Feist                         }
11558bd25ccdSJames Feist                         auto found = std::find_if(
11561e1e598dSJonathan Doman                             endpoints.begin(), endpoints.end(),
11578bd25ccdSJames Feist                             [sensorsAsyncResp](const std::string& entry) {
11588bd25ccdSJames Feist                                 return entry.find(
11598bd25ccdSJames Feist                                            sensorsAsyncResp->chassisId) !=
11608bd25ccdSJames Feist                                        std::string::npos;
11618bd25ccdSJames Feist                             });
11628bd25ccdSJames Feist 
11631e1e598dSJonathan Doman                         if (found == endpoints.end())
11648bd25ccdSJames Feist                         {
11658bd25ccdSJames Feist                             return;
11668bd25ccdSJames Feist                         }
11678bd25ccdSJames Feist                         crow::connections::systemBus->async_method_call(
11688bd25ccdSJames Feist                             [path, sensorsAsyncResp](
1169271584abSEd Tanous                                 const boost::system::error_code& err,
11708bd25ccdSJames Feist                                 const boost::container::flat_map<
11718bd25ccdSJames Feist                                     std::string,
1172168e20c1SEd Tanous                                     dbus::utility::DbusVariantType>& ret) {
1173271584abSEd Tanous                                 if (err)
11748bd25ccdSJames Feist                                 {
11758bd25ccdSJames Feist                                     return; // don't have to have this
11768bd25ccdSJames Feist                                             // interface
11778bd25ccdSJames Feist                                 }
11788bd25ccdSJames Feist                                 auto findFailures = ret.find("AllowedFailures");
11798bd25ccdSJames Feist                                 auto findCollection = ret.find("Collection");
11808bd25ccdSJames Feist                                 auto findStatus = ret.find("Status");
11818bd25ccdSJames Feist 
11828bd25ccdSJames Feist                                 if (findFailures == ret.end() ||
11838bd25ccdSJames Feist                                     findCollection == ret.end() ||
11848bd25ccdSJames Feist                                     findStatus == ret.end())
11858bd25ccdSJames Feist                                 {
11868bd25ccdSJames Feist                                     BMCWEB_LOG_ERROR
11878bd25ccdSJames Feist                                         << "Invalid redundancy interface";
11888bd25ccdSJames Feist                                     messages::internalError(
11898d1b46d7Szhanghch05                                         sensorsAsyncResp->asyncResp->res);
11908bd25ccdSJames Feist                                     return;
11918bd25ccdSJames Feist                                 }
11928bd25ccdSJames Feist 
11939eb808c1SEd Tanous                                 const uint8_t* allowedFailures =
11949eb808c1SEd Tanous                                     std::get_if<uint8_t>(
11958bd25ccdSJames Feist                                         &(findFailures->second));
11969eb808c1SEd Tanous                                 const std::vector<std::string>* collection =
11978bd25ccdSJames Feist                                     std::get_if<std::vector<std::string>>(
11988bd25ccdSJames Feist                                         &(findCollection->second));
11999eb808c1SEd Tanous                                 const std::string* status =
12009eb808c1SEd Tanous                                     std::get_if<std::string>(
12018bd25ccdSJames Feist                                         &(findStatus->second));
12028bd25ccdSJames Feist 
12038bd25ccdSJames Feist                                 if (allowedFailures == nullptr ||
12048bd25ccdSJames Feist                                     collection == nullptr || status == nullptr)
12058bd25ccdSJames Feist                                 {
12068bd25ccdSJames Feist 
12078bd25ccdSJames Feist                                     BMCWEB_LOG_ERROR
12080fda0f12SGeorge Liu                                         << "Invalid redundancy interface types";
12098bd25ccdSJames Feist                                     messages::internalError(
12108d1b46d7Szhanghch05                                         sensorsAsyncResp->asyncResp->res);
12118bd25ccdSJames Feist                                     return;
12128bd25ccdSJames Feist                                 }
121328aa8de5SGeorge Liu                                 sdbusplus::message::object_path objectPath(
121428aa8de5SGeorge Liu                                     path);
121528aa8de5SGeorge Liu                                 std::string name = objectPath.filename();
121628aa8de5SGeorge Liu                                 if (name.empty())
12178bd25ccdSJames Feist                                 {
12188bd25ccdSJames Feist                                     // this should be impossible
12198bd25ccdSJames Feist                                     messages::internalError(
12208d1b46d7Szhanghch05                                         sensorsAsyncResp->asyncResp->res);
12218bd25ccdSJames Feist                                     return;
12228bd25ccdSJames Feist                                 }
12238bd25ccdSJames Feist                                 std::replace(name.begin(), name.end(), '_',
12248bd25ccdSJames Feist                                              ' ');
12258bd25ccdSJames Feist 
12268bd25ccdSJames Feist                                 std::string health;
12278bd25ccdSJames Feist 
12288bd25ccdSJames Feist                                 if (boost::ends_with(*status, "Full"))
12298bd25ccdSJames Feist                                 {
12308bd25ccdSJames Feist                                     health = "OK";
12318bd25ccdSJames Feist                                 }
12328bd25ccdSJames Feist                                 else if (boost::ends_with(*status, "Degraded"))
12338bd25ccdSJames Feist                                 {
12348bd25ccdSJames Feist                                     health = "Warning";
12358bd25ccdSJames Feist                                 }
12368bd25ccdSJames Feist                                 else
12378bd25ccdSJames Feist                                 {
12388bd25ccdSJames Feist                                     health = "Critical";
12398bd25ccdSJames Feist                                 }
12408bd25ccdSJames Feist                                 std::vector<nlohmann::json> redfishCollection;
12418bd25ccdSJames Feist                                 const auto& fanRedfish =
12428d1b46d7Szhanghch05                                     sensorsAsyncResp->asyncResp->res
12438d1b46d7Szhanghch05                                         .jsonValue["Fans"];
12448bd25ccdSJames Feist                                 for (const std::string& item : *collection)
12458bd25ccdSJames Feist                                 {
124628aa8de5SGeorge Liu                                     sdbusplus::message::object_path path(item);
124728aa8de5SGeorge Liu                                     std::string itemName = path.filename();
124828aa8de5SGeorge Liu                                     if (itemName.empty())
124928aa8de5SGeorge Liu                                     {
125028aa8de5SGeorge Liu                                         continue;
125128aa8de5SGeorge Liu                                     }
12528bd25ccdSJames Feist                                     /*
12538bd25ccdSJames Feist                                     todo(ed): merge patch that fixes the names
12548bd25ccdSJames Feist                                     std::replace(itemName.begin(),
12558bd25ccdSJames Feist                                                  itemName.end(), '_', ' ');*/
12568bd25ccdSJames Feist                                     auto schemaItem = std::find_if(
12578bd25ccdSJames Feist                                         fanRedfish.begin(), fanRedfish.end(),
12588bd25ccdSJames Feist                                         [itemName](const nlohmann::json& fan) {
12598bd25ccdSJames Feist                                             return fan["MemberId"] == itemName;
12608bd25ccdSJames Feist                                         });
12618bd25ccdSJames Feist                                     if (schemaItem != fanRedfish.end())
12628bd25ccdSJames Feist                                     {
12638bd25ccdSJames Feist                                         redfishCollection.push_back(
12648bd25ccdSJames Feist                                             {{"@odata.id",
12658bd25ccdSJames Feist                                               (*schemaItem)["@odata.id"]}});
12668bd25ccdSJames Feist                                     }
12678bd25ccdSJames Feist                                     else
12688bd25ccdSJames Feist                                     {
12698bd25ccdSJames Feist                                         BMCWEB_LOG_ERROR
12708bd25ccdSJames Feist                                             << "failed to find fan in schema";
12718bd25ccdSJames Feist                                         messages::internalError(
12728d1b46d7Szhanghch05                                             sensorsAsyncResp->asyncResp->res);
12738bd25ccdSJames Feist                                         return;
12748bd25ccdSJames Feist                                     }
12758bd25ccdSJames Feist                                 }
12768bd25ccdSJames Feist 
12773e9e72ebSKuiying Wang                                 size_t minNumNeeded =
127826f6976fSEd Tanous                                     collection->empty()
127926f6976fSEd Tanous                                         ? 0
128026f6976fSEd Tanous                                         : collection->size() - *allowedFailures;
1281271584abSEd Tanous                                 nlohmann::json& jResp =
12828d1b46d7Szhanghch05                                     sensorsAsyncResp->asyncResp->res
12838bd25ccdSJames Feist                                         .jsonValue["Redundancy"];
1284271584abSEd Tanous                                 jResp.push_back(
12858bd25ccdSJames Feist                                     {{"@odata.id",
1286717794d5SAppaRao Puli                                       "/redfish/v1/Chassis/" +
12878bd25ccdSJames Feist                                           sensorsAsyncResp->chassisId + "/" +
12888bd25ccdSJames Feist                                           sensorsAsyncResp->chassisSubNode +
12898bd25ccdSJames Feist                                           "#/Redundancy/" +
1290271584abSEd Tanous                                           std::to_string(jResp.size())},
12918bd25ccdSJames Feist                                      {"@odata.type",
12928bd25ccdSJames Feist                                       "#Redundancy.v1_3_2.Redundancy"},
12933e9e72ebSKuiying Wang                                      {"MinNumNeeded", minNumNeeded},
12948bd25ccdSJames Feist                                      {"MemberId", name},
12958bd25ccdSJames Feist                                      {"Mode", "N+m"},
12968bd25ccdSJames Feist                                      {"Name", name},
12978bd25ccdSJames Feist                                      {"RedundancySet", redfishCollection},
12988bd25ccdSJames Feist                                      {"Status",
12998bd25ccdSJames Feist                                       {{"Health", health},
13008bd25ccdSJames Feist                                        {"State", "Enabled"}}}});
13018bd25ccdSJames Feist                             },
13028bd25ccdSJames Feist                             owner, path, "org.freedesktop.DBus.Properties",
13038bd25ccdSJames Feist                             "GetAll",
13048bd25ccdSJames Feist                             "xyz.openbmc_project.Control.FanRedundancy");
13051e1e598dSJonathan Doman                     });
13068bd25ccdSJames Feist             }
13078bd25ccdSJames Feist         },
13088bd25ccdSJames Feist         "xyz.openbmc_project.ObjectMapper",
13098bd25ccdSJames Feist         "/xyz/openbmc_project/object_mapper",
13108bd25ccdSJames Feist         "xyz.openbmc_project.ObjectMapper", "GetSubTree",
13118bd25ccdSJames Feist         "/xyz/openbmc_project/control", 2,
13128bd25ccdSJames Feist         std::array<const char*, 1>{
13138bd25ccdSJames Feist             "xyz.openbmc_project.Control.FanRedundancy"});
13148bd25ccdSJames Feist }
13158bd25ccdSJames Feist 
1316b5a76932SEd Tanous inline void
131781ce609eSEd Tanous     sortJSONResponse(const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp)
131849c53ac9SJohnathan Mantey {
13198d1b46d7Szhanghch05     nlohmann::json& response = sensorsAsyncResp->asyncResp->res.jsonValue;
132049c53ac9SJohnathan Mantey     std::array<std::string, 2> sensorHeaders{"Temperatures", "Fans"};
132181ce609eSEd Tanous     if (sensorsAsyncResp->chassisSubNode == sensors::node::power)
132249c53ac9SJohnathan Mantey     {
132349c53ac9SJohnathan Mantey         sensorHeaders = {"Voltages", "PowerSupplies"};
132449c53ac9SJohnathan Mantey     }
132549c53ac9SJohnathan Mantey     for (const std::string& sensorGroup : sensorHeaders)
132649c53ac9SJohnathan Mantey     {
132749c53ac9SJohnathan Mantey         nlohmann::json::iterator entry = response.find(sensorGroup);
132849c53ac9SJohnathan Mantey         if (entry != response.end())
132949c53ac9SJohnathan Mantey         {
133049c53ac9SJohnathan Mantey             std::sort(entry->begin(), entry->end(),
133149c53ac9SJohnathan Mantey                       [](nlohmann::json& c1, nlohmann::json& c2) {
133249c53ac9SJohnathan Mantey                           return c1["Name"] < c2["Name"];
133349c53ac9SJohnathan Mantey                       });
133449c53ac9SJohnathan Mantey 
133549c53ac9SJohnathan Mantey             // add the index counts to the end of each entry
133649c53ac9SJohnathan Mantey             size_t count = 0;
133749c53ac9SJohnathan Mantey             for (nlohmann::json& sensorJson : *entry)
133849c53ac9SJohnathan Mantey             {
133949c53ac9SJohnathan Mantey                 nlohmann::json::iterator odata = sensorJson.find("@odata.id");
134049c53ac9SJohnathan Mantey                 if (odata == sensorJson.end())
134149c53ac9SJohnathan Mantey                 {
134249c53ac9SJohnathan Mantey                     continue;
134349c53ac9SJohnathan Mantey                 }
134449c53ac9SJohnathan Mantey                 std::string* value = odata->get_ptr<std::string*>();
134549c53ac9SJohnathan Mantey                 if (value != nullptr)
134649c53ac9SJohnathan Mantey                 {
134749c53ac9SJohnathan Mantey                     *value += std::to_string(count);
134849c53ac9SJohnathan Mantey                     count++;
134981ce609eSEd Tanous                     sensorsAsyncResp->updateUri(sensorJson["Name"], *value);
135049c53ac9SJohnathan Mantey                 }
135149c53ac9SJohnathan Mantey             }
135249c53ac9SJohnathan Mantey         }
135349c53ac9SJohnathan Mantey     }
135449c53ac9SJohnathan Mantey }
135549c53ac9SJohnathan Mantey 
135608777fb0SLewanczyk, Dawid /**
1357adc4f0dbSShawn McCarney  * @brief Finds the inventory item with the specified object path.
1358adc4f0dbSShawn McCarney  * @param inventoryItems D-Bus inventory items associated with sensors.
1359adc4f0dbSShawn McCarney  * @param invItemObjPath D-Bus object path of inventory item.
1360adc4f0dbSShawn McCarney  * @return Inventory item within vector, or nullptr if no match found.
13618fb49dd6SShawn McCarney  */
136223a21a1cSEd Tanous inline InventoryItem* findInventoryItem(
1363b5a76932SEd Tanous     const std::shared_ptr<std::vector<InventoryItem>>& inventoryItems,
1364adc4f0dbSShawn McCarney     const std::string& invItemObjPath)
13658fb49dd6SShawn McCarney {
1366adc4f0dbSShawn McCarney     for (InventoryItem& inventoryItem : *inventoryItems)
13678fb49dd6SShawn McCarney     {
1368adc4f0dbSShawn McCarney         if (inventoryItem.objectPath == invItemObjPath)
13698fb49dd6SShawn McCarney         {
1370adc4f0dbSShawn McCarney             return &inventoryItem;
13718fb49dd6SShawn McCarney         }
13728fb49dd6SShawn McCarney     }
13738fb49dd6SShawn McCarney     return nullptr;
13748fb49dd6SShawn McCarney }
13758fb49dd6SShawn McCarney 
13768fb49dd6SShawn McCarney /**
1377adc4f0dbSShawn McCarney  * @brief Finds the inventory item associated with the specified sensor.
1378adc4f0dbSShawn McCarney  * @param inventoryItems D-Bus inventory items associated with sensors.
1379adc4f0dbSShawn McCarney  * @param sensorObjPath D-Bus object path of sensor.
1380adc4f0dbSShawn McCarney  * @return Inventory item within vector, or nullptr if no match found.
13818fb49dd6SShawn McCarney  */
138223a21a1cSEd Tanous inline InventoryItem* findInventoryItemForSensor(
1383b5a76932SEd Tanous     const std::shared_ptr<std::vector<InventoryItem>>& inventoryItems,
1384adc4f0dbSShawn McCarney     const std::string& sensorObjPath)
1385adc4f0dbSShawn McCarney {
1386adc4f0dbSShawn McCarney     for (InventoryItem& inventoryItem : *inventoryItems)
1387adc4f0dbSShawn McCarney     {
1388adc4f0dbSShawn McCarney         if (inventoryItem.sensors.count(sensorObjPath) > 0)
1389adc4f0dbSShawn McCarney         {
1390adc4f0dbSShawn McCarney             return &inventoryItem;
1391adc4f0dbSShawn McCarney         }
1392adc4f0dbSShawn McCarney     }
1393adc4f0dbSShawn McCarney     return nullptr;
1394adc4f0dbSShawn McCarney }
1395adc4f0dbSShawn McCarney 
1396adc4f0dbSShawn McCarney /**
1397d500549bSAnthony Wilson  * @brief Finds the inventory item associated with the specified led path.
1398d500549bSAnthony Wilson  * @param inventoryItems D-Bus inventory items associated with sensors.
1399d500549bSAnthony Wilson  * @param ledObjPath D-Bus object path of led.
1400d500549bSAnthony Wilson  * @return Inventory item within vector, or nullptr if no match found.
1401d500549bSAnthony Wilson  */
1402d500549bSAnthony Wilson inline InventoryItem*
1403d500549bSAnthony Wilson     findInventoryItemForLed(std::vector<InventoryItem>& inventoryItems,
1404d500549bSAnthony Wilson                             const std::string& ledObjPath)
1405d500549bSAnthony Wilson {
1406d500549bSAnthony Wilson     for (InventoryItem& inventoryItem : inventoryItems)
1407d500549bSAnthony Wilson     {
1408d500549bSAnthony Wilson         if (inventoryItem.ledObjectPath == ledObjPath)
1409d500549bSAnthony Wilson         {
1410d500549bSAnthony Wilson             return &inventoryItem;
1411d500549bSAnthony Wilson         }
1412d500549bSAnthony Wilson     }
1413d500549bSAnthony Wilson     return nullptr;
1414d500549bSAnthony Wilson }
1415d500549bSAnthony Wilson 
1416d500549bSAnthony Wilson /**
1417adc4f0dbSShawn McCarney  * @brief Adds inventory item and associated sensor to specified vector.
1418adc4f0dbSShawn McCarney  *
1419adc4f0dbSShawn McCarney  * Adds a new InventoryItem to the vector if necessary.  Searches for an
1420adc4f0dbSShawn McCarney  * existing InventoryItem with the specified object path.  If not found, one is
1421adc4f0dbSShawn McCarney  * added to the vector.
1422adc4f0dbSShawn McCarney  *
1423adc4f0dbSShawn McCarney  * Next, the specified sensor is added to the set of sensors associated with the
1424adc4f0dbSShawn McCarney  * InventoryItem.
1425adc4f0dbSShawn McCarney  *
1426adc4f0dbSShawn McCarney  * @param inventoryItems D-Bus inventory items associated with sensors.
1427adc4f0dbSShawn McCarney  * @param invItemObjPath D-Bus object path of inventory item.
1428adc4f0dbSShawn McCarney  * @param sensorObjPath D-Bus object path of sensor
1429adc4f0dbSShawn McCarney  */
1430b5a76932SEd Tanous inline void addInventoryItem(
1431b5a76932SEd Tanous     const std::shared_ptr<std::vector<InventoryItem>>& inventoryItems,
1432b5a76932SEd Tanous     const std::string& invItemObjPath, const std::string& sensorObjPath)
1433adc4f0dbSShawn McCarney {
1434adc4f0dbSShawn McCarney     // Look for inventory item in vector
1435adc4f0dbSShawn McCarney     InventoryItem* inventoryItem =
1436adc4f0dbSShawn McCarney         findInventoryItem(inventoryItems, invItemObjPath);
1437adc4f0dbSShawn McCarney 
1438adc4f0dbSShawn McCarney     // If inventory item doesn't exist in vector, add it
1439adc4f0dbSShawn McCarney     if (inventoryItem == nullptr)
1440adc4f0dbSShawn McCarney     {
1441adc4f0dbSShawn McCarney         inventoryItems->emplace_back(invItemObjPath);
1442adc4f0dbSShawn McCarney         inventoryItem = &(inventoryItems->back());
1443adc4f0dbSShawn McCarney     }
1444adc4f0dbSShawn McCarney 
1445adc4f0dbSShawn McCarney     // Add sensor to set of sensors associated with inventory item
1446adc4f0dbSShawn McCarney     inventoryItem->sensors.emplace(sensorObjPath);
1447adc4f0dbSShawn McCarney }
1448adc4f0dbSShawn McCarney 
1449adc4f0dbSShawn McCarney /**
1450adc4f0dbSShawn McCarney  * @brief Stores D-Bus data in the specified inventory item.
1451adc4f0dbSShawn McCarney  *
1452adc4f0dbSShawn McCarney  * Finds D-Bus data in the specified map of interfaces.  Stores the data in the
1453adc4f0dbSShawn McCarney  * specified InventoryItem.
1454adc4f0dbSShawn McCarney  *
1455adc4f0dbSShawn McCarney  * This data is later used to provide sensor property values in the JSON
1456adc4f0dbSShawn McCarney  * response.
1457adc4f0dbSShawn McCarney  *
1458adc4f0dbSShawn McCarney  * @param inventoryItem Inventory item where data will be stored.
1459adc4f0dbSShawn McCarney  * @param interfacesDict Map containing D-Bus interfaces and their properties
1460adc4f0dbSShawn McCarney  * for the specified inventory item.
1461adc4f0dbSShawn McCarney  */
146223a21a1cSEd Tanous inline void storeInventoryItemData(
1463adc4f0dbSShawn McCarney     InventoryItem& inventoryItem,
1464711ac7a9SEd Tanous     const dbus::utility::DBusInteracesMap& interfacesDict)
14658fb49dd6SShawn McCarney {
1466adc4f0dbSShawn McCarney     // Get properties from Inventory.Item interface
1467711ac7a9SEd Tanous 
14689eb808c1SEd Tanous     for (const auto& [interface, values] : interfacesDict)
14698fb49dd6SShawn McCarney     {
1470711ac7a9SEd Tanous         if (interface == "xyz.openbmc_project.Inventory.Item")
14718fb49dd6SShawn McCarney         {
14729eb808c1SEd Tanous             for (const auto& [name, dbusValue] : values)
1473711ac7a9SEd Tanous             {
1474711ac7a9SEd Tanous                 if (name == "Present")
1475711ac7a9SEd Tanous                 {
1476711ac7a9SEd Tanous                     const bool* value = std::get_if<bool>(&dbusValue);
1477adc4f0dbSShawn McCarney                     if (value != nullptr)
14788fb49dd6SShawn McCarney                     {
1479adc4f0dbSShawn McCarney                         inventoryItem.isPresent = *value;
14808fb49dd6SShawn McCarney                     }
14818fb49dd6SShawn McCarney                 }
14828fb49dd6SShawn McCarney             }
1483711ac7a9SEd Tanous         }
1484adc4f0dbSShawn McCarney         // Check if Inventory.Item.PowerSupply interface is present
1485711ac7a9SEd Tanous 
1486711ac7a9SEd Tanous         if (interface == "xyz.openbmc_project.Inventory.Item.PowerSupply")
14878fb49dd6SShawn McCarney         {
1488adc4f0dbSShawn McCarney             inventoryItem.isPowerSupply = true;
14898fb49dd6SShawn McCarney         }
1490adc4f0dbSShawn McCarney 
1491adc4f0dbSShawn McCarney         // Get properties from Inventory.Decorator.Asset interface
1492711ac7a9SEd Tanous         if (interface == "xyz.openbmc_project.Inventory.Decorator.Asset")
1493adc4f0dbSShawn McCarney         {
14949eb808c1SEd Tanous             for (const auto& [name, dbusValue] : values)
1495711ac7a9SEd Tanous             {
1496711ac7a9SEd Tanous                 if (name == "Manufacturer")
1497adc4f0dbSShawn McCarney                 {
1498adc4f0dbSShawn McCarney                     const std::string* value =
1499711ac7a9SEd Tanous                         std::get_if<std::string>(&dbusValue);
1500adc4f0dbSShawn McCarney                     if (value != nullptr)
1501adc4f0dbSShawn McCarney                     {
1502adc4f0dbSShawn McCarney                         inventoryItem.manufacturer = *value;
1503adc4f0dbSShawn McCarney                     }
1504adc4f0dbSShawn McCarney                 }
1505711ac7a9SEd Tanous                 if (name == "Model")
1506adc4f0dbSShawn McCarney                 {
1507adc4f0dbSShawn McCarney                     const std::string* value =
1508711ac7a9SEd Tanous                         std::get_if<std::string>(&dbusValue);
1509adc4f0dbSShawn McCarney                     if (value != nullptr)
1510adc4f0dbSShawn McCarney                     {
1511adc4f0dbSShawn McCarney                         inventoryItem.model = *value;
1512adc4f0dbSShawn McCarney                     }
1513adc4f0dbSShawn McCarney                 }
1514711ac7a9SEd Tanous                 if (name == "SerialNumber")
1515adc4f0dbSShawn McCarney                 {
1516adc4f0dbSShawn McCarney                     const std::string* value =
1517711ac7a9SEd Tanous                         std::get_if<std::string>(&dbusValue);
1518adc4f0dbSShawn McCarney                     if (value != nullptr)
1519adc4f0dbSShawn McCarney                     {
1520adc4f0dbSShawn McCarney                         inventoryItem.serialNumber = *value;
1521adc4f0dbSShawn McCarney                     }
1522adc4f0dbSShawn McCarney                 }
1523711ac7a9SEd Tanous                 if (name == "PartNumber")
1524711ac7a9SEd Tanous                 {
1525711ac7a9SEd Tanous                     const std::string* value =
1526711ac7a9SEd Tanous                         std::get_if<std::string>(&dbusValue);
1527711ac7a9SEd Tanous                     if (value != nullptr)
1528711ac7a9SEd Tanous                     {
1529711ac7a9SEd Tanous                         inventoryItem.partNumber = *value;
1530711ac7a9SEd Tanous                     }
1531711ac7a9SEd Tanous                 }
1532711ac7a9SEd Tanous             }
1533adc4f0dbSShawn McCarney         }
1534adc4f0dbSShawn McCarney 
1535711ac7a9SEd Tanous         if (interface ==
1536711ac7a9SEd Tanous             "xyz.openbmc_project.State.Decorator.OperationalStatus")
1537adc4f0dbSShawn McCarney         {
15389eb808c1SEd Tanous             for (const auto& [name, dbusValue] : values)
1539adc4f0dbSShawn McCarney             {
1540711ac7a9SEd Tanous                 if (name == "Functional")
1541711ac7a9SEd Tanous                 {
1542711ac7a9SEd Tanous                     const bool* value = std::get_if<bool>(&dbusValue);
1543adc4f0dbSShawn McCarney                     if (value != nullptr)
1544adc4f0dbSShawn McCarney                     {
1545adc4f0dbSShawn McCarney                         inventoryItem.isFunctional = *value;
15468fb49dd6SShawn McCarney                     }
15478fb49dd6SShawn McCarney                 }
15488fb49dd6SShawn McCarney             }
15498fb49dd6SShawn McCarney         }
1550711ac7a9SEd Tanous     }
1551711ac7a9SEd Tanous }
15528fb49dd6SShawn McCarney 
15538fb49dd6SShawn McCarney /**
1554adc4f0dbSShawn McCarney  * @brief Gets D-Bus data for inventory items associated with sensors.
15558fb49dd6SShawn McCarney  *
1556adc4f0dbSShawn McCarney  * Uses the specified connections (services) to obtain D-Bus data for inventory
1557adc4f0dbSShawn McCarney  * items associated with sensors.  Stores the resulting data in the
1558adc4f0dbSShawn McCarney  * inventoryItems vector.
15598fb49dd6SShawn McCarney  *
1560adc4f0dbSShawn McCarney  * This data is later used to provide sensor property values in the JSON
1561adc4f0dbSShawn McCarney  * response.
1562adc4f0dbSShawn McCarney  *
1563adc4f0dbSShawn McCarney  * Finds the inventory item data asynchronously.  Invokes callback when data has
1564adc4f0dbSShawn McCarney  * been obtained.
1565adc4f0dbSShawn McCarney  *
1566adc4f0dbSShawn McCarney  * The callback must have the following signature:
1567adc4f0dbSShawn McCarney  *   @code
1568d500549bSAnthony Wilson  *   callback(void)
1569adc4f0dbSShawn McCarney  *   @endcode
1570adc4f0dbSShawn McCarney  *
1571adc4f0dbSShawn McCarney  * This function is called recursively, obtaining data asynchronously from one
1572adc4f0dbSShawn McCarney  * connection in each call.  This ensures the callback is not invoked until the
1573adc4f0dbSShawn McCarney  * last asynchronous function has completed.
15748fb49dd6SShawn McCarney  *
15758fb49dd6SShawn McCarney  * @param sensorsAsyncResp Pointer to object holding response data.
1576adc4f0dbSShawn McCarney  * @param inventoryItems D-Bus inventory items associated with sensors.
1577adc4f0dbSShawn McCarney  * @param invConnections Connections that provide data for the inventory items.
15788fb49dd6SShawn McCarney  * @param objectMgrPaths Mappings from connection name to DBus object path that
15798fb49dd6SShawn McCarney  * implements ObjectManager.
1580adc4f0dbSShawn McCarney  * @param callback Callback to invoke when inventory data has been obtained.
1581adc4f0dbSShawn McCarney  * @param invConnectionsIndex Current index in invConnections.  Only specified
1582adc4f0dbSShawn McCarney  * in recursive calls to this function.
15838fb49dd6SShawn McCarney  */
1584adc4f0dbSShawn McCarney template <typename Callback>
1585adc4f0dbSShawn McCarney static void getInventoryItemsData(
15868fb49dd6SShawn McCarney     std::shared_ptr<SensorsAsyncResp> sensorsAsyncResp,
1587adc4f0dbSShawn McCarney     std::shared_ptr<std::vector<InventoryItem>> inventoryItems,
15888fb49dd6SShawn McCarney     std::shared_ptr<boost::container::flat_set<std::string>> invConnections,
15898fb49dd6SShawn McCarney     std::shared_ptr<boost::container::flat_map<std::string, std::string>>
1590adc4f0dbSShawn McCarney         objectMgrPaths,
1591271584abSEd Tanous     Callback&& callback, size_t invConnectionsIndex = 0)
15928fb49dd6SShawn McCarney {
1593adc4f0dbSShawn McCarney     BMCWEB_LOG_DEBUG << "getInventoryItemsData enter";
15948fb49dd6SShawn McCarney 
1595adc4f0dbSShawn McCarney     // If no more connections left, call callback
1596adc4f0dbSShawn McCarney     if (invConnectionsIndex >= invConnections->size())
15978fb49dd6SShawn McCarney     {
1598d500549bSAnthony Wilson         callback();
1599adc4f0dbSShawn McCarney         BMCWEB_LOG_DEBUG << "getInventoryItemsData exit";
1600adc4f0dbSShawn McCarney         return;
1601adc4f0dbSShawn McCarney     }
1602adc4f0dbSShawn McCarney 
1603adc4f0dbSShawn McCarney     // Get inventory item data from current connection
1604adc4f0dbSShawn McCarney     auto it = invConnections->nth(invConnectionsIndex);
1605adc4f0dbSShawn McCarney     if (it != invConnections->end())
1606adc4f0dbSShawn McCarney     {
1607adc4f0dbSShawn McCarney         const std::string& invConnection = *it;
1608adc4f0dbSShawn McCarney 
16098fb49dd6SShawn McCarney         // Response handler for GetManagedObjects
1610adc4f0dbSShawn McCarney         auto respHandler = [sensorsAsyncResp, inventoryItems, invConnections,
1611f94c4ecfSEd Tanous                             objectMgrPaths,
1612f94c4ecfSEd Tanous                             callback{std::forward<Callback>(callback)},
1613adc4f0dbSShawn McCarney                             invConnectionsIndex](
1614adc4f0dbSShawn McCarney                                const boost::system::error_code ec,
1615711ac7a9SEd Tanous                                dbus::utility::ManagedObjectType& resp) {
1616adc4f0dbSShawn McCarney             BMCWEB_LOG_DEBUG << "getInventoryItemsData respHandler enter";
16178fb49dd6SShawn McCarney             if (ec)
16188fb49dd6SShawn McCarney             {
16198fb49dd6SShawn McCarney                 BMCWEB_LOG_ERROR
1620adc4f0dbSShawn McCarney                     << "getInventoryItemsData respHandler DBus error " << ec;
16218d1b46d7Szhanghch05                 messages::internalError(sensorsAsyncResp->asyncResp->res);
16228fb49dd6SShawn McCarney                 return;
16238fb49dd6SShawn McCarney             }
16248fb49dd6SShawn McCarney 
16258fb49dd6SShawn McCarney             // Loop through returned object paths
16268fb49dd6SShawn McCarney             for (const auto& objDictEntry : resp)
16278fb49dd6SShawn McCarney             {
16288fb49dd6SShawn McCarney                 const std::string& objPath =
16298fb49dd6SShawn McCarney                     static_cast<const std::string&>(objDictEntry.first);
16308fb49dd6SShawn McCarney 
1631adc4f0dbSShawn McCarney                 // If this object path is one of the specified inventory items
1632adc4f0dbSShawn McCarney                 InventoryItem* inventoryItem =
1633adc4f0dbSShawn McCarney                     findInventoryItem(inventoryItems, objPath);
1634adc4f0dbSShawn McCarney                 if (inventoryItem != nullptr)
16358fb49dd6SShawn McCarney                 {
1636adc4f0dbSShawn McCarney                     // Store inventory data in InventoryItem
1637adc4f0dbSShawn McCarney                     storeInventoryItemData(*inventoryItem, objDictEntry.second);
16388fb49dd6SShawn McCarney                 }
16398fb49dd6SShawn McCarney             }
16408fb49dd6SShawn McCarney 
1641adc4f0dbSShawn McCarney             // Recurse to get inventory item data from next connection
1642adc4f0dbSShawn McCarney             getInventoryItemsData(sensorsAsyncResp, inventoryItems,
1643adc4f0dbSShawn McCarney                                   invConnections, objectMgrPaths,
1644adc4f0dbSShawn McCarney                                   std::move(callback), invConnectionsIndex + 1);
1645adc4f0dbSShawn McCarney 
1646adc4f0dbSShawn McCarney             BMCWEB_LOG_DEBUG << "getInventoryItemsData respHandler exit";
16478fb49dd6SShawn McCarney         };
16488fb49dd6SShawn McCarney 
16498fb49dd6SShawn McCarney         // Find DBus object path that implements ObjectManager for the current
16508fb49dd6SShawn McCarney         // connection.  If no mapping found, default to "/".
16518fb49dd6SShawn McCarney         auto iter = objectMgrPaths->find(invConnection);
16528fb49dd6SShawn McCarney         const std::string& objectMgrPath =
16538fb49dd6SShawn McCarney             (iter != objectMgrPaths->end()) ? iter->second : "/";
16548fb49dd6SShawn McCarney         BMCWEB_LOG_DEBUG << "ObjectManager path for " << invConnection << " is "
16558fb49dd6SShawn McCarney                          << objectMgrPath;
16568fb49dd6SShawn McCarney 
16578fb49dd6SShawn McCarney         // Get all object paths and their interfaces for current connection
16588fb49dd6SShawn McCarney         crow::connections::systemBus->async_method_call(
16598fb49dd6SShawn McCarney             std::move(respHandler), invConnection, objectMgrPath,
16608fb49dd6SShawn McCarney             "org.freedesktop.DBus.ObjectManager", "GetManagedObjects");
16618fb49dd6SShawn McCarney     }
16628fb49dd6SShawn McCarney 
1663adc4f0dbSShawn McCarney     BMCWEB_LOG_DEBUG << "getInventoryItemsData exit";
16648fb49dd6SShawn McCarney }
16658fb49dd6SShawn McCarney 
16668fb49dd6SShawn McCarney /**
1667adc4f0dbSShawn McCarney  * @brief Gets connections that provide D-Bus data for inventory items.
16688fb49dd6SShawn McCarney  *
1669adc4f0dbSShawn McCarney  * Gets the D-Bus connections (services) that provide data for the inventory
1670adc4f0dbSShawn McCarney  * items that are associated with sensors.
16718fb49dd6SShawn McCarney  *
16728fb49dd6SShawn McCarney  * Finds the connections asynchronously.  Invokes callback when information has
16738fb49dd6SShawn McCarney  * been obtained.
16748fb49dd6SShawn McCarney  *
16758fb49dd6SShawn McCarney  * The callback must have the following signature:
16768fb49dd6SShawn McCarney  *   @code
16778fb49dd6SShawn McCarney  *   callback(std::shared_ptr<boost::container::flat_set<std::string>>
16788fb49dd6SShawn McCarney  *            invConnections)
16798fb49dd6SShawn McCarney  *   @endcode
16808fb49dd6SShawn McCarney  *
16818fb49dd6SShawn McCarney  * @param sensorsAsyncResp Pointer to object holding response data.
1682adc4f0dbSShawn McCarney  * @param inventoryItems D-Bus inventory items associated with sensors.
16838fb49dd6SShawn McCarney  * @param callback Callback to invoke when connections have been obtained.
16848fb49dd6SShawn McCarney  */
16858fb49dd6SShawn McCarney template <typename Callback>
16868fb49dd6SShawn McCarney static void getInventoryItemsConnections(
1687b5a76932SEd Tanous     const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp,
1688b5a76932SEd Tanous     const std::shared_ptr<std::vector<InventoryItem>>& inventoryItems,
16898fb49dd6SShawn McCarney     Callback&& callback)
16908fb49dd6SShawn McCarney {
16918fb49dd6SShawn McCarney     BMCWEB_LOG_DEBUG << "getInventoryItemsConnections enter";
16928fb49dd6SShawn McCarney 
16938fb49dd6SShawn McCarney     const std::string path = "/xyz/openbmc_project/inventory";
1694adc4f0dbSShawn McCarney     const std::array<std::string, 4> interfaces = {
16958fb49dd6SShawn McCarney         "xyz.openbmc_project.Inventory.Item",
1696adc4f0dbSShawn McCarney         "xyz.openbmc_project.Inventory.Item.PowerSupply",
1697adc4f0dbSShawn McCarney         "xyz.openbmc_project.Inventory.Decorator.Asset",
16988fb49dd6SShawn McCarney         "xyz.openbmc_project.State.Decorator.OperationalStatus"};
16998fb49dd6SShawn McCarney 
17008fb49dd6SShawn McCarney     // Response handler for parsing output from GetSubTree
1701f94c4ecfSEd Tanous     auto respHandler = [callback{std::forward<Callback>(callback)},
1702f94c4ecfSEd Tanous                         sensorsAsyncResp,
1703adc4f0dbSShawn McCarney                         inventoryItems](const boost::system::error_code ec,
17048fb49dd6SShawn McCarney                                         const GetSubTreeType& subtree) {
17058fb49dd6SShawn McCarney         BMCWEB_LOG_DEBUG << "getInventoryItemsConnections respHandler enter";
17068fb49dd6SShawn McCarney         if (ec)
17078fb49dd6SShawn McCarney         {
17088d1b46d7Szhanghch05             messages::internalError(sensorsAsyncResp->asyncResp->res);
17098fb49dd6SShawn McCarney             BMCWEB_LOG_ERROR
17108fb49dd6SShawn McCarney                 << "getInventoryItemsConnections respHandler DBus error " << ec;
17118fb49dd6SShawn McCarney             return;
17128fb49dd6SShawn McCarney         }
17138fb49dd6SShawn McCarney 
17148fb49dd6SShawn McCarney         // Make unique list of connections for desired inventory items
17158fb49dd6SShawn McCarney         std::shared_ptr<boost::container::flat_set<std::string>>
17168fb49dd6SShawn McCarney             invConnections =
17178fb49dd6SShawn McCarney                 std::make_shared<boost::container::flat_set<std::string>>();
17188fb49dd6SShawn McCarney         invConnections->reserve(8);
17198fb49dd6SShawn McCarney 
17208fb49dd6SShawn McCarney         // Loop through objects from GetSubTree
17218fb49dd6SShawn McCarney         for (const std::pair<
17228fb49dd6SShawn McCarney                  std::string,
17238fb49dd6SShawn McCarney                  std::vector<std::pair<std::string, std::vector<std::string>>>>&
17248fb49dd6SShawn McCarney                  object : subtree)
17258fb49dd6SShawn McCarney         {
1726adc4f0dbSShawn McCarney             // Check if object path is one of the specified inventory items
17278fb49dd6SShawn McCarney             const std::string& objPath = object.first;
1728adc4f0dbSShawn McCarney             if (findInventoryItem(inventoryItems, objPath) != nullptr)
17298fb49dd6SShawn McCarney             {
17308fb49dd6SShawn McCarney                 // Store all connections to inventory item
17318fb49dd6SShawn McCarney                 for (const std::pair<std::string, std::vector<std::string>>&
17328fb49dd6SShawn McCarney                          objData : object.second)
17338fb49dd6SShawn McCarney                 {
17348fb49dd6SShawn McCarney                     const std::string& invConnection = objData.first;
17358fb49dd6SShawn McCarney                     invConnections->insert(invConnection);
17368fb49dd6SShawn McCarney                 }
17378fb49dd6SShawn McCarney             }
17388fb49dd6SShawn McCarney         }
1739d500549bSAnthony Wilson 
17408fb49dd6SShawn McCarney         callback(invConnections);
17418fb49dd6SShawn McCarney         BMCWEB_LOG_DEBUG << "getInventoryItemsConnections respHandler exit";
17428fb49dd6SShawn McCarney     };
17438fb49dd6SShawn McCarney 
17448fb49dd6SShawn McCarney     // Make call to ObjectMapper to find all inventory items
17458fb49dd6SShawn McCarney     crow::connections::systemBus->async_method_call(
17468fb49dd6SShawn McCarney         std::move(respHandler), "xyz.openbmc_project.ObjectMapper",
17478fb49dd6SShawn McCarney         "/xyz/openbmc_project/object_mapper",
17488fb49dd6SShawn McCarney         "xyz.openbmc_project.ObjectMapper", "GetSubTree", path, 0, interfaces);
17498fb49dd6SShawn McCarney     BMCWEB_LOG_DEBUG << "getInventoryItemsConnections exit";
17508fb49dd6SShawn McCarney }
17518fb49dd6SShawn McCarney 
17528fb49dd6SShawn McCarney /**
1753adc4f0dbSShawn McCarney  * @brief Gets associations from sensors to inventory items.
17548fb49dd6SShawn McCarney  *
17558fb49dd6SShawn McCarney  * Looks for ObjectMapper associations from the specified sensors to related
1756d500549bSAnthony Wilson  * inventory items. Then finds the associations from those inventory items to
1757d500549bSAnthony Wilson  * their LEDs, if any.
17588fb49dd6SShawn McCarney  *
17598fb49dd6SShawn McCarney  * Finds the inventory items asynchronously.  Invokes callback when information
17608fb49dd6SShawn McCarney  * has been obtained.
17618fb49dd6SShawn McCarney  *
17628fb49dd6SShawn McCarney  * The callback must have the following signature:
17638fb49dd6SShawn McCarney  *   @code
1764adc4f0dbSShawn McCarney  *   callback(std::shared_ptr<std::vector<InventoryItem>> inventoryItems)
17658fb49dd6SShawn McCarney  *   @endcode
17668fb49dd6SShawn McCarney  *
17678fb49dd6SShawn McCarney  * @param sensorsAsyncResp Pointer to object holding response data.
17688fb49dd6SShawn McCarney  * @param sensorNames All sensors within the current chassis.
17698fb49dd6SShawn McCarney  * @param objectMgrPaths Mappings from connection name to DBus object path that
17708fb49dd6SShawn McCarney  * implements ObjectManager.
17718fb49dd6SShawn McCarney  * @param callback Callback to invoke when inventory items have been obtained.
17728fb49dd6SShawn McCarney  */
17738fb49dd6SShawn McCarney template <typename Callback>
1774adc4f0dbSShawn McCarney static void getInventoryItemAssociations(
1775b5a76932SEd Tanous     const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp,
1776b5a76932SEd Tanous     const std::shared_ptr<boost::container::flat_set<std::string>>& sensorNames,
1777b5a76932SEd Tanous     const std::shared_ptr<boost::container::flat_map<std::string, std::string>>&
17788fb49dd6SShawn McCarney         objectMgrPaths,
17798fb49dd6SShawn McCarney     Callback&& callback)
17808fb49dd6SShawn McCarney {
1781adc4f0dbSShawn McCarney     BMCWEB_LOG_DEBUG << "getInventoryItemAssociations enter";
17828fb49dd6SShawn McCarney 
17838fb49dd6SShawn McCarney     // Response handler for GetManagedObjects
1784f94c4ecfSEd Tanous     auto respHandler = [callback{std::forward<Callback>(callback)},
1785f94c4ecfSEd Tanous                         sensorsAsyncResp,
17868fb49dd6SShawn McCarney                         sensorNames](const boost::system::error_code ec,
17878fb49dd6SShawn McCarney                                      dbus::utility::ManagedObjectType& resp) {
1788adc4f0dbSShawn McCarney         BMCWEB_LOG_DEBUG << "getInventoryItemAssociations respHandler enter";
17898fb49dd6SShawn McCarney         if (ec)
17908fb49dd6SShawn McCarney         {
1791adc4f0dbSShawn McCarney             BMCWEB_LOG_ERROR
1792adc4f0dbSShawn McCarney                 << "getInventoryItemAssociations respHandler DBus error " << ec;
17938d1b46d7Szhanghch05             messages::internalError(sensorsAsyncResp->asyncResp->res);
17948fb49dd6SShawn McCarney             return;
17958fb49dd6SShawn McCarney         }
17968fb49dd6SShawn McCarney 
1797adc4f0dbSShawn McCarney         // Create vector to hold list of inventory items
1798adc4f0dbSShawn McCarney         std::shared_ptr<std::vector<InventoryItem>> inventoryItems =
1799adc4f0dbSShawn McCarney             std::make_shared<std::vector<InventoryItem>>();
1800adc4f0dbSShawn McCarney 
18018fb49dd6SShawn McCarney         // Loop through returned object paths
18028fb49dd6SShawn McCarney         std::string sensorAssocPath;
18038fb49dd6SShawn McCarney         sensorAssocPath.reserve(128); // avoid memory allocations
18048fb49dd6SShawn McCarney         for (const auto& objDictEntry : resp)
18058fb49dd6SShawn McCarney         {
18068fb49dd6SShawn McCarney             const std::string& objPath =
18078fb49dd6SShawn McCarney                 static_cast<const std::string&>(objDictEntry.first);
18088fb49dd6SShawn McCarney 
18098fb49dd6SShawn McCarney             // If path is inventory association for one of the specified sensors
18108fb49dd6SShawn McCarney             for (const std::string& sensorName : *sensorNames)
18118fb49dd6SShawn McCarney             {
18128fb49dd6SShawn McCarney                 sensorAssocPath = sensorName;
18138fb49dd6SShawn McCarney                 sensorAssocPath += "/inventory";
18148fb49dd6SShawn McCarney                 if (objPath == sensorAssocPath)
18158fb49dd6SShawn McCarney                 {
18168fb49dd6SShawn McCarney                     // Get Association interface for object path
1817711ac7a9SEd Tanous                     for (const auto& [interface, values] : objDictEntry.second)
18188fb49dd6SShawn McCarney                     {
1819711ac7a9SEd Tanous                         if (interface == "xyz.openbmc_project.Association")
1820711ac7a9SEd Tanous                         {
1821711ac7a9SEd Tanous                             for (const auto& [valueName, value] : values)
1822711ac7a9SEd Tanous                             {
1823711ac7a9SEd Tanous                                 if (valueName == "endpoints")
18248fb49dd6SShawn McCarney                                 {
18258fb49dd6SShawn McCarney                                     const std::vector<std::string>* endpoints =
18268fb49dd6SShawn McCarney                                         std::get_if<std::vector<std::string>>(
1827711ac7a9SEd Tanous                                             &value);
1828711ac7a9SEd Tanous                                     if ((endpoints != nullptr) &&
1829711ac7a9SEd Tanous                                         !endpoints->empty())
18308fb49dd6SShawn McCarney                                     {
1831adc4f0dbSShawn McCarney                                         // Add inventory item to vector
1832adc4f0dbSShawn McCarney                                         const std::string& invItemPath =
1833adc4f0dbSShawn McCarney                                             endpoints->front();
1834711ac7a9SEd Tanous                                         addInventoryItem(inventoryItems,
1835711ac7a9SEd Tanous                                                          invItemPath,
1836adc4f0dbSShawn McCarney                                                          sensorName);
18378fb49dd6SShawn McCarney                                     }
18388fb49dd6SShawn McCarney                                 }
18398fb49dd6SShawn McCarney                             }
1840711ac7a9SEd Tanous                         }
1841711ac7a9SEd Tanous                     }
18428fb49dd6SShawn McCarney                     break;
18438fb49dd6SShawn McCarney                 }
18448fb49dd6SShawn McCarney             }
18458fb49dd6SShawn McCarney         }
18468fb49dd6SShawn McCarney 
1847d500549bSAnthony Wilson         // Now loop through the returned object paths again, this time to
1848d500549bSAnthony Wilson         // find the leds associated with the inventory items we just found
1849d500549bSAnthony Wilson         std::string inventoryAssocPath;
1850d500549bSAnthony Wilson         inventoryAssocPath.reserve(128); // avoid memory allocations
1851d500549bSAnthony Wilson         for (const auto& objDictEntry : resp)
1852d500549bSAnthony Wilson         {
1853d500549bSAnthony Wilson             const std::string& objPath =
1854d500549bSAnthony Wilson                 static_cast<const std::string&>(objDictEntry.first);
1855d500549bSAnthony Wilson 
1856d500549bSAnthony Wilson             for (InventoryItem& inventoryItem : *inventoryItems)
1857d500549bSAnthony Wilson             {
1858d500549bSAnthony Wilson                 inventoryAssocPath = inventoryItem.objectPath;
1859d500549bSAnthony Wilson                 inventoryAssocPath += "/leds";
1860d500549bSAnthony Wilson                 if (objPath == inventoryAssocPath)
1861d500549bSAnthony Wilson                 {
1862711ac7a9SEd Tanous                     for (const auto& [interface, values] : objDictEntry.second)
1863d500549bSAnthony Wilson                     {
1864711ac7a9SEd Tanous                         if (interface == "xyz.openbmc_project.Association")
1865711ac7a9SEd Tanous                         {
1866711ac7a9SEd Tanous                             for (const auto& [valueName, value] : values)
1867711ac7a9SEd Tanous                             {
1868711ac7a9SEd Tanous                                 if (valueName == "endpoints")
1869d500549bSAnthony Wilson                                 {
1870d500549bSAnthony Wilson                                     const std::vector<std::string>* endpoints =
1871d500549bSAnthony Wilson                                         std::get_if<std::vector<std::string>>(
1872711ac7a9SEd Tanous                                             &value);
1873711ac7a9SEd Tanous                                     if ((endpoints != nullptr) &&
1874711ac7a9SEd Tanous                                         !endpoints->empty())
1875d500549bSAnthony Wilson                                     {
1876711ac7a9SEd Tanous                                         // Add inventory item to vector
1877d500549bSAnthony Wilson                                         // Store LED path in inventory item
1878711ac7a9SEd Tanous                                         const std::string& ledPath =
1879711ac7a9SEd Tanous                                             endpoints->front();
1880d500549bSAnthony Wilson                                         inventoryItem.ledObjectPath = ledPath;
1881d500549bSAnthony Wilson                                     }
1882d500549bSAnthony Wilson                                 }
1883d500549bSAnthony Wilson                             }
1884711ac7a9SEd Tanous                         }
1885711ac7a9SEd Tanous                     }
1886711ac7a9SEd Tanous 
1887d500549bSAnthony Wilson                     break;
1888d500549bSAnthony Wilson                 }
1889d500549bSAnthony Wilson             }
1890d500549bSAnthony Wilson         }
1891adc4f0dbSShawn McCarney         callback(inventoryItems);
1892adc4f0dbSShawn McCarney         BMCWEB_LOG_DEBUG << "getInventoryItemAssociations respHandler exit";
18938fb49dd6SShawn McCarney     };
18948fb49dd6SShawn McCarney 
18958fb49dd6SShawn McCarney     // Find DBus object path that implements ObjectManager for ObjectMapper
18968fb49dd6SShawn McCarney     std::string connection = "xyz.openbmc_project.ObjectMapper";
18978fb49dd6SShawn McCarney     auto iter = objectMgrPaths->find(connection);
18988fb49dd6SShawn McCarney     const std::string& objectMgrPath =
18998fb49dd6SShawn McCarney         (iter != objectMgrPaths->end()) ? iter->second : "/";
19008fb49dd6SShawn McCarney     BMCWEB_LOG_DEBUG << "ObjectManager path for " << connection << " is "
19018fb49dd6SShawn McCarney                      << objectMgrPath;
19028fb49dd6SShawn McCarney 
19038fb49dd6SShawn McCarney     // Call GetManagedObjects on the ObjectMapper to get all associations
19048fb49dd6SShawn McCarney     crow::connections::systemBus->async_method_call(
19058fb49dd6SShawn McCarney         std::move(respHandler), connection, objectMgrPath,
19068fb49dd6SShawn McCarney         "org.freedesktop.DBus.ObjectManager", "GetManagedObjects");
19078fb49dd6SShawn McCarney 
1908adc4f0dbSShawn McCarney     BMCWEB_LOG_DEBUG << "getInventoryItemAssociations exit";
19098fb49dd6SShawn McCarney }
19108fb49dd6SShawn McCarney 
19118fb49dd6SShawn McCarney /**
1912d500549bSAnthony Wilson  * @brief Gets D-Bus data for inventory item leds associated with sensors.
1913d500549bSAnthony Wilson  *
1914d500549bSAnthony Wilson  * Uses the specified connections (services) to obtain D-Bus data for inventory
1915d500549bSAnthony Wilson  * item leds associated with sensors.  Stores the resulting data in the
1916d500549bSAnthony Wilson  * inventoryItems vector.
1917d500549bSAnthony Wilson  *
1918d500549bSAnthony Wilson  * This data is later used to provide sensor property values in the JSON
1919d500549bSAnthony Wilson  * response.
1920d500549bSAnthony Wilson  *
1921d500549bSAnthony Wilson  * Finds the inventory item led data asynchronously.  Invokes callback when data
1922d500549bSAnthony Wilson  * has been obtained.
1923d500549bSAnthony Wilson  *
1924d500549bSAnthony Wilson  * The callback must have the following signature:
1925d500549bSAnthony Wilson  *   @code
192642cbe538SGunnar Mills  *   callback()
1927d500549bSAnthony Wilson  *   @endcode
1928d500549bSAnthony Wilson  *
1929d500549bSAnthony Wilson  * This function is called recursively, obtaining data asynchronously from one
1930d500549bSAnthony Wilson  * connection in each call.  This ensures the callback is not invoked until the
1931d500549bSAnthony Wilson  * last asynchronous function has completed.
1932d500549bSAnthony Wilson  *
1933d500549bSAnthony Wilson  * @param sensorsAsyncResp Pointer to object holding response data.
1934d500549bSAnthony Wilson  * @param inventoryItems D-Bus inventory items associated with sensors.
1935d500549bSAnthony Wilson  * @param ledConnections Connections that provide data for the inventory leds.
1936d500549bSAnthony Wilson  * @param callback Callback to invoke when inventory data has been obtained.
1937d500549bSAnthony Wilson  * @param ledConnectionsIndex Current index in ledConnections.  Only specified
1938d500549bSAnthony Wilson  * in recursive calls to this function.
1939d500549bSAnthony Wilson  */
1940d500549bSAnthony Wilson template <typename Callback>
1941d500549bSAnthony Wilson void getInventoryLedData(
1942d500549bSAnthony Wilson     std::shared_ptr<SensorsAsyncResp> sensorsAsyncResp,
1943d500549bSAnthony Wilson     std::shared_ptr<std::vector<InventoryItem>> inventoryItems,
1944d500549bSAnthony Wilson     std::shared_ptr<boost::container::flat_map<std::string, std::string>>
1945d500549bSAnthony Wilson         ledConnections,
1946d500549bSAnthony Wilson     Callback&& callback, size_t ledConnectionsIndex = 0)
1947d500549bSAnthony Wilson {
1948d500549bSAnthony Wilson     BMCWEB_LOG_DEBUG << "getInventoryLedData enter";
1949d500549bSAnthony Wilson 
1950d500549bSAnthony Wilson     // If no more connections left, call callback
1951d500549bSAnthony Wilson     if (ledConnectionsIndex >= ledConnections->size())
1952d500549bSAnthony Wilson     {
195342cbe538SGunnar Mills         callback();
1954d500549bSAnthony Wilson         BMCWEB_LOG_DEBUG << "getInventoryLedData exit";
1955d500549bSAnthony Wilson         return;
1956d500549bSAnthony Wilson     }
1957d500549bSAnthony Wilson 
1958d500549bSAnthony Wilson     // Get inventory item data from current connection
1959d500549bSAnthony Wilson     auto it = ledConnections->nth(ledConnectionsIndex);
1960d500549bSAnthony Wilson     if (it != ledConnections->end())
1961d500549bSAnthony Wilson     {
1962d500549bSAnthony Wilson         const std::string& ledPath = (*it).first;
1963d500549bSAnthony Wilson         const std::string& ledConnection = (*it).second;
1964d500549bSAnthony Wilson         // Response handler for Get State property
19651e1e598dSJonathan Doman         auto respHandler =
19661e1e598dSJonathan Doman             [sensorsAsyncResp, inventoryItems, ledConnections, ledPath,
1967f94c4ecfSEd Tanous              callback{std::forward<Callback>(callback)}, ledConnectionsIndex](
19681e1e598dSJonathan Doman                 const boost::system::error_code ec, const std::string& state) {
1969d500549bSAnthony Wilson                 BMCWEB_LOG_DEBUG << "getInventoryLedData respHandler enter";
1970d500549bSAnthony Wilson                 if (ec)
1971d500549bSAnthony Wilson                 {
1972d500549bSAnthony Wilson                     BMCWEB_LOG_ERROR
1973d500549bSAnthony Wilson                         << "getInventoryLedData respHandler DBus error " << ec;
19748d1b46d7Szhanghch05                     messages::internalError(sensorsAsyncResp->asyncResp->res);
1975d500549bSAnthony Wilson                     return;
1976d500549bSAnthony Wilson                 }
1977d500549bSAnthony Wilson 
19781e1e598dSJonathan Doman                 BMCWEB_LOG_DEBUG << "Led state: " << state;
1979d500549bSAnthony Wilson                 // Find inventory item with this LED object path
1980d500549bSAnthony Wilson                 InventoryItem* inventoryItem =
1981d500549bSAnthony Wilson                     findInventoryItemForLed(*inventoryItems, ledPath);
1982d500549bSAnthony Wilson                 if (inventoryItem != nullptr)
1983d500549bSAnthony Wilson                 {
1984d500549bSAnthony Wilson                     // Store LED state in InventoryItem
19851e1e598dSJonathan Doman                     if (boost::ends_with(state, "On"))
1986d500549bSAnthony Wilson                     {
1987d500549bSAnthony Wilson                         inventoryItem->ledState = LedState::ON;
1988d500549bSAnthony Wilson                     }
19891e1e598dSJonathan Doman                     else if (boost::ends_with(state, "Blink"))
1990d500549bSAnthony Wilson                     {
1991d500549bSAnthony Wilson                         inventoryItem->ledState = LedState::BLINK;
1992d500549bSAnthony Wilson                     }
19931e1e598dSJonathan Doman                     else if (boost::ends_with(state, "Off"))
1994d500549bSAnthony Wilson                     {
1995d500549bSAnthony Wilson                         inventoryItem->ledState = LedState::OFF;
1996d500549bSAnthony Wilson                     }
1997d500549bSAnthony Wilson                     else
1998d500549bSAnthony Wilson                     {
1999d500549bSAnthony Wilson                         inventoryItem->ledState = LedState::UNKNOWN;
2000d500549bSAnthony Wilson                     }
2001d500549bSAnthony Wilson                 }
2002d500549bSAnthony Wilson 
2003d500549bSAnthony Wilson                 // Recurse to get LED data from next connection
2004d500549bSAnthony Wilson                 getInventoryLedData(sensorsAsyncResp, inventoryItems,
2005d500549bSAnthony Wilson                                     ledConnections, std::move(callback),
2006d500549bSAnthony Wilson                                     ledConnectionsIndex + 1);
2007d500549bSAnthony Wilson 
2008d500549bSAnthony Wilson                 BMCWEB_LOG_DEBUG << "getInventoryLedData respHandler exit";
2009d500549bSAnthony Wilson             };
2010d500549bSAnthony Wilson 
2011d500549bSAnthony Wilson         // Get the State property for the current LED
20121e1e598dSJonathan Doman         sdbusplus::asio::getProperty<std::string>(
20131e1e598dSJonathan Doman             *crow::connections::systemBus, ledConnection, ledPath,
20141e1e598dSJonathan Doman             "xyz.openbmc_project.Led.Physical", "State",
20151e1e598dSJonathan Doman             std::move(respHandler));
2016d500549bSAnthony Wilson     }
2017d500549bSAnthony Wilson 
2018d500549bSAnthony Wilson     BMCWEB_LOG_DEBUG << "getInventoryLedData exit";
2019d500549bSAnthony Wilson }
2020d500549bSAnthony Wilson 
2021d500549bSAnthony Wilson /**
2022d500549bSAnthony Wilson  * @brief Gets LED data for LEDs associated with given inventory items.
2023d500549bSAnthony Wilson  *
2024d500549bSAnthony Wilson  * Gets the D-Bus connections (services) that provide LED data for the LEDs
2025d500549bSAnthony Wilson  * associated with the specified inventory items.  Then gets the LED data from
2026d500549bSAnthony Wilson  * each connection and stores it in the inventory item.
2027d500549bSAnthony Wilson  *
2028d500549bSAnthony Wilson  * This data is later used to provide sensor property values in the JSON
2029d500549bSAnthony Wilson  * response.
2030d500549bSAnthony Wilson  *
2031d500549bSAnthony Wilson  * Finds the LED data asynchronously.  Invokes callback when information has
2032d500549bSAnthony Wilson  * been obtained.
2033d500549bSAnthony Wilson  *
2034d500549bSAnthony Wilson  * The callback must have the following signature:
2035d500549bSAnthony Wilson  *   @code
203642cbe538SGunnar Mills  *   callback()
2037d500549bSAnthony Wilson  *   @endcode
2038d500549bSAnthony Wilson  *
2039d500549bSAnthony Wilson  * @param sensorsAsyncResp Pointer to object holding response data.
2040d500549bSAnthony Wilson  * @param inventoryItems D-Bus inventory items associated with sensors.
2041d500549bSAnthony Wilson  * @param callback Callback to invoke when inventory items have been obtained.
2042d500549bSAnthony Wilson  */
2043d500549bSAnthony Wilson template <typename Callback>
2044d500549bSAnthony Wilson void getInventoryLeds(
2045d500549bSAnthony Wilson     std::shared_ptr<SensorsAsyncResp> sensorsAsyncResp,
2046d500549bSAnthony Wilson     std::shared_ptr<std::vector<InventoryItem>> inventoryItems,
2047d500549bSAnthony Wilson     Callback&& callback)
2048d500549bSAnthony Wilson {
2049d500549bSAnthony Wilson     BMCWEB_LOG_DEBUG << "getInventoryLeds enter";
2050d500549bSAnthony Wilson 
2051d500549bSAnthony Wilson     const std::string path = "/xyz/openbmc_project";
2052d500549bSAnthony Wilson     const std::array<std::string, 1> interfaces = {
2053d500549bSAnthony Wilson         "xyz.openbmc_project.Led.Physical"};
2054d500549bSAnthony Wilson 
2055d500549bSAnthony Wilson     // Response handler for parsing output from GetSubTree
2056f94c4ecfSEd Tanous     auto respHandler = [callback{std::forward<Callback>(callback)},
2057f94c4ecfSEd Tanous                         sensorsAsyncResp,
2058d500549bSAnthony Wilson                         inventoryItems](const boost::system::error_code ec,
2059d500549bSAnthony Wilson                                         const GetSubTreeType& subtree) {
2060d500549bSAnthony Wilson         BMCWEB_LOG_DEBUG << "getInventoryLeds respHandler enter";
2061d500549bSAnthony Wilson         if (ec)
2062d500549bSAnthony Wilson         {
20638d1b46d7Szhanghch05             messages::internalError(sensorsAsyncResp->asyncResp->res);
2064d500549bSAnthony Wilson             BMCWEB_LOG_ERROR << "getInventoryLeds respHandler DBus error "
2065d500549bSAnthony Wilson                              << ec;
2066d500549bSAnthony Wilson             return;
2067d500549bSAnthony Wilson         }
2068d500549bSAnthony Wilson 
2069d500549bSAnthony Wilson         // Build map of LED object paths to connections
2070d500549bSAnthony Wilson         std::shared_ptr<boost::container::flat_map<std::string, std::string>>
2071d500549bSAnthony Wilson             ledConnections = std::make_shared<
2072d500549bSAnthony Wilson                 boost::container::flat_map<std::string, std::string>>();
2073d500549bSAnthony Wilson 
2074d500549bSAnthony Wilson         // Loop through objects from GetSubTree
2075d500549bSAnthony Wilson         for (const std::pair<
2076d500549bSAnthony Wilson                  std::string,
2077d500549bSAnthony Wilson                  std::vector<std::pair<std::string, std::vector<std::string>>>>&
2078d500549bSAnthony Wilson                  object : subtree)
2079d500549bSAnthony Wilson         {
2080d500549bSAnthony Wilson             // Check if object path is LED for one of the specified inventory
2081d500549bSAnthony Wilson             // items
2082d500549bSAnthony Wilson             const std::string& ledPath = object.first;
2083d500549bSAnthony Wilson             if (findInventoryItemForLed(*inventoryItems, ledPath) != nullptr)
2084d500549bSAnthony Wilson             {
2085d500549bSAnthony Wilson                 // Add mapping from ledPath to connection
2086d500549bSAnthony Wilson                 const std::string& connection = object.second.begin()->first;
2087d500549bSAnthony Wilson                 (*ledConnections)[ledPath] = connection;
2088d500549bSAnthony Wilson                 BMCWEB_LOG_DEBUG << "Added mapping " << ledPath << " -> "
2089d500549bSAnthony Wilson                                  << connection;
2090d500549bSAnthony Wilson             }
2091d500549bSAnthony Wilson         }
2092d500549bSAnthony Wilson 
2093d500549bSAnthony Wilson         getInventoryLedData(sensorsAsyncResp, inventoryItems, ledConnections,
2094d500549bSAnthony Wilson                             std::move(callback));
2095d500549bSAnthony Wilson         BMCWEB_LOG_DEBUG << "getInventoryLeds respHandler exit";
2096d500549bSAnthony Wilson     };
2097d500549bSAnthony Wilson     // Make call to ObjectMapper to find all inventory items
2098d500549bSAnthony Wilson     crow::connections::systemBus->async_method_call(
2099d500549bSAnthony Wilson         std::move(respHandler), "xyz.openbmc_project.ObjectMapper",
2100d500549bSAnthony Wilson         "/xyz/openbmc_project/object_mapper",
2101d500549bSAnthony Wilson         "xyz.openbmc_project.ObjectMapper", "GetSubTree", path, 0, interfaces);
2102d500549bSAnthony Wilson     BMCWEB_LOG_DEBUG << "getInventoryLeds exit";
2103d500549bSAnthony Wilson }
2104d500549bSAnthony Wilson 
2105d500549bSAnthony Wilson /**
210642cbe538SGunnar Mills  * @brief Gets D-Bus data for Power Supply Attributes such as EfficiencyPercent
210742cbe538SGunnar Mills  *
210842cbe538SGunnar Mills  * Uses the specified connections (services) (currently assumes just one) to
210942cbe538SGunnar Mills  * obtain D-Bus data for Power Supply Attributes. Stores the resulting data in
211042cbe538SGunnar Mills  * the inventoryItems vector. Only stores data in Power Supply inventoryItems.
211142cbe538SGunnar Mills  *
211242cbe538SGunnar Mills  * This data is later used to provide sensor property values in the JSON
211342cbe538SGunnar Mills  * response.
211442cbe538SGunnar Mills  *
211542cbe538SGunnar Mills  * Finds the Power Supply Attributes data asynchronously.  Invokes callback
211642cbe538SGunnar Mills  * when data has been obtained.
211742cbe538SGunnar Mills  *
211842cbe538SGunnar Mills  * The callback must have the following signature:
211942cbe538SGunnar Mills  *   @code
212042cbe538SGunnar Mills  *   callback(std::shared_ptr<std::vector<InventoryItem>> inventoryItems)
212142cbe538SGunnar Mills  *   @endcode
212242cbe538SGunnar Mills  *
212342cbe538SGunnar Mills  * @param sensorsAsyncResp Pointer to object holding response data.
212442cbe538SGunnar Mills  * @param inventoryItems D-Bus inventory items associated with sensors.
212542cbe538SGunnar Mills  * @param psAttributesConnections Connections that provide data for the Power
212642cbe538SGunnar Mills  *        Supply Attributes
212742cbe538SGunnar Mills  * @param callback Callback to invoke when data has been obtained.
212842cbe538SGunnar Mills  */
212942cbe538SGunnar Mills template <typename Callback>
213042cbe538SGunnar Mills void getPowerSupplyAttributesData(
2131b5a76932SEd Tanous     const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp,
213242cbe538SGunnar Mills     std::shared_ptr<std::vector<InventoryItem>> inventoryItems,
213342cbe538SGunnar Mills     const boost::container::flat_map<std::string, std::string>&
213442cbe538SGunnar Mills         psAttributesConnections,
213542cbe538SGunnar Mills     Callback&& callback)
213642cbe538SGunnar Mills {
213742cbe538SGunnar Mills     BMCWEB_LOG_DEBUG << "getPowerSupplyAttributesData enter";
213842cbe538SGunnar Mills 
213942cbe538SGunnar Mills     if (psAttributesConnections.empty())
214042cbe538SGunnar Mills     {
214142cbe538SGunnar Mills         BMCWEB_LOG_DEBUG << "Can't find PowerSupplyAttributes, no connections!";
214242cbe538SGunnar Mills         callback(inventoryItems);
214342cbe538SGunnar Mills         return;
214442cbe538SGunnar Mills     }
214542cbe538SGunnar Mills 
214642cbe538SGunnar Mills     // Assuming just one connection (service) for now
214742cbe538SGunnar Mills     auto it = psAttributesConnections.nth(0);
214842cbe538SGunnar Mills 
214942cbe538SGunnar Mills     const std::string& psAttributesPath = (*it).first;
215042cbe538SGunnar Mills     const std::string& psAttributesConnection = (*it).second;
215142cbe538SGunnar Mills 
215242cbe538SGunnar Mills     // Response handler for Get DeratingFactor property
215342cbe538SGunnar Mills     auto respHandler = [sensorsAsyncResp, inventoryItems,
2154f94c4ecfSEd Tanous                         callback{std::forward<Callback>(callback)}](
215542cbe538SGunnar Mills                            const boost::system::error_code ec,
21561e1e598dSJonathan Doman                            const uint32_t value) {
215742cbe538SGunnar Mills         BMCWEB_LOG_DEBUG << "getPowerSupplyAttributesData respHandler enter";
215842cbe538SGunnar Mills         if (ec)
215942cbe538SGunnar Mills         {
216042cbe538SGunnar Mills             BMCWEB_LOG_ERROR
216142cbe538SGunnar Mills                 << "getPowerSupplyAttributesData respHandler DBus error " << ec;
21628d1b46d7Szhanghch05             messages::internalError(sensorsAsyncResp->asyncResp->res);
216342cbe538SGunnar Mills             return;
216442cbe538SGunnar Mills         }
216542cbe538SGunnar Mills 
21661e1e598dSJonathan Doman         BMCWEB_LOG_DEBUG << "PS EfficiencyPercent value: " << value;
216742cbe538SGunnar Mills         // Store value in Power Supply Inventory Items
216842cbe538SGunnar Mills         for (InventoryItem& inventoryItem : *inventoryItems)
216942cbe538SGunnar Mills         {
217042cbe538SGunnar Mills             if (inventoryItem.isPowerSupply == true)
217142cbe538SGunnar Mills             {
217242cbe538SGunnar Mills                 inventoryItem.powerSupplyEfficiencyPercent =
21731e1e598dSJonathan Doman                     static_cast<int>(value);
217442cbe538SGunnar Mills             }
217542cbe538SGunnar Mills         }
217642cbe538SGunnar Mills 
217742cbe538SGunnar Mills         BMCWEB_LOG_DEBUG << "getPowerSupplyAttributesData respHandler exit";
217842cbe538SGunnar Mills         callback(inventoryItems);
217942cbe538SGunnar Mills     };
218042cbe538SGunnar Mills 
218142cbe538SGunnar Mills     // Get the DeratingFactor property for the PowerSupplyAttributes
218242cbe538SGunnar Mills     // Currently only property on the interface/only one we care about
21831e1e598dSJonathan Doman     sdbusplus::asio::getProperty<uint32_t>(
21841e1e598dSJonathan Doman         *crow::connections::systemBus, psAttributesConnection, psAttributesPath,
21851e1e598dSJonathan Doman         "xyz.openbmc_project.Control.PowerSupplyAttributes", "DeratingFactor",
21861e1e598dSJonathan Doman         std::move(respHandler));
218742cbe538SGunnar Mills 
218842cbe538SGunnar Mills     BMCWEB_LOG_DEBUG << "getPowerSupplyAttributesData exit";
218942cbe538SGunnar Mills }
219042cbe538SGunnar Mills 
219142cbe538SGunnar Mills /**
219242cbe538SGunnar Mills  * @brief Gets the Power Supply Attributes such as EfficiencyPercent
219342cbe538SGunnar Mills  *
219442cbe538SGunnar Mills  * Gets the D-Bus connection (service) that provides Power Supply Attributes
219542cbe538SGunnar Mills  * data. Then gets the Power Supply Attributes data from the connection
219642cbe538SGunnar Mills  * (currently just assumes 1 connection) and stores the data in the inventory
219742cbe538SGunnar Mills  * item.
219842cbe538SGunnar Mills  *
219942cbe538SGunnar Mills  * This data is later used to provide sensor property values in the JSON
220042cbe538SGunnar Mills  * response. DeratingFactor on D-Bus is mapped to EfficiencyPercent on Redfish.
220142cbe538SGunnar Mills  *
220242cbe538SGunnar Mills  * Finds the Power Supply Attributes data asynchronously. Invokes callback
220342cbe538SGunnar Mills  * when information has been obtained.
220442cbe538SGunnar Mills  *
220542cbe538SGunnar Mills  * The callback must have the following signature:
220642cbe538SGunnar Mills  *   @code
220742cbe538SGunnar Mills  *   callback(std::shared_ptr<std::vector<InventoryItem>> inventoryItems)
220842cbe538SGunnar Mills  *   @endcode
220942cbe538SGunnar Mills  *
221042cbe538SGunnar Mills  * @param sensorsAsyncResp Pointer to object holding response data.
221142cbe538SGunnar Mills  * @param inventoryItems D-Bus inventory items associated with sensors.
221242cbe538SGunnar Mills  * @param callback Callback to invoke when data has been obtained.
221342cbe538SGunnar Mills  */
221442cbe538SGunnar Mills template <typename Callback>
221542cbe538SGunnar Mills void getPowerSupplyAttributes(
221642cbe538SGunnar Mills     std::shared_ptr<SensorsAsyncResp> sensorsAsyncResp,
221742cbe538SGunnar Mills     std::shared_ptr<std::vector<InventoryItem>> inventoryItems,
221842cbe538SGunnar Mills     Callback&& callback)
221942cbe538SGunnar Mills {
222042cbe538SGunnar Mills     BMCWEB_LOG_DEBUG << "getPowerSupplyAttributes enter";
222142cbe538SGunnar Mills 
222242cbe538SGunnar Mills     // Only need the power supply attributes when the Power Schema
2223a0ec28b6SAdrian Ambrożewicz     if (sensorsAsyncResp->chassisSubNode != sensors::node::power)
222442cbe538SGunnar Mills     {
222542cbe538SGunnar Mills         BMCWEB_LOG_DEBUG << "getPowerSupplyAttributes exit since not Power";
222642cbe538SGunnar Mills         callback(inventoryItems);
222742cbe538SGunnar Mills         return;
222842cbe538SGunnar Mills     }
222942cbe538SGunnar Mills 
223042cbe538SGunnar Mills     const std::array<std::string, 1> interfaces = {
223142cbe538SGunnar Mills         "xyz.openbmc_project.Control.PowerSupplyAttributes"};
223242cbe538SGunnar Mills 
223342cbe538SGunnar Mills     // Response handler for parsing output from GetSubTree
2234f94c4ecfSEd Tanous     auto respHandler = [callback{std::forward<Callback>(callback)},
2235f94c4ecfSEd Tanous                         sensorsAsyncResp,
223642cbe538SGunnar Mills                         inventoryItems](const boost::system::error_code ec,
223742cbe538SGunnar Mills                                         const GetSubTreeType& subtree) {
223842cbe538SGunnar Mills         BMCWEB_LOG_DEBUG << "getPowerSupplyAttributes respHandler enter";
223942cbe538SGunnar Mills         if (ec)
224042cbe538SGunnar Mills         {
22418d1b46d7Szhanghch05             messages::internalError(sensorsAsyncResp->asyncResp->res);
224242cbe538SGunnar Mills             BMCWEB_LOG_ERROR
224342cbe538SGunnar Mills                 << "getPowerSupplyAttributes respHandler DBus error " << ec;
224442cbe538SGunnar Mills             return;
224542cbe538SGunnar Mills         }
224626f6976fSEd Tanous         if (subtree.empty())
224742cbe538SGunnar Mills         {
224842cbe538SGunnar Mills             BMCWEB_LOG_DEBUG << "Can't find Power Supply Attributes!";
224942cbe538SGunnar Mills             callback(inventoryItems);
225042cbe538SGunnar Mills             return;
225142cbe538SGunnar Mills         }
225242cbe538SGunnar Mills 
225342cbe538SGunnar Mills         // Currently we only support 1 power supply attribute, use this for
225442cbe538SGunnar Mills         // all the power supplies. Build map of object path to connection.
225542cbe538SGunnar Mills         // Assume just 1 connection and 1 path for now.
225642cbe538SGunnar Mills         boost::container::flat_map<std::string, std::string>
225742cbe538SGunnar Mills             psAttributesConnections;
225842cbe538SGunnar Mills 
225942cbe538SGunnar Mills         if (subtree[0].first.empty() || subtree[0].second.empty())
226042cbe538SGunnar Mills         {
226142cbe538SGunnar Mills             BMCWEB_LOG_DEBUG << "Power Supply Attributes mapper error!";
226242cbe538SGunnar Mills             callback(inventoryItems);
226342cbe538SGunnar Mills             return;
226442cbe538SGunnar Mills         }
226542cbe538SGunnar Mills 
226642cbe538SGunnar Mills         const std::string& psAttributesPath = subtree[0].first;
226742cbe538SGunnar Mills         const std::string& connection = subtree[0].second.begin()->first;
226842cbe538SGunnar Mills 
226942cbe538SGunnar Mills         if (connection.empty())
227042cbe538SGunnar Mills         {
227142cbe538SGunnar Mills             BMCWEB_LOG_DEBUG << "Power Supply Attributes mapper error!";
227242cbe538SGunnar Mills             callback(inventoryItems);
227342cbe538SGunnar Mills             return;
227442cbe538SGunnar Mills         }
227542cbe538SGunnar Mills 
227642cbe538SGunnar Mills         psAttributesConnections[psAttributesPath] = connection;
227742cbe538SGunnar Mills         BMCWEB_LOG_DEBUG << "Added mapping " << psAttributesPath << " -> "
227842cbe538SGunnar Mills                          << connection;
227942cbe538SGunnar Mills 
228042cbe538SGunnar Mills         getPowerSupplyAttributesData(sensorsAsyncResp, inventoryItems,
228142cbe538SGunnar Mills                                      psAttributesConnections,
228242cbe538SGunnar Mills                                      std::move(callback));
228342cbe538SGunnar Mills         BMCWEB_LOG_DEBUG << "getPowerSupplyAttributes respHandler exit";
228442cbe538SGunnar Mills     };
228542cbe538SGunnar Mills     // Make call to ObjectMapper to find the PowerSupplyAttributes service
228642cbe538SGunnar Mills     crow::connections::systemBus->async_method_call(
228742cbe538SGunnar Mills         std::move(respHandler), "xyz.openbmc_project.ObjectMapper",
228842cbe538SGunnar Mills         "/xyz/openbmc_project/object_mapper",
228942cbe538SGunnar Mills         "xyz.openbmc_project.ObjectMapper", "GetSubTree",
229042cbe538SGunnar Mills         "/xyz/openbmc_project", 0, interfaces);
229142cbe538SGunnar Mills     BMCWEB_LOG_DEBUG << "getPowerSupplyAttributes exit";
229242cbe538SGunnar Mills }
229342cbe538SGunnar Mills 
229442cbe538SGunnar Mills /**
2295adc4f0dbSShawn McCarney  * @brief Gets inventory items associated with sensors.
22968fb49dd6SShawn McCarney  *
22978fb49dd6SShawn McCarney  * Finds the inventory items that are associated with the specified sensors.
2298adc4f0dbSShawn McCarney  * Then gets D-Bus data for the inventory items, such as presence and VPD.
22998fb49dd6SShawn McCarney  *
2300adc4f0dbSShawn McCarney  * This data is later used to provide sensor property values in the JSON
2301adc4f0dbSShawn McCarney  * response.
23028fb49dd6SShawn McCarney  *
2303adc4f0dbSShawn McCarney  * Finds the inventory items asynchronously.  Invokes callback when the
2304adc4f0dbSShawn McCarney  * inventory items have been obtained.
2305adc4f0dbSShawn McCarney  *
2306adc4f0dbSShawn McCarney  * The callback must have the following signature:
2307adc4f0dbSShawn McCarney  *   @code
2308adc4f0dbSShawn McCarney  *   callback(std::shared_ptr<std::vector<InventoryItem>> inventoryItems)
2309adc4f0dbSShawn McCarney  *   @endcode
23108fb49dd6SShawn McCarney  *
23118fb49dd6SShawn McCarney  * @param sensorsAsyncResp Pointer to object holding response data.
23128fb49dd6SShawn McCarney  * @param sensorNames All sensors within the current chassis.
23138fb49dd6SShawn McCarney  * @param objectMgrPaths Mappings from connection name to DBus object path that
23148fb49dd6SShawn McCarney  * implements ObjectManager.
2315adc4f0dbSShawn McCarney  * @param callback Callback to invoke when inventory items have been obtained.
23168fb49dd6SShawn McCarney  */
2317adc4f0dbSShawn McCarney template <typename Callback>
2318adc4f0dbSShawn McCarney static void getInventoryItems(
23198fb49dd6SShawn McCarney     std::shared_ptr<SensorsAsyncResp> sensorsAsyncResp,
23208fb49dd6SShawn McCarney     const std::shared_ptr<boost::container::flat_set<std::string>> sensorNames,
23218fb49dd6SShawn McCarney     std::shared_ptr<boost::container::flat_map<std::string, std::string>>
2322adc4f0dbSShawn McCarney         objectMgrPaths,
2323adc4f0dbSShawn McCarney     Callback&& callback)
23248fb49dd6SShawn McCarney {
2325adc4f0dbSShawn McCarney     BMCWEB_LOG_DEBUG << "getInventoryItems enter";
2326adc4f0dbSShawn McCarney     auto getInventoryItemAssociationsCb =
2327f94c4ecfSEd Tanous         [sensorsAsyncResp, objectMgrPaths,
2328f94c4ecfSEd Tanous          callback{std::forward<Callback>(callback)}](
2329adc4f0dbSShawn McCarney             std::shared_ptr<std::vector<InventoryItem>> inventoryItems) {
2330adc4f0dbSShawn McCarney             BMCWEB_LOG_DEBUG << "getInventoryItemAssociationsCb enter";
23318fb49dd6SShawn McCarney             auto getInventoryItemsConnectionsCb =
2332adc4f0dbSShawn McCarney                 [sensorsAsyncResp, inventoryItems, objectMgrPaths,
2333f94c4ecfSEd Tanous                  callback{std::forward<const Callback>(callback)}](
23348fb49dd6SShawn McCarney                     std::shared_ptr<boost::container::flat_set<std::string>>
23358fb49dd6SShawn McCarney                         invConnections) {
23368fb49dd6SShawn McCarney                     BMCWEB_LOG_DEBUG << "getInventoryItemsConnectionsCb enter";
2337d500549bSAnthony Wilson                     auto getInventoryItemsDataCb =
2338d500549bSAnthony Wilson                         [sensorsAsyncResp, inventoryItems,
2339d500549bSAnthony Wilson                          callback{std::move(callback)}]() {
2340d500549bSAnthony Wilson                             BMCWEB_LOG_DEBUG << "getInventoryItemsDataCb enter";
234142cbe538SGunnar Mills 
234242cbe538SGunnar Mills                             auto getInventoryLedsCb = [sensorsAsyncResp,
234342cbe538SGunnar Mills                                                        inventoryItems,
234442cbe538SGunnar Mills                                                        callback{std::move(
234542cbe538SGunnar Mills                                                            callback)}]() {
234642cbe538SGunnar Mills                                 BMCWEB_LOG_DEBUG << "getInventoryLedsCb enter";
234742cbe538SGunnar Mills                                 // Find Power Supply Attributes and get the data
234842cbe538SGunnar Mills                                 getPowerSupplyAttributes(sensorsAsyncResp,
234942cbe538SGunnar Mills                                                          inventoryItems,
235042cbe538SGunnar Mills                                                          std::move(callback));
235142cbe538SGunnar Mills                                 BMCWEB_LOG_DEBUG << "getInventoryLedsCb exit";
235242cbe538SGunnar Mills                             };
235342cbe538SGunnar Mills 
2354d500549bSAnthony Wilson                             // Find led connections and get the data
2355d500549bSAnthony Wilson                             getInventoryLeds(sensorsAsyncResp, inventoryItems,
235642cbe538SGunnar Mills                                              std::move(getInventoryLedsCb));
2357d500549bSAnthony Wilson                             BMCWEB_LOG_DEBUG << "getInventoryItemsDataCb exit";
2358d500549bSAnthony Wilson                         };
23598fb49dd6SShawn McCarney 
2360adc4f0dbSShawn McCarney                     // Get inventory item data from connections
2361adc4f0dbSShawn McCarney                     getInventoryItemsData(sensorsAsyncResp, inventoryItems,
2362adc4f0dbSShawn McCarney                                           invConnections, objectMgrPaths,
2363d500549bSAnthony Wilson                                           std::move(getInventoryItemsDataCb));
23648fb49dd6SShawn McCarney                     BMCWEB_LOG_DEBUG << "getInventoryItemsConnectionsCb exit";
23658fb49dd6SShawn McCarney                 };
23668fb49dd6SShawn McCarney 
2367adc4f0dbSShawn McCarney             // Get connections that provide inventory item data
23688fb49dd6SShawn McCarney             getInventoryItemsConnections(
2369adc4f0dbSShawn McCarney                 sensorsAsyncResp, inventoryItems,
23708fb49dd6SShawn McCarney                 std::move(getInventoryItemsConnectionsCb));
2371adc4f0dbSShawn McCarney             BMCWEB_LOG_DEBUG << "getInventoryItemAssociationsCb exit";
23728fb49dd6SShawn McCarney         };
23738fb49dd6SShawn McCarney 
2374adc4f0dbSShawn McCarney     // Get associations from sensors to inventory items
2375adc4f0dbSShawn McCarney     getInventoryItemAssociations(sensorsAsyncResp, sensorNames, objectMgrPaths,
2376adc4f0dbSShawn McCarney                                  std::move(getInventoryItemAssociationsCb));
2377adc4f0dbSShawn McCarney     BMCWEB_LOG_DEBUG << "getInventoryItems exit";
2378adc4f0dbSShawn McCarney }
2379adc4f0dbSShawn McCarney 
2380adc4f0dbSShawn McCarney /**
2381adc4f0dbSShawn McCarney  * @brief Returns JSON PowerSupply object for the specified inventory item.
2382adc4f0dbSShawn McCarney  *
2383adc4f0dbSShawn McCarney  * Searches for a JSON PowerSupply object that matches the specified inventory
2384adc4f0dbSShawn McCarney  * item.  If one is not found, a new PowerSupply object is added to the JSON
2385adc4f0dbSShawn McCarney  * array.
2386adc4f0dbSShawn McCarney  *
2387adc4f0dbSShawn McCarney  * Multiple sensors are often associated with one power supply inventory item.
2388adc4f0dbSShawn McCarney  * As a result, multiple sensor values are stored in one JSON PowerSupply
2389adc4f0dbSShawn McCarney  * object.
2390adc4f0dbSShawn McCarney  *
2391adc4f0dbSShawn McCarney  * @param powerSupplyArray JSON array containing Redfish PowerSupply objects.
2392adc4f0dbSShawn McCarney  * @param inventoryItem Inventory item for the power supply.
2393adc4f0dbSShawn McCarney  * @param chassisId Chassis that contains the power supply.
2394adc4f0dbSShawn McCarney  * @return JSON PowerSupply object for the specified inventory item.
2395adc4f0dbSShawn McCarney  */
239623a21a1cSEd Tanous inline nlohmann::json& getPowerSupply(nlohmann::json& powerSupplyArray,
2397adc4f0dbSShawn McCarney                                       const InventoryItem& inventoryItem,
2398adc4f0dbSShawn McCarney                                       const std::string& chassisId)
2399adc4f0dbSShawn McCarney {
2400adc4f0dbSShawn McCarney     // Check if matching PowerSupply object already exists in JSON array
2401adc4f0dbSShawn McCarney     for (nlohmann::json& powerSupply : powerSupplyArray)
2402adc4f0dbSShawn McCarney     {
2403adc4f0dbSShawn McCarney         if (powerSupply["MemberId"] == inventoryItem.name)
2404adc4f0dbSShawn McCarney         {
2405adc4f0dbSShawn McCarney             return powerSupply;
2406adc4f0dbSShawn McCarney         }
2407adc4f0dbSShawn McCarney     }
2408adc4f0dbSShawn McCarney 
2409adc4f0dbSShawn McCarney     // Add new PowerSupply object to JSON array
2410adc4f0dbSShawn McCarney     powerSupplyArray.push_back({});
2411adc4f0dbSShawn McCarney     nlohmann::json& powerSupply = powerSupplyArray.back();
2412adc4f0dbSShawn McCarney     powerSupply["@odata.id"] =
2413adc4f0dbSShawn McCarney         "/redfish/v1/Chassis/" + chassisId + "/Power#/PowerSupplies/";
2414adc4f0dbSShawn McCarney     powerSupply["MemberId"] = inventoryItem.name;
2415adc4f0dbSShawn McCarney     powerSupply["Name"] = boost::replace_all_copy(inventoryItem.name, "_", " ");
2416adc4f0dbSShawn McCarney     powerSupply["Manufacturer"] = inventoryItem.manufacturer;
2417adc4f0dbSShawn McCarney     powerSupply["Model"] = inventoryItem.model;
2418adc4f0dbSShawn McCarney     powerSupply["PartNumber"] = inventoryItem.partNumber;
2419adc4f0dbSShawn McCarney     powerSupply["SerialNumber"] = inventoryItem.serialNumber;
2420d500549bSAnthony Wilson     setLedState(powerSupply, &inventoryItem);
2421adc4f0dbSShawn McCarney 
242242cbe538SGunnar Mills     if (inventoryItem.powerSupplyEfficiencyPercent >= 0)
242342cbe538SGunnar Mills     {
242442cbe538SGunnar Mills         powerSupply["EfficiencyPercent"] =
242542cbe538SGunnar Mills             inventoryItem.powerSupplyEfficiencyPercent;
242642cbe538SGunnar Mills     }
242742cbe538SGunnar Mills 
242842cbe538SGunnar Mills     powerSupply["Status"]["State"] = getState(&inventoryItem);
2429adc4f0dbSShawn McCarney     const char* health = inventoryItem.isFunctional ? "OK" : "Critical";
2430adc4f0dbSShawn McCarney     powerSupply["Status"]["Health"] = health;
2431adc4f0dbSShawn McCarney 
2432adc4f0dbSShawn McCarney     return powerSupply;
24338fb49dd6SShawn McCarney }
24348fb49dd6SShawn McCarney 
24358fb49dd6SShawn McCarney /**
2436de629b6eSShawn McCarney  * @brief Gets the values of the specified sensors.
2437de629b6eSShawn McCarney  *
2438de629b6eSShawn McCarney  * Stores the results as JSON in the SensorsAsyncResp.
2439de629b6eSShawn McCarney  *
2440de629b6eSShawn McCarney  * Gets the sensor values asynchronously.  Stores the results later when the
2441de629b6eSShawn McCarney  * information has been obtained.
2442de629b6eSShawn McCarney  *
2443adc4f0dbSShawn McCarney  * The sensorNames set contains all requested sensors for the current chassis.
2444de629b6eSShawn McCarney  *
2445de629b6eSShawn McCarney  * To minimize the number of DBus calls, the DBus method
2446de629b6eSShawn McCarney  * org.freedesktop.DBus.ObjectManager.GetManagedObjects() is used to get the
2447de629b6eSShawn McCarney  * values of all sensors provided by a connection (service).
2448de629b6eSShawn McCarney  *
2449de629b6eSShawn McCarney  * The connections set contains all the connections that provide sensor values.
2450de629b6eSShawn McCarney  *
2451de629b6eSShawn McCarney  * The objectMgrPaths map contains mappings from a connection name to the
2452de629b6eSShawn McCarney  * corresponding DBus object path that implements ObjectManager.
2453de629b6eSShawn McCarney  *
2454adc4f0dbSShawn McCarney  * The InventoryItem vector contains D-Bus inventory items associated with the
2455adc4f0dbSShawn McCarney  * sensors.  Inventory item data is needed for some Redfish sensor properties.
2456adc4f0dbSShawn McCarney  *
2457de629b6eSShawn McCarney  * @param SensorsAsyncResp Pointer to object holding response data.
2458adc4f0dbSShawn McCarney  * @param sensorNames All requested sensors within the current chassis.
2459de629b6eSShawn McCarney  * @param connections Connections that provide sensor values.
2460de629b6eSShawn McCarney  * @param objectMgrPaths Mappings from connection name to DBus object path that
2461de629b6eSShawn McCarney  * implements ObjectManager.
2462adc4f0dbSShawn McCarney  * @param inventoryItems Inventory items associated with the sensors.
2463de629b6eSShawn McCarney  */
246423a21a1cSEd Tanous inline void getSensorData(
246581ce609eSEd Tanous     const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp,
2466b5a76932SEd Tanous     const std::shared_ptr<boost::container::flat_set<std::string>>& sensorNames,
2467de629b6eSShawn McCarney     const boost::container::flat_set<std::string>& connections,
2468b5a76932SEd Tanous     const std::shared_ptr<boost::container::flat_map<std::string, std::string>>&
2469adc4f0dbSShawn McCarney         objectMgrPaths,
2470b5a76932SEd Tanous     const std::shared_ptr<std::vector<InventoryItem>>& inventoryItems)
2471de629b6eSShawn McCarney {
2472de629b6eSShawn McCarney     BMCWEB_LOG_DEBUG << "getSensorData enter";
2473de629b6eSShawn McCarney     // Get managed objects from all services exposing sensors
2474de629b6eSShawn McCarney     for (const std::string& connection : connections)
2475de629b6eSShawn McCarney     {
2476de629b6eSShawn McCarney         // Response handler to process managed objects
247781ce609eSEd Tanous         auto getManagedObjectsCb = [sensorsAsyncResp, sensorNames,
2478adc4f0dbSShawn McCarney                                     inventoryItems](
2479de629b6eSShawn McCarney                                        const boost::system::error_code ec,
2480711ac7a9SEd Tanous                                        dbus::utility::ManagedObjectType& resp) {
2481de629b6eSShawn McCarney             BMCWEB_LOG_DEBUG << "getManagedObjectsCb enter";
2482de629b6eSShawn McCarney             if (ec)
2483de629b6eSShawn McCarney             {
2484de629b6eSShawn McCarney                 BMCWEB_LOG_ERROR << "getManagedObjectsCb DBUS error: " << ec;
24858d1b46d7Szhanghch05                 messages::internalError(sensorsAsyncResp->asyncResp->res);
2486de629b6eSShawn McCarney                 return;
2487de629b6eSShawn McCarney             }
2488de629b6eSShawn McCarney             // Go through all objects and update response with sensor data
2489de629b6eSShawn McCarney             for (const auto& objDictEntry : resp)
2490de629b6eSShawn McCarney             {
2491de629b6eSShawn McCarney                 const std::string& objPath =
2492de629b6eSShawn McCarney                     static_cast<const std::string&>(objDictEntry.first);
2493de629b6eSShawn McCarney                 BMCWEB_LOG_DEBUG << "getManagedObjectsCb parsing object "
2494de629b6eSShawn McCarney                                  << objPath;
2495de629b6eSShawn McCarney 
2496de629b6eSShawn McCarney                 std::vector<std::string> split;
2497de629b6eSShawn McCarney                 // Reserve space for
2498de629b6eSShawn McCarney                 // /xyz/openbmc_project/sensors/<name>/<subname>
2499de629b6eSShawn McCarney                 split.reserve(6);
2500de629b6eSShawn McCarney                 boost::algorithm::split(split, objPath, boost::is_any_of("/"));
2501de629b6eSShawn McCarney                 if (split.size() < 6)
2502de629b6eSShawn McCarney                 {
2503de629b6eSShawn McCarney                     BMCWEB_LOG_ERROR << "Got path that isn't long enough "
2504de629b6eSShawn McCarney                                      << objPath;
2505de629b6eSShawn McCarney                     continue;
2506de629b6eSShawn McCarney                 }
2507de629b6eSShawn McCarney                 // These indexes aren't intuitive, as boost::split puts an empty
2508de629b6eSShawn McCarney                 // string at the beginning
2509de629b6eSShawn McCarney                 const std::string& sensorType = split[4];
2510de629b6eSShawn McCarney                 const std::string& sensorName = split[5];
2511de629b6eSShawn McCarney                 BMCWEB_LOG_DEBUG << "sensorName " << sensorName
2512de629b6eSShawn McCarney                                  << " sensorType " << sensorType;
251349c53ac9SJohnathan Mantey                 if (sensorNames->find(objPath) == sensorNames->end())
2514de629b6eSShawn McCarney                 {
2515accdbb2cSAndrew Geissler                     BMCWEB_LOG_DEBUG << sensorName << " not in sensor list ";
2516de629b6eSShawn McCarney                     continue;
2517de629b6eSShawn McCarney                 }
2518de629b6eSShawn McCarney 
2519adc4f0dbSShawn McCarney                 // Find inventory item (if any) associated with sensor
2520adc4f0dbSShawn McCarney                 InventoryItem* inventoryItem =
2521adc4f0dbSShawn McCarney                     findInventoryItemForSensor(inventoryItems, objPath);
2522adc4f0dbSShawn McCarney 
252395a3ecadSAnthony Wilson                 const std::string& sensorSchema =
252481ce609eSEd Tanous                     sensorsAsyncResp->chassisSubNode;
252595a3ecadSAnthony Wilson 
252695a3ecadSAnthony Wilson                 nlohmann::json* sensorJson = nullptr;
252795a3ecadSAnthony Wilson 
2528a0ec28b6SAdrian Ambrożewicz                 if (sensorSchema == sensors::node::sensors)
252995a3ecadSAnthony Wilson                 {
25308d1b46d7Szhanghch05                     sensorsAsyncResp->asyncResp->res.jsonValue["@odata.id"] =
253181ce609eSEd Tanous                         "/redfish/v1/Chassis/" + sensorsAsyncResp->chassisId +
253281ce609eSEd Tanous                         "/" + sensorsAsyncResp->chassisSubNode + "/" +
253395a3ecadSAnthony Wilson                         sensorName;
25348d1b46d7Szhanghch05                     sensorJson = &(sensorsAsyncResp->asyncResp->res.jsonValue);
253595a3ecadSAnthony Wilson                 }
253695a3ecadSAnthony Wilson                 else
253795a3ecadSAnthony Wilson                 {
2538271584abSEd Tanous                     std::string fieldName;
2539de629b6eSShawn McCarney                     if (sensorType == "temperature")
2540de629b6eSShawn McCarney                     {
2541de629b6eSShawn McCarney                         fieldName = "Temperatures";
2542de629b6eSShawn McCarney                     }
2543de629b6eSShawn McCarney                     else if (sensorType == "fan" || sensorType == "fan_tach" ||
2544de629b6eSShawn McCarney                              sensorType == "fan_pwm")
2545de629b6eSShawn McCarney                     {
2546de629b6eSShawn McCarney                         fieldName = "Fans";
2547de629b6eSShawn McCarney                     }
2548de629b6eSShawn McCarney                     else if (sensorType == "voltage")
2549de629b6eSShawn McCarney                     {
2550de629b6eSShawn McCarney                         fieldName = "Voltages";
2551de629b6eSShawn McCarney                     }
2552de629b6eSShawn McCarney                     else if (sensorType == "power")
2553de629b6eSShawn McCarney                     {
2554e662eae8SEd Tanous                         if (sensorName.compare("total_power") == 0)
2555028f7ebcSEddie James                         {
2556028f7ebcSEddie James                             fieldName = "PowerControl";
2557028f7ebcSEddie James                         }
2558adc4f0dbSShawn McCarney                         else if ((inventoryItem != nullptr) &&
2559adc4f0dbSShawn McCarney                                  (inventoryItem->isPowerSupply))
2560028f7ebcSEddie James                         {
2561de629b6eSShawn McCarney                             fieldName = "PowerSupplies";
2562de629b6eSShawn McCarney                         }
2563adc4f0dbSShawn McCarney                         else
2564adc4f0dbSShawn McCarney                         {
2565adc4f0dbSShawn McCarney                             // Other power sensors are in SensorCollection
2566adc4f0dbSShawn McCarney                             continue;
2567adc4f0dbSShawn McCarney                         }
2568028f7ebcSEddie James                     }
2569de629b6eSShawn McCarney                     else
2570de629b6eSShawn McCarney                     {
2571de629b6eSShawn McCarney                         BMCWEB_LOG_ERROR << "Unsure how to handle sensorType "
2572de629b6eSShawn McCarney                                          << sensorType;
2573de629b6eSShawn McCarney                         continue;
2574de629b6eSShawn McCarney                     }
2575de629b6eSShawn McCarney 
2576de629b6eSShawn McCarney                     nlohmann::json& tempArray =
25778d1b46d7Szhanghch05                         sensorsAsyncResp->asyncResp->res.jsonValue[fieldName];
2578adc4f0dbSShawn McCarney                     if (fieldName == "PowerControl")
257949c53ac9SJohnathan Mantey                     {
2580adc4f0dbSShawn McCarney                         if (tempArray.empty())
25817ab06f49SGunnar Mills                         {
258295a3ecadSAnthony Wilson                             // Put multiple "sensors" into a single
258395a3ecadSAnthony Wilson                             // PowerControl. Follows MemberId naming and
258495a3ecadSAnthony Wilson                             // naming in power.hpp.
25857ab06f49SGunnar Mills                             tempArray.push_back(
2586adc4f0dbSShawn McCarney                                 {{"@odata.id",
2587adc4f0dbSShawn McCarney                                   "/redfish/v1/Chassis/" +
258881ce609eSEd Tanous                                       sensorsAsyncResp->chassisId + "/" +
258981ce609eSEd Tanous                                       sensorsAsyncResp->chassisSubNode + "#/" +
2590adc4f0dbSShawn McCarney                                       fieldName + "/0"}});
2591adc4f0dbSShawn McCarney                         }
2592adc4f0dbSShawn McCarney                         sensorJson = &(tempArray.back());
2593adc4f0dbSShawn McCarney                     }
2594adc4f0dbSShawn McCarney                     else if (fieldName == "PowerSupplies")
2595adc4f0dbSShawn McCarney                     {
2596adc4f0dbSShawn McCarney                         if (inventoryItem != nullptr)
2597adc4f0dbSShawn McCarney                         {
2598adc4f0dbSShawn McCarney                             sensorJson =
2599adc4f0dbSShawn McCarney                                 &(getPowerSupply(tempArray, *inventoryItem,
260081ce609eSEd Tanous                                                  sensorsAsyncResp->chassisId));
2601adc4f0dbSShawn McCarney                         }
260249c53ac9SJohnathan Mantey                     }
260349c53ac9SJohnathan Mantey                     else
260449c53ac9SJohnathan Mantey                     {
2605de629b6eSShawn McCarney                         tempArray.push_back(
260695a3ecadSAnthony Wilson                             {{"@odata.id",
260795a3ecadSAnthony Wilson                               "/redfish/v1/Chassis/" +
260881ce609eSEd Tanous                                   sensorsAsyncResp->chassisId + "/" +
260981ce609eSEd Tanous                                   sensorsAsyncResp->chassisSubNode + "#/" +
261095a3ecadSAnthony Wilson                                   fieldName + "/"}});
2611adc4f0dbSShawn McCarney                         sensorJson = &(tempArray.back());
261249c53ac9SJohnathan Mantey                     }
261395a3ecadSAnthony Wilson                 }
2614de629b6eSShawn McCarney 
2615adc4f0dbSShawn McCarney                 if (sensorJson != nullptr)
2616adc4f0dbSShawn McCarney                 {
2617a0ec28b6SAdrian Ambrożewicz                     objectInterfacesToJson(
261881ce609eSEd Tanous                         sensorName, sensorType, sensorsAsyncResp,
2619a0ec28b6SAdrian Ambrożewicz                         objDictEntry.second, *sensorJson, inventoryItem);
2620adc4f0dbSShawn McCarney                 }
2621de629b6eSShawn McCarney             }
262281ce609eSEd Tanous             if (sensorsAsyncResp.use_count() == 1)
262349c53ac9SJohnathan Mantey             {
262481ce609eSEd Tanous                 sortJSONResponse(sensorsAsyncResp);
262581ce609eSEd Tanous                 if (sensorsAsyncResp->chassisSubNode == sensors::node::thermal)
26268bd25ccdSJames Feist                 {
262781ce609eSEd Tanous                     populateFanRedundancy(sensorsAsyncResp);
26288bd25ccdSJames Feist                 }
262949c53ac9SJohnathan Mantey             }
2630de629b6eSShawn McCarney             BMCWEB_LOG_DEBUG << "getManagedObjectsCb exit";
2631de629b6eSShawn McCarney         };
2632de629b6eSShawn McCarney 
2633de629b6eSShawn McCarney         // Find DBus object path that implements ObjectManager for the current
2634de629b6eSShawn McCarney         // connection.  If no mapping found, default to "/".
26358fb49dd6SShawn McCarney         auto iter = objectMgrPaths->find(connection);
2636de629b6eSShawn McCarney         const std::string& objectMgrPath =
26378fb49dd6SShawn McCarney             (iter != objectMgrPaths->end()) ? iter->second : "/";
2638de629b6eSShawn McCarney         BMCWEB_LOG_DEBUG << "ObjectManager path for " << connection << " is "
2639de629b6eSShawn McCarney                          << objectMgrPath;
2640de629b6eSShawn McCarney 
2641de629b6eSShawn McCarney         crow::connections::systemBus->async_method_call(
2642de629b6eSShawn McCarney             getManagedObjectsCb, connection, objectMgrPath,
2643de629b6eSShawn McCarney             "org.freedesktop.DBus.ObjectManager", "GetManagedObjects");
264423a21a1cSEd Tanous     }
2645de629b6eSShawn McCarney     BMCWEB_LOG_DEBUG << "getSensorData exit";
2646de629b6eSShawn McCarney }
2647de629b6eSShawn McCarney 
264823a21a1cSEd Tanous inline void processSensorList(
264981ce609eSEd Tanous     const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp,
2650b5a76932SEd Tanous     const std::shared_ptr<boost::container::flat_set<std::string>>& sensorNames)
26511abe55efSEd Tanous {
265295a3ecadSAnthony Wilson     auto getConnectionCb =
265381ce609eSEd Tanous         [sensorsAsyncResp, sensorNames](
265495a3ecadSAnthony Wilson             const boost::container::flat_set<std::string>& connections) {
265555c7b7a2SEd Tanous             BMCWEB_LOG_DEBUG << "getConnectionCb enter";
2656de629b6eSShawn McCarney             auto getObjectManagerPathsCb =
265781ce609eSEd Tanous                 [sensorsAsyncResp, sensorNames,
2658b5a76932SEd Tanous                  connections](const std::shared_ptr<boost::container::flat_map<
2659b5a76932SEd Tanous                                   std::string, std::string>>& objectMgrPaths) {
2660de629b6eSShawn McCarney                     BMCWEB_LOG_DEBUG << "getObjectManagerPathsCb enter";
2661adc4f0dbSShawn McCarney                     auto getInventoryItemsCb =
266281ce609eSEd Tanous                         [sensorsAsyncResp, sensorNames, connections,
2663adc4f0dbSShawn McCarney                          objectMgrPaths](
2664f23b7296SEd Tanous                             const std::shared_ptr<std::vector<InventoryItem>>&
2665adc4f0dbSShawn McCarney                                 inventoryItems) {
2666adc4f0dbSShawn McCarney                             BMCWEB_LOG_DEBUG << "getInventoryItemsCb enter";
266749c53ac9SJohnathan Mantey                             // Get sensor data and store results in JSON
266881ce609eSEd Tanous                             getSensorData(sensorsAsyncResp, sensorNames,
2669adc4f0dbSShawn McCarney                                           connections, objectMgrPaths,
2670f23b7296SEd Tanous                                           inventoryItems);
2671adc4f0dbSShawn McCarney                             BMCWEB_LOG_DEBUG << "getInventoryItemsCb exit";
2672adc4f0dbSShawn McCarney                         };
2673adc4f0dbSShawn McCarney 
2674adc4f0dbSShawn McCarney                     // Get inventory items associated with sensors
267581ce609eSEd Tanous                     getInventoryItems(sensorsAsyncResp, sensorNames,
2676adc4f0dbSShawn McCarney                                       objectMgrPaths,
2677adc4f0dbSShawn McCarney                                       std::move(getInventoryItemsCb));
2678adc4f0dbSShawn McCarney 
2679de629b6eSShawn McCarney                     BMCWEB_LOG_DEBUG << "getObjectManagerPathsCb exit";
268008777fb0SLewanczyk, Dawid                 };
2681de629b6eSShawn McCarney 
268249c53ac9SJohnathan Mantey             // Get mapping from connection names to the DBus object
268349c53ac9SJohnathan Mantey             // paths that implement the ObjectManager interface
268481ce609eSEd Tanous             getObjectManagerPaths(sensorsAsyncResp,
2685de629b6eSShawn McCarney                                   std::move(getObjectManagerPathsCb));
268655c7b7a2SEd Tanous             BMCWEB_LOG_DEBUG << "getConnectionCb exit";
268708777fb0SLewanczyk, Dawid         };
2688de629b6eSShawn McCarney 
2689de629b6eSShawn McCarney     // Get set of connections that provide sensor values
269081ce609eSEd Tanous     getConnections(sensorsAsyncResp, sensorNames, std::move(getConnectionCb));
269195a3ecadSAnthony Wilson }
269295a3ecadSAnthony Wilson 
269395a3ecadSAnthony Wilson /**
269495a3ecadSAnthony Wilson  * @brief Entry point for retrieving sensors data related to requested
269595a3ecadSAnthony Wilson  *        chassis.
269695a3ecadSAnthony Wilson  * @param SensorsAsyncResp   Pointer to object holding response data
269795a3ecadSAnthony Wilson  */
2698b5a76932SEd Tanous inline void
269981ce609eSEd Tanous     getChassisData(const std::shared_ptr<SensorsAsyncResp>& sensorsAsyncResp)
270095a3ecadSAnthony Wilson {
270195a3ecadSAnthony Wilson     BMCWEB_LOG_DEBUG << "getChassisData enter";
270295a3ecadSAnthony Wilson     auto getChassisCb =
270381ce609eSEd Tanous         [sensorsAsyncResp](
2704f23b7296SEd Tanous             const std::shared_ptr<boost::container::flat_set<std::string>>&
270595a3ecadSAnthony Wilson                 sensorNames) {
270695a3ecadSAnthony Wilson             BMCWEB_LOG_DEBUG << "getChassisCb enter";
270781ce609eSEd Tanous             processSensorList(sensorsAsyncResp, sensorNames);
270855c7b7a2SEd Tanous             BMCWEB_LOG_DEBUG << "getChassisCb exit";
270908777fb0SLewanczyk, Dawid         };
27108d1b46d7Szhanghch05     sensorsAsyncResp->asyncResp->res.jsonValue["Redundancy"] =
27118d1b46d7Szhanghch05         nlohmann::json::array();
271208777fb0SLewanczyk, Dawid 
271326f03899SShawn McCarney     // Get set of sensors in chassis
271481ce609eSEd Tanous     getChassis(sensorsAsyncResp, std::move(getChassisCb));
271555c7b7a2SEd Tanous     BMCWEB_LOG_DEBUG << "getChassisData exit";
2716271584abSEd Tanous }
271708777fb0SLewanczyk, Dawid 
2718413961deSRichard Marian Thomaiyar /**
271949c53ac9SJohnathan Mantey  * @brief Find the requested sensorName in the list of all sensors supplied by
272049c53ac9SJohnathan Mantey  * the chassis node
272149c53ac9SJohnathan Mantey  *
272249c53ac9SJohnathan Mantey  * @param sensorName   The sensor name supplied in the PATCH request
272349c53ac9SJohnathan Mantey  * @param sensorsList  The list of sensors managed by the chassis node
272449c53ac9SJohnathan Mantey  * @param sensorsModified  The list of sensors that were found as a result of
272549c53ac9SJohnathan Mantey  *                         repeated calls to this function
272649c53ac9SJohnathan Mantey  */
272723a21a1cSEd Tanous inline bool findSensorNameUsingSensorPath(
27280a86febdSRichard Marian Thomaiyar     std::string_view sensorName,
272949c53ac9SJohnathan Mantey     boost::container::flat_set<std::string>& sensorsList,
273049c53ac9SJohnathan Mantey     boost::container::flat_set<std::string>& sensorsModified)
273149c53ac9SJohnathan Mantey {
273228aa8de5SGeorge Liu     for (auto& chassisSensor : sensorsList)
273349c53ac9SJohnathan Mantey     {
273428aa8de5SGeorge Liu         sdbusplus::message::object_path path(chassisSensor);
2735b00dcc27SEd Tanous         std::string thisSensorName = path.filename();
273628aa8de5SGeorge Liu         if (thisSensorName.empty())
273749c53ac9SJohnathan Mantey         {
273849c53ac9SJohnathan Mantey             continue;
273949c53ac9SJohnathan Mantey         }
274049c53ac9SJohnathan Mantey         if (thisSensorName == sensorName)
274149c53ac9SJohnathan Mantey         {
274249c53ac9SJohnathan Mantey             sensorsModified.emplace(chassisSensor);
274349c53ac9SJohnathan Mantey             return true;
274449c53ac9SJohnathan Mantey         }
274549c53ac9SJohnathan Mantey     }
274649c53ac9SJohnathan Mantey     return false;
274749c53ac9SJohnathan Mantey }
274849c53ac9SJohnathan Mantey 
274949c53ac9SJohnathan Mantey /**
2750413961deSRichard Marian Thomaiyar  * @brief Entry point for overriding sensor values of given sensor
2751413961deSRichard Marian Thomaiyar  *
27528d1b46d7Szhanghch05  * @param sensorAsyncResp   response object
27534bb3dc34SCarol Wang  * @param allCollections   Collections extract from sensors' request patch info
2754413961deSRichard Marian Thomaiyar  * @param chassisSubNode   Chassis Node for which the query has to happen
2755413961deSRichard Marian Thomaiyar  */
275623a21a1cSEd Tanous inline void setSensorsOverride(
2757b5a76932SEd Tanous     const std::shared_ptr<SensorsAsyncResp>& sensorAsyncResp,
27584bb3dc34SCarol Wang     std::unordered_map<std::string, std::vector<nlohmann::json>>&
2759397fd61fSjayaprakash Mutyala         allCollections)
2760413961deSRichard Marian Thomaiyar {
276170d1d0aaSjayaprakash Mutyala     BMCWEB_LOG_INFO << "setSensorsOverride for subNode"
27624bb3dc34SCarol Wang                     << sensorAsyncResp->chassisSubNode << "\n";
2763413961deSRichard Marian Thomaiyar 
2764543f4400SEd Tanous     const char* propertyValueName = nullptr;
2765f65af9e8SRichard Marian Thomaiyar     std::unordered_map<std::string, std::pair<double, std::string>> overrideMap;
2766413961deSRichard Marian Thomaiyar     std::string memberId;
2767543f4400SEd Tanous     double value = 0.0;
2768f65af9e8SRichard Marian Thomaiyar     for (auto& collectionItems : allCollections)
2769f65af9e8SRichard Marian Thomaiyar     {
2770f65af9e8SRichard Marian Thomaiyar         if (collectionItems.first == "Temperatures")
2771f65af9e8SRichard Marian Thomaiyar         {
2772f65af9e8SRichard Marian Thomaiyar             propertyValueName = "ReadingCelsius";
2773f65af9e8SRichard Marian Thomaiyar         }
2774f65af9e8SRichard Marian Thomaiyar         else if (collectionItems.first == "Fans")
2775f65af9e8SRichard Marian Thomaiyar         {
2776f65af9e8SRichard Marian Thomaiyar             propertyValueName = "Reading";
2777f65af9e8SRichard Marian Thomaiyar         }
2778f65af9e8SRichard Marian Thomaiyar         else
2779f65af9e8SRichard Marian Thomaiyar         {
2780f65af9e8SRichard Marian Thomaiyar             propertyValueName = "ReadingVolts";
2781f65af9e8SRichard Marian Thomaiyar         }
2782f65af9e8SRichard Marian Thomaiyar         for (auto& item : collectionItems.second)
2783f65af9e8SRichard Marian Thomaiyar         {
27848d1b46d7Szhanghch05             if (!json_util::readJson(item, sensorAsyncResp->asyncResp->res,
27858d1b46d7Szhanghch05                                      "MemberId", memberId, propertyValueName,
27868d1b46d7Szhanghch05                                      value))
2787413961deSRichard Marian Thomaiyar             {
2788413961deSRichard Marian Thomaiyar                 return;
2789413961deSRichard Marian Thomaiyar             }
2790f65af9e8SRichard Marian Thomaiyar             overrideMap.emplace(memberId,
2791f65af9e8SRichard Marian Thomaiyar                                 std::make_pair(value, collectionItems.first));
2792f65af9e8SRichard Marian Thomaiyar         }
2793f65af9e8SRichard Marian Thomaiyar     }
27944bb3dc34SCarol Wang 
2795b5a76932SEd Tanous     auto getChassisSensorListCb = [sensorAsyncResp, overrideMap](
2796b5a76932SEd Tanous                                       const std::shared_ptr<
279749c53ac9SJohnathan Mantey                                           boost::container::flat_set<
2798b5a76932SEd Tanous                                               std::string>>& sensorsList) {
279949c53ac9SJohnathan Mantey         // Match sensor names in the PATCH request to those managed by the
280049c53ac9SJohnathan Mantey         // chassis node
280149c53ac9SJohnathan Mantey         const std::shared_ptr<boost::container::flat_set<std::string>>
280249c53ac9SJohnathan Mantey             sensorNames =
280349c53ac9SJohnathan Mantey                 std::make_shared<boost::container::flat_set<std::string>>();
2804f65af9e8SRichard Marian Thomaiyar         for (const auto& item : overrideMap)
2805413961deSRichard Marian Thomaiyar         {
2806f65af9e8SRichard Marian Thomaiyar             const auto& sensor = item.first;
280749c53ac9SJohnathan Mantey             if (!findSensorNameUsingSensorPath(sensor, *sensorsList,
280849c53ac9SJohnathan Mantey                                                *sensorNames))
2809f65af9e8SRichard Marian Thomaiyar             {
2810f65af9e8SRichard Marian Thomaiyar                 BMCWEB_LOG_INFO << "Unable to find memberId " << item.first;
28118d1b46d7Szhanghch05                 messages::resourceNotFound(sensorAsyncResp->asyncResp->res,
2812f65af9e8SRichard Marian Thomaiyar                                            item.second.second, item.first);
2813413961deSRichard Marian Thomaiyar                 return;
2814413961deSRichard Marian Thomaiyar             }
2815f65af9e8SRichard Marian Thomaiyar         }
2816413961deSRichard Marian Thomaiyar         // Get the connection to which the memberId belongs
28174f277b54SJayaprakash Mutyala         auto getObjectsWithConnectionCb = [sensorAsyncResp, overrideMap](
28184f277b54SJayaprakash Mutyala                                               const boost::container::flat_set<
28194f277b54SJayaprakash Mutyala                                                   std::string>& /*connections*/,
28204f277b54SJayaprakash Mutyala                                               const std::set<std::pair<
28214f277b54SJayaprakash Mutyala                                                   std::string, std::string>>&
2822413961deSRichard Marian Thomaiyar                                                   objectsWithConnection) {
2823f65af9e8SRichard Marian Thomaiyar             if (objectsWithConnection.size() != overrideMap.size())
2824413961deSRichard Marian Thomaiyar             {
2825413961deSRichard Marian Thomaiyar                 BMCWEB_LOG_INFO
2826f65af9e8SRichard Marian Thomaiyar                     << "Unable to find all objects with proper connection "
2827f65af9e8SRichard Marian Thomaiyar                     << objectsWithConnection.size() << " requested "
2828f65af9e8SRichard Marian Thomaiyar                     << overrideMap.size() << "\n";
28294f277b54SJayaprakash Mutyala                 messages::resourceNotFound(sensorAsyncResp->asyncResp->res,
2830a0ec28b6SAdrian Ambrożewicz                                            sensorAsyncResp->chassisSubNode ==
2831a0ec28b6SAdrian Ambrożewicz                                                    sensors::node::thermal
2832413961deSRichard Marian Thomaiyar                                                ? "Temperatures"
2833413961deSRichard Marian Thomaiyar                                                : "Voltages",
2834f65af9e8SRichard Marian Thomaiyar                                            "Count");
2835f65af9e8SRichard Marian Thomaiyar                 return;
2836f65af9e8SRichard Marian Thomaiyar             }
2837f65af9e8SRichard Marian Thomaiyar             for (const auto& item : objectsWithConnection)
2838f65af9e8SRichard Marian Thomaiyar             {
283928aa8de5SGeorge Liu                 sdbusplus::message::object_path path(item.first);
284028aa8de5SGeorge Liu                 std::string sensorName = path.filename();
284128aa8de5SGeorge Liu                 if (sensorName.empty())
2842f65af9e8SRichard Marian Thomaiyar                 {
28434f277b54SJayaprakash Mutyala                     messages::internalError(sensorAsyncResp->asyncResp->res);
2844f65af9e8SRichard Marian Thomaiyar                     return;
2845f65af9e8SRichard Marian Thomaiyar                 }
2846f65af9e8SRichard Marian Thomaiyar 
2847f65af9e8SRichard Marian Thomaiyar                 const auto& iterator = overrideMap.find(sensorName);
2848f65af9e8SRichard Marian Thomaiyar                 if (iterator == overrideMap.end())
2849f65af9e8SRichard Marian Thomaiyar                 {
2850f65af9e8SRichard Marian Thomaiyar                     BMCWEB_LOG_INFO << "Unable to find sensor object"
2851f65af9e8SRichard Marian Thomaiyar                                     << item.first << "\n";
28524f277b54SJayaprakash Mutyala                     messages::internalError(sensorAsyncResp->asyncResp->res);
2853413961deSRichard Marian Thomaiyar                     return;
2854413961deSRichard Marian Thomaiyar                 }
2855413961deSRichard Marian Thomaiyar                 crow::connections::systemBus->async_method_call(
2856f65af9e8SRichard Marian Thomaiyar                     [sensorAsyncResp](const boost::system::error_code ec) {
2857413961deSRichard Marian Thomaiyar                         if (ec)
2858413961deSRichard Marian Thomaiyar                         {
28594f277b54SJayaprakash Mutyala                             if (ec.value() ==
28604f277b54SJayaprakash Mutyala                                 boost::system::errc::permission_denied)
28614f277b54SJayaprakash Mutyala                             {
28624f277b54SJayaprakash Mutyala                                 BMCWEB_LOG_WARNING
28634f277b54SJayaprakash Mutyala                                     << "Manufacturing mode is not Enabled...can't "
28644f277b54SJayaprakash Mutyala                                        "Override the sensor value. ";
28654f277b54SJayaprakash Mutyala 
28664f277b54SJayaprakash Mutyala                                 messages::insufficientPrivilege(
28678d1b46d7Szhanghch05                                     sensorAsyncResp->asyncResp->res);
2868413961deSRichard Marian Thomaiyar                                 return;
2869413961deSRichard Marian Thomaiyar                             }
28704f277b54SJayaprakash Mutyala                             BMCWEB_LOG_DEBUG
28714f277b54SJayaprakash Mutyala                                 << "setOverrideValueStatus DBUS error: " << ec;
28724f277b54SJayaprakash Mutyala                             messages::internalError(
28734f277b54SJayaprakash Mutyala                                 sensorAsyncResp->asyncResp->res);
28744f277b54SJayaprakash Mutyala                         }
2875413961deSRichard Marian Thomaiyar                     },
28764f277b54SJayaprakash Mutyala                     item.second, item.first, "org.freedesktop.DBus.Properties",
28774f277b54SJayaprakash Mutyala                     "Set", "xyz.openbmc_project.Sensor.Value", "Value",
2878168e20c1SEd Tanous                     dbus::utility::DbusVariantType(iterator->second.first));
2879f65af9e8SRichard Marian Thomaiyar             }
2880413961deSRichard Marian Thomaiyar         };
2881413961deSRichard Marian Thomaiyar         // Get object with connection for the given sensor name
2882413961deSRichard Marian Thomaiyar         getObjectsWithConnection(sensorAsyncResp, sensorNames,
2883413961deSRichard Marian Thomaiyar                                  std::move(getObjectsWithConnectionCb));
2884413961deSRichard Marian Thomaiyar     };
2885413961deSRichard Marian Thomaiyar     // get full sensor list for the given chassisId and cross verify the sensor.
2886413961deSRichard Marian Thomaiyar     getChassis(sensorAsyncResp, std::move(getChassisSensorListCb));
2887413961deSRichard Marian Thomaiyar }
2888413961deSRichard Marian Thomaiyar 
2889a0ec28b6SAdrian Ambrożewicz /**
2890a0ec28b6SAdrian Ambrożewicz  * @brief Retrieves mapping of Redfish URIs to sensor value property to D-Bus
2891a0ec28b6SAdrian Ambrożewicz  * path of the sensor.
2892a0ec28b6SAdrian Ambrożewicz  *
2893a0ec28b6SAdrian Ambrożewicz  * Function builds valid Redfish response for sensor query of given chassis and
2894a0ec28b6SAdrian Ambrożewicz  * node. It then builds metadata about Redfish<->D-Bus correlations and provides
2895a0ec28b6SAdrian Ambrożewicz  * it to caller in a callback.
2896a0ec28b6SAdrian Ambrożewicz  *
2897a0ec28b6SAdrian Ambrożewicz  * @param chassis   Chassis for which retrieval should be performed
2898a0ec28b6SAdrian Ambrożewicz  * @param node  Node (group) of sensors. See sensors::node for supported values
2899a0ec28b6SAdrian Ambrożewicz  * @param mapComplete   Callback to be called with retrieval result
2900a0ec28b6SAdrian Ambrożewicz  */
2901021d32cfSKrzysztof Grobelny inline void retrieveUriToDbusMap(const std::string& chassis,
2902021d32cfSKrzysztof Grobelny                                  const std::string& node,
2903a0ec28b6SAdrian Ambrożewicz                                  SensorsAsyncResp::DataCompleteCb&& mapComplete)
2904a0ec28b6SAdrian Ambrożewicz {
2905c2bf7f99SWludzik, Jozef     auto pathIt = sensors::dbus::paths.find(node);
2906c2bf7f99SWludzik, Jozef     if (pathIt == sensors::dbus::paths.end())
2907a0ec28b6SAdrian Ambrożewicz     {
2908a0ec28b6SAdrian Ambrożewicz         BMCWEB_LOG_ERROR << "Wrong node provided : " << node;
2909a0ec28b6SAdrian Ambrożewicz         mapComplete(boost::beast::http::status::bad_request, {});
2910a0ec28b6SAdrian Ambrożewicz         return;
2911a0ec28b6SAdrian Ambrożewicz     }
2912d51e072fSKrzysztof Grobelny 
2913*72374eb7SNan Zhou     auto asyncResp = std::make_shared<bmcweb::AsyncResp>();
2914a0ec28b6SAdrian Ambrożewicz     auto callback =
2915*72374eb7SNan Zhou         [asyncResp, mapCompleteCb{std::move(mapComplete)}](
2916a0ec28b6SAdrian Ambrożewicz             const boost::beast::http::status status,
2917a0ec28b6SAdrian Ambrożewicz             const boost::container::flat_map<std::string, std::string>&
2918a0ec28b6SAdrian Ambrożewicz                 uriToDbus) { mapCompleteCb(status, uriToDbus); };
2919a0ec28b6SAdrian Ambrożewicz 
2920a0ec28b6SAdrian Ambrożewicz     auto resp = std::make_shared<SensorsAsyncResp>(
2921d51e072fSKrzysztof Grobelny         asyncResp, chassis, pathIt->second, node, std::move(callback));
2922a0ec28b6SAdrian Ambrożewicz     getChassisData(resp);
2923a0ec28b6SAdrian Ambrożewicz }
2924a0ec28b6SAdrian Ambrożewicz 
29257e860f15SJohn Edward Broadbent inline void requestRoutesSensorCollection(App& app)
292695a3ecadSAnthony Wilson {
29277e860f15SJohn Edward Broadbent     BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/Sensors/")
2928ed398213SEd Tanous         .privileges(redfish::privileges::getSensorCollection)
29297e860f15SJohn Edward Broadbent         .methods(
29307e860f15SJohn Edward Broadbent             boost::beast::http::verb::get)([](const crow::Request&,
29317e860f15SJohn Edward Broadbent                                               const std::shared_ptr<
29327e860f15SJohn Edward Broadbent                                                   bmcweb::AsyncResp>& aResp,
29337e860f15SJohn Edward Broadbent                                               const std::string& chassisId) {
293495a3ecadSAnthony Wilson             BMCWEB_LOG_DEBUG << "SensorCollection doGet enter";
29358d1b46d7Szhanghch05 
293695a3ecadSAnthony Wilson             std::shared_ptr<SensorsAsyncResp> asyncResp =
2937a0ec28b6SAdrian Ambrożewicz                 std::make_shared<SensorsAsyncResp>(
29388d1b46d7Szhanghch05                     aResp, chassisId,
29398d1b46d7Szhanghch05                     sensors::dbus::paths.at(sensors::node::sensors),
2940a0ec28b6SAdrian Ambrożewicz                     sensors::node::sensors);
294195a3ecadSAnthony Wilson 
294295a3ecadSAnthony Wilson             auto getChassisCb =
2943b5a76932SEd Tanous                 [asyncResp](
29447e860f15SJohn Edward Broadbent                     const std::shared_ptr<
29457e860f15SJohn Edward Broadbent                         boost::container::flat_set<std::string>>& sensorNames) {
294695a3ecadSAnthony Wilson                     BMCWEB_LOG_DEBUG << "getChassisCb enter";
294795a3ecadSAnthony Wilson 
294895a3ecadSAnthony Wilson                     nlohmann::json& entriesArray =
29498d1b46d7Szhanghch05                         asyncResp->asyncResp->res.jsonValue["Members"];
295095a3ecadSAnthony Wilson                     for (auto& sensor : *sensorNames)
295195a3ecadSAnthony Wilson                     {
295295a3ecadSAnthony Wilson                         BMCWEB_LOG_DEBUG << "Adding sensor: " << sensor;
295395a3ecadSAnthony Wilson 
295428aa8de5SGeorge Liu                         sdbusplus::message::object_path path(sensor);
295528aa8de5SGeorge Liu                         std::string sensorName = path.filename();
295628aa8de5SGeorge Liu                         if (sensorName.empty())
295795a3ecadSAnthony Wilson                         {
29587e860f15SJohn Edward Broadbent                             BMCWEB_LOG_ERROR << "Invalid sensor path: "
29597e860f15SJohn Edward Broadbent                                              << sensor;
29608d1b46d7Szhanghch05                             messages::internalError(asyncResp->asyncResp->res);
296195a3ecadSAnthony Wilson                             return;
296295a3ecadSAnthony Wilson                         }
296395a3ecadSAnthony Wilson                         entriesArray.push_back(
29647e860f15SJohn Edward Broadbent                             {{"@odata.id", "/redfish/v1/Chassis/" +
29657e860f15SJohn Edward Broadbent                                                asyncResp->chassisId + "/" +
29667e860f15SJohn Edward Broadbent                                                asyncResp->chassisSubNode + "/" +
29677e860f15SJohn Edward Broadbent                                                sensorName}});
296895a3ecadSAnthony Wilson                     }
296995a3ecadSAnthony Wilson 
29708d1b46d7Szhanghch05                     asyncResp->asyncResp->res.jsonValue["Members@odata.count"] =
297195a3ecadSAnthony Wilson                         entriesArray.size();
297295a3ecadSAnthony Wilson                     BMCWEB_LOG_DEBUG << "getChassisCb exit";
297395a3ecadSAnthony Wilson                 };
297495a3ecadSAnthony Wilson 
297595a3ecadSAnthony Wilson             // Get set of sensors in chassis
297695a3ecadSAnthony Wilson             getChassis(asyncResp, std::move(getChassisCb));
297795a3ecadSAnthony Wilson             BMCWEB_LOG_DEBUG << "SensorCollection doGet exit";
29787e860f15SJohn Edward Broadbent         });
297995a3ecadSAnthony Wilson }
298095a3ecadSAnthony Wilson 
29817e860f15SJohn Edward Broadbent inline void requestRoutesSensor(App& app)
298295a3ecadSAnthony Wilson {
29837e860f15SJohn Edward Broadbent     BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/Sensors/<str>/")
2984ed398213SEd Tanous         .privileges(redfish::privileges::getSensor)
29857e860f15SJohn Edward Broadbent         .methods(
29867e860f15SJohn Edward Broadbent             boost::beast::http::verb::get)([](const crow::Request&,
29877e860f15SJohn Edward Broadbent                                               const std::shared_ptr<
29887e860f15SJohn Edward Broadbent                                                   bmcweb::AsyncResp>& aResp,
29897e860f15SJohn Edward Broadbent                                               const std::string& chassisId,
29907e860f15SJohn Edward Broadbent                                               const std::string& sensorName) {
299195a3ecadSAnthony Wilson             BMCWEB_LOG_DEBUG << "Sensor doGet enter";
299295a3ecadSAnthony Wilson             std::shared_ptr<SensorsAsyncResp> asyncResp =
29938d1b46d7Szhanghch05                 std::make_shared<SensorsAsyncResp>(aResp, chassisId,
2994a0ec28b6SAdrian Ambrożewicz                                                    std::vector<const char*>(),
2995a0ec28b6SAdrian Ambrożewicz                                                    sensors::node::sensors);
299695a3ecadSAnthony Wilson 
299795a3ecadSAnthony Wilson             const std::array<const char*, 1> interfaces = {
299895a3ecadSAnthony Wilson                 "xyz.openbmc_project.Sensor.Value"};
299995a3ecadSAnthony Wilson 
300095a3ecadSAnthony Wilson             // Get a list of all of the sensors that implement Sensor.Value
300195a3ecadSAnthony Wilson             // and get the path and service name associated with the sensor
300295a3ecadSAnthony Wilson             crow::connections::systemBus->async_method_call(
300395a3ecadSAnthony Wilson                 [asyncResp, sensorName](const boost::system::error_code ec,
300495a3ecadSAnthony Wilson                                         const GetSubTreeType& subtree) {
300595a3ecadSAnthony Wilson                     BMCWEB_LOG_DEBUG << "respHandler1 enter";
300695a3ecadSAnthony Wilson                     if (ec)
300795a3ecadSAnthony Wilson                     {
30088d1b46d7Szhanghch05                         messages::internalError(asyncResp->asyncResp->res);
30097e860f15SJohn Edward Broadbent                         BMCWEB_LOG_ERROR
30107e860f15SJohn Edward Broadbent                             << "Sensor getSensorPaths resp_handler: "
301195a3ecadSAnthony Wilson                             << "Dbus error " << ec;
301295a3ecadSAnthony Wilson                         return;
301395a3ecadSAnthony Wilson                     }
301495a3ecadSAnthony Wilson 
301595a3ecadSAnthony Wilson                     GetSubTreeType::const_iterator it = std::find_if(
301695a3ecadSAnthony Wilson                         subtree.begin(), subtree.end(),
301795a3ecadSAnthony Wilson                         [sensorName](
301895a3ecadSAnthony Wilson                             const std::pair<
301995a3ecadSAnthony Wilson                                 std::string,
30207e860f15SJohn Edward Broadbent                                 std::vector<std::pair<
30217e860f15SJohn Edward Broadbent                                     std::string, std::vector<std::string>>>>&
302295a3ecadSAnthony Wilson                                 object) {
302328aa8de5SGeorge Liu                             sdbusplus::message::object_path path(object.first);
302428aa8de5SGeorge Liu                             std::string name = path.filename();
302528aa8de5SGeorge Liu                             if (name.empty())
302695a3ecadSAnthony Wilson                             {
302795a3ecadSAnthony Wilson                                 BMCWEB_LOG_ERROR << "Invalid sensor path: "
302828aa8de5SGeorge Liu                                                  << object.first;
302995a3ecadSAnthony Wilson                                 return false;
303095a3ecadSAnthony Wilson                             }
303195a3ecadSAnthony Wilson 
303295a3ecadSAnthony Wilson                             return name == sensorName;
303395a3ecadSAnthony Wilson                         });
303495a3ecadSAnthony Wilson 
303595a3ecadSAnthony Wilson                     if (it == subtree.end())
303695a3ecadSAnthony Wilson                     {
303795a3ecadSAnthony Wilson                         BMCWEB_LOG_ERROR << "Could not find path for sensor: "
303895a3ecadSAnthony Wilson                                          << sensorName;
30398d1b46d7Szhanghch05                         messages::resourceNotFound(asyncResp->asyncResp->res,
30408d1b46d7Szhanghch05                                                    "Sensor", sensorName);
304195a3ecadSAnthony Wilson                         return;
304295a3ecadSAnthony Wilson                     }
304395a3ecadSAnthony Wilson                     std::string_view sensorPath = (*it).first;
304495a3ecadSAnthony Wilson                     BMCWEB_LOG_DEBUG << "Found sensor path for sensor '"
304595a3ecadSAnthony Wilson                                      << sensorName << "': " << sensorPath;
304695a3ecadSAnthony Wilson 
30477e860f15SJohn Edward Broadbent                     const std::shared_ptr<
30487e860f15SJohn Edward Broadbent                         boost::container::flat_set<std::string>>
304995a3ecadSAnthony Wilson                         sensorList = std::make_shared<
305095a3ecadSAnthony Wilson                             boost::container::flat_set<std::string>>();
305195a3ecadSAnthony Wilson 
305295a3ecadSAnthony Wilson                     sensorList->emplace(sensorPath);
305395a3ecadSAnthony Wilson                     processSensorList(asyncResp, sensorList);
305495a3ecadSAnthony Wilson                     BMCWEB_LOG_DEBUG << "respHandler1 exit";
305595a3ecadSAnthony Wilson                 },
305695a3ecadSAnthony Wilson                 "xyz.openbmc_project.ObjectMapper",
305795a3ecadSAnthony Wilson                 "/xyz/openbmc_project/object_mapper",
305895a3ecadSAnthony Wilson                 "xyz.openbmc_project.ObjectMapper", "GetSubTree",
305995a3ecadSAnthony Wilson                 "/xyz/openbmc_project/sensors", 2, interfaces);
30607e860f15SJohn Edward Broadbent         });
306195a3ecadSAnthony Wilson }
306295a3ecadSAnthony Wilson 
306308777fb0SLewanczyk, Dawid } // namespace redfish
3064