dmMain.c 5.8 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * 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 <http://www.gnu.org/licenses/>.
 */
S
Shengliang Guan 已提交
15 16

#define _DEFAULT_SOURCE
S
Shengliang Guan 已提交
17
#include "dmImp.h"
S
Shengliang Guan 已提交
18
#include "tconfig.h"
H
refact  
Hongze Cheng 已提交
19

S
Shengliang Guan 已提交
20
static struct {
S
Shengliang Guan 已提交
21 22 23 24 25 26 27 28
  bool         dumpConfig;
  bool         generateGrant;
  bool         printAuth;
  bool         printVersion;
  char         envFile[PATH_MAX];
  char         apolloUrl[PATH_MAX];
  SArray      *pArgs;  // SConfigPair
  SDnode      *pDnode;
S
Shengliang Guan 已提交
29
  EDndNodeType ntype;
S
shm  
Shengliang Guan 已提交
30
} global = {0};
S
Shengliang Guan 已提交
31

S
Shengliang Guan 已提交
32
static void dmStopDnode(int signum, void *info, void *ctx) {
S
shm  
Shengliang Guan 已提交
33 34
  SDnode *pDnode = atomic_val_compare_exchange_ptr(&global.pDnode, 0, global.pDnode);
  if (pDnode != NULL) {
S
Shengliang Guan 已提交
35
    dmSetEvent(pDnode, DND_EVENT_STOP);
S
shm  
Shengliang Guan 已提交
36
  }
37
}
S
Shengliang Guan 已提交
38

S
Shengliang Guan 已提交
39 40 41 42 43 44
static void dmSetSignalHandle() {
  taosSetSignal(SIGTERM, dmStopDnode);
  taosSetSignal(SIGHUP, dmStopDnode);
  taosSetSignal(SIGINT, dmStopDnode);
  taosSetSignal(SIGABRT, dmStopDnode);
  taosSetSignal(SIGBREAK, dmStopDnode);
wafwerar's avatar
wafwerar 已提交
45 46
#ifndef WINDOWS
  taosSetSignal(SIGTSTP, dmStopDnode);
S
Shengliang Guan 已提交
47
  taosSetSignal(SIGQUIT, dmStopDnode);
wafwerar's avatar
wafwerar 已提交
48
#endif
S
Shengliang Guan 已提交
49 50

  if (!tsMultiProcess) {
S
Shengliang Guan 已提交
51
  } else if (global.ntype == DNODE || global.ntype == NODE_END) {
S
Shengliang Guan 已提交
52
    taosIgnSignal(SIGCHLD);
S
Shengliang Guan 已提交
53
  } else {
S
shm  
Shengliang Guan 已提交
54
    taosKillChildOnParentStopped();
S
Shengliang Guan 已提交
55
  }
S
Shengliang Guan 已提交
56 57
}

