simSystem.c 4.8 KB
Newer Older
S
[TD-73]  
slguan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

16
#define _DEFAULT_SOURCE
S
slguan 已提交
17 18 19
#include "os.h"
#include "sim.h"
#include "taos.h"
S
slguan 已提交
20
#include "tglobal.h"
S
slguan 已提交
21 22
#include "ttimer.h"
#include "tutil.h"
S
slguan 已提交
23
#include "tsocket.h"
S
TD-2808  
Shengliang Guan 已提交
24
#include "taoserror.h"
S
Shengliang Guan 已提交
25
#undef TAOS_MEM_CHECK
S
slguan 已提交
26 27 28

SScript *simScriptList[MAX_MAIN_SCRIPT_NUM];
SCommand simCmdList[SIM_CMD_END];
29 30 31 32 33
int32_t  simScriptPos = -1;
int32_t  simScriptSucced = 0;
int32_t  simDebugFlag = 135;
void     simCloseTaosdConnect(SScript *script);
char     simHostName[128];
S
slguan 已提交
34

S
TD-2808  
Shengliang Guan 已提交
35 36
extern bool simExecSuccess;

H
Hui Li 已提交
37 38 39 40 41 42
char *simParseArbitratorName(char *varName) {
  static char hostName[140];
  sprintf(hostName, "%s:%d", simHostName, 8000);
  return hostName;
}

S
slguan 已提交
43 44 45
char *simParseHostName(char *varName) {
  static char hostName[140];

46 47
  int32_t index = atoi(varName + 8);
  int32_t port = 7100;
S
slguan 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
  switch (index) {
    case 1:
      port = 7100;
      break;
    case 2:
      port = 7200;
      break;
    case 3:
      port = 7300;
      break;
    case 4:
      port = 7400;
      break;
    case 5:
      port = 7500;
      break;
    case 6:
      port = 7600;
      break;
    case 7:
      port = 7700;
      break;
    case 8:
      port = 7800;
      break;
    case 9:
      port = 7900;
      break;
  }
77

S
slguan 已提交
78
  sprintf(hostName, "'%s:%d'", simHostName, port);
79
  // simInfo("hostName:%s", hostName);
S
slguan 已提交
80 81
  return hostName;
}
S
slguan 已提交
82 83

bool simSystemInit() {
S
slguan 已提交
84
  taosGetFqdn(simHostName);
S
slguan 已提交
85 86 87 88 89 90 91 92 93 94
  taos_init();
  simInitsimCmdList();
  memset(simScriptList, 0, sizeof(SScript *) * MAX_MAIN_SCRIPT_NUM);
  return true;
}

void simSystemCleanUp() {}

void simFreeScript(SScript *script) {
  if (script->type == SIM_SCRIPT_TYPE_MAIN) {
95 96 97
    simInfo("script:%s, background script num:%d, stop them", script->fileName, script->bgScriptLen);

    for (int32_t i = 0; i < script->bgScriptLen; ++i) {
S
slguan 已提交
98
      SScript *bgScript = script->bgScripts[i];
P
TD-2652  
Ping Xiao 已提交
99
      simDebug("script:%s, is background script, set stop flag", bgScript->fileName);
S
slguan 已提交
100
      bgScript->killed = true;
S
Shengliang Guan 已提交
101
      if (taosCheckPthreadValid(bgScript->bgPid)) {
102 103
        pthread_join(bgScript->bgPid, NULL);
      }
P
TD-2652  
Ping Xiao 已提交
104 105 106 107 108 109

      simDebug("script:%s, background thread joined", bgScript->fileName);
      taos_close(bgScript->taos);
      tfree(bgScript->lines);
      tfree(bgScript->optionBuffer);
      tfree(bgScript);
S
slguan 已提交
110 111
    }

P
TD-2652  
Ping Xiao 已提交
112 113 114 115 116 117
    simDebug("script:%s, is cleaned", script->fileName);
    taos_close(script->taos);
    tfree(script->lines);
    tfree(script->optionBuffer);
    tfree(script);
  }
S
slguan 已提交
118 119 120 121
}

SScript *simProcessCallOver(SScript *script) {
  if (script->type == SIM_SCRIPT_TYPE_MAIN) {
P
TD-2652  
Ping Xiao 已提交
122
    simDebug("script:%s, is main script, set stop flag", script->fileName);
S
slguan 已提交
123
    if (script->killed) {
S
TD-2808  
Shengliang Guan 已提交
124
      simExecSuccess = false;
125 126
      simInfo("script:" FAILED_PREFIX "%s" FAILED_POSTFIX ", " FAILED_PREFIX "failed" FAILED_POSTFIX ", error:%s",
              script->fileName, script->error);
127
      return NULL;
S
slguan 已提交
128
    } else {
S
TD-2808  
Shengliang Guan 已提交
129
      simExecSuccess = true;
130 131
      simInfo("script:" SUCCESS_PREFIX "%s" SUCCESS_POSTFIX ", " SUCCESS_PREFIX "success" SUCCESS_POSTFIX,
              script->fileName);
S
slguan 已提交
132 133 134
      simCloseTaosdConnect(script);
      simScriptSucced++;
      simScriptPos--;
135 136

      simFreeScript(script);
S
slguan 已提交
137
      if (simScriptPos == -1) {
S
Shengliang Guan 已提交
138 139
        simInfo("----------------------------------------------------------------------");
        simInfo("Simulation Test Done, " SUCCESS_PREFIX "%d" SUCCESS_POSTFIX " Passed:\n", simScriptSucced);
140
        return NULL;
S
slguan 已提交
141 142
      }

S
TD-1952  
Shengliang Guan 已提交
143
      return simScriptList[simScriptPos];
S
slguan 已提交
144 145
    }
  } else {
P
TD-2652  
Ping Xiao 已提交
146
    simDebug("script:%s,  is stopped", script->fileName);
S
slguan 已提交
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
    simFreeScript(script);
    return NULL;
  }
}

void *simExecuteScript(void *inputScript) {
  SScript *script = (SScript *)inputScript;

  while (1) {
    if (script->type == SIM_SCRIPT_TYPE_MAIN) {
      script = simScriptList[simScriptPos];
    }

    if (script->killed || script->linePos >= script->numOfLines) {
      script = simProcessCallOver(script);
      if (script == NULL) break;
    } else {
      SCmdLine *line = &script->lines[script->linePos];
165
      char *    option = script->optionBuffer + line->optionOffset;
S
Shengliang Guan 已提交
166
      simDebug("script:%s, line:%d with option \"%s\"", script->fileName, line->lineNum, option);
S
slguan 已提交
167 168

      SCommand *cmd = &simCmdList[line->cmdno];
169
      int32_t   ret = (*(cmd->executeCmd))(script, option);
S
slguan 已提交
170 171 172 173 174 175
      if (!ret) {
        script->killed = true;
      }
    }
  }

P
TD-2652  
Ping Xiao 已提交
176
  simInfo("thread is stopped");
S
slguan 已提交
177 178
  return NULL;
}