1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/lib/hooks/restart.cpp

82 lines
1.7 KiB
C++
Raw Permalink Normal View History

2019-03-26 15:33:47 +01:00
/** Path restart hook.
*
* @author Steffen Vogel <post@steffenvogel.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
2019-03-26 15:33:47 +01:00
*********************************************************************************/
#include <cinttypes>
2019-03-26 15:33:47 +01:00
#include <villas/hook.hpp>
#include <villas/node.hpp>
#include <villas/sample.hpp>
2019-03-26 15:33:47 +01:00
namespace villas {
namespace node {
class RestartHook : public Hook {
protected:
struct Sample *prev;
2019-03-26 15:33:47 +01:00
public:
using Hook::Hook;
virtual void start()
{
2019-06-23 16:13:23 +02:00
assert(state == State::PREPARED);
2019-03-26 15:33:47 +01:00
2019-04-07 13:23:43 +02:00
prev = nullptr;
2019-03-26 15:33:47 +01:00
2019-06-23 16:13:23 +02:00
state = State::STARTED;
2019-03-26 15:33:47 +01:00
}
virtual void stop()
{
2019-06-23 16:13:23 +02:00
assert(state == State::STARTED);
2019-03-26 15:33:47 +01:00
if (prev)
sample_decref(prev);
2019-06-23 16:13:23 +02:00
state = State::STOPPED;
2019-03-26 15:33:47 +01:00
}
virtual Hook::Reason process(struct Sample *smp)
2019-03-26 15:33:47 +01:00
{
2019-06-23 16:13:23 +02:00
assert(state == State::STARTED);
2019-03-26 15:33:47 +01:00
if (prev) {
/* A wrap around of the sequence no should not be treated as a simulation restart */
2019-04-08 10:05:01 +02:00
if (smp->sequence == 0 && prev->sequence != 0 && prev->sequence < UINT64_MAX - 16) {
2019-03-26 15:33:47 +01:00
logger->warn("Simulation from node {} restarted (previous->sequence={}, current->sequence={})",
node->getName(), prev->sequence, smp->sequence);
2019-03-26 15:33:47 +01:00
2019-06-23 16:13:23 +02:00
smp->flags |= (int) SampleFlags::IS_FIRST;
2019-03-26 15:33:47 +01:00
2019-04-08 10:05:01 +02:00
/* Restart hooks */
for (auto k : node->in.hooks)
2019-03-26 15:33:47 +01:00
k->restart();
for (auto k : node->out.hooks)
2019-03-26 15:33:47 +01:00
k->restart();
}
}
sample_incref(smp);
if (prev)
sample_decref(prev);
prev = smp;
2019-06-23 16:13:23 +02:00
return Reason::OK;
2019-03-26 15:33:47 +01:00
}
};
/* Register hook */
static char n[] = "restart";
static char d[] = "Call restart hooks for current node";
static HookPlugin<RestartHook, n, d, (int) Hook::Flags::BUILTIN | (int) Hook::Flags::NODE_READ, 1> p;
2019-03-26 15:33:47 +01:00
} /* namespace node */
} /* namespace villas */