shellEngine.c 28.2 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/>.
 */

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

22 23 24 25 26 27 28 29 30 31
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 已提交
32
static int32_t shellVerticalPrintResult(TAOS_RES *tres, const char *sql);
33 34
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 已提交
35 36
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);
37 38 39 40 41 42 43 44 45 46 47 48
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();
static void    shellQueryInterruptHandler(int32_t signum, void *sigInfo, void *context);
static void    shellCleanup(void *arg);
static void   *shellCancelHandler(void *arg);
static void   *shellThreadLoop(void *arg);

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

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

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

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

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

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

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

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

106 107 108 109 110 111
  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]);
112
    }
113
    pHistory->hist[pHistory->hend] = strdup(command);
114

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

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

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

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

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

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

163 164 165 166 167 168 169 170 171 172
  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 已提交
173 174
  st = taosGetTimestampUs();

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

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

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

H
hzcheng 已提交
187 188 189
    return;
  }

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

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

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

  printf("\n");
}

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

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

233 234
  /*
    comment out as it make testcases like select_with_tags.sim fail.
S
Shengliang Guan 已提交
235 236 237 238 239
    but in windows, this may cause the call to localtime crash if tt < 0,
    need to find a better solution.
    if (tt < 0) {
      tt = 0;
    }
240
  */
241

242 243 244
#ifdef WINDOWS
  if (tt < 0) tt = 0;
#endif
S
Shengliang Guan 已提交
245
  if (tt <= 0 && ms < 0) {
D
fix bug  
dapan1121 已提交
246
    tt--;
247 248 249
    if (precision == TSDB_TIME_PRECISION_NANO) {
      ms += 1000000000;
    } else if (precision == TSDB_TIME_PRECISION_MICRO) {
D
fix bug  
dapan1121 已提交
250 251 252 253 254
      ms += 1000000;
    } else {
      ms += 1000;
    }
  }
255

256
  struct tm *ptm = taosLocalTime(&tt, NULL);
S
Shengliang Guan 已提交
257
  size_t     pos = strftime(buf, 35, "%Y-%m-%d %H:%M:%S", ptm);
258

259 260 261
  if (precision == TSDB_TIME_PRECISION_NANO) {
    sprintf(buf + pos, ".%09d", ms);
  } else if (precision == TSDB_TIME_PRECISION_MICRO) {
D
fix bug  
dapan1121 已提交
262
    sprintf(buf + pos, ".%06d", ms);
263
  } else {
D
fix bug  
dapan1121 已提交
264
    sprintf(buf + pos, ".%03d", ms);
265 266 267 268 269
  }

  return buf;
}

