/** The "nodes" command * * @author Steffen Vogel * @copyright 2017, Institute for Automation of Complex Power Systems, EONERC * This file is part of VILLASnode. All Rights Reserved. Proprietary and confidential. * Unauthorized copying of this file, via any medium is strictly prohibited. *********************************************************************************/ #include #include "plugin.h" #include "api.h" #include "node.h" #include "utils.h" extern struct list nodes; static int api_nodes(struct api_ressource *r, json_t *args, json_t **resp, struct api_session *s) { json_t *json_nodes = json_array(); for (size_t i = 0; i < list_length(&s->api->super_node->nodes); i++) { struct node *n = list_at(&s->api->super_node->nodes, i); json_t *json_node = json_pack("{ s: s, s: i, s: i, s: i, s: i }", "name", node_name_short(n), "state", n->state, "vectorize", n->vectorize, "affinity", n->affinity ); /* Add all additional fields of node here. * This can be used for metadata */ json_object_update(json_node, config_to_json(n->cfg)); json_array_append_new(json_nodes, json_node); } *resp = json_nodes; return 0; } static struct plugin p = { .name = "nodes", .description = "retrieve list of all known nodes", .type = PLUGIN_TYPE_API, .api.cb = api_nodes }; REGISTER_PLUGIN(&p)