shellAuto.c 55.1 KB
Newer Older
A
Alex Duan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * 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 __USE_XOPEN

#include "shellAuto.h"
X
Xiaoyu Wang 已提交
19
#include "shellInt.h"
A
Alex Duan 已提交
20
#include "shellTire.h"
A
Alex Duan 已提交
21 22 23 24 25 26 27 28
#include "tthread.h"

//
// ------------- define area  ---------------
//
#define UNION_ALL " union all "

// extern function
X
Xiaoyu Wang 已提交
29 30 31 32 33 34
void  shellClearScreen(int32_t ecmd_pos, int32_t cursor_pos);
void  shellGetPrevCharSize(const char* str, int32_t pos, int32_t* size, int32_t* width);
void  shellShowOnScreen(SShellCmd* cmd);
void  shellInsertChar(SShellCmd* cmd, char* c, int size);
void  shellInsertStr(SShellCmd* cmd, char* str, int size);
bool  appendAfterSelect(TAOS* con, SShellCmd* cmd, char* p, int32_t len);
35
char* tireSearchWord(int type, char* pre);
X
Xiaoyu Wang 已提交
36
bool  updateTireValue(int type, bool autoFill);
A
Alex Duan 已提交
37 38 39

typedef struct SAutoPtr {
  STire* p;
40 41
  int    ref;
} SAutoPtr;
A
Alex Duan 已提交
42

43 44 45 46 47 48 49
typedef struct SWord {
  int           type;  // word type , see WT_ define
  char*         word;
  int32_t       len;
  struct SWord* next;
  bool          free;  // if true need free
} SWord;
A
Alex Duan 已提交
50 51

typedef struct {
52 53
  char*   source;
  int32_t source_len;  // valid data length in source
A
Alex Duan 已提交
54 55 56
  int32_t count;
  SWord*  head;
  // matched information
57 58 59
  int32_t matchIndex;  // matched word index in words
  int32_t matchLen;    // matched length at matched word
} SWords;
A
Alex Duan 已提交
60 61

SWords shellCommands[] = {
62 63 64
    {"alter database <db_name> <alter_db_options> <anyword> <alter_db_options> <anyword> <alter_db_options> <anyword> "
     "<alter_db_options> <anyword> <alter_db_options> <anyword> ;",
     0, 0, NULL},
65 66 67 68 69 70
    {"alter dnode <dnode_id> \"resetlog\";", 0, 0, NULL},
    {"alter dnode <dnode_id> \"debugFlag\" \"141\";", 0, 0, NULL},
    {"alter dnode <dnode_id> \"monitor\" \"0\";", 0, 0, NULL},
    {"alter dnode <dnode_id> \"monitor\" \"1\";", 0, 0, NULL},
    {"alter all dnodes \"resetlog\";", 0, 0, NULL},
    {"alter all dnodes \"debugFlag\" \"141\";", 0, 0, NULL},
A
Alex Duan 已提交
71
    {"alter all dnodes \"monitor\" \"0\";", 0, 0, NULL},
72
    {"alter all dnodes \"monitor\" \"1\";", 0, 0, NULL},
73
    {"alter table <tb_name> <tb_actions> <anyword> ;", 0, 0, NULL},
74 75 76 77 78 79
    {"alter local \"resetlog\";", 0, 0, NULL},
    {"alter local \"DebugFlag\" \"143\";", 0, 0, NULL},
    {"alter local \"cDebugFlag\" \"143\";", 0, 0, NULL},
    {"alter local \"uDebugFlag\" \"143\";", 0, 0, NULL},
    {"alter local \"rpcDebugFlag\" \"143\";", 0, 0, NULL},
    {"alter local \"tmrDebugFlag\" \"143\";", 0, 0, NULL},
80 81 82 83 84 85
    {"alter topic", 0, 0, NULL},
    {"alter user <user_name> <user_actions> <anyword> ;", 0, 0, NULL},
    // 20
    {"create table <anyword> using <stb_name> tags(", 0, 0, NULL},
    {"create database <anyword> <db_options> <anyword> <db_options> <anyword> <db_options> <anyword> <db_options> "
     "<anyword> <db_options> <anyword> <db_options> <anyword> <db_options> <anyword> <db_options> <anyword> "
A
Alex Duan 已提交
86
     "<db_options> <anyword> <db_options> <anyword> ;", 0, 0, NULL},
87 88
    {"create dnode <anyword>", 0, 0, NULL},
    {"create index <anyword> on <stb_name> ()", 0, 0, NULL},
89 90 91 92
    {"create mnode on dnode <dnode_id> ;", 0, 0, NULL},
    {"create qnode on dnode <dnode_id> ;", 0, 0, NULL},
    {"create stream <anyword> into <anyword> as select", 0, 0, NULL},  // 26 append sub sql
    {"create topic <anyword> as select", 0, 0, NULL},                  // 27 append sub sql
A
Alex Duan 已提交
93
    {"create function <anyword> as <anyword> outputtype <data_types> language <udf_language>", 0, 0, NULL},
94
    {"create or replace <anyword> as <anyword> outputtype <data_types> language <udf_language>", 0, 0, NULL},
A
Alex Duan 已提交
95
    {"create aggregate function  <anyword> as <anyword> outputtype <data_types> bufsize <anyword> language <udf_language>", 0, 0, NULL},
96
    {"create or replace aggregate function  <anyword> as <anyword> outputtype <data_types> bufsize <anyword> language <udf_language>", 0, 0, NULL},
97 98
    {"create user <anyword> pass <anyword> sysinfo 0;", 0, 0, NULL},
    {"create user <anyword> pass <anyword> sysinfo 1;", 0, 0, NULL},
99 100 101
#ifdef TD_ENTERPRISE
    {"compact database <db_name>", 0, 0, NULL},
#endif
102 103 104
    {"describe <all_table>", 0, 0, NULL},
    {"delete from <all_table> where ", 0, 0, NULL},
    {"drop database <db_name>", 0, 0, NULL},
A
Alex Duan 已提交
105
    {"drop index <anyword>", 0, 0, NULL},
106 107 108 109 110 111
    {"drop table <all_table>", 0, 0, NULL},
    {"drop dnode <dnode_id>", 0, 0, NULL},
    {"drop mnode on dnode <dnode_id> ;", 0, 0, NULL},
    {"drop qnode on dnode <dnode_id> ;", 0, 0, NULL},
    {"drop user <user_name> ;", 0, 0, NULL},
    // 40
A
Alex Duan 已提交
112
    {"drop function <udf_name> ;", 0, 0, NULL},
113 114
    {"drop consumer group <anyword> on ", 0, 0, NULL},
    {"drop topic <topic_name> ;", 0, 0, NULL},
A
Alex Duan 已提交
115
    {"drop stream <stream_name> ;", 0, 0, NULL},
116
    {"explain select", 0, 0, NULL},  // 44 append sub sql
117
    {"flush database <db_name> ;", 0, 0, NULL},
118
    {"help;", 0, 0, NULL},
119 120 121 122 123 124
    {"grant all on <anyword> to <user_name> ;", 0, 0, NULL},
    {"grant read on <anyword> to <user_name> ;", 0, 0, NULL},
    {"grant write on <anyword> to <user_name> ;", 0, 0, NULL},
    {"kill connection <anyword> ;", 0, 0, NULL},
    {"kill query ", 0, 0, NULL},
    {"kill transaction ", 0, 0, NULL},
125
#ifdef TD_ENTERPRISE
126
    {"merge vgroup ", 0, 0, NULL},
127 128 129
#endif
    {"pause stream <stream_name> ;", 0, 0, NULL},
    {"resume stream <stream_name> ;", 0, 0, NULL},
130
    {"reset query cache;", 0, 0, NULL},
131 132 133 134
    {"restore dnode <dnode_id> ;", 0, 0, NULL},
    {"restore vnode on dnode <dnode_id> ;", 0, 0, NULL},
    {"restore mnode on dnode <dnode_id> ;", 0, 0, NULL},
    {"restore qnode on dnode <dnode_id> ;", 0, 0, NULL},
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
    {"revoke all on <anyword> from <user_name> ;", 0, 0, NULL},
    {"revoke read on <anyword> from <user_name> ;", 0, 0, NULL},
    {"revoke write on <anyword> from <user_name> ;", 0, 0, NULL},
    {"select * from <all_table>", 0, 0, NULL},
    {"select client_version();", 0, 0, NULL},
    // 60
    {"select current_user();", 0, 0, NULL},
    {"select database();", 0, 0, NULL},
    {"select server_version();", 0, 0, NULL},
    {"select server_status();", 0, 0, NULL},
    {"select now();", 0, 0, NULL},
    {"select today();", 0, 0, NULL},
    {"select timezone();", 0, 0, NULL},
    {"set max_binary_display_width ", 0, 0, NULL},
    {"show apps;", 0, 0, NULL},
    {"show create database <db_name> \\G;", 0, 0, NULL},
    {"show create stable <stb_name> \\G;", 0, 0, NULL},
    {"show create table <tb_name> \\G;", 0, 0, NULL},
    {"show connections;", 0, 0, NULL},
    {"show cluster;", 0, 0, NULL},
155
    {"show cluster alive;", 0, 0, NULL},
156 157 158 159 160 161 162 163 164 165 166 167 168
    {"show databases;", 0, 0, NULL},
    {"show dnodes;", 0, 0, NULL},
    {"show dnode <dnode_id> variables;", 0, 0, NULL},
    {"show functions;", 0, 0, NULL},
    {"show mnodes;", 0, 0, NULL},
    {"show queries;", 0, 0, NULL},
    // 80
    {"show query <anyword> ;", 0, 0, NULL},
    {"show qnodes;", 0, 0, NULL},
    {"show stables;", 0, 0, NULL},
    {"show stables like ", 0, 0, NULL},
    {"show streams;", 0, 0, NULL},
    {"show scores;", 0, 0, NULL},
A
Alex Duan 已提交
169
    {"show snodes;", 0, 0, NULL},
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
    {"show subscriptions;", 0, 0, NULL},
    {"show tables;", 0, 0, NULL},
    {"show tables like", 0, 0, NULL},
    {"show table distributed <all_table>", 0, 0, NULL},
    {"show tags from <tb_name>", 0, 0, NULL},
    {"show tags from <db_name>", 0, 0, NULL},
    {"show topics;", 0, 0, NULL},
    {"show transactions;", 0, 0, NULL},
    {"show users;", 0, 0, NULL},
    {"show variables;", 0, 0, NULL},
    {"show local variables;", 0, 0, NULL},
    {"show vnodes <dnode_id>", 0, 0, NULL},
    {"show vgroups;", 0, 0, NULL},
    {"show consumers;", 0, 0, NULL},
    {"show grants;", 0, 0, NULL},
185
#ifdef TD_ENTERPRISE
186
    {"split vgroup ", 0, 0, NULL},
187
#endif    
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
    {"insert into <tb_name> values(", 0, 0, NULL},
    {"insert into <tb_name> using <stb_name> tags(", 0, 0, NULL},
    {"insert into <tb_name> using <stb_name> <anyword> values(", 0, 0, NULL},
    {"insert into <tb_name> file ", 0, 0, NULL},
    {"trim database <db_name>", 0, 0, NULL},
    {"use <db_name>", 0, 0, NULL},
    {"quit", 0, 0, NULL}};

