2023-08-31 11:25:01 +02:00
|
|
|
/* Main routine.
|
2019-03-26 07:06:43 +01:00
|
|
|
*
|
2023-08-31 11:25:01 +02: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
|
|
|
|
2019-04-19 14:52:52 +02:00
|
|
|
#include <villas/tool.hpp>
|
2021-08-10 10:12:48 -04:00
|
|
|
#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;
|
|
|
|
|
2019-04-19 14:52:52 +02:00
|
|
|
namespace villas {
|
|
|
|
namespace node {
|
|
|
|
namespace tools {
|
2019-03-26 07:06:43 +01:00
|
|
|
|
2019-04-19 14:52:52 +02:00
|
|
|
class TestConfig : public Tool {
|
2019-04-17 18:46:18 +02:00
|
|
|
|
2019-04-19 14:52:52 +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)
|
2019-04-19 14:52:52 +02:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2021-08-10 10:12:48 -04:00
|
|
|
ret = memory::init(DEFAULT_NR_HUGEPAGES);
|
2019-04-19 14:52:52 +02:00
|
|
|
if (ret)
|
|
|
|
throw RuntimeError("Failed to initialize memory");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::string uri;
|
|
|
|
|
|
|
|
bool check;
|
2021-09-14 22:52:35 +02:00
|
|
|
bool dump;
|
2019-04-19 14:52:52 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
2019-04-19 14:52:52 +02:00
|
|
|
printCopyright();
|
|
|
|
}
|
2019-04-17 18:46:18 +02:00
|
|
|
|
2019-04-19 14:52:52 +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':
|
2019-04-19 14:52:52 +02:00
|
|
|
printVersion();
|
2019-04-17 18:46:18 +02:00
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
|
|
|
|
case 'h':
|
|
|
|
case '?':
|
|
|
|
usage();
|
|
|
|
exit(c == '?' ? EXIT_FAILURE : EXIT_SUCCESS);
|
|
|
|
}
|
2019-03-31 19:58:29 +02:00
|
|
|
}
|
|
|
|
|
2019-04-17 18:46:18 +02:00
|
|
|
if (argc - optind < 1) {
|
|
|
|
usage();
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2019-03-31 19:58:29 +02:00
|
|
|
|
2019-04-19 14:52:52 +02:00
|
|
|
uri = argv[optind];
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
SuperNode sn;
|
|
|
|
|
|
|
|
sn.parse(uri);
|
2019-03-26 07:06:43 +01:00
|
|
|
|
2021-08-10 10:12:48 -04:00
|
|
|
// if (check)
|
|
|
|
// sn.check();
|
2019-03-26 07:06:43 +01:00
|
|
|
|
2021-08-10 10:12:48 -04: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;
|
|
|
|
}
|
2019-04-19 14:52:52 +02:00
|
|
|
};
|
2019-03-26 17:04:57 +01:00
|
|
|
|
2023-08-28 09:34:02 +02:00
|
|
|
} // namespace tools
|
|
|
|
} // namespace node
|
|
|
|
} // namespace villas
|
2019-03-26 17:04:57 +01:00
|
|
|
|
2019-04-19 14:52:52 +02:00
|
|
|
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
|
|
|
|
2019-04-19 14:52:52 +02:00
|
|
|
return t.run();
|
2019-03-26 07:06:43 +01:00
|
|
|
}
|