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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

81 lines
1.8 KiB
C++
Raw Permalink Normal View History

/* Path restart hook.
2019-03-26 15:33:47 +01:00
*
* Author: Steffen Vogel <post@steffenvogel.de>
* SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
* SPDX-License-Identifier: Apache-2.0
*/
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;
2019-03-26 15:33:47 +01:00
virtual void start() {
assert(state == State::PREPARED);
2019-03-26 15:33:47 +01:00
prev = nullptr;
2019-03-26 15:33:47 +01:00
state = State::STARTED;
}
2019-03-26 15:33:47 +01:00
virtual void stop() {
assert(state == State::STARTED);
2019-03-26 15:33:47 +01:00
if (prev)
sample_decref(prev);
2019-03-26 15:33:47 +01:00
state = State::STOPPED;
}
2019-03-26 15:33:47 +01:00
virtual Hook::Reason process(struct Sample *smp) {
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
if (smp->sequence == 0 && prev->sequence != 0 &&
prev->sequence < UINT64_MAX - 16) {
logger->warn("Simulation from node {} restarted "
"(previous->sequence={}, current->sequence={})",
node->getName(), prev->sequence, smp->sequence);
2019-03-26 15:33:47 +01:00
smp->flags |= (int)SampleFlags::NEW_SIMULATION;
2019-03-26 15:33:47 +01:00
// Restart hooks
for (auto k : node->in.hooks)
k->restart();
2019-03-26 15:33:47 +01:00
for (auto k : node->out.hooks)
k->restart();
}
}
2019-03-26 15:33:47 +01:00
sample_incref(smp);
if (prev)
sample_decref(prev);
2019-03-26 15:33:47 +01:00
prev = smp;
2019-03-26 15:33:47 +01: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