S
Shengliang Guan 已提交
58
static int32_t dmParseArgs(int32_t argc, char const *argv[]) {
S
Shengliang Guan 已提交
59
  for (int32_t i = 1; i < argc; ++i) {
S
Shengliang Guan 已提交
60 61 62 63 64 65
    if (strcmp(argv[i], "-c") == 0) {
      if (i < argc - 1) {
        if (strlen(argv[++i]) >= PATH_MAX) {
          printf("config file path overflow");
          return -1;
        }
S
Shengliang Guan 已提交
66
        tstrncpy(configDir, argv[i], PATH_MAX);
S
Shengliang Guan 已提交
67
      } else {
68
        printf("'-c' requires a parameter, default is %s\n", configDir);
S
Shengliang Guan 已提交
69 70
        return -1;
      }
S
Shengliang Guan 已提交
71 72 73 74
    } else if (strcmp(argv[i], "-a") == 0) {
      tstrncpy(global.apolloUrl, argv[++i], PATH_MAX);
    } else if (strcmp(argv[i], "-e") == 0) {
      tstrncpy(global.envFile, argv[++i], PATH_MAX);
S
Shengliang Guan 已提交
75
    } else if (strcmp(argv[i], "-n") == 0) {
S
shm  
Shengliang Guan 已提交
76
      global.ntype = atoi(argv[++i]);
S
Shengliang Guan 已提交
77
      if (global.ntype <= DNODE || global.ntype > NODE_END) {
S
Shengliang Guan 已提交
78
        printf("'-n' range is [1 - %d], default is 0\n", NODE_END - 1);
S
shm  
Shengliang Guan 已提交
79 80
        return -1;
      }
S
shm  
Shengliang Guan 已提交
81 82
    } else if (strcmp(argv[i], "-k") == 0) {
      global.generateGrant = true;
S
Shengliang Guan 已提交
83 84
    } else if (strcmp(argv[i], "-C") == 0) {
      global.dumpConfig = true;
S
Shengliang Guan 已提交
85
    } else if (strcmp(argv[i], "-V") == 0) {
S
shm  
Shengliang Guan 已提交
86
      global.printVersion = true;
S
Shengliang Guan 已提交
87 88
    } else {
    }
S
Shengliang Guan 已提交
89 90
  }

S
Shengliang Guan 已提交
91 92 93
  return 0;
}

S
Shengliang Guan 已提交
94
static void dmGenerateGrant() { mndGenerateMachineCode(); }
S
Shengliang Guan 已提交
95

S
Shengliang Guan 已提交
96
static void dmPrintVersion() {
S
Shengliang Guan 已提交
97 98 99 100 101 102 103 104 105 106
#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("buildInfo: %s\n", buildinfo);
}

S
Shengliang Guan 已提交
107
static void dmDumpCfg() {
S
Shengliang Guan 已提交
108 109 110 111
  SConfig *pCfg = taosGetCfg();
  cfgDumpCfg(pCfg, 0, 1);
}

S
Shengliang Guan 已提交
112
static SDnodeOpt dmGetOpt() {
S
Shengliang Guan 已提交
113 114 115 116 117 118 119 120 121 122
  SConfig  *pCfg = taosGetCfg();
  SDnodeOpt option = {0};

  option.numOfSupportVnodes = cfgGetItem(pCfg, "supportVnodes")->i32;
  tstrncpy(option.dataDir, tsDataDir, sizeof(option.dataDir));
  tstrncpy(option.firstEp, tsFirst, sizeof(option.firstEp));
  tstrncpy(option.secondEp, tsSecond, sizeof(option.firstEp));
  option.serverPort = tsServerPort;
  tstrncpy(option.localFqdn, tsLocalFqdn, sizeof(option.localFqdn));
  snprintf(option.localEp, sizeof(option.localEp), "%s:%u", option.localFqdn, option.serverPort);
S
Shengliang Guan 已提交
123
  option.disks = tsDiskCfg;
S
Shengliang Guan 已提交
124
  option.numOfDisks = tsDiskCfgNum;
S
Shengliang Guan 已提交
125
  option.ntype = global.ntype;
S
Shengliang Guan 已提交
126 127 128
  return option;
}

S
Shengliang Guan 已提交
129
static int32_t dmInitLog() {
S
shm  
Shengliang Guan 已提交
130
  char logName[12] = {0};
S
Shengliang Guan 已提交
131
  snprintf(logName, sizeof(logName), "%slog", dmLogName(global.ntype));
S
shm  
Shengliang Guan 已提交
132 133 134
  return taosCreateLog(logName, 1, configDir, global.envFile, global.apolloUrl, global.pArgs, 0);
}

S
Shengliang Guan 已提交
135
static void dmSetProcInfo(int32_t argc, char **argv) {
S
shm  
Shengliang Guan 已提交
136
  taosSetProcPath(argc, argv);
S
Shengliang Guan 已提交
137
  if (global.ntype != DNODE && global.ntype != NODE_END) {
S
Shengliang Guan 已提交
138
    const char *name = dmProcName(global.ntype);
S
shm  
Shengliang Guan 已提交
139
    taosSetProcName(argc, argv, name);
S
shm  
Shengliang Guan 已提交
140 141 142
  }
}

