/** Shift sequence number 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 <villas/hook.hpp>
#include <villas/sample.h>

namespace villas {
namespace node {

class ShiftSequenceHook : public Hook {

protected:
	int offset;

public:

	using Hook::Hook;

	virtual void parse(json_t *cfg)
	{
		json_error_t err;
		int ret;

		assert(state != STATE_STARTED);

		ret = json_unpack_ex(cfg, &err, 0, "{ s: i }",
			"offset", &offset
		);
		if (ret)
			throw ConfigError(cfg, err, "node-config-hook-shift_seq");

		state = STATE_PARSED;
	}

	virtual int process(sample *smp)
	{
		assert(state == STATE_STARTED);

		smp->sequence += offset;

		return HOOK_OK;
	}
};

/* Register hook */
static HookPlugin<ShiftSequenceHook> p(
	"shift_seq",
	"Shift sequence number of samples",
	HOOK_NODE_READ | HOOK_PATH,
	99
);

} /* namespace node */
} /* namespace villas */

/** @} */