/** Drop hook. * * @author Steffen Vogel * @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC * @license Apache 2.0 *********************************************************************************/ #include #include #include #include #include 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 p; } /* namespace node */ } /* namespace villas */