S
Shengliang Guan 已提交
143 144
static int32_t dmRunDnode() {
  if (dmInit() != 0) {
S
shm  
Shengliang Guan 已提交
145
    dError("failed to init environment since %s", terrstr());
S
Shengliang Guan 已提交
146 147
    return -1;
  }
S
Shengliang Guan 已提交
148

S
Shengliang Guan 已提交
149 150
  SDnodeOpt option = dmGetOpt();
  SDnode   *pDnode = dmCreate(&option);
151
  if (pDnode == NULL) {
S
shm  
Shengliang Guan 已提交
152
    dError("failed to to create dnode since %s", terrstr());
S
Shengliang Guan 已提交
153
    return -1;
S
shm  
Shengliang Guan 已提交
154
  } else {
S
shm  
Shengliang Guan 已提交
155
    global.pDnode = pDnode;
S
Shengliang Guan 已提交
156
    dmSetSignalHandle();
S
Shengliang Guan 已提交
157 158
  }

S
Shengliang Guan 已提交
159
  dInfo("start the service");
S
Shengliang Guan 已提交
160
  int32_t code = dmRun(pDnode);
S
Shengliang Guan 已提交
161
  dInfo("start shutting down the service");
S
Shengliang Guan 已提交
162

S
shm  
Shengliang Guan 已提交
163
  global.pDnode = NULL;
S
Shengliang Guan 已提交
164 165
  dmClose(pDnode);
  dmCleanup();
S
Shengliang Guan 已提交
166
  taosCloseLog();
S
config  
Shengliang Guan 已提交
167
  taosCleanupCfg();
S
shm  
Shengliang Guan 已提交
168
  return code;
H
refact  
Hongze Cheng 已提交
169
}
S
Shengliang Guan 已提交
170 171

int main(int argc, char const *argv[]) {
172
  if (!taosCheckSystemIsSmallEnd()) {
S
Shengliang Guan 已提交
173
    printf("failed to start since on non-small-end machines\n");
174 175 176
    return -1;
  }

S
Shengliang Guan 已提交
177
  if (dmParseArgs(argc, argv) != 0) {
S
Shengliang Guan 已提交
178
    printf("failed to start since parse args error\n");
S
Shengliang Guan 已提交
179 180 181
    return -1;
  }

S
shm  
Shengliang Guan 已提交
182
  if (global.generateGrant) {
S
Shengliang Guan 已提交
183
    dmGenerateGrant();
S
Shengliang Guan 已提交
184 185 186
    return 0;
  }

S
shm  
Shengliang Guan 已提交
187
  if (global.printVersion) {
S
Shengliang Guan 已提交
188
    dmPrintVersion();
S
Shengliang Guan 已提交
189
    return 0;
S
Shengliang Guan 已提交
190 191
  }

S
Shengliang Guan 已提交
192
  if (dmInitLog() != 0) {
193
    dError("failed to start since init log error");
S
Shengliang Guan 已提交
194
    return -1;
S
Shengliang Guan 已提交
195 196
  }

S
shm  
Shengliang Guan 已提交
197
  if (taosInitCfg(configDir, global.envFile, global.apolloUrl, global.pArgs, 0) != 0) {
S
Shengliang Guan 已提交
198
    dError("failed to start since read config error");
S
Shengliang Guan 已提交
199 200 201
    return -1;
  }

S
shm  
Shengliang Guan 已提交
202
  if (global.dumpConfig) {
S
Shengliang Guan 已提交
203
    dmDumpCfg();
S
Shengliang Guan 已提交
204
    taosCleanupCfg();
S
shm  
Shengliang Guan 已提交
205
    taosCloseLog();
S
Shengliang Guan 已提交
206 207 208
    return 0;
  }

S
Shengliang Guan 已提交
209 210
  dmSetProcInfo(argc, (char **)argv);
  return dmRunDnode();
S
Shengliang Guan 已提交
211
}