shellEngine.c 29.1 KB
Newer Older
H
hzcheng 已提交
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/>.
 */

wafwerar's avatar
wafwerar 已提交
16
#define ALLOW_FORBID_FUNC
17 18
#define _BSD_SOURCE
#define _GNU_SOURCE
H
hzcheng 已提交
19
#define _XOPEN_SOURCE
S
slguan 已提交
20
#define _DEFAULT_SOURCE
S
Shengliang Guan 已提交
21
#include "shellInt.h"
H
hzcheng 已提交
22

23 24 25 26 27 28 29 30 31 32
static bool    shellIsEmptyCommand(const char *cmd);
static int32_t shellRunSingleCommand(char *command);
static int32_t shellRunCommand(char *command);
static void    shellRunSingleCommandImp(char *command);
static char   *shellFormatTimestamp(char *buf, int64_t val, int32_t precision);
static void    shellDumpFieldToFile(TdFilePtr pFile, const char *val, TAOS_FIELD *field, int32_t length,
                                    int32_t precision);
static int32_t shellDumpResultToFile(const char *fname, TAOS_RES *tres);
static void    shellPrintNChar(const char *str, int32_t length, int32_t width);
static void    shellPrintField(const char *val, TAOS_FIELD *field, int32_t width, int32_t length, int32_t precision);
S
Shengliang Guan 已提交
33
static int32_t shellVerticalPrintResult(TAOS_RES *tres, const char *sql);
34 35
static int32_t shellCalcColWidth(TAOS_FIELD *field, int32_t precision);
static void    shellPrintHeader(TAOS_FIELD *fields, int32_t *width, int32_t num_fields);
S
Shengliang Guan 已提交
36 37
static int32_t shellHorizontalPrintResult(TAOS_RES *tres, const char *sql);
static int32_t shellDumpResult(TAOS_RES *tres, char *fname, int32_t *error_no, bool vertical, const char *sql);
38 39 40 41 42 43
static void    shellReadHistory();
static void    shellWriteHistory();
static void    shellPrintError(TAOS_RES *tres, int64_t st);
static bool    shellIsCommentLine(char *line);
static void    shellSourceFile(const char *file);
static void    shellGetGrantInfo();
44

45 46 47 48 49
static void    shellCleanup(void *arg);
static void   *shellCancelHandler(void *arg);
static void   *shellThreadLoop(void *arg);

bool shellIsEmptyCommand(const char *cmd) {
50 51 52
  for (char c = *cmd++; c != 0; c = *cmd++) {
    if (c != ' ' && c != '\t' && c != ';') {
      return false;
H
hzcheng 已提交
53 54
    }
  }
55
  return true;
H
hzcheng 已提交
56 57
}

58 59
int32_t shellRunSingleCommand(char *command) {
  if (shellIsEmptyCommand(command)) {
60
    return 0;
H
hzcheng 已提交
61 62
  }

63 64
  if (shellRegexMatch(command, "^[ \t]*(quit|q|exit)[ \t;]*$", REG_EXTENDED | REG_ICASE)) {
    shellWriteHistory();
65
    return -1;
66 67
  }

68
  if (shellRegexMatch(command, "^[\t ]*clear[ \t;]*$", REG_EXTENDED | REG_ICASE)) {
H
hzcheng 已提交
69
    system("clear");
70 71
    return 0;
  }
72

73
  if (shellRegexMatch(command, "^[\t ]*set[ \t]+max_binary_display_width[ \t]+(default|[1-9][0-9]*)[ \t;]*$",
74
                      REG_EXTENDED | REG_ICASE)) {
75 76
    strtok(command, " \t");
    strtok(NULL, " \t");
S
Shengliang Guan 已提交
77
    char *p = strtok(NULL, " \t");
78
    if (strncasecmp(p, "default", 7) == 0) {
79
      shell.args.displayWidth = SHELL_DEFAULT_MAX_BINARY_DISPLAY_WIDTH;
80
    } else {
81 82 83
      int32_t displayWidth = atoi(p);
      displayWidth = TRANGE(displayWidth, 1, 10 * 1024);
      shell.args.displayWidth = displayWidth;
84
    }
85 86
    return 0;
  }
87

88
  if (shellRegexMatch(command, "^[ \t]*source[\t ]+[^ ]+[ \t;]*$", REG_EXTENDED | REG_ICASE)) {
H
hzcheng 已提交
89 90 91 92 93
    /* If source file. */
    char *c_ptr = strtok(command, " ;");
    assert(c_ptr != NULL);
    c_ptr = strtok(NULL, " ;");
    assert(c_ptr != NULL);
94
    shellSourceFile(c_ptr);
95
    return 0;
H
hzcheng 已提交
96
  }
97

98
  shellRunSingleCommandImp(command);
99
  return 0;
H
hzcheng 已提交
100 101
}

102 103
int32_t shellRunCommand(char *command) {
  if (shellIsEmptyCommand(command)) {
104 105 106
    return 0;
  }

107 108 109 110 111 112
  SShellHistory *pHistory = &shell.history;
  if (pHistory->hstart == pHistory->hend ||
      pHistory->hist[(pHistory->hend + SHELL_MAX_HISTORY_SIZE - 1) % SHELL_MAX_HISTORY_SIZE] == NULL ||
      strcmp(command, pHistory->hist[(pHistory->hend + SHELL_MAX_HISTORY_SIZE - 1) % SHELL_MAX_HISTORY_SIZE]) != 0) {
    if (pHistory->hist[pHistory->hend] != NULL) {
      taosMemoryFreeClear(pHistory->hist[pHistory->hend]);
113
    }
114
    pHistory->hist[pHistory->hend] = strdup(command);
115

116 117 118
    pHistory->hend = (pHistory->hend + 1) % SHELL_MAX_HISTORY_SIZE;
    if (pHistory->hend == pHistory->hstart) {
      pHistory->hstart = (pHistory->hstart + 1) % SHELL_MAX_HISTORY_SIZE;
119 120 121
    }
  }

wmmhello's avatar
wmmhello 已提交
122
  char quote = 0, *cmd = command;
123
  for (char c = *command++; c != 0; c = *command++) {
wmmhello's avatar
wmmhello 已提交
124
    if (c == '\\' && (*command == '\'' || *command == '"' || *command == '`')) {
S
Shengliang Guan 已提交
125
      command++;
126 127
      continue;
    }
128

129 130
    if (quote == c) {
      quote = 0;
wmmhello's avatar
wmmhello 已提交
131
    } else if (quote == 0 && (c == '\'' || c == '"' || c == '`')) {
132
      quote = c;
wmmhello's avatar
wmmhello 已提交
133 134 135
    } else if (c == ';' && quote == 0) {
      c = *command;
      *command = 0;
136
      if (shellRunSingleCommand(cmd) < 0) {
137 138
        return -1;
      }
wmmhello's avatar
wmmhello 已提交
139 140
      *command = c;
      cmd = command;
141 142
    }
  }
143
  return shellRunSingleCommand(cmd);
D
dapan1121 已提交
144 145
}

