1 #pragma once 2 3 #include "common/instance_id.hpp" 4 #include "xyz/openbmc_project/Common/error.hpp" 5 #include "xyz/openbmc_project/PLDM/Requester/server.hpp" 6 7 #include <sdbusplus/bus.hpp> 8 #include <sdbusplus/server/object.hpp> 9 10 #include <map> 11 12 namespace pldm 13 { 14 namespace dbus_api 15 { 16 17 using RequesterIntf = sdbusplus::server::object_t< 18 sdbusplus::xyz::openbmc_project::PLDM::server::Requester>; 19 20 /** @class Requester 21 * @brief OpenBMC PLDM.Requester implementation. 22 * @details A concrete implementation for the 23 * xyz.openbmc_project.PLDM.Requester DBus APIs. 24 */ 25 class Requester : public RequesterIntf 26 { 27 public: 28 Requester() = delete; 29 Requester(const Requester&) = delete; 30 Requester& operator=(const Requester&) = delete; 31 Requester(Requester&&) = delete; 32 Requester& operator=(Requester&&) = delete; 33 virtual ~Requester() = default; 34 35 /** @brief Constructor to put object onto bus at a dbus path. 36 * @param[in] bus - Bus to attach to. 37 * @param[in] path - Path to attach at. 38 * @param[in] db - The database to use for allocating instance IDs 39 * @note will throw TooManyResources() if there were no free instance IDs 40 * Throws std::system_category().default_error_condition if there is 41 * something wrong with the instance ID database. 42 */ 43 Requester(sdbusplus::bus_t& bus, const std::string& path, 44 InstanceIdDb& db) : 45 RequesterIntf(bus, path.c_str()), pldmInstanceIdDb(db) {}; 46 47 /** @brief Implementation for RequesterIntf.GetInstanceId */ 48 uint8_t getInstanceId(uint8_t eid) override 49 { 50 int id; 51 52 // Ideally we would be able to look up the TID for a given EID. We don't 53 // have that infrastructure in place yet. So use the EID value for the 54 // TID. This is an interim step towards the PLDM requester logic moving 55 // into libpldm, and eventually this won't be needed. 56 try 57 { 58 id = pldmInstanceIdDb.next(eid); 59 } 60 catch (const std::runtime_error& e) 61 { 62 throw sdbusplus::xyz::openbmc_project::Common::Error:: 63 TooManyResources(); 64 } 65 66 return id; 67 } 68 69 /** @brief Mark an instance id as unused 70 * @param[in] eid - MCTP eid to which this instance id belongs 71 * @param[in] instanceId - PLDM instance id to be freed 72 * @note will throw std::runtime_error if the instance ID was not 73 * previously allocated. 74 * Throws std::system_category().default_error_condition if there is 75 * something wrong with the instance ID database. 76 */ 77 void markFree(uint8_t eid, uint8_t instanceId) 78 { 79 pldmInstanceIdDb.free(eid, instanceId); 80 } 81 82 private: 83 InstanceIdDb& pldmInstanceIdDb; 84 }; 85 86 } // namespace dbus_api 87 } // namespace pldm 88