blob: 8e56bd4eed5551cb4a56f0759b311040b846a199 [file] [log] [blame]
#pragma once
#include <ipmid-host/cmd-utils.hpp>
#include <org/open_power/Control/Host/server.hpp>
#include <sdbusplus/bus.hpp>
namespace open_power
{
namespace host
{
namespace command
{
namespace Base = sdbusplus::org::open_power::Control::server;
using IpmiCmdData = phosphor::host::command::IpmiCmdData;
/** @class Host
* @brief OpenBMC control host interface implementation.
* @details A concrete implementation for org.open_power.Control.Host
* DBus API.
*/
class Host : public sdbusplus::server::object_t<Base::Host>
{
public:
/** @brief Constructs Host Control Interface
*
* @param[in] bus - The Dbus bus object
* @param[in] objPath - The Dbus object path
*/
Host(sdbusplus::bus_t& bus, const char* objPath) :
sdbusplus::server::object_t<Base::Host>(bus, objPath), bus(bus)
{
// Nothing to do
}
/** @brief Sends input command to host
* Note that the command will be queued in a FIFO if
* other commands to the host have yet to be run
*
* @param[in] command - Input command to execute
* @param[in] data - Data associated with the command
*/
void execute(Command command, std::variant<uint8_t> data) override;
private:
/** @brief sdbusplus DBus bus connection. */
sdbusplus::bus_t& bus;
/** @brief Callback function to be invoked by command manager
*
* @detail Conveys the status of the last Host bound command.
* Depending on the status, a CommandComplete or
* CommandFailure signal would be sent
*
* @param[in] cmd - IPMI command and data sent to Host
* @param[in] status - Success or Failure
*/
void commandStatusHandler(IpmiCmdData cmd, bool status);
};
} // namespace command
} // namespace host
} // namespace open_power