1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/include/villas/hook_list.hpp
Steffen Vogel dc436073a2 Use spaces for indention of C++ comments
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2024-02-29 23:18:47 +01:00

65 lines
1.2 KiB
C++

/* Hook list functions.
*
* This file includes some examples.
*
* Author: Steffen Vogel <post@steffenvogel.de>
* SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include <jansson.h>
#include <villas/hook.hpp>
namespace villas {
namespace node {
// Forward declarations
class Node;
class Path;
struct Sample;
class HookList : public std::list<Hook::Ptr> {
public:
HookList() {}
/* Parses an object of hooks
*
* Example:
*
* {
* stats = {
* output = "stdout"
* },
* skip_first = {
* seconds = 10
* },
* hooks = [ "print" ]
* }
*/
void parse(json_t *json, int mask, Path *p, Node *n);
void check();
void prepare(SignalList::Ptr sigs, int mask, Path *p, Node *n);
int process(struct Sample *smps[], unsigned cnt);
void periodic();
void start();
void stop();
void dump(villas::Logger logger, std::string subject) const;
SignalList::Ptr getSignals() const;
// Get the maximum number of signals which is used by any of the hooks in the list.
unsigned getSignalsMaxCount() const;
json_t *toJson() const;
};
} // namespace node
} // namespace villas