270
void shellDumpFieldToFile(TdFilePtr pFile, const char *val, TAOS_FIELD *field, int32_t length, int32_t precision) {
271
  if (val == NULL) {
272
    taosFprintfFile(pFile, "%s", TSDB_DATA_NULL_STR);
273 274 275
    return;
  }

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

333
int32_t shellDumpResultToFile(const char *fname, TAOS_RES *tres) {
334 335 336 337 338
  char fullname[PATH_MAX] = {0};
  if (taosExpandDir(fname, fullname, PATH_MAX) != 0) {
    tstrncpy(fullname, fname, PATH_MAX);
  }

339
  TAOS_ROW row = taos_fetch_row(tres);
340 341 342 343
  if (row == NULL) {
    return 0;
  }

344
  TdFilePtr pFile = taosOpenFile(fullname, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_TRUNC | TD_FILE_STREAM);
345
  if (pFile == NULL) {
346
    fprintf(stderr, "failed to open file: %s\n", fullname);
347 348 349
    return -1;
  }

350
  TAOS_FIELD *fields = taos_fetch_fields(tres);
351 352
  int32_t     num_fields = taos_num_fields(tres);
  int32_t     precision = taos_result_precision(tres);
353

354
  for (int32_t col = 0; col < num_fields; col++) {
355
    if (col > 0) {
356
      taosFprintfFile(pFile, ",");
357
    }
358
    taosFprintfFile(pFile, "%s", fields[col].name);
359
  }
360
  taosFprintfFile(pFile, "\n");
361

362
  int32_t numOfRows = 0;
363
  do {
S
Shengliang Guan 已提交
364
    int32_t *length = taos_fetch_lengths(tres);
365
    for (int32_t i = 0; i < num_fields; i++) {
366
      if (i > 0) {
X
Xiaoyu Wang 已提交
367
        taosFprintfFile(pFile, ",");
368
      }
369
      shellDumpFieldToFile(pFile, (const char *)row[i], fields + i, length[i], precision);
H
hzcheng 已提交
370
    }
371
    taosFprintfFile(pFile, "\n");
372 373

    numOfRows++;
374
    row = taos_fetch_row(tres);
S
Shengliang Guan 已提交
375
  } while (row != NULL);
376

377
  taosCloseFile(&pFile);
378

379 380 381
  return numOfRows;
}

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

386
  while (pos < length) {
wafwerar's avatar
wafwerar 已提交
387
    TdWchar wc;
388
    int32_t bytes = taosMbToWchar(&wc, str + pos, MB_CUR_MAX);
wmmhello's avatar
wmmhello 已提交
389
    if (bytes <= 0) {
390 391
      break;
    }
wmmhello's avatar
wmmhello 已提交
392 393

    if (pos + bytes > length) {
394 395
      break;
    }
wmmhello's avatar
wmmhello 已提交
396
    int w = 0;
X
Xiaoyu Wang 已提交
397
    if (*(str + pos) == '\t' || *(str + pos) == '\n' || *(str + pos) == '\r') {
wmmhello's avatar
wmmhello 已提交
398
      w = bytes;
X
Xiaoyu Wang 已提交
399
    } else {
wmmhello's avatar
wmmhello 已提交
400 401 402 403
      w = taosWcharWidth(wc);
    }
    pos += bytes;

404 405 406 407 408 409 410 411 412 413 414 415 416 417
    if (w <= 0) {
      continue;
    }

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

    totalCols += w;
    if (totalCols > width) {
      break;
    }
    if (totalCols <= (width - 3)) {
418 419
      printf("%lc", wc);
      cols += w;
420 421 422
    } else {
      tail[tailLen] = wc;
      tailLen++;
423 424 425
    }
  }

426 427
  if (totalCols > width) {
    // width could be 1 or 2, so printf("...") cannot be used
428
    for (int32_t i = 0; i < 3; i++) {
429 430 431 432 433 434 435
      if (cols >= width) {
        break;
      }
      putchar('.');
      ++cols;
    }
  } else {
436
    for (int32_t i = 0; i < tailLen; i++) {
437 438 439 440 441
      printf("%lc", tail[i]);
    }
    cols = totalCols;
  }

442 443 444 445 446
  for (; cols < width; cols++) {
    putchar(' ');
  }
}

