Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 3 | #include <sdbusplus/bus.hpp> |
| 4 | #include <sdbusplus/server/object.hpp> |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 5 | #include <string> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 6 | #include <xyz/openbmc_project/Network/SystemConfiguration/server.hpp> |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 7 | |
| 8 | namespace phosphor |
| 9 | { |
| 10 | namespace network |
| 11 | { |
| 12 | |
| 13 | using SystemConfigIntf = |
| 14 | sdbusplus::xyz::openbmc_project::Network::server::SystemConfiguration; |
| 15 | |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 16 | using Iface = sdbusplus::server::object_t<SystemConfigIntf>; |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 17 | |
| 18 | class Manager; // forward declaration of network manager. |
| 19 | |
| 20 | /** @class SystemConfiguration |
| 21 | * @brief Network system configuration. |
| 22 | * @details A concrete implementation for the |
| 23 | * xyz.openbmc_project.Network.SystemConfiguration DBus API. |
| 24 | */ |
| 25 | class SystemConfiguration : public Iface |
| 26 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 27 | public: |
| 28 | SystemConfiguration() = default; |
| 29 | SystemConfiguration(const SystemConfiguration&) = delete; |
| 30 | SystemConfiguration& operator=(const SystemConfiguration&) = delete; |
| 31 | SystemConfiguration(SystemConfiguration&&) = delete; |
| 32 | SystemConfiguration& operator=(SystemConfiguration&&) = delete; |
| 33 | virtual ~SystemConfiguration() = default; |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 34 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 35 | /** @brief Constructor to put object onto bus at a dbus path. |
| 36 | * @param[in] bus - Bus to attach to. |
| 37 | * @param[in] objPath - Path to attach at. |
| 38 | * @param[in] parent - Parent object. |
| 39 | */ |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 40 | SystemConfiguration(sdbusplus::bus_t& bus, const std::string& objPath); |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 41 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 42 | /** @brief set the hostname of the system. |
| 43 | * @param[in] name - host name of the system. |
| 44 | */ |
| 45 | std::string hostName(std::string name) override; |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 46 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 47 | private: |
| 48 | /** @brief get the hostname from the system by doing |
| 49 | * dbus call to hostnamed service. |
| 50 | */ |
| 51 | std::string getHostNameFromSystem() const; |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 52 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 53 | /** @brief Persistent sdbusplus DBus bus connection. */ |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 54 | sdbusplus::bus_t& bus; |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | } // namespace network |
| 58 | } // namespace phosphor |