2014-07-14 11:49:44 +00:00
|
|
|
/** Main routine.
|
2014-06-05 09:34:29 +00:00
|
|
|
*
|
|
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
2019-01-13 00:42:39 +01:00
|
|
|
* @copyright 2014-2019, 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-05-05 19:24:16 +00:00
|
|
|
*
|
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-05-05 19:24:16 +00:00
|
|
|
*
|
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
|
|
|
*********************************************************************************/
|
2014-06-05 09:34:29 +00: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>
|
2018-10-20 14:20:51 +02:00
|
|
|
#include <exception>
|
|
|
|
#include <atomic>
|
2018-07-03 21:04:28 +02:00
|
|
|
|
2018-08-23 17:31:01 +02:00
|
|
|
#include <villas/node/config.h>
|
2018-10-20 14:20:51 +02:00
|
|
|
#include <villas/version.hpp>
|
|
|
|
#include <villas/utils.hpp>
|
|
|
|
#include <villas/super_node.hpp>
|
|
|
|
#include <villas/plugin.hpp>
|
|
|
|
#include <villas/api/action.hpp>
|
2016-11-20 02:45:16 -05:00
|
|
|
#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>
|
2018-10-20 14:20:51 +02:00
|
|
|
#include <villas/api.hpp>
|
2019-03-26 15:33:47 +01:00
|
|
|
#include <villas/hook.hpp>
|
2018-10-20 14:20:51 +02:00
|
|
|
#include <villas/web.hpp>
|
|
|
|
#include <villas/log.hpp>
|
|
|
|
#include <villas/exceptions.hpp>
|
2019-01-12 13:48:29 +01:00
|
|
|
#include <villas/copyright.hpp>
|
2017-03-03 20:21:33 -04:00
|
|
|
#include <villas/plugin.h>
|
2018-10-20 14:20:51 +02:00
|
|
|
#include <villas/kernel/kernel.hpp>
|
|
|
|
#include <villas/kernel/rt.hpp>
|
2017-02-18 10:58:17 -05:00
|
|
|
|
2015-03-17 22:46:46 +01:00
|
|
|
#ifdef ENABLE_OPAL_ASYNC
|
2016-11-20 02:45:39 -05:00
|
|
|
#include <villas/nodes/opal.h>
|
2015-03-17 22:46:46 +01:00
|
|
|
#endif
|
|
|
|
|
2018-10-20 14:20:51 +02:00
|
|
|
using namespace villas;
|
2018-07-03 21:51:48 +02:00
|
|
|
using namespace villas::node;
|
2018-10-20 14:20:51 +02:00
|
|
|
using namespace villas::plugin;
|
2018-07-03 21:51:48 +02:00
|
|
|
|
2019-02-11 16:39:30 +01:00
|
|
|
SuperNode sn;
|
2014-06-10 16:57:40 +00:00
|
|
|
|
2017-03-06 19:09:44 -04:00
|
|
|
static void quit(int signal, siginfo_t *sinfo, void *ctx)
|
2015-03-21 18:03:29 +01:00
|
|
|
{
|
2019-02-11 16:39:30 +01:00
|
|
|
Logger logger = logging.get("node");
|
|
|
|
|
|
|
|
switch (signal) {
|
|
|
|
case SIGALRM:
|
|
|
|
logger->info("Reached timeout. Terminating...");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
logger->info("Received {} signal. Terminating...", strsignal(signal));
|
|
|
|
}
|
|
|
|
|
|
|
|
sn.setState(STATE_STOPPING);
|
2014-06-05 09:34:29 +00:00
|
|
|
}
|
|
|
|
|
2016-10-22 20:37:02 -04:00
|
|
|
static void usage()
|
2014-12-05 12:41:06 +01:00
|
|
|
{
|
2018-08-27 11:25:56 +02:00
|
|
|
std::cout << "Usage: villas-node [OPTIONS] [CONFIG]" << std::endl
|
|
|
|
<< " OPTIONS is one or more of the following options:" << std::endl
|
|
|
|
<< " -h show this usage information" << std::endl
|
2018-10-20 14:20:51 +02:00
|
|
|
<< " -d LVL set logging level" << std::endl
|
2018-08-27 11:25:56 +02:00
|
|
|
<< " -V show the version of the tool" << std::endl << std::endl
|
|
|
|
<< " CONFIG is the path to an optional configuration file" << std::endl
|
|
|
|
<< " if omitted, VILLASnode will start without a configuration" << std::endl
|
|
|
|
<< " and wait for provisioning over the web interface." << std::endl << std::endl
|
2015-03-17 22:46:46 +01:00
|
|
|
#ifdef ENABLE_OPAL_ASYNC
|
2018-08-27 11:25:56 +02:00
|
|
|
<< "Usage: villas-node OPAL_ASYNC_SHMEM_NAME OPAL_ASYNC_SHMEM_SIZE OPAL_PRINT_SHMEM_NAME" << std::endl
|
|
|
|
<< " This type of invocation is used by OPAL-RT Asynchronous processes." << std::endl
|
|
|
|
<< " See in the RT-LAB User Guide for more information." << std::endl << std::endl
|
2018-02-06 21:26:12 +01:00
|
|
|
#endif /* ENABLE_OPAL_ASYNC */
|
2017-08-05 21:02:09 +02:00
|
|
|
|
2018-08-27 11:25:56 +02:00
|
|
|
<< "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;
|
2017-05-05 19:24:16 +00:00
|
|
|
|
2017-12-09 02:23:29 +08:00
|
|
|
#ifdef WITH_HOOKS
|
2018-07-03 21:04:28 +02:00
|
|
|
std::cout << "Supported hooks:" << std::endl;
|
2019-03-26 15:33:47 +01:00
|
|
|
for (Plugin *p : Registry::lookup<HookFactory>())
|
|
|
|
std::cout << " - " << p->getName() << ": " << p->getDescription() << std::endl;
|
2018-07-03 21:04:28 +02:00
|
|
|
std::cout << std::endl;
|
2018-02-06 21:26:12 +01:00
|
|
|
#endif /* WITH_HOOKS */
|
2017-05-05 19:24:16 +00:00
|
|
|
|
2018-10-20 14:20:51 +02:00
|
|
|
#ifdef WITH_API
|
2018-07-03 21:04:28 +02:00
|
|
|
std::cout << "Supported API commands:" << std::endl;
|
2018-10-20 14:20:51 +02:00
|
|
|
for (Plugin *p : Registry::lookup<api::ActionFactory>())
|
|
|
|
std::cout << " - " << p->getName() << ": " << p->getDescription() << std::endl;
|
2018-07-03 21:04:28 +02:00
|
|
|
std::cout << std::endl;
|
2018-10-20 14:20:51 +02:00
|
|
|
#endif /* WITH_API */
|
2016-01-15 15:25:22 +01:00
|
|
|
|
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
|
|
|
|
2016-01-15 15:25:22 +01:00
|
|
|
print_copyright();
|
2014-12-05 12:41:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2017-08-27 18:44:03 +02:00
|
|
|
int ret;
|
|
|
|
|
2018-10-21 22:28:38 +01:00
|
|
|
Logger logger = logging.get("node");
|
|
|
|
|
2018-10-20 14:20:51 +02:00
|
|
|
try {
|
2019-03-26 17:04:57 +01:00
|
|
|
/* Check arguments */
|
2015-03-17 22:46:46 +01:00
|
|
|
#ifdef ENABLE_OPAL_ASYNC
|
2019-03-31 19:58:53 +02:00
|
|
|
if (argc != 4) {
|
|
|
|
usage();
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2017-05-05 19:24:16 +00:00
|
|
|
|
2019-03-26 17:04:57 +01:00
|
|
|
opal_register_region(argc, argv);
|
2017-09-16 11:52:30 +02:00
|
|
|
|
2019-03-26 17:04:57 +01:00
|
|
|
const char *uri = "opal-shmem.conf";
|
2015-03-12 22:56:58 +01:00
|
|
|
#else
|
2018-10-04 02:41:01 +02:00
|
|
|
|
2019-03-26 17:04:57 +01:00
|
|
|
/* Parse optional command line arguments */
|
|
|
|
int c;
|
|
|
|
while ((c = getopt(argc, argv, "hVd:")) != -1) {
|
|
|
|
switch (c) {
|
|
|
|
case 'V':
|
|
|
|
print_version();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
|
|
|
|
case 'd':
|
|
|
|
logging.setLevel(optarg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'h':
|
|
|
|
case '?':
|
|
|
|
usage();
|
|
|
|
exit(c == '?' ? EXIT_FAILURE : EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
2017-09-16 11:52:30 +02:00
|
|
|
}
|
|
|
|
|
2019-03-26 17:04:57 +01:00
|
|
|
char *uri = argc == optind + 1 ? argv[optind] : nullptr;
|
2017-12-09 02:23:29 +08:00
|
|
|
#endif /* ENABLE_OPAL_ASYNC */
|
2017-09-16 11:52:30 +02:00
|
|
|
|
2019-03-26 17:04:57 +01:00
|
|
|
logger->info("This is VILLASnode {} (built on {}, {})",
|
|
|
|
CLR_BLD(CLR_YEL(PROJECT_BUILD_ID)),
|
|
|
|
CLR_BLD(CLR_MAG(__DATE__)), CLR_BLD(CLR_MAG(__TIME__)));
|
2015-03-12 22:56:58 +01:00
|
|
|
|
2017-07-24 19:21:57 +02:00
|
|
|
#ifdef __linux__
|
2019-03-26 17:04:57 +01:00
|
|
|
/* Checks system requirements*/
|
|
|
|
auto required = utils::Version(KERNEL_VERSION_MAJ, KERNEL_VERSION_MIN);
|
|
|
|
if (kernel::getVersion() < required)
|
|
|
|
throw RuntimeError("Your kernel version is to old: required >= {}.{}", KERNEL_VERSION_MAJ, KERNEL_VERSION_MIN);
|
2017-07-24 19:21:57 +02:00
|
|
|
#endif /* __linux__ */
|
2015-05-07 19:02:12 +02:00
|
|
|
|
2019-03-26 17:04:57 +01:00
|
|
|
ret = utils::signals_init(quit);
|
|
|
|
if (ret)
|
|
|
|
throw RuntimeError("Failed to initialize signal subsystem");
|
2017-09-02 14:20:38 +02:00
|
|
|
|
2019-03-26 17:04:57 +01:00
|
|
|
if (uri)
|
|
|
|
sn.parse(uri);
|
|
|
|
else
|
|
|
|
logger->warn("No configuration file specified. Starting unconfigured. Use the API to configure this instance.");
|
2017-09-02 14:20:38 +02:00
|
|
|
|
2019-03-26 17:04:57 +01:00
|
|
|
sn.check();
|
|
|
|
sn.prepare();
|
|
|
|
sn.start();
|
|
|
|
sn.run();
|
|
|
|
sn.stop();
|
2014-12-05 12:41:06 +01:00
|
|
|
|
2019-03-26 17:04:57 +01:00
|
|
|
logger->info(CLR_GRN("Goodbye!"));
|
2018-10-20 14:20:51 +02:00
|
|
|
|
2019-03-26 17:04:57 +01:00
|
|
|
return 0;
|
2018-10-20 14:20:51 +02:00
|
|
|
}
|
2019-03-22 13:45:04 +01:00
|
|
|
catch (std::runtime_error &e) {
|
2019-02-12 17:05:44 +01:00
|
|
|
logger->error("{}", e.what());
|
2019-03-26 17:04:57 +01:00
|
|
|
|
|
|
|
return -1;
|
2018-10-20 14:20:51 +02:00
|
|
|
}
|
2014-06-05 09:34:29 +00:00
|
|
|
}
|