146
void shellRunSingleCommandImp(char *command) {
147 148 149 150 151
  int64_t st, et;
  char   *sptr = NULL;
  char   *cptr = NULL;
  char   *fname = NULL;
  bool    printMode = false;
H
hzcheng 已提交
152 153 154 155 156 157 158

  if ((sptr = strstr(command, ">>")) != NULL) {
    cptr = strstr(command, ";");
    if (cptr != NULL) {
      *cptr = '\0';
    }

159
    fname = sptr + 2;
wafwerar's avatar
wafwerar 已提交
160
    while (*fname == ' ') fname++;
H
hzcheng 已提交
161 162 163
    *sptr = '\0';
  }

164 165 166 167 168 169 170 171 172 173
  if ((sptr = strstr(command, "\\G")) != NULL) {
    cptr = strstr(command, ";");
    if (cptr != NULL) {
      *cptr = '\0';
    }

    *sptr = '\0';
    printMode = true;  // When output to a file, the switch does not work.
  }

H
hzcheng 已提交
174 175
  st = taosGetTimestampUs();

176
  TAOS_RES *pSql = taos_query(shell.conn, command);
H
Haojun Liao 已提交
177
  if (taos_errno(pSql)) {
178
    shellPrintError(pSql, st);
H
hzcheng 已提交
179 180 181
    return;
  }

182
  if (shellRegexMatch(command, "^\\s*use\\s+[a-zA-Z0-9_]+\\s*;\\s*$", REG_EXTENDED | REG_ICASE)) {
wafwerar's avatar
wafwerar 已提交
183
    fprintf(stdout, "Database changed.\r\n\r\n");
H
hzcheng 已提交
184
    fflush(stdout);
185

S
Shengliang Guan 已提交
186 187
    taos_free_result(pSql);

H
hzcheng 已提交
188 189 190
    return;
  }

S
Shengliang Guan 已提交
191
  TAOS_FIELD *pFields = taos_fetch_fields(pSql);
H
Haojun Liao 已提交
192
  if (pFields != NULL) {  // select and show kinds of commands
193
    int32_t error_no = 0;
194

S
Shengliang Guan 已提交
195
    int32_t numOfRows = shellDumpResult(pSql, fname, &error_no, printMode, command);
196
    if (numOfRows < 0) return;
H
hzcheng 已提交
197 198 199

    et = taosGetTimestampUs();
    if (error_no == 0) {
wafwerar's avatar
wafwerar 已提交
200
      printf("Query OK, %d rows in database (%.6fs)\r\n", numOfRows, (et - st) / 1E6);
H
hzcheng 已提交
201
    } else {
wafwerar's avatar
wafwerar 已提交
202
      printf("Query interrupted (%s), %d rows affected (%.6fs)\r\n", taos_errstr(pSql), numOfRows, (et - st) / 1E6);
H
hzcheng 已提交
203
    }
S
Shengliang Guan 已提交
204
    taos_free_result(pSql);
H
hzcheng 已提交
205
  } else {
206
    int32_t num_rows_affacted = taos_affected_rows(pSql);
207
    taos_free_result(pSql);
H
hzcheng 已提交
208
    et = taosGetTimestampUs();
wafwerar's avatar
wafwerar 已提交
209
    printf("Query OK, %d of %d rows affected (%.6fs)\r\n", num_rows_affacted, num_rows_affacted, (et - st) / 1E6);
H
hzcheng 已提交
210 211
  }

wafwerar's avatar
wafwerar 已提交
212
  printf("\r\n");
H
hzcheng 已提交
213 214
}

215 216
char *shellFormatTimestamp(char *buf, int64_t val, int32_t precision) {
  if (shell.args.is_raw_time) {
217 218 219
    sprintf(buf, "%" PRId64, val);
    return buf;
  }
H
hzcheng 已提交
220

S
Shengliang Guan 已提交
221
  time_t  tt;
D
fix bug  
dapan1121 已提交
222
  int32_t ms = 0;
223 224 225 226
  if (precision == TSDB_TIME_PRECISION_NANO) {
    tt = (time_t)(val / 1000000000);
    ms = val % 1000000000;
  } else if (precision == TSDB_TIME_PRECISION_MICRO) {
227
    tt = (time_t)(val / 1000000);
D
fix bug  
dapan1121 已提交
228
    ms = val % 1000000;
229 230
  } else {
    tt = (time_t)(val / 1000);
D
fix bug  
dapan1121 已提交
231
    ms = val % 1000;
232 233
  }

S
Shengliang Guan 已提交
234
  if (tt <= 0 && ms < 0) {
D
fix bug  
dapan1121 已提交
235
    tt--;
236 237 238
    if (precision == TSDB_TIME_PRECISION_NANO) {
      ms += 1000000000;
    } else if (precision == TSDB_TIME_PRECISION_MICRO) {
D
fix bug  
dapan1121 已提交
239 240 241 242 243
      ms += 1000000;
    } else {
      ms += 1000;
    }
  }
244

245 246 247
  struct tm ptm = {0};
  taosLocalTime(&tt, &ptm);
  size_t     pos = strftime(buf, 35, "%Y-%m-%d %H:%M:%S", &ptm);
248

249 250 251
  if (precision == TSDB_TIME_PRECISION_NANO) {
    sprintf(buf + pos, ".%09d", ms);
  } else if (precision == TSDB_TIME_PRECISION_MICRO) {
D
fix bug  
dapan1121 已提交
252
    sprintf(buf + pos, ".%06d", ms);
253
  } else {
D
fix bug  
dapan1121 已提交
254
    sprintf(buf + pos, ".%03d", ms);
255 256 257 258 259
  }

  return buf;
}

