1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/src/hook.c

136 lines
3.2 KiB
C
Raw Normal View History

/** Receive messages from server snd print them on stdout.
*
* @file
* @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.
*
* @addtogroup tools Test and debug tools
* @{
*********************************************************************************/
#include <stdio.h>
#include <unistd.h>
#include <villas/sample.h>
2016-11-20 13:11:37 -05:00
#include <villas/hook.h>
#include <villas/utils.h>
#include <villas/pool.h>
#include <villas/log.h>
#include <villas/plugin.h>
#include <villas/kernel/rt.h>
2016-11-20 02:45:39 -05:00
#include "config.h"
static void usage()
{
printf("Usage: villas-hook [OPTIONS] NAME [PARAMETER] \n");
printf(" NAME the name of the hook function to run\n");
printf(" PARAM the name of the node to which samples are sent and received from\n\n");
printf(" OPTIONS are:\n");
printf(" -h show this help\n");
printf(" -d LVL set debug level to LVL\n");
printf(" -v CNT process CNT samples at once\n\n");
print_copyright();
}
int main(int argc, char *argv[])
{
int j, ret, level, cnt;
/* Default values */
level = V;
cnt = 1;
char *name, *parameter;
struct log log;
struct plugin *p;
2017-03-17 01:08:48 -03:00
struct sample *samples[cnt];
struct pool pool = { .state = STATE_DESTROYED };
struct hook h = { .state = STATE_DESTROYED };
struct hook_info hi = { .samples = samples };
char c;
while ((c = getopt(argc, argv, "hv:d:")) != -1) {
switch (c) {
case 'v':
cnt = atoi(optarg);
break;
case 'd':
level = atoi(optarg);
break;
case 'h':
case '?':
usage();
exit(c == '?' ? EXIT_FAILURE : EXIT_SUCCESS);
}
}
log_init(&log, level, LOG_ALL);
memory_init(DEFAULT_NR_HUGEPAGES);
if (argc < optind + 1) {
usage();
exit(EXIT_FAILURE);
}
if (cnt < 1)
error("Vectorize option must be greater than 0");
ret = pool_init(&pool, 10 * cnt, SAMPLE_LEN(DEFAULT_VALUES), &memtype_hugepage);
if (ret)
error("Failed to initilize memory pool");
2017-03-17 01:08:48 -03:00
name = argv[optind];
parameter = argc >= optind + 2 ? argv[optind + 1] : NULL;
h.parameter = parameter;
2017-03-17 01:08:48 -03:00
p = plugin_lookup(PLUGIN_TYPE_HOOK, name);
if (!p)
error("Unknown hook function '%s'", argv[optind]);
2017-03-17 01:08:48 -03:00
hook_init(&h, &p->hook, NULL);
hook_run(&h, HOOK_PARSE, &hi);
hook_run(&h, HOOK_PATH_START, &hi);
while (!feof(stdin)) {
ret = sample_alloc(&pool, samples, cnt);
if (ret != cnt)
error("Failed to allocate %u samples from pool", cnt);
2017-03-17 01:08:48 -03:00
for (j = 0; j < cnt && !feof(stdin); j++) {
ret = sample_fscan(stdin, hi.samples[j], NULL);
if (ret < 0)
break;
}
debug(15, "Read %d samples from stdin", cnt);
2017-03-17 01:08:48 -03:00
hi.count = j;
2017-03-17 01:08:48 -03:00
if (h._vt->when & HOOK_READ)
hi.count = h._vt->cb(&h, HOOK_READ, &hi);
if (h._vt->when & HOOK_WRITE)
hi.count = h._vt->cb(&h, HOOK_WRITE, &hi);
2017-03-17 01:08:48 -03:00
for (j = 0; j < hi.count; j++)
sample_fprint(stdout, hi.samples[j], SAMPLE_ALL);
sample_free(samples, cnt);
}
2017-03-17 01:08:48 -03:00
hook_run(&h, HOOK_PATH_STOP, &hi);
hook_destroy(&h);
sample_free(samples, cnt);
pool_destroy(&pool);
return 0;
}