blob: 33088df3d8c5c4f5ace6e27793872814dab6d5f3 [file] [log] [blame]
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +05301#pragma once
2
3#include <sdbusplus/bus.hpp>
4#include <string>
5namespace open_power
6{
7namespace occ
8{
9/**
10 * @brief Gets the D-Bus Service name for the input D-Bus path
11 *
12 * @param[in] bus - Bus handler
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +053013 * @param[in] path - Object Path
Vishwanatha Subbanna18dc1282017-08-29 14:09:35 +053014 * @param[in] intf - Interface
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +053015 *
16 * @return Service name
17 * @error InternalFailure exception thrown
18 */
19std::string getService(sdbusplus::bus::bus& bus,
Vishwanatha Subbanna18dc1282017-08-29 14:09:35 +053020 const std::string& path,
21 const std::string& intf);
Vishwanatha Subbanna30e329a2017-07-24 23:13:14 +053022} // namespace occ
23} // namespace open_power