blob: a0f8586b0cacb85f6a839b800f5c3804eaa431a1 [file] [log] [blame]
Sampa Misraaea5dde2020-08-31 08:33:47 -05001#pragma once
2
3#include "common/types.hpp"
4#include "common/utils.hpp"
5#include "pldmd/handler.hpp"
6
7namespace pldm
8{
9
Sampa Misraaea5dde2020-08-31 08:33:47 -050010namespace responder
11{
12
13namespace oem_platform
14{
15
16class Handler : public CmdHandler
17{
18 public:
19 Handler(const pldm::utils::DBusHandler* dBusIntf) : dBusIntf(dBusIntf)
20 {}
21
22 /** @brief Interface to get the state sensor readings requested by pldm
23 * requester for OEM types. Each specific type should implement a handler
24 * of it's own
25 *
26 * @param[in] entityType - entity type corresponding to the sensor
27 * @param[in] entityInstance - entity instance number
28 * @param[in] stateSetId - state set id
29 * @param[in] compSensorCnt - composite sensor count
30 * @param[out] stateField - The state field data for each of the states,
31 * equal to composite sensor count in number
32 *
33 * @return - Success or failure in getting the states. Returns failure in
34 * terms of PLDM completion codes if fetching atleast one state
35 * fails
36 */
37 virtual int getOemStateSensorReadingsHandler(
Brad Bishop5079ac42021-08-19 18:35:06 -040038 EntityType entityType, pldm::pdr::EntityInstance entityInstance,
39 pldm::pdr::StateSetId stateSetId,
40 pldm::pdr::CompositeCount compSensorCnt,
Sampa Misraaea5dde2020-08-31 08:33:47 -050041 std::vector<get_sensor_state_field>& stateField) = 0;
42
43 /** @brief Interface to set the effecter requested by pldm requester
44 * for OEM types. Each individual oem type should implement
45 * it's own handler.
46 *
47 * @param[in] entityType - entity type corresponding to the effecter id
48 * @param[in] entityInstance - entity instance
49 * @param[in] stateSetId - state set id
50 * @param[in] compEffecterCnt - composite effecter count
Varsha Kaverappa3fbd39e2020-09-28 01:40:22 -050051 * @param[in] stateField - The state field data for each of the states,
Sampa Misraaea5dde2020-08-31 08:33:47 -050052 * equal to compEffecterCnt in number
Varsha Kaverappa3fbd39e2020-09-28 01:40:22 -050053 * @param[in] effecterId - Effecter id
Sampa Misraaea5dde2020-08-31 08:33:47 -050054 *
55 * @return - Success or failure in setting the states.Returns failure in
56 * terms of PLDM completion codes if atleast one state fails to
57 * be set
58 */
Sampa Misra3a0e3b92020-10-21 05:58:00 -050059 virtual int oemSetStateEffecterStatesHandler(
Varsha Kaverappa3fbd39e2020-09-28 01:40:22 -050060 uint16_t entityType, uint16_t entityInstance, uint16_t stateSetId,
61 uint8_t compEffecterCnt,
62 std::vector<set_effecter_state_field>& stateField,
63 uint16_t effecterId) = 0;
Sampa Misraaea5dde2020-08-31 08:33:47 -050064
Sagar Srinivas78a225a2020-08-27 00:52:20 -050065 /** @brief Interface to generate the OEM PDRs
66 *
67 * @param[in] repo - instance of concrete implementation of Repo
68 */
69 virtual void buildOEMPDR(pdr_utils::Repo& repo) = 0;
70
Sagar Srinivas79669c92021-04-28 15:43:30 -050071 /** @brief Interface to check if the watchdog timer is running
72 *
73 * @return - true if watchdog is running, false otherwise
74 * */
75 virtual bool watchDogRunning() = 0;
76
77 /** @brief Interface to reset the watchdog timer */
78 virtual void resetWatchDogTimer() = 0;
79
Sampa Misraaea5dde2020-08-31 08:33:47 -050080 virtual ~Handler() = default;
81
82 protected:
83 const pldm::utils::DBusHandler* dBusIntf;
84};
85
86} // namespace oem_platform
87
88} // namespace responder
89
90} // namespace pldm