char* keywords[] = {
    "and ",         "asc ",      "desc ",     "from ",    "fill(",         "limit ",    "where ",
    "interval(",    "order by ", "order by ", "offset ",  "or ",           "group by ", "now()",
    "session(",     "sliding ",  "slimit ",   "soffset ", "state_window(", "today() ",  "union all select ",
    "partition by "};

char* functions[] = {
    "count(",         "sum(",
    "avg(",           "last(",
    "last_row(",      "top(",
    "interp(",        "max(",
    "min(",           "now()",
    "today()",        "percentile(",
    "tail(",          "pow(",
    "abs(",           "atan(",
    "acos(",          "asin(",
    "apercentile(",   "bottom(",
    "cast(",          "ceil(",
    "char_length(",   "cos(",
    "concat(",        "concat_ws(",
    "csum(",          "diff(",
    "derivative(",    "elapsed(",
    "first(",         "floor(",
    "hyperloglog(",   "histogram(",
    "irate(",         "leastsquares(",
    "length(",        "log(",
    "lower(",         "ltrim(",
    "mavg(",          "mode(",
    "tan(",           "round(",
    "rtrim(",         "sample(",
    "sin(",           "spread(",
    "substr(",        "statecount(",
    "stateduration(", "stddev(",
    "sqrt(",          "timediff(",
    "timezone(",      "timetruncate(",
    "twa(",           "to_unixtimestamp(",
    "unique(",        "upper(",
A
Alex Duan 已提交
233 234
};

235 236 237
char* tb_actions[] = {
    "add column ", "modify column ", "drop column ", "rename column ", "add tag ",
    "modify tag ", "drop tag ",      "rename tag ",  "set tag ",
A
Alex Duan 已提交
238 239
};

240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
char* user_actions[] = {"pass ", "enable ", "sysinfo "};

char* tb_options[] = {"comment ", "watermark ", "max_delay ", "ttl ", "rollup(", "sma("};

char* db_options[] = {"keep ",
                      "replica ",
                      "precision ",
                      "strict ",
                      "buffer ",
                      "cachemodel ",
                      "cachesize ",
                      "comp ",
                      "duration ",
                      "wal_fsync_period",
                      "maxrows ",
                      "minrows ",
                      "pages ",
                      "pagesize ",
                      "retentions ",
                      "wal_level ",
                      "vgroups ",
                      "single_stable ",
                      "wal_retention_period ",
                      "wal_roll_period ",
                      "wal_retention_size ",
                      "wal_segment_size "};

X
Xiaoyu Wang 已提交
267
char* alter_db_options[] = {"cachemodel ", "replica ", "keep ", "cachesize ", "wal_fsync_period ", "wal_level "};
268 269 270 271 272 273 274 275 276 277 278 279 280

char* data_types[] = {"timestamp",    "int",
                      "int unsigned", "varchar(16)",
                      "float",        "double",
                      "binary(16)",   "nchar(16)",
                      "bigint",       "bigint unsigned",
                      "smallint",     "smallint unsigned",
                      "tinyint",      "tinyint unsigned",
                      "bool",         "json"};

char* key_tags[] = {"tags("};

char* key_select[] = {"select "};
A
Alex Duan 已提交
281

282
char* key_systable[] = {
A
Alex Duan 已提交
283 284 285 286 287 288
    "ins_dnodes",        "ins_mnodes",     "ins_modules",      "ins_qnodes",  "ins_snodes",          "ins_cluster",
    "ins_databases",     "ins_functions",  "ins_indexes",      "ins_stables", "ins_tables",          "ins_tags",
    "ins_users",         "ins_grants",     "ins_vgroups",      "ins_configs", "ins_dnode_variables", "ins_topics",
    "ins_subscriptions", "ins_streams",    "ins_stream_tasks", "ins_vnodes",  "ins_user_privileges", "perf_connections",
    "perf_queries",      "perf_consumers", "perf_trans",       "perf_apps"};

A
Alex Duan 已提交
289
char* udf_language[] = {"\'Python\'", "\'C\'"};
A
Alex Duan 已提交
290

A
Alex Duan 已提交
291
//
sangshuduo's avatar
sangshuduo 已提交
292
//  ------- global variant define ---------
A
Alex Duan 已提交
293
//
294 295 296 297 298
int32_t firstMatchIndex = -1;  // first match shellCommands index
int32_t lastMatchIndex = -1;   // last match shellCommands index
int32_t curMatchIndex = -1;    // current match shellCommands index
int32_t lastWordBytes = -1;    // printShow last word length
bool    waitAutoFill = false;
A
Alex Duan 已提交
299 300 301 302

//
//   ----------- global var array define -----------
//
303 304 305 306 307 308 309
#define WT_VAR_DBNAME         0
#define WT_VAR_STABLE         1
#define WT_VAR_TABLE          2
#define WT_VAR_DNODEID        3
#define WT_VAR_USERNAME       4
#define WT_VAR_TOPIC          5
#define WT_VAR_STREAM         6
A
Alex Duan 已提交
310 311 312
#define WT_VAR_UDFNAME        7

#define WT_FROM_DB_MAX        7  // max get content from db
313
#define WT_FROM_DB_CNT (WT_FROM_DB_MAX + 1)
A
Alex Duan 已提交
314

A
Alex Duan 已提交
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
#define WT_VAR_ALLTABLE       8
#define WT_VAR_FUNC           9
#define WT_VAR_KEYWORD        10
#define WT_VAR_TBACTION       11
#define WT_VAR_DBOPTION       12
#define WT_VAR_ALTER_DBOPTION 13
#define WT_VAR_DATATYPE       14
#define WT_VAR_KEYTAGS        15
#define WT_VAR_ANYWORD        16
#define WT_VAR_TBOPTION       17
#define WT_VAR_USERACTION     18
#define WT_VAR_KEYSELECT      19
#define WT_VAR_SYSTABLE       20
#define WT_VAR_LANGUAGE       21

#define WT_VAR_CNT 22


333
#define WT_TEXT 0xFF
A
Alex Duan 已提交
334

335
char dbName[256] = "";  // save use database name;
A
Alex Duan 已提交
336
// tire array
337
STire*        tires[WT_VAR_CNT];
A
Alex Duan 已提交
338
TdThreadMutex tiresMutex;
339
// save thread handle obtain var name from db server
A
Alex Duan 已提交
340 341
TdThread* threads[WT_FROM_DB_CNT];
// obtain var name  with sql from server
A
Alex Duan 已提交
342
char varTypes[WT_VAR_CNT][64] = {
A
Alex Duan 已提交
343
    "<db_name>",    "<stb_name>",  "<tb_name>",  "<dnode_id>",  "<user_name>",    "<topic_name>", "<stream_name>",
A
Alex Duan 已提交
344
    "<udf_name>",   "<all_table>", "<function>", "<keyword>",    "<tb_actions>",   "<db_options>", "<alter_db_options>",
A
Alex Duan 已提交
345
    "<data_types>", "<key_tags>",  "<anyword>",  "<tb_options>", "<user_actions>", "<key_select>", "<sys_table>", "<udf_language>"};
A
Alex Duan 已提交
346

347
char varSqls[WT_FROM_DB_CNT][64] = {"show databases;", "show stables;", "show tables;", "show dnodes;",
A
Alex Duan 已提交
348
                                    "show users;",     "show topics;",  "show streams;", "show functions;"};
A
Alex Duan 已提交
349 350

// var words current cursor, if user press any one key except tab, cursorVar can be reset to -1
351 352
int  cursorVar = -1;
bool varMode = false;  // enter var names list mode
A
Alex Duan 已提交
353

354 355
TAOS*      varCon = NULL;
SShellCmd* varCmd = NULL;
356
bool       varRunOnce = false;
357 358
SMatch*    lastMatch = NULL;  // save last match result
int        cntDel = 0;        // delete byte count after next press tab
A
Alex Duan 已提交
359 360 361

// show auto tab introduction
void printfIntroduction() {
362
  printf("  ********************************  Tab Completion  ************************************\n");
sangshuduo's avatar
sangshuduo 已提交
363
  char secondLine[160] = "\0";
364
  sprintf(secondLine, "  *   The %s CLI supports tab completion for a variety of items, ", shell.info.cusName);
sangshuduo's avatar
sangshuduo 已提交
365 366
  printf("%s", secondLine);
  int secondLineLen = strlen(secondLine);
367
  while (87 - (secondLineLen++) > 0) {
sangshuduo's avatar
sangshuduo 已提交
368 369 370
    printf(" ");
  }
  printf("*\n");
X
Xiaoyu Wang 已提交
371 372 373 374 375 376 377 378 379 380 381
  printf("  *   including database names, table names, function names and keywords.              *\n");
  printf("  *   The full list of shortcut keys is as follows:                                    *\n");
  printf("  *    [ TAB ]        ......  complete the current word                                *\n");
  printf("  *                   ......  if used on a blank line, display all supported commands  *\n");
  printf("  *    [ Ctrl + A ]   ......  move cursor to the st[A]rt of the line                   *\n");
  printf("  *    [ Ctrl + E ]   ......  move cursor to the [E]nd of the line                     *\n");
  printf("  *    [ Ctrl + W ]   ......  move cursor to the middle of the line                    *\n");
  printf("  *    [ Ctrl + L ]   ......  clear the entire screen                                  *\n");
  printf("  *    [ Ctrl + K ]   ......  clear the screen after the cursor                        *\n");
  printf("  *    [ Ctrl + U ]   ......  clear the screen before the cursor                       *\n");
  printf("  **************************************************************************************\n\n");
A
Alex Duan 已提交
382 383 384
}