447
void shellPrintField(const char *val, TAOS_FIELD *field, int32_t width, int32_t length, int32_t precision) {
448
  if (val == NULL) {
449
    int32_t w = width;
450 451
    if (field->type < TSDB_DATA_TYPE_TINYINT || field->type > TSDB_DATA_TYPE_DOUBLE) {
      w = 0;
H
hzcheng 已提交
452
    }
453 454 455 456 457 458
    w = printf("%*s", w, TSDB_DATA_NULL_STR);
    for (; w < width; w++) {
      putchar(' ');
    }
    return;
  }
H
hzcheng 已提交
459

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

S
Shengliang Guan 已提交
515
bool shellIsLimitQuery(const char *sql) {
X
Xiaoyu Wang 已提交
516
  // todo refactor
wafwerar's avatar
wafwerar 已提交
517
  if (taosStrCaseStr(sql, " limit ") != NULL) {
S
Shengliang Guan 已提交
518 519 520 521 522 523
    return true;
  }

  return false;
}

D
dapan1121 已提交
524
bool shellIsShowQuery(const char *sql) {
X
Xiaoyu Wang 已提交
525
  // todo refactor
D
dapan1121 已提交
526 527 528 529 530 531 532
  if (taosStrCaseStr(sql, "show ") != NULL) {
    return true;
  }

  return false;
}

S
Shengliang Guan 已提交
533
int32_t shellVerticalPrintResult(TAOS_RES *tres, const char *sql) {
H
Haojun Liao 已提交
534
  TAOS_ROW row = taos_fetch_row(tres);
535 536 537 538
  if (row == NULL) {
    return 0;
  }

539
  int32_t     num_fields = taos_num_fields(tres);
H
Haojun Liao 已提交
540
  TAOS_FIELD *fields = taos_fetch_fields(tres);
541
  int32_t     precision = taos_result_precision(tres);
542

543 544 545
  int32_t maxColNameLen = 0;
  for (int32_t col = 0; col < num_fields; col++) {
    int32_t len = (int32_t)strlen(fields[col].name);
546 547 548 549 550
    if (len > maxColNameLen) {
      maxColNameLen = len;
    }
  }

D
fix bug  
dapan1121 已提交
551 552
  uint64_t resShowMaxNum = UINT64_MAX;

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

557 558
  int32_t numOfRows = 0;
  int32_t showMore = 1;
559
  do {
D
fix bug  
dapan1121 已提交
560
    if (numOfRows < resShowMaxNum) {
D
fix bug  
dapan1121 已提交
561 562
      printf("*************************** %d.row ***************************\n", numOfRows + 1);

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

565
      for (int32_t i = 0; i < num_fields; i++) {
S
Shengliang Guan 已提交
566
        TAOS_FIELD *field = fields + i;
567

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

571
        shellPrintField((const char *)row[i], field, 0, length[i], precision);
D
fix bug  
dapan1121 已提交
572 573
        putchar('\n');
      }
D
fix bug  
dapan1121 已提交
574
    } else if (showMore) {
S
Shengliang Guan 已提交
575 576 577 578 579 580 581
      printf("\n");
      printf(" Notice: The result shows only the first %d rows.\n", SHELL_DEFAULT_RES_SHOW_NUM);
      printf("         You can use the `LIMIT` clause to get fewer result to show.\n");
      printf("           Or use '>>' to redirect the whole set of the result to a specified file.\n");
      printf("\n");
      printf("         You can use Ctrl+C to stop the underway fetching.\n");
      printf("\n");
S
Shengliang Guan 已提交
582
      showMore = 0;
583 584 585
    }

    numOfRows++;
H
Haojun Liao 已提交
586
    row = taos_fetch_row(tres);
S
Shengliang Guan 已提交
587
  } while (row != NULL);
588 589 590 591

  return numOfRows;
}

592 593
int32_t shellCalcColWidth(TAOS_FIELD *field, int32_t precision) {
  int32_t width = (int32_t)strlen(field->name);
594 595

  switch (field->type) {
D
dapan1121 已提交
596 597
    case TSDB_DATA_TYPE_NULL:
      return TMAX(4, width);  // null
598
    case TSDB_DATA_TYPE_BOOL:
dengyihao's avatar
dengyihao 已提交
599
      return TMAX(5, width);  // 'false'
600 601

    case TSDB_DATA_TYPE_TINYINT:
602
    case TSDB_DATA_TYPE_UTINYINT:
dengyihao's avatar
dengyihao 已提交
603
      return TMAX(4, width);  // '-127'
604 605

    case TSDB_DATA_TYPE_SMALLINT:
606
    case TSDB_DATA_TYPE_USMALLINT:
dengyihao's avatar
dengyihao 已提交
607
      return TMAX(6, width);  // '-32767'
608 609

    case TSDB_DATA_TYPE_INT:
610
    case TSDB_DATA_TYPE_UINT:
dengyihao's avatar
dengyihao 已提交
611
      return TMAX(11, width);  // '-2147483648'
612 613

    case TSDB_DATA_TYPE_BIGINT:
614
    case TSDB_DATA_TYPE_UBIGINT:
dengyihao's avatar
dengyihao 已提交
615
      return TMAX(21, width);  // '-9223372036854775807'
616 617

    case TSDB_DATA_TYPE_FLOAT:
dengyihao's avatar
dengyihao 已提交
618
      return TMAX(20, width);
619 620

    case TSDB_DATA_TYPE_DOUBLE:
dengyihao's avatar
dengyihao 已提交
621
      return TMAX(25, width);
622 623

    case TSDB_DATA_TYPE_BINARY:
624 625
      if (field->bytes > shell.args.displayWidth) {
        return TMAX(shell.args.displayWidth, width);
626
      } else {
dengyihao's avatar
dengyihao 已提交
627
        return TMAX(field->bytes, width);
628 629
      }

wmmhello's avatar
wmmhello 已提交
630 631
    case TSDB_DATA_TYPE_NCHAR:
    case TSDB_DATA_TYPE_JSON: {
632
      int16_t bytes = field->bytes * TSDB_NCHAR_SIZE;
633 634
      if (bytes > shell.args.displayWidth) {
        return TMAX(shell.args.displayWidth, width);
635
      } else {
dengyihao's avatar
dengyihao 已提交
636
        return TMAX(bytes, width);
637 638 639
      }
    }

640
    case TSDB_DATA_TYPE_TIMESTAMP:
641
      if (shell.args.is_raw_time) {
dengyihao's avatar
dengyihao 已提交
642
        return TMAX(14, width);
S
Shengliang Guan 已提交
643 644
      }
      if (precision == TSDB_TIME_PRECISION_NANO) {
dengyihao's avatar
dengyihao 已提交
645
        return TMAX(29, width);
646
      } else if (precision == TSDB_TIME_PRECISION_MICRO) {
dengyihao's avatar
dengyihao 已提交
647
        return TMAX(26, width);  // '2020-01-01 00:00:00.000000'
648
      } else {
dengyihao's avatar
dengyihao 已提交
649
        return TMAX(23, width);  // '2020-01-01 00:00:00.000'
S
slguan 已提交
650
      }
H
hzcheng 已提交
651

652 653
    default:
      assert(false);
H
hzcheng 已提交
654 655
  }

656 657
  return 0;
}
H
hzcheng 已提交
658

659 660 661
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 已提交
662
    TAOS_FIELD *field = fields + col;
663 664
    int32_t     padding = (int32_t)(width[col] - strlen(field->name));
    int32_t     left = padding / 2;
665 666 667 668 669
    printf(" %*.s%s%*.s |", left, " ", field->name, padding - left, " ");
    rowWidth += width[col] + 3;
  }

  putchar('\n');