260
void shellDumpFieldToFile(TdFilePtr pFile, const char *val, TAOS_FIELD *field, int32_t length, int32_t precision) {
261
  if (val == NULL) {
262
    taosFprintfFile(pFile, "%s", TSDB_DATA_NULL_STR);
263 264 265
    return;
  }

S
Shengliang Guan 已提交
266
  int  n;
267 268 269
  char buf[TSDB_MAX_BYTES_PER_ROW];
  switch (field->type) {
    case TSDB_DATA_TYPE_BOOL:
270
      taosFprintfFile(pFile, "%d", ((((int32_t)(*((char *)val))) == 1) ? 1 : 0));
271 272
      break;
    case TSDB_DATA_TYPE_TINYINT:
273
      taosFprintfFile(pFile, "%d", *((int8_t *)val));
274
      break;
S
Shengliang Guan 已提交
275 276 277
    case TSDB_DATA_TYPE_UTINYINT:
      taosFprintfFile(pFile, "%u", *((uint8_t *)val));
      break;
278
    case TSDB_DATA_TYPE_SMALLINT:
279
      taosFprintfFile(pFile, "%d", *((int16_t *)val));
280
      break;
S
Shengliang Guan 已提交
281 282 283
    case TSDB_DATA_TYPE_USMALLINT:
      taosFprintfFile(pFile, "%u", *((uint16_t *)val));
      break;
284
    case TSDB_DATA_TYPE_INT:
285
      taosFprintfFile(pFile, "%d", *((int32_t *)val));
286
      break;
S
Shengliang Guan 已提交
287 288 289
    case TSDB_DATA_TYPE_UINT:
      taosFprintfFile(pFile, "%u", *((uint32_t *)val));
      break;
290
    case TSDB_DATA_TYPE_BIGINT:
291
      taosFprintfFile(pFile, "%" PRId64, *((int64_t *)val));
292
      break;
S
Shengliang Guan 已提交
293 294 295
    case TSDB_DATA_TYPE_UBIGINT:
      taosFprintfFile(pFile, "%" PRIu64, *((uint64_t *)val));
      break;
296
    case TSDB_DATA_TYPE_FLOAT:
297
      taosFprintfFile(pFile, "%.5f", GET_FLOAT_VAL(val));
298 299
      break;
    case TSDB_DATA_TYPE_DOUBLE:
S
Shengliang Guan 已提交
300
      n = snprintf(buf, TSDB_MAX_BYTES_PER_ROW, "%*.9f", length, GET_DOUBLE_VAL(val));
301
      if (n > TMAX(25, length)) {
S
Shengliang Guan 已提交
302 303 304 305
        taosFprintfFile(pFile, "%*.15e", length, GET_DOUBLE_VAL(val));
      } else {
        taosFprintfFile(pFile, "%s", buf);
      }
306 307 308
      break;
    case TSDB_DATA_TYPE_BINARY:
    case TSDB_DATA_TYPE_NCHAR:
wmmhello's avatar
wmmhello 已提交
309
    case TSDB_DATA_TYPE_JSON:
310 311
      memcpy(buf, val, length);
      buf[length] = 0;
312
      taosFprintfFile(pFile, "\'%s\'", buf);
313 314
      break;
    case TSDB_DATA_TYPE_TIMESTAMP:
315
      shellFormatTimestamp(buf, *(int64_t *)val, precision);
316
      taosFprintfFile(pFile, "'%s'", buf);
317 318 319 320 321 322
      break;
    default:
      break;
  }
}

323
int32_t shellDumpResultToFile(const char *fname, TAOS_RES *tres) {
324 325 326 327 328
  char fullname[PATH_MAX] = {0};
  if (taosExpandDir(fname, fullname, PATH_MAX) != 0) {
    tstrncpy(fullname, fname, PATH_MAX);
  }

329
  TAOS_ROW row = taos_fetch_row(tres);
330 331 332 333
  if (row == NULL) {
    return 0;
  }

334
  TdFilePtr pFile = taosOpenFile(fullname, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_TRUNC | TD_FILE_STREAM);
335
  if (pFile == NULL) {
wafwerar's avatar
wafwerar 已提交
336
    fprintf(stderr, "failed to open file: %s\r\n", fullname);
337 338 339
    return -1;
  }

340
  TAOS_FIELD *fields = taos_fetch_fields(tres);
341 342
  int32_t     num_fields = taos_num_fields(tres);
  int32_t     precision = taos_result_precision(tres);
343

344
  for (int32_t col = 0; col < num_fields; col++) {
345
    if (col > 0) {
346
      taosFprintfFile(pFile, ",");
347
    }
348
    taosFprintfFile(pFile, "%s", fields[col].name);
349
  }
wafwerar's avatar
wafwerar 已提交
350
  taosFprintfFile(pFile, "\r\n");
351

352
  int32_t numOfRows = 0;
353
  do {
S
Shengliang Guan 已提交
354
    int32_t *length = taos_fetch_lengths(tres);
355
    for (int32_t i = 0; i < num_fields; i++) {
356
      if (i > 0) {
X
Xiaoyu Wang 已提交
357
        taosFprintfFile(pFile, ",");
358
      }
359
      shellDumpFieldToFile(pFile, (const char *)row[i], fields + i, length[i], precision);
H
hzcheng 已提交
360
    }
wafwerar's avatar
wafwerar 已提交
361
    taosFprintfFile(pFile, "\r\n");
362 363

    numOfRows++;
364
    row = taos_fetch_row(tres);
S
Shengliang Guan 已提交
365
  } while (row != NULL);
366

367
  taosCloseFile(&pFile);
368

369 370 371
  return numOfRows;
}