void showHelp() {
sangshuduo's avatar
sangshuduo 已提交
385
  printf("\nThe %s CLI supports the following commands:", shell.info.cusName);
386 387
  printf(
      "\n\
A
Alex Duan 已提交
388 389
  ----- A ----- \n\
    alter database <db_name> <db_options> \n\
A
Alex Duan 已提交
390 391 392
    alter dnode <dnode_id> 'resetlog';\n\
    alter dnode <dnode_id> 'monitor' '0';\n\
    alter dnode <dnode_id> 'monitor' \"1\";\n\
393 394 395 396 397
    alter dnode <dnode_id> \"debugflag\" \"143\";\n\
    alter all dnodes \"monitor\" \"0\";\n\
    alter all dnodes \"monitor\" \"1\";\n\
    alter all dnodes \"resetlog\";\n\
    alter all dnodes \"debugFlag\" \n\
A
Alex Duan 已提交
398
    alter table <tb_name> <tb_actions> ;\n\
399 400
    alter local \"resetlog\";\n\
    alter local \"DebugFlag\" \"143\";\n\
A
Alex Duan 已提交
401 402
    alter topic\n\
    alter user <user_name> <user_actions> ...\n\
A
Alex Duan 已提交
403 404
  ----- C ----- \n\
    create table <tb_name> using <stb_name> tags ...\n\
A
Alex Duan 已提交
405
    create database <db_name> <db_options>  ...\n\
406
    create dnode \"fqdn:port\" ...\n\
407
    create index <index_name> on <stb_name> (tag_column_name);\n\
A
Alex Duan 已提交
408 409 410 411
    create mnode on dnode <dnode_id> ;\n\
    create qnode on dnode <dnode_id> ;\n\
    create stream <stream_name> into <stb_name> as select ...\n\
    create topic <topic_name> as select ...\n\
A
Alex Duan 已提交
412
    create function <udf_name> as <file_name> outputtype <data_types> language \'C\' | \'Python\' ;\n\
A
Alex Duan 已提交
413
    create aggregate function  <udf_name> as <file_name> outputtype <data_types> bufsize <bufsize_bytes> language \'C\' | \'Python\';\n\
A
Alex Duan 已提交
414
    create user <user_name> pass <password> ...\n\
A
Alex Duan 已提交
415
  ----- D ----- \n\
A
Alex Duan 已提交
416 417
    describe <all_table>\n\
    delete from <all_table> where ...\n\
A
Alex Duan 已提交
418 419 420
    drop database <db_name>;\n\
    drop table <all_table>;\n\
    drop dnode <dnode_id>;\n\
A
Alex Duan 已提交
421 422 423
    drop mnode on dnode <dnode_id> ;\n\
    drop qnode on dnode <dnode_id> ;\n\
    drop user <user_name> ;\n\
A
Alex Duan 已提交
424
    drop function <udf_name>;\n\
A
Alex Duan 已提交
425 426 427
    drop consumer group ... \n\
    drop topic <topic_name> ;\n\
    drop stream <stream_name> ;\n\
428
    drop index <index_name>;\n\
A
Alex Duan 已提交
429 430
  ----- E ----- \n\
    explain select clause ...\n\
431
  ----- F ----- \n\
A
Alex Duan 已提交
432
    flush database <db_name>;\n\
433 434
  ----- H ----- \n\
    help;\n\
A
Alex Duan 已提交
435 436 437 438 439 440 441
  ----- I ----- \n\
    insert into <tb_name> values(...) ;\n\
    insert into <tb_name> using <stb_name> tags(...) values(...) ;\n\
  ----- G ----- \n\
    grant all   on <priv_level> to <user_name> ;\n\
    grant read  on <priv_level> to <user_name> ;\n\
    grant write on <priv_level> to <user_name> ;\n\
A
Alex Duan 已提交
442 443 444
  ----- K ----- \n\
    kill connection <connection_id>; \n\
    kill query <query_id>; \n\
A
Alex Duan 已提交
445
    kill transaction <transaction_id>;\n\
446 447
  ----- P ----- \n\
    pause stream <stream_name>;\n\
A
Alex Duan 已提交
448
  ----- R ----- \n\
449
    resume stream <stream_name>;\n\
A
Alex Duan 已提交
450
    reset query cache;\n\
451 452 453 454
    restore dnode <dnode_id> ;\n\
    restore vnode on dnode <dnode_id> ;\n\
    restore mnode on dnode <dnode_id> ;\n\
    restore qnode on dnode <dnode_id> ;\n\
A
Alex Duan 已提交
455 456 457
    revoke all   on <priv_level> from <user_name> ;\n\
    revoke read  on <priv_level> from <user_name> ;\n\
    revoke write on <priv_level> from <user_name> ;\n\
A
Alex Duan 已提交
458 459 460 461
  ----- S ----- \n\
    select * from <all_table> where ... \n\
    select client_version();\n\
    select current_user();\n\
A
Alex Duan 已提交
462
    select database();\n\
A
Alex Duan 已提交
463
    select server_version();\n\
A
Alex Duan 已提交
464 465 466 467 468 469
    select server_status();\n\
    select now();\n\
    select today();\n\
    select timezone();\n\
    set max_binary_display_width ...\n\
    show apps;\n\
A
Alex Duan 已提交
470 471 472 473
    show create database <db_name>;\n\
    show create stable <stb_name>;\n\
    show create table <tb_name>;\n\
    show connections;\n\
A
Alex Duan 已提交
474
    show cluster;\n\
475
    show cluster alive;\n\
A
Alex Duan 已提交
476 477
    show databases;\n\
    show dnodes;\n\
A
Alex Duan 已提交
478
    show dnode <dnode_id> variables;\n\
A
Alex Duan 已提交
479 480 481
    show functions;\n\
    show mnodes;\n\
    show queries;\n\
A
Alex Duan 已提交
482 483 484
    show query <query_id> ;\n\
    show qnodes;\n\
    show snodes;\n\
A
Alex Duan 已提交
485
    show stables;\n\
A
Alex Duan 已提交
486
    show stables like \n\
A
Alex Duan 已提交
487 488
    show streams;\n\
    show scores;\n\
A
Alex Duan 已提交
489
    show subscriptions;\n\
A
Alex Duan 已提交
490
    show tables;\n\
A
Alex Duan 已提交
491 492 493 494 495 496
    show tables like\n\
    show table distributed <all_table>;\n\
    show tags from <tb_name>\n\
    show tags from <db_name>\n\
    show topics;\n\
    show transactions;\n\
A
Alex Duan 已提交
497 498
    show users;\n\
    show variables;\n\
A
Alex Duan 已提交
499 500
    show local variables;\n\
    show vnodes <dnode_id>\n\
A
Alex Duan 已提交
501
    show vgroups;\n\
A
Alex Duan 已提交
502 503 504 505
    show consumers;\n\
    show grants;\n\
  ----- T ----- \n\
    trim database <db_name>;\n\
A
Alex Duan 已提交
506 507 508
  ----- U ----- \n\
    use <db_name>;");

509 510
#ifdef TD_ENTERPRISE
  printf(
A
Alex Duan 已提交
511
      "\n\n\
512 513
  ----- special commands on enterpise version ----- \n\
    compact database <db_name>; \n\
A
Alex Duan 已提交
514
    split vgroup <vgroup_id>;");
515
#endif
516

517
  printf("\n\n");
518 519 520
  // define in getDuration() function
  printf(
      "\
A
Alex Duan 已提交
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
  Timestamp expression Format:\n\
    b - nanosecond \n\
    u - microsecond \n\
    a - millisecond \n\
    s - second \n\
    m - minute \n\
    h - hour \n\
    d - day \n\
    w - week \n\
    now - current time \n\
  Example : \n\
    select * from t1 where ts > now - 2w + 3d and ts <= now - 1w -2h ;\n");
  printf("\n");
}

//
//  -------------------  parse words --------------------------
//

#define SHELL_COMMAND_COUNT() (sizeof(shellCommands) / sizeof(SWords))

// get at
543 544
SWord* atWord(SWords* command, int32_t index) {
  SWord* word = command->head;
A
Alex Duan 已提交
545
  for (int32_t i = 0; i < index; i++) {
546
    if (word == NULL) return NULL;
A
Alex Duan 已提交
547 548 549 550 551 552 553 554 555 556
    word = word->next;
  }

  return word;
}

#define MATCH_WORD(x) atWord(x, x->matchIndex)

int wordType(const char* p, int32_t len) {
  for (int i = 0; i < WT_VAR_CNT; i++) {
557
    if (strncmp(p, varTypes[i], len) == 0) return i;
A
Alex Duan 已提交
558 559 560 561 562
  }
  return WT_TEXT;
}

// add word
563 564
SWord* addWord(const char* p, int32_t len, bool pattern) {
  SWord* word = (SWord*)taosMemoryMalloc(sizeof(SWord));
A
Alex Duan 已提交
565
  memset(word, 0, sizeof(SWord));
566 567
  word->word = (char*)p;
  word->len = len;
A
Alex Duan 已提交
568 569

  // check format
570
  if (pattern && len > 0) {
A
Alex Duan 已提交
571 572 573 574 575 576 577 578 579
    word->type = wordType(p, len);
  } else {
    word->type = WT_TEXT;
  }

  return word;
}

// parse one command
580 581
void parseCommand(SWords* command, bool pattern) {
  char*   p = command->source;
A
Alex Duan 已提交
582
  int32_t start = 0;
583
  int32_t size = command->source_len > 0 ? command->source_len : strlen(p);
A
Alex Duan 已提交
584 585 586 587 588 589 590

  bool lastBlank = false;
  for (int i = 0; i <= size; i++) {
    if (p[i] == ' ' || i == size) {
      // check continue blank like '    '
      if (p[i] == ' ') {
        if (lastBlank) {
591
          start++;
A
Alex Duan 已提交
592 593
          continue;
        }
594
        if (i == 0) {  // first blank
A
Alex Duan 已提交
595
          lastBlank = true;
596
          start++;
A
Alex Duan 已提交
597 598 599
          continue;
        }
        lastBlank = true;
600
      }
A
Alex Duan 已提交
601 602 603 604 605 606

      // found split or string end , append word
      if (command->head == NULL) {
        command->head = addWord(p + start, i - start, pattern);
        command->count = 1;
      } else {
607
        SWord* word = command->head;
A
Alex Duan 已提交
608 609 610
        while (word->next) {
          word = word->next;
        }
611 612
        word->next = addWord(p + start, i - start, pattern);
        command->count++;
A
Alex Duan 已提交
613 614 615 616 617 618 619 620 621
      }
      start = i + 1;
    } else {
      lastBlank = false;
    }
  }
}

// free SShellCmd
622
void freeCommand(SWords* command) {
A
Alex Duan 已提交
623
  SWord* item = command->head;
624
  command->head = NULL;
625
  // loop
A
Alex Duan 已提交
626 627 628
  while (item) {
    SWord* tmp = item;
    item = item->next;
A
Alex Duan 已提交
629
    // if malloc need free
630
    if (tmp->free && tmp->word) taosMemoryFree(tmp->word);
A
Alex Duan 已提交
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
    taosMemoryFree(tmp);
  }
}

void GenerateVarType(int type, char** p, int count) {
  STire* tire = createTire(TIRE_LIST);
  for (int i = 0; i < count; i++) {
    insertWord(tire, p[i]);
  }

  taosThreadMutexLock(&tiresMutex);
  tires[type] = tire;
  taosThreadMutexUnlock(&tiresMutex);
}

//
//  -------------------- shell auto ----------------
//

sangshuduo's avatar
sangshuduo 已提交
650
// init shell auto function , shell start call once
A
Alex Duan 已提交
651 652 653
bool shellAutoInit() {
  // command
  int32_t count = SHELL_COMMAND_COUNT();
654
  for (int32_t i = 0; i < count; i++) {
A
Alex Duan 已提交
655 656 657 658 659 660 661 662 663 664 665
    parseCommand(shellCommands + i, true);
  }

  // tires
  memset(tires, 0, sizeof(STire*) * WT_VAR_CNT);
  taosThreadMutexInit(&tiresMutex, NULL);

  // threads
  memset(threads, 0, sizeof(TdThread*) * WT_FROM_DB_CNT);

  // generate varType
666 667 668 669 670 671 672 673 674 675
  GenerateVarType(WT_VAR_FUNC, functions, sizeof(functions) / sizeof(char*));
  GenerateVarType(WT_VAR_KEYWORD, keywords, sizeof(keywords) / sizeof(char*));
  GenerateVarType(WT_VAR_DBOPTION, db_options, sizeof(db_options) / sizeof(char*));
  GenerateVarType(WT_VAR_ALTER_DBOPTION, alter_db_options, sizeof(alter_db_options) / sizeof(char*));
  GenerateVarType(WT_VAR_TBACTION, tb_actions, sizeof(tb_actions) / sizeof(char*));
  GenerateVarType(WT_VAR_DATATYPE, data_types, sizeof(data_types) / sizeof(char*));
  GenerateVarType(WT_VAR_KEYTAGS, key_tags, sizeof(key_tags) / sizeof(char*));
  GenerateVarType(WT_VAR_TBOPTION, tb_options, sizeof(tb_options) / sizeof(char*));
  GenerateVarType(WT_VAR_USERACTION, user_actions, sizeof(user_actions) / sizeof(char*));
  GenerateVarType(WT_VAR_KEYSELECT, key_select, sizeof(key_select) / sizeof(char*));
676
  GenerateVarType(WT_VAR_SYSTABLE, key_systable, sizeof(key_systable) / sizeof(char*));
A
Alex Duan 已提交
677
  GenerateVarType(WT_VAR_LANGUAGE, udf_language, sizeof(udf_language) / sizeof(char*));
A
Alex Duan 已提交
678 679 680 681 682

  return true;
}

// set conn
683 684 685
void shellSetConn(TAOS* conn, bool runOnce) {
  varCon = conn;
  varRunOnce = runOnce;
A
Alex Duan 已提交
686
  // init database and stable
687
  if (!runOnce) updateTireValue(WT_VAR_DBNAME, false);
A
Alex Duan 已提交
688
}
A
Alex Duan 已提交
689

sangshuduo's avatar
sangshuduo 已提交
690
// exit shell auto function, shell exit call once
A
Alex Duan 已提交
691 692 693
void shellAutoExit() {
  // free command
  int32_t count = SHELL_COMMAND_COUNT();
694
  for (int32_t i = 0; i < count; i++) {
A
Alex Duan 已提交
695 696 697 698 699 700 701 702 703
    freeCommand(shellCommands + i);
  }

  // free tires
  taosThreadMutexLock(&tiresMutex);
  for (int32_t i = 0; i < WT_VAR_CNT; i++) {
    if (tires[i]) {
      freeTire(tires[i]);
      tires[i] = NULL;
704
    }
A
Alex Duan 已提交
705 706
  }
  taosThreadMutexUnlock(&tiresMutex);
sangshuduo's avatar
sangshuduo 已提交
707
  // destroy
A
Alex Duan 已提交
708 709 710
  taosThreadMutexDestroy(&tiresMutex);

  // free threads
A
Alex Duan 已提交
711
  for (int32_t i = 0; i < WT_FROM_DB_CNT; i++) {
A
Alex Duan 已提交
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
    if (threads[i]) {
      taosDestroyThread(threads[i]);
      threads[i] = NULL;
    }
  }

  // free lastMatch
  if (lastMatch) {
    freeMatch(lastMatch);
    lastMatch = NULL;
  }
}

//
//  -------------------  auto ptr for tires --------------------------
//
sangshuduo's avatar
sangshuduo 已提交
728
bool setNewAutoPtr(int type, STire* pNew) {
729
  if (pNew == NULL) return false;
A
Alex Duan 已提交
730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763

  taosThreadMutexLock(&tiresMutex);
  STire* pOld = tires[type];
  if (pOld != NULL) {
    // previous have value, release self ref count
    if (--pOld->ref == 0) {
      freeTire(pOld);
    }
  }

  // set new
  tires[type] = pNew;
  tires[type]->ref = 1;
  taosThreadMutexUnlock(&tiresMutex);

  return true;
}

// get ptr
STire* getAutoPtr(int type) {
  if (tires[type] == NULL) {
    return NULL;
  }

  taosThreadMutexLock(&tiresMutex);
  tires[type]->ref++;
  taosThreadMutexUnlock(&tiresMutex);

  return tires[type];
}

// put back tire to tires[type], if tire not equal tires[type].p, need free tire
void putBackAutoPtr(int type, STire* tire) {
  if (tire == NULL) {
764
    return;
A
Alex Duan 已提交
765 766 767 768
  }

  taosThreadMutexLock(&tiresMutex);
  if (tires[type] != tire) {
769
    // update by out,  can't put back , so free
A
Alex Duan 已提交
770
    if (--tire->ref == 1) {
sangshuduo's avatar
sangshuduo 已提交
771
      // support multi thread getAutoPtr
A
Alex Duan 已提交
772 773
      freeTire(tire);
    }
774

A
Alex Duan 已提交
775 776
  } else {
    tires[type]->ref--;
X
xinsheng Ren 已提交
777
    ASSERT(tires[type]->ref > 0);
A
Alex Duan 已提交
778 779 780
  }
  taosThreadMutexUnlock(&tiresMutex);

781
  return;
A
Alex Duan 已提交
782 783 784 785 786 787
}

//
//  -------------------  var Word --------------------------
//

788
#define MAX_CACHED_CNT 100000  // max cached rows 10w
A
Alex Duan 已提交
789 790
// write sql result to var name, return write rows cnt
int writeVarNames(int type, TAOS_RES* tres) {
791
  // fetch row
A
Alex Duan 已提交
792 793 794 795 796
  TAOS_ROW row = taos_fetch_row(tres);
  if (row == NULL) {
    return 0;
  }

797
  TAOS_FIELD* fields = taos_fetch_fields(tres);
A
Alex Duan 已提交
798
  // create new tires
799
  char   tireType = type == WT_VAR_TABLE ? TIRE_TREE : TIRE_LIST;
A
Alex Duan 已提交
800 801 802 803
  STire* tire = createTire(tireType);

  // enum rows
  char name[1024];
804
  int  numOfRows = 0;
A
Alex Duan 已提交
805 806
  do {
    int32_t* lengths = taos_fetch_lengths(tres);
807 808 809
    int32_t  bytes = lengths[0];
    if (fields[0].type == TSDB_DATA_TYPE_INT) {
      sprintf(name, "%d", *(int16_t*)row[0]);
A
Alex Duan 已提交
810 811 812
    } else {
      memcpy(name, row[0], bytes);
    }
813 814

    name[bytes] = 0;  // set string end
A
Alex Duan 已提交
815 816 817
    // insert to tire
    insertWord(tire, name);

818
    if (++numOfRows > MAX_CACHED_CNT) {
A
Alex Duan 已提交
819 820 821 822 823 824 825
      break;
    }

    row = taos_fetch_row(tres);
  } while (row != NULL);

  // replace old tire
sangshuduo's avatar
sangshuduo 已提交
826
  setNewAutoPtr(type, tire);
A
Alex Duan 已提交
827 828 829 830

  return numOfRows;
}

831 832
void setThreadNull(int type) {
  taosThreadMutexLock(&tiresMutex);
X
Xiaoyu Wang 已提交
833
  if (threads[type]) {
834 835
    taosMemoryFree(threads[type]);
  }
836 837 838 839
  threads[type] = NULL;
  taosThreadMutexUnlock(&tiresMutex);
}

840
bool firstMatchCommand(TAOS* con, SShellCmd* cmd);
A
Alex Duan 已提交
841
//
842
//  thread obtain var thread from db server
A
Alex Duan 已提交
843 844
//
void* varObtainThread(void* param) {
845
  int type = *(int*)param;
A
Alex Duan 已提交
846 847 848 849 850 851 852 853 854
  taosMemoryFree(param);

  if (varCon == NULL || type > WT_FROM_DB_MAX) {
    return NULL;
  }

  TAOS_RES* pSql = taos_query(varCon, varSqls[type]);
  if (taos_errno(pSql)) {
    taos_free_result(pSql);
855
    setThreadNull(type);
A
Alex Duan 已提交
856 857 858 859 860 861 862 863 864
    return NULL;
  }

  // write var names from pSql
  int cnt = writeVarNames(type, pSql);

  // free sql
  taos_free_result(pSql);

865
  // check need call auto tab
A
Alex Duan 已提交
866 867 868 869 870
  if (cnt > 0 && waitAutoFill) {
    // press tab key by program
    firstMatchCommand(varCon, varCmd);
  }

871
  setThreadNull(type);
A
Alex Duan 已提交
872 873 874
  return NULL;
}

A
Alex Duan 已提交
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906
// return true is need update value by async
bool updateTireValue(int type, bool autoFill) {
  // TYPE CONTEXT GET FROM DB
  taosThreadMutexLock(&tiresMutex);

  // check need obtain from server
  if (tires[type] == NULL) {
    waitAutoFill = autoFill;
    // need async obtain var names from db sever
    if (threads[type] != NULL) {
      if (taosThreadRunning(threads[type])) {
        // thread running , need not obtain again, return
        taosThreadMutexUnlock(&tiresMutex);
        return NULL;
      }
      // destroy previous thread handle for new create thread handle
      taosDestroyThread(threads[type]);
      threads[type] = NULL;
    }

    // create new
    void* param = taosMemoryMalloc(sizeof(int));
    *((int*)param) = type;
    threads[type] = taosCreateThread(varObtainThread, param);
    taosThreadMutexUnlock(&tiresMutex);
    return true;
  }
  taosThreadMutexUnlock(&tiresMutex);

  return false;
}

A
Alex Duan 已提交
907 908 909
// only match next one word from all match words, return valuue must free by caller
char* matchNextPrefix(STire* tire, char* pre) {
  SMatch* match = NULL;
X
Xiaoyu Wang 已提交
910
  if (tire == NULL) return NULL;
A
Alex Duan 已提交
911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926

  // re-use last result
  if (lastMatch) {
    if (strcmp(pre, lastMatch->pre) == 0) {
      // same pre
      match = lastMatch;
    }
  }

  if (match == NULL) {
    // not same with last result
    if (pre[0] == 0) {
      // EMPTY PRE
      match = enumAll(tire);
    } else {
      // NOT EMPTY
927 928 929
      match = (SMatch*)taosMemoryMalloc(sizeof(SMatch));
      memset(match, 0, sizeof(SMatch));
      matchPrefix(tire, pre, match);
A
Alex Duan 已提交
930
    }
931

A
Alex Duan 已提交
932 933
    // save to lastMatch
    if (match) {
934
      if (lastMatch) freeMatch(lastMatch);
A
Alex Duan 已提交
935 936 937 938 939 940 941
      lastMatch = match;
    }
  }

  // check valid
  if (match == NULL || match->head == NULL) {
    // no one matched
942
    return NULL;
A
Alex Duan 已提交
943 944 945 946 947
  }

  if (cursorVar == -1) {
    // first
    cursorVar = 0;
948
    return taosStrdup(match->head->word);
A
Alex Duan 已提交
949 950 951
  }

  // according to cursorVar , calculate next one
952
  int         i = 0;
A
Alex Duan 已提交
953 954 955 956 957 958 959 960 961 962 963
  SMatchNode* item = match->head;
  while (item) {
    if (i == cursorVar + 1) {
      // found next position ok
      if (item->next == NULL) {
        // match last item, reset cursorVar to head
        cursorVar = -1;
      } else {
        cursorVar = i;
      }

964
      return taosStrdup(item->word);
A
Alex Duan 已提交
965 966 967 968 969 970 971
    }

    // check end item
    if (item->next == NULL) {
      // if cursorVar > var list count, return last and reset cursorVar
      cursorVar = -1;

972
      return taosStrdup(item->word);
A
Alex Duan 已提交
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
    }

    // move next
    item = item->next;
    i++;
  }

  return NULL;
}

// search pre word from tire tree, return value must free by caller
char* tireSearchWord(int type, char* pre) {
  if (type == WT_TEXT) {
    return NULL;
  }

989
  if (type > WT_FROM_DB_MAX) {
A
Alex Duan 已提交
990 991
    // NOT FROM DB , tires[type] alwary not null
    STire* tire = tires[type];
992 993
    if (tire == NULL) return NULL;
    return matchNextPrefix(tire, pre);
A
Alex Duan 已提交
994 995
  }

X
Xiaoyu Wang 已提交
996
  if (updateTireValue(type, true)) {
A
Alex Duan 已提交
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
    return NULL;
  }

  // can obtain var names from local
  STire* tire = getAutoPtr(type);
  if (tire == NULL) {
    return NULL;
  }

  char* str = matchNextPrefix(tire, pre);
  // used finish, put back pointer to autoptr array
  putBackAutoPtr(type, tire);

  return str;
}

1013
// match var word, word1 is pattern , word2 is input from shell
A
Alex Duan 已提交
1014
bool matchVarWord(SWord* word1, SWord* word2) {
1015
  // search input word from tire tree
A
Alex Duan 已提交
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
  char pre[512];
  memcpy(pre, word2->word, word2->len);
  pre[word2->len] = 0;

  char* str = NULL;
  if (word1->type == WT_VAR_ALLTABLE) {
    // ALL_TABLE
    str = tireSearchWord(WT_VAR_STABLE, pre);
    if (str == NULL) {
      str = tireSearchWord(WT_VAR_TABLE, pre);
1026
      if (str == NULL) return false;
A
Alex Duan 已提交
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037
    }
  } else {
    // OTHER
    str = tireSearchWord(word1->type, pre);
    if (str == NULL) {
      // not found or word1->type variable list not obtain from server, return not match
      return false;
    }
  }

  // free previous malloc
1038
  if (word1->free && word1->word) {
A
Alex Duan 已提交
1039 1040 1041 1042 1043
    taosMemoryFree(word1->word);
  }

  // save
  word1->word = str;
1044 1045 1046
  word1->len = strlen(str);
  word1->free = true;  // need free

A
Alex Duan 已提交
1047 1048 1049 1050 1051 1052 1053
  return true;
}

//
//  -------------------  match words --------------------------
//

1054 1055 1056 1057
// compare command cmdPattern come from shellCommands , cmdInput come from user input
int32_t compareCommand(SWords* cmdPattern, SWords* cmdInput) {
  SWord* wordPattern = cmdPattern->head;
  SWord* wordInput = cmdInput->head;
A
Alex Duan 已提交
1058

1059
  if (wordPattern == NULL || wordInput == NULL) {
A
Alex Duan 已提交
1060 1061 1062
    return -1;
  }

1063 1064
  for (int32_t i = 0; i < cmdPattern->count; i++) {
    if (wordPattern->type == WT_TEXT) {
A
Alex Duan 已提交
1065
      // WT_TEXT match
1066 1067 1068
      if (wordPattern->len == wordInput->len) {
        if (strncasecmp(wordPattern->word, wordInput->word, wordPattern->len) != 0) return -1;
      } else if (wordPattern->len < wordInput->len) {
A
Alex Duan 已提交
1069 1070
        return -1;
      } else {
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
        // wordPattern->len > wordInput->len
        if (strncasecmp(wordPattern->word, wordInput->word, wordInput->len) == 0) {
          if (i + 1 == cmdInput->count) {
            // last word return match
            cmdPattern->matchIndex = i;
            cmdPattern->matchLen = wordInput->len;
            return i;
          } else {
            return -1;
          }
A
Alex Duan 已提交
1081 1082 1083 1084 1085 1086
        } else {
          return -1;
        }
      }
    } else {
      // WT_VAR auto match any one word
1087 1088 1089 1090
      if (wordInput->next == NULL) {  // input words last one
        if (matchVarWord(wordPattern, wordInput)) {
          cmdPattern->matchIndex = i;
          cmdPattern->matchLen = wordInput->len;
A
Alex Duan 已提交
1091 1092 1093 1094 1095 1096 1097 1098
          varMode = true;
          return i;
        }
        return -1;
      }
    }

    // move next
1099 1100 1101
    wordPattern = wordPattern->next;
    wordInput = wordInput->next;
    if (wordPattern == NULL || wordInput == NULL) {
A
Alex Duan 已提交
1102 1103 1104 1105 1106 1107 1108 1109
      return -1;
    }
  }

  return -1;
}

// match command
1110
SWords* matchCommand(SWords* input, bool continueSearch) {
A
Alex Duan 已提交
1111
  int32_t count = SHELL_COMMAND_COUNT();
1112 1113
  for (int32_t i = 0; i < count; i++) {
    SWords* shellCommand = shellCommands + i;
A
Alex Duan 已提交
1114
    if (continueSearch && lastMatchIndex != -1 && i <= lastMatchIndex) {
sangshuduo's avatar
sangshuduo 已提交
1115
      // new match must greater than lastMatchIndex
A
Alex Duan 已提交
1116 1117 1118 1119 1120 1121 1122 1123
      if (varMode && i == lastMatchIndex) {
        // do nothing, var match on lastMatchIndex
      } else {
        continue;
      }
    }

    // command is large
1124
    if (input->count > shellCommand->count) {
A
Alex Duan 已提交
1125 1126 1127 1128 1129 1130
      continue;
    }

    // compare
    int32_t index = compareCommand(shellCommand, input);
    if (index != -1) {
1131
      if (firstMatchIndex == -1) firstMatchIndex = i;
A
Alex Duan 已提交
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145
      curMatchIndex = i;
      return &shellCommands[i];
    }
  }

  // not match
  return NULL;
}

//
//  -------------------  print screen --------------------------
//

// delete char count
1146
void deleteCount(SShellCmd* cmd, int count) {
A
Alex Duan 已提交
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
  int size = 0;
  int width = 0;
  int prompt_size = 6;
  shellClearScreen(cmd->endOffset + prompt_size, cmd->screenOffset + prompt_size);

  // loop delete
  while (--count >= 0 && cmd->cursorOffset > 0) {
    shellGetPrevCharSize(cmd->command, cmd->cursorOffset, &size, &width);
    memmove(cmd->command + cmd->cursorOffset - size, cmd->command + cmd->cursorOffset,
            cmd->commandSize - cmd->cursorOffset);
    cmd->commandSize -= size;
    cmd->cursorOffset -= size;
    cmd->screenOffset -= width;
    cmd->endOffset -= width;
  }
}

// show screen
1165
void printScreen(TAOS* con, SShellCmd* cmd, SWords* match) {
A
Alex Duan 已提交
1166 1167 1168
  // modify SShellCmd
  if (firstMatchIndex == -1 || curMatchIndex == -1) {
    // no match
1169
    return;
A
Alex Duan 已提交
1170 1171
  }

1172 1173 1174
  // first tab press
  const char* str = NULL;
  int         strLen = 0;
A
Alex Duan 已提交
1175 1176 1177

  if (firstMatchIndex == curMatchIndex && lastWordBytes == -1) {
    // first press tab
1178
    SWord* word = MATCH_WORD(match);
A
Alex Duan 已提交
1179 1180 1181 1182 1183
    str = word->word + match->matchLen;
    strLen = word->len - match->matchLen;
    lastMatchIndex = firstMatchIndex;
    lastWordBytes = word->len;
  } else {
1184
    if (lastWordBytes == -1) return;
A
Alex Duan 已提交
1185 1186
    deleteCount(cmd, lastWordBytes);

1187
    SWord* word = MATCH_WORD(match);
A
Alex Duan 已提交
1188 1189 1190 1191 1192 1193
    str = word->word;
    strLen = word->len;
    // set current to last
    lastMatchIndex = curMatchIndex;
    lastWordBytes = word->len;
  }
1194

A
Alex Duan 已提交
1195
  // insert new
A
Alex Duan 已提交
1196
  shellInsertStr(cmd, (char*)str, strLen);
A
Alex Duan 已提交
1197 1198 1199
}

// main key press tab , matched return true else false
1200
bool firstMatchCommand(TAOS* con, SShellCmd* cmd) {
X
Xiaoyu Wang 已提交
1201
  if (con == NULL || cmd == NULL) return false;
A
Alex Duan 已提交
1202
  // parse command
1203
  SWords* input = (SWords*)taosMemoryMalloc(sizeof(SWords));
A
Alex Duan 已提交
1204 1205 1206 1207 1208 1209
  memset(input, 0, sizeof(SWords));
  input->source = cmd->command;
  input->source_len = cmd->commandSize;
  parseCommand(input, false);

  // if have many , default match first, if press tab again , switch to next
1210
  curMatchIndex = -1;
A
Alex Duan 已提交
1211
  lastMatchIndex = -1;
1212
  SWords* match = matchCommand(input, true);
A
Alex Duan 已提交
1213 1214 1215 1216 1217 1218 1219 1220 1221
  if (match == NULL) {
    // not match , nothing to do
    freeCommand(input);
    taosMemoryFree(input);
    return false;
  }

  // print to screen
  printScreen(con, cmd, match);
wafwerar's avatar
wafwerar 已提交
1222 1223 1224 1225
#ifdef WINDOWS
  printf("\r");
  shellShowOnScreen(cmd);
#endif
A
Alex Duan 已提交
1226 1227 1228 1229 1230 1231
  freeCommand(input);
  taosMemoryFree(input);
  return true;
}

// create input source
1232
void createInputFromFirst(SWords* input, SWords* firstMatch) {
A
Alex Duan 已提交
1233 1234 1235 1236
  //
  // if next pressTabKey , input context come from firstMatch, set matched length with source_len
  //
  input->source = (char*)taosMemoryMalloc(1024);
1237
  memset((void*)input->source, 0, 1024);
A
Alex Duan 已提交
1238

1239
  SWord* word = firstMatch->head;
A
Alex Duan 已提交
1240

1241
  // source_len = full match word->len + half match with firstMatch->matchLen
A
Alex Duan 已提交
1242 1243 1244
  for (int i = 0; i < firstMatch->matchIndex && word; i++) {
    // combine source from each word
    strncpy(input->source + input->source_len, word->word, word->len);
sangshuduo's avatar
sangshuduo 已提交
1245
    strcat(input->source, " ");          // append blank space
1246
    input->source_len += word->len + 1;  // 1 is blank length
A
Alex Duan 已提交
1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257
    // move next
    word = word->next;
  }
  // appand half matched word for last
  if (word) {
    strncpy(input->source + input->source_len, word->word, firstMatch->matchLen);
    input->source_len += firstMatch->matchLen;
  }
}

// user press Tabkey again is named next , matched return true else false
1258
bool nextMatchCommand(TAOS* con, SShellCmd* cmd, SWords* firstMatch) {
A
Alex Duan 已提交
1259 1260 1261
  if (firstMatch == NULL || firstMatch->head == NULL) {
    return false;
  }
1262
  SWords* input = (SWords*)taosMemoryMalloc(sizeof(SWords));
A
Alex Duan 已提交
1263 1264 1265 1266 1267 1268 1269 1270 1271
  memset(input, 0, sizeof(SWords));

  // create input from firstMatch
  createInputFromFirst(input, firstMatch);

  // parse input
  parseCommand(input, false);

  // if have many , default match first, if press tab again , switch to next
1272
  SWords* match = matchCommand(input, true);
A
Alex Duan 已提交
1273 1274 1275
  if (match == NULL) {
    // if not match , reset all index
    firstMatchIndex = -1;
1276
    curMatchIndex = -1;
A
Alex Duan 已提交
1277 1278 1279
    match = matchCommand(input, false);
    if (match == NULL) {
      freeCommand(input);
1280
      if (input->source) taosMemoryFree(input->source);
A
Alex Duan 已提交
1281 1282 1283 1284 1285 1286 1287
      taosMemoryFree(input);
      return false;
    }
  }

  // print to screen
  printScreen(con, cmd, match);
wafwerar's avatar
wafwerar 已提交
1288 1289 1290 1291
#ifdef WINDOWS
  printf("\r");
  shellShowOnScreen(cmd);
#endif
A
Alex Duan 已提交
1292 1293

  // free
A
Alex Duan 已提交
1294
  freeCommand(input);
A
Alex Duan 已提交
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
  if (input->source) {
    taosMemoryFree(input->source);
    input->source = NULL;
  }
  taosMemoryFree(input);

  return true;
}

// fill with type
1305
bool fillWithType(TAOS* con, SShellCmd* cmd, char* pre, int type) {
A
Alex Duan 已提交
1306 1307
  // get type
  STire* tire = tires[type];
1308
  char*  str = matchNextPrefix(tire, pre);
A
Alex Duan 已提交
1309 1310 1311 1312 1313
  if (str == NULL) {
    return false;
  }

  // need insert part string
1314
  char* part = str + strlen(pre);
A
Alex Duan 已提交
1315 1316 1317

  // show
  int count = strlen(part);
A
Alex Duan 已提交
1318
  shellInsertStr(cmd, part, count);
1319
  cntDel = count;  // next press tab delete current append count
A
Alex Duan 已提交
1320 1321 1322 1323 1324 1325

  taosMemoryFree(str);
  return true;
}

// fill with type
1326
bool fillTableName(TAOS* con, SShellCmd* cmd, char* pre) {
A
Alex Duan 已提交
1327
  // search stable and table
1328
  char* str = tireSearchWord(WT_VAR_STABLE, pre);
A
Alex Duan 已提交
1329 1330
  if (str == NULL) {
    str = tireSearchWord(WT_VAR_TABLE, pre);
1331
    if (str == NULL) return false;
A
Alex Duan 已提交
1332 1333 1334
  }

  // need insert part string
1335
  char* part = str + strlen(pre);
A
Alex Duan 已提交
1336 1337

  // delete autofill count last append
1338
  if (cntDel > 0) {
A
Alex Duan 已提交
1339 1340 1341 1342 1343 1344
    deleteCount(cmd, cntDel);
    cntDel = 0;
  }

  // show
  int count = strlen(part);
A
Alex Duan 已提交
1345
  shellInsertStr(cmd, part, count);
1346 1347
  cntDel = count;  // next press tab delete current append count

A
Alex Duan 已提交
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
  taosMemoryFree(str);
  return true;
}

//
// find last word from sql select clause
//  example :
//  1 select cou -> press tab  select count(
//  2 select count(*),su -> select count(*), sum(
//  3 select count(*), su -> select count(*), sum(
//
1359 1360 1361 1362
char* lastWord(char* p) {
  // get near from end revert find ' ' and ','
  char* p1 = strrchr(p, ' ');
  char* p2 = strrchr(p, ',');
A
Alex Duan 已提交
1363 1364

  if (p1 && p2) {
1365
    return p1 > p2 ? p1 + 1 : p2 + 1;
A
Alex Duan 已提交
1366 1367
  } else if (p1) {
    return p1 + 1;
1368
  } else if (p2) {
A
Alex Duan 已提交
1369 1370 1371
    return p2 + 1;
  } else {
    return p;
1372
  }
A
Alex Duan 已提交
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
}

bool fieldsInputEnd(char* sql) {
  // not in '()'
  char* p1 = strrchr(sql, '(');
  char* p2 = strrchr(sql, ')');
  if (p1 && p2 == NULL) {
    // like select count( '  '
    return false;
  } else if (p1 && p2 && p1 > p2) {
    // like select sum(age), count( ' '
    return false;
  }

  // not in ','
1388 1389 1390
  char* p3 = strrchr(sql, ',');
  char* p = p3;
  // like select ts, age,'    '
A
Alex Duan 已提交
1391 1392
  if (p) {
    ++p;
1393 1394 1395 1396
    bool  allBlank = true;  // after last ','  all char is blank
    int   cnt = 0;          // blank count , like '    ' as one blank
    char* plast = NULL;     // last blank position
    while (*p) {
A
Alex Duan 已提交
1397 1398
      if (*p == ' ') {
        plast = p;
1399
        cnt++;
A
Alex Duan 已提交
1400 1401 1402 1403 1404 1405 1406
      } else {
        allBlank = false;
      }
      ++p;
    }

    // any one word is not blank
1407
    if (allBlank) {
A
Alex Duan 已提交
1408 1409 1410 1411 1412 1413 1414 1415 1416
      return false;
    }

    // like 'select count(*),sum(age) fr' need return true
    if (plast && plast > p3 && p2 > p1 && plast > p2 && p1 > p3) {
      return true;
    }

    // if last char not ' ', then not end field, like 'select count(*), su' can fill sum(
1417
    if (sql[strlen(sql) - 1] != ' ' && cnt <= 1) {
A
Alex Duan 已提交
1418 1419 1420 1421
      return false;
    }
  }

1422 1423
  char* p4 = strrchr(sql, ' ');
  if (p4 == NULL) {
A
Alex Duan 已提交
1424 1425 1426 1427 1428 1429 1430 1431
    // only one word
    return false;
  }

  return true;
}

// need insert from
1432 1433 1434
bool needInsertFrom(char* sql, int len) {
  // last is blank
  if (sql[len - 1] != ' ') {
A
Alex Duan 已提交
1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447
    // insert from keyword
    return false;
  }

  //  select fields input is end
  if (!fieldsInputEnd(sql)) {
    return false;
  }

  // can insert from keyword
  return true;
}

A
Alex Duan 已提交
1448
// p is string following select keyword
1449
bool appendAfterSelect(TAOS* con, SShellCmd* cmd, char* sql, int32_t len) {
A
Alex Duan 已提交
1450
  char* p = strndup(sql, len);
A
Alex Duan 已提交
1451 1452

  // union all
1453
  char* p1;
A
Alex Duan 已提交
1454 1455
  do {
    p1 = strstr(p, UNION_ALL);
1456
    if (p1) {
A
Alex Duan 已提交
1457 1458 1459 1460
      p = p1 + strlen(UNION_ALL);
    }
  } while (p1);

1461 1462 1463 1464
  char* from = strstr(p, " from ");
  // last word , maybe empty string or some letters of a string
  char* last = lastWord(p);
  bool  ret = false;
A
Alex Duan 已提交
1465 1466
  if (from == NULL) {
    bool fieldEnd = fieldsInputEnd(p);
A
Alex Duan 已提交
1467
    // check fields input end then insert from keyword
1468
    if (fieldEnd && p[len - 1] == ' ') {
A
Alex Duan 已提交
1469
      shellInsertStr(cmd, "from", 4);
A
Alex Duan 已提交
1470
      taosMemoryFree(p);
A
Alex Duan 已提交
1471 1472 1473
      return true;
    }

sangshuduo's avatar
sangshuduo 已提交
1474
    // fill function
1475
    if (fieldEnd) {
A
Alex Duan 已提交
1476 1477 1478 1479 1480
      // fields is end , need match keyword
      ret = fillWithType(con, cmd, last, WT_VAR_KEYWORD);
    } else {
      ret = fillWithType(con, cmd, last, WT_VAR_FUNC);
    }
1481

A
Alex Duan 已提交
1482
    taosMemoryFree(p);
A
Alex Duan 已提交
1483 1484 1485 1486
    return ret;
  }

  // have from
1487
  char* blank = strstr(from + 6, " ");
A
Alex Duan 已提交
1488 1489 1490 1491 1492 1493 1494
  if (blank == NULL) {
    // no table name, need fill
    ret = fillTableName(con, cmd, last);
  } else {
    ret = fillWithType(con, cmd, last, WT_VAR_KEYWORD);
  }

A
Alex Duan 已提交
1495
  taosMemoryFree(p);
A
Alex Duan 已提交
1496 1497 1498
  return ret;
}

A
Alex Duan 已提交
1499 1500
int32_t searchAfterSelect(char* p, int32_t len) {
  // select * from st;
1501
  if (strncasecmp(p, "select ", 7) == 0) {
A
Alex Duan 已提交
1502
    // check nest query
1503 1504 1505 1506
    char* p1 = p + 7;
    while (1) {
      char* p2 = strstr(p1, "select ");
      if (p2 == NULL) break;
A
Alex Duan 已提交
1507 1508 1509 1510 1511 1512 1513
      p1 = p2 + 7;
    }

    return p1 - p;
  }

  // explain as select * from st;
1514
  if (strncasecmp(p, "explain select ", 15) == 0) {
A
Alex Duan 已提交
1515 1516 1517 1518
    return 15;
  }

  char* as_pos_end = strstr(p, " as select ");
1519
  if (as_pos_end == NULL) return -1;
A
Alex Duan 已提交
1520 1521 1522
  as_pos_end += 11;

  // create stream <stream_name> as select
1523 1524 1525
  if (strncasecmp(p, "create stream ", 14) == 0) {
    return as_pos_end - p;
    ;
A
Alex Duan 已提交
1526 1527 1528
  }

  // create topic <topic_name> as select
1529
  if (strncasecmp(p, "create topic ", 13) == 0) {
A
Alex Duan 已提交
1530 1531 1532 1533 1534 1535
    return as_pos_end - p;
  }

  return -1;
}

1536
bool matchSelectQuery(TAOS* con, SShellCmd* cmd) {
A
Alex Duan 已提交
1537 1538 1539 1540 1541 1542 1543
  // if continue press Tab , delete bytes by previous autofill
  if (cntDel > 0) {
    deleteCount(cmd, cntDel);
    cntDel = 0;
  }

  // match select ...
1544 1545
  int   len = cmd->commandSize;
  char* p = cmd->command;
A
Alex Duan 已提交
1546 1547 1548 1549 1550 1551 1552 1553

  // remove prefix blank
  while (p[0] == ' ' && len > 0) {
    p++;
    len--;
  }

  // special range
1554
  if (len < 7 || len > 512) {
A
Alex Duan 已提交
1555 1556 1557 1558
    return false;
  }

  // search
1559
  char*   sql_cp = strndup(p, len);
A
Alex Duan 已提交
1560 1561
  int32_t n = searchAfterSelect(sql_cp, len);
  taosMemoryFree(sql_cp);
1562 1563
  if (n == -1 || n > len) return false;
  p += n;
A
Alex Duan 已提交
1564 1565 1566 1567 1568 1569
  len -= n;

  // append
  return appendAfterSelect(con, cmd, p, len);
}

A
Alex Duan 已提交
1570
// if is input create fields or tags area, return true
1571
bool isCreateFieldsArea(char* p) {
X
Xiaoyu Wang 已提交
1572
  // put to while, support like create table st(ts timestamp, bin1 binary(16), bin2 + blank + TAB
1573
  char* p1 = taosStrdup(p);
X
Xiaoyu Wang 已提交
1574
  bool  ret = false;
1575 1576 1577 1578 1579 1580 1581
  while (1) {
    char* left = strrchr(p1, '(');
    if (left == NULL) {
      // like 'create table st'
      ret = false;
      break;
    }
A
Alex Duan 已提交
1582

1583 1584 1585 1586 1587 1588
    char* right = strrchr(p1, ')');
    if (right == NULL) {
      // like 'create table st( '
      ret = true;
      break;
    }
A
Alex Duan 已提交
1589

1590 1591 1592 1593 1594
    if (left > right) {
      // like 'create table st( ts timestamp, age int) tags(area '
      ret = true;
      break;
    }
X
Xiaoyu Wang 已提交
1595

1596 1597
    // set string end by small for next strrchr search
    *left = 0;
A
Alex Duan 已提交
1598
  }
1599
  taosMemoryFree(p1);
A
Alex Duan 已提交
1600

1601
  return ret;
A
Alex Duan 已提交
1602 1603
}

1604
bool matchCreateTable(TAOS* con, SShellCmd* cmd) {
A
Alex Duan 已提交
1605 1606 1607 1608 1609 1610 1611
  // if continue press Tab , delete bytes by previous autofill
  if (cntDel > 0) {
    deleteCount(cmd, cntDel);
    cntDel = 0;
  }

  // match select ...
1612 1613
  int   len = cmd->commandSize;
  char* p = cmd->command;
A
Alex Duan 已提交
1614 1615 1616 1617 1618 1619 1620 1621

  // remove prefix blank
  while (p[0] == ' ' && len > 0) {
    p++;
    len--;
  }

  // special range
1622
  if (len < 7 || len > 1024) {
A
Alex Duan 已提交
1623 1624 1625
    return false;
  }

1626 1627
  // select and from
  if (strncasecmp(p, "create table ", 13) != 0) {
A
Alex Duan 已提交
1628 1629 1630 1631 1632 1633 1634
    // not select query clause
    return false;
  }
  p += 13;
  len -= 13;

  char* ps = strndup(p, len);
1635 1636
  bool  ret = false;
  char* last = lastWord(ps);
A
Alex Duan 已提交
1637 1638 1639 1640 1641 1642 1643 1644 1645

  // check in create fields or tags input area
  if (isCreateFieldsArea(ps)) {
    ret = fillWithType(con, cmd, last, WT_VAR_DATATYPE);
  }

  // tags
  if (!ret) {
    // find only one ')' , can insert tags
1646
    char* p1 = strchr(ps, ')');
A
Alex Duan 已提交
1647
    if (p1) {
1648
      if (strchr(p1 + 1, ')') == NULL && strstr(p1 + 1, "tags") == NULL) {
A
Alex Duan 已提交
1649 1650 1651 1652 1653 1654
        // can insert tags keyword
        ret = fillWithType(con, cmd, last, WT_VAR_KEYTAGS);
      }
    }
  }

A
Alex Duan 已提交
1655 1656
  // tb options
  if (!ret) {
sangshuduo's avatar
sangshuduo 已提交
1657
    // find like create table st (...) tags(..)  <here is fill tb option area>
1658
    char* p1 = strchr(ps, ')');  // first ')' end
A
Alex Duan 已提交
1659
    if (p1) {
1660
      if (strchr(p1 + 1, ')')) {  // second ')' end
A
Alex Duan 已提交
1661 1662 1663 1664 1665 1666
        // here is tb options area, can insert option
        ret = fillWithType(con, cmd, last, WT_VAR_TBOPTION);
      }
    }
  }

A
Alex Duan 已提交
1667 1668 1669 1670
  taosMemoryFree(ps);
  return ret;
}

1671 1672
bool matchOther(TAOS* con, SShellCmd* cmd) {
  int   len = cmd->commandSize;
A
Alex Duan 已提交
1673 1674
  char* p = cmd->command;

A
Alex Duan 已提交
1675
  // '\\'
A
Alex Duan 已提交
1676 1677 1678
  if (p[len - 1] == '\\') {
    // append '\G'
    char a[] = "G;";
A
Alex Duan 已提交
1679
    shellInsertStr(cmd, a, 2);
A
Alex Duan 已提交
1680 1681
    return true;
  }
A
Alex Duan 已提交
1682 1683

  // too small
1684
  if (len < 8) return false;
A
Alex Duan 已提交
1685 1686 1687 1688 1689 1690 1691 1692

  // like 'from ( '
  char* sql = strndup(p, len);
  char* last = lastWord(sql);

  if (strcmp(last, "from(") == 0) {
    fillWithType(con, cmd, "", WT_VAR_KEYSELECT);
    taosMemoryFree(sql);
1693
    return true;
A
Alex Duan 已提交
1694 1695
  }
  if (strncmp(last, "(", 1) == 0) {
1696
    last += 1;
A
Alex Duan 已提交
1697 1698 1699 1700 1701 1702
  }

  char* from = strstr(sql, " from");
  // find last ' from'
  while (from) {
    char* p1 = strstr(from + 5, " from");
1703
    if (p1 == NULL) break;
A
Alex Duan 已提交
1704 1705 1706 1707 1708
    from = p1;
  }

  if (from) {
    // find next is '('
1709 1710 1711
    char* p2 = from + 5;
    bool  found = false;   // found 'from ... ( ...'  ... is any count of blank
    bool  found1 = false;  // found '('
A
Alex Duan 已提交
1712
    while (1) {
1713
      if (p2 == last || *p2 == '\0') {
A
Alex Duan 已提交
1714 1715 1716 1717 1718
        // last word or string end
        if (found1) {
          found = true;
        }
        break;
1719
      } else if (*p2 == '(') {
A
Alex Duan 已提交
1720
        found1 = true;
1721
      } else if (*p2 == ' ') {
A
Alex Duan 已提交
1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738
        // do nothing
      } else {
        // have any other char
        break;
      }

      // move next
      p2++;
    }

    if (found) {
      fillWithType(con, cmd, last, WT_VAR_KEYSELECT);
      taosMemoryFree(sql);
      return true;
    }
  }

1739
  // INSERT
A
Alex Duan 已提交
1740 1741

  taosMemoryFree(sql);
1742

A
Alex Duan 已提交
1743 1744 1745
  return false;
}

1746 1747 1748
// last match if nothing matched
bool matchEnd(TAOS* con, SShellCmd* cmd) {
  // str dump
X
Xiaoyu Wang 已提交
1749
  bool  ret = false;
1750 1751
  char* ps = strndup(cmd->command, cmd->commandSize);
  char* last = lastWord(ps);
X
Xiaoyu Wang 已提交
1752 1753
  char* elast = strrchr(last, '.');  // find end last
  if (elast) {
A
Alex Duan 已提交
1754
    last = elast + 1;
A
Alex Duan 已提交
1755 1756
  }

A
Alex Duan 已提交
1757
  // less one char can match
X
Xiaoyu Wang 已提交
1758
  if (strlen(last) == 0) {
1759
    goto _return;
1760 1761 1762
  }
  if (strcmp(last, " ") == 0) {
    goto _return;
1763 1764 1765
  }

  // match database
X
Xiaoyu Wang 已提交
1766
  if (elast == NULL) {
A
Alex Duan 已提交
1767 1768 1769 1770 1771
    // dot need not completed with dbname
    if (fillWithType(con, cmd, last, WT_VAR_DBNAME)) {
      ret = true;
      goto _return;
    }
1772 1773
  }

1774
  if (fillWithType(con, cmd, last, WT_VAR_SYSTABLE)) {
1775
    ret = true;
1776 1777 1778 1779 1780 1781 1782 1783
    goto _return;
  }

_return:
  taosMemoryFree(ps);
  return ret;
}

A
Alex Duan 已提交
1784
// main key press tab
1785
void pressTabKey(SShellCmd* cmd) {
1786
  // check empty tab key
1787
  if (cmd->commandSize == 0) {
1788
    // have multi line tab key
X
Xiaoyu Wang 已提交
1789
    if (cmd->bufferSize == 0) {
1790 1791
      showHelp();
    }
A
Alex Duan 已提交
1792
    shellShowOnScreen(cmd);
1793 1794
    return;
  }
A
Alex Duan 已提交
1795 1796 1797 1798 1799 1800 1801

  // save connection to global
  varCmd = cmd;
  bool matched = false;

  // manual match like create table st( ...
  matched = matchCreateTable(varCon, cmd);
1802
  if (matched) return;
A
Alex Duan 已提交
1803

1804
  // shellCommands match
A
Alex Duan 已提交
1805 1806 1807 1808 1809
  if (firstMatchIndex == -1) {
    matched = firstMatchCommand(varCon, cmd);
  } else {
    matched = nextMatchCommand(varCon, cmd, &shellCommands[firstMatchIndex]);
  }
1810
  if (matched) return;
A
Alex Duan 已提交
1811 1812 1813 1814

  // NOT MATCHED ANYONE
  // match other like '\G' ...
  matched = matchOther(varCon, cmd);
1815
  if (matched) return;
A
Alex Duan 已提交
1816 1817 1818

  // manual match like select * from ...
  matched = matchSelectQuery(varCon, cmd);
1819
  if (matched) return;
A
Alex Duan 已提交
1820

1821 1822 1823
  // match end
  matched = matchEnd(varCon, cmd);

1824
  return;
A
Alex Duan 已提交
1825 1826 1827 1828 1829 1830
}

// press othr key
void pressOtherKey(char c) {
  // reset global variant
  firstMatchIndex = -1;
1831 1832 1833
  lastMatchIndex = -1;
  curMatchIndex = -1;
  lastWordBytes = -1;
A
Alex Duan 已提交
1834 1835

  // var names
1836 1837
  cursorVar = -1;
  varMode = false;
A
Alex Duan 已提交
1838
  waitAutoFill = false;
1839
  cntDel = 0;
A
Alex Duan 已提交
1840 1841 1842 1843 1844 1845 1846 1847

  if (lastMatch) {
    freeMatch(lastMatch);
    lastMatch = NULL;
  }
}

// put name into name, return name length
1848 1849
int getWordName(char* p, char* name, int nameLen) {
  // remove prefix blank
A
Alex Duan 已提交
1850 1851 1852 1853 1854 1855
  while (*p == ' ') {
    p++;
  }

  // get databases name;
  int i = 0;
1856 1857
  while (p[i] != 0 && i < nameLen - 1) {
    name[i] = p[i];
A
Alex Duan 已提交
1858
    i++;
1859
    if (p[i] == ' ' || p[i] == ';' || p[i] == '(') {
A
Alex Duan 已提交
1860 1861 1862 1863 1864 1865 1866 1867 1868 1869
      // name end
      break;
    }
  }
  name[i] = 0;

  return i;
}

// deal use db, if have  'use' return true
1870 1871 1872
bool dealUseDB(char* sql) {
  // check use keyword
  if (strncasecmp(sql, "use ", 4) != 0) {
A
Alex Duan 已提交
1873 1874
    return false;
  }
1875 1876 1877

  char  db[256];
  char* p = sql + 4;
A
Alex Duan 已提交
1878
  if (getWordName(p, db, sizeof(db)) == 0) {
1879
    // no name , return
A
Alex Duan 已提交
1880 1881 1882 1883 1884
    return true;
  }

  //  dbName is previous use open db name
  if (strcasecmp(db, dbName) == 0) {
1885
    // same , no need switch
A
Alex Duan 已提交
1886 1887 1888 1889 1890 1891 1892 1893
    return true;
  }

  // switch new db
  taosThreadMutexLock(&tiresMutex);
  // STABLE set null
  STire* tire = tires[WT_VAR_STABLE];
  tires[WT_VAR_STABLE] = NULL;
1894
  if (tire) {
A
Alex Duan 已提交
1895 1896 1897 1898 1899
    freeTire(tire);
  }
  // TABLE set null
  tire = tires[WT_VAR_TABLE];
  tires[WT_VAR_TABLE] = NULL;
1900
  if (tire) {
A
Alex Duan 已提交
1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
    freeTire(tire);
  }
  // save
  strcpy(dbName, db);
  taosThreadMutexUnlock(&tiresMutex);

  return true;
}

// deal create, if have 'create' return true
1911 1912 1913
bool dealCreateCommand(char* sql) {
  // check keyword
  if (strncasecmp(sql, "create ", 7) != 0) {
A
Alex Duan 已提交
1914 1915
    return false;
  }
1916 1917 1918

  char  name[1024];
  char* p = sql + 7;
A
Alex Duan 已提交
1919
  if (getWordName(p, name, sizeof(name)) == 0) {
1920
    // no name , return
A
Alex Duan 已提交
1921 1922 1923 1924 1925 1926 1927 1928
    return true;
  }

  int type = -1;
  //  dbName is previous use open db name
  if (strcasecmp(name, "database") == 0) {
    type = WT_VAR_DBNAME;
  } else if (strcasecmp(name, "table") == 0) {
1929
    if (strstr(sql, " tags") != NULL && strstr(sql, " using ") == NULL)
A
Alex Duan 已提交
1930 1931 1932 1933 1934
      type = WT_VAR_STABLE;
    else
      type = WT_VAR_TABLE;
  } else if (strcasecmp(name, "user") == 0) {
    type = WT_VAR_USERNAME;
A
Alex Duan 已提交
1935 1936 1937 1938
  } else if (strcasecmp(name, "topic") == 0) {
    type = WT_VAR_TOPIC;
  } else if (strcasecmp(name, "stream") == 0) {
    type = WT_VAR_STREAM;
A
Alex Duan 已提交
1939
  } else {
1940
    // no match , return
A
Alex Duan 已提交
1941 1942 1943 1944 1945 1946 1947 1948
    return true;
  }

  // move next
  p += strlen(name);

  // get next word , that is table name
  if (getWordName(p, name, sizeof(name)) == 0) {
1949
    // no name , return
A
Alex Duan 已提交
1950 1951 1952 1953 1954 1955 1956
    return true;
  }

  // switch new db
  taosThreadMutexLock(&tiresMutex);
  // STABLE set null
  STire* tire = tires[type];
1957
  if (tire) {
A
Alex Duan 已提交
1958 1959 1960 1961 1962 1963 1964 1965
    insertWord(tire, name);
  }
  taosThreadMutexUnlock(&tiresMutex);

  return true;
}

// deal create, if have 'drop' return true
1966 1967 1968
bool dealDropCommand(char* sql) {
  // check keyword
  if (strncasecmp(sql, "drop ", 5) != 0) {
A
Alex Duan 已提交
1969 1970
    return false;
  }
1971 1972 1973

  char  name[1024];
  char* p = sql + 5;
A
Alex Duan 已提交
1974
  if (getWordName(p, name, sizeof(name)) == 0) {
1975
    // no name , return
A
Alex Duan 已提交
1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988
    return true;
  }

  int type = -1;
  //  dbName is previous use open db name
  if (strcasecmp(name, "database") == 0) {
    type = WT_VAR_DBNAME;
  } else if (strcasecmp(name, "table") == 0) {
    type = WT_VAR_ALLTABLE;
  } else if (strcasecmp(name, "dnode") == 0) {
    type = WT_VAR_DNODEID;
  } else if (strcasecmp(name, "user") == 0) {
    type = WT_VAR_USERNAME;
A
Alex Duan 已提交
1989 1990 1991 1992
  } else if (strcasecmp(name, "topic") == 0) {
    type = WT_VAR_TOPIC;
  } else if (strcasecmp(name, "stream") == 0) {
    type = WT_VAR_STREAM;
A
Alex Duan 已提交
1993
  } else {
1994
    // no match , return
A
Alex Duan 已提交
1995 1996 1997 1998 1999 2000 2001 2002
    return true;
  }

  // move next
  p += strlen(name);

  // get next word , that is table name
  if (getWordName(p, name, sizeof(name)) == 0) {
2003
    // no name , return
A
Alex Duan 已提交
2004 2005 2006 2007 2008 2009
    return true;
  }

  // switch new db
  taosThreadMutexLock(&tiresMutex);
  // STABLE set null
2010
  if (type == WT_VAR_ALLTABLE) {
A
Alex Duan 已提交
2011 2012 2013
    bool del = false;
    // del in stable
    STire* tire = tires[WT_VAR_STABLE];
2014
    if (tire) del = deleteWord(tire, name);
A
Alex Duan 已提交
2015
    // del in table
2016
    if (!del) {
A
Alex Duan 已提交
2017
      tire = tires[WT_VAR_TABLE];
2018
      if (tire) del = deleteWord(tire, name);
A
Alex Duan 已提交
2019 2020 2021 2022
    }
  } else {
    // OTHER TYPE
    STire* tire = tires[type];
2023
    if (tire) deleteWord(tire, name);
A
Alex Duan 已提交
2024 2025 2026 2027 2028 2029 2030 2031
  }
  taosThreadMutexUnlock(&tiresMutex);

  return true;
}

// callback autotab module after shell sql execute
void callbackAutoTab(char* sqlstr, TAOS* pSql, bool usedb) {
2032
  char* sql = sqlstr;
A
Alex Duan 已提交
2033 2034 2035 2036 2037
  // remove prefix blank
  while (*sql == ' ') {
    sql++;
  }

2038
  if (dealUseDB(sql)) {
A
Alex Duan 已提交
2039
    // change to new db
A
Alex Duan 已提交
2040
    if (!varRunOnce) updateTireValue(WT_VAR_STABLE, false);
2041
    return;
A
Alex Duan 已提交
2042 2043 2044
  }

  // create command add name to autotab
2045 2046
  if (dealCreateCommand(sql)) {
    return;
A
Alex Duan 已提交
2047 2048 2049
  }

  // drop command remove name from autotab
2050 2051
  if (dealDropCommand(sql)) {
    return;
A
Alex Duan 已提交
2052 2053
  }

2054
  return;
A
Alex Duan 已提交
2055
}