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/super_node.cpp

539 lines
10 KiB
C++
Raw Normal View History

/** The super node object holding the state of the application.
*
2022-03-15 09:18:01 -04:00
* @author Steffen Vogel <svogel2@eonerc.rwth-aachen.de>
2022-03-15 09:28:57 -04:00
* @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
2022-07-04 18:20:03 +02:00
* @license Apache 2.0
*********************************************************************************/
#include <algorithm>
#include <cstdlib>
#include <cstring>
2018-10-20 14:20:06 +02:00
#include <villas/super_node.hpp>
#include <villas/node.hpp>
#include <villas/path.hpp>
2021-09-19 19:26:03 +02:00
#include <villas/uuid.hpp>
2019-04-23 13:12:04 +02:00
#include <villas/hook_list.hpp>
#include <villas/node/memory.hpp>
2019-03-26 07:01:10 +01:00
#include <villas/config_helper.hpp>
2018-10-20 14:20:06 +02:00
#include <villas/log.hpp>
#include <villas/timing.hpp>
2019-03-26 07:11:27 +01:00
#include <villas/node/exceptions.hpp>
2018-10-20 14:20:06 +02:00
#include <villas/kernel/rt.hpp>
#include <villas/kernel/if.hpp>
2019-01-21 22:14:51 +01:00
#ifdef WITH_NETEM
#include <villas/kernel/nl.hpp>
2019-01-21 22:14:51 +01:00
#endif
2018-10-20 14:20:06 +02:00
using namespace villas;
2018-07-03 21:51:48 +02:00
using namespace villas::node;
typedef char uuid_string_t[37];
2018-07-03 21:51:48 +02:00
SuperNode::SuperNode() :
2019-06-23 16:13:23 +02:00
state(State::INITIALIZED),
2020-10-15 14:47:43 +02:00
idleStop(-1),
#ifdef WITH_API
2018-10-20 14:20:06 +02:00
api(this),
2019-04-05 02:22:53 +02:00
#endif
#ifdef WITH_WEB
#ifdef WITH_API
web(&api),
#else
web(),
#endif
#endif
priority(0),
affinity(0),
2020-03-04 13:06:28 +01:00
hugepages(DEFAULT_NR_HUGEPAGES),
statsRate(1.0),
2020-10-15 14:47:43 +02:00
task(CLOCK_REALTIME),
started(time_now())
{
int ret;
2020-10-15 14:47:43 +02:00
char hname[128];
ret = gethostname(hname, sizeof(hname));
if (ret)
throw SystemError("Failed to determine hostname");
/* Default UUID is derived from hostname */
2021-09-19 19:26:03 +02:00
uuid::generateFromString(uuid, hname);
2020-10-15 14:47:43 +02:00
#ifdef WITH_NETEM
kernel::nl::init(); /* Fill link cache */
#endif /* WITH_NETEM */
2019-01-21 10:34:36 +01:00
logger = logging.get("super_node");
}
void SuperNode::parse(const std::string &u)
{
2020-09-10 17:35:35 +02:00
config.root = config.load(u);
parse(config.root);
}
2020-09-10 17:35:35 +02:00
void SuperNode::parse(json_t *root)
{
int ret;
assert(state == State::PARSED ||
state == State::INITIALIZED ||
state == State::CHECKED);
2020-10-15 14:47:43 +02:00
const char *uuid_str = nullptr;
2018-08-27 11:21:57 +02:00
json_t *json_nodes = nullptr;
json_t *json_paths = nullptr;
json_t *json_logging = nullptr;
2020-09-10 17:35:35 +02:00
json_t *json_http = nullptr;
json_error_t err;
2020-10-15 14:47:43 +02:00
idleStop = 1;
ret = json_unpack_ex(root, &err, 0, "{ s?: F, s?: o, s?: o, s?: o, s?: o, s?: i, s?: i, s?: i, s?: b, s?: s }",
"stats", &statsRate,
2020-09-10 17:35:35 +02:00
"http", &json_http,
2017-10-16 08:08:35 +02:00
"logging", &json_logging,
"nodes", &json_nodes,
"paths", &json_paths,
2018-07-03 21:51:48 +02:00
"hugepages", &hugepages,
"affinity", &affinity,
"priority", &priority,
2020-10-15 14:47:43 +02:00
"idle_stop", &idleStop,
"uuid", &uuid_str
);
if (ret)
2020-09-10 17:35:35 +02:00
throw ConfigError(root, err, "node-config", "Unpacking top-level config failed");
2020-10-15 14:47:43 +02:00
if (uuid_str) {
ret = uuid_parse(uuid_str, uuid);
if (ret)
throw ConfigError(root, "node-config-uuid", "Failed to parse UUID: {}", uuid_str);
}
#ifdef WITH_WEB
2020-09-10 17:35:35 +02:00
if (json_http)
web.parse(json_http);
#endif /* WITH_WEB */
2017-10-16 08:08:35 +02:00
if (json_logging)
2018-10-20 14:20:06 +02:00
logging.parse(json_logging);
/* Parse nodes */
2017-10-16 08:08:35 +02:00
if (json_nodes) {
if (!json_is_object(json_nodes))
throw ConfigError(json_nodes, "node-config-nodes", "Setting 'nodes' must be a group with node name => group mappings.");
const char *name;
2017-10-16 08:08:35 +02:00
json_t *json_node;
json_object_foreach(json_nodes, name, json_node) {
const char *type;
ret = Node::isValidName(name);
if (!ret)
2019-02-12 17:54:08 +01:00
throw RuntimeError("Invalid name for node: {}", name);
2017-10-16 08:08:35 +02:00
ret = json_unpack_ex(json_node, &err, 0, "{ s: s }", "type", &type);
if (ret)
2020-09-10 17:35:35 +02:00
throw ConfigError(root, err, "node-config-node-type", "Failed to parse type of node '{}'", name);
2017-03-13 23:51:38 -03:00
json_object_set_new(json_node, "name", json_string(name));
auto *n = NodeFactory::make(type);
2020-01-25 17:39:06 +01:00
if (!n)
throw MemoryAllocationError();
2020-01-25 17:39:06 +01:00
ret = n->parse(json_node, uuid);
2019-03-26 07:11:27 +01:00
if (ret) {
auto config_id = fmt::format("node-config-node-{}", type);
throw ConfigError(json_node, config_id, "Failed to parse configuration of node '{}'", name);
}
2021-03-09 15:41:35 -05:00
json_object_del(json_node, "name");
nodes.push_back(n);
}
}
/* Parse paths */
2017-10-16 08:08:35 +02:00
if (json_paths) {
if (!json_is_array(json_paths))
2018-10-20 14:20:06 +02:00
logger->warn("Setting 'paths' must be a list of objects");
2018-08-07 18:40:32 +02:00
size_t i;
2017-10-16 08:08:35 +02:00
json_t *json_path;
2018-08-07 18:40:32 +02:00
json_array_foreach(json_paths, i, json_path) {
parse: auto *p = new Path();
if (!p)
throw MemoryAllocationError();
p->parse(json_path, nodes, uuid);
paths.push_back(p);
if (p->isReversed()) {
/* Only simple paths can be reversed */
ret = p->isSimple();
if (!ret)
throw RuntimeError("Complex paths can not be reversed!");
/* Parse a second time with in/out reversed */
json_path = json_copy(json_path);
json_t *json_in = json_object_get(json_path, "in");
json_t *json_out = json_object_get(json_path, "out");
if (json_equal(json_in, json_out))
throw RuntimeError("Can not reverse path with identical in/out nodes!");
json_object_set(json_path, "reverse", json_false());
json_object_set(json_path, "in", json_out);
json_object_set(json_path, "out", json_in);
goto parse;
}
}
}
2019-06-23 16:13:23 +02:00
state = State::PARSED;
}
void SuperNode::check()
{
int ret;
assert(state == State::INITIALIZED ||
state == State::PARSED ||
state == State::CHECKED);
for (auto *n : nodes) {
ret = n->check();
if (ret)
throw RuntimeError("Invalid configuration for node {}", *n);
}
for (auto *p : paths)
p->check();
2019-06-23 16:13:23 +02:00
state = State::CHECKED;
}
void SuperNode::prepareNodeTypes()
{
int ret;
for (auto *n : nodes) {
auto *nf = n->getFactory();
if (nf->getState() == State::STARTED)
continue;
ret = nf->start(this);
if (ret)
throw RuntimeError("Failed to start node-type: {}", *n->getFactory());
}
}
void SuperNode::startInterfaces()
{
#ifdef WITH_NETEM
int ret;
for (auto *i : interfaces) {
ret = i->start();
if (ret)
throw RuntimeError("Failed to start network interface: {}", i->getName());
}
#endif /* WITH_NETEM */
}
void SuperNode::startNodes()
{
int ret;
for (auto *n : nodes) {
if (!n->isEnabled())
2019-02-24 11:13:28 +01:00
continue;
2018-08-20 18:31:27 +02:00
ret = n->start();
2019-02-24 11:13:28 +01:00
if (ret)
throw RuntimeError("Failed to start node: {}", *n);
}
}
void SuperNode::startPaths()
{
for (auto *p : paths) {
if (p->isEnabled())
p->start();
2019-02-24 11:13:28 +01:00
}
}
void SuperNode::prepareNodes()
{
2020-09-10 13:20:50 +02:00
int ret;
2019-02-24 11:13:28 +01:00
for (auto *n : nodes) {
if (!n->isEnabled())
2019-02-24 11:13:28 +01:00
continue;
ret = n->prepare();
2019-02-24 11:13:28 +01:00
if (ret)
throw RuntimeError("Failed to prepare node: {}", *n);
2019-02-24 11:13:28 +01:00
}
}
void SuperNode::preparePaths()
{
for (auto *p : paths) {
if (p->isEnabled())
p->prepare(nodes);
}
}
2019-02-24 11:13:28 +01:00
void SuperNode::prepare()
{
2019-02-11 16:32:39 +01:00
int ret;
2019-06-23 16:13:23 +02:00
assert(state == State::CHECKED);
ret = memory::init(hugepages);
if (ret)
throw RuntimeError("Failed to initialize memory system");
kernel::rt::init(priority, affinity);
prepareNodeTypes();
prepareNodes();
preparePaths();
for (auto *n : nodes) {
if (n->sources.size() == 0 &&
n->destinations.size() == 0) {
logger->info("Node {} is not used by any path. Disabling...", *n);
n->setEnabled(false);
2020-09-10 17:35:35 +02:00
}
}
2019-06-23 16:13:23 +02:00
state = State::PREPARED;
}
void SuperNode::start()
{
2019-06-23 16:13:23 +02:00
assert(state == State::PREPARED);
#ifdef WITH_API
api.start();
#endif
#ifdef WITH_WEB
web.start();
#endif
startInterfaces();
startNodes();
startPaths();
if (statsRate > 0) // A rate <0 will disable the periodic stats
task.setRate(statsRate);
2018-10-20 14:20:06 +02:00
2019-06-23 13:35:42 +02:00
Stats::printHeader(Stats::Format::HUMAN);
2018-10-20 14:20:06 +02:00
2019-06-23 16:13:23 +02:00
state = State::STARTED;
}
void SuperNode::stopPaths()
{
for (auto *p : paths) {
if (p->getState() == State::STARTED ||
p->getState() == State::PAUSED)
p->stop();
}
}
void SuperNode::stopNodes()
{
int ret;
for (auto *n : nodes) {
if (n->getState() == State::STARTED ||
n->getState() == State::PAUSED ||
n->getState() == State::STOPPING) {
ret = n->stop();
if (ret)
throw RuntimeError("Failed to stop node: {}", *n);
}
}
}
void SuperNode::stopNodeTypes()
{
int ret;
for (auto *n : nodes) {
auto *nf = n->getFactory();
if (nf->getState() != State::STARTED)
continue;
ret = nf->stop();
if (ret)
throw RuntimeError("Failed to stop node-type: {}", *n->getFactory());
}
}
void SuperNode::stopInterfaces()
{
#ifdef WITH_NETEM
int ret;
for (auto *i : interfaces) {
ret = i->stop();
if (ret)
throw RuntimeError("Failed to stop interface: {}", i->getName());
}
#endif /* WITH_NETEM */
}
void SuperNode::stop()
{
stopNodes();
stopPaths();
stopNodeTypes();
stopInterfaces();
#ifdef WITH_API
2018-10-20 14:20:06 +02:00
api.stop();
#endif
#ifdef WITH_WEB
2018-10-20 14:20:06 +02:00
web.stop();
#endif
2019-06-23 16:13:23 +02:00
state = State::STOPPED;
}
2018-07-03 21:51:48 +02:00
void SuperNode::run()
{
int ret;
2019-06-23 16:13:23 +02:00
while (state == State::STARTED) {
2020-03-04 13:06:28 +01:00
task.wait();
ret = periodic();
if (ret)
2019-06-23 16:13:23 +02:00
state = State::STOPPING;
}
2018-07-03 21:51:48 +02:00
}
SuperNode::~SuperNode()
{
assert(state == State::INITIALIZED ||
state == State::PARSED ||
state == State::CHECKED ||
state == State::STOPPED ||
state == State::PREPARED);
for (auto *p : paths)
delete p;
2018-07-03 21:51:48 +02:00
for (auto *n : nodes)
delete n;
2017-04-06 12:12:56 +02:00
}
2018-07-03 21:51:48 +02:00
int SuperNode::periodic()
{
2019-02-11 16:39:30 +01:00
int started = 0;
for (auto *p : paths) {
if (p->getState() == State::STARTED) {
2019-02-11 16:39:30 +01:00
started++;
2019-02-11 16:39:30 +01:00
#ifdef WITH_HOOKS
p->hooks.periodic();
2019-02-11 16:39:30 +01:00
#endif /* WITH_HOOKS */
}
}
for (auto *n : nodes) {
if (n->getState() == State::STARTED) {
2019-02-11 16:39:30 +01:00
#ifdef WITH_HOOKS
n->in.hooks.periodic();
n->out.hooks.periodic();
2019-02-11 16:39:30 +01:00
#endif /* WITH_HOOKS */
}
}
2019-02-11 16:39:30 +01:00
2020-10-15 14:47:43 +02:00
if (idleStop > 0 && state == State::STARTED && started == 0) {
2021-02-16 14:15:14 +01:00
logger->info("No more active paths. Stopping super-node");
2019-02-11 16:39:30 +01:00
return -1;
}
return 0;
}
#ifdef WITH_GRAPHVIZ
static
void set_attr(void *ptr, const std::string &key, const std::string &value, bool html = false) {
Agraph_t *g = agraphof(ptr);
char *d = (char *) "";
char *k = (char *) key.c_str();
char *v = (char *) value.c_str();
char *vd = html ? agstrdup_html(g, v) : agstrdup(g, v);
agsafeset(ptr, k, vd, d);
}
graph_t * SuperNode::getGraph()
{
Agraph_t *g;
2020-10-16 17:31:32 +02:00
Agnode_t *m;
2020-06-08 02:25:07 +02:00
g = agopen((char *) "g", Agdirected, 0);
2020-10-16 17:31:32 +02:00
std::map<Node *, Agnode_t *> nodeMap;
2020-10-16 17:31:32 +02:00
uuid_string_t uuid_str;
for (auto *n : nodes) {
nodeMap[n] = agnode(g, (char *) n->getNameShort().c_str(), 1);
uuid_unparse(n->getUuid(), uuid_str);
set_attr(nodeMap[n], "shape", "ellipse");
set_attr(nodeMap[n], "tooltip", fmt::format("type={}, uuid={}", *n->getFactory(), uuid_str));
// set_attr(nodeMap[n], "fixedsize", "true");
// set_attr(nodeMap[n], "width", "0.15");
// set_attr(nodeMap[n], "height", "0.15");
2020-10-16 17:31:32 +02:00
}
unsigned i = 0;
for (auto *p : paths) {
auto name = fmt::format("path_{}", i++);
2020-10-16 17:31:32 +02:00
m = agnode(g, (char *) name.c_str(), 1);
uuid_unparse(p->uuid, uuid_str);
set_attr(m, "shape", "box");
set_attr(m, "tooltip", fmt::format("uuid={}", uuid_str));
for (auto ps : p->sources)
agedge(g, nodeMap[ps->getNode()], m, nullptr, 1);
2020-10-16 17:31:32 +02:00
for (auto pd : p->destinations)
agedge(g, m, nodeMap[pd->getNode()], nullptr, 1);
2020-10-16 17:31:32 +02:00
}
return g;
2020-10-16 17:31:32 +02:00
}
#endif /* WITH_GRAPHVIZ */