372
void shellPrintNChar(const char *str, int32_t length, int32_t width) {
wafwerar's avatar
wafwerar 已提交
373
  TdWchar tail[3];
374
  int32_t pos = 0, cols = 0, totalCols = 0, tailLen = 0;
375

376
  while (pos < length) {
wafwerar's avatar
wafwerar 已提交
377
    TdWchar wc;
378
    int32_t bytes = taosMbToWchar(&wc, str + pos, MB_CUR_MAX);
wmmhello's avatar
wmmhello 已提交
379
    if (bytes <= 0) {
380 381
      break;
    }
wmmhello's avatar
wmmhello 已提交
382 383

    if (pos + bytes > length) {
384 385
      break;
    }
wmmhello's avatar
wmmhello 已提交
386
    int w = 0;
X
Xiaoyu Wang 已提交
387
    if (*(str + pos) == '\t' || *(str + pos) == '\n' || *(str + pos) == '\r') {
wmmhello's avatar
wmmhello 已提交
388
      w = bytes;
X
Xiaoyu Wang 已提交
389
    } else {
wmmhello's avatar
wmmhello 已提交
390 391 392 393
      w = taosWcharWidth(wc);
    }
    pos += bytes;

394 395 396 397 398 399 400 401 402 403 404 405 406 407
    if (w <= 0) {
      continue;
    }

    if (width <= 0) {
      printf("%lc", wc);
      continue;
    }

    totalCols += w;
    if (totalCols > width) {
      break;
    }
    if (totalCols <= (width - 3)) {
408 409
      printf("%lc", wc);
      cols += w;
410 411 412
    } else {
      tail[tailLen] = wc;
      tailLen++;
413 414 415
    }
  }

416 417
  if (totalCols > width) {
    // width could be 1 or 2, so printf("...") cannot be used
418
    for (int32_t i = 0; i < 3; i++) {
419 420 421 422 423 424 425
      if (cols >= width) {
        break;
      }
      putchar('.');
      ++cols;
    }
  } else {
426
    for (int32_t i = 0; i < tailLen; i++) {
427 428 429 430 431
      printf("%lc", tail[i]);
    }
    cols = totalCols;
  }

432 433 434 435 436
  for (; cols < width; cols++) {
    putchar(' ');
  }
}

437
void shellPrintField(const char *val, TAOS_FIELD *field, int32_t width, int32_t length, int32_t precision) {
438
  if (val == NULL) {
439
    int32_t w = width;
440 441
    if (field->type < TSDB_DATA_TYPE_TINYINT || field->type > TSDB_DATA_TYPE_DOUBLE) {
      w = 0;
H
hzcheng 已提交
442
    }
443 444 445 446 447 448
    w = printf("%*s", w, TSDB_DATA_NULL_STR);
    for (; w < width; w++) {
      putchar(' ');
    }
    return;
  }
H
hzcheng 已提交
449

S
Shengliang Guan 已提交
450
  int  n;
451 452 453
  char buf[TSDB_MAX_BYTES_PER_ROW];
  switch (field->type) {
    case TSDB_DATA_TYPE_BOOL:
S
TD-1530  
Shengliang Guan 已提交
454
      printf("%*s", width, ((((int32_t)(*((char *)val))) == 1) ? "true" : "false"));
455 456
      break;
    case TSDB_DATA_TYPE_TINYINT:
S
TD-1530  
Shengliang Guan 已提交
457
      printf("%*d", width, *((int8_t *)val));
458
      break;
459 460 461
    case TSDB_DATA_TYPE_UTINYINT:
      printf("%*u", width, *((uint8_t *)val));
      break;
462
    case TSDB_DATA_TYPE_SMALLINT:
S
TD-1530  
Shengliang Guan 已提交
463
      printf("%*d", width, *((int16_t *)val));
464
      break;
465 466 467
    case TSDB_DATA_TYPE_USMALLINT:
      printf("%*u", width, *((uint16_t *)val));
      break;
468
    case TSDB_DATA_TYPE_INT:
S
TD-1530  
Shengliang Guan 已提交
469
      printf("%*d", width, *((int32_t *)val));
470
      break;
471 472 473
    case TSDB_DATA_TYPE_UINT:
      printf("%*u", width, *((uint32_t *)val));
      break;
474 475 476
    case TSDB_DATA_TYPE_BIGINT:
      printf("%*" PRId64, width, *((int64_t *)val));
      break;
477 478 479
    case TSDB_DATA_TYPE_UBIGINT:
      printf("%*" PRIu64, width, *((uint64_t *)val));
      break;
480 481 482 483
    case TSDB_DATA_TYPE_FLOAT:
      printf("%*.5f", width, GET_FLOAT_VAL(val));
      break;
    case TSDB_DATA_TYPE_DOUBLE:
S
Shengliang Guan 已提交
484
      n = snprintf(buf, TSDB_MAX_BYTES_PER_ROW, "%*.9f", width, GET_DOUBLE_VAL(val));
485
      if (n > TMAX(25, width)) {
S
Shengliang Guan 已提交
486 487 488 489
        printf("%*.15e", width, GET_DOUBLE_VAL(val));
      } else {
        printf("%s", buf);
      }
490 491 492
      break;
    case TSDB_DATA_TYPE_BINARY:
    case TSDB_DATA_TYPE_NCHAR:
wmmhello's avatar
wmmhello 已提交
493
    case TSDB_DATA_TYPE_JSON:
B
Bomin Zhang 已提交
494
      shellPrintNChar(val, length, width);
495 496
      break;
    case TSDB_DATA_TYPE_TIMESTAMP:
497
      shellFormatTimestamp(buf, *(int64_t *)val, precision);
498 499 500 501
      printf("%s", buf);
      break;
    default:
      break;
H
hzcheng 已提交
502
  }
503
}
H
hzcheng 已提交
504

S
Shengliang Guan 已提交
505
bool shellIsLimitQuery(const char *sql) {
X
Xiaoyu Wang 已提交
506
  // todo refactor
wafwerar's avatar
wafwerar 已提交
507
  if (taosStrCaseStr(sql, " limit ") != NULL) {
S
Shengliang Guan 已提交
508 509 510 511 512 513
    return true;
  }

  return false;
}

D
dapan1121 已提交
514
bool shellIsShowQuery(const char *sql) {
X
Xiaoyu Wang 已提交
515
  // todo refactor
D
dapan1121 已提交
516 517 518 519 520 521 522
  if (taosStrCaseStr(sql, "show ") != NULL) {
    return true;
  }

  return false;
}

