2019-03-26 15:33:47 +01:00
|
|
|
/** Path restart hook.
|
|
|
|
*
|
2022-12-14 17:41:58 +01:00
|
|
|
* @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
|
|
|
*********************************************************************************/
|
|
|
|
|
2019-06-23 16:57:00 +02:00
|
|
|
#include <cinttypes>
|
2019-03-26 15:33:47 +01:00
|
|
|
|
|
|
|
#include <villas/hook.hpp>
|
2021-08-10 10:12:48 -04:00
|
|
|
#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:
|
2021-08-10 10:12:48 -04:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-08-10 10:12:48 -04: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={})",
|
2023-01-10 15:25:27 +01:00
|
|
|
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 */
|
2021-08-10 10:12:48 -04:00
|
|
|
for (auto k : node->in.hooks)
|
2019-03-26 15:33:47 +01:00
|
|
|
k->restart();
|
|
|
|
|
2021-08-10 10:12:48 -04:00
|
|
|
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 */
|
2020-06-14 15:00:02 +02:00
|
|
|
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 */
|