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/lib/hook_list.cpp

244 lines
5.3 KiB
C++
Raw Permalink Normal View History

/** Hook-releated functions.
*
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
2020-01-20 17:17:00 +01:00
* @copyright 2014-2020, 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/>.
*********************************************************************************/
2019-03-26 15:33:47 +01:00
#include <villas/plugin.hpp>
#include <villas/hook.hpp>
2019-04-23 13:12:04 +02:00
#include <villas/hook_list.hpp>
#include <villas/list.h>
#include <villas/utils.hpp>
#include <villas/sample.h>
2019-03-26 15:33:47 +01:00
using namespace villas;
using namespace villas::node;
2021-02-16 14:15:14 +01:00
int hook_list_init(struct vlist *hs)
{
int ret;
ret = vlist_init(hs);
if (ret)
return ret;
return 0;
}
2019-03-26 15:33:47 +01:00
static int hook_destroy(Hook *h)
{
delete h;
return 0;
}
2021-02-16 14:15:14 +01:00
int hook_list_destroy(struct vlist *hs)
{
int ret;
2019-03-26 15:33:47 +01:00
ret = vlist_destroy(hs, (dtor_cb_t) hook_destroy, false);
if (ret)
return ret;
return 0;
}
2021-02-16 14:15:14 +01:00
void hook_list_parse(struct vlist *hs, json_t *json, int mask, struct vpath *o, struct vnode *n)
{
2021-02-16 14:15:14 +01:00
if (!json_is_array(json))
throw ConfigError(json, "node-config-hook", "Hooks must be configured as a list of hook objects");
size_t i;
json_t *json_hook;
2021-02-16 14:15:14 +01:00
json_array_foreach(json, i, json_hook) {
int ret;
const char *type;
2019-03-26 15:33:47 +01:00
Hook *h;
json_error_t err;
ret = json_unpack_ex(json_hook, &err, 0, "{ s: s }", "type", &type);
if (ret)
2019-03-26 15:33:47 +01:00
throw ConfigError(json_hook, err, "node-config-hook", "Failed to parse hook");
2019-03-26 15:33:47 +01:00
auto hf = plugin::Registry::lookup<HookFactory>(type);
if (!hf)
2020-08-17 17:10:07 +02:00
throw ConfigError(json_hook, "node-config-hook", "Unknown hook type '{}'", type);
2019-03-26 15:33:47 +01:00
if (!(hf->getFlags() & mask))
throw ConfigError(json_hook, "node-config-hook", "Hook '{}' not allowed here", type);
h = hf->make(o, n);
h->parse(json_hook);
h->check();
vlist_push(hs, h);
}
}
2019-03-26 15:33:47 +01:00
static int hook_cmp_priority(const Hook *a, const Hook *b)
{
2019-03-26 15:33:47 +01:00
return a->getPriority() - b->getPriority();
}
static int hook_is_enabled(const Hook *h)
{
return h->isEnabled() ? 0 : -1;
}
2021-02-16 14:15:14 +01:00
void hook_list_prepare(struct vlist *hs, vlist *sigs, int m, struct vpath *p, struct vnode *n)
{
2019-06-23 16:13:23 +02:00
assert(hs->state == State::INITIALIZED);
2019-03-26 15:33:47 +01:00
/* Add internal hooks if they are not already in the list */
2021-06-18 22:08:16 -04:00
if (m) {
for (auto f : plugin::Registry::lookup<HookFactory>()) {
if ((f->getFlags() & m) == m) {
auto h = f->make(p, n);
2021-06-18 22:08:16 -04:00
vlist_push(hs, h);
}
2019-03-26 15:33:47 +01:00
}
}
/* Remove filters which are not enabled */
vlist_filter(hs, (dtor_cb_t) hook_is_enabled);
2019-03-26 15:33:47 +01:00
/* We sort the hooks according to their priority */
vlist_sort(hs, (cmp_cb_t) hook_cmp_priority);
2021-06-18 22:08:16 -04:00
/* Prepare signal list by passing is through all hooks */
2019-03-26 15:33:47 +01:00
for (size_t i = 0; i < vlist_length(hs); i++) {
Hook *h = (Hook *) vlist_at(hs, i);
h->prepare(sigs);
2019-03-26 15:33:47 +01:00
sigs = h->getSignals();
2021-02-16 14:15:14 +01:00
auto logger = logging.get("hook");
signal_list_dump(logger, sigs);
}
}
2021-06-29 10:45:12 -04:00
int hook_list_process(struct vlist *hs, struct sample *smps[], unsigned cnt)
{
unsigned processed = 0;
2019-03-26 15:33:47 +01:00
if (vlist_length(hs) == 0)
return cnt;
for (unsigned i = 0; i < cnt; i++) {
2021-06-29 10:45:12 -04:00
struct sample *smp = smps[i];
for (size_t j = 0; j < vlist_length(hs); j++) {
Hook *h = (Hook *) vlist_at(hs, j);
2019-03-26 15:33:47 +01:00
2021-06-29 10:45:12 -04:00
/* Clone the sample if it has multiple owners
*
* E.g. the sample is enqueued to to multiple outgoing nodes which have mutating out hooks.
*/
if (!h->isReadOnly())
smp = sample_make_mutable(smp);
2019-06-23 16:13:23 +02:00
auto ret = h->process(smp);
smp->signals = h->getSignals();
switch (ret) {
2019-06-23 16:13:23 +02:00
case Hook::Reason::ERROR:
return -1;
2019-06-23 16:13:23 +02:00
case Hook::Reason::OK:
2019-03-26 15:33:47 +01:00
continue;
2019-06-23 16:13:23 +02:00
case Hook::Reason::SKIP_SAMPLE:
goto skip;
2019-06-23 16:13:23 +02:00
case Hook::Reason::STOP_PROCESSING:
goto stop;
}
}
2019-03-26 15:33:47 +01:00
stop: SWAP(smps[processed], smps[i]);
processed++;
skip: {}
}
return processed;
}
2021-02-16 14:15:14 +01:00
void hook_list_periodic(struct vlist *hs)
{
for (size_t j = 0; j < vlist_length(hs); j++) {
2019-03-26 15:33:47 +01:00
Hook *h = (Hook *) vlist_at(hs, j);
h->periodic();
}
}
2021-02-16 14:15:14 +01:00
void hook_list_start(struct vlist *hs)
{
for (size_t i = 0; i < vlist_length(hs); i++) {
2019-03-26 15:33:47 +01:00
Hook *h = (Hook *) vlist_at(hs, i);
h->start();
}
}
2021-02-16 14:15:14 +01:00
void hook_list_stop(struct vlist *hs)
{
for (size_t i = 0; i < vlist_length(hs); i++) {
2019-03-26 15:33:47 +01:00
Hook *h = (Hook *) vlist_at(hs, i);
h->stop();
}
}
2021-02-16 14:15:14 +01:00
struct vlist * hook_list_get_signals(struct vlist *hs)
{
2019-03-26 15:33:47 +01:00
Hook *h = (Hook *) vlist_last(hs);
2021-06-24 06:27:35 -04:00
if (!h)
return nullptr;
2019-03-26 15:33:47 +01:00
return h->getSignals();
}
2020-08-25 20:24:18 +02:00
2021-02-16 14:15:14 +01:00
json_t * hook_list_to_json(struct vlist *hs)
2020-08-25 20:24:18 +02:00
{
json_t *json_hooks = json_array();
for (size_t i = 0; i < vlist_length(hs); i++) {
Hook *h = (Hook *) vlist_at_safe(hs, i);
json_array_append(json_hooks, h->getConfig());
}
return json_hooks;
2021-02-16 14:15:14 +01:00
}
2021-06-18 22:08:16 -04:00
bool hook_list_is_read_only(struct vlist *hs)
{
bool ret = true;
for (size_t i = 0; i < vlist_length(hs); i++) {
Hook *h = (Hook *) vlist_at_safe(hs, i);
ret &= h->isReadOnly();
}
return ret;
}