| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- #include "hv.h"
- #include "hmain.h"
- #include "iniparser.h"
- typedef struct conf_ctx_s {
- IniParser* parser;
- int loglevel;
- int worker_processes;
- int worker_threads;
- int port;
- } conf_ctx_t;
- conf_ctx_t g_conf_ctx;
- inline void conf_ctx_init(conf_ctx_t* ctx) {
- ctx->parser = new IniParser;
- ctx->loglevel = LOG_LEVEL_DEBUG;
- ctx->worker_processes = 0;
- ctx->worker_threads = 0;
- ctx->port = 0;
- }
- static void print_version();
- static void print_help();
- static int parse_confile(const char* confile);
- static void worker_fn(void* userdata);
- // short options
- static const char options[] = "hvc:ts:dp:";
- // long options
- static const option_t long_options[] = {
- {'h', "help", NO_ARGUMENT},
- {'v', "version", NO_ARGUMENT},
- {'c', "confile", REQUIRED_ARGUMENT},
- {'t', "test", NO_ARGUMENT},
- {'s', "signal", REQUIRED_ARGUMENT},
- {'d', "daemon", NO_ARGUMENT},
- {'p', "port", REQUIRED_ARGUMENT}
- };
- static const char detail_options[] = R"(
- -h|--help Print this information
- -v|--version Print version
- -c|--confile <confile> Set configure file, default etc/{program}.conf
- -t|--test Test Configure file and exit
- -s|--signal <signal> Send <signal> to process,
- <signal>=[start,stop,restart,status,reload]
- -d|--daemon Daemonize
- -p|--port <port> Set listen port
- )";
- void print_version() {
- printf("%s version %s\n", g_main_ctx.program_name, hv_compile_version());
- }
- void print_help() {
- printf("Usage: %s [%s]\n", g_main_ctx.program_name, options);
- printf("Options:\n%s\n", detail_options);
- }
- int parse_confile(const char* confile) {
- int ret = g_conf_ctx.parser->LoadFromFile(confile);
- if (ret != 0) {
- printf("Load confile [%s] failed: %d\n", confile, ret);
- exit(-40);
- }
- // logfile
- string str = g_conf_ctx.parser->GetValue("logfile");
- if (!str.empty()) {
- strncpy(g_main_ctx.logfile, str.c_str(), sizeof(g_main_ctx.logfile));
- }
- hlog_set_file(g_main_ctx.logfile);
- // loglevel
- const char* szLoglevel = g_conf_ctx.parser->GetValue("loglevel").c_str();
- int loglevel = LOG_LEVEL_INFO;
- if (stricmp(szLoglevel, "VERBOSE") == 0) {
- loglevel = LOG_LEVEL_VERBOSE;
- } else if (stricmp(szLoglevel, "DEBUG") == 0) {
- loglevel = LOG_LEVEL_DEBUG;
- } else if (stricmp(szLoglevel, "INFO") == 0) {
- loglevel = LOG_LEVEL_INFO;
- } else if (stricmp(szLoglevel, "WARN") == 0) {
- loglevel = LOG_LEVEL_WARN;
- } else if (stricmp(szLoglevel, "ERROR") == 0) {
- loglevel = LOG_LEVEL_ERROR;
- } else if (stricmp(szLoglevel, "FATAL") == 0) {
- loglevel = LOG_LEVEL_FATAL;
- } else if (stricmp(szLoglevel, "SILENT") == 0) {
- loglevel = LOG_LEVEL_SILENT;
- } else {
- loglevel = LOG_LEVEL_INFO;
- }
- g_conf_ctx.loglevel = loglevel;
- hlog_set_level(loglevel);
- // log_filesize
- str = g_conf_ctx.parser->GetValue("log_filesize");
- if (!str.empty()) {
- int num = atoi(str.c_str());
- if (num > 0) {
- // 16 16M 16MB
- const char* p = str.c_str() + str.size() - 1;
- char unit;
- if (*p >= '0' && *p <= '9') unit = 'M';
- else if (*p == 'B') unit = *(p-1);
- else unit = *p;
- unsigned long long filesize = num;
- switch (unit) {
- case 'K': filesize <<= 10; break;
- case 'M': filesize <<= 20; break;
- case 'G': filesize <<= 30; break;
- default: filesize <<= 20; break;
- }
- hlog_set_max_filesize(filesize);
- }
- }
- // log_remain_days
- str = g_conf_ctx.parser->GetValue("log_remain_days");
- if (!str.empty()) {
- hlog_set_remain_days(atoi(str.c_str()));
- }
- // log_fsync
- str = g_conf_ctx.parser->GetValue("log_fsync");
- if (!str.empty()) {
- logger_enable_fsync(hlog, getboolean(str.c_str()));
- }
- // first log here
- hlogi("%s version: %s", g_main_ctx.program_name, hv_compile_version());
- hlog_fsync();
- // worker_processes
- int worker_processes = 0;
- str = g_conf_ctx.parser->GetValue("worker_processes");
- if (str.size() != 0) {
- if (strcmp(str.c_str(), "auto") == 0) {
- worker_processes = get_ncpu();
- hlogd("worker_processes=ncpu=%d", worker_processes);
- }
- else {
- worker_processes = atoi(str.c_str());
- }
- }
- g_conf_ctx.worker_processes = LIMIT(0, worker_processes, MAXNUM_WORKER_PROCESSES);
- // worker_threads
- int worker_threads = g_conf_ctx.parser->Get<int>("worker_threads");
- g_conf_ctx.worker_threads = LIMIT(0, worker_threads, 16);
- // port
- int port = 0;
- const char* szPort = get_arg("p");
- if (szPort) {
- port = atoi(szPort);
- }
- if (port == 0) {
- port = g_conf_ctx.parser->Get<int>("port");
- }
- if (port == 0) {
- printf("Please config listen port!\n");
- exit(-10);
- }
- g_conf_ctx.port = port;
- hlogi("parse_confile('%s') OK", confile);
- return 0;
- }
- void master_init(void* userdata) {
- #ifdef OS_UNIX
- char proctitle[256] = {0};
- snprintf(proctitle, sizeof(proctitle), "%s: master process", g_main_ctx.program_name);
- setproctitle(proctitle);
- signal(SIGNAL_RELOAD, signal_handler);
- #endif
- }
- void worker_init(void* userdata) {
- #ifdef OS_UNIX
- char proctitle[256] = {0};
- snprintf(proctitle, sizeof(proctitle), "%s: worker process", g_main_ctx.program_name);
- setproctitle(proctitle);
- signal(SIGNAL_RELOAD, signal_handler);
- #endif
- }
- static void on_reload(void* userdata) {
- hlogi("reload confile [%s]", g_main_ctx.confile);
- parse_confile(g_main_ctx.confile);
- }
- int main(int argc, char** argv) {
- // g_main_ctx
- main_ctx_init(argc, argv);
- if (argc == 1) {
- print_help();
- exit(10);
- }
- // int ret = parse_opt(argc, argv, options);
- int ret = parse_opt_long(argc, argv, long_options, ARRAY_SIZE(long_options));
- if (ret != 0) {
- print_help();
- exit(ret);
- }
- /*
- printf("---------------arg------------------------------\n");
- printf("%s\n", g_main_ctx.cmdline);
- for (auto& pair : g_main_ctx.arg_kv) {
- printf("%s=%s\n", pair.first.c_str(), pair.second.c_str());
- }
- for (auto& item : g_main_ctx.arg_list) {
- printf("%s\n", item.c_str());
- }
- printf("================================================\n");
- */
- /*
- printf("---------------env------------------------------\n");
- for (auto& pair : g_main_ctx.env_kv) {
- printf("%s=%s\n", pair.first.c_str(), pair.second.c_str());
- }
- printf("================================================\n");
- */
- // help
- if (get_arg("h")) {
- print_help();
- exit(0);
- }
- // version
- if (get_arg("v")) {
- print_version();
- exit(0);
- }
- // g_conf_ctx
- conf_ctx_init(&g_conf_ctx);
- const char* confile = get_arg("c");
- if (confile) {
- strncpy(g_main_ctx.confile, confile, sizeof(g_main_ctx.confile));
- }
- parse_confile(g_main_ctx.confile);
- // test
- if (get_arg("t")) {
- printf("Test confile [%s] OK!\n", g_main_ctx.confile);
- exit(0);
- }
- // signal
- signal_init(on_reload);
- const char* signal = get_arg("s");
- if (signal) {
- handle_signal(signal);
- }
- #ifdef OS_UNIX
- // daemon
- if (get_arg("d")) {
- // nochdir, noclose
- int ret = daemon(1, 1);
- if (ret != 0) {
- printf("daemon error: %d\n", ret);
- exit(-10);
- }
- // parent process exit after daemon, so pid changed.
- g_main_ctx.pid = getpid();
- }
- #endif
- // pidfile
- create_pidfile();
- master_workers_run(worker_fn, (void*)(intptr_t)100L, g_conf_ctx.worker_processes, g_conf_ctx.worker_threads);
- return 0;
- }
- void worker_fn(void* userdata) {
- long num = (long)(intptr_t)(userdata);
- while (1) {
- printf("num=%ld pid=%ld tid=%ld\n", num, hv_getpid(), hv_gettid());
- sleep(60);
- }
- }
|