/** JSON serializtion for edgeFlex project. * * @author Manuel Pitz * @copyright 2014-2020, Institute for Automation of Complex Power Systems, EONERC * @license GNU General Public License (version 3) * * VILLASnode * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . *********************************************************************************/ #include #include #include using namespace villas::node; int JsonEdgeflexFormat::packSample(json_t **json_smp, const struct sample *smp) { json_t *json_data, *json_value; json_t *json_created = nullptr; if (smp->length < 1) return -1; json_data = json_object(); for (unsigned i = 0; i < smp->length; i++) { struct signal *sig = (struct signal *) vlist_at_safe(smp->signals, i); if (!sig) return -1; json_value = signal_data_to_json(&smp->data[i], sig->type); json_object_set(json_data, sig->name, json_value); } json_created = json_integer(time_to_double(&smp->ts.origin) * 1e3); json_object_set(json_data, "created", json_created); *json_smp = json_data; return 0; } int JsonEdgeflexFormat::unpackSample(json_t *json_smp, struct sample *smp) { int ret, idx; const char *key; json_t *json_value, *json_created = nullptr; json_int_t created = -1; if (smp->capacity < 1) return -1; if (json_typeof(json_smp) != JSON_OBJECT) return -1; json_object_foreach(json_smp, key, json_value) { if (!strcmp(key, "created")) json_created = json_incref(json_value); else { struct signal *sig; sig = vlist_lookup_name(signals, key); if (sig) { if (!sig->enabled) continue; idx = vlist_index(signals, sig); } else { ret = sscanf(key, "signal_%d", &idx); if (ret != 1) continue; } if (idx < 0) return -1; if (idx < (int) smp->capacity) { ret = signal_data_parse_json(&smp->data[idx], sig->type, json_value); if (ret) return ret; } if (idx >= (int) smp->length) smp->length = idx + 1; } } if (!json_created || !json_is_number(json_created)) return -1; created = json_number_value(json_created); smp->ts.origin = time_from_double(created / 1e3); smp->flags = (int) SampleFlags::HAS_TS_ORIGIN; if (smp->length > 0) smp->flags |= (int) SampleFlags::HAS_DATA; return 0; } static char n[] = "json.edgeflex"; static char d[] = "EdgeFlex JSON format"; static FormatPlugin p;