S
Shengliang Guan 已提交
523
int32_t shellVerticalPrintResult(TAOS_RES *tres, const char *sql) {
H
Haojun Liao 已提交
524
  TAOS_ROW row = taos_fetch_row(tres);
525 526 527 528
  if (row == NULL) {
    return 0;
  }

529
  int32_t     num_fields = taos_num_fields(tres);
H
Haojun Liao 已提交
530
  TAOS_FIELD *fields = taos_fetch_fields(tres);
531
  int32_t     precision = taos_result_precision(tres);
532

533 534 535
  int32_t maxColNameLen = 0;
  for (int32_t col = 0; col < num_fields; col++) {
    int32_t len = (int32_t)strlen(fields[col].name);
536 537 538 539 540
    if (len > maxColNameLen) {
      maxColNameLen = len;
    }
  }

D
fix bug  
dapan1121 已提交
541 542
  uint64_t resShowMaxNum = UINT64_MAX;

S
Shengliang Guan 已提交
543
  if (shell.args.commands == NULL && shell.args.file[0] == 0 && !shellIsLimitQuery(sql)) {
544
    resShowMaxNum = SHELL_DEFAULT_RES_SHOW_NUM;
D
fix bug  
dapan1121 已提交
545 546
  }

547 548
  int32_t numOfRows = 0;
  int32_t showMore = 1;
549
  do {
D
fix bug  
dapan1121 已提交
550
    if (numOfRows < resShowMaxNum) {
wafwerar's avatar
wafwerar 已提交
551
      printf("*************************** %d.row ***************************\r\n", numOfRows + 1);
D
fix bug  
dapan1121 已提交
552

S
Shengliang Guan 已提交
553
      int32_t *length = taos_fetch_lengths(tres);
D
fix bug  
dapan1121 已提交
554

555
      for (int32_t i = 0; i < num_fields; i++) {
S
Shengliang Guan 已提交
556
        TAOS_FIELD *field = fields + i;
557

558
        int32_t padding = (int32_t)(maxColNameLen - strlen(field->name));
D
fix bug  
dapan1121 已提交
559
        printf("%*.s%s: ", padding, " ", field->name);
560

561
        shellPrintField((const char *)row[i], field, 0, length[i], precision);
wafwerar's avatar
wafwerar 已提交
562
        putchar('\r');
D
fix bug  
dapan1121 已提交
563 564
        putchar('\n');
      }
D
fix bug  
dapan1121 已提交
565
    } else if (showMore) {
wafwerar's avatar
wafwerar 已提交
566 567 568 569 570 571 572
      printf("\r\n");
      printf(" Notice: The result shows only the first %d rows.\r\n", SHELL_DEFAULT_RES_SHOW_NUM);
      printf("         You can use the `LIMIT` clause to get fewer result to show.\r\n");
      printf("           Or use '>>' to redirect the whole set of the result to a specified file.\r\n");
      printf("\r\n");
      printf("         You can use Ctrl+C to stop the underway fetching.\r\n");
      printf("\r\n");
S
Shengliang Guan 已提交
573
      showMore = 0;
574 575 576
    }

    numOfRows++;
H
Haojun Liao 已提交
577
    row = taos_fetch_row(tres);
S
Shengliang Guan 已提交
578
  } while (row != NULL);
579 580 581 582

  return numOfRows;
}

583 584
int32_t shellCalcColWidth(TAOS_FIELD *field, int32_t precision) {
  int32_t width = (int32_t)strlen(field->name);
585 586

  switch (field->type) {
D
dapan1121 已提交
587 588
    case TSDB_DATA_TYPE_NULL:
      return TMAX(4, width);  // null
589
    case TSDB_DATA_TYPE_BOOL:
dengyihao's avatar
dengyihao 已提交
590
      return TMAX(5, width);  // 'false'
591 592

    case TSDB_DATA_TYPE_TINYINT:
593
    case TSDB_DATA_TYPE_UTINYINT:
dengyihao's avatar
dengyihao 已提交
594
      return TMAX(4, width);  // '-127'
595 596

    case TSDB_DATA_TYPE_SMALLINT:
597
    case TSDB_DATA_TYPE_USMALLINT:
dengyihao's avatar
dengyihao 已提交
598
      return TMAX(6, width);  // '-32767'
599 600

    case TSDB_DATA_TYPE_INT:
601
    case TSDB_DATA_TYPE_UINT:
dengyihao's avatar
dengyihao 已提交
602
      return TMAX(11, width);  // '-2147483648'
603 604

    case TSDB_DATA_TYPE_BIGINT:
605
    case TSDB_DATA_TYPE_UBIGINT:
dengyihao's avatar
dengyihao 已提交
606
      return TMAX(21, width);  // '-9223372036854775807'
607 608

    case TSDB_DATA_TYPE_FLOAT:
dengyihao's avatar
dengyihao 已提交
609
      return TMAX(20, width);
610 611

    case TSDB_DATA_TYPE_DOUBLE:
dengyihao's avatar
dengyihao 已提交
612
      return TMAX(25, width);
613 614

    case TSDB_DATA_TYPE_BINARY:
615 616
      if (field->bytes > shell.args.displayWidth) {
        return TMAX(shell.args.displayWidth, width);
617
      } else {
dengyihao's avatar
dengyihao 已提交
618
        return TMAX(field->bytes, width);
619 620
      }

wmmhello's avatar
wmmhello 已提交
621 622
    case TSDB_DATA_TYPE_NCHAR:
    case TSDB_DATA_TYPE_JSON: {
623
      int16_t bytes = field->bytes * TSDB_NCHAR_SIZE;
624 625
      if (bytes > shell.args.displayWidth) {
        return TMAX(shell.args.displayWidth, width);
626
      } else {
dengyihao's avatar
dengyihao 已提交
627
        return TMAX(bytes, width);
628 629 630
      }
    }

631
    case TSDB_DATA_TYPE_TIMESTAMP:
632
      if (shell.args.is_raw_time) {
dengyihao's avatar
dengyihao 已提交
633
        return TMAX(14, width);
S
Shengliang Guan 已提交
634 635
      }
      if (precision == TSDB_TIME_PRECISION_NANO) {
dengyihao's avatar
dengyihao 已提交
636
        return TMAX(29, width);
637
      } else if (precision == TSDB_TIME_PRECISION_MICRO) {
dengyihao's avatar
dengyihao 已提交
638
        return TMAX(26, width);  // '2020-01-01 00:00:00.000000'
639
      } else {
dengyihao's avatar
dengyihao 已提交
640
        return TMAX(23, width);  // '2020-01-01 00:00:00.000'
S
slguan 已提交
641
      }
H
hzcheng 已提交
642

643 644
    default:
      assert(false);
H
hzcheng 已提交
645 646
  }

647 648
  return 0;
}
H
hzcheng 已提交
649

