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

166 lines
4.5 KiB
C++
Raw Normal View History

/** Main routine.
*
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
2018-08-20 18:39:04 +02:00
* @copyright 2017-2018, Institute for Automation of Complex Power Systems, EONERC
2017-04-27 12:56:43 +02:00
* @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.
*
2017-04-27 12:56:43 +02:00
* 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.
*
2017-04-27 12:56:43 +02:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2015-06-02 21:53:04 +02:00
*********************************************************************************/
#include <stdlib.h>
#include <unistd.h>
2015-08-22 17:42:38 +02:00
2018-07-03 21:04:28 +02:00
#include <iostream>
#include <villas/node/config.h>
2016-06-14 01:19:17 +02:00
#include <villas/utils.h>
#include <villas/super_node.h>
#include <villas/memory.h>
2016-06-14 01:19:17 +02:00
#include <villas/node.h>
2017-03-17 01:08:48 -03:00
#include <villas/path.h>
2017-02-18 10:58:17 -05:00
#include <villas/api.h>
#include <villas/web.h>
#include <villas/task.h>
2017-03-03 20:21:33 -04:00
#include <villas/plugin.h>
2016-06-14 01:19:17 +02:00
#include <villas/kernel/kernel.h>
#include <villas/kernel/rt.h>
2016-11-20 13:11:37 -05:00
#include <villas/hook.h>
#include <villas/stats.h>
2017-02-18 10:58:17 -05:00
#ifdef ENABLE_OPAL_ASYNC
2016-11-20 02:45:39 -05:00
#include <villas/nodes/opal.h>
#endif
2018-07-03 21:51:48 +02:00
using namespace villas::node;
SuperNode sn;
2017-03-06 19:09:44 -04:00
static void quit(int signal, siginfo_t *sinfo, void *ctx)
{
2017-07-12 00:59:52 +02:00
int ret;
2018-07-03 21:51:48 +02:00
ret = sn.stop();
2017-07-12 00:59:52 +02:00
if (ret)
error("Failed to stop super node");
2015-08-07 01:11:43 +02:00
2017-07-12 00:59:52 +02:00
info(CLR_GRN("Goodbye!"));
exit(EXIT_SUCCESS);
}
2016-10-22 20:37:02 -04:00
static void usage()
{
2018-07-03 21:04:28 +02:00
std::cout << "Usage: villas-node [OPTIONS] [CONFIG]" << std::endl;
std::cout << " OPTIONS is one or more of the following options:" << std::endl;
std::cout << " -h show this usage information" << std::endl;
std::cout << " -V show the version of the tool" << std::endl << std::endl;
std::cout << " CONFIG is the path to an optional configuration file" << std::endl;
std::cout << " if omitted, VILLASnode will start without a configuration" << std::endl;
std::cout << " and wait for provisioning over the web interface." << std::endl << std::endl;
#ifdef ENABLE_OPAL_ASYNC
2018-07-03 21:04:28 +02:00
std::cout << "Usage: villas-node OPAL_ASYNC_SHMEM_NAME OPAL_ASYNC_SHMEM_SIZE OPAL_PRINT_SHMEM_NAME" << std::endl;
std::cout << " This type of invocation is used by OPAL-RT Asynchronous processes." << std::endl;
std::cout << " See in the RT-LAB User Guide for more information." << std::endl << std::endl;
#endif /* ENABLE_OPAL_ASYNC */
2017-08-05 21:02:09 +02:00
2018-07-03 21:04:28 +02:00
std::cout << "Supported node-types:" << std::endl;
2017-03-03 20:21:33 -04:00
plugin_dump(PLUGIN_TYPE_NODE);
2018-07-03 21:04:28 +02:00
std::cout << std::endl;
#ifdef WITH_HOOKS
2018-07-03 21:04:28 +02:00
std::cout << "Supported hooks:" << std::endl;
2017-03-03 20:21:33 -04:00
plugin_dump(PLUGIN_TYPE_HOOK);
2018-07-03 21:04:28 +02:00
std::cout << std::endl;
#endif /* WITH_HOOKS */
2018-07-03 21:04:28 +02:00
std::cout << "Supported API commands:" << std::endl;
2017-03-03 20:21:33 -04:00
plugin_dump(PLUGIN_TYPE_API);
2018-07-03 21:04:28 +02:00
std::cout << std::endl;
2018-07-03 21:04:28 +02:00
std::cout << "Supported IO formats:" << std::endl;
2018-05-12 13:56:12 +02:00
plugin_dump(PLUGIN_TYPE_FORMAT);
2018-07-03 21:04:28 +02:00
std::cout << std::endl;
2017-08-05 21:02:09 +02:00
print_copyright();
exit(EXIT_FAILURE);
}
int main(int argc, char *argv[])
{
int ret;
/* Check arguments */
#ifdef ENABLE_OPAL_ASYNC
2017-02-18 10:58:17 -05:00
if (argc != 4)
usage(argv[0]);
opal_register_region(argc, argv);
2018-07-03 20:42:37 +02:00
const char *uri = "opal-shmem.conf";
#else
2018-09-26 22:47:58 +00:00
int c;
while ((c = getopt(argc, argv, "hV")) != -1) {
switch (c) {
case 'V':
print_version();
exit(EXIT_SUCCESS);
case 'h':
case '?':
usage();
exit(c == '?' ? EXIT_FAILURE : EXIT_SUCCESS);
}
continue;
}
2018-08-27 11:21:57 +02:00
char *uri = argc == optind + 1 ? argv[optind] : nullptr;
#endif /* ENABLE_OPAL_ASYNC */
info("This is VILLASnode %s (built on %s, %s)", CLR_BLD(CLR_YEL(PROJECT_BUILD_ID)),
2017-07-12 00:50:29 +02:00
CLR_BLD(CLR_MAG(__DATE__)), CLR_BLD(CLR_MAG(__TIME__)));
#ifdef __linux__
2015-09-17 00:55:20 +02:00
/* Checks system requirements*/
struct version kver, reqv = { KERNEL_VERSION_MAJ, KERNEL_VERSION_MIN };
if (kernel_get_version(&kver) == 0 && version_cmp(&kver, &reqv) < 0)
2015-09-17 00:55:20 +02:00
error("Your kernel version is to old: required >= %u.%u", KERNEL_VERSION_MAJ, KERNEL_VERSION_MIN);
#endif /* __linux__ */
ret = signals_init(quit);
if (ret)
error("Failed to initialize signal subsystem");
2017-09-02 14:20:38 +02:00
2018-07-03 21:51:48 +02:00
ret = sn.parseUri(uri);
if (ret)
2018-07-03 21:51:48 +02:00
error("Failed to parse command line arguments");
2017-09-02 14:20:38 +02:00
2018-07-03 21:51:48 +02:00
ret = sn.init();
if (ret)
2018-07-03 21:51:48 +02:00
error("Failed to initialize super node");
2017-09-02 14:20:38 +02:00
2018-07-03 21:51:48 +02:00
ret = sn.check();
if (ret)
error("Failed to verify configuration");
2017-09-02 14:20:38 +02:00
2018-07-03 21:51:48 +02:00
ret = sn.start();
if (ret)
error("Failed to start super node");
2018-07-03 21:51:48 +02:00
sn.run();
return 0;
}