| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491 |
- #include "hmain.h"
- #include "hplatform.h"
- #include "hlog.h"
- #include "htime.h"
- main_ctx_t g_main_ctx;
- int g_worker_processes_num = 0;
- proc_ctx_t* g_worker_processes = NULL;
- int main_ctx_init(int argc, char** argv) {
- g_main_ctx.pid = getpid();
- char* cwd = getcwd(g_main_ctx.run_path, sizeof(g_main_ctx.run_path));
- if (cwd == NULL) {
- printf("getcwd error\n");
- }
- //printf("run_path=%s\n", g_main_ctx.run_path);
- const char* b = argv[0];
- const char* e = b;
- while (*e) ++e;
- --e;
- while (e >= b) {
- if (*e == '/' || *e == '\\') {
- break;
- }
- --e;
- }
- strncpy(g_main_ctx.program_name, e+1, sizeof(g_main_ctx.program_name));
- #ifdef OS_WIN
- if (strcmp(g_main_ctx.program_name+strlen(g_main_ctx.program_name)-4, ".exe") == 0) {
- *(g_main_ctx.program_name+strlen(g_main_ctx.program_name)-4) = '\0';
- }
- #endif
- //printf("program_name=%s\n", g_main_ctx.program_name);
- // save arg
- int i = 0;
- g_main_ctx.os_argv = argv;
- g_main_ctx.argc = 0;
- g_main_ctx.arg_len = 0;
- for (i = 0; argv[i]; ++i) {
- g_main_ctx.arg_len += strlen(argv[i]) + 1;
- }
- g_main_ctx.argc = i;
- char* argp = (char*)malloc(g_main_ctx.arg_len);
- memset(argp, 0, g_main_ctx.arg_len);
- g_main_ctx.save_argv = (char**)malloc((g_main_ctx.argc+1) * sizeof(char*));
- char* cmdline = (char*)malloc(g_main_ctx.arg_len);
- g_main_ctx.cmdline = cmdline;
- for (i = 0; argv[i]; ++i) {
- g_main_ctx.save_argv[i] = argp;
- strcpy(g_main_ctx.save_argv[i], argv[i]);
- argp += strlen(argv[i]) + 1;
- strcpy(cmdline, argv[i]);
- cmdline += strlen(argv[i]);
- *cmdline = ' ';
- ++cmdline;
- }
- g_main_ctx.save_argv[g_main_ctx.argc] = NULL;
- g_main_ctx.cmdline[g_main_ctx.arg_len-1] = '\0';
- #if defined(OS_WIN) || defined(OS_LINUX)
- // save env
- g_main_ctx.os_envp = environ;
- g_main_ctx.envc = 0;
- g_main_ctx.env_len = 0;
- for (i = 0; environ[i]; ++i) {
- g_main_ctx.env_len += strlen(environ[i]) + 1;
- }
- g_main_ctx.envc = i;
- char* envp = (char*)malloc(g_main_ctx.env_len);
- memset(envp, 0, g_main_ctx.env_len);
- g_main_ctx.save_envp = (char**)malloc((g_main_ctx.envc+1) * sizeof(char*));
- for (i = 0; environ[i]; ++i) {
- g_main_ctx.save_envp[i] = envp;
- strcpy(g_main_ctx.save_envp[i], environ[i]);
- envp += strlen(environ[i]) + 1;
- }
- g_main_ctx.save_envp[g_main_ctx.envc] = NULL;
- // parse env
- for (i = 0; environ[i]; ++i) {
- char* b = environ[i];
- char* delim = strchr(b, '=');
- if (delim == NULL) {
- continue;
- }
- g_main_ctx.env_kv[std::string(b, delim-b)] = std::string(delim+1);
- }
- #endif
- char logpath[MAX_PATH] = {0};
- snprintf(logpath, sizeof(logpath), "%s/logs", g_main_ctx.run_path);
- MKDIR(logpath);
- snprintf(g_main_ctx.confile, sizeof(g_main_ctx.confile), "%s/etc/%s.conf", g_main_ctx.run_path, g_main_ctx.program_name);
- snprintf(g_main_ctx.pidfile, sizeof(g_main_ctx.pidfile), "%s/logs/%s.pid", g_main_ctx.run_path, g_main_ctx.program_name);
- snprintf(g_main_ctx.logfile, sizeof(g_main_ctx.confile), "%s/logs/%s.log", g_main_ctx.run_path, g_main_ctx.program_name);
- hlog_set_file(g_main_ctx.logfile);
- g_main_ctx.oldpid = getpid_from_pidfile();
- #ifdef OS_UNIX
- if (kill(g_main_ctx.oldpid, 0) == -1 && errno == ESRCH) {
- g_main_ctx.oldpid = -1;
- }
- #endif
- return 0;
- }
- #define UNDEFINED_OPTION -1
- static int get_arg_type(int short_opt, const char* options) {
- if (options == NULL) return UNDEFINED_OPTION;
- const char* p = options;
- while (*p && *p != short_opt) ++p;
- if (*p == '\0') return UNDEFINED_OPTION;
- if (*(p+1) == ':') return REQUIRED_ARGUMENT;
- return NO_ARGUMENT;
- }
- int parse_opt(int argc, char** argv, const char* options) {
- for (int i = 1; argv[i]; ++i) {
- char* p = argv[i];
- if (*p != '-') {
- g_main_ctx.arg_list.push_back(argv[i]);
- continue;
- }
- while (*++p) {
- int arg_type = get_arg_type(*p, options);
- if (arg_type == UNDEFINED_OPTION) {
- printf("Invalid option '%c'\n", *p);
- return -20;
- } else if (arg_type == NO_ARGUMENT) {
- g_main_ctx.arg_kv[std::string(p, 1)] = OPTION_ENABLE;
- continue;
- } else if (arg_type == REQUIRED_ARGUMENT) {
- if (*(p+1) != '\0') {
- g_main_ctx.arg_kv[std::string(p, 1)] = p+1;
- break;
- } else if (argv[i+1] != NULL) {
- g_main_ctx.arg_kv[std::string(p, 1)] = argv[++i];
- break;
- } else {
- printf("Option '%c' requires param\n", *p);
- return -30;
- }
- }
- }
- }
- return 0;
- }
- static const option_t* get_option(const char* opt, const option_t* long_options, int size) {
- if (opt == NULL || long_options == NULL) return NULL;
- int len = strlen(opt);
- if (len == 0) return NULL;
- if (len == 1) {
- for (int i = 0; i < size; ++i) {
- if (long_options[i].short_opt == *opt) {
- return &long_options[i];
- }
- }
- } else {
- for (int i = 0; i < size; ++i) {
- if (strcmp(long_options[i].long_opt, opt) == 0) {
- return &long_options[i];
- }
- }
- }
- return NULL;
- }
- #define MAX_OPTION 32
- // opt type
- #define NOPREFIX_OPTION 0
- #define SHORT_OPTION -1
- #define LONG_OPTION -2
- int parse_opt_long(int argc, char** argv, const option_t* long_options, int size) {
- char opt[MAX_OPTION+1] = {0};
- for (int i = 1; argv[i]; ++i) {
- char* arg = argv[i];
- int opt_type = NOPREFIX_OPTION;
- // prefix
- if (*arg == OPTION_PREFIX) {
- ++arg;
- opt_type = SHORT_OPTION;
- if (*arg == OPTION_PREFIX) {
- ++arg;
- opt_type = LONG_OPTION;
- }
- }
- int arg_len = strlen(arg);
- // delim
- char* delim = strchr(arg, OPTION_DELIM);
- if (delim == arg || delim == arg+arg_len-1 || delim-arg > MAX_OPTION) {
- printf("Invalid option '%s'\n", argv[i]);
- return -10;
- }
- if (delim) {
- memcpy(opt, arg, delim-arg);
- opt[delim-arg] = '\0';
- } else {
- if (opt_type == SHORT_OPTION) {
- *opt = *arg;
- opt[1] = '\0';
- } else {
- strncpy(opt, arg, MAX_OPTION);
- }
- }
- // get_option
- const option_t* pOption = get_option(opt, long_options, size);
- if (pOption == NULL) {
- if (delim == NULL && opt_type == NOPREFIX_OPTION) {
- g_main_ctx.arg_list.push_back(arg);
- continue;
- } else {
- printf("Invalid option: '%s'\n", argv[i]);
- return -10;
- }
- }
- const char* value = NULL;
- if (pOption->arg_type == NO_ARGUMENT) {
- // -h
- value = OPTION_ENABLE;
- } else if (pOption->arg_type == REQUIRED_ARGUMENT) {
- if (delim) {
- // --port=80
- value = delim+1;
- } else {
- if (opt_type == SHORT_OPTION && *(arg+1) != '\0') {
- // p80
- value = arg+1;
- } else if (argv[i+1] != NULL) {
- // --port 80
- value = argv[++i];
- } else {
- printf("Option '%s' requires parament\n", opt);
- return -20;
- }
- }
- }
- // preferred to use short_opt as key
- if (pOption->short_opt > 0) {
- g_main_ctx.arg_kv[std::string(1, pOption->short_opt)] = value;
- } else if (pOption->long_opt) {
- g_main_ctx.arg_kv[pOption->long_opt] = value;
- }
- }
- return 0;
- }
- const char* get_arg(const char* key) {
- auto iter = g_main_ctx.arg_kv.find(key);
- if (iter == g_main_ctx.arg_kv.end()) {
- return NULL;
- }
- return iter->second.c_str();
- }
- const char* get_env(const char* key) {
- auto iter = g_main_ctx.env_kv.find(key);
- if (iter == g_main_ctx.env_kv.end()) {
- return NULL;
- }
- return iter->second.c_str();
- }
- #ifdef OS_UNIX
- /*
- * memory layout
- * argv[0]\0argv[1]\0argv[n]\0env[0]\0env[1]\0env[n]\0
- */
- void setproctitle(const char* title) {
- //printf("proctitle=%s\n", title);
- int len = g_main_ctx.arg_len + g_main_ctx.env_len;
- if (strlen(title) >= len) return;
- memset(g_main_ctx.os_argv[0], 0, len);
- strcpy(g_main_ctx.os_argv[0], title);
- }
- #endif
- int create_pidfile() {
- FILE* fp = fopen(g_main_ctx.pidfile, "w");
- if (fp == NULL) {
- printf("fopen [%s] error: %d\n", g_main_ctx.pidfile, errno);
- return -10;
- }
- char pid[16] = {0};
- snprintf(pid, sizeof(pid), "%d\n", g_main_ctx.pid);
- fwrite(pid, 1, strlen(pid), fp);
- fclose(fp);
- hlogi("create_pidfile [%s] pid=%d", g_main_ctx.pidfile, g_main_ctx.pid);
- atexit(delete_pidfile);
- return 0;
- }
- void delete_pidfile() {
- remove(g_main_ctx.pidfile);
- hlogi("delete_pidfile [%s]", g_main_ctx.pidfile);
- }
- pid_t getpid_from_pidfile() {
- FILE* fp = fopen(g_main_ctx.pidfile, "r");
- if (fp == NULL) {
- //printf("fopen [%s] error: %d\n", g_conf_ctx.pidfile, errno);
- return -1;
- }
- char pid[64];
- int readbytes = fread(pid, 1, sizeof(pid), fp);
- fclose(fp);
- if (readbytes <= 0) {
- //printf("fread [%s] bytes=%d\n", g_main_ctx.pidfile, readbytes);
- return -1;
- }
- return atoi(pid);
- }
- static procedure_t s_reload_fn = NULL;
- static void* s_reload_userdata = NULL;
- #ifdef OS_UNIX
- // unix use signal
- #include <sys/wait.h>
- void signal_handler(int signo) {
- hlogi("pid=%d recv signo=%d", getpid(), signo);
- switch (signo) {
- case SIGINT:
- case SIGNAL_TERMINATE:
- hlogi("killall processes");
- signal(SIGCHLD, SIG_IGN);
- // master send SIGKILL => workers
- for (int i = 0; i < g_worker_processes_num; ++i) {
- if (g_worker_processes[i].pid <= 0) break;
- kill(g_worker_processes[i].pid, SIGKILL);
- g_worker_processes[i].pid = -1;
- }
- exit(0);
- break;
- case SIGNAL_RELOAD:
- if (s_reload_fn) {
- s_reload_fn(s_reload_userdata);
- if (getpid_from_pidfile() == getpid()) {
- // master send SIGNAL_RELOAD => workers
- for (int i = 0; i < g_worker_processes_num; ++i) {
- if (g_worker_processes[i].pid <= 0) break;
- kill(g_worker_processes[i].pid, SIGNAL_RELOAD);
- }
- }
- }
- break;
- case SIGCHLD:
- {
- pid_t pid = 0;
- int status = 0;
- while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
- hlogw("proc stop/waiting, pid=%d status=%d", pid, status);
- for (int i = 0; i < g_worker_processes_num; ++i) {
- if (g_worker_processes[i].pid == pid) {
- g_worker_processes[i].pid = -1;
- spawn_proc(&g_worker_processes[i]);
- break;
- }
- }
- }
- }
- break;
- default:
- break;
- }
- }
- int signal_init(procedure_t reload_fn, void* reload_userdata) {
- s_reload_fn = reload_fn;
- s_reload_userdata = reload_userdata;
- signal(SIGINT, signal_handler);
- signal(SIGCHLD, signal_handler);
- signal(SIGNAL_TERMINATE, signal_handler);
- signal(SIGNAL_RELOAD, signal_handler);
- return 0;
- }
- #elif defined(OS_WIN)
- // win32 use Event
- static HANDLE s_hEventTerm = NULL;
- static HANDLE s_hEventReload = NULL;
- #include <mmsystem.h>
- #ifdef _MSC_VER
- #pragma comment(lib, "winmm.lib")
- #endif
- void WINAPI on_timer(UINT uTimerID, UINT uMsg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2) {
- DWORD ret = WaitForSingleObject(s_hEventTerm, 0);
- if (ret == WAIT_OBJECT_0) {
- hlogi("pid=%d recv event [TERM]", getpid());
- if (getpid_from_pidfile() == getpid()) {
- timeKillEvent(uTimerID);
- exit(0);
- }
- }
- ret = WaitForSingleObject(s_hEventReload, 0);
- if (ret == WAIT_OBJECT_0) {
- hlogi("pid=%d recv event [RELOAD]", getpid());
- if (s_reload_fn) {
- s_reload_fn(s_reload_userdata);
- }
- }
- }
- void signal_cleanup() {
- CloseHandle(s_hEventTerm);
- s_hEventTerm = NULL;
- CloseHandle(s_hEventReload);
- s_hEventReload = NULL;
- }
- int signal_init(procedure_t reload_fn, void* reload_userdata) {
- s_reload_fn = reload_fn;
- s_reload_userdata = reload_userdata;
- char eventname[MAX_PATH] = {0};
- snprintf(eventname, sizeof(eventname), "%s_term_event", g_main_ctx.program_name);
- s_hEventTerm = CreateEvent(NULL, FALSE, FALSE, eventname);
- //s_hEventTerm = OpenEvent(EVENT_ALL_ACCESS, FALSE, eventname);
- snprintf(eventname, sizeof(eventname), "%s_reload_event", g_main_ctx.program_name);
- s_hEventReload = CreateEvent(NULL, FALSE, FALSE, eventname);
- timeSetEvent(1000, 1000, on_timer, 0, TIME_PERIODIC);
- atexit(signal_cleanup);
- return 0;
- }
- #endif
- void handle_signal(const char* signal) {
- if (strcmp(signal, "start") == 0) {
- if (g_main_ctx.oldpid > 0) {
- printf("%s is already running, pid=%d\n", g_main_ctx.program_name, g_main_ctx.oldpid);
- exit(0);
- }
- } else if (strcmp(signal, "stop") == 0) {
- if (g_main_ctx.oldpid > 0) {
- #ifdef OS_UNIX
- kill(g_main_ctx.oldpid, SIGNAL_TERMINATE);
- #else
- SetEvent(s_hEventTerm);
- #endif
- printf("%s stop/waiting\n", g_main_ctx.program_name);
- } else {
- printf("%s is already stopped\n", g_main_ctx.program_name);
- }
- exit(0);
- } else if (strcmp(signal, "restart") == 0) {
- if (g_main_ctx.oldpid > 0) {
- #ifdef OS_UNIX
- kill(g_main_ctx.oldpid, SIGNAL_TERMINATE);
- #else
- SetEvent(s_hEventTerm);
- #endif
- printf("%s stop/waiting\n", g_main_ctx.program_name);
- msleep(1000);
- }
- } else if (strcmp(signal, "status") == 0) {
- if (g_main_ctx.oldpid > 0) {
- printf("%s start/running, pid=%d\n", g_main_ctx.program_name, g_main_ctx.oldpid);
- } else {
- printf("%s stop/waiting\n", g_main_ctx.program_name);
- }
- exit(0);
- } else if (strcmp(signal, "reload") == 0) {
- if (g_main_ctx.oldpid > 0) {
- printf("reload confile [%s]\n", g_main_ctx.confile);
- #ifdef OS_UNIX
- kill(g_main_ctx.oldpid, SIGNAL_RELOAD);
- #else
- SetEvent(s_hEventReload);
- #endif
- }
- sleep(1);
- exit(0);
- } else {
- printf("Invalid signal: '%s'\n", signal);
- exit(0);
- }
- printf("%s start/running\n", g_main_ctx.program_name);
- }
|