simMain.c 2.0 KB
Newer Older
S
[TD-73]  
slguan 已提交
1 2
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
S
slguan 已提交
3
 *
S
[TD-73]  
slguan 已提交
4 5 6
 * 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.
S
slguan 已提交
7
 *
S
[TD-73]  
slguan 已提交
8 9 10 11 12 13 14
 * 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
slguan 已提交
15

16
#define _DEFAULT_SOURCE
S
slguan 已提交
17 18
#include "os.h"
#include "tglobal.h"
S
slguan 已提交
19
#include "sim.h"
S
Shengliang Guan 已提交
20
#undef TAOS_MEM_CHECK
S
slguan 已提交
21 22

bool simAsyncQuery = false;
S
TD-2808  
Shengliang Guan 已提交
23
bool simExecSuccess = false;
S
slguan 已提交
24

25
void simHandleSignal(int32_t signo) {
S
slguan 已提交
26 27 28 29
  simSystemCleanUp();
  exit(1);
}

30
int32_t main(int32_t argc, char *argv[]) {
S
slguan 已提交
31 32
  char scriptFile[MAX_FILE_NAME_LEN] = "sim_main_test.sim";

33
  for (int32_t i = 1; i < argc; ++i) {
S
slguan 已提交
34
    if (strcmp(argv[i], "-c") == 0 && i < argc - 1) {
B
Bomin Zhang 已提交
35
      tstrncpy(configDir, argv[++i], MAX_FILE_NAME_LEN);
S
slguan 已提交
36 37 38 39 40 41
    } else if (strcmp(argv[i], "-f") == 0 && i < argc - 1) {
      strcpy(scriptFile, argv[++i]);
    } else if (strcmp(argv[i], "-a") == 0) {
      simAsyncQuery = true;
    } else {
      printf("usage: %s [options] \n", argv[0]);
42
      printf("       [-c config]: config directory, default is: %s\n", configDir);
S
slguan 已提交
43
      printf("       [-f script]: script filename\n");
44
      return 0;
S
slguan 已提交
45 46 47 48 49 50
    }
  }

  if (!simSystemInit()) {
    simError("failed to initialize the system");
    simSystemCleanUp();
51
    return -1;
S
slguan 已提交
52 53
  }

S
Shengliang Guan 已提交
54
  simInfo("simulator is running ...");
S
slguan 已提交
55 56 57 58 59
  signal(SIGINT, simHandleSignal);

  SScript *script = simParseScript(scriptFile);
  if (script == NULL) {
    simError("parse script file:%s failed", scriptFile);
60
    return -1;
S
slguan 已提交
61 62 63 64 65
  }

  simScriptList[++simScriptPos] = script;
  simExecuteScript(script);

S
TD-2808  
Shengliang Guan 已提交
66 67 68 69
  int32_t ret = simExecSuccess ? 0 : -1;
  simError("execute result %d", ret);

  return ret;
S
slguan 已提交
70
}