2019-03-26 15:33:47 +01:00
|
|
|
/* Path restart hook.
|
|
|
|
*
|
2022-03-15 09:18:01 -04:00
|
|
|
* Author: Steffen Vogel <post@steffenvogel.de>
|
2022-03-15 09:28:57 -04:00
|
|
|
* SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
2022-07-04 18:20:03 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
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:
|
2023-09-07 11:46:39 +02:00
|
|
|
struct Sample *prev;
|
2019-03-26 15:33:47 +01:00
|
|
|
|
|
|
|
public:
|
2023-09-07 11:46:39 +02:00
|
|
|
using Hook::Hook;
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +02:00
|
|
|
virtual void start() {
|
|
|
|
assert(state == State::PREPARED);
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +02:00
|
|
|
prev = nullptr;
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +02:00
|
|
|
state = State::STARTED;
|
|
|
|
}
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +02:00
|
|
|
virtual void stop() {
|
|
|
|
assert(state == State::STARTED);
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +02:00
|
|
|
if (prev)
|
|
|
|
sample_decref(prev);
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +02:00
|
|
|
state = State::STOPPED;
|
|
|
|
}
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +02:00
|
|
|
virtual Hook::Reason process(struct Sample *smp) {
|
|
|
|
assert(state == State::STARTED);
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +02: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
|
|
|
|
2023-09-07 10:11:32 +02:00
|
|
|
smp->flags |= (int)SampleFlags::NEW_SIMULATION;
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +02:00
|
|
|
// Restart hooks
|
|
|
|
for (auto k : node->in.hooks)
|
|
|
|
k->restart();
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +02:00
|
|
|
for (auto k : node->out.hooks)
|
|
|
|
k->restart();
|
|
|
|
}
|
|
|
|
}
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +02:00
|
|
|
sample_incref(smp);
|
|
|
|
if (prev)
|
|
|
|
sample_decref(prev);
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +02:00
|
|
|
prev = smp;
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-09-07 11:46:39 +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";
|
2023-09-07 11:46:39 +02:00
|
|
|
static HookPlugin<RestartHook, n, d,
|
|
|
|
(int)Hook::Flags::BUILTIN | (int)Hook::Flags::NODE_READ, 1>
|
|
|
|
p;
|
2019-03-26 15:33:47 +01:00
|
|
|
|
2023-08-28 09:34:02 +02:00
|
|
|
} // namespace node
|
|
|
|
} // namespace villas
|