/** Receive messages from server snd print them on stdout. * * @file * @author Steffen Vogel * @copyright 2017-2018, 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 . *********************************************************************************/ /** * @addtogroup tools Test and debug tools * @{ */ #include #include #include #include #include #include #include #include #include #include #include #include #include int cnt; struct sample **smps; struct log l = { .state = STATE_DESTROYED }; struct pool q = { .state = STATE_DESTROYED }; struct hook h = { .state = STATE_DESTROYED }; struct io io = { .state = STATE_DESTROYED }; static void quit(int signal, siginfo_t *sinfo, void *ctx) { int ret; ret = hook_stop(&h); if (ret) error("Failed to stop hook"); ret = hook_destroy(&h); if (ret) error("Failed to destroy hook"); ret = io_close(&io); if (ret) error("Failed to close IO"); ret = io_destroy(&io); if (ret) error("Failed to destroy IO"); sample_free_many(smps, cnt); ret = pool_destroy(&q); if (ret) error("Failed to destroy memory pool"); info(CLR_GRN("Goodbye!")); exit(EXIT_SUCCESS); } static void usage() { std::cout << "Usage: villas-hook [OPTIONS] NAME [[PARAM1] [PARAM2] ...]" << std::endl; std::cout << " NAME the name of the hook function" << std::endl; std::cout << " PARAM* a string of configuration settings for the hook" << std::endl; std::cout << " OPTIONS is one or more of the following options:" << std::endl; std::cout << " -f FMT the data format" << std::endl; std::cout << " -d LVL set debug level to LVL" << std::endl; std::cout << " -v CNT process CNT smps at once" << std::endl; std::cout << " -h show this help" << std::endl; std::cout << " -V show the version of the tool" << std::endl << std::endl; std::cout << "Supported hooks:" << std::endl; plugin_dump(PLUGIN_TYPE_HOOK); std::cout << std::endl; std::cout << "Supported IO formats:" << std::endl; plugin_dump(PLUGIN_TYPE_FORMAT); std::cout << std::endl; std::cout << "Example:" << std::endl; std::cout << " villas-signal random | villas-hook skip_first seconds=10" << std::endl; std::cout << std::endl; print_copyright(); } int main(int argc, char *argv[]) { int ret, recv, sent; const char *format = "villas.human"; struct format_type *ft; struct hook_type *ht; /* Default values */ cnt = 1; json_t *cfg_cli = json_object(); char c, *endptr; while ((c = getopt(argc, argv, "Vhv:d:f:o:")) != -1) { switch (c) { case 'V': print_version(); exit(EXIT_SUCCESS); case 'f': format = optarg; break; case 'v': cnt = strtoul(optarg, &endptr, 0); goto check; case 'd': l.level = strtoul(optarg, &endptr, 0); goto check; case 'o': ret = json_object_extend_str(cfg_cli, optarg); if (ret) error("Invalid option: %s", optarg); break; case '?': case 'h': usage(); exit(c == '?' ? EXIT_FAILURE : EXIT_SUCCESS); } continue; check: if (optarg == endptr) error("Failed to parse parse option argument '-%c %s'", c, optarg); } if (argc < optind + 1) { usage(); exit(EXIT_FAILURE); } char *hook = argv[optind]; ret = log_init(&l, l.level, LOG_ALL); if (ret) error("Failed to initialize log"); ret = log_parse_wrapper(&l, cfg_cli); if (ret) error("Failed to parse log"); ret = log_open(&l); if (ret) error("Failed to start log"); ret = signals_init(quit); if (ret) error("Failed to intialize signals"); if (cnt < 1) error("Vectorize option must be greater than 0"); ret = memory_init(DEFAULT_NR_HUGEPAGES); if (ret) error("Failed to initialize memory"); smps = (struct sample **) alloc(cnt * sizeof(struct sample *)); ret = pool_init(&q, 10 * cnt, SAMPLE_LENGTH(DEFAULT_SAMPLE_LENGTH), &memory_hugepage); if (ret) error("Failed to initilize memory pool"); /* Initialize IO */ ft = format_type_lookup(format); if (!ft) error("Unknown IO format '%s'", format); ret = io_init_auto(&io, ft, DEFAULT_SAMPLE_LENGTH, SAMPLE_HAS_ALL); if (ret) error("Failed to initialize IO"); ret = io_check(&io); if (ret) error("Failed to validate IO configuration"); ret = io_open(&io, NULL); if (ret) error("Failed to open IO"); /* Initialize hook */ ht = hook_type_lookup(hook); if (!ht) error("Unknown hook function '%s'", hook); ret = hook_init(&h, ht, NULL, NULL); if (ret) error("Failed to initialize hook"); ret = hook_parse(&h, cfg_cli); if (ret) error("Failed to parse hook config"); ret = hook_start(&h); if (ret) error("Failed to start hook"); for (;;) { ret = sample_alloc_many(&q, smps, cnt); if (ret != cnt) error("Failed to allocate %d smps from pool", cnt); recv = io_scan(&io, smps, cnt); if (recv < 0) { if (io_eof(&io)) { killme(SIGTERM); pause(); } error("Failed to read from stdin"); } debug(15, "Read %u smps from stdin", recv); unsigned send = recv; hook_process(&h, smps, (unsigned *) &send); sent = io_print(&io, smps, send); if (sent < 0) error("Failed to write to stdout"); sample_free_many(smps, cnt); } return 0; }