650 651 652
void shellPrintHeader(TAOS_FIELD *fields, int32_t *width, int32_t num_fields) {
  int32_t rowWidth = 0;
  for (int32_t col = 0; col < num_fields; col++) {
S
Shengliang Guan 已提交
653
    TAOS_FIELD *field = fields + col;
654 655
    int32_t     padding = (int32_t)(width[col] - strlen(field->name));
    int32_t     left = padding / 2;
656 657 658 659
    printf(" %*.s%s%*.s |", left, " ", field->name, padding - left, " ");
    rowWidth += width[col] + 3;
  }

wafwerar's avatar
wafwerar 已提交
660
  putchar('\r');
661
  putchar('\n');
662
  for (int32_t i = 0; i < rowWidth; i++) {
663 664
    putchar('=');
  }
wafwerar's avatar
wafwerar 已提交
665
  putchar('\r');
666 667 668
  putchar('\n');
}

S
Shengliang Guan 已提交
669
int32_t shellHorizontalPrintResult(TAOS_RES *tres, const char *sql) {
H
Haojun Liao 已提交
670
  TAOS_ROW row = taos_fetch_row(tres);
671 672 673 674
  if (row == NULL) {
    return 0;
  }

675
  int32_t     num_fields = taos_num_fields(tres);
H
Haojun Liao 已提交
676
  TAOS_FIELD *fields = taos_fetch_fields(tres);
677
  int32_t     precision = taos_result_precision(tres);
678

679 680 681
  int32_t width[TSDB_MAX_COLUMNS];
  for (int32_t col = 0; col < num_fields; col++) {
    width[col] = shellCalcColWidth(fields + col, precision);
682 683
  }

684
  shellPrintHeader(fields, width, num_fields);
685

D
fix bug  
dapan1121 已提交
686 687
  uint64_t resShowMaxNum = UINT64_MAX;

wafwerar's avatar
wafwerar 已提交
688
  if (shell.args.commands == NULL && shell.args.file[0] == 0 && !shellIsLimitQuery(sql)) {
689
    resShowMaxNum = SHELL_DEFAULT_RES_SHOW_NUM;
D
fix bug  
dapan1121 已提交
690 691
  }

692 693
  int32_t numOfRows = 0;
  int32_t showMore = 1;
694

695
  do {
S
Shengliang Guan 已提交
696
    int32_t *length = taos_fetch_lengths(tres);
D
fix bug  
dapan1121 已提交
697
    if (numOfRows < resShowMaxNum) {
698
      for (int32_t i = 0; i < num_fields; i++) {
D
fix bug  
dapan1121 已提交
699
        putchar(' ');
700
        shellPrintField((const char *)row[i], fields + i, width[i], length[i], precision);
D
fix bug  
dapan1121 已提交
701 702 703
        putchar(' ');
        putchar('|');
      }
wafwerar's avatar
wafwerar 已提交
704
      putchar('\r');
D
fix bug  
dapan1121 已提交
705
      putchar('\n');
D
fix bug  
dapan1121 已提交
706
    } else if (showMore) {
wafwerar's avatar
wafwerar 已提交
707 708
      printf("\r\n");
      printf(" Notice: The result shows only the first %d rows.\r\n", SHELL_DEFAULT_RES_SHOW_NUM);
wafwerar's avatar
wafwerar 已提交
709 710 711 712 713 714
      if (shellIsShowQuery(sql)) {
        printf("         You can use '>>' to redirect the whole set of the result to a specified file.\r\n");
      } else {
        printf("         You can use the `LIMIT` clause to get fewer result to show.\r\n");
        printf("           Or use '>>' to redirect the whole set of the result to a specified file.\r\n");
      }
wafwerar's avatar
wafwerar 已提交
715 716 717
      printf("\r\n");
      printf("         You can use Ctrl+C to stop the underway fetching.\r\n");
      printf("\r\n");
S
Shengliang Guan 已提交
718
      showMore = 0;
719
    }
720

721
    numOfRows++;
H
Haojun Liao 已提交
722
    row = taos_fetch_row(tres);
S
Shengliang Guan 已提交
723
  } while (row != NULL);
724 725 726 727

  return numOfRows;
}

S
Shengliang Guan 已提交
728
int32_t shellDumpResult(TAOS_RES *tres, char *fname, int32_t *error_no, bool vertical, const char *sql) {
729
  int32_t numOfRows = 0;
H
hzcheng 已提交
730
  if (fname != NULL) {
731
    numOfRows = shellDumpResultToFile(fname, tres);
S
Shengliang Guan 已提交
732
  } else if (vertical) {
S
Shengliang Guan 已提交
733
    numOfRows = shellVerticalPrintResult(tres, sql);
734
  } else {
S
Shengliang Guan 已提交
735
    numOfRows = shellHorizontalPrintResult(tres, sql);
H
hzcheng 已提交
736 737
  }

H
Haojun Liao 已提交
738
  *error_no = taos_errno(tres);
H
hzcheng 已提交
739 740 741
  return numOfRows;
}

742
void shellReadHistory() {
743 744 745
  SShellHistory *pHistory = &shell.history;
  TdFilePtr      pFile = taosOpenFile(pHistory->file, TD_FILE_READ | TD_FILE_STREAM);
  if (pFile == NULL) return;
H
hzcheng 已提交
746

747 748
  char   *line = NULL;
  int32_t read_size = 0;
749
  while ((read_size = taosGetLineFile(pFile, &line)) != -1) {
H
hzcheng 已提交
750
    line[read_size - 1] = '\0';
751
    taosMemoryFree(pHistory->hist[pHistory->hend]);
752
    pHistory->hist[pHistory->hend] = strdup(line);
H
hzcheng 已提交
753

754
    pHistory->hend = (pHistory->hend + 1) % SHELL_MAX_HISTORY_SIZE;
H
hzcheng 已提交
755

756 757
    if (pHistory->hend == pHistory->hstart) {
      pHistory->hstart = (pHistory->hstart + 1) % SHELL_MAX_HISTORY_SIZE;
H
hzcheng 已提交
758 759 760
    }
  }

S
Shengliang Guan 已提交
761
  if (line != NULL) taosMemoryFree(line);
762
  taosCloseFile(&pFile);
763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
  int64_t file_size;
  if (taosStatFile(pHistory->file, &file_size, NULL) == 0 && file_size > SHELL_MAX_COMMAND_SIZE) {
    TdFilePtr      pFile = taosOpenFile(pHistory->file, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_STREAM | TD_FILE_TRUNC);
    if (pFile == NULL) return;
    int32_t endIndex = pHistory->hstart;
    if (endIndex != 0) {
      endIndex = pHistory->hend;
    }
    for (int32_t i = (pHistory->hend + SHELL_MAX_HISTORY_SIZE - 1) % SHELL_MAX_HISTORY_SIZE; i != endIndex;) {
      taosFprintfFile(pFile, "%s\n", pHistory->hist[i]);
      i = (i + SHELL_MAX_HISTORY_SIZE - 1) % SHELL_MAX_HISTORY_SIZE;
    }
    taosFprintfFile(pFile, "%s\n", pHistory->hist[endIndex]);
    taosFsyncFile(pFile);
    taosCloseFile(&pFile);
  }
  pHistory->hend = pHistory->hstart;
H
hzcheng 已提交
780 781
}

