984 lines
26 KiB
C
984 lines
26 KiB
C
/*
|
|
* 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/>.
|
|
*/
|
|
|
|
#define _BSD_SOURCE
|
|
#define _GNU_SOURCE
|
|
#define _XOPEN_SOURCE
|
|
#define _DEFAULT_SOURCE
|
|
#include "shellInt.h"
|
|
|
|
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);
|
|
static int32_t shellVerticalPrintResult(TAOS_RES *tres);
|
|
static int32_t shellCalcColWidth(TAOS_FIELD *field, int32_t precision);
|
|
static void shellPrintHeader(TAOS_FIELD *fields, int32_t *width, int32_t num_fields);
|
|
static int32_t shellHorizontalPrintResult(TAOS_RES *tres);
|
|
static int32_t shellDumpResult(TAOS_RES *tres, char *fname, int32_t *error_no, bool vertical);
|
|
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) {
|
|
for (char c = *cmd++; c != 0; c = *cmd++) {
|
|
if (c != ' ' && c != '\t' && c != ';') {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
int32_t shellRunSingleCommand(char *command) {
|
|
if (shellIsEmptyCommand(command)) {
|
|
return 0;
|
|
}
|
|
|
|
if (shellRegexMatch(command, "^[ \t]*(quit|q|exit)[ \t;]*$", REG_EXTENDED | REG_ICASE)) {
|
|
shellWriteHistory();
|
|
return -1;
|
|
}
|
|
|
|
if (shellRegexMatch(command, "^[\t ]*clear[ \t;]*$", REG_EXTENDED | REG_ICASE)) {
|
|
system("clear");
|
|
return 0;
|
|
}
|
|
|
|
if (shellRegexMatch(command, "^[\t ]*set[ \t]+max_binary_display_width[ \t]+(default|[1-9][0-9]*)[ \t;]*$",
|
|
REG_EXTENDED | REG_ICASE)) {
|
|
strtok(command, " \t");
|
|
strtok(NULL, " \t");
|
|
char *p = strtok(NULL, " \t");
|
|
if (strncasecmp(p, "default", 7) == 0) {
|
|
shell.args.displayWidth = SHELL_DEFAULT_MAX_BINARY_DISPLAY_WIDTH;
|
|
} else {
|
|
int32_t displayWidth = atoi(p);
|
|
displayWidth = TRANGE(displayWidth, 1, 10 * 1024);
|
|
shell.args.displayWidth = displayWidth;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
if (shellRegexMatch(command, "^[ \t]*source[\t ]+[^ ]+[ \t;]*$", REG_EXTENDED | REG_ICASE)) {
|
|
/* If source file. */
|
|
char *c_ptr = strtok(command, " ;");
|
|
assert(c_ptr != NULL);
|
|
c_ptr = strtok(NULL, " ;");
|
|
assert(c_ptr != NULL);
|
|
shellSourceFile(c_ptr);
|
|
return 0;
|
|
}
|
|
|
|
shellRunSingleCommandImp(command);
|
|
return 0;
|
|
}
|
|
|
|
int32_t shellRunCommand(char *command) {
|
|
if (shellIsEmptyCommand(command)) {
|
|
return 0;
|
|
}
|
|
|
|
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]);
|
|
}
|
|
pHistory->hist[pHistory->hend] = strdup(command);
|
|
|
|
pHistory->hend = (pHistory->hend + 1) % SHELL_MAX_HISTORY_SIZE;
|
|
if (pHistory->hend == pHistory->hstart) {
|
|
pHistory->hstart = (pHistory->hstart + 1) % SHELL_MAX_HISTORY_SIZE;
|
|
}
|
|
}
|
|
|
|
bool esc = false;
|
|
char quote = 0, *cmd = command, *p = command;
|
|
for (char c = *command++; c != 0; c = *command++) {
|
|
if (esc) {
|
|
switch (c) {
|
|
case 'n':
|
|
c = '\n';
|
|
break;
|
|
case 'r':
|
|
c = '\r';
|
|
break;
|
|
case 't':
|
|
c = '\t';
|
|
break;
|
|
case 'G':
|
|
*p++ = '\\';
|
|
break;
|
|
case '\'':
|
|
case '"':
|
|
if (quote) {
|
|
*p++ = '\\';
|
|
}
|
|
break;
|
|
}
|
|
*p++ = c;
|
|
esc = false;
|
|
continue;
|
|
}
|
|
|
|
if (c == '\\') {
|
|
if (quote != 0 && (*command == '_' || *command == '\\')) {
|
|
// DO nothing
|
|
} else {
|
|
esc = true;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
if (quote == c) {
|
|
quote = 0;
|
|
} else if (quote == 0 && (c == '\'' || c == '"')) {
|
|
quote = c;
|
|
}
|
|
|
|
*p++ = c;
|
|
if (c == ';' && quote == 0) {
|
|
c = *p;
|
|
*p = 0;
|
|
if (shellRunSingleCommand(cmd) < 0) {
|
|
return -1;
|
|
}
|
|
*p = c;
|
|
p = cmd;
|
|
}
|
|
}
|
|
|
|
*p = 0;
|
|
return shellRunSingleCommand(cmd);
|
|
}
|
|
|
|
void shellRunSingleCommandImp(char *command) {
|
|
int64_t st, et;
|
|
char *sptr = NULL;
|
|
char *cptr = NULL;
|
|
char *fname = NULL;
|
|
bool printMode = false;
|
|
|
|
if ((sptr = strstr(command, ">>")) != NULL) {
|
|
cptr = strstr(command, ";");
|
|
if (cptr != NULL) {
|
|
*cptr = '\0';
|
|
}
|
|
|
|
fname = sptr + 2;
|
|
*sptr = '\0';
|
|
}
|
|
|
|
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.
|
|
}
|
|
|
|
st = taosGetTimestampUs();
|
|
|
|
TAOS_RES *pSql = taos_query(shell.conn, command);
|
|
if (taos_errno(pSql)) {
|
|
shellPrintError(pSql, st);
|
|
return;
|
|
}
|
|
|
|
if (shellRegexMatch(command, "^\\s*use\\s+[a-zA-Z0-9_]+\\s*;\\s*$", REG_EXTENDED | REG_ICASE)) {
|
|
fprintf(stdout, "Database changed.\n\n");
|
|
fflush(stdout);
|
|
|
|
taos_free_result(pSql);
|
|
|
|
return;
|
|
}
|
|
|
|
TAOS_FIELD *pFields = taos_fetch_fields(pSql);
|
|
if (pFields != NULL) { // select and show kinds of commands
|
|
int32_t error_no = 0;
|
|
|
|
int32_t numOfRows = shellDumpResult(pSql, fname, &error_no, printMode);
|
|
if (numOfRows < 0) return;
|
|
|
|
et = taosGetTimestampUs();
|
|
if (error_no == 0) {
|
|
printf("Query OK, %d row(s) in set (%.6fs)\n", numOfRows, (et - st) / 1E6);
|
|
} else {
|
|
printf("Query interrupted (%s), %d row(s) in set (%.6fs)\n", taos_errstr(pSql), numOfRows, (et - st) / 1E6);
|
|
}
|
|
taos_free_result(pSql);
|
|
} else {
|
|
int32_t num_rows_affacted = taos_affected_rows(pSql);
|
|
taos_free_result(pSql);
|
|
et = taosGetTimestampUs();
|
|
printf("Query OK, %d of %d row(s) in database (%.6fs)\n", num_rows_affacted, num_rows_affacted, (et - st) / 1E6);
|
|
}
|
|
|
|
printf("\n");
|
|
}
|
|
|
|
char *shellFormatTimestamp(char *buf, int64_t val, int32_t precision) {
|
|
if (shell.args.is_raw_time) {
|
|
sprintf(buf, "%" PRId64, val);
|
|
return buf;
|
|
}
|
|
|
|
time_t tt;
|
|
int32_t ms = 0;
|
|
if (precision == TSDB_TIME_PRECISION_NANO) {
|
|
tt = (time_t)(val / 1000000000);
|
|
ms = val % 1000000000;
|
|
} else if (precision == TSDB_TIME_PRECISION_MICRO) {
|
|
tt = (time_t)(val / 1000000);
|
|
ms = val % 1000000;
|
|
} else {
|
|
tt = (time_t)(val / 1000);
|
|
ms = val % 1000;
|
|
}
|
|
|
|
/*
|
|
comment out as it make testcases like select_with_tags.sim fail.
|
|
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;
|
|
}
|
|
*/
|
|
|
|
#ifdef WINDOWS
|
|
if (tt < 0) tt = 0;
|
|
#endif
|
|
if (tt <= 0 && ms < 0) {
|
|
tt--;
|
|
if (precision == TSDB_TIME_PRECISION_NANO) {
|
|
ms += 1000000000;
|
|
} else if (precision == TSDB_TIME_PRECISION_MICRO) {
|
|
ms += 1000000;
|
|
} else {
|
|
ms += 1000;
|
|
}
|
|
}
|
|
|
|
struct tm *ptm = taosLocalTime(&tt, NULL);
|
|
size_t pos = strftime(buf, 35, "%Y-%m-%d %H:%M:%S", ptm);
|
|
|
|
if (precision == TSDB_TIME_PRECISION_NANO) {
|
|
sprintf(buf + pos, ".%09d", ms);
|
|
} else if (precision == TSDB_TIME_PRECISION_MICRO) {
|
|
sprintf(buf + pos, ".%06d", ms);
|
|
} else {
|
|
sprintf(buf + pos, ".%03d", ms);
|
|
}
|
|
|
|
return buf;
|
|
}
|
|
|
|
void shellDumpFieldToFile(TdFilePtr pFile, const char *val, TAOS_FIELD *field, int32_t length, int32_t precision) {
|
|
if (val == NULL) {
|
|
taosFprintfFile(pFile, "%s", TSDB_DATA_NULL_STR);
|
|
return;
|
|
}
|
|
|
|
char buf[TSDB_MAX_BYTES_PER_ROW];
|
|
switch (field->type) {
|
|
case TSDB_DATA_TYPE_BOOL:
|
|
taosFprintfFile(pFile, "%d", ((((int32_t)(*((char *)val))) == 1) ? 1 : 0));
|
|
break;
|
|
case TSDB_DATA_TYPE_TINYINT:
|
|
taosFprintfFile(pFile, "%d", *((int8_t *)val));
|
|
break;
|
|
case TSDB_DATA_TYPE_SMALLINT:
|
|
taosFprintfFile(pFile, "%d", *((int16_t *)val));
|
|
break;
|
|
case TSDB_DATA_TYPE_INT:
|
|
taosFprintfFile(pFile, "%d", *((int32_t *)val));
|
|
break;
|
|
case TSDB_DATA_TYPE_BIGINT:
|
|
taosFprintfFile(pFile, "%" PRId64, *((int64_t *)val));
|
|
break;
|
|
case TSDB_DATA_TYPE_FLOAT:
|
|
taosFprintfFile(pFile, "%.5f", GET_FLOAT_VAL(val));
|
|
break;
|
|
case TSDB_DATA_TYPE_DOUBLE:
|
|
taosFprintfFile(pFile, "%.9f", GET_DOUBLE_VAL(val));
|
|
break;
|
|
case TSDB_DATA_TYPE_BINARY:
|
|
case TSDB_DATA_TYPE_NCHAR:
|
|
memcpy(buf, val, length);
|
|
buf[length] = 0;
|
|
taosFprintfFile(pFile, "\'%s\'", buf);
|
|
break;
|
|
case TSDB_DATA_TYPE_TIMESTAMP:
|
|
shellFormatTimestamp(buf, *(int64_t *)val, precision);
|
|
taosFprintfFile(pFile, "'%s'", buf);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
int32_t shellDumpResultToFile(const char *fname, TAOS_RES *tres) {
|
|
char fullname[PATH_MAX] = {0};
|
|
if (taosExpandDir(fname, fullname, PATH_MAX) != 0) {
|
|
tstrncpy(fullname, fname, PATH_MAX);
|
|
}
|
|
|
|
TAOS_ROW row = taos_fetch_row(tres);
|
|
if (row == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
TdFilePtr pFile = taosOpenFile(fullname, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_TRUNC | TD_FILE_STREAM);
|
|
if (pFile == NULL) {
|
|
fprintf(stderr, "failed to open file: %s\n", fullname);
|
|
return -1;
|
|
}
|
|
|
|
TAOS_FIELD *fields = taos_fetch_fields(tres);
|
|
int32_t num_fields = taos_num_fields(tres);
|
|
int32_t precision = taos_result_precision(tres);
|
|
|
|
for (int32_t col = 0; col < num_fields; col++) {
|
|
if (col > 0) {
|
|
taosFprintfFile(pFile, ",");
|
|
}
|
|
taosFprintfFile(pFile, "%s", fields[col].name);
|
|
}
|
|
taosFprintfFile(pFile, "\n");
|
|
|
|
int32_t numOfRows = 0;
|
|
do {
|
|
int32_t *length = taos_fetch_lengths(tres);
|
|
for (int32_t i = 0; i < num_fields; i++) {
|
|
if (i > 0) {
|
|
taosFprintfFile(pFile, "\n");
|
|
}
|
|
shellDumpFieldToFile(pFile, (const char *)row[i], fields + i, length[i], precision);
|
|
}
|
|
taosFprintfFile(pFile, "\n");
|
|
|
|
numOfRows++;
|
|
row = taos_fetch_row(tres);
|
|
} while (row != NULL);
|
|
|
|
taosCloseFile(&pFile);
|
|
|
|
return numOfRows;
|
|
}
|
|
|
|
void shellPrintNChar(const char *str, int32_t length, int32_t width) {
|
|
TdWchar tail[3];
|
|
int32_t pos = 0, cols = 0, totalCols = 0, tailLen = 0;
|
|
|
|
while (pos < length) {
|
|
TdWchar wc;
|
|
int32_t bytes = taosMbToWchar(&wc, str + pos, MB_CUR_MAX);
|
|
if (bytes == 0) {
|
|
break;
|
|
}
|
|
pos += bytes;
|
|
if (pos > length) {
|
|
break;
|
|
}
|
|
|
|
#ifdef WINDOWS
|
|
int32_t w = bytes;
|
|
#else
|
|
int32_t w = taosWcharWidth(wc);
|
|
#endif
|
|
if (w <= 0) {
|
|
continue;
|
|
}
|
|
|
|
if (width <= 0) {
|
|
printf("%lc", wc);
|
|
continue;
|
|
}
|
|
|
|
totalCols += w;
|
|
if (totalCols > width) {
|
|
break;
|
|
}
|
|
if (totalCols <= (width - 3)) {
|
|
printf("%lc", wc);
|
|
cols += w;
|
|
} else {
|
|
tail[tailLen] = wc;
|
|
tailLen++;
|
|
}
|
|
}
|
|
|
|
if (totalCols > width) {
|
|
// width could be 1 or 2, so printf("...") cannot be used
|
|
for (int32_t i = 0; i < 3; i++) {
|
|
if (cols >= width) {
|
|
break;
|
|
}
|
|
putchar('.');
|
|
++cols;
|
|
}
|
|
} else {
|
|
for (int32_t i = 0; i < tailLen; i++) {
|
|
printf("%lc", tail[i]);
|
|
}
|
|
cols = totalCols;
|
|
}
|
|
|
|
for (; cols < width; cols++) {
|
|
putchar(' ');
|
|
}
|
|
}
|
|
|
|
void shellPrintField(const char *val, TAOS_FIELD *field, int32_t width, int32_t length, int32_t precision) {
|
|
if (val == NULL) {
|
|
int32_t w = width;
|
|
if (field->type < TSDB_DATA_TYPE_TINYINT || field->type > TSDB_DATA_TYPE_DOUBLE) {
|
|
w = 0;
|
|
}
|
|
w = printf("%*s", w, TSDB_DATA_NULL_STR);
|
|
for (; w < width; w++) {
|
|
putchar(' ');
|
|
}
|
|
return;
|
|
}
|
|
|
|
char buf[TSDB_MAX_BYTES_PER_ROW];
|
|
switch (field->type) {
|
|
case TSDB_DATA_TYPE_BOOL:
|
|
printf("%*s", width, ((((int32_t)(*((char *)val))) == 1) ? "true" : "false"));
|
|
break;
|
|
case TSDB_DATA_TYPE_TINYINT:
|
|
printf("%*d", width, *((int8_t *)val));
|
|
break;
|
|
case TSDB_DATA_TYPE_UTINYINT:
|
|
printf("%*u", width, *((uint8_t *)val));
|
|
break;
|
|
case TSDB_DATA_TYPE_SMALLINT:
|
|
printf("%*d", width, *((int16_t *)val));
|
|
break;
|
|
case TSDB_DATA_TYPE_USMALLINT:
|
|
printf("%*u", width, *((uint16_t *)val));
|
|
break;
|
|
case TSDB_DATA_TYPE_INT:
|
|
printf("%*d", width, *((int32_t *)val));
|
|
break;
|
|
case TSDB_DATA_TYPE_UINT:
|
|
printf("%*u", width, *((uint32_t *)val));
|
|
break;
|
|
case TSDB_DATA_TYPE_BIGINT:
|
|
printf("%*" PRId64, width, *((int64_t *)val));
|
|
break;
|
|
case TSDB_DATA_TYPE_UBIGINT:
|
|
printf("%*" PRIu64, width, *((uint64_t *)val));
|
|
break;
|
|
case TSDB_DATA_TYPE_FLOAT:
|
|
printf("%*.5f", width, GET_FLOAT_VAL(val));
|
|
break;
|
|
case TSDB_DATA_TYPE_DOUBLE:
|
|
printf("%*.9f", width, GET_DOUBLE_VAL(val));
|
|
break;
|
|
case TSDB_DATA_TYPE_BINARY:
|
|
case TSDB_DATA_TYPE_NCHAR:
|
|
shellPrintNChar(val, length, width);
|
|
break;
|
|
case TSDB_DATA_TYPE_TIMESTAMP:
|
|
shellFormatTimestamp(buf, *(int64_t *)val, precision);
|
|
printf("%s", buf);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
int32_t shellVerticalPrintResult(TAOS_RES *tres) {
|
|
TAOS_ROW row = taos_fetch_row(tres);
|
|
if (row == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
int32_t num_fields = taos_num_fields(tres);
|
|
TAOS_FIELD *fields = taos_fetch_fields(tres);
|
|
int32_t precision = taos_result_precision(tres);
|
|
|
|
int32_t maxColNameLen = 0;
|
|
for (int32_t col = 0; col < num_fields; col++) {
|
|
int32_t len = (int32_t)strlen(fields[col].name);
|
|
if (len > maxColNameLen) {
|
|
maxColNameLen = len;
|
|
}
|
|
}
|
|
|
|
uint64_t resShowMaxNum = UINT64_MAX;
|
|
|
|
if (shell.args.commands == NULL && shell.args.file[0] == 0) {
|
|
resShowMaxNum = SHELL_DEFAULT_RES_SHOW_NUM;
|
|
}
|
|
|
|
int32_t numOfRows = 0;
|
|
int32_t showMore = 1;
|
|
do {
|
|
if (numOfRows < resShowMaxNum) {
|
|
printf("*************************** %d.row ***************************\n", numOfRows + 1);
|
|
|
|
int32_t *length = taos_fetch_lengths(tres);
|
|
|
|
for (int32_t i = 0; i < num_fields; i++) {
|
|
TAOS_FIELD *field = fields + i;
|
|
|
|
int32_t padding = (int32_t)(maxColNameLen - strlen(field->name));
|
|
printf("%*.s%s: ", padding, " ", field->name);
|
|
|
|
shellPrintField((const char *)row[i], field, 0, length[i], precision);
|
|
putchar('\n');
|
|
}
|
|
} else if (showMore) {
|
|
printf("[100 Rows showed, and more rows are fetching but will not be showed. You can ctrl+c to stop or wait.]\n");
|
|
printf("[You can add limit statement to get more or redirect results to specific file to get all.]\n");
|
|
showMore = 0;
|
|
}
|
|
|
|
numOfRows++;
|
|
row = taos_fetch_row(tres);
|
|
} while (row != NULL);
|
|
|
|
return numOfRows;
|
|
}
|
|
|
|
int32_t shellCalcColWidth(TAOS_FIELD *field, int32_t precision) {
|
|
int32_t width = (int32_t)strlen(field->name);
|
|
|
|
switch (field->type) {
|
|
case TSDB_DATA_TYPE_BOOL:
|
|
return TMAX(5, width); // 'false'
|
|
|
|
case TSDB_DATA_TYPE_TINYINT:
|
|
case TSDB_DATA_TYPE_UTINYINT:
|
|
return TMAX(4, width); // '-127'
|
|
|
|
case TSDB_DATA_TYPE_SMALLINT:
|
|
case TSDB_DATA_TYPE_USMALLINT:
|
|
return TMAX(6, width); // '-32767'
|
|
|
|
case TSDB_DATA_TYPE_INT:
|
|
case TSDB_DATA_TYPE_UINT:
|
|
return TMAX(11, width); // '-2147483648'
|
|
|
|
case TSDB_DATA_TYPE_BIGINT:
|
|
case TSDB_DATA_TYPE_UBIGINT:
|
|
return TMAX(21, width); // '-9223372036854775807'
|
|
|
|
case TSDB_DATA_TYPE_FLOAT:
|
|
return TMAX(20, width);
|
|
|
|
case TSDB_DATA_TYPE_DOUBLE:
|
|
return TMAX(25, width);
|
|
|
|
case TSDB_DATA_TYPE_BINARY:
|
|
if (field->bytes > shell.args.displayWidth) {
|
|
return TMAX(shell.args.displayWidth, width);
|
|
} else {
|
|
return TMAX(field->bytes, width);
|
|
}
|
|
|
|
case TSDB_DATA_TYPE_NCHAR: {
|
|
int16_t bytes = field->bytes * TSDB_NCHAR_SIZE;
|
|
if (bytes > shell.args.displayWidth) {
|
|
return TMAX(shell.args.displayWidth, width);
|
|
} else {
|
|
return TMAX(bytes, width);
|
|
}
|
|
}
|
|
|
|
case TSDB_DATA_TYPE_TIMESTAMP:
|
|
if (shell.args.is_raw_time) {
|
|
return TMAX(14, width);
|
|
}
|
|
if (precision == TSDB_TIME_PRECISION_NANO) {
|
|
return TMAX(29, width);
|
|
} else if (precision == TSDB_TIME_PRECISION_MICRO) {
|
|
return TMAX(26, width); // '2020-01-01 00:00:00.000000'
|
|
} else {
|
|
return TMAX(23, width); // '2020-01-01 00:00:00.000'
|
|
}
|
|
|
|
default:
|
|
assert(false);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
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++) {
|
|
TAOS_FIELD *field = fields + col;
|
|
int32_t padding = (int32_t)(width[col] - strlen(field->name));
|
|
int32_t left = padding / 2;
|
|
printf(" %*.s%s%*.s |", left, " ", field->name, padding - left, " ");
|
|
rowWidth += width[col] + 3;
|
|
}
|
|
|
|
putchar('\n');
|
|
for (int32_t i = 0; i < rowWidth; i++) {
|
|
putchar('=');
|
|
}
|
|
putchar('\n');
|
|
}
|
|
|
|
int32_t shellHorizontalPrintResult(TAOS_RES *tres) {
|
|
TAOS_ROW row = taos_fetch_row(tres);
|
|
if (row == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
int32_t num_fields = taos_num_fields(tres);
|
|
TAOS_FIELD *fields = taos_fetch_fields(tres);
|
|
int32_t precision = taos_result_precision(tres);
|
|
|
|
int32_t width[TSDB_MAX_COLUMNS];
|
|
for (int32_t col = 0; col < num_fields; col++) {
|
|
width[col] = shellCalcColWidth(fields + col, precision);
|
|
}
|
|
|
|
shellPrintHeader(fields, width, num_fields);
|
|
|
|
uint64_t resShowMaxNum = UINT64_MAX;
|
|
|
|
if (shell.args.commands == NULL && shell.args.file[0] == 0) {
|
|
resShowMaxNum = SHELL_DEFAULT_RES_SHOW_NUM;
|
|
}
|
|
|
|
int32_t numOfRows = 0;
|
|
int32_t showMore = 1;
|
|
|
|
do {
|
|
int32_t *length = taos_fetch_lengths(tres);
|
|
if (numOfRows < resShowMaxNum) {
|
|
for (int32_t i = 0; i < num_fields; i++) {
|
|
putchar(' ');
|
|
shellPrintField((const char *)row[i], fields + i, width[i], length[i], precision);
|
|
putchar(' ');
|
|
putchar('|');
|
|
}
|
|
putchar('\n');
|
|
} else if (showMore) {
|
|
printf("[100 Rows showed, and more rows are fetching but will not be showed. You can ctrl+c to stop or wait.]\n");
|
|
printf("[You can add limit statement to show more or redirect results to specific file to get all.]\n");
|
|
showMore = 0;
|
|
}
|
|
|
|
numOfRows++;
|
|
row = taos_fetch_row(tres);
|
|
} while (row != NULL);
|
|
|
|
return numOfRows;
|
|
}
|
|
|
|
int32_t shellDumpResult(TAOS_RES *tres, char *fname, int32_t *error_no, bool vertical) {
|
|
int32_t numOfRows = 0;
|
|
if (fname != NULL) {
|
|
numOfRows = shellDumpResultToFile(fname, tres);
|
|
} else if (vertical) {
|
|
numOfRows = shellVerticalPrintResult(tres);
|
|
} else {
|
|
numOfRows = shellHorizontalPrintResult(tres);
|
|
}
|
|
|
|
*error_no = taos_errno(tres);
|
|
return numOfRows;
|
|
}
|
|
|
|
void shellReadHistory() {
|
|
SShellHistory *pHistory = &shell.history;
|
|
TdFilePtr pFile = taosOpenFile(pHistory->file, TD_FILE_READ | TD_FILE_STREAM);
|
|
if (pFile == NULL) return;
|
|
|
|
char *line = NULL;
|
|
int32_t read_size = 0;
|
|
while ((read_size = taosGetLineFile(pFile, &line)) != -1) {
|
|
line[read_size - 1] = '\0';
|
|
pHistory->hist[pHistory->hend] = strdup(line);
|
|
|
|
pHistory->hend = (pHistory->hend + 1) % SHELL_MAX_HISTORY_SIZE;
|
|
|
|
if (pHistory->hend == pHistory->hstart) {
|
|
pHistory->hstart = (pHistory->hstart + 1) % SHELL_MAX_HISTORY_SIZE;
|
|
}
|
|
}
|
|
|
|
if (line != NULL) taosMemoryFree(line);
|
|
taosCloseFile(&pFile);
|
|
}
|
|
|
|
void shellWriteHistory() {
|
|
SShellHistory *pHistory = &shell.history;
|
|
TdFilePtr pFile = taosOpenFile(pHistory->file, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_STREAM | TD_FILE_APPEND);
|
|
if (pFile == NULL) return;
|
|
|
|
for (int32_t i = pHistory->hstart; i != pHistory->hend;) {
|
|
if (pHistory->hist[i] != NULL) {
|
|
taosFprintfFile(pFile, "%s\n", pHistory->hist[i]);
|
|
taosMemoryFreeClear(pHistory->hist[i]);
|
|
}
|
|
i = (i + 1) % SHELL_MAX_HISTORY_SIZE;
|
|
}
|
|
taosFsyncFile(pFile);
|
|
taosCloseFile(&pFile);
|
|
}
|
|
|
|
void shellPrintError(TAOS_RES *tres, int64_t st) {
|
|
int64_t et = taosGetTimestampUs();
|
|
fprintf(stderr, "\nDB error: %s (%.6fs)\n", taos_errstr(tres), (et - st) / 1E6);
|
|
taos_free_result(tres);
|
|
}
|
|
|
|
bool shellIsCommentLine(char *line) {
|
|
if (line == NULL) return true;
|
|
return shellRegexMatch(line, "^\\s*#.*", REG_EXTENDED);
|
|
}
|
|
|
|
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;
|
|
char fullname[PATH_MAX] = {0};
|
|
|
|
if (taosExpandDir(file, fullname, PATH_MAX) != 0) {
|
|
tstrncpy(fullname, file, PATH_MAX);
|
|
}
|
|
|
|
TdFilePtr pFile = taosOpenFile(fullname, TD_FILE_READ | TD_FILE_STREAM);
|
|
if (pFile == NULL) {
|
|
fprintf(stderr, "failed to open file %s\n", fullname);
|
|
taosMemoryFree(cmd);
|
|
return;
|
|
}
|
|
|
|
while ((read_len = taosGetLineFile(pFile, &line)) != -1) {
|
|
if (read_len >= TSDB_MAX_ALLOWED_SQL_LEN) continue;
|
|
line[--read_len] = '\0';
|
|
|
|
if (read_len == 0 || shellIsCommentLine(line)) { // line starts with #
|
|
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);
|
|
printf("%s%s\n", shell.info.promptHeader, cmd);
|
|
shellRunCommand(cmd);
|
|
memset(cmd, 0, TSDB_MAX_ALLOWED_SQL_LEN);
|
|
cmd_len = 0;
|
|
}
|
|
|
|
taosMemoryFree(cmd);
|
|
if (line != NULL) taosMemoryFree(line);
|
|
taosCloseFile(&pFile);
|
|
}
|
|
|
|
void shellGetGrantInfo() {
|
|
char sinfo[1024] = {0};
|
|
tstrncpy(sinfo, taos_get_server_info(shell.conn), sizeof(sinfo));
|
|
strtok(sinfo, "\n");
|
|
|
|
char sql[] = "show grants";
|
|
|
|
TAOS_RES *tres = taos_query(shell.conn, sql);
|
|
|
|
int32_t code = taos_errno(tres);
|
|
if (code != TSDB_CODE_SUCCESS) {
|
|
if (code == TSDB_CODE_OPS_NOT_SUPPORT) {
|
|
fprintf(stdout, "Server is Community Edition, %s\n\n", sinfo);
|
|
} else {
|
|
fprintf(stderr, "Failed to check Server Edition, Reason:0x%04x:%s\n\n", taos_errno(shell.conn),
|
|
taos_errstr(shell.conn));
|
|
}
|
|
return;
|
|
}
|
|
|
|
int32_t num_fields = taos_field_count(tres);
|
|
if (num_fields == 0) {
|
|
fprintf(stderr, "\nInvalid grant information.\n");
|
|
exit(0);
|
|
} else {
|
|
if (tres == NULL) {
|
|
fprintf(stderr, "\nGrant information is null.\n");
|
|
exit(0);
|
|
}
|
|
|
|
TAOS_FIELD *fields = taos_fetch_fields(tres);
|
|
TAOS_ROW row = taos_fetch_row(tres);
|
|
if (row == NULL) {
|
|
fprintf(stderr, "\nFailed to get grant information from server. Abort.\n");
|
|
exit(0);
|
|
}
|
|
|
|
char serverVersion[32] = {0};
|
|
char expiretime[32] = {0};
|
|
char expired[32] = {0};
|
|
|
|
memcpy(serverVersion, row[0], fields[0].bytes);
|
|
memcpy(expiretime, row[1], fields[1].bytes);
|
|
memcpy(expired, row[2], fields[2].bytes);
|
|
|
|
if (strcmp(expiretime, "unlimited") == 0) {
|
|
fprintf(stdout, "Server is Enterprise %s Edition, %s and will never expire.\n", serverVersion, sinfo);
|
|
} else {
|
|
fprintf(stdout, "Server is Enterprise %s Edition, %s and will expire at %s.\n", serverVersion, sinfo, expiretime);
|
|
}
|
|
|
|
taos_free_result(tres);
|
|
}
|
|
|
|
fprintf(stdout, "\n");
|
|
}
|
|
|
|
void shellQueryInterruptHandler(int32_t signum, void *sigInfo, void *context) { tsem_post(&shell.cancelSem); }
|
|
|
|
void shellSigintHandler(int32_t signum, void *sigInfo, void *context) {
|
|
// do nothing
|
|
}
|
|
|
|
void shellCleanup(void *arg) { taosResetTerminalMode(); }
|
|
|
|
void *shellCancelHandler(void *arg) {
|
|
setThreadName("shellCancelHandler");
|
|
while (1) {
|
|
if (tsem_wait(&shell.cancelSem) != 0) {
|
|
taosMsleep(10);
|
|
continue;
|
|
}
|
|
|
|
taosResetTerminalMode();
|
|
printf("\nReceive SIGTERM or other signal, quit shell.\n");
|
|
shellWriteHistory();
|
|
shellExit();
|
|
}
|
|
|
|
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);
|
|
shellWriteHistory();
|
|
shellExit();
|
|
|
|
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;
|
|
}
|
|
|
|
shellReadHistory();
|
|
|
|
if (pArgs->commands != NULL || pArgs->file[0] != 0) {
|
|
if (pArgs->commands != NULL) {
|
|
printf("%s%s\n", shell.info.promptHeader, pArgs->commands);
|
|
char *cmd = strdup(pArgs->commands);
|
|
shellRunCommand(cmd);
|
|
taosMemoryFree(cmd);
|
|
}
|
|
|
|
if (pArgs->file[0] != 0) {
|
|
shellSourceFile(pArgs->file);
|
|
}
|
|
|
|
taos_close(shell.conn);
|
|
shellWriteHistory();
|
|
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);
|
|
|
|
taosSetSignal(SIGINT, shellSigintHandler);
|
|
|
|
shellGetGrantInfo(shell.conn);
|
|
|
|
while (1) {
|
|
taosThreadCreate(&shell.pid, NULL, shellThreadLoop, shell.conn);
|
|
taosThreadJoin(shell.pid, NULL);
|
|
}
|
|
|
|
return 0;
|
|
}
|