blob: f2fe373d57a63d7b6577fd7c5342a2055f19ffe8 [file] [log] [blame]
Vishwanatha Subbannaac149a92017-07-11 18:16:50 +05301#pragma once
2
William A. Kennington III194375f2018-12-14 02:14:33 -08003#include <ipmid-host/cmd-utils.hpp>
Vishwanatha Subbannaac149a92017-07-11 18:16:50 +05304#include <queue>
5#include <sdbusplus/bus.hpp>
Matt Spinler15309ef2018-06-27 13:01:25 -05006#include <sdbusplus/bus/match.hpp>
Vernon Mauery1181af72018-10-08 12:05:00 -07007#include <sdbusplus/timer.hpp>
Patrick Venture0b02be92018-08-31 11:55:55 -07008#include <tuple>
Vishwanatha Subbannaac149a92017-07-11 18:16:50 +05309
10namespace phosphor
11{
12namespace host
13{
14namespace command
15{
16
17/** @class
18 * @brief Manages commands that are to be sent to Host
19 */
20class Manager
21{
Patrick Venture0b02be92018-08-31 11:55:55 -070022 public:
23 Manager() = delete;
24 ~Manager() = default;
25 Manager(const Manager&) = delete;
26 Manager& operator=(const Manager&) = delete;
27 Manager(Manager&&) = delete;
28 Manager& operator=(Manager&&) = delete;
Vishwanatha Subbannaac149a92017-07-11 18:16:50 +053029
Patrick Venture0b02be92018-08-31 11:55:55 -070030 /** @brief Constructs Manager object
31 *
32 * @param[in] bus - dbus handler
33 * @param[in] event - pointer to sd_event
34 */
Patrick Williams5d82f472022-07-22 19:26:53 -050035 explicit Manager(sdbusplus::bus_t& bus);
Vishwanatha Subbannaac149a92017-07-11 18:16:50 +053036
Patrick Venture0b02be92018-08-31 11:55:55 -070037 /** @brief Extracts the next entry in the queue and returns
38 * Command and data part of it.
39 *
40 * @detail Also calls into the registered handlers so that they can now
41 * send the CommandComplete signal since the interface contract
42 * is that we emit this signal once the message has been
43 * passed to the host (which is required when calling this)
44 *
45 * Also, if the queue has more commands, then it will alert the
46 * host
47 */
48 IpmiCmdData getNextCommand();
Vishwanatha Subbannaac149a92017-07-11 18:16:50 +053049
Patrick Venture0b02be92018-08-31 11:55:55 -070050 /** @brief Pushes the command onto the queue.
51 *
52 * @detail If the queue is empty, then it alerts the Host. If not,
53 * then it returns and the API documented above will handle
54 * the commands in Queue.
55 *
56 * @param[in] command - tuple of <IPMI command, data, callback>
57 */
58 void execute(CommandHandler command);
Vishwanatha Subbannaac149a92017-07-11 18:16:50 +053059
Patrick Venture0b02be92018-08-31 11:55:55 -070060 private:
61 /** @brief Check if anything in queue and alert host if so */
62 void checkQueueAndAlertHost();
Vishwanatha Subbannaac149a92017-07-11 18:16:50 +053063
Patrick Venture0b02be92018-08-31 11:55:55 -070064 /** @brief Call back interface on message timeouts to host.
65 *
66 * @detail When this happens, a failure message would be sent
67 * to all the commands that are in the Queue and queue
68 * will be purged
69 */
70 void hostTimeout();
Vishwanatha Subbannaac149a92017-07-11 18:16:50 +053071
Patrick Venture0b02be92018-08-31 11:55:55 -070072 /** @brief Clears the command queue
73 *
74 * @detail Clears the command queue and calls all callbacks
75 * specifying the command wasn't successful.
76 */
77 void clearQueue();
Matt Spinler15309ef2018-06-27 13:01:25 -050078
Patrick Venture0b02be92018-08-31 11:55:55 -070079 /** @brief Clears the command queue on a power on
80 *
81 * @detail The properties changed handler for the
82 * RequestedHostTransition property. When this property
83 * changes to 'On', this function will purge the command
84 * queue.
85 *
86 * This is done to avoid having commands that were issued
87 * before the host powers on from getting sent to the host,
88 * either due to race conditions around state transitions
89 * or from a user doing something like requesting an already
90 * powered off system to power off again and then immediately
91 * requesting a power on.
92 *
93 * @param[in] msg - the sdbusplus message containing the property
94 */
Patrick Williams5d82f472022-07-22 19:26:53 -050095 void clearQueueOnPowerOn(sdbusplus::message_t& msg);
Matt Spinler15309ef2018-06-27 13:01:25 -050096
Patrick Venture0b02be92018-08-31 11:55:55 -070097 /** @brief Reference to the dbus handler */
Patrick Williams5d82f472022-07-22 19:26:53 -050098 sdbusplus::bus_t& bus;
Vishwanatha Subbannaac149a92017-07-11 18:16:50 +053099
Patrick Venture0b02be92018-08-31 11:55:55 -0700100 /** @brief Queue to store the requested commands */
101 std::queue<CommandHandler> workQueue{};
Vishwanatha Subbannaac149a92017-07-11 18:16:50 +0530102
Patrick Venture0b02be92018-08-31 11:55:55 -0700103 /** @brief Timer for commands to host */
Vernon Mauery1181af72018-10-08 12:05:00 -0700104 phosphor::Timer timer;
Matt Spinler15309ef2018-06-27 13:01:25 -0500105
Patrick Venture0b02be92018-08-31 11:55:55 -0700106 /** @brief Match handler for the requested host state */
107 sdbusplus::bus::match_t hostTransitionMatch;
Vishwanatha Subbannaac149a92017-07-11 18:16:50 +0530108};
109
110} // namespace command
111} // namespace host
112} // namespace phosphor