2019-03-26 07:06:43 +01:00
|
|
|
/** Main routine.
|
|
|
|
*
|
|
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
|
|
* @copyright 2014-2019, 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************************/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
2019-04-19 14:52:52 +02:00
|
|
|
#include <villas/tool.hpp>
|
2019-03-26 07:06:43 +01:00
|
|
|
#include <villas/node/config.h>
|
|
|
|
#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"),
|
|
|
|
check(false)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = memory_init(DEFAULT_NR_HUGEPAGES);
|
|
|
|
if (ret)
|
|
|
|
throw RuntimeError("Failed to initialize memory");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::string uri;
|
|
|
|
|
|
|
|
bool check;
|
|
|
|
|
|
|
|
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
|
|
|
|
<< " -V show version and exit" << std::endl
|
|
|
|
<< " -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;
|
|
|
|
while ((c = getopt (argc, argv, "hcV")) != -1) {
|
|
|
|
switch (c) {
|
|
|
|
case 'c':
|
|
|
|
check = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
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
|
|
|
|
2019-03-31 19:58:29 +02:00
|
|
|
if (check)
|
|
|
|
sn.check();
|
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
|
|
|
|
2019-04-19 14:52:52 +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
|
|
|
}
|