670
  for (int32_t i = 0; i < rowWidth; i++) {
671 672 673 674 675
    putchar('=');
  }
  putchar('\n');
}

S
Shengliang Guan 已提交
676
int32_t shellHorizontalPrintResult(TAOS_RES *tres, const char *sql) {
H
Haojun Liao 已提交
677
  TAOS_ROW row = taos_fetch_row(tres);
678 679 680 681
  if (row == NULL) {
    return 0;
  }

682
  int32_t     num_fields = taos_num_fields(tres);
H
Haojun Liao 已提交
683
  TAOS_FIELD *fields = taos_fetch_fields(tres);
684
  int32_t     precision = taos_result_precision(tres);
685

686 687 688
  int32_t width[TSDB_MAX_COLUMNS];
  for (int32_t col = 0; col < num_fields; col++) {
    width[col] = shellCalcColWidth(fields + col, precision);
689 690
  }

691
  shellPrintHeader(fields, width, num_fields);
692

D
fix bug  
dapan1121 已提交
693 694
  uint64_t resShowMaxNum = UINT64_MAX;

D
dapan1121 已提交
695
  if (shell.args.commands == NULL && shell.args.file[0] == 0 && !shellIsLimitQuery(sql) && !shellIsShowQuery(sql)) {
696
    resShowMaxNum = SHELL_DEFAULT_RES_SHOW_NUM;
D
fix bug  
dapan1121 已提交
697 698
  }

699 700
  int32_t numOfRows = 0;
  int32_t showMore = 1;
701

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

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

  return numOfRows;
}

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

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

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

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

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

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

S
Shengliang Guan 已提交
763
  if (line != NULL) taosMemoryFree(line);
764
  taosCloseFile(&pFile);
H
hzcheng 已提交
765 766
}

