lokinet/daemon/lokinetctl.cpp

93 lines
2.1 KiB
C++
Raw Normal View History

#include <llarp/config/config.hpp>
#include <llarp/router_contact.hpp>
#include <llarp/util/logging/logger.hpp>
#include <llarp/util/logging/ostream_logger.hpp>
2018-07-24 05:40:34 +02:00
2019-08-12 23:47:30 +02:00
#include <cxxopts.hpp>
#include <string>
#include <vector>
namespace
2018-05-21 14:51:10 +02:00
{
bool
dumpRc(const std::vector<std::string>& files)
2019-08-13 00:10:07 +02:00
{
nlohmann::json result;
for (const auto& file : files)
2019-08-13 00:10:07 +02:00
{
llarp::RouterContact rc;
const bool ret = rc.Read(file.c_str());
if (ret)
2019-08-13 00:10:07 +02:00
{
result[file] = rc.ToJson();
}
else
{
std::cerr << "file = " << file << " was not a valid rc file\n";
2019-08-13 00:10:07 +02:00
}
}
std::cout << result << "\n";
return true;
}
} // namespace
2019-08-12 23:47:30 +02:00
int
2019-08-13 00:10:07 +02:00
main(int argc, char* argv[])
2019-08-12 23:47:30 +02:00
{
cxxopts::Options options(
"lokinetctl",
"LokiNET is a free, open source, private, "
"decentralized, \"market based sybil resistant\" "
"and IP based onion routing network");
options.add_options()("v,verbose", "Verbose", cxxopts::value<bool>())(
"h,help", "help", cxxopts::value<bool>())(
"c,config",
"config file",
cxxopts::value<std::string>()->default_value(llarp::GetDefaultConfigPath().string()))(
"dump", "dump rc file", cxxopts::value<std::vector<std::string>>(), "FILE");
2018-08-31 14:46:54 +02:00
2019-08-13 00:10:07 +02:00
try
{
2019-08-12 23:47:30 +02:00
const auto result = options.parse(argc, argv);
if (result.count("verbose") > 0)
2019-08-12 23:47:30 +02:00
{
SetLogLevel(llarp::eLogDebug);
2019-08-13 00:10:07 +02:00
llarp::LogContext::Instance().logStream =
std::make_unique<llarp::OStreamLogStream>(true, std::cerr);
2019-08-12 23:47:30 +02:00
llarp::LogDebug("debug logging activated");
}
else
{
SetLogLevel(llarp::eLogError);
llarp::LogContext::Instance().logStream =
std::make_unique<llarp::OStreamLogStream>(true, std::cerr);
}
if (result.count("help") > 0)
2018-08-31 14:46:54 +02:00
{
2019-08-12 23:47:30 +02:00
std::cout << options.help() << std::endl;
return 0;
2018-08-31 14:46:54 +02:00
}
if (result.count("dump") > 0)
{
if (!dumpRc(result["dump"].as<std::vector<std::string>>()))
2018-08-31 14:46:54 +02:00
{
2019-08-13 00:10:07 +02:00
return 1;
2018-08-31 14:46:54 +02:00
}
}
2018-05-21 14:51:10 +02:00
}
catch (const cxxopts::OptionParseException& ex)
{
2019-08-12 23:47:30 +02:00
std::cerr << ex.what() << std::endl;
std::cout << options.help() << std::endl;
return 1;
}
2018-08-03 01:30:34 +02:00
2019-08-12 23:47:30 +02:00
return 0;
2018-05-21 14:51:10 +02:00
}