| #pragma once |
| |
| #include <sdbusplus/bus.hpp> |
| #include "xyz/openbmc_project/State/BMC/server.hpp" |
| |
| namespace phosphor |
| { |
| namespace state |
| { |
| namespace manager |
| { |
| |
| /** @class BMC |
| * @brief OpenBMC BMC state management implementation. |
| * @details A concrete implementation for xyz.openbmc_project.State.BMC |
| * DBus API. |
| */ |
| class BMC : public sdbusplus::server::object::object< |
| sdbusplus::xyz::openbmc_project::State::server::BMC> |
| { |
| public: |
| /** @brief Constructs BMC State Manager |
| * |
| * @note This constructor passes 'true' to the base class in order to |
| * defer dbus object registration until we can run |
| * subscribeToSystemdSignals() and set our properties |
| * |
| * @param[in] bus - The Dbus bus object |
| * @param[in] busName - The Dbus name to own |
| * @param[in] objPath - The Dbus object path |
| */ |
| BMC(sdbusplus::bus::bus& bus, |
| const char* objPath) : |
| sdbusplus::server::object::object< |
| sdbusplus::xyz::openbmc_project::State::server::BMC>( |
| bus, objPath), |
| bus(bus) |
| { |
| subscribeToSystemdSignals(); |
| }; |
| |
| /** @brief Set value of BMCTransition **/ |
| Transition requestedBMCTransition(Transition value) override; |
| |
| |
| private: |
| /** |
| * @brief subscribe to the systemd signals |
| **/ |
| void subscribeToSystemdSignals(); |
| |
| /** @brief Execute the transition request |
| * |
| * @param[in] tranReq - Transition requested |
| */ |
| void executeTransition(Transition tranReq); |
| |
| /** @brief Persistent sdbusplus DBus bus connection. **/ |
| sdbusplus::bus::bus& bus; |
| |
| }; |
| |
| } // namespace manager |
| } // namespace state |
| } // namespace phosphor |