blob: 9e6c19bcd94bbaac5c0becb554e03291b3e52e47 [file] [log] [blame]
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +05301#pragma once
2
3#include <sdbusplus/bus.hpp>
George Liub5ca1012021-09-10 12:53:11 +08004
5#include <optional>
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +05306#include <string>
George Liu13901592021-06-03 14:13:21 +08007#include <tuple>
8
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +05309namespace open_power
10{
11namespace occ
12{
George Liuf3b75142021-06-10 11:22:50 +080013namespace utils
14{
George Liu13901592021-06-03 14:13:21 +080015
George Liuf3b75142021-06-10 11:22:50 +080016constexpr auto MAPPER_BUSNAME = "xyz.openbmc_project.ObjectMapper";
17constexpr auto MAPPER_OBJ_PATH = "/xyz/openbmc_project/object_mapper";
18constexpr auto MAPPER_IFACE = "xyz.openbmc_project.ObjectMapper";
19constexpr auto DBUS_PROPERTY_IFACE = "org.freedesktop.DBus.Properties";
20
21// The value of the property(type: variant, contains some basic types)
Chris Cain17257672021-10-22 13:41:03 -050022using PropertyValue = std::variant<uint32_t, bool, double>;
George Liuf3b75142021-06-10 11:22:50 +080023
24/** @brief Get the bus connection. */
25static auto& getBus()
26{
27 static auto bus = sdbusplus::bus::new_default();
28 return bus;
29}
30
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +053031/**
George Liuf3b75142021-06-10 11:22:50 +080032 * @brief Get service name by the path and interface of the DBus.
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +053033 *
George Liuf3b75142021-06-10 11:22:50 +080034 * @param[in] path - D-Bus object path
35 * @param[in] interface - D-Bus Interface
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +053036 *
George Liuf3b75142021-06-10 11:22:50 +080037 * @return std::string - the D-Bus service name
38 *
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +053039 */
George Liuf3b75142021-06-10 11:22:50 +080040const std::string getService(const std::string& path,
41 const std::string& interface);
42
43/** @brief Get property(type: variant)
44 *
45 * @param[in] objectPath - D-Bus object path
46 * @param[in] interface - D-Bus interface
47 * @param[in] propertyName - D-Bus property name
48 *
49 * @return The value of the property(type: variant)
50 *
Patrick Williams25613622021-09-02 09:29:54 -050051 * @throw sdbusplus::exception::exception when it fails
George Liuf3b75142021-06-10 11:22:50 +080052 */
53const PropertyValue getProperty(const std::string& objectPath,
54 const std::string& interface,
55 const std::string& propertyName);
56
Matt Spinler5901abd2021-09-23 13:50:03 -050057/** @brief Get subtree paths
58 *
59 * @param[in] interfaces - D-Bus interfaces
60 * @param[in] path - D-Bus object path
61 *
62 * @return The D-Bus paths from the GetSubTree method
63 *
64 * @throw sdbusplus::exception::exception when it fails
65 */
66std::vector<std::string>
67 getSubtreePaths(const std::vector<std::string>& interfaces,
68 const std::string& path = "/");
69
George Liuf3b75142021-06-10 11:22:50 +080070} // namespace utils
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +053071} // namespace occ
72} // namespace open_power