mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-16 00:00:02 +01:00
117 lines
2.5 KiB
C++
117 lines
2.5 KiB
C++
/** Shift timestamps of samples.
|
|
*
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
* @copyright 2014-2019, Institute for Automation of Complex Power Systems, EONERC
|
|
* @license GNU General Public License (version 3)
|
|
*
|
|
* VILLASnode
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*********************************************************************************/
|
|
|
|
/** @addtogroup hooks Hook functions
|
|
* @{
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#include <villas/hook.hpp>
|
|
#include <villas/timing.h>
|
|
#include <villas/sample.h>
|
|
|
|
namespace villas {
|
|
namespace node {
|
|
|
|
class ShiftTimestampHook : public Hook {
|
|
|
|
protected:
|
|
timespec offset;
|
|
enum {
|
|
SHIFT_ORIGIN,
|
|
SHIFT_RECEIVED
|
|
} mode;
|
|
|
|
public:
|
|
ShiftTimestampHook(struct path *p, struct node *n, int fl, int prio, bool en = true) :
|
|
Hook(p, n, fl, prio, en),
|
|
mode(SHIFT_ORIGIN)
|
|
{ }
|
|
|
|
virtual void parse(json_t *cfg)
|
|
{
|
|
double o;
|
|
const char *m = NULL;
|
|
int ret;
|
|
json_error_t err;
|
|
|
|
assert(state != STATE_STARTED);
|
|
|
|
ret = json_unpack_ex(cfg, &err, 0, "{ s?: s, s: F }",
|
|
"mode", &m,
|
|
"offset", &o
|
|
);
|
|
if (ret)
|
|
throw ConfigError(cfg, err, "node-config-hook-shift_ts");
|
|
|
|
if (m) {
|
|
if (!strcmp(m, "origin"))
|
|
mode = SHIFT_ORIGIN;
|
|
else if (!strcmp(m, "received"))
|
|
mode = SHIFT_RECEIVED;
|
|
else
|
|
throw ConfigError(cfg, "node-config-hook-shift_ts-mode", "Invalid mode parameter '{}'", m);
|
|
}
|
|
|
|
offset = time_from_double(o);
|
|
|
|
state = STATE_PARSED;
|
|
}
|
|
|
|
virtual int process(sample *smp)
|
|
{
|
|
timespec *ts;
|
|
|
|
assert(state == STATE_STARTED);
|
|
|
|
switch (mode) {
|
|
case SHIFT_ORIGIN:
|
|
ts = &smp->ts.origin;
|
|
break;
|
|
|
|
case SHIFT_RECEIVED:
|
|
ts = &smp->ts.received;
|
|
break;
|
|
|
|
default:
|
|
return HOOK_ERROR;
|
|
}
|
|
|
|
*ts = time_add(ts, &offset);;
|
|
|
|
return HOOK_OK;
|
|
}
|
|
};
|
|
|
|
/* Register hook */
|
|
static HookPlugin<ShiftTimestampHook> p(
|
|
"shift_ts",
|
|
"Shift timestamps of samples",
|
|
HOOK_NODE_READ | HOOK_PATH,
|
|
99
|
|
);
|
|
|
|
} /* namespace node */
|
|
} /* namespace villas */
|
|
|
|
/** @} */
|