Patrick Venture | 391b8b0 | 2018-03-08 08:31:13 -0800 | [diff] [blame] | 1 | #pragma once |
Patrick Venture | 36ab6f6 | 2020-08-03 10:50:26 -0700 | [diff] [blame] | 2 | |
Patrick Venture | 09334bb | 2020-08-16 12:22:54 -0700 | [diff] [blame] | 3 | #include "control.hpp" |
| 4 | |
Patrick Venture | 9bf5cef | 2020-08-16 08:59:54 -0700 | [diff] [blame] | 5 | #include <ipmid/api.h> |
| 6 | |
Patrick Venture | 36ab6f6 | 2020-08-03 10:50:26 -0700 | [diff] [blame] | 7 | #include <cstdint> |
Patrick Venture | 09334bb | 2020-08-16 12:22:54 -0700 | [diff] [blame] | 8 | #include <memory> |
Patrick Venture | 36ab6f6 | 2020-08-03 10:50:26 -0700 | [diff] [blame] | 9 | |
| 10 | namespace pid_control |
| 11 | { |
| 12 | namespace ipmi |
| 13 | { |
| 14 | |
Patrick Venture | 09334bb | 2020-08-16 12:22:54 -0700 | [diff] [blame] | 15 | // Implements validation of IPMI commands and handles sending back the |
| 16 | // responses. |
| 17 | class ZoneControlIpmiHandler |
| 18 | { |
| 19 | public: |
Harvey Wu | 22579ca | 2022-11-07 14:53:37 +0800 | [diff] [blame] | 20 | explicit ZoneControlIpmiHandler( |
| 21 | std::unique_ptr<ZoneControlInterface> control) : |
Patrick Venture | 09334bb | 2020-08-16 12:22:54 -0700 | [diff] [blame] | 22 | _control(std::move(control)) |
| 23 | {} |
| 24 | |
| 25 | ipmi_ret_t getFailsafeModeState(const uint8_t* reqBuf, uint8_t* replyBuf, |
| 26 | size_t* dataLen); |
| 27 | |
| 28 | ipmi_ret_t getManualModeState(const uint8_t* reqBuf, uint8_t* replyBuf, |
| 29 | size_t* dataLen); |
| 30 | |
| 31 | ipmi_ret_t setManualModeState(const uint8_t* reqBuf, uint8_t* replyBuf, |
Harvey Wu | 22579ca | 2022-11-07 14:53:37 +0800 | [diff] [blame] | 32 | const size_t* dataLen); |
Patrick Venture | 09334bb | 2020-08-16 12:22:54 -0700 | [diff] [blame] | 33 | |
| 34 | private: |
| 35 | std::unique_ptr<ZoneControlInterface> _control; |
| 36 | }; |
| 37 | |
| 38 | ipmi_ret_t manualModeControl(ZoneControlIpmiHandler* handler, ipmi_cmd_t cmd, |
| 39 | const uint8_t* reqBuf, uint8_t* replyCmdBuf, |
| 40 | size_t* dataLen); |
Patrick Venture | 36ab6f6 | 2020-08-03 10:50:26 -0700 | [diff] [blame] | 41 | |
| 42 | } // namespace ipmi |
| 43 | } // namespace pid_control |