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-conf2json.cpp

91 lines
1.6 KiB
C++
Raw Normal View History

/** Convert old style config to new JSON format.
*
* @author Steffen Vogel <post@steffenvogel.de>
2022-03-15 09:28:57 -04:00
* @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
2022-07-04 18:20:03 +02:00
* @license Apache 2.0
*********************************************************************************/
#include <libgen.h>
2018-07-03 21:04:28 +02:00
#include <iostream>
#include <jansson.h>
#include <libconfig.h>
#include <villas/config.hpp>
2019-03-26 07:01:10 +01:00
#include <villas/config_helper.hpp>
2018-10-20 14:22:43 +02:00
#include <villas/utils.hpp>
#include <villas/tool.hpp>
namespace villas {
namespace node {
namespace tools {
class Config2Json : public Tool {
public:
Config2Json(int argc, char *argv[]) :
Tool(argc, argv, "conf2json")
{ }
protected:
void usage()
{
std::cout << "Usage: conf2json input.conf > output.json" << std::endl << std::endl;
printCopyright();
}
int main()
{
int ret;
config_t cfg;
config_setting_t *cfg_root;
json_t *json;
if (argc != 2) {
usage();
exit(EXIT_FAILURE);
}
FILE *f = fopen(argv[1], "r");
2021-05-10 00:12:30 +02:00
if (f == nullptr)
return -1;
const char *confdir = dirname(argv[1]);
config_init(&cfg);
config_set_include_dir(&cfg, confdir);
ret = config_read(&cfg, f);
if (ret != CONFIG_TRUE)
return -2;
cfg_root = config_root_setting(&cfg);
json = config_to_json(cfg_root);
if (!json)
return -3;
ret = json_dumpf(json, stdout, JSON_INDENT(2)); fflush(stdout);
if (ret)
return ret;
json_decref(json);
config_destroy(&cfg);
return 0;
}
};
2020-06-15 22:16:38 +02:00
} /* namespace tools */
} /* namespace node */
} /* namespace villas */
int main(int argc, char *argv[])
{
2019-06-18 17:52:54 +02:00
villas::node::tools::Config2Json t(argc, argv);
return t.run();
}