Name Date Size #Lines LOC

..22-Jun-2024-

test/H30-May-2024-621482

README.mdH A D22-Jun-20241.8 KiB4535

handler.hppH A D18-Jun-202422.4 KiB656413

mctp_endpoint_discovery.cppH A D10-Jun-20246.7 KiB220198

mctp_endpoint_discovery.hppH A D09-May-20244.1 KiB13151

request.hppH A D10-Jun-20246.3 KiB210139

README.md

1# Overview
2
3PLDM requester infrastructure enables the requester code in PLDM daemon to meet
4the requirements of PLDM requesters. It provides the following features:
5
6- Register a PLDM request and the response handler to be invoked on receiving
7  the response.
8- The handling of the request and response is asynchronous. This means the PLDM
9  daemon is not blocked till the response is received for a request.
10- Multiple outstanding requests are supported.
11- Request retries based on the time-out waiting for a response.
12- Instance ID expiration and marking the instance ID free after expiration.
13
14## Future enhancements
15
16- A mechanism to queue multiple outstanding requests to the same responder.
17- Handle ERROR_NOT_READY completion code and retry the PLDM request after 250ms
18  interval.
19
20The requester code needs to use the `registerRequest` API to register the PLDM
21request. The destination endpoint ID, instance ID, PLDM type, PLDM command code,
22PLDM request message (PLDM header and payload) and response function handler are
23passed as parameters to the registerRequest API.
24
25```c++
26    int registerRequest(mctp_eid_t eid, uint8_t instanceId, uint8_t type,
27                        uint8_t command, pldm::Request&& requestMsg,
28                        ResponseHandler&& responseHandler)
29```
30
31The signature of the response function handler:
32
33```c++
34void handler(mctp_eid_t eid, const pldm_msg* response, size_t respMsgLen)
35```
36
37- If the response is received before instance ID expiration:
38  - If the response matches with an outstanding request then the response
39    handler is invoked.
40  - If the response does not match with the PLDM instance ID, PLDM type and PLDM
41    command code of an outstanding request, then no action is taken on the
42    response.
43- Once the instance ID is expired, then the response handler is invoked with
44  empty response, so that further action can be taken.
45