blob: be7a5fce7dfe78d90a1f0c409bf645440e7af149 [file] [log] [blame]
George Liua2870722020-02-11 11:09:30 +08001#pragma once
2
Sampa Misra12afe112020-05-25 11:40:44 -05003#include "pdr.hpp"
4#include "pdr_utils.hpp"
George Liu6492f522020-06-16 10:34:05 +08005
Manojkiran Edacc5f1582021-09-29 17:03:06 +05306#include <config.h>
George Liuc453e162022-12-21 17:16:23 +08007#include <libpldm/platform.h>
Manojkiran Edacc5f1582021-09-29 17:03:06 +05308
George Liua2870722020-02-11 11:09:30 +08009namespace pldm
10{
11
12namespace responder
13{
14
15namespace pdr_state_effecter
16{
17
18using Json = nlohmann::json;
19
20static const Json empty{};
21
22/** @brief Parse PDR JSON file and generate state effecter PDR structure
23 *
24 * @param[in] json - the JSON Object with the state effecter PDR
25 * @param[out] handler - the Parser of PLDM command handler
26 * @param[out] repo - pdr::RepoInterface
27 *
28 */
George Liu36e81352020-07-01 14:40:30 +080029template <class DBusInterface, class Handler>
30void generateStateEffecterPDR(const DBusInterface& dBusIntf, const Json& json,
31 Handler& handler, pdr_utils::RepoInterface& repo)
George Liua2870722020-02-11 11:09:30 +080032{
33 static const std::vector<Json> emptyList{};
34 auto entries = json.value("entries", emptyList);
35 for (const auto& e : entries)
36 {
37 size_t pdrSize = 0;
38 auto effecters = e.value("effecters", emptyList);
39 for (const auto& effecter : effecters)
40 {
41 auto set = effecter.value("set", empty);
42 auto statesSize = set.value("size", 0);
43 if (!statesSize)
44 {
45 std::cerr << "Malformed PDR JSON return "
46 "pdrEntry;- no state set "
47 "info, TYPE="
48 << PLDM_STATE_EFFECTER_PDR << "\n";
49 throw InternalFailure();
50 }
51 pdrSize += sizeof(state_effecter_possible_states) -
52 sizeof(bitfield8_t) + (sizeof(bitfield8_t) * statesSize);
53 }
54 pdrSize += sizeof(pldm_state_effecter_pdr) - sizeof(uint8_t);
55
56 std::vector<uint8_t> entry{};
57 entry.resize(pdrSize);
58
59 pldm_state_effecter_pdr* pdr =
60 reinterpret_cast<pldm_state_effecter_pdr*>(entry.data());
Manojkiran Edabcf91ac2021-03-14 13:50:48 +053061 if (!pdr)
62 {
63 std::cerr << "Failed to get state effecter PDR.\n";
64 continue;
65 }
George Liua2870722020-02-11 11:09:30 +080066 pdr->hdr.record_handle = 0;
67 pdr->hdr.version = 1;
68 pdr->hdr.type = PLDM_STATE_EFFECTER_PDR;
69 pdr->hdr.record_change_num = 0;
70 pdr->hdr.length = pdrSize - sizeof(pldm_pdr_hdr);
71
Manojkiran Edacc5f1582021-09-29 17:03:06 +053072 pdr->terminus_handle = TERMINUS_HANDLE;
George Liua2870722020-02-11 11:09:30 +080073 pdr->effecter_id = handler.getNextEffecterId();
George Liuc4ea6a92020-07-14 15:48:44 +080074
75 try
76 {
77 std::string entity_path = e.value("entity_path", "");
78 auto& associatedEntityMap = handler.getAssociateEntityMap();
79 if (entity_path != "" && associatedEntityMap.find(entity_path) !=
80 associatedEntityMap.end())
81 {
82 pdr->entity_type =
83 associatedEntityMap.at(entity_path).entity_type;
84 pdr->entity_instance =
85 associatedEntityMap.at(entity_path).entity_instance_num;
86 pdr->container_id =
87 associatedEntityMap.at(entity_path).entity_container_id;
88 }
89 else
90 {
91 pdr->entity_type = e.value("type", 0);
92 pdr->entity_instance = e.value("instance", 0);
93 pdr->container_id = e.value("container", 0);
94 }
95 }
96 catch (const std::exception& ex)
97 {
98 pdr->entity_type = e.value("type", 0);
99 pdr->entity_instance = e.value("instance", 0);
100 pdr->container_id = e.value("container", 0);
101 }
102
George Liua2870722020-02-11 11:09:30 +0800103 pdr->effecter_semantic_id = 0;
104 pdr->effecter_init = PLDM_NO_INIT;
105 pdr->has_description_pdr = false;
106 pdr->composite_effecter_count = effecters.size();
107
Brad Bishop5079ac42021-08-19 18:35:06 -0400108 pldm::responder::pdr_utils::DbusMappings dbusMappings{};
109 pldm::responder::pdr_utils::DbusValMaps dbusValMaps{};
George Liua2870722020-02-11 11:09:30 +0800110 uint8_t* start =
111 entry.data() + sizeof(pldm_state_effecter_pdr) - sizeof(uint8_t);
112 for (const auto& effecter : effecters)
113 {
114 auto set = effecter.value("set", empty);
115 state_effecter_possible_states* possibleStates =
116 reinterpret_cast<state_effecter_possible_states*>(start);
117 possibleStates->state_set_id = set.value("id", 0);
118 possibleStates->possible_states_size = set.value("size", 0);
119
120 start += sizeof(possibleStates->state_set_id) +
121 sizeof(possibleStates->possible_states_size);
122 static const std::vector<uint8_t> emptyStates{};
Brad Bishop5079ac42021-08-19 18:35:06 -0400123 pldm::responder::pdr_utils::PossibleValues stateValues;
George Liua2870722020-02-11 11:09:30 +0800124 auto states = set.value("states", emptyStates);
125 for (const auto& state : states)
126 {
127 auto index = state / 8;
128 auto bit = state - (index * 8);
129 bitfield8_t* bf = reinterpret_cast<bitfield8_t*>(start + index);
130 bf->byte |= 1 << bit;
George Liuadbe1722020-05-09 19:20:19 +0800131 stateValues.emplace_back(state);
George Liua2870722020-02-11 11:09:30 +0800132 }
133 start += possibleStates->possible_states_size;
134
135 auto dbusEntry = effecter.value("dbus", empty);
136 auto objectPath = dbusEntry.value("path", "");
137 auto interface = dbusEntry.value("interface", "");
138 auto propertyName = dbusEntry.value("property_name", "");
139 auto propertyType = dbusEntry.value("property_type", "");
George Liu36e81352020-07-01 14:40:30 +0800140
Brad Bishop5079ac42021-08-19 18:35:06 -0400141 pldm::responder::pdr_utils::StatestoDbusVal dbusIdToValMap{};
George Liu821ebc42021-01-26 14:36:11 +0800142 pldm::utils::DBusMapping dbusMapping{};
George Liu36e81352020-07-01 14:40:30 +0800143 try
144 {
145 auto service =
146 dBusIntf.getService(objectPath.c_str(), interface.c_str());
George Liu821ebc42021-01-26 14:36:11 +0800147
148 dbusMapping = pldm::utils::DBusMapping{
149 objectPath, interface, propertyName, propertyType};
Brad Bishop5079ac42021-08-19 18:35:06 -0400150 dbusIdToValMap = pldm::responder::pdr_utils::populateMapping(
George Liu821ebc42021-01-26 14:36:11 +0800151 propertyType, dbusEntry["property_values"], stateValues);
George Liu36e81352020-07-01 14:40:30 +0800152 }
153 catch (const std::exception& e)
154 {
George Liu821ebc42021-01-26 14:36:11 +0800155 std::cerr << "D-Bus object path does not exist, effecter ID: "
156 << pdr->effecter_id << "\n";
George Liu36e81352020-07-01 14:40:30 +0800157 }
158
George Liua2870722020-02-11 11:09:30 +0800159 dbusMappings.emplace_back(std::move(dbusMapping));
George Liu821ebc42021-01-26 14:36:11 +0800160 dbusValMaps.emplace_back(std::move(dbusIdToValMap));
George Liua2870722020-02-11 11:09:30 +0800161 }
162 handler.addDbusObjMaps(
163 pdr->effecter_id,
164 std::make_tuple(std::move(dbusMappings), std::move(dbusValMaps)));
Brad Bishop5079ac42021-08-19 18:35:06 -0400165 pldm::responder::pdr_utils::PdrEntry pdrEntry{};
George Liua2870722020-02-11 11:09:30 +0800166 pdrEntry.data = entry.data();
167 pdrEntry.size = pdrSize;
168 repo.addRecord(pdrEntry);
169 }
170}
171
172} // namespace pdr_state_effecter
173} // namespace responder
174} // namespace pldm