mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-16 00:00:02 +01:00
70 lines
No EOL
1.7 KiB
C
70 lines
No EOL
1.7 KiB
C
/** Hook-releated functions.
|
|
*
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
* @copyright 2014-2016, Institute for Automation of Complex Power Systems, EONERC
|
|
* This file is part of VILLASnode. All Rights Reserved. Proprietary and confidential.
|
|
* Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
*********************************************************************************/
|
|
|
|
#include <string.h>
|
|
#include <math.h>
|
|
|
|
#include "timing.h"
|
|
#include "config.h"
|
|
#include "msg.h"
|
|
#include "hooks.h"
|
|
#include "path.h"
|
|
#include "utils.h"
|
|
#include "node.h"
|
|
|
|
struct list hooks;
|
|
|
|
/* Those references can be used inside the hook callbacks after initializing them with hook_init() */
|
|
struct list *hook_nodes = NULL;
|
|
struct list *hook_paths = NULL;
|
|
struct settings *hook_settings = NULL;
|
|
|
|
void hook_init(struct list *nodes, struct list *paths, struct settings *set)
|
|
{
|
|
hook_nodes = nodes;
|
|
hook_paths = paths;
|
|
hook_settings = set;
|
|
}
|
|
|
|
int hooks_sort_priority(const void *a, const void *b) {
|
|
struct hook *ha = (struct hook *) a;
|
|
struct hook *hb = (struct hook *) b;
|
|
|
|
return ha->priority - hb->priority;
|
|
}
|
|
|
|
int hook_run(struct path *p, struct sample *smps[], size_t cnt, int when)
|
|
{
|
|
list_foreach(struct hook *h, &p->hooks) {
|
|
if (h->type & when) {
|
|
debug(LOG_HOOK | 22, "Running hook when=%u '%s' prio=%u, cnt=%zu", when, h->name, h->priority, cnt);
|
|
|
|
cnt = h->cb(p, h, when, smps, cnt);
|
|
if (cnt == 0)
|
|
break;
|
|
}
|
|
}
|
|
|
|
return cnt;
|
|
}
|
|
|
|
void * hook_storage(struct hook *h, int when, size_t len)
|
|
{
|
|
switch (when) {
|
|
case HOOK_INIT:
|
|
h->_vd = alloc(len);
|
|
break;
|
|
|
|
case HOOK_DEINIT:
|
|
free(h->_vd);
|
|
h->_vd = NULL;
|
|
break;
|
|
}
|
|
|
|
return h->_vd;
|
|
} |