1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/lib/signal.c

74 lines
1.7 KiB
C

/** Signal meta data.
*
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
* @copyright 2017, 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 <http://www.gnu.org/licenses/>.
*********************************************************************************/
#include <string.h>
#include "villas/signal.h"
#include "villas/list.h"
#include "villas/utils.h"
int signal_destroy(struct signal *s)
{
if (s->name)
free(s->name);
return 0;
}
int signal_parse(struct signal *s, json_t *cfg)
{
int ret;
json_error_t err;
const char *name;
ret = json_unpack_ex(cfg, &err, 0, "s: s",
"name", &name
);
if (ret)
return -1;
s->name = strdup(name);
return 0;
}
int signal_parse_list(struct list *list, json_t *cfg)
{
int ret;
if (!json_is_array(cfg))
return -1;
size_t index;
json_t *json_signal;
json_array_foreach(cfg, index, json_signal) {
struct signal *s = alloc(sizeof(struct signal));
ret = signal_parse(s, json_signal);
if (ret)
return -1;
list_push(list, s);
}
return 0;
}