767
void shellWriteHistory() {
768
  SShellHistory *pHistory = &shell.history;
S
Shengliang Guan 已提交
769
  TdFilePtr      pFile = taosOpenFile(pHistory->file, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_STREAM | TD_FILE_APPEND);
770
  if (pFile == NULL) return;
H
hzcheng 已提交
771

772 773 774
  for (int32_t i = pHistory->hstart; i != pHistory->hend;) {
    if (pHistory->hist[i] != NULL) {
      taosFprintfFile(pFile, "%s\n", pHistory->hist[i]);
775 776
      taosMemoryFree(pHistory->hist[i]);
      pHistory->hist[i] = NULL;
H
hzcheng 已提交
777
    }
778
    i = (i + 1) % SHELL_MAX_HISTORY_SIZE;
H
hzcheng 已提交
779
  }
780
  taosFsyncFile(pFile);
781
  taosCloseFile(&pFile);
H
hzcheng 已提交
782 783
}

784 785 786 787 788 789 790 791 792 793
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;
    }
  }
}

794
void shellPrintError(TAOS_RES *tres, int64_t st) {
S
TD-1793  
Shengliang Guan 已提交
795 796
  int64_t et = taosGetTimestampUs();
  fprintf(stderr, "\nDB error: %s (%.6fs)\n", taos_errstr(tres), (et - st) / 1E6);
H
Haojun Liao 已提交
797
  taos_free_result(tres);
H
hzcheng 已提交
798 799
}

800 801
bool shellIsCommentLine(char *line) {
  if (line == NULL) return true;
802
  return shellRegexMatch(line, "^\\s*#.*", REG_EXTENDED);
H
hzcheng 已提交
803 804
}

805 806 807 808 809
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;
810
  char    fullname[PATH_MAX] = {0};
H
hzcheng 已提交
811

812 813
  if (taosExpandDir(file, fullname, PATH_MAX) != 0) {
    tstrncpy(fullname, file, PATH_MAX);
H
hzcheng 已提交
814 815
  }

816
  TdFilePtr pFile = taosOpenFile(fullname, TD_FILE_READ | TD_FILE_STREAM);
817
  if (pFile == NULL) {
818
    fprintf(stderr, "failed to open file %s\n", fullname);
wafwerar's avatar
wafwerar 已提交
819
    taosMemoryFree(cmd);
H
hzcheng 已提交
820 821 822
    return;
  }

823
  while ((read_len = taosGetLineFile(pFile, &line)) != -1) {
H
Haojun Liao 已提交
824
    if (read_len >= TSDB_MAX_ALLOWED_SQL_LEN) continue;
H
hzcheng 已提交
825 826
    line[--read_len] = '\0';

827
    if (read_len == 0 || shellIsCommentLine(line)) {  // line starts with #
H
hzcheng 已提交
828 829 830 831 832 833 834 835 836 837 838
      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);
839 840
    printf("%s%s\n", shell.info.promptHeader, cmd);
    shellRunCommand(cmd);
H
Haojun Liao 已提交
841
    memset(cmd, 0, TSDB_MAX_ALLOWED_SQL_LEN);
H
hzcheng 已提交
842 843 844
    cmd_len = 0;
  }

wafwerar's avatar
wafwerar 已提交
845
  taosMemoryFree(cmd);
S
Shengliang Guan 已提交
846
  if (line != NULL) taosMemoryFree(line);
847
  taosCloseFile(&pFile);
H
hzcheng 已提交
848
}
S
slguan 已提交
849

