/* * Copyright (c) 2019 TAOS Data, Inc. * * This program is free software: you can use, redistribute, and/or modify * it under the terms of the GNU Affero General Public License, version 3 * or later ("AGPL"), as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ #define _DEFAULT_SOURCE #include "dnode.h" #include "os.h" #include "tconfig.h" #include "tglobal.h" #include "tnote.h" #include "ulog.h" static struct { bool stop; bool dumpConfig; bool generateGrant; bool printAuth; bool printVersion; char configDir[PATH_MAX]; } global = {0}; void dmnSigintHandle(int signum, void *info, void *ctx) { uInfo("singal:%d is received", signum); global.stop = true; } void dmnSetSignalHandle() { taosSetSignal(SIGTERM, dmnSigintHandle); taosSetSignal(SIGHUP, dmnSigintHandle); taosSetSignal(SIGINT, dmnSigintHandle); taosSetSignal(SIGABRT, dmnSigintHandle); taosSetSignal(SIGBREAK, dmnSigintHandle); } int dmnParseOption(int argc, char const *argv[]) { tstrncpy(global.configDir, "/etc/taos", PATH_MAX); for (int i = 1; i < argc; ++i) { if (strcmp(argv[i], "-c") == 0) { if (i < argc - 1) { if (strlen(argv[++i]) >= PATH_MAX) { printf("config file path overflow"); return -1; } tstrncpy(global.configDir, argv[i], PATH_MAX); } else { printf("'-c' requires a parameter, default is %s\n", configDir); return -1; } } else if (strcmp(argv[i], "-C") == 0) { global.dumpConfig = true; } else if (strcmp(argv[i], "-k") == 0) { global.generateGrant = true; } else if (strcmp(argv[i], "-A") == 0) { global.printAuth = true; } else if (strcmp(argv[i], "-V") == 0) { global.printVersion = true; } else { } } return 0; } void dmnGenerateGrant() { #if 0 grantParseParameter(); #endif } void dmnPrintVersion() { #ifdef TD_ENTERPRISE char *releaseName = "enterprise"; #else char *releaseName = "community"; #endif printf("%s version: %s compatible_version: %s\n", releaseName, version, compatible_version); printf("gitinfo: %s\n", gitinfo); printf("gitinfoI: %s\n", gitinfoOfInternal); printf("builuInfo: %s\n", buildinfo); } int dmnReadConfig(const char *path) { tstrncpy(configDir, global.configDir, PATH_MAX); taosInitGlobalCfg(); taosReadGlobalLogCfg(); if (taosMkDir(tsLogDir) != 0) { printf("failed to create dir: %s, reason: %s\n", tsLogDir, strerror(errno)); return -1; } char temp[PATH_MAX]; snprintf(temp, PATH_MAX, "%s/taosdlog", tsLogDir); if (taosInitLog(temp, tsNumOfLogLines, 1) != 0) { printf("failed to init log file\n"); return -1; } if (taosInitNotes() != 0) { printf("failed to init log file\n"); return -1; } if (taosReadCfgFromFile() != 0) { uError("failed to read global config"); return -1; } if (taosCheckAndPrintCfg() != 0) { uError("failed to check global config"); return -1; } taosSetCoreDump(tsEnableCoreFile); return 0; } void dmnDumpConfig() { taosDumpGlobalCfg(); } void dmnWaitSignal() { dmnSetSignalHandle(); while (!global.stop) { taosMsleep(100); } } void dmnInitOption(SDnodeOpt *pOption) { pOption->sver = 30000000; //3.0.0.0 pOption->numOfCores = tsNumOfCores; pOption->numOfSupportVnodes = tsNumOfSupportVnodes; pOption->numOfCommitThreads = tsNumOfCommitThreads; pOption->statusInterval = tsStatusInterval; pOption->numOfThreadsPerCore = tsNumOfThreadsPerCore; pOption->ratioOfQueryCores = tsRatioOfQueryCores; pOption->maxShellConns = tsMaxShellConns; pOption->shellActivityTimer = tsShellActivityTimer; pOption->serverPort = tsServerPort; tstrncpy(pOption->dataDir, tsDataDir, TSDB_FILENAME_LEN); tstrncpy(pOption->localEp, tsLocalEp, TSDB_EP_LEN); tstrncpy(pOption->localFqdn, tsLocalFqdn, TSDB_FQDN_LEN); tstrncpy(pOption->firstEp, tsFirst, TSDB_EP_LEN); tstrncpy(pOption->timezone, tsTimezone, TSDB_TIMEZONE_LEN); tstrncpy(pOption->locale, tsLocale, TSDB_LOCALE_LEN); tstrncpy(pOption->charset, tsCharset, TSDB_LOCALE_LEN); tstrncpy(pOption->buildinfo, buildinfo, 64); tstrncpy(pOption->gitinfo, gitinfo, 48); } int dmnRunDnode() { SDnodeOpt option = {0}; dmnInitOption(&option); SDnode *pDnode = dndInit(&option); if (pDnode == NULL) { uInfo("Failed to start TDengine, please check the log at %s", tsLogDir); return -1; } uInfo("Started TDengine service successfully."); dmnWaitSignal(); uInfo("TDengine is shut down!"); dndCleanup(pDnode); taosCloseLog(); return 0; } int main(int argc, char const *argv[]) { if (dmnParseOption(argc, argv) != 0) { return -1; } if (global.generateGrant) { dmnGenerateGrant(); return 0; } if (global.printVersion) { dmnPrintVersion(); return 0; } if (dmnReadConfig(global.configDir) != 0) { return -1; } if (global.dumpConfig) { dmnDumpConfig(); return 0; } return dmnRunDnode(); }