mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
/** Drop hook.
|
|
*
|
|
* @author Steffen Vogel <post@steffenvogel.de>
|
|
* @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
|
|
* @license Apache 2.0
|
|
*********************************************************************************/
|
|
|
|
#include <cinttypes>
|
|
|
|
#include <villas/hook.hpp>
|
|
#include <villas/node.hpp>
|
|
#include <villas/sample.hpp>
|
|
#include <villas/timing.hpp>
|
|
|
|
namespace villas {
|
|
namespace node {
|
|
|
|
class FixHook : public Hook {
|
|
|
|
public:
|
|
using Hook::Hook;
|
|
|
|
virtual Hook::Reason process(struct Sample *smp)
|
|
{
|
|
assert(state == State::STARTED);
|
|
|
|
timespec now = time_now();
|
|
|
|
if (!(smp->flags & (int) SampleFlags::HAS_SEQUENCE) && node) {
|
|
smp->sequence = node->sequence++;
|
|
smp->flags |= (int) SampleFlags::HAS_SEQUENCE;
|
|
}
|
|
|
|
if (!(smp->flags & (int) SampleFlags::HAS_TS_RECEIVED)) {
|
|
smp->ts.received = now;
|
|
smp->flags |= (int) SampleFlags::HAS_TS_RECEIVED;
|
|
}
|
|
|
|
if (!(smp->flags & (int) SampleFlags::HAS_TS_ORIGIN)) {
|
|
smp->ts.origin = smp->ts.received;
|
|
smp->flags |= (int) SampleFlags::HAS_TS_ORIGIN;
|
|
}
|
|
|
|
return Reason::OK;
|
|
}
|
|
};
|
|
|
|
/* Register hook */
|
|
static char n[] = "fix";
|
|
static char d[] = "Fix received data by adding missing fields";
|
|
static HookPlugin<FixHook, n, d, (int) Hook::Flags::BUILTIN | (int) Hook::Flags::NODE_READ, 1> p;
|
|
|
|
} /* namespace node */
|
|
} /* namespace villas */
|
|
|