blob: 559a947d4ec984ca713c62ec5606e957329e4b44 [file] [log] [blame]
Zane Shelleya9b44342021-08-08 17:15:52 -05001#include <analyzer/ras-data/ras-data-parser.hpp>
2#include <util/data_file.hpp>
3#include <util/trace.hpp>
4
5#include <filesystem>
6#include <fstream>
7#include <string>
8
9namespace fs = std::filesystem;
10
11namespace analyzer
12{
13
14//------------------------------------------------------------------------------
15
16std::shared_ptr<Resolution>
Zane Shelley7698b302021-08-09 16:00:03 -050017 RasDataParser::getResolution(const libhei::Signature& i_signature)
Zane Shelleya9b44342021-08-08 17:15:52 -050018{
Zane Shelley7698b302021-08-09 16:00:03 -050019 const auto data = iv_dataFiles.at(i_signature.getChip().getType());
20
21 const auto action = parseSignature(data, i_signature);
22
23 return parseAction(data, action);
Zane Shelleya9b44342021-08-08 17:15:52 -050024}
25
26//------------------------------------------------------------------------------
27
28void RasDataParser::initDataFiles()
29{
30 iv_dataFiles.clear(); // initially empty
31
32 // Get the RAS data schema files from the package `schema` subdirectory.
33 fs::path schemaDir{PACKAGE_DIR "schema"};
Zane Shelleyee54c992021-08-08 17:46:48 -050034 auto schemaRegex = R"(ras-data-schema-v[0-9]{2}\.json)";
35 std::vector<fs::path> schemaPaths;
36 util::findFiles(schemaDir, schemaRegex, schemaPaths);
Zane Shelleya9b44342021-08-08 17:15:52 -050037
Zane Shelleyee54c992021-08-08 17:46:48 -050038 // Parse each of the schema files.
39 std::map<unsigned int, nlohmann::json> schemaFiles;
40 for (const auto& path : schemaPaths)
41 {
42 // Trace each data file for debug.
43 trace::inf("File found: path=%s", path.string().c_str());
Zane Shelleya9b44342021-08-08 17:15:52 -050044
Zane Shelleyee54c992021-08-08 17:46:48 -050045 // Open the file.
46 std::ifstream file{path};
47 assert(file.good()); // The file must be readable.
Zane Shelleya9b44342021-08-08 17:15:52 -050048
Zane Shelleyee54c992021-08-08 17:46:48 -050049 // Parse the JSON.
50 auto schema = nlohmann::json::parse(file);
Zane Shelleya9b44342021-08-08 17:15:52 -050051
Zane Shelleyee54c992021-08-08 17:46:48 -050052 // Get the schema version.
53 auto version = schema.at("version").get<unsigned int>();
54
55 // Keep track of the schemas.
56 auto ret = schemaFiles.emplace(version, schema);
57 assert(ret.second); // Should not have duplicate entries
58 }
59
60 // Get the RAS data files from the package `data` subdirectory.
Zane Shelleya9b44342021-08-08 17:15:52 -050061 fs::path dataDir{PACKAGE_DIR "ras-data"};
62 std::vector<fs::path> dataPaths;
63 util::findFiles(dataDir, R"(.*\.json)", dataPaths);
64
65 // Parse each of the data files.
66 for (const auto& path : dataPaths)
67 {
68 // Trace each data file for debug.
69 trace::inf("File found: path=%s", path.string().c_str());
70
71 // Open the file.
72 std::ifstream file{path};
73 assert(file.good()); // The file must be readable.
74
75 // Parse the JSON.
76 const auto data = nlohmann::json::parse(file);
77
Zane Shelleyee54c992021-08-08 17:46:48 -050078 // Get the data version.
79 auto version = data.at("version").get<unsigned int>();
80
81 // Get the schema for this file.
82 auto schema = schemaFiles.at(version);
83
Zane Shelleya9b44342021-08-08 17:15:52 -050084 // Validate the data against the schema.
85 assert(util::validateJson(schema, data));
86
87 // Get the chip model/EC level from the data. The value is currently
88 // stored as a string representation of the hex value. So it will have
89 // to be converted to an integer.
90 libhei::ChipType_t chipType =
91 std::stoul(data.at("model_ec").get<std::string>(), 0, 16);
92
93 // So far, so good. Add the entry.
94 auto ret = iv_dataFiles.emplace(chipType, data);
95 assert(ret.second); // Should not have duplicate entries
96 }
97}
98
99//------------------------------------------------------------------------------
100
Zane Shelley7698b302021-08-09 16:00:03 -0500101std::string RasDataParser::parseSignature(const nlohmann::json& i_data,
102 const libhei::Signature& i_signature)
103{
104 // Get the signature keys. All are hex (lower case) with no prefix.
105 char buf[5];
106 sprintf(buf, "%04x", i_signature.getId());
107 std::string id{buf};
108
109 sprintf(buf, "%02x", i_signature.getBit());
110 std::string bit{buf};
111
112 sprintf(buf, "%02x", i_signature.getInstance());
113 std::string inst{buf};
114
115 // Return the action.
116 return i_data.at("signatures").at(id).at(bit).at(inst).get<std::string>();
117}
118
119//------------------------------------------------------------------------------
120
121std::shared_ptr<Resolution>
122 RasDataParser::parseAction(const nlohmann::json& i_data,
123 const std::string& i_action)
124{
125 auto o_list = std::make_shared<ResolutionList>();
126
127 // This function will be called recursively and we want to prevent cyclic
128 // recursion.
129 static std::vector<std::string> stack;
130 assert(stack.end() == std::find(stack.begin(), stack.end(), i_action));
131 stack.push_back(i_action);
132
133 // Iterate the action list and apply the changes.
134 for (const auto& a : i_data.at("actions").at(i_action))
135 {
136 auto type = a.at("type").get<std::string>();
137
138 if ("action" == type)
139 {
140 auto name = a.at("name").get<std::string>();
141
142 o_list->push(parseAction(i_data, name));
143 }
144 else if ("callout_self" == type)
145 {
146 auto priority = a.at("priority").get<std::string>();
147 auto guard = a.at("guard").get<bool>();
148
Zane Shelleye4bfb472021-08-10 12:47:32 -0500149 std::string path{}; // Must be empty to callout the chip.
150
151 o_list->push(std::make_shared<HardwareCalloutResolution>(
152 path, getPriority(priority), guard));
Zane Shelley7698b302021-08-09 16:00:03 -0500153 }
154 else if ("callout_unit" == type)
155 {
156 auto name = a.at("name").get<std::string>();
157 auto priority = a.at("priority").get<std::string>();
158 auto guard = a.at("guard").get<bool>();
159
Zane Shelleye4bfb472021-08-10 12:47:32 -0500160 auto path = i_data.at("units").at(name).get<std::string>();
161
162 o_list->push(std::make_shared<HardwareCalloutResolution>(
163 path, getPriority(priority), guard));
Zane Shelley7698b302021-08-09 16:00:03 -0500164 }
165 else if ("callout_connected" == type)
166 {
167 auto name = a.at("name").get<std::string>();
168 auto priority = a.at("priority").get<std::string>();
169 auto guard = a.at("guard").get<bool>();
170
171 // TODO
172 trace::inf("callout_connected: name=%s priority=%s guard=%c",
173 name.c_str(), priority.c_str(), guard ? 'T' : 'F');
174 }
175 else if ("callout_bus" == type)
176 {
177 auto name = a.at("name").get<std::string>();
178 // auto rx_priority = a.at("rx_priority").get<std::string>();
179 // auto tx_priority = a.at("tx_priority").get<std::string>();
180 auto guard = a.at("guard").get<bool>();
181
182 // TODO
183 trace::inf("callout_bus: name=%s guard=%c", name.c_str(),
184 guard ? 'T' : 'F');
185 }
186 else if ("callout_clock" == type)
187 {
188 auto position = a.at("position").get<unsigned int>();
189 auto priority = a.at("priority").get<std::string>();
190 auto guard = a.at("guard").get<bool>();
191
192 // TODO
193 trace::inf("callout_clock: position=%u priority=%s guard=%c",
194 position, priority.c_str(), guard ? 'T' : 'F');
195 }
196 else if ("callout_procedure" == type)
197 {
198 auto name = a.at("name").get<std::string>();
199 auto priority = a.at("priority").get<std::string>();
200
201 // clang-format off
Zane Shelleyc85716c2021-08-17 10:54:06 -0500202 static const std::map<std::string, callout::Procedure> m =
Zane Shelley7698b302021-08-09 16:00:03 -0500203 {
Zane Shelleyc85716c2021-08-17 10:54:06 -0500204 {"LEVEL2", callout::Procedure::NEXTLVL},
Zane Shelley7698b302021-08-09 16:00:03 -0500205 };
206 // clang-format on
207
208 o_list->push(std::make_shared<ProcedureCalloutResolution>(
209 m.at(name), getPriority(priority)));
210 }
211 else if ("callout_part" == type)
212 {
213 auto name = a.at("name").get<std::string>();
214 auto priority = a.at("priority").get<std::string>();
215
216 // TODO
217 trace::inf("callout_part: name=%s priority=%s", name.c_str(),
218 priority.c_str());
219 }
220 else if ("plugin" == type)
221 {
222 auto name = a.at("name").get<std::string>();
223
224 // TODO
225 trace::inf("plugin: name=%s", name.c_str());
226 }
227 else
228 {
229 throw std::logic_error("Unsupported action type: " + type);
230 }
231 }
232
233 // Done with this action pop it off the stack.
234 stack.pop_back();
235
236 return o_list;
237}
238
239//------------------------------------------------------------------------------
240
Zane Shelleyc85716c2021-08-17 10:54:06 -0500241callout::Priority RasDataParser::getPriority(const std::string& i_priority)
Zane Shelley7698b302021-08-09 16:00:03 -0500242{
243 // clang-format off
Zane Shelleyc85716c2021-08-17 10:54:06 -0500244 static const std::map<std::string, callout::Priority> m =
Zane Shelley7698b302021-08-09 16:00:03 -0500245 {
Zane Shelleyc85716c2021-08-17 10:54:06 -0500246 {"HIGH", callout::Priority::HIGH},
247 {"MED", callout::Priority::MED},
248 {"MED_A", callout::Priority::MED_A},
249 {"MED_B", callout::Priority::MED_B},
250 {"MED_C", callout::Priority::MED_C},
251 {"LOW", callout::Priority::LOW},
Zane Shelley7698b302021-08-09 16:00:03 -0500252 };
253 // clang-format on
254
255 return m.at(i_priority);
256}
257
258//------------------------------------------------------------------------------
259
Zane Shelleya9b44342021-08-08 17:15:52 -0500260} // namespace analyzer