blob: 44630692fee0d7794bd66972bb81d8ed77c7c35d [file] [log] [blame]
Sampa Misra032bd502019-03-06 05:03:22 -06001#pragma once
2
Sampa Misraaea5dde2020-08-31 08:33:47 -05003#include "types.hpp"
4
George Liuc453e162022-12-21 17:16:23 +08005#include <libpldm/base.h>
6#include <libpldm/bios.h>
George Liudf9a6d32020-12-22 16:27:16 +08007#include <libpldm/entity.h>
8#include <libpldm/pdr.h>
George Liuc453e162022-12-21 17:16:23 +08009#include <libpldm/platform.h>
10#include <libpldm/utils.h>
Sampa Misra032bd502019-03-06 05:03:22 -060011#include <stdint.h>
12#include <systemd/sd-bus.h>
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050013#include <unistd.h>
Sampa Misra032bd502019-03-06 05:03:22 -060014
George Liu6492f522020-06-16 10:34:05 +080015#include <nlohmann/json.hpp>
16#include <sdbusplus/server.hpp>
Riya Dixit754041d2024-02-20 06:15:49 -060017#include <xyz/openbmc_project/Inventory/Manager/client.hpp>
George Liu6492f522020-06-16 10:34:05 +080018#include <xyz/openbmc_project/Logging/Entry/server.hpp>
19
George Liudf9a6d32020-12-22 16:27:16 +080020#include <deque>
Sampa Misraa2fa0702019-05-31 01:28:55 -050021#include <exception>
Deepak Kodihalli3cd61812020-03-10 06:38:45 -050022#include <filesystem>
Sampa Misraaa8ae722019-12-12 03:20:40 -060023#include <iostream>
George Liudf9a6d32020-12-22 16:27:16 +080024#include <map>
Sampa Misra032bd502019-03-06 05:03:22 -060025#include <string>
Sampa Misraa2fa0702019-05-31 01:28:55 -050026#include <variant>
27#include <vector>
Sampa Misra032bd502019-03-06 05:03:22 -060028
vkaverap@in.ibm.com5b71b862023-08-21 05:19:04 +000029constexpr uint64_t dbusTimeout =
30 std::chrono::duration_cast<std::chrono::microseconds>(
31 std::chrono::seconds(DBUS_TIMEOUT))
32 .count();
33
Sampa Misra032bd502019-03-06 05:03:22 -060034namespace pldm
35{
Pavithra Barithayad28f08c2021-12-15 03:37:14 -060036using Severity = pldm::PelSeverity;
37
38// mapping of severity enum to severity interface
39static std::unordered_map<Severity, std::string> sevMap = {
40 {Severity::Informational,
41 "xyz.openbmc_project.Logging.Entry.Level.Informational"},
42 {Severity::Debug, "xyz.openbmc_project.Logging.Entry.Level.Debug"},
43 {Severity::Notice, "xyz.openbmc_project.Logging.Entry.Level.Notice"},
44 {Severity::Warning, "xyz.openbmc_project.Logging.Entry.Level.Warning"},
45 {Severity::Critical, "xyz.openbmc_project.Logging.Entry.Level.Critical"},
46 {Severity::Emergency, "xyz.openbmc_project.Logging.Entry.Level.Emergency"},
47 {Severity::Error, "xyz.openbmc_project.Logging.Entry.Level.Error"},
48 {Severity::Alert, "xyz.openbmc_project.Logging.Entry.Level.Alert"}};
49
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050050namespace utils
51{
Deepak Kodihalli3cd61812020-03-10 06:38:45 -050052namespace fs = std::filesystem;
Tom Joseph250c4752020-04-15 10:32:45 +053053using Json = nlohmann::json;
Tom Josephe5268cd2021-09-07 13:04:03 +053054constexpr bool Tx = true;
55constexpr bool Rx = false;
Deepak Kodihalli3cd61812020-03-10 06:38:45 -050056
George Liudf9a6d32020-12-22 16:27:16 +080057using EntityName = std::string;
58using EntityType = uint16_t;
59
60using Entities = std::vector<pldm_entity_node*>;
61using EntityAssociations = std::vector<Entities>;
62using ObjectPathMaps = std::map<fs::path, pldm_entity_node*>;
63
64const std::map<EntityType, EntityName> entityMaps = {
65 {PLDM_ENTITY_SYSTEM_CHASSIS, "chassis"},
66 {PLDM_ENTITY_BOARD, "io_board"},
67 {PLDM_ENTITY_SYS_BOARD, "motherboard"},
68 {PLDM_ENTITY_POWER_SUPPLY, "powersupply"},
69 {PLDM_ENTITY_PROC, "cpu"},
70 {PLDM_ENTITY_SYSTEM_CHASSIS | 0x8000, "system"},
71 {PLDM_ENTITY_PROC_MODULE, "dcm"},
72 {PLDM_ENTITY_PROC | 0x8000, "core"},
73 {PLDM_ENTITY_IO_MODULE, "io_module"},
74 {PLDM_ENTITY_FAN, "fan"},
75 {PLDM_ENTITY_SYS_MGMT_MODULE, "system_management_module"},
76 {PLDM_ENTITY_POWER_CONVERTER, "power_converter"},
77 {PLDM_ENTITY_SLOT, "slot"},
78 {PLDM_ENTITY_CONNECTOR, "connector"}};
79
80/** @brief Vector a entity name to pldm_entity from entity association tree
81 * @param[in] entityAssoc - Vector of associated pldm entities
82 * @param[in] entityTree - entity association tree
83 * @param[out] objPathMap - maps an object path to pldm_entity from the
84 * BMC's entity association tree
85 * @return
86 */
87void updateEntityAssociation(const EntityAssociations& entityAssoc,
88 pldm_entity_association_tree* entityTree,
89 ObjectPathMaps& objPathMap);
90
Jinu Joy Thomasf666db12019-05-29 05:22:31 -050091/** @struct CustomFD
92 *
93 * RAII wrapper for file descriptor.
94 */
95struct CustomFD
96{
97 CustomFD(const CustomFD&) = delete;
98 CustomFD& operator=(const CustomFD&) = delete;
99 CustomFD(CustomFD&&) = delete;
100 CustomFD& operator=(CustomFD&&) = delete;
101
Patrick Williams6da4f912023-05-10 07:50:53 -0500102 CustomFD(int fd) : fd(fd) {}
Jinu Joy Thomasf666db12019-05-29 05:22:31 -0500103
104 ~CustomFD()
105 {
106 if (fd >= 0)
107 {
108 close(fd);
109 }
110 }
111
112 int operator()() const
113 {
114 return fd;
115 }
116
117 private:
118 int fd = -1;
119};
120
Sampa Misrab37be312019-07-03 02:26:41 -0500121/** @brief Calculate the pad for PLDM data
122 *
123 * @param[in] data - Length of the data
124 * @return - uint8_t - number of pad bytes
125 */
126uint8_t getNumPadBytes(uint32_t data);
127
George Liu83409572019-12-24 18:42:54 +0800128/** @brief Convert uint64 to date
129 *
130 * @param[in] data - time date of uint64
131 * @param[out] year - year number in dec
132 * @param[out] month - month number in dec
133 * @param[out] day - day of the month in dec
134 * @param[out] hour - number of hours in dec
135 * @param[out] min - number of minutes in dec
136 * @param[out] sec - number of seconds in dec
137 * @return true if decode success, false if decode faild
138 */
139bool uintToDate(uint64_t data, uint16_t* year, uint8_t* month, uint8_t* day,
140 uint8_t* hour, uint8_t* min, uint8_t* sec);
141
142/** @brief Convert effecter data to structure of set_effecter_state_field
143 *
144 * @param[in] effecterData - the date of effecter
George Liuba4c1fb2020-02-05 14:13:30 +0800145 * @param[in] effecterCount - the number of individual sets of effecter
146 * information
147 * @return[out] parse success and get a valid set_effecter_state_field
148 * structure, return nullopt means parse failed
George Liu83409572019-12-24 18:42:54 +0800149 */
George Liuba4c1fb2020-02-05 14:13:30 +0800150std::optional<std::vector<set_effecter_state_field>>
151 parseEffecterData(const std::vector<uint8_t>& effecterData,
152 uint8_t effecterCount);
Sampa Misra032bd502019-03-06 05:03:22 -0600153
154/**
Sampa Misraaa8ae722019-12-12 03:20:40 -0600155 * @brief creates an error log
156 * @param[in] errorMsg - the error message
Pavithra Barithayad28f08c2021-12-15 03:37:14 -0600157 * @param[in] sev - severity of the log
158 *
Sampa Misraaa8ae722019-12-12 03:20:40 -0600159 */
Pavithra Barithayad28f08c2021-12-15 03:37:14 -0600160void reportError(const char* errorMsg,
161 const PelSeverity& sev = pldm::PelSeverity::Error);
Sampa Misraaa8ae722019-12-12 03:20:40 -0600162
Sampa Misra032bd502019-03-06 05:03:22 -0600163/** @brief Convert any Decimal number to BCD
164 *
165 * @tparam[in] decimal - Decimal number
166 * @return Corresponding BCD number
167 */
168template <typename T>
169T decimalToBcd(T decimal)
170{
171 T bcd = 0;
172 T rem = 0;
173 auto cnt = 0;
174
175 while (decimal)
176 {
177 rem = decimal % 10;
178 bcd = bcd + (rem << cnt);
179 decimal = decimal / 10;
180 cnt += 4;
181 }
182
183 return bcd;
184}
185
Riya Dixit754041d2024-02-20 06:15:49 -0600186using inventoryManager =
187 sdbusplus::client::xyz::openbmc_project::inventory::Manager<>;
188
Sampa Misraa2fa0702019-05-31 01:28:55 -0500189constexpr auto dbusProperties = "org.freedesktop.DBus.Properties";
Pavithra Barithaya47180ac2020-10-28 02:12:05 -0500190constexpr auto mapperService = "xyz.openbmc_project.ObjectMapper";
Riya Dixit754041d2024-02-20 06:15:49 -0600191constexpr auto inventoryPath = "/xyz/openbmc_project/inventory";
Sampa Misraa2fa0702019-05-31 01:28:55 -0500192
George Liu1e44c732020-02-28 20:20:06 +0800193struct DBusMapping
194{
195 std::string objectPath; //!< D-Bus object path
196 std::string interface; //!< D-Bus interface
197 std::string propertyName; //!< D-Bus property name
198 std::string propertyType; //!< D-Bus property type
199};
200
201using PropertyValue =
202 std::variant<bool, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t,
Riya Dixit754041d2024-02-20 06:15:49 -0600203 uint64_t, double, std::string, std::vector<uint8_t>,
204 std::vector<std::string>>;
Deepak Kodihalli6b1d1ca2020-04-27 07:24:51 -0500205using DbusProp = std::string;
206using DbusChangedProps = std::map<DbusProp, PropertyValue>;
Sampa Misraaea5dde2020-08-31 08:33:47 -0500207using DBusInterfaceAdded = std::vector<
208 std::pair<pldm::dbus::Interface,
209 std::vector<std::pair<pldm::dbus::Property,
210 std::variant<pldm::dbus::Property>>>>>;
Manojkiran Eda1ef62c32021-04-24 07:23:18 +0530211using ObjectPath = std::string;
212using ServiceName = std::string;
213using Interfaces = std::vector<std::string>;
214using MapperServiceMap = std::vector<std::pair<ServiceName, Interfaces>>;
215using GetSubTreeResponse = std::vector<std::pair<ObjectPath, MapperServiceMap>>;
Sridevi Ramesheefe49b2022-06-27 11:51:02 -0500216using PropertyMap = std::map<std::string, PropertyValue>;
217using InterfaceMap = std::map<std::string, PropertyMap>;
Riya Dixit754041d2024-02-20 06:15:49 -0600218using ObjectValueTree = std::map<sdbusplus::message::object_path, InterfaceMap>;
George Liu1e44c732020-02-28 20:20:06 +0800219
220/**
221 * @brief The interface for DBusHandler
222 */
223class DBusHandlerInterface
224{
225 public:
226 virtual ~DBusHandlerInterface() = default;
227
George Liu36e81352020-07-01 14:40:30 +0800228 virtual std::string getService(const char* path,
229 const char* interface) const = 0;
Manojkiran Eda1ef62c32021-04-24 07:23:18 +0530230 virtual GetSubTreeResponse
231 getSubtree(const std::string& path, int depth,
232 const std::vector<std::string>& ifaceList) const = 0;
George Liu36e81352020-07-01 14:40:30 +0800233
George Liu1e44c732020-02-28 20:20:06 +0800234 virtual void setDbusProperty(const DBusMapping& dBusMap,
235 const PropertyValue& value) const = 0;
John Wang9e242422020-03-05 08:37:50 +0800236
237 virtual PropertyValue
238 getDbusPropertyVariant(const char* objPath, const char* dbusProp,
239 const char* dbusInterface) const = 0;
George Liu1e44c732020-02-28 20:20:06 +0800240};
241
Sampa Misraa2fa0702019-05-31 01:28:55 -0500242/**
243 * @class DBusHandler
244 *
245 * Wrapper class to handle the D-Bus calls
246 *
247 * This class contains the APIs to handle the D-Bus calls
248 * to cater the request from pldm requester.
249 * A class is created to mock the apis in the test cases
250 */
George Liu1e44c732020-02-28 20:20:06 +0800251class DBusHandler : public DBusHandlerInterface
Sampa Misraa2fa0702019-05-31 01:28:55 -0500252{
253 public:
George Liu0e02c322020-01-01 09:41:51 +0800254 /** @brief Get the bus connection. */
255 static auto& getBus()
256 {
257 static auto bus = sdbusplus::bus::new_default();
258 return bus;
259 }
260
261 /**
262 * @brief Get the DBUS Service name for the input dbus path
John Wang9e242422020-03-05 08:37:50 +0800263 *
George Liu0e02c322020-01-01 09:41:51 +0800264 * @param[in] path - DBUS object path
265 * @param[in] interface - DBUS Interface
John Wang9e242422020-03-05 08:37:50 +0800266 *
George Liu0e02c322020-01-01 09:41:51 +0800267 * @return std::string - the dbus service name
John Wang9e242422020-03-05 08:37:50 +0800268 *
Patrick Williams84b790c2022-07-22 19:26:56 -0500269 * @throw sdbusplus::exception_t when it fails
George Liu0e02c322020-01-01 09:41:51 +0800270 */
George Liu36e81352020-07-01 14:40:30 +0800271 std::string getService(const char* path,
272 const char* interface) const override;
George Liu0e02c322020-01-01 09:41:51 +0800273
Manojkiran Eda1ef62c32021-04-24 07:23:18 +0530274 /**
275 * @brief Get the Subtree response from the mapper
276 *
277 * @param[in] path - DBUS object path
278 * @param[in] depth - Search depth
279 * @param[in] ifaceList - list of the interface that are being
280 * queried from the mapper
281 *
282 * @return GetSubTreeResponse - the mapper subtree response
283 *
Patrick Williams84b790c2022-07-22 19:26:56 -0500284 * @throw sdbusplus::exception_t when it fails
Manojkiran Eda1ef62c32021-04-24 07:23:18 +0530285 */
286 GetSubTreeResponse
287 getSubtree(const std::string& path, int depth,
288 const std::vector<std::string>& ifaceList) const override;
289
John Wang9e242422020-03-05 08:37:50 +0800290 /** @brief Get property(type: variant) from the requested dbus
291 *
292 * @param[in] objPath - The Dbus object path
293 * @param[in] dbusProp - The property name to get
294 * @param[in] dbusInterface - The Dbus interface
295 *
296 * @return The value of the property(type: variant)
297 *
Patrick Williams84b790c2022-07-22 19:26:56 -0500298 * @throw sdbusplus::exception_t when it fails
John Wang9e242422020-03-05 08:37:50 +0800299 */
300 PropertyValue
301 getDbusPropertyVariant(const char* objPath, const char* dbusProp,
302 const char* dbusInterface) const override;
George Liu0e02c322020-01-01 09:41:51 +0800303
John Wang9e242422020-03-05 08:37:50 +0800304 /** @brief The template function to get property from the requested dbus
305 * path
306 *
307 * @tparam Property - Excepted type of the property on dbus
308 *
309 * @param[in] objPath - The Dbus object path
310 * @param[in] dbusProp - The property name to get
311 * @param[in] dbusInterface - The Dbus interface
312 *
313 * @return The value of the property
314 *
Patrick Williams84b790c2022-07-22 19:26:56 -0500315 * @throw sdbusplus::exception_t when dbus request fails
John Wang9e242422020-03-05 08:37:50 +0800316 * std::bad_variant_access when \p Property and property on dbus do
317 * not match
318 */
John Wang92b3c972019-10-17 11:06:41 +0800319 template <typename Property>
320 auto getDbusProperty(const char* objPath, const char* dbusProp,
321 const char* dbusInterface)
322 {
Patrick Williams6da4f912023-05-10 07:50:53 -0500323 auto VariantValue = getDbusPropertyVariant(objPath, dbusProp,
324 dbusInterface);
John Wang92b3c972019-10-17 11:06:41 +0800325 return std::get<Property>(VariantValue);
326 }
George Liu1e44c732020-02-28 20:20:06 +0800327
328 /** @brief Set Dbus property
329 *
330 * @param[in] dBusMap - Object path, property name, interface and property
331 * type for the D-Bus object
332 * @param[in] value - The value to be set
John Wang9e242422020-03-05 08:37:50 +0800333 *
Patrick Williams84b790c2022-07-22 19:26:56 -0500334 * @throw sdbusplus::exception_t when it fails
George Liu1e44c732020-02-28 20:20:06 +0800335 */
336 void setDbusProperty(const DBusMapping& dBusMap,
337 const PropertyValue& value) const override;
Riya Dixit754041d2024-02-20 06:15:49 -0600338
339 /** @brief This function retrieves the properties of an object managed
340 * by the specified D-Bus service located at the given object path.
341 *
342 * @param[in] service - The D-Bus service providing the managed object
343 * @param[in] value - The object path of the managed object
344 *
345 * @return A hierarchical structure representing the properties of the
346 * managed object.
Patrick Williams897b0f82024-04-14 02:31:48 -0500347 * @throw sdbusplus::exception_t when it fails
Riya Dixit754041d2024-02-20 06:15:49 -0600348 */
349 static ObjectValueTree getManagedObj(const char* service, const char* path);
350
351 /** @brief Retrieve the inventory objects managed by a specified class.
352 * The retrieved inventory objects are cached statically
353 * and returned upon subsequent calls to this function.
354 *
355 * @tparam ClassType - The class type that manages the inventory objects.
356 *
357 * @return A reference to the cached inventory objects.
358 */
359 template <typename ClassType>
360 static auto& getInventoryObjects()
361 {
362 static ObjectValueTree object = ClassType::getManagedObj(
363 inventoryManager::interface, inventoryPath);
364 return object;
365 }
Sampa Misraa2fa0702019-05-31 01:28:55 -0500366};
367
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500368/** @brief Fetch parent D-Bus object based on pathname
369 *
370 * @param[in] dbusObj - child D-Bus object
371 *
372 * @return std::string - the parent D-Bus object path
373 */
374inline std::string findParent(const std::string& dbusObj)
375{
376 fs::path p(dbusObj);
377 return p.parent_path().string();
378}
379
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500380/** @brief Read (static) MCTP EID of host firmware from a file
381 *
382 * @return uint8_t - MCTP EID
383 */
384uint8_t readHostEID();
Tom Joseph250c4752020-04-15 10:32:45 +0530385
TOM JOSEPHd4d97a52020-03-23 14:36:34 +0530386/** @brief Convert a value in the JSON to a D-Bus property value
387 *
388 * @param[in] type - type of the D-Bus property
389 * @param[in] value - value in the JSON file
390 *
391 * @return PropertyValue - the D-Bus property value
392 */
393PropertyValue jsonEntryToDbusVal(std::string_view type,
394 const nlohmann::json& value);
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500395
Pavithra Barithaya0f74c982020-04-27 02:17:10 -0500396/** @brief Find State Effecter PDR
397 * @param[in] tid - PLDM terminus ID.
398 * @param[in] entityID - entity that can be associated with PLDM State set.
399 * @param[in] stateSetId - value that identifies PLDM State set.
400 * @param[in] repo - pointer to BMC's primary PDR repo.
401 * @return array[array[uint8_t]] - StateEffecterPDRs
402 */
403std::vector<std::vector<uint8_t>> findStateEffecterPDR(uint8_t tid,
404 uint16_t entityID,
405 uint16_t stateSetId,
406 const pldm_pdr* repo);
Chicago Duan738e4d82020-05-28 16:39:19 +0800407/** @brief Find State Sensor PDR
408 * @param[in] tid - PLDM terminus ID.
409 * @param[in] entityID - entity that can be associated with PLDM State set.
410 * @param[in] stateSetId - value that identifies PLDM State set.
411 * @param[in] repo - pointer to BMC's primary PDR repo.
412 * @return array[array[uint8_t]] - StateSensorPDRs
413 */
414std::vector<std::vector<uint8_t>> findStateSensorPDR(uint8_t tid,
415 uint16_t entityID,
416 uint16_t stateSetId,
417 const pldm_pdr* repo);
Pavithra Barithaya0f74c982020-04-27 02:17:10 -0500418
Sampa Misra3a0e3b92020-10-21 05:58:00 -0500419/** @brief Find sensor id from a state sensor PDR
420 *
421 * @param[in] pdrRepo - PDR repository
422 * @param[in] tid - terminus id
423 * @param[in] entityType - entity type
424 * @param[in] entityInstance - entity instance number
425 * @param[in] containerId - container id
426 * @param[in] stateSetId - state set id
427 *
428 * @return uint16_t - the sensor id
429 */
430uint16_t findStateSensorId(const pldm_pdr* pdrRepo, uint8_t tid,
431 uint16_t entityType, uint16_t entityInstance,
432 uint16_t containerId, uint16_t stateSetId);
433
Tom Joseph250c4752020-04-15 10:32:45 +0530434/** @brief Find effecter id from a state effecter pdr
435 * @param[in] pdrRepo - PDR repository
436 * @param[in] entityType - entity type
437 * @param[in] entityInstance - entity instance number
438 * @param[in] containerId - container id
439 * @param[in] stateSetId - state set id
Sampa Misraa4a96162020-07-14 05:33:46 -0500440 * @param[in] localOrRemote - true for checking local repo and false for remote
441 * repo
Tom Joseph250c4752020-04-15 10:32:45 +0530442 *
443 * @return uint16_t - the effecter id
444 */
445uint16_t findStateEffecterId(const pldm_pdr* pdrRepo, uint16_t entityType,
446 uint16_t entityInstance, uint16_t containerId,
Sampa Misraa4a96162020-07-14 05:33:46 -0500447 uint16_t stateSetId, bool localOrRemote);
Tom Joseph250c4752020-04-15 10:32:45 +0530448
Chicago Duanfe4d88b2020-06-12 16:44:13 +0800449/** @brief Emit the sensor event signal
450 *
451 * @param[in] tid - the terminus id
452 * @param[in] sensorId - sensorID value of the sensor
453 * @param[in] sensorOffset - Identifies which state sensor within a
454 * composite state sensor the event is being returned for
455 * @param[in] eventState - The event state value from the state change that
456 * triggered the event message
457 * @param[in] previousEventState - The event state value for the state from
458 * which the present event state was entered.
459 * @return PLDM completion code
460 */
461int emitStateSensorEventSignal(uint8_t tid, uint16_t sensorId,
462 uint8_t sensorOffset, uint8_t eventState,
463 uint8_t previousEventState);
464
Sridevi Rameshae28bc72020-12-10 07:21:16 -0600465/** @brief Print the buffer
466 *
Tom Josephe5268cd2021-09-07 13:04:03 +0530467 * @param[in] isTx - True if the buffer is an outgoing PLDM message, false if
468 the buffer is an incoming PLDM message
469 * @param[in] buffer - Buffer to print
Sridevi Rameshae28bc72020-12-10 07:21:16 -0600470 *
471 * @return - None
472 */
Tom Josephe5268cd2021-09-07 13:04:03 +0530473void printBuffer(bool isTx, const std::vector<uint8_t>& buffer);
Sridevi Rameshae28bc72020-12-10 07:21:16 -0600474
Tom Joseph54922072021-06-19 02:45:46 -0700475/** @brief Convert the buffer to std::string
476 *
477 * If there are characters that are not printable characters, it is replaced
478 * with space(0x20).
479 *
480 * @param[in] var - pointer to data and length of the data
481 *
482 * @return std::string equivalent of variable field
483 */
484std::string toString(const struct variable_field& var);
485
George Liu872f0f62021-11-25 16:26:16 +0800486/** @brief Split strings according to special identifiers
487 *
488 * We can split the string according to the custom identifier(';', ',', '&' or
489 * others) and store it to vector.
490 *
491 * @param[in] srcStr - The string to be split
492 * @param[in] delim - The custom identifier
493 * @param[in] trimStr - The first and last string to be trimmed
494 *
495 * @return std::vector<std::string> Vectors are used to store strings
496 */
497std::vector<std::string> split(std::string_view srcStr, std::string_view delim,
498 std::string_view trimStr = "");
Manojkiran Edaef773052021-07-29 09:29:28 +0530499/** @brief Get the current system time in readable format
500 *
501 * @return - std::string equivalent of the system time
502 */
503std::string getCurrentSystemTime();
George Liu872f0f62021-11-25 16:26:16 +0800504
Sridevi Ramesheefe49b2022-06-27 11:51:02 -0500505/** @brief checks if the FRU is actually present.
506 * @param[in] objPath - FRU object path.
507 *
508 * @return bool to indicate presence or absence of FRU.
509 */
510bool checkForFruPresence(const std::string& objPath);
511
Sagar Srinivas5db6e872023-12-01 10:03:30 -0600512/** @brief Method to check if the logical bit is set
513 *
514 * @param[containerId] - container id of the entity
515 *
516 * @return true or false based on the logic bit set
517 */
518bool checkIfLogicalBitSet(const uint16_t& containerId);
Pavithra Barithaya5e542be2021-08-13 00:33:31 -0500519
520/** @brief setting the present property
521 *
522 * @param[in] objPath - the object path of the fru
523 * @param[in] present - status to set either true/false
524 */
525void setFruPresence(const std::string& fruObjPath, bool present);
George Liu83409572019-12-24 18:42:54 +0800526} // namespace utils
Sampa Misra032bd502019-03-06 05:03:22 -0600527} // namespace pldm