782
void shellWriteHistory() {
783
  SShellHistory *pHistory = &shell.history;
784
  if (pHistory->hend == pHistory->hstart) return;
S
Shengliang Guan 已提交
785
  TdFilePtr      pFile = taosOpenFile(pHistory->file, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_STREAM | TD_FILE_APPEND);
786
  if (pFile == NULL) return;
H
hzcheng 已提交
787

788 789 790
  for (int32_t i = pHistory->hstart; i != pHistory->hend;) {
    if (pHistory->hist[i] != NULL) {
      taosFprintfFile(pFile, "%s\n", pHistory->hist[i]);
791 792
      taosMemoryFree(pHistory->hist[i]);
      pHistory->hist[i] = NULL;
H
hzcheng 已提交
793
    }
794
    i = (i + 1) % SHELL_MAX_HISTORY_SIZE;
H
hzcheng 已提交
795
  }
796
  taosFsyncFile(pFile);
797
  taosCloseFile(&pFile);
H
hzcheng 已提交
798 799
}

800 801 802 803 804 805 806 807 808 809
void shellCleanupHistory() {
  SShellHistory *pHistory = &shell.history;
  for (int32_t i = 0; i < SHELL_MAX_HISTORY_SIZE; ++i) {
    if (pHistory->hist[i] != NULL) {
      taosMemoryFree(pHistory->hist[i]);
      pHistory->hist[i] = NULL;
    }
  }
}

810
void shellPrintError(TAOS_RES *tres, int64_t st) {
S
TD-1793  
Shengliang Guan 已提交
811
  int64_t et = taosGetTimestampUs();
wafwerar's avatar
wafwerar 已提交
812
  fprintf(stderr, "\r\nDB error: %s (%.6fs)\r\n", taos_errstr(tres), (et - st) / 1E6);
H
Haojun Liao 已提交
813
  taos_free_result(tres);
H
hzcheng 已提交
814 815
}

816 817
bool shellIsCommentLine(char *line) {
  if (line == NULL) return true;
818
  return shellRegexMatch(line, "^\\s*#.*", REG_EXTENDED);
H
hzcheng 已提交
819 820
}

821 822 823 824 825
void shellSourceFile(const char *file) {
  int32_t read_len = 0;
  char   *cmd = taosMemoryCalloc(1, TSDB_MAX_ALLOWED_SQL_LEN + 1);
  size_t  cmd_len = 0;
  char   *line = NULL;
826
  char    fullname[PATH_MAX] = {0};
H
hzcheng 已提交
827

828 829
  if (taosExpandDir(file, fullname, PATH_MAX) != 0) {
    tstrncpy(fullname, file, PATH_MAX);
H
hzcheng 已提交
830 831
  }

832
  TdFilePtr pFile = taosOpenFile(fullname, TD_FILE_READ | TD_FILE_STREAM);
833
  if (pFile == NULL) {
wafwerar's avatar
wafwerar 已提交
834
    fprintf(stderr, "failed to open file %s\r\n", fullname);
wafwerar's avatar
wafwerar 已提交
835
    taosMemoryFree(cmd);
H
hzcheng 已提交
836 837 838
    return;
  }

839
  while ((read_len = taosGetLineFile(pFile, &line)) != -1) {
H
Haojun Liao 已提交
840
    if (read_len >= TSDB_MAX_ALLOWED_SQL_LEN) continue;
H
hzcheng 已提交
841 842
    line[--read_len] = '\0';

843
    if (read_len == 0 || shellIsCommentLine(line)) {  // line starts with #
H
hzcheng 已提交
844 845 846 847 848 849 850 851 852 853 854
      continue;
    }

    if (line[read_len - 1] == '\\') {
      line[read_len - 1] = ' ';
      memcpy(cmd + cmd_len, line, read_len);
      cmd_len += read_len;
      continue;
    }

    memcpy(cmd + cmd_len, line, read_len);
wafwerar's avatar
wafwerar 已提交
855
    printf("%s%s\r\n", shell.info.promptHeader, cmd);
856
    shellRunCommand(cmd);
H
Haojun Liao 已提交
857
    memset(cmd, 0, TSDB_MAX_ALLOWED_SQL_LEN);
H
hzcheng 已提交
858 859 860
    cmd_len = 0;
  }

wafwerar's avatar
wafwerar 已提交
861
  taosMemoryFree(cmd);
S
Shengliang Guan 已提交
862
  if (line != NULL) taosMemoryFree(line);
863
  taosCloseFile(&pFile);
H
hzcheng 已提交
864
}
S
slguan 已提交
865

