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-test-config.cpp

119 lines
2.2 KiB
C++
Raw Normal View History

/* Main routine.
2019-03-26 07:06:43 +01:00
*
* Author: Steffen Vogel <post@steffenvogel.de>
* SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
* SPDX-License-Identifier: Apache-2.0
*/
2019-03-26 07:06:43 +01:00
#include <iostream>
2021-05-10 00:12:30 +02:00
#include <unistd.h>
2019-03-26 07:06:43 +01:00
#include <villas/tool.hpp>
#include <villas/node/config.hpp>
2019-03-26 07:06:43 +01:00
#include <villas/log.hpp>
#include <villas/version.hpp>
#include <villas/utils.hpp>
#include <villas/super_node.hpp>
#include <villas/node/exceptions.hpp>
using namespace villas;
using namespace villas::node;
namespace villas {
namespace node {
namespace tools {
2019-03-26 07:06:43 +01:00
class TestConfig : public Tool {
2019-04-17 18:46:18 +02:00
public:
TestConfig(int argc, char *argv[]) :
Tool(argc, argv, "test-config"),
2021-09-14 22:52:35 +02:00
check(false),
dump(false)
{
int ret;
ret = memory::init(DEFAULT_NR_HUGEPAGES);
if (ret)
throw RuntimeError("Failed to initialize memory");
}
protected:
std::string uri;
bool check;
2021-09-14 22:52:35 +02:00
bool dump;
void usage()
{
std::cout << "Usage: villas-test-config [OPTIONS] CONFIG" << std::endl
<< " CONFIG is the path to an optional configuration file" << std::endl
<< " OPTIONS is one or more of the following options:" << std::endl
<< " -d LVL set debug level" << std::endl
2020-09-10 17:35:35 +02:00
<< " -V show version and exit" << std::endl
<< " -c perform plausability checks on config" << std::endl
2021-09-14 22:52:35 +02:00
<< " -D dump config in JSON format" << std::endl
2020-09-10 17:35:35 +02:00
<< " -h show usage and exit" << std::endl << std::endl;
2019-04-17 18:46:18 +02:00
printCopyright();
}
2019-04-17 18:46:18 +02:00
void parse()
{
2019-04-17 18:46:18 +02:00
int c;
2021-09-14 22:52:35 +02:00
while ((c = getopt (argc, argv, "hcVD")) != -1) {
2019-04-17 18:46:18 +02:00
switch (c) {
case 'c':
check = true;
break;
2021-09-14 22:52:35 +02:00
case 'D':
dump = true;
break;
2019-04-17 18:46:18 +02:00
case 'V':
printVersion();
2019-04-17 18:46:18 +02:00
exit(EXIT_SUCCESS);
case 'h':
case '?':
usage();
exit(c == '?' ? EXIT_FAILURE : EXIT_SUCCESS);
}
}
2019-04-17 18:46:18 +02:00
if (argc - optind < 1) {
usage();
exit(EXIT_FAILURE);
}
uri = argv[optind];
}
int main()
{
SuperNode sn;
sn.parse(uri);
2019-03-26 07:06:43 +01:00
// if (check)
// sn.check();
2019-03-26 07:06:43 +01:00
// if (dump)
// json_dumpf(sn.getConfig(), stdout, JSON_INDENT(2));
2021-09-14 22:52:35 +02:00
2019-03-26 07:06:43 +01:00
return 0;
}
};
} // namespace tools
} // namespace node
} // namespace villas
int main(int argc, char *argv[])
{
2019-06-18 17:52:54 +02:00
villas::node::tools::TestConfig t(argc, argv);
2019-03-26 07:06:43 +01:00
return t.run();
2019-03-26 07:06:43 +01:00
}