850
void shellGetGrantInfo() {
851 852 853 854
  char sinfo[1024] = {0};
  tstrncpy(sinfo, taos_get_server_info(shell.conn), sizeof(sinfo));
  strtok(sinfo, "\n");

S
slguan 已提交
855 856
  char sql[] = "show grants";

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

859
  int32_t code = taos_errno(tres);
S
slguan 已提交
860
  if (code != TSDB_CODE_SUCCESS) {
861
    if (code != TSDB_CODE_OPS_NOT_SUPPORT && code != TSDB_CODE_MND_NO_RIGHTS) {
D
dapan1121 已提交
862
      fprintf(stderr, "Failed to check Server Edition, Reason:0x%04x:%s\n\n", code, taos_errstr(tres));
S
slguan 已提交
863
    }
S
slguan 已提交
864 865 866
    return;
  }

867
  int32_t num_fields = taos_field_count(tres);
S
slguan 已提交
868 869 870 871
  if (num_fields == 0) {
    fprintf(stderr, "\nInvalid grant information.\n");
    exit(0);
  } else {
872
    if (tres == NULL) {
S
slguan 已提交
873 874 875 876
      fprintf(stderr, "\nGrant information is null.\n");
      exit(0);
    }

877
    TAOS_FIELD *fields = taos_fetch_fields(tres);
878
    TAOS_ROW    row = taos_fetch_row(tres);
S
slguan 已提交
879
    if (row == NULL) {
H
hjxilinx 已提交
880
      fprintf(stderr, "\nFailed to get grant information from server. Abort.\n");
S
slguan 已提交
881 882 883
      exit(0);
    }

S
slguan 已提交
884
    char serverVersion[32] = {0};
S
slguan 已提交
885 886 887
    char expiretime[32] = {0};
    char expired[32] = {0};

S
slguan 已提交
888
    memcpy(serverVersion, row[0], fields[0].bytes);
S
slguan 已提交
889 890 891
    memcpy(expiretime, row[1], fields[1].bytes);
    memcpy(expired, row[2], fields[2].bytes);

892 893 894
    if (strcmp(serverVersion, "community") == 0) {
      fprintf(stdout, "Server is Community Edition.\n");
    } else if (strcmp(expiretime, "unlimited") == 0) {
895
      fprintf(stdout, "Server is Enterprise %s Edition, %s and will never expire.\n", serverVersion, sinfo);
S
slguan 已提交
896
    } else {
897
      fprintf(stdout, "Server is Enterprise %s Edition, %s and will expire at %s.\n", serverVersion, sinfo, expiretime);
S
slguan 已提交
898 899
    }

900
    taos_free_result(tres);
S
slguan 已提交
901 902 903
  }

  fprintf(stdout, "\n");
904 905 906 907
}

void shellQueryInterruptHandler(int32_t signum, void *sigInfo, void *context) { tsem_post(&shell.cancelSem); }

908 909 910 911
void shellSigintHandler(int32_t signum, void *sigInfo, void *context) {
  // do nothing
}

912 913 914 915 916 917 918 919 920 921 922
void shellCleanup(void *arg) { taosResetTerminalMode(); }

void *shellCancelHandler(void *arg) {
  setThreadName("shellCancelHandler");
  while (1) {
    if (tsem_wait(&shell.cancelSem) != 0) {
      taosMsleep(10);
      continue;
    }

    taosResetTerminalMode();
923
    printf("\nReceive SIGTERM or other signal, quit shell.\n");
924 925
    shellWriteHistory();
    shellExit();
926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953
  }

  return NULL;
}

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

  char *command = taosMemoryMalloc(SHELL_MAX_COMMAND_SIZE);
  if (command == NULL) {
    printf("failed to malloc command\n");
    return NULL;
  }

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

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

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

  taosMemoryFreeClear(command);
954 955
  shellWriteHistory();
  shellExit();
956

957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976
  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;
  }

977 978
  shellReadHistory();

979
  if (pArgs->commands != NULL || pArgs->file[0] != 0) {
980 981 982 983 984 985 986
    if (pArgs->commands != NULL) {
      printf("%s%s\n", shell.info.promptHeader, pArgs->commands);
      char *cmd = strdup(pArgs->commands);
      shellRunCommand(cmd);
      taosMemoryFree(cmd);
    }

987
    if (pArgs->file[0] != 0) {
988 989 990 991 992
      shellSourceFile(pArgs->file);
    }

    taos_close(shell.conn);
    shellWriteHistory();
993
    shellCleanupHistory();
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
    return 0;
  }

  if (tsem_init(&shell.cancelSem, 0, 0) != 0) {
    printf("failed to create cancel semphore\n");
    return -1;
  }

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

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

1009 1010
  taosSetSignal(SIGINT, shellSigintHandler);

1011
  shellGetGrantInfo();
1012 1013 1014 1015

  while (1) {
    taosThreadCreate(&shell.pid, NULL, shellThreadLoop, shell.conn);
    taosThreadJoin(shell.pid, NULL);
1016
    taosThreadClear(&shell.pid);
1017 1018
  }

1019
  shellCleanupHistory();
1020
  return 0;
S
slguan 已提交
1021
}