866
void shellGetGrantInfo() {
867 868
  char sinfo[1024] = {0};
  tstrncpy(sinfo, taos_get_server_info(shell.conn), sizeof(sinfo));
wafwerar's avatar
wafwerar 已提交
869
  strtok(sinfo, "\r\n");
870

S
slguan 已提交
871 872
  char sql[] = "show grants";

873
  TAOS_RES *tres = taos_query(shell.conn, sql);
H
Haojun Liao 已提交
874

875
  int32_t code = taos_errno(tres);
S
slguan 已提交
876
  if (code != TSDB_CODE_SUCCESS) {
877
    if (code != TSDB_CODE_OPS_NOT_SUPPORT && code != TSDB_CODE_MND_NO_RIGHTS) {
wafwerar's avatar
wafwerar 已提交
878
      fprintf(stderr, "Failed to check Server Edition, Reason:0x%04x:%s\r\n\r\n", code, taos_errstr(tres));
S
slguan 已提交
879
    }
S
slguan 已提交
880 881 882
    return;
  }

883
  int32_t num_fields = taos_field_count(tres);
S
slguan 已提交
884
  if (num_fields == 0) {
wafwerar's avatar
wafwerar 已提交
885
    fprintf(stderr, "\r\nInvalid grant information.\r\n");
S
slguan 已提交
886 887
    exit(0);
  } else {
888
    if (tres == NULL) {
wafwerar's avatar
wafwerar 已提交
889
      fprintf(stderr, "\r\nGrant information is null.\r\n");
S
slguan 已提交
890 891 892
      exit(0);
    }

893
    TAOS_FIELD *fields = taos_fetch_fields(tres);
894
    TAOS_ROW    row = taos_fetch_row(tres);
S
slguan 已提交
895
    if (row == NULL) {
wafwerar's avatar
wafwerar 已提交
896
      fprintf(stderr, "\r\nFailed to get grant information from server. Abort.\r\n");
S
slguan 已提交
897 898 899
      exit(0);
    }

S
slguan 已提交
900
    char serverVersion[32] = {0};
S
slguan 已提交
901 902 903
    char expiretime[32] = {0};
    char expired[32] = {0};

S
slguan 已提交
904
    memcpy(serverVersion, row[0], fields[0].bytes);
S
slguan 已提交
905 906 907
    memcpy(expiretime, row[1], fields[1].bytes);
    memcpy(expired, row[2], fields[2].bytes);

908
    if (strcmp(serverVersion, "community") == 0) {
wafwerar's avatar
wafwerar 已提交
909
      fprintf(stdout, "Server is Community Edition.\r\n");
910
    } else if (strcmp(expiretime, "unlimited") == 0) {
wafwerar's avatar
wafwerar 已提交
911
      fprintf(stdout, "Server is Enterprise %s Edition, %s and will never expire.\r\n", serverVersion, sinfo);
S
slguan 已提交
912
    } else {
wafwerar's avatar
wafwerar 已提交
913
      fprintf(stdout, "Server is Enterprise %s Edition, %s and will expire at %s.\r\n", serverVersion, sinfo, expiretime);
S
slguan 已提交
914 915
    }

916
    taos_free_result(tres);
S
slguan 已提交
917 918
  }

wafwerar's avatar
wafwerar 已提交
919
  fprintf(stdout, "\r\n");
920 921
}

922 923 924 925
#ifdef WINDOWS
BOOL shellQueryInterruptHandler(DWORD fdwCtrlType) {
  tsem_post(&shell.cancelSem);
  return TRUE;
926
}
927 928 929
#else
void shellQueryInterruptHandler(int32_t signum, void *sigInfo, void *context) { tsem_post(&shell.cancelSem); }
#endif
930

931 932 933 934 935 936 937 938 939
void shellCleanup(void *arg) { taosResetTerminalMode(); }

void *shellCancelHandler(void *arg) {
  setThreadName("shellCancelHandler");
  while (1) {
    if (tsem_wait(&shell.cancelSem) != 0) {
      taosMsleep(10);
      continue;
    }
940 941 942 943
    taos_kill_query(shell.conn);
  #ifdef WINDOWS
    printf("\n%s", shell.info.promptHeader);
  #endif
944 945 946 947 948 949 950 951 952 953 954 955
  }

  return NULL;
}

void *shellThreadLoop(void *arg) {
  setThreadName("shellThreadLoop");
  taosGetOldTerminalMode();
  taosThreadCleanupPush(shellCleanup, NULL);

  char *command = taosMemoryMalloc(SHELL_MAX_COMMAND_SIZE);
  if (command == NULL) {
wafwerar's avatar
wafwerar 已提交
956
    printf("failed to malloc command\r\n");
957 958 959 960 961 962 963 964 965 966 967 968 969 970 971
    return NULL;
  }

  do {
    memset(command, 0, SHELL_MAX_COMMAND_SIZE);
    taosSetTerminalMode();

    if (shellReadCommand(command) != 0) {
      break;
    }

    taosResetTerminalMode();
  } while (shellRunCommand(command) == 0);

  taosMemoryFreeClear(command);
972 973
  shellWriteHistory();
  shellExit();
974

975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994
  taosThreadCleanupPop(1);
  return NULL;
}

int32_t shellExecute() {
  printf(shell.info.clientVersion, shell.info.osname, taos_get_client_info());
  fflush(stdout);

  SShellArgs *pArgs = &shell.args;
  if (shell.args.auth == NULL) {
    shell.conn = taos_connect(pArgs->host, pArgs->user, pArgs->password, pArgs->database, pArgs->port);
  } else {
    shell.conn = taos_connect_auth(pArgs->host, pArgs->user, pArgs->auth, pArgs->database, pArgs->port);
  }

  if (shell.conn == NULL) {
    fflush(stdout);
    return -1;
  }

995 996
  shellReadHistory();

997
  if (pArgs->commands != NULL || pArgs->file[0] != 0) {
998
    if (pArgs->commands != NULL) {
wafwerar's avatar
wafwerar 已提交
999
      printf("%s%s\r\n", shell.info.promptHeader, pArgs->commands);
1000 1001 1002 1003 1004
      char *cmd = strdup(pArgs->commands);
      shellRunCommand(cmd);
      taosMemoryFree(cmd);
    }

1005
    if (pArgs->file[0] != 0) {
1006 1007 1008 1009 1010
      shellSourceFile(pArgs->file);
    }

    taos_close(shell.conn);
    shellWriteHistory();
1011
    shellCleanupHistory();
1012 1013 1014 1015
    return 0;
  }

  if (tsem_init(&shell.cancelSem, 0, 0) != 0) {
wafwerar's avatar
wafwerar 已提交
1016
    printf("failed to create cancel semphore\r\n");
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
    return -1;
  }

  TdThread spid = {0};
  taosThreadCreate(&spid, NULL, shellCancelHandler, NULL);

  taosSetSignal(SIGTERM, shellQueryInterruptHandler);
  taosSetSignal(SIGHUP, shellQueryInterruptHandler);
  taosSetSignal(SIGABRT, shellQueryInterruptHandler);

1027
  taosSetSignal(SIGINT, shellQueryInterruptHandler);
1028

1029
  shellGetGrantInfo();
1030 1031 1032 1033

  while (1) {
    taosThreadCreate(&shell.pid, NULL, shellThreadLoop, shell.conn);
    taosThreadJoin(shell.pid, NULL);
1034
    taosThreadClear(&shell.pid);
1035 1036
  }

1037
  shellCleanupHistory();
1038
  return 0;
S
slguan 已提交
1039
}