Pavithra Barithaya | 0f74c98 | 2020-04-27 02:17:10 -0500 | [diff] [blame] | 1 | #include "dbus_impl_pdr.hpp" |
| 2 | |
Deepak Kodihalli | d130e1a | 2020-06-17 05:55:32 -0500 | [diff] [blame] | 3 | #include "common/utils.hpp" |
Pavithra Barithaya | 0f74c98 | 2020-04-27 02:17:10 -0500 | [diff] [blame] | 4 | #include "xyz/openbmc_project/Common/error.hpp" |
| 5 | |
George Liu | c453e16 | 2022-12-21 17:16:23 +0800 | [diff] [blame] | 6 | #include <libpldm/pdr.h> |
| 7 | #include <libpldm/pldm_types.h> |
| 8 | |
Pavithra Barithaya | 0f74c98 | 2020-04-27 02:17:10 -0500 | [diff] [blame] | 9 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
| 10 | |
| 11 | namespace pldm |
| 12 | { |
| 13 | namespace dbus_api |
| 14 | { |
| 15 | |
| 16 | std::vector<std::vector<uint8_t>> Pdr::findStateEffecterPDR(uint8_t tid, |
| 17 | uint16_t entityID, |
| 18 | uint16_t stateSetId) |
| 19 | { |
Patrick Williams | 6da4f91 | 2023-05-10 07:50:53 -0500 | [diff] [blame] | 20 | auto pdrs = pldm::utils::findStateEffecterPDR(tid, entityID, stateSetId, |
| 21 | pdrRepo); |
Pavithra Barithaya | 0f74c98 | 2020-04-27 02:17:10 -0500 | [diff] [blame] | 22 | |
| 23 | if (pdrs.empty()) |
| 24 | { |
| 25 | throw ResourceNotFound(); |
| 26 | } |
| 27 | |
| 28 | return pdrs; |
| 29 | } |
Chicago Duan | 738e4d8 | 2020-05-28 16:39:19 +0800 | [diff] [blame] | 30 | |
| 31 | std::vector<std::vector<uint8_t>> |
| 32 | Pdr::findStateSensorPDR(uint8_t tid, uint16_t entityID, uint16_t stateSetId) |
| 33 | { |
Patrick Williams | 6da4f91 | 2023-05-10 07:50:53 -0500 | [diff] [blame] | 34 | auto pdrs = pldm::utils::findStateSensorPDR(tid, entityID, stateSetId, |
| 35 | pdrRepo); |
Chicago Duan | 738e4d8 | 2020-05-28 16:39:19 +0800 | [diff] [blame] | 36 | if (pdrs.empty()) |
| 37 | { |
| 38 | throw ResourceNotFound(); |
| 39 | } |
| 40 | return pdrs; |
| 41 | } |
Pavithra Barithaya | 0f74c98 | 2020-04-27 02:17:10 -0500 | [diff] [blame] | 42 | } // namespace dbus_api |
| 43 | } // namespace pldm |