2018-07-13 13:36:51 +00:00
|
|
|
#include <getopt.h>
|
2018-05-27 18:03:10 +00:00
|
|
|
#include <llarp.h>
|
2018-07-11 11:04:15 +00:00
|
|
|
#include <llarp/logger.h>
|
2018-07-13 13:36:51 +00:00
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/param.h> // for MIN
|
2018-07-20 04:50:28 +00:00
|
|
|
#include <string>
|
2018-05-20 16:15:16 +00:00
|
|
|
|
2018-05-27 18:03:10 +00:00
|
|
|
struct llarp_main *ctx = 0;
|
2018-04-30 16:14:20 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
|
|
|
handle_signal(int sig)
|
2018-05-18 17:50:21 +00:00
|
|
|
{
|
2018-05-27 17:44:01 +00:00
|
|
|
if(ctx)
|
2018-05-27 18:03:10 +00:00
|
|
|
llarp_main_signal(ctx, sig);
|
2018-05-18 17:50:21 +00:00
|
|
|
}
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2018-07-20 04:50:28 +00:00
|
|
|
bool multiThreaded = true;
|
|
|
|
const char *singleThreadVar = getenv("LLARP_SHADOW");
|
|
|
|
if(singleThreadVar && std::string(singleThreadVar) == "1")
|
|
|
|
{
|
|
|
|
multiThreaded = false;
|
|
|
|
}
|
2018-01-29 14:27:24 +00:00
|
|
|
const char *conffname = "daemon.ini";
|
2018-07-11 11:04:15 +00:00
|
|
|
int c;
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
static struct option long_options[] = {
|
2018-07-13 13:36:51 +00:00
|
|
|
{"config", required_argument, 0, 'c'},
|
|
|
|
{"logLevel", required_argument, 0, 'o'},
|
|
|
|
{0, 0, 0, 0}};
|
2018-07-11 11:04:15 +00:00
|
|
|
int option_index = 0;
|
|
|
|
c = getopt_long(argc, argv, "c:o:", long_options, &option_index);
|
|
|
|
if(c == -1)
|
|
|
|
break;
|
|
|
|
switch(c)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
conffname = optarg;
|
|
|
|
break;
|
|
|
|
case 'o':
|
2018-07-13 13:36:51 +00:00
|
|
|
if(strncmp(optarg, "debug", MIN(strlen(optarg), (unsigned long)5)) == 0)
|
2018-07-11 11:04:15 +00:00
|
|
|
{
|
|
|
|
cSetLogLevel(eLogDebug);
|
|
|
|
}
|
2018-07-13 13:36:51 +00:00
|
|
|
else if(strncmp(optarg, "info", MIN(strlen(optarg), (unsigned long)4))
|
|
|
|
== 0)
|
2018-07-11 11:04:15 +00:00
|
|
|
{
|
|
|
|
cSetLogLevel(eLogInfo);
|
|
|
|
}
|
2018-07-13 13:36:51 +00:00
|
|
|
else if(strncmp(optarg, "warn", MIN(strlen(optarg), (unsigned long)4))
|
|
|
|
== 0)
|
2018-07-11 11:04:15 +00:00
|
|
|
{
|
|
|
|
cSetLogLevel(eLogWarn);
|
|
|
|
}
|
2018-07-13 13:36:51 +00:00
|
|
|
else if(strncmp(optarg, "error", MIN(strlen(optarg), (unsigned long)5))
|
|
|
|
== 0)
|
2018-07-11 11:04:15 +00:00
|
|
|
{
|
|
|
|
cSetLogLevel(eLogError);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
2018-07-13 13:36:51 +00:00
|
|
|
|
2018-07-20 04:50:28 +00:00
|
|
|
ctx = llarp_main_init(conffname, multiThreaded);
|
2018-05-27 19:13:25 +00:00
|
|
|
int code = 1;
|
|
|
|
if(ctx)
|
2018-05-27 18:03:10 +00:00
|
|
|
{
|
|
|
|
signal(SIGINT, handle_signal);
|
2018-05-27 19:13:25 +00:00
|
|
|
code = llarp_main_run(ctx);
|
2018-07-20 04:50:28 +00:00
|
|
|
llarp_main_free(ctx);
|
2018-05-27 18:03:10 +00:00
|
|
|
}
|
2018-05-27 19:13:25 +00:00
|
|
|
return code;
|
2017-09-28 17:02:05 +00:00
|
|
|
}
|