|
|
|
@ -53,9 +53,13 @@ void distribution::parse_json(const std::string& json_data) {
|
|
|
|
|
|
|
|
|
|
// Process JSON keys dynamically
|
|
|
|
|
for (auto& [key, value] : data.items()) {
|
|
|
|
|
if (json_map.find(key) != json_map.end()) {
|
|
|
|
|
json_map[key](value);
|
|
|
|
|
json_map.erase(key);
|
|
|
|
|
try {
|
|
|
|
|
if (json_map.find(key) != json_map.end()) {
|
|
|
|
|
json_map[key](value);
|
|
|
|
|
json_map.erase(key);
|
|
|
|
|
}
|
|
|
|
|
} catch (...) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} catch (const nlohmann::json::parse_error& e) {
|
|
|
|
|