taosdemo.c 235.9 KB
Newer Older
S
TD-1057  
Shengliang Guan 已提交
1
/*
H
hzcheng 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

16 17 18 19 20

/*
   when in some thread query return error, thread don't exit, but return, otherwise coredump in other thread.
*/

21
#include <stdint.h>
S
slguan 已提交
22
#define _GNU_SOURCE
23 24
#define CURL_STATICLIB

S
TD-1057  
Shengliang Guan 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
#ifdef LINUX
  #include <argp.h>
  #include <inttypes.h>
  #ifndef _ALPINE
    #include <error.h>
  #endif
  #include <pthread.h>
  #include <semaphore.h>
  #include <stdbool.h>
  #include <stdio.h>
  #include <string.h>
  #include <sys/time.h>
  #include <time.h>
  #include <unistd.h>
  #include <wordexp.h>
  #include <regex.h>
41
#else
S
TD-1057  
Shengliang Guan 已提交
42 43
  #include <regex.h>
  #include <stdio.h>
44
#endif
H
hzcheng 已提交
45

46
#include <assert.h>
47
#include <stdlib.h>
48 49
#include "cJSON.h"

50
#include "os.h"
H
hzcheng 已提交
51
#include "taos.h"
52
#include "taoserror.h"
H
Hui Li 已提交
53
#include "tutil.h"
S
slguan 已提交
54

55 56 57
#define REQ_EXTRA_BUF_LEN   1024
#define RESP_BUF_LEN        4096

S
slguan 已提交
58 59
extern char configDir[];

60 61 62 63
#define INSERT_JSON_NAME      "insert.json"
#define QUERY_JSON_NAME       "query.json"
#define SUBSCRIBE_JSON_NAME   "subscribe.json"

64 65 66 67 68 69
enum TEST_MODE {
    INSERT_TEST,            // 0
    QUERY_TEST,             // 1
    SUBSCRIBE_TEST,         // 2
    INVAID_TEST
};
70

71 72 73 74 75 76
enum QUERY_MODE {
  SYNC_QUERY_MODE,          // 0
  ASYNC_QUERY_MODE,         // 1
  INVALID_MODE
};

77 78
#define MAX_SQL_SIZE       65536
#define BUFFER_SIZE        (65536*2)
79
#define COND_BUF_LEN        BUFFER_SIZE - 30
80 81
#define MAX_USERNAME_SIZE  64
#define MAX_PASSWORD_SIZE  64
82
#define MAX_DB_NAME_SIZE   64
83
#define MAX_HOSTNAME_SIZE  64
84
#define MAX_TB_NAME_SIZE   64
85
#define MAX_DATA_SIZE      (16*1024)+20     // max record len: 16*1024, timestamp string and ,('') need extra space
86 87 88 89 90 91 92 93 94 95
#define MAX_NUM_DATATYPE   10
#define OPT_ABORT          1 /* –abort */
#define STRING_LEN         60000
#define MAX_PREPARED_RAND  1000000
#define MAX_FILE_NAME_LEN  256

#define   MAX_SAMPLES_ONCE_FROM_FILE   10000
#define   MAX_NUM_DATATYPE 10

#define   MAX_DB_COUNT           8
96
#define   MAX_SUPER_TABLE_COUNT  200
97 98 99
#define   MAX_COLUMN_COUNT       1024
#define   MAX_TAG_COUNT          128

100
#define   MAX_QUERY_SQL_COUNT    100
101
#define   MAX_QUERY_SQL_LENGTH   1024
102 103

#define   MAX_DATABASE_COUNT     256
104
#define INPUT_BUF_LEN   256
105

106
#define DEFAULT_TIMESTAMP_STEP  1
107

108

109 110 111 112 113
typedef enum CREATE_SUB_TALBE_MOD_EN {
  PRE_CREATE_SUBTBL,
  AUTO_CREATE_SUBTBL,
  NO_CREATE_SUBTBL
} CREATE_SUB_TALBE_MOD_EN;
114

115 116
typedef enum TALBE_EXISTS_EN {
  TBL_NO_EXISTS,
117
  TBL_ALREADY_EXISTS,
118 119 120 121
  TBL_EXISTS_BUTT
} TALBE_EXISTS_EN;

enum MODE {
122
  SYNC,
123 124 125
  ASYNC,
  MODE_BUT
};
126

127 128 129 130 131 132
typedef enum enum_INSERT_MODE {
    PROGRESSIVE_INSERT_MODE,
    INTERLACE_INSERT_MODE,
    INVALID_INSERT_MODE
} INSERT_MODE;

133
typedef enum enumQUERY_TYPE {
134
  NO_INSERT_TYPE,
135
  INSERT_TYPE,
136
  QUERY_TYPE_BUT
137
} QUERY_TYPE;
138 139 140 141 142 143 144

enum _show_db_index {
  TSDB_SHOW_DB_NAME_INDEX,
  TSDB_SHOW_DB_CREATED_TIME_INDEX,
  TSDB_SHOW_DB_NTABLES_INDEX,
  TSDB_SHOW_DB_VGROUPS_INDEX,
  TSDB_SHOW_DB_REPLICA_INDEX,
145
  TSDB_SHOW_DB_QUORUM_INDEX,
146 147 148 149 150 151 152 153 154 155
  TSDB_SHOW_DB_DAYS_INDEX,
  TSDB_SHOW_DB_KEEP_INDEX,
  TSDB_SHOW_DB_CACHE_INDEX,
  TSDB_SHOW_DB_BLOCKS_INDEX,
  TSDB_SHOW_DB_MINROWS_INDEX,
  TSDB_SHOW_DB_MAXROWS_INDEX,
  TSDB_SHOW_DB_WALLEVEL_INDEX,
  TSDB_SHOW_DB_FSYNC_INDEX,
  TSDB_SHOW_DB_COMP_INDEX,
  TSDB_SHOW_DB_CACHELAST_INDEX,
156
  TSDB_SHOW_DB_PRECISION_INDEX,
157 158 159 160 161 162 163 164 165 166
  TSDB_SHOW_DB_UPDATE_INDEX,
  TSDB_SHOW_DB_STATUS_INDEX,
  TSDB_MAX_SHOW_DB
};

// -----------------------------------------SHOW TABLES CONFIGURE -------------------------------------
enum _show_stables_index {
  TSDB_SHOW_STABLES_NAME_INDEX,
  TSDB_SHOW_STABLES_CREATED_TIME_INDEX,
  TSDB_SHOW_STABLES_COLUMNS_INDEX,
167 168
  TSDB_SHOW_STABLES_METRIC_INDEX,
  TSDB_SHOW_STABLES_UID_INDEX,
169
  TSDB_SHOW_STABLES_TID_INDEX,
170
  TSDB_SHOW_STABLES_VGID_INDEX,
171
  TSDB_MAX_SHOW_STABLES
172 173
};

174 175 176 177 178 179 180 181 182 183 184 185 186 187
enum _describe_table_index {
  TSDB_DESCRIBE_METRIC_FIELD_INDEX,
  TSDB_DESCRIBE_METRIC_TYPE_INDEX,
  TSDB_DESCRIBE_METRIC_LENGTH_INDEX,
  TSDB_DESCRIBE_METRIC_NOTE_INDEX,
  TSDB_MAX_DESCRIBE_METRIC
};

typedef struct {
  char field[TSDB_COL_NAME_LEN + 1];
  char type[16];
  int length;
  char note[128];
} SColDes;
H
hzcheng 已提交
188 189

/* Used by main to communicate with parse_opt. */
190 191
typedef struct SArguments_S {
  char *   metaFile;
192
  uint32_t test_mode;
193 194 195 196 197 198 199 200 201
  char *   host;
  uint16_t port;
  char *   user;
  char *   password;
  char *   database;
  int      replica;
  char *   tb_prefix;
  char *   sqlFile;
  bool     use_metric;
202
  bool     drop_database;
203
  bool     insert_only;
204
  bool     answer_yes;
205
  bool     debug_print;
206
  bool     verbose_print;
207
  bool     performance_print;
208
  char *   output_file;
209
  uint32_t query_mode;
210
  char *   datatype[MAX_NUM_DATATYPE + 1];
211 212 213 214
  uint32_t len_of_binary;
  uint32_t num_of_CPR;
  uint32_t num_of_threads;
  uint64_t insert_interval;
215
  int64_t  query_times;
216 217 218 219 220
  uint64_t interlace_rows;
  uint64_t num_of_RPR;                  // num_of_records_per_req
  uint64_t max_sql_len;
  uint64_t num_of_tables;
  uint64_t num_of_DPT;
221
  int      abort;
222 223
  int      disorderRatio;               // 0: no disorder, >0: x%
  int      disorderRange;               // ms or us by database precision
224
  uint32_t method_of_delete;
225
  char **  arg_list;
226 227
  uint64_t totalInsertRows;
  uint64_t totalAffectedRows;
228 229 230
} SArguments;

typedef struct SColumn_S {
231 232 233
  char      field[TSDB_COL_NAME_LEN + 1];
  char      dataType[MAX_TB_NAME_SIZE];
  uint32_t  dataLen;
234
  char  note[128];
235 236 237
} StrColumn;

typedef struct SSuperTable_S {
238
  char         sTblName[MAX_TB_NAME_SIZE+1];
239
  int64_t      childTblCount;
240
  bool         childTblExists;          // 0: no, 1: yes
241 242
  uint64_t     batchCreateTableNum;     // 0: no batch,  > 0: batch table number in one sql
  uint8_t      autoCreateTable;         // 0: create sub table, 1: auto create sub table
243
  char         childTblPrefix[MAX_TB_NAME_SIZE];
244
  char         dataSource[MAX_TB_NAME_SIZE+1];  // rand_gen or sample
245
  char         insertMode[MAX_TB_NAME_SIZE];    // taosc, rest
246
  int64_t      childTblLimit;
247
  uint64_t      childTblOffset;
248

249
//  int          multiThreadWriteOneTbl;  // 0: no, 1: yes
250
  uint64_t     interlaceRows;           //
251 252
  int          disorderRatio;           // 0: no disorder, >0: x%
  int          disorderRange;           // ms or us by database precision
253
  uint64_t     maxSqlLen;               //
254

255 256
  uint64_t     insertInterval;          // insert interval, will override global insert interval
  uint64_t     insertRows;
257
  int64_t      timeStampStep;
258
  char         startTimestamp[MAX_TB_NAME_SIZE];
259
  char         sampleFormat[MAX_TB_NAME_SIZE];  // csv, json
260 261
  char         sampleFile[MAX_FILE_NAME_LEN+1];
  char         tagsFile[MAX_FILE_NAME_LEN+1];
262

263
  uint32_t     columnCount;
264
  StrColumn    columns[MAX_COLUMN_COUNT];
265
  uint32_t          tagCount;
266 267 268
  StrColumn    tags[MAX_TAG_COUNT];

  char*        childTblName;
269
  char*        colsOfCreateChildTable;
270 271
  uint64_t     lenOfOneRow;
  uint64_t     lenOfTagOfOneRow;
272 273 274 275 276

  char*        sampleDataBuf;
  //int          sampleRowCount;
  //int          sampleUsePos;

277
  uint32_t     tagSource;    // 0: rand, 1: tag sample
278
  char*        tagDataBuf;
279 280
  uint32_t     tagSampleCount;
  uint32_t     tagUsePos;
281

282
  // statistics
283 284
  uint64_t     totalInsertRows;
  uint64_t     totalAffectedRows;
285 286 287 288 289 290
} SSuperTable;

typedef struct {
  char     name[TSDB_DB_NAME_LEN + 1];
  char     create_time[32];
  int32_t  ntables;
291
  int32_t  vgroups;
292 293
  int16_t  replica;
  int16_t  quorum;
294
  int16_t  days;
295 296 297 298 299 300 301 302 303 304 305 306 307 308
  char     keeplist[32];
  int32_t  cache; //MB
  int32_t  blocks;
  int32_t  minrows;
  int32_t  maxrows;
  int8_t   wallevel;
  int32_t  fsync;
  int8_t   comp;
  int8_t   cachelast;
  char     precision[8];   // time resolution
  int8_t   update;
  char     status[16];
} SDbInfo;

309
typedef struct SDbCfg_S {
310
//  int       maxtablesPerVnode;
311 312
  uint32_t  minRows;        // 0 means default
  uint32_t  maxRows;        // 0 means default
313 314
  int       comp;
  int       walLevel;
315
  int       cacheLast;
316
  int       fsync;
317 318 319 320 321 322 323
  int       replica;
  int       update;
  int       keep;
  int       days;
  int       cache;
  int       blocks;
  int       quorum;
324
  char      precision[MAX_TB_NAME_SIZE];
325 326 327 328
} SDbCfg;

typedef struct SDataBase_S {
  char         dbName[MAX_DB_NAME_SIZE];
329
  bool         drop;  // 0: use exists, 1: if exists, drop then new create
330
  SDbCfg       dbCfg;
331
  uint64_t     superTblCount;
332 333 334 335
  SSuperTable  superTbls[MAX_SUPER_TABLE_COUNT];
} SDataBase;

typedef struct SDbs_S {
336
  char         cfgDir[MAX_FILE_NAME_LEN+1];
337
  char         host[MAX_HOSTNAME_SIZE];
338 339
  struct sockaddr_in serv_addr;

340
  uint16_t     port;
341 342
  char         user[MAX_USERNAME_SIZE];
  char         password[MAX_PASSWORD_SIZE];
343
  char         resultFile[MAX_FILE_NAME_LEN+1];
344 345 346 347
  bool         use_metric;
  bool         insert_only;
  bool         do_aggreFunc;
  bool         queryMode;
348

349 350 351
  uint32_t     threadCount;
  uint32_t     threadCountByCreateTbl;
  uint32_t     dbCount;
352 353 354
  SDataBase    db[MAX_DB_COUNT];

  // statistics
355 356
  uint64_t     totalInsertRows;
  uint64_t     totalAffectedRows;
357

358 359
} SDbs;

360
typedef struct SpecifiedQueryInfo_S {
361 362 363 364 365 366
  uint64_t     queryInterval;  // 0: unlimit  > 0   loop/s
  uint64_t     concurrent;
  uint64_t     sqlCount;
  uint32_t     mode; // 0: sync, 1: async
  uint64_t     subscribeInterval; // ms
  uint64_t     queryTimes;
367 368
  int          subscribeRestart;
  int          subscribeKeepProgress;
369
  char         sql[MAX_QUERY_SQL_COUNT][MAX_QUERY_SQL_LENGTH+1];
370
  char         result[MAX_QUERY_SQL_COUNT][MAX_FILE_NAME_LEN+1];
371
  TAOS_SUB*    tsub[MAX_QUERY_SQL_COUNT];
372
  uint64_t     totalQueried;
373
} SpecifiedQueryInfo;
374

375
typedef struct SuperQueryInfo_S {
376
  char         sTblName[MAX_TB_NAME_SIZE+1];
377 378 379 380
  uint64_t     queryInterval;  // 0: unlimit  > 0   loop/s
  uint32_t     threadCnt;
  uint32_t     mode; // 0: sync, 1: async
  uint64_t     subscribeInterval; // ms
381 382
  int          subscribeRestart;
  int          subscribeKeepProgress;
383 384
  uint64_t     queryTimes;
  uint64_t     childTblCount;
385
  char         childTblPrefix[MAX_TB_NAME_SIZE];
386
  uint64_t     sqlCount;
387
  char         sql[MAX_QUERY_SQL_COUNT][MAX_QUERY_SQL_LENGTH+1];
388
  char         result[MAX_QUERY_SQL_COUNT][MAX_FILE_NAME_LEN+1];
389
  TAOS_SUB*    tsub[MAX_QUERY_SQL_COUNT];
390

391
  char*        childTblName;
392
  uint64_t     totalQueried;
393
} SuperQueryInfo;
394 395

typedef struct SQueryMetaInfo_S {
396
  char         cfgDir[MAX_FILE_NAME_LEN+1];
397
  char         host[MAX_HOSTNAME_SIZE];
398
  uint16_t     port;
399
  struct       sockaddr_in serv_addr;
400 401
  char         user[MAX_USERNAME_SIZE];
  char         password[MAX_PASSWORD_SIZE];
402
  char         dbName[MAX_DB_NAME_SIZE+1];
403
  char         queryMode[MAX_TB_NAME_SIZE];  // taosc, rest
404

405 406
  SpecifiedQueryInfo  specifiedQueryInfo;
  SuperQueryInfo    superQueryInfo;
407
  uint64_t     totalQueried;
408 409 410
} SQueryMetaInfo;

typedef struct SThreadInfo_S {
411 412 413 414 415 416 417 418 419 420 421 422 423
  TAOS *    taos;
  int       threadID;
  char      db_name[MAX_DB_NAME_SIZE+1];
  uint32_t  time_precision;
  char      fp[4096];
  char      tb_prefix[MAX_TB_NAME_SIZE];
  uint64_t  start_table_from;
  uint64_t  end_table_to;
  uint64_t  ntables;
  uint64_t  data_of_rate;
  int64_t   start_time;
  char*     cols;
  bool      use_metric;
424 425 426
  SSuperTable* superTblInfo;

  // for async insert
427 428
  tsem_t    lock_sem;
  int64_t   counter;
429 430
  uint64_t  st;
  uint64_t  et;
431
  uint64_t  lastTs;
432

433
  // sample data
434
  int64_t   samplePos;
435
  // statistics
436 437
  uint64_t  totalInsertRows;
  uint64_t  totalAffectedRows;
438 439

  // insert delay statistics
440 441 442 443 444
  uint64_t  cntDelay;
  uint64_t  totalDelay;
  uint64_t  avgDelay;
  uint64_t  maxDelay;
  uint64_t  minDelay;
445

446
  // query
447
  uint64_t  querySeq;   // sequence number of sql command
448 449
} threadInfo;

450
#ifdef WINDOWS
451 452
#define _CRT_RAND_S

453
#include <windows.h>
454 455 456 457 458
#include <winsock2.h>

typedef unsigned __int32 uint32_t;

#pragma comment ( lib, "ws2_32.lib" )
459 460
// Some old MinGW/CYGWIN distributions don't define this:
#ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
461 462
  #define ENABLE_VIRTUAL_TERMINAL_PROCESSING  0x0004
#endif // ENABLE_VIRTUAL_TERMINAL_PROCESSING
463 464 465 466

static HANDLE g_stdoutHandle;
static DWORD g_consoleMode;

467
static void setupForAnsiEscape(void) {
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
  DWORD mode = 0;
  g_stdoutHandle = GetStdHandle(STD_OUTPUT_HANDLE);

  if(g_stdoutHandle == INVALID_HANDLE_VALUE) {
    exit(GetLastError());
  }

  if(!GetConsoleMode(g_stdoutHandle, &mode)) {
    exit(GetLastError());
  }

  g_consoleMode = mode;

  // Enable ANSI escape codes
  mode |= ENABLE_VIRTUAL_TERMINAL_PROCESSING;

  if(!SetConsoleMode(g_stdoutHandle, mode)) {
    exit(GetLastError());
486
  }
487 488
}

489
static void resetAfterAnsiEscape(void) {
490
  // Reset colors
491
  printf("\x1b[0m");
492 493 494 495 496 497

  // Reset console mode
  if(!SetConsoleMode(g_stdoutHandle, g_consoleMode)) {
    exit(GetLastError());
  }
}
498

499
static int taosRandom()
500 501 502 503 504 505
{
    int number;
    rand_s(&number);

    return number;
}
506
#else   // Not windows
507
static void setupForAnsiEscape(void) {}
508

509
static void resetAfterAnsiEscape(void) {
510 511 512
  // Reset colors
  printf("\x1b[0m");
}
513

514 515
#include <time.h>

516
static int taosRandom()
517
{
518
  return rand();
519 520
}

521
#endif // ifdef Windows
522

523
static int createDatabasesAndStables();
524
static void createChildTables();
525
static int queryDbExec(TAOS *taos, char *command, QUERY_TYPE type, bool quiet);
526 527
static int postProceSql(char *host, struct sockaddr_in *pServAddr, uint16_t port,
        char* sqlstr, char *resultFile);
528 529 530 531 532 533 534

/* ************ Global variables ************  */

int32_t  randint[MAX_PREPARED_RAND];
int64_t  randbigint[MAX_PREPARED_RAND];
float    randfloat[MAX_PREPARED_RAND];
double   randdouble[MAX_PREPARED_RAND];
535
char *aggreFunc[] = {"*", "count(*)", "avg(col0)", "sum(col0)",
536 537
    "max(col0)", "min(col0)", "first(col0)", "last(col0)"};

538
SArguments g_args = {
539 540
                     NULL,            // metaFile
                     0,               // test_mode
541 542 543
                     "127.0.0.1",     // host
                     6030,            // port
                     "root",          // user
544
                     #ifdef _TD_POWER_
545 546 547 548 549 550 551 552
                     "powerdb",      // password
                     #else
                     "taosdata",      // password
                     #endif
                     "test",          // database
                     1,               // replica
                     "t",             // tb_prefix
                     NULL,            // sqlFile
553
                     true,            // use_metric
554
                     true,            // drop_database
555
                     true,            // insert_only
556
                     false,           // debug_print
557
                     false,           // verbose_print
558
                     false,           // performance statistic print
559 560 561 562
                     false,           // answer_yes;
                     "./output.txt",  // output_file
                     0,               // mode : sync or async
                     {
563 564 565 566
                     "INT",           // datatype
                     "INT",           // datatype
                     "INT",           // datatype
                     "INT",           // datatype
567 568
                     },
                     16,              // len_of_binary
569
                     4,               // num_of_CPR
570 571
                     10,              // num_of_connections/thread
                     0,               // insert_interval
572
                     1,               // query_times
573
                     0,               // interlace_rows;
574
                     30000,           // num_of_RPR
575
                     (1024*1024),         // max_sql_len
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
                     10000,           // num_of_tables
                     10000,           // num_of_DPT
                     0,               // abort
                     0,               // disorderRatio
                     1000,            // disorderRange
                     1,               // method_of_delete
                     NULL             // arg_list
};



static SDbs            g_Dbs;
static int             g_totalChildTables = 0;
static SQueryMetaInfo  g_queryInfo;
static FILE *          g_fpOfInsertResult = NULL;

#define debugPrint(fmt, ...) \
593
    do { if (g_args.debug_print || g_args.verbose_print) \
594
      fprintf(stderr, "DEBG: "fmt, __VA_ARGS__); } while(0)
595

596
#define verbosePrint(fmt, ...) \
597 598
    do { if (g_args.verbose_print) \
        fprintf(stderr, "VERB: "fmt, __VA_ARGS__); } while(0)
599

600 601 602 603
#define performancePrint(fmt, ...) \
    do { if (g_args.performance_print) \
        fprintf(stderr, "VERB: "fmt, __VA_ARGS__); } while(0)

604 605 606 607
#define errorPrint(fmt, ...) \
    do { fprintf(stderr, "ERROR: "fmt, __VA_ARGS__); } while(0)


608
///////////////////////////////////////////////////
H
hzcheng 已提交
609

610 611
static void ERROR_EXIT(const char *msg) { perror(msg); exit(-1); }

612 613 614 615 616 617 618 619
#ifndef TAOSDEMO_COMMIT_SHA1
#define TAOSDEMO_COMMIT_SHA1 "unknown"
#endif

#ifndef TD_VERNUMBER
#define TD_VERNUMBER    "unknown"
#endif

620
#ifndef TAOSDEMO_STATUS
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637
#define TAOSDEMO_STATUS "unknown"
#endif

static void printVersion() {
    char tdengine_ver[] = TD_VERNUMBER;
    char taosdemo_ver[] = TAOSDEMO_COMMIT_SHA1;
    char taosdemo_status[] = TAOSDEMO_STATUS;

    if (strlen(taosdemo_status) == 0) {
        printf("taosdemo verison %s-%s\n",
                tdengine_ver, taosdemo_ver);
    } else {
        printf("taosdemo verison %s-%s, status:%s\n",
                tdengine_ver, taosdemo_ver, taosdemo_status);
    }
}

638
static void printHelp() {
639
  char indent[10] = "        ";
640
  printf("%s%s%s%s\n", indent, "-f", indent,
641
          "The meta file to the execution procedure. Default is './meta.json'.");
642
  printf("%s%s%s%s\n", indent, "-u", indent,
643 644
          "The TDengine user name to use when connecting to the server. Default is 'root'.");
#ifdef _TD_POWER_
645
  printf("%s%s%s%s\n", indent, "-P", indent,
646
          "The password to use when connecting to the server. Default is 'powerdb'.");
647
  printf("%s%s%s%s\n", indent, "-c", indent,
648 649
          "Configuration directory. Default is '/etc/power/'.");
#else
650
  printf("%s%s%s%s\n", indent, "-P", indent,
651
          "The password to use when connecting to the server. Default is 'taosdata'.");
652
  printf("%s%s%s%s\n", indent, "-c", indent,
653
          "Configuration directory. Default is '/etc/taos/'.");
654
#endif
655
  printf("%s%s%s%s\n", indent, "-h", indent,
656
          "The host to connect to TDengine. Default is localhost.");
657
  printf("%s%s%s%s\n", indent, "-p", indent,
658
          "The TCP/IP port number to use for the connection. Default is 0.");
659
  printf("%s%s%s%s\n", indent, "-d", indent,
660
          "Destination database. Default is 'test'.");
661
  printf("%s%s%s%s\n", indent, "-a", indent,
662
          "Set the replica parameters of the database, Default 1, min: 1, max: 3.");
663
  printf("%s%s%s%s\n", indent, "-m", indent,
664 665
          "Table prefix name. Default is 't'.");
  printf("%s%s%s%s\n", indent, "-s", indent, "The select sql file.");
666
  printf("%s%s%s%s\n", indent, "-N", indent, "Use normal table flag.");
667
  printf("%s%s%s%s\n", indent, "-o", indent,
668
          "Direct output to the named file. Default is './output.txt'.");
669
  printf("%s%s%s%s\n", indent, "-q", indent,
670
          "Query mode -- 0: SYNC, 1: ASYNC. Default is SYNC.");
671
  printf("%s%s%s%s\n", indent, "-b", indent,
672
          "The data_type of columns, default: INT,INT,INT,INT.");
673
  printf("%s%s%s%s\n", indent, "-w", indent,
674
          "The length of data_type 'BINARY' or 'NCHAR'. Default is 16");
675
  printf("%s%s%s%s\n", indent, "-l", indent,
676
          "The number of columns per record. Default is 4.");
677
  printf("%s%s%s%s\n", indent, "-T", indent,
678
          "The number of threads. Default is 10.");
679
  printf("%s%s%s%s\n", indent, "-i", indent,
680
          "The sleep time (ms) between insertion. Default is 0.");
681
  printf("%s%s%s%s\n", indent, "-r", indent,
682
          "The number of records per request. Default is 30000.");
683
  printf("%s%s%s%s\n", indent, "-t", indent,
684
          "The number of tables. Default is 10000.");
685
  printf("%s%s%s%s\n", indent, "-n", indent,
686 687 688
          "The number of records per table. Default is 10000.");
  printf("%s%s%s%s\n", indent, "-x", indent, "Not insert only flag.");
  printf("%s%s%s%s\n", indent, "-y", indent, "Default input yes for prompt.");
689
  printf("%s%s%s%s\n", indent, "-O", indent,
690
          "Insert mode--0: In order, 1 ~ 50: disorder ratio. Default is in order.");
691
  printf("%s%s%s%s\n", indent, "-R", indent,
692
          "Out of order data's range, ms, default is 1000.");
693
  printf("%s%s%s%s\n", indent, "-g", indent,
694
          "Print debug info.");
695
  printf("%s%s%s\n", indent, "-V, --version\t",
696
          "Print version info.");
697 698
  printf("%s%s%s%s\n", indent, "--help\t", indent,
          "Print command line arguments list info.");
699
/*    printf("%s%s%s%s\n", indent, "-D", indent,
700 701 702 703
          "if elete database if exists. 0: no, 1: yes, default is 1");
          */
}

704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
static bool isStringNumber(char *input)
{
  int len = strlen(input);
  if (0 == len) {
    return false;
  }

  for (int i = 0; i < len; i++) {
    if (!isdigit(input[i]))
      return false;
  }

  return true;
}

719
static void parse_args(int argc, char *argv[], SArguments *arguments) {
720
  char **sptr;
721 722 723 724 725

  for (int i = 1; i < argc; i++) {
    if (strcmp(argv[i], "-f") == 0) {
      arguments->metaFile = argv[++i];
    } else if (strcmp(argv[i], "-c") == 0) {
726 727 728 729 730
      if (argc == i+1) {
        printHelp();
        errorPrint("%s", "\n\t-c need a valid path following!\n");
        exit(EXIT_FAILURE);
      }
731
      tstrncpy(configDir, argv[++i], TSDB_FILENAME_LEN);
732

733
    } else if (strcmp(argv[i], "-h") == 0) {
734 735 736 737 738
      if (argc == i+1) {
        printHelp();
        errorPrint("%s", "\n\t-h need a valid string following!\n");
        exit(EXIT_FAILURE);
      }
739 740
      arguments->host = argv[++i];
    } else if (strcmp(argv[i], "-p") == 0) {
741 742 743 744 745 746
      if ((argc == i+1) ||
        (!isStringNumber(argv[i+1]))) {
        printHelp();
        errorPrint("%s", "\n\t-p need a number following!\n");
        exit(EXIT_FAILURE);
      }
747 748
      arguments->port = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-u") == 0) {
749 750 751 752 753
      if (argc == i+1) {
        printHelp();
        errorPrint("%s", "\n\t-u need a valid string following!\n");
        exit(EXIT_FAILURE);
      }
754 755
      arguments->user = argv[++i];
    } else if (strcmp(argv[i], "-P") == 0) {
756 757 758 759 760
      if (argc == i+1) {
        printHelp();
        errorPrint("%s", "\n\t-P need a valid string following!\n");
        exit(EXIT_FAILURE);
      }
761 762
      arguments->password = argv[++i];
    } else if (strcmp(argv[i], "-o") == 0) {
763 764 765 766 767
      if (argc == i+1) {
        printHelp();
        errorPrint("%s", "\n\t-o need a valid string following!\n");
        exit(EXIT_FAILURE);
      }
768 769
      arguments->output_file = argv[++i];
    } else if (strcmp(argv[i], "-s") == 0) {
770 771 772 773 774
      if (argc == i+1) {
        printHelp();
        errorPrint("%s", "\n\t-s need a valid string following!\n");
        exit(EXIT_FAILURE);
      }
775 776
      arguments->sqlFile = argv[++i];
    } else if (strcmp(argv[i], "-q") == 0) {
777 778
      if ((argc == i+1)
              || (!isStringNumber(argv[i+1]))) {
779
        printHelp();
780
        errorPrint("%s", "\n\t-q need a number following!\nQuery mode -- 0: SYNC, 1: ASYNC. Default is SYNC.\n");
781 782
        exit(EXIT_FAILURE);
      }
783
      arguments->query_mode = atoi(argv[++i]);
784
    } else if (strcmp(argv[i], "-T") == 0) {
785 786
      if ((argc == i+1)
              || (!isStringNumber(argv[i+1]))) {
787 788 789 790
        printHelp();
        errorPrint("%s", "\n\t-T need a number following!\n");
        exit(EXIT_FAILURE);
      }
791 792
      arguments->num_of_threads = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-i") == 0) {
793 794
      if ((argc == i+1)
              || (!isStringNumber(argv[i+1]))) {
795 796 797 798
        printHelp();
        errorPrint("%s", "\n\t-i need a number following!\n");
        exit(EXIT_FAILURE);
      }
799
      arguments->insert_interval = atoi(argv[++i]);
800
    } else if (strcmp(argv[i], "-qt") == 0) {
801 802 803
      if ((argc == i+1)
              || (!isStringNumber(argv[i+1]))
              || (atoi(argv[i+1]) <= 0)) {
804
        printHelp();
805
        errorPrint("%s", "\n\t-qt need a valid (>0) number following!\n");
806 807
        exit(EXIT_FAILURE);
      }
808
      arguments->query_times = atoi(argv[++i]);
809
    } else if (strcmp(argv[i], "-B") == 0) {
810 811
      if ((argc == i+1)
              || (!isStringNumber(argv[i+1]))) {
812 813 814 815
        printHelp();
        errorPrint("%s", "\n\t-B need a number following!\n");
        exit(EXIT_FAILURE);
      }
816
      arguments->interlace_rows = atoi(argv[++i]);
817
    } else if (strcmp(argv[i], "-r") == 0) {
818 819
      if ((argc == i+1)
              || (!isStringNumber(argv[i+1]))) {
820 821 822 823
        printHelp();
        errorPrint("%s", "\n\t-r need a number following!\n");
        exit(EXIT_FAILURE);
      }
824 825
      arguments->num_of_RPR = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-t") == 0) {
826 827 828 829 830 831
      if ((argc == i+1) ||
        (!isStringNumber(argv[i+1]))) {
        printHelp();
        errorPrint("%s", "\n\t-t need a number following!\n");
        exit(EXIT_FAILURE);
      }
832 833
      arguments->num_of_tables = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-n") == 0) {
834 835 836 837 838 839
      if ((argc == i+1) ||
        (!isStringNumber(argv[i+1]))) {
        printHelp();
        errorPrint("%s", "\n\t-n need a number following!\n");
        exit(EXIT_FAILURE);
      }
840 841
      arguments->num_of_DPT = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-d") == 0) {
842 843 844 845 846
      if (argc == i+1) {
        printHelp();
        errorPrint("%s", "\n\t-d need a valid string following!\n");
        exit(EXIT_FAILURE);
      }
847 848
      arguments->database = argv[++i];
    } else if (strcmp(argv[i], "-l") == 0) {
849 850 851 852 853 854
      if ((argc == i+1) ||
        (!isStringNumber(argv[i+1]))) {
        printHelp();
        errorPrint("%s", "\n\t-l need a number following!\n");
        exit(EXIT_FAILURE);
      }
855 856
      arguments->num_of_CPR = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-b") == 0) {
857
      sptr = arguments->datatype;
858 859
      ++i;
      if (strstr(argv[i], ",") == NULL) {
860
        // only one col
861 862 863 864 865 866 867
        if (strcasecmp(argv[i], "INT")
                && strcasecmp(argv[i], "FLOAT")
                && strcasecmp(argv[i], "TINYINT")
                && strcasecmp(argv[i], "BOOL")
                && strcasecmp(argv[i], "SMALLINT")
                && strcasecmp(argv[i], "BIGINT")
                && strcasecmp(argv[i], "DOUBLE")
868
                && strcasecmp(argv[i], "BINARY")
869 870
                && strcasecmp(argv[i], "NCHAR")) {
          printHelp();
871
          errorPrint("%s", "-b: Invalid data_type!\n");
872
          exit(EXIT_FAILURE);
873
        }
874
        sptr[0] = argv[i];
875
      } else {
876
        // more than one col
877
        int index = 0;
878
        char *dupstr = strdup(argv[i]);
879 880
        char *running = dupstr;
        char *token = strsep(&running, ",");
881
        while(token != NULL) {
882 883 884 885 886 887 888 889 890 891
          if (strcasecmp(token, "INT")
                  && strcasecmp(token, "FLOAT")
                  && strcasecmp(token, "TINYINT")
                  && strcasecmp(token, "BOOL")
                  && strcasecmp(token, "SMALLINT")
                  && strcasecmp(token, "BIGINT")
                  && strcasecmp(token, "DOUBLE")
                  && strcasecmp(token, "BINARY")
                  && strcasecmp(token, "NCHAR")) {
            printHelp();
892
            free(dupstr);
893
            errorPrint("%s", "-b: Invalid data_type!\n");
894
            exit(EXIT_FAILURE);
H
hzcheng 已提交
895
          }
896 897 898
          sptr[index++] = token;
          token = strsep(&running, ",");
          if (index >= MAX_NUM_DATATYPE) break;
S
TD-1057  
Shengliang Guan 已提交
899
        }
900
        free(dupstr);
901
        sptr[index] = NULL;
902
      }
903
    } else if (strcmp(argv[i], "-w") == 0) {
904 905 906 907 908 909
      if ((argc == i+1) ||
        (!isStringNumber(argv[i+1]))) {
        printHelp();
        errorPrint("%s", "\n\t-w need a number following!\n");
        exit(EXIT_FAILURE);
      }
910 911
      arguments->len_of_binary = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-m") == 0) {
912 913 914 915 916 917
      if ((argc == i+1) ||
        (!isStringNumber(argv[i+1]))) {
        printHelp();
        errorPrint("%s", "\n\t-m need a number following!\n");
        exit(EXIT_FAILURE);
      }
918
      arguments->tb_prefix = argv[++i];
919 920
    } else if (strcmp(argv[i], "-N") == 0) {
      arguments->use_metric = false;
921
    } else if (strcmp(argv[i], "-x") == 0) {
922
      arguments->insert_only = false;
923
    } else if (strcmp(argv[i], "-y") == 0) {
924
      arguments->answer_yes = true;
925 926
    } else if (strcmp(argv[i], "-g") == 0) {
      arguments->debug_print = true;
927 928
    } else if (strcmp(argv[i], "-gg") == 0) {
      arguments->verbose_print = true;
929 930
    } else if (strcmp(argv[i], "-pp") == 0) {
      arguments->performance_print = true;
931
    } else if (strcmp(argv[i], "-O") == 0) {
932 933 934 935 936 937
      if ((argc == i+1) ||
        (!isStringNumber(argv[i+1]))) {
        printHelp();
        errorPrint("%s", "\n\t-O need a number following!\n");
        exit(EXIT_FAILURE);
      }
938

939
      arguments->disorderRatio = atoi(argv[++i]);
940

941
      if (arguments->disorderRatio > 50) {
942
        arguments->disorderRatio = 50;
943
      }
944

945
      if (arguments->disorderRatio < 0) {
946
        arguments->disorderRatio = 0;
947
      }
948

949
    } else if (strcmp(argv[i], "-R") == 0) {
950 951 952 953 954 955
      if ((argc == i+1) ||
        (!isStringNumber(argv[i+1]))) {
        printHelp();
        errorPrint("%s", "\n\t-R need a number following!\n");
        exit(EXIT_FAILURE);
      }
956

957
      arguments->disorderRange = atoi(argv[++i]);
958 959 960
      if (arguments->disorderRange < 0)
        arguments->disorderRange = 1000;

961
    } else if (strcmp(argv[i], "-a") == 0) {
962 963 964 965 966 967
      if ((argc == i+1) ||
        (!isStringNumber(argv[i+1]))) {
        printHelp();
        errorPrint("%s", "\n\t-a need a number following!\n");
        exit(EXIT_FAILURE);
      }
968 969 970
      arguments->replica = atoi(argv[++i]);
      if (arguments->replica > 3 || arguments->replica < 1) {
          arguments->replica = 1;
971
      }
972 973
    } else if (strcmp(argv[i], "-D") == 0) {
      arguments->method_of_delete = atoi(argv[++i]);
974 975 976
      if (arguments->method_of_delete > 3) {
        errorPrint("%s", "\n\t-D need a valud (0~3) number following!\n");
        exit(EXIT_FAILURE);
S
TD-1057  
Shengliang Guan 已提交
977
      }
978 979 980 981
    } else if ((strcmp(argv[i], "--version") == 0) ||
        (strcmp(argv[i], "-V") == 0)){
      printVersion();
      exit(0);
982 983 984 985 986
    } else if (strcmp(argv[i], "--help") == 0) {
      printHelp();
      exit(0);
    } else {
      printHelp();
987
      errorPrint("%s", "ERROR: wrong options\n");
988
      exit(EXIT_FAILURE);
S
TD-1057  
Shengliang Guan 已提交
989 990
    }
  }
991

992 993
  if (((arguments->debug_print) && (arguments->metaFile == NULL))
          || arguments->verbose_print) {
994
    printf("###################################################################\n");
995
    printf("# meta file:                         %s\n", arguments->metaFile);
996
    printf("# Server IP:                         %s:%hu\n",
997 998 999 1000 1001
            arguments->host == NULL ? "localhost" : arguments->host,
            arguments->port );
    printf("# User:                              %s\n", arguments->user);
    printf("# Password:                          %s\n", arguments->password);
    printf("# Use metric:                        %s\n", arguments->use_metric ? "true" : "false");
1002 1003 1004 1005 1006 1007 1008 1009 1010
    if (*(arguments->datatype)) {
        printf("# Specified data type:               ");
        for (int i = 0; i < MAX_NUM_DATATYPE; i++)
            if (arguments->datatype[i])
               printf("%s,", arguments->datatype[i]);
            else
                break;
        printf("\n");
    }
1011
    printf("# Insertion interval:                %"PRIu64"\n",
1012
            arguments->insert_interval);
1013
    printf("# Number of records per req:         %"PRIu64"\n",
1014
            arguments->num_of_RPR);
1015
    printf("# Max SQL length:                    %"PRIu64"\n",
1016
            arguments->max_sql_len);
1017
    printf("# Length of Binary:                  %d\n", arguments->len_of_binary);
1018
    printf("# Number of Threads:                 %d\n", arguments->num_of_threads);
1019
    printf("# Number of Tables:                  %"PRIu64"\n",
1020
            arguments->num_of_tables);
1021
    printf("# Number of Data per Table:          %"PRIu64"\n",
1022
            arguments->num_of_DPT);
1023 1024 1025 1026 1027
    printf("# Database name:                     %s\n", arguments->database);
    printf("# Table prefix:                      %s\n", arguments->tb_prefix);
    if (arguments->disorderRatio) {
      printf("# Data order:                        %d\n", arguments->disorderRatio);
      printf("# Data out of order rate:            %d\n", arguments->disorderRange);
1028

1029 1030 1031 1032
    }
    printf("# Delete method:                     %d\n", arguments->method_of_delete);
    printf("# Answer yes when prompt:            %d\n", arguments->answer_yes);
    printf("# Print debug info:                  %d\n", arguments->debug_print);
1033
    printf("# Print verbose info:                %d\n", arguments->verbose_print);
1034 1035 1036 1037 1038 1039
    printf("###################################################################\n");
    if (!arguments->answer_yes) {
        printf("Press enter key to continue\n\n");
        (void) getchar();
    }
  }
1040
}
H
hzcheng 已提交
1041

1042 1043 1044 1045
static bool getInfoFromJsonFile(char* file);
//static int generateOneRowDataForStb(SSuperTable* stbInfo);
//static int getDataIntoMemForStb(SSuperTable* stbInfo);
static void init_rand_data();
1046
static void tmfclose(FILE *fp) {
1047 1048 1049 1050
  if (NULL != fp) {
    fclose(fp);
  }
}
1051

1052
static void tmfree(char *buf) {
1053 1054
  if (NULL != buf) {
    free(buf);
H
Hui Li 已提交
1055
  }
1056
}
H
Hui Li 已提交
1057

1058
static int queryDbExec(TAOS *taos, char *command, QUERY_TYPE type, bool quiet) {
1059 1060 1061
  int i;
  TAOS_RES *res = NULL;
  int32_t   code = -1;
1062

1063 1064 1065 1066
  for (i = 0; i < 5; i++) {
    if (NULL != res) {
      taos_free_result(res);
      res = NULL;
H
hzcheng 已提交
1067
    }
1068

1069 1070 1071 1072
    res = taos_query(taos, command);
    code = taos_errno(res);
    if (0 == code) {
      break;
1073
    }
H
hzcheng 已提交
1074 1075
  }

1076
  if (code != 0) {
1077 1078
    if (!quiet) {
      debugPrint("%s() LN%d - command: %s\n", __func__, __LINE__, command);
1079
      errorPrint("Failed to execute %s, reason: %s\n", command, taos_errstr(res));
1080
    }
1081 1082 1083
    taos_free_result(res);
    //taos_close(taos);
    return -1;
1084
  }
H
hzcheng 已提交
1085

1086 1087 1088 1089
  if (INSERT_TYPE == type) {
    int affectedRows = taos_affected_rows(res);
    taos_free_result(res);
    return affectedRows;
H
hzcheng 已提交
1090
  }
1091

1092
  taos_free_result(res);
1093 1094
  return 0;
}
H
hzcheng 已提交
1095

1096 1097
static void appendResultBufToFile(char *resultBuf, char *resultFile)
{
1098
  FILE *fp = NULL;
1099 1100
  if (resultFile[0] != 0) {
    fp = fopen(resultFile, "at");
1101
    if (fp == NULL) {
1102 1103 1104 1105
      errorPrint(
              "%s() LN%d, failed to open result file: %s, result will not save to file\n",
              __func__, __LINE__, resultFile);
      return;
1106 1107
    }
  }
1108

1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
  fprintf(fp, "%s", resultBuf);
  tmfclose(fp);
}

static void appendResultToFile(TAOS_RES *res, char* resultFile) {
  TAOS_ROW    row = NULL;
  int         num_rows = 0;
  int         num_fields = taos_field_count(res);
  TAOS_FIELD *fields     = taos_fetch_fields(res);

1119 1120
  char* databuf = (char*) calloc(1, 100*1024*1024);
  if (databuf == NULL) {
1121 1122
    errorPrint("%s() LN%d, failed to malloc, warning: save result to file slowly!\n",
            __func__, __LINE__);
1123 1124
    return ;
  }
H
hzcheng 已提交
1125

1126 1127
  int   totalLen = 0;
  char  temp[16000];
H
hzcheng 已提交
1128

1129
  // fetch the records row by row
1130
  while((row = taos_fetch_row(res))) {
1131
    if (totalLen >= 100*1024*1024 - 32000) {
1132
      appendResultBufToFile(databuf, resultFile);
1133 1134
      totalLen = 0;
      memset(databuf, 0, 100*1024*1024);
H
hzcheng 已提交
1135
    }
1136 1137 1138 1139 1140 1141
    num_rows++;
    int len = taos_print_row(temp, row, fields, num_fields);
    len += sprintf(temp + len, "\n");
    //printf("query result:%s\n", temp);
    memcpy(databuf + totalLen, temp, len);
    totalLen += len;
H
hzcheng 已提交
1142 1143
  }

1144
  appendResultBufToFile(databuf, resultFile);
1145 1146
  free(databuf);
}
H
hzcheng 已提交
1147

1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
static void selectAndGetResult(threadInfo *pThreadInfo, char *command, char* resultFile)
{
  if (0 == strncasecmp(g_queryInfo.queryMode, "taosc", strlen("taosc"))) {
    TAOS_RES *res = taos_query(pThreadInfo->taos, command);
    if (res == NULL || taos_errno(res) != 0) {
        errorPrint("%s() LN%d, failed to execute sql:%s, reason:%s\n",
            __func__, __LINE__, command, taos_errstr(res));
        taos_free_result(res);
        return;
    }

    if ((resultFile) && (strlen(resultFile))) {
      appendResultToFile(res, resultFile);
    }
1162
    taos_free_result(res);
1163

1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
  } else if (0 == strncasecmp(g_queryInfo.queryMode, "rest", strlen("rest"))) {
      int retCode = postProceSql(
              g_queryInfo.host, &(g_queryInfo.serv_addr), g_queryInfo.port,
              command,
              resultFile);
      if (0 != retCode) {
        printf("====restful return fail, threadID[%d]\n", pThreadInfo->threadID);
      }

  } else {
      errorPrint("%s() LN%d, unknown query mode: %s\n",
        __func__, __LINE__, g_queryInfo.queryMode);
  }
1177
}
H
hzcheng 已提交
1178

1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
static int32_t rand_bool(){
  static int cursor;
  cursor++;
  cursor = cursor % MAX_PREPARED_RAND;
  return randint[cursor] % 2;
}

static int32_t rand_tinyint(){
  static int cursor;
  cursor++;
  cursor = cursor % MAX_PREPARED_RAND;
  return randint[cursor] % 128;
}

static int32_t rand_smallint(){
  static int cursor;
  cursor++;
  cursor = cursor % MAX_PREPARED_RAND;
  return randint[cursor] % 32767;
}

static int32_t rand_int(){
  static int cursor;
  cursor++;
  cursor = cursor % MAX_PREPARED_RAND;
  return randint[cursor];
}

static int64_t rand_bigint(){
  static int cursor;
  cursor++;
  cursor = cursor % MAX_PREPARED_RAND;
  return randbigint[cursor];
}

static float rand_float(){
  static int cursor;
  cursor++;
  cursor = cursor % MAX_PREPARED_RAND;
1218
  return randfloat[cursor];
1219 1220
}

1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
#if 0
static const char charNum[] = "0123456789";

static void nonrand_string(char *, int) __attribute__ ((unused));   // reserve for debugging purpose
static void nonrand_string(char *str, int size)
{
  str[0] = 0;
  if (size > 0) {
    int n;
    for (n = 0; n < size; n++) {
      str[n] = charNum[n % 10];
    }
    str[n] = 0;
  }
}
#endif

1238
static const char charset[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
1239

1240
static void rand_string(char *str, int size) {
1241 1242 1243 1244
  str[0] = 0;
  if (size > 0) {
    //--size;
    int n;
1245
    for (n = 0; n < size; n++) {
1246
      int key = abs(rand_tinyint()) % (int)(sizeof(charset) - 1);
1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
      str[n] = charset[key];
    }
    str[n] = 0;
  }
}

static double rand_double() {
  static int cursor;
  cursor++;
  cursor = cursor % MAX_PREPARED_RAND;
  return randdouble[cursor];

}

static void init_rand_data() {
  for (int i = 0; i < MAX_PREPARED_RAND; i++){
1263 1264 1265 1266
    randint[i] = (int)(taosRandom() % 65535);
    randbigint[i] = (int64_t)(taosRandom() % 2147483648);
    randfloat[i] = (float)(taosRandom() / 1000.0);
    randdouble[i] = (double)(taosRandom() / 1000000.0);
1267 1268 1269
  }
}

1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289
#define SHOW_PARSE_RESULT_START()   \
    do { if (g_args.metaFile)  \
        printf("\033[1m\033[40;32m================ %s parse result START ================\033[0m\n", \
                g_args.metaFile); } while(0)

#define SHOW_PARSE_RESULT_END() \
    do { if (g_args.metaFile)   \
        printf("\033[1m\033[40;32m================ %s parse result END================\033[0m\n", \
                g_args.metaFile); } while(0)

#define SHOW_PARSE_RESULT_START_TO_FILE(fp)   \
    do { if (g_args.metaFile)  \
        fprintf(fp, "\033[1m\033[40;32m================ %s parse result START ================\033[0m\n", \
                g_args.metaFile); } while(0)

#define SHOW_PARSE_RESULT_END_TO_FILE(fp) \
    do { if (g_args.metaFile)   \
        fprintf(fp, "\033[1m\033[40;32m================ %s parse result END================\033[0m\n", \
                g_args.metaFile); } while(0)

1290
static int printfInsertMeta() {
1291 1292
    SHOW_PARSE_RESULT_START();

1293 1294 1295
  printf("host:                       \033[33m%s:%u\033[0m\n", g_Dbs.host, g_Dbs.port);
  printf("user:                       \033[33m%s\033[0m\n", g_Dbs.user);
  printf("password:                   \033[33m%s\033[0m\n", g_Dbs.password);
1296
  printf("configDir:                  \033[33m%s\033[0m\n", configDir);
1297 1298 1299
  printf("resultFile:                 \033[33m%s\033[0m\n", g_Dbs.resultFile);
  printf("thread num of insert data:  \033[33m%d\033[0m\n", g_Dbs.threadCount);
  printf("thread num of create table: \033[33m%d\033[0m\n", g_Dbs.threadCountByCreateTbl);
1300
  printf("top insert interval:        \033[33m%"PRIu64"\033[0m\n",
1301
          g_args.insert_interval);
1302
  printf("number of records per req:  \033[33m%"PRIu64"\033[0m\n",
1303
          g_args.num_of_RPR);
1304
  printf("max sql length:             \033[33m%"PRIu64"\033[0m\n",
1305
          g_args.max_sql_len);
1306 1307

  printf("database count:             \033[33m%d\033[0m\n", g_Dbs.dbCount);
1308

1309 1310
  for (int i = 0; i < g_Dbs.dbCount; i++) {
    printf("database[\033[33m%d\033[0m]:\n", i);
1311
    printf("  database[%d] name:      \033[33m%s\033[0m\n", i, g_Dbs.db[i].dbName);
1312
    if (0 == g_Dbs.db[i].drop) {
1313 1314 1315
      printf("  drop:                  \033[33mno\033[0m\n");
    } else {
      printf("  drop:                  \033[33myes\033[0m\n");
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354
    }

    if (g_Dbs.db[i].dbCfg.blocks > 0) {
      printf("  blocks:                \033[33m%d\033[0m\n", g_Dbs.db[i].dbCfg.blocks);
    }
    if (g_Dbs.db[i].dbCfg.cache > 0) {
      printf("  cache:                 \033[33m%d\033[0m\n", g_Dbs.db[i].dbCfg.cache);
    }
    if (g_Dbs.db[i].dbCfg.days > 0) {
      printf("  days:                  \033[33m%d\033[0m\n", g_Dbs.db[i].dbCfg.days);
    }
    if (g_Dbs.db[i].dbCfg.keep > 0) {
      printf("  keep:                  \033[33m%d\033[0m\n", g_Dbs.db[i].dbCfg.keep);
    }
    if (g_Dbs.db[i].dbCfg.replica > 0) {
      printf("  replica:               \033[33m%d\033[0m\n", g_Dbs.db[i].dbCfg.replica);
    }
    if (g_Dbs.db[i].dbCfg.update > 0) {
      printf("  update:                \033[33m%d\033[0m\n", g_Dbs.db[i].dbCfg.update);
    }
    if (g_Dbs.db[i].dbCfg.minRows > 0) {
      printf("  minRows:               \033[33m%d\033[0m\n", g_Dbs.db[i].dbCfg.minRows);
    }
    if (g_Dbs.db[i].dbCfg.maxRows > 0) {
      printf("  maxRows:               \033[33m%d\033[0m\n", g_Dbs.db[i].dbCfg.maxRows);
    }
    if (g_Dbs.db[i].dbCfg.comp > 0) {
      printf("  comp:                  \033[33m%d\033[0m\n", g_Dbs.db[i].dbCfg.comp);
    }
    if (g_Dbs.db[i].dbCfg.walLevel > 0) {
      printf("  walLevel:              \033[33m%d\033[0m\n", g_Dbs.db[i].dbCfg.walLevel);
    }
    if (g_Dbs.db[i].dbCfg.fsync > 0) {
      printf("  fsync:                 \033[33m%d\033[0m\n", g_Dbs.db[i].dbCfg.fsync);
    }
    if (g_Dbs.db[i].dbCfg.quorum > 0) {
      printf("  quorum:                \033[33m%d\033[0m\n", g_Dbs.db[i].dbCfg.quorum);
    }
    if (g_Dbs.db[i].dbCfg.precision[0] != 0) {
1355 1356
      if ((0 == strncasecmp(g_Dbs.db[i].dbCfg.precision, "ms", 2))
              || (0 == strncasecmp(g_Dbs.db[i].dbCfg.precision, "us", 2))) {
1357 1358
        printf("  precision:             \033[33m%s\033[0m\n",
            g_Dbs.db[i].dbCfg.precision);
1359
      } else {
1360 1361 1362
        printf("\033[1m\033[40;31m  precision error:       %s\033[0m\n",
                g_Dbs.db[i].dbCfg.precision);
        return -1;
1363 1364 1365
      }
    }

1366
    printf("  super table count:     \033[33m%"PRIu64"\033[0m\n",
1367
        g_Dbs.db[i].superTblCount);
1368 1369
    for (uint64_t j = 0; j < g_Dbs.db[i].superTblCount; j++) {
      printf("  super table[\033[33m%"PRIu64"\033[0m]:\n", j);
1370

1371 1372
      printf("      stbName:           \033[33m%s\033[0m\n",
          g_Dbs.db[i].superTbls[j].sTblName);
1373 1374 1375 1376 1377 1378 1379 1380

      if (PRE_CREATE_SUBTBL == g_Dbs.db[i].superTbls[j].autoCreateTable) {
        printf("      autoCreateTable:   \033[33m%s\033[0m\n",  "no");
      } else if (AUTO_CREATE_SUBTBL == g_Dbs.db[i].superTbls[j].autoCreateTable) {
        printf("      autoCreateTable:   \033[33m%s\033[0m\n",  "yes");
      } else {
        printf("      autoCreateTable:   \033[33m%s\033[0m\n",  "error");
      }
1381

1382 1383 1384 1385 1386 1387 1388
      if (TBL_NO_EXISTS == g_Dbs.db[i].superTbls[j].childTblExists) {
        printf("      childTblExists:    \033[33m%s\033[0m\n",  "no");
      } else if (TBL_ALREADY_EXISTS == g_Dbs.db[i].superTbls[j].childTblExists) {
        printf("      childTblExists:    \033[33m%s\033[0m\n",  "yes");
      } else {
        printf("      childTblExists:    \033[33m%s\033[0m\n",  "error");
      }
1389

1390
      printf("      childTblCount:     \033[33m%"PRIu64"\033[0m\n",
1391 1392 1393 1394 1395 1396 1397
              g_Dbs.db[i].superTbls[j].childTblCount);
      printf("      childTblPrefix:    \033[33m%s\033[0m\n",
              g_Dbs.db[i].superTbls[j].childTblPrefix);
      printf("      dataSource:        \033[33m%s\033[0m\n",
              g_Dbs.db[i].superTbls[j].dataSource);
      printf("      insertMode:        \033[33m%s\033[0m\n",
              g_Dbs.db[i].superTbls[j].insertMode);
1398
      if (g_Dbs.db[i].superTbls[j].childTblLimit > 0) {
1399
        printf("      childTblLimit:     \033[33m%"PRId64"\033[0m\n",
1400
                g_Dbs.db[i].superTbls[j].childTblLimit);
1401
      }
1402
      if (g_Dbs.db[i].superTbls[j].childTblOffset > 0) {
1403
        printf("      childTblOffset:    \033[33m%"PRIu64"\033[0m\n",
1404
                g_Dbs.db[i].superTbls[j].childTblOffset);
1405
      }
1406
      printf("      insertRows:        \033[33m%"PRIu64"\033[0m\n",
1407
              g_Dbs.db[i].superTbls[j].insertRows);
1408
/*
1409
      if (0 == g_Dbs.db[i].superTbls[j].multiThreadWriteOneTbl) {
1410
        printf("      multiThreadWriteOneTbl:  \033[33mno\033[0m\n");
1411
      }else {
1412
        printf("      multiThreadWriteOneTbl:  \033[33myes\033[0m\n");
1413
      }
1414
      */
1415
      printf("      interlaceRows:     \033[33m%"PRIu64"\033[0m\n",
1416
              g_Dbs.db[i].superTbls[j].interlaceRows);
1417 1418

      if (g_Dbs.db[i].superTbls[j].interlaceRows > 0) {
1419
        printf("      stable insert interval:   \033[33m%"PRIu64"\033[0m\n",
1420 1421 1422
            g_Dbs.db[i].superTbls[j].insertInterval);
      }

1423 1424 1425 1426
      printf("      disorderRange:     \033[33m%d\033[0m\n",
              g_Dbs.db[i].superTbls[j].disorderRange);
      printf("      disorderRatio:     \033[33m%d\033[0m\n",
              g_Dbs.db[i].superTbls[j].disorderRatio);
1427
      printf("      maxSqlLen:         \033[33m%"PRIu64"\033[0m\n",
1428
              g_Dbs.db[i].superTbls[j].maxSqlLen);
1429
      printf("      timeStampStep:     \033[33m%"PRId64"\033[0m\n",
1430 1431 1432 1433 1434 1435 1436 1437 1438
              g_Dbs.db[i].superTbls[j].timeStampStep);
      printf("      startTimestamp:    \033[33m%s\033[0m\n",
              g_Dbs.db[i].superTbls[j].startTimestamp);
      printf("      sampleFormat:      \033[33m%s\033[0m\n",
              g_Dbs.db[i].superTbls[j].sampleFormat);
      printf("      sampleFile:        \033[33m%s\033[0m\n",
              g_Dbs.db[i].superTbls[j].sampleFile);
      printf("      tagsFile:          \033[33m%s\033[0m\n",
              g_Dbs.db[i].superTbls[j].tagsFile);
1439
      printf("      columnCount:       \033[33m%d\033[0m\n",
1440
              g_Dbs.db[i].superTbls[j].columnCount);
1441 1442
      for (int k = 0; k < g_Dbs.db[i].superTbls[j].columnCount; k++) {
        //printf("dataType:%s, dataLen:%d\t", g_Dbs.db[i].superTbls[j].columns[k].dataType, g_Dbs.db[i].superTbls[j].columns[k].dataLen);
1443 1444 1445 1446
        if ((0 == strncasecmp(g_Dbs.db[i].superTbls[j].columns[k].dataType,
                       "binary", 6))
                || (0 == strncasecmp(g_Dbs.db[i].superTbls[j].columns[k].dataType,
                       "nchar", 5))) {
1447
          printf("column[\033[33m%d\033[0m]:\033[33m%s(%d)\033[0m ", k,
1448 1449
                  g_Dbs.db[i].superTbls[j].columns[k].dataType,
                  g_Dbs.db[i].superTbls[j].columns[k].dataLen);
1450
        } else {
1451 1452
          printf("column[%d]:\033[33m%s\033[0m ", k,
                  g_Dbs.db[i].superTbls[j].columns[k].dataType);
1453 1454 1455
        }
      }
      printf("\n");
1456 1457 1458

      printf("      tagCount:            \033[33m%d\033[0m\n        ",
              g_Dbs.db[i].superTbls[j].tagCount);
1459 1460
      for (int k = 0; k < g_Dbs.db[i].superTbls[j].tagCount; k++) {
        //printf("dataType:%s, dataLen:%d\t", g_Dbs.db[i].superTbls[j].tags[k].dataType, g_Dbs.db[i].superTbls[j].tags[k].dataLen);
1461 1462 1463 1464
        if ((0 == strncasecmp(g_Dbs.db[i].superTbls[j].tags[k].dataType,
                        "binary", strlen("binary")))
                || (0 == strncasecmp(g_Dbs.db[i].superTbls[j].tags[k].dataType,
                        "nchar", strlen("nchar")))) {
1465
          printf("tag[%d]:\033[33m%s(%d)\033[0m ", k,
1466 1467
                  g_Dbs.db[i].superTbls[j].tags[k].dataType,
                  g_Dbs.db[i].superTbls[j].tags[k].dataLen);
1468
        } else {
1469 1470
          printf("tag[%d]:\033[33m%s\033[0m ", k,
                  g_Dbs.db[i].superTbls[j].tags[k].dataType);
1471
        }
1472 1473 1474 1475 1476
      }
      printf("\n");
    }
    printf("\n");
  }
1477 1478

  SHOW_PARSE_RESULT_END();
1479 1480

  return 0;
1481 1482 1483
}

static void printfInsertMetaToFile(FILE* fp) {
1484 1485

  SHOW_PARSE_RESULT_START_TO_FILE(fp);
1486

1487 1488
  fprintf(fp, "host:                       %s:%u\n", g_Dbs.host, g_Dbs.port);
  fprintf(fp, "user:                       %s\n", g_Dbs.user);
1489
  fprintf(fp, "configDir:                  %s\n", configDir);
1490 1491 1492
  fprintf(fp, "resultFile:                 %s\n", g_Dbs.resultFile);
  fprintf(fp, "thread num of insert data:  %d\n", g_Dbs.threadCount);
  fprintf(fp, "thread num of create table: %d\n", g_Dbs.threadCountByCreateTbl);
1493 1494
  fprintf(fp, "number of records per req:  %"PRIu64"\n", g_args.num_of_RPR);
  fprintf(fp, "max sql length:             %"PRIu64"\n", g_args.max_sql_len);
1495
  fprintf(fp, "database count:          %d\n", g_Dbs.dbCount);
1496

1497 1498
  for (int i = 0; i < g_Dbs.dbCount; i++) {
    fprintf(fp, "database[%d]:\n", i);
1499
    fprintf(fp, "  database[%d] name:       %s\n", i, g_Dbs.db[i].dbName);
1500
    if (0 == g_Dbs.db[i].drop) {
1501
      fprintf(fp, "  drop:                  no\n");
1502
    }else {
1503
      fprintf(fp, "  drop:                  yes\n");
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542
    }

    if (g_Dbs.db[i].dbCfg.blocks > 0) {
      fprintf(fp, "  blocks:                %d\n", g_Dbs.db[i].dbCfg.blocks);
    }
    if (g_Dbs.db[i].dbCfg.cache > 0) {
      fprintf(fp, "  cache:                 %d\n", g_Dbs.db[i].dbCfg.cache);
    }
    if (g_Dbs.db[i].dbCfg.days > 0) {
      fprintf(fp, "  days:                  %d\n", g_Dbs.db[i].dbCfg.days);
    }
    if (g_Dbs.db[i].dbCfg.keep > 0) {
      fprintf(fp, "  keep:                  %d\n", g_Dbs.db[i].dbCfg.keep);
    }
    if (g_Dbs.db[i].dbCfg.replica > 0) {
      fprintf(fp, "  replica:               %d\n", g_Dbs.db[i].dbCfg.replica);
    }
    if (g_Dbs.db[i].dbCfg.update > 0) {
      fprintf(fp, "  update:                %d\n", g_Dbs.db[i].dbCfg.update);
    }
    if (g_Dbs.db[i].dbCfg.minRows > 0) {
      fprintf(fp, "  minRows:               %d\n", g_Dbs.db[i].dbCfg.minRows);
    }
    if (g_Dbs.db[i].dbCfg.maxRows > 0) {
      fprintf(fp, "  maxRows:               %d\n", g_Dbs.db[i].dbCfg.maxRows);
    }
    if (g_Dbs.db[i].dbCfg.comp > 0) {
      fprintf(fp, "  comp:                  %d\n", g_Dbs.db[i].dbCfg.comp);
    }
    if (g_Dbs.db[i].dbCfg.walLevel > 0) {
      fprintf(fp, "  walLevel:              %d\n", g_Dbs.db[i].dbCfg.walLevel);
    }
    if (g_Dbs.db[i].dbCfg.fsync > 0) {
      fprintf(fp, "  fsync:                 %d\n", g_Dbs.db[i].dbCfg.fsync);
    }
    if (g_Dbs.db[i].dbCfg.quorum > 0) {
      fprintf(fp, "  quorum:                %d\n", g_Dbs.db[i].dbCfg.quorum);
    }
    if (g_Dbs.db[i].dbCfg.precision[0] != 0) {
1543 1544
      if ((0 == strncasecmp(g_Dbs.db[i].dbCfg.precision, "ms", 2))
              || (0 == strncasecmp(g_Dbs.db[i].dbCfg.precision, "us", 2))) {
1545 1546 1547 1548 1549 1550
        fprintf(fp, "  precision:             %s\n", g_Dbs.db[i].dbCfg.precision);
      } else {
        fprintf(fp, "  precision error:       %s\n", g_Dbs.db[i].dbCfg.precision);
      }
    }

1551
    fprintf(fp, "  super table count:     %"PRIu64"\n", g_Dbs.db[i].superTblCount);
1552 1553
    for (int j = 0; j < g_Dbs.db[i].superTblCount; j++) {
      fprintf(fp, "  super table[%d]:\n", j);
1554 1555

      fprintf(fp, "      stbName:           %s\n",  g_Dbs.db[i].superTbls[j].sTblName);
1556 1557 1558 1559 1560 1561 1562 1563

      if (PRE_CREATE_SUBTBL == g_Dbs.db[i].superTbls[j].autoCreateTable) {
        fprintf(fp, "      autoCreateTable:   %s\n",  "no");
      } else if (AUTO_CREATE_SUBTBL == g_Dbs.db[i].superTbls[j].autoCreateTable) {
        fprintf(fp, "      autoCreateTable:   %s\n",  "yes");
      } else {
        fprintf(fp, "      autoCreateTable:   %s\n",  "error");
      }
1564

1565 1566 1567 1568 1569 1570 1571
      if (TBL_NO_EXISTS == g_Dbs.db[i].superTbls[j].childTblExists) {
        fprintf(fp, "      childTblExists:    %s\n",  "no");
      } else if (TBL_ALREADY_EXISTS == g_Dbs.db[i].superTbls[j].childTblExists) {
        fprintf(fp, "      childTblExists:    %s\n",  "yes");
      } else {
        fprintf(fp, "      childTblExists:    %s\n",  "error");
      }
1572

1573
      fprintf(fp, "      childTblCount:     %"PRIu64"\n",
1574 1575 1576 1577 1578 1579 1580
              g_Dbs.db[i].superTbls[j].childTblCount);
      fprintf(fp, "      childTblPrefix:    %s\n",
              g_Dbs.db[i].superTbls[j].childTblPrefix);
      fprintf(fp, "      dataSource:        %s\n",
              g_Dbs.db[i].superTbls[j].dataSource);
      fprintf(fp, "      insertMode:        %s\n",
              g_Dbs.db[i].superTbls[j].insertMode);
1581
      fprintf(fp, "      insertRows:        %"PRIu64"\n",
1582
              g_Dbs.db[i].superTbls[j].insertRows);
1583
      fprintf(fp, "      interlace rows:    %"PRIu64"\n",
1584
              g_Dbs.db[i].superTbls[j].interlaceRows);
1585
      if (g_Dbs.db[i].superTbls[j].interlaceRows > 0) {
1586
        fprintf(fp, "      stable insert interval:   %"PRIu64"\n",
1587
                g_Dbs.db[i].superTbls[j].insertInterval);
1588
      }
1589
/*
1590
      if (0 == g_Dbs.db[i].superTbls[j].multiThreadWriteOneTbl) {
1591
        fprintf(fp, "      multiThreadWriteOneTbl:  no\n");
1592
      }else {
1593
        fprintf(fp, "      multiThreadWriteOneTbl:  yes\n");
1594
      }
1595
      */
1596
      fprintf(fp, "      interlaceRows:     %"PRIu64"\n",
1597
              g_Dbs.db[i].superTbls[j].interlaceRows);
1598
      fprintf(fp, "      disorderRange:     %d\n",  g_Dbs.db[i].superTbls[j].disorderRange);
1599
      fprintf(fp, "      disorderRatio:     %d\n",  g_Dbs.db[i].superTbls[j].disorderRatio);
1600
      fprintf(fp, "      maxSqlLen:         %"PRIu64"\n",
1601
              g_Dbs.db[i].superTbls[j].maxSqlLen);
1602

1603 1604 1605 1606
      fprintf(fp, "      timeStampStep:     %"PRId64"\n",
              g_Dbs.db[i].superTbls[j].timeStampStep);
      fprintf(fp, "      startTimestamp:    %s\n",
              g_Dbs.db[i].superTbls[j].startTimestamp);
1607
      fprintf(fp, "      sampleFormat:      %s\n",  g_Dbs.db[i].superTbls[j].sampleFormat);
1608 1609 1610
      fprintf(fp, "      sampleFile:        %s\n",  g_Dbs.db[i].superTbls[j].sampleFile);
      fprintf(fp, "      tagsFile:          %s\n",  g_Dbs.db[i].superTbls[j].tagsFile);

1611 1612 1613
      fprintf(fp, "      columnCount:       %d\n        ",  g_Dbs.db[i].superTbls[j].columnCount);
      for (int k = 0; k < g_Dbs.db[i].superTbls[j].columnCount; k++) {
        //printf("dataType:%s, dataLen:%d\t", g_Dbs.db[i].superTbls[j].columns[k].dataType, g_Dbs.db[i].superTbls[j].columns[k].dataLen);
1614 1615 1616 1617 1618 1619 1620 1621
        if ((0 == strncasecmp(
                        g_Dbs.db[i].superTbls[j].columns[k].dataType,
                        "binary", strlen("binary")))
                || (0 == strncasecmp(g_Dbs.db[i].superTbls[j].columns[k].dataType,
                        "nchar", strlen("nchar")))) {
          fprintf(fp, "column[%d]:%s(%d) ", k,
                  g_Dbs.db[i].superTbls[j].columns[k].dataType,
                  g_Dbs.db[i].superTbls[j].columns[k].dataLen);
1622 1623 1624 1625 1626
        } else {
          fprintf(fp, "column[%d]:%s ", k, g_Dbs.db[i].superTbls[j].columns[k].dataType);
        }
      }
      fprintf(fp, "\n");
1627 1628 1629

      fprintf(fp, "      tagCount:            %d\n        ",
              g_Dbs.db[i].superTbls[j].tagCount);
1630 1631
      for (int k = 0; k < g_Dbs.db[i].superTbls[j].tagCount; k++) {
        //printf("dataType:%s, dataLen:%d\t", g_Dbs.db[i].superTbls[j].tags[k].dataType, g_Dbs.db[i].superTbls[j].tags[k].dataLen);
1632 1633 1634 1635 1636 1637
        if ((0 == strncasecmp(g_Dbs.db[i].superTbls[j].tags[k].dataType,
                        "binary", strlen("binary")))
                || (0 == strncasecmp(g_Dbs.db[i].superTbls[j].tags[k].dataType,
                        "nchar", strlen("nchar")))) {
          fprintf(fp, "tag[%d]:%s(%d) ", k, g_Dbs.db[i].superTbls[j].tags[k].dataType,
                  g_Dbs.db[i].superTbls[j].tags[k].dataLen);
1638 1639
        } else {
          fprintf(fp, "tag[%d]:%s ", k, g_Dbs.db[i].superTbls[j].tags[k].dataType);
1640
        }
1641 1642 1643 1644 1645
      }
      fprintf(fp, "\n");
    }
    fprintf(fp, "\n");
  }
1646

1647
  SHOW_PARSE_RESULT_END_TO_FILE(fp);
1648 1649 1650
}

static void printfQueryMeta() {
1651

1652
  SHOW_PARSE_RESULT_START();
1653

1654 1655
  printf("host:                    \033[33m%s:%u\033[0m\n",
          g_queryInfo.host, g_queryInfo.port);
1656 1657 1658 1659
  printf("user:                    \033[33m%s\033[0m\n", g_queryInfo.user);
  printf("database name:           \033[33m%s\033[0m\n", g_queryInfo.dbName);

  printf("\n");
1660 1661 1662 1663

  if ((SUBSCRIBE_TEST == g_args.test_mode) || (QUERY_TEST == g_args.test_mode)) {
    printf("specified table query info:                   \n");
    printf("sqlCount:       \033[33m%"PRIu64"\033[0m\n",
1664
      g_queryInfo.specifiedQueryInfo.sqlCount);
1665 1666 1667
    if (g_queryInfo.specifiedQueryInfo.sqlCount > 0) {
      printf("specified tbl query times:\n");
      printf("                \033[33m%"PRIu64"\033[0m\n",
1668
      g_queryInfo.specifiedQueryInfo.queryTimes);
1669 1670 1671 1672 1673 1674 1675 1676
      printf("query interval: \033[33m%"PRIu64" ms\033[0m\n",
        g_queryInfo.specifiedQueryInfo.queryInterval);
      printf("top query times:\033[33m%"PRIu64"\033[0m\n", g_args.query_times);
      printf("concurrent:     \033[33m%"PRIu64"\033[0m\n",
      g_queryInfo.specifiedQueryInfo.concurrent);
      printf("mod:            \033[33m%s\033[0m\n",
        (g_queryInfo.specifiedQueryInfo.mode)?"async":"sync");
      printf("interval:       \033[33m%"PRIu64"\033[0m\n",
1677
        g_queryInfo.specifiedQueryInfo.subscribeInterval);
1678
      printf("restart:        \033[33m%d\033[0m\n",
1679
        g_queryInfo.specifiedQueryInfo.subscribeRestart);
1680
      printf("keepProgress:   \033[33m%d\033[0m\n",
1681
        g_queryInfo.specifiedQueryInfo.subscribeKeepProgress);
1682

1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708
      for (uint64_t i = 0; i < g_queryInfo.specifiedQueryInfo.sqlCount; i++) {
        printf("  sql[%"PRIu64"]: \033[33m%s\033[0m\n",
            i, g_queryInfo.specifiedQueryInfo.sql[i]);
      }
      printf("\n");
    }

    printf("super table query info:\n");
    printf("sqlCount:       \033[33m%"PRIu64"\033[0m\n",
      g_queryInfo.superQueryInfo.sqlCount);

    if (g_queryInfo.superQueryInfo.sqlCount > 0) {
      printf("query interval: \033[33m%"PRIu64"\033[0m\n",
        g_queryInfo.superQueryInfo.queryInterval);
      printf("threadCnt:      \033[33m%d\033[0m\n",
        g_queryInfo.superQueryInfo.threadCnt);
      printf("childTblCount:  \033[33m%"PRIu64"\033[0m\n",
        g_queryInfo.superQueryInfo.childTblCount);
      printf("stable name:    \033[33m%s\033[0m\n",
        g_queryInfo.superQueryInfo.sTblName);
      printf("stb query times:\033[33m%"PRIu64"\033[0m\n",
        g_queryInfo.superQueryInfo.queryTimes);

      printf("mod:            \033[33m%s\033[0m\n",
        (g_queryInfo.superQueryInfo.mode)?"async":"sync");
      printf("interval:       \033[33m%"PRIu64"\033[0m\n",
1709
        g_queryInfo.superQueryInfo.subscribeInterval);
1710
      printf("restart:        \033[33m%d\033[0m\n",
1711
        g_queryInfo.superQueryInfo.subscribeRestart);
1712
      printf("keepProgress:   \033[33m%d\033[0m\n",
1713 1714
        g_queryInfo.superQueryInfo.subscribeKeepProgress);

1715 1716 1717 1718 1719 1720
      for (int i = 0; i < g_queryInfo.superQueryInfo.sqlCount; i++) {
        printf("  sql[%d]: \033[33m%s\033[0m\n",
            i, g_queryInfo.superQueryInfo.sql[i]);
      }
      printf("\n");
    }
1721
  }
1722

1723
  SHOW_PARSE_RESULT_END();
1724 1725
}

1726
static char* formatTimestamp(char* buf, int64_t val, int precision) {
1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757
  time_t tt;
  if (precision == TSDB_TIME_PRECISION_MICRO) {
    tt = (time_t)(val / 1000000);
  } else {
    tt = (time_t)(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

  struct tm* ptm = localtime(&tt);
  size_t pos = strftime(buf, 32, "%Y-%m-%d %H:%M:%S", ptm);

  if (precision == TSDB_TIME_PRECISION_MICRO) {
    sprintf(buf + pos, ".%06d", (int)(val % 1000000));
  } else {
    sprintf(buf + pos, ".%03d", (int)(val % 1000));
  }

  return buf;
}

1758 1759 1760
static void xDumpFieldToFile(FILE* fp, const char* val,
        TAOS_FIELD* field, int32_t length, int precision) {

1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795
  if (val == NULL) {
    fprintf(fp, "%s", TSDB_DATA_NULL_STR);
    return;
  }

  char buf[TSDB_MAX_BYTES_PER_ROW];
  switch (field->type) {
    case TSDB_DATA_TYPE_BOOL:
      fprintf(fp, "%d", ((((int32_t)(*((char *)val))) == 1) ? 1 : 0));
      break;
    case TSDB_DATA_TYPE_TINYINT:
      fprintf(fp, "%d", *((int8_t *)val));
      break;
    case TSDB_DATA_TYPE_SMALLINT:
      fprintf(fp, "%d", *((int16_t *)val));
      break;
    case TSDB_DATA_TYPE_INT:
      fprintf(fp, "%d", *((int32_t *)val));
      break;
    case TSDB_DATA_TYPE_BIGINT:
      fprintf(fp, "%" PRId64, *((int64_t *)val));
      break;
    case TSDB_DATA_TYPE_FLOAT:
      fprintf(fp, "%.5f", GET_FLOAT_VAL(val));
      break;
    case TSDB_DATA_TYPE_DOUBLE:
      fprintf(fp, "%.9f", GET_DOUBLE_VAL(val));
      break;
    case TSDB_DATA_TYPE_BINARY:
    case TSDB_DATA_TYPE_NCHAR:
      memcpy(buf, val, length);
      buf[length] = 0;
      fprintf(fp, "\'%s\'", buf);
      break;
    case TSDB_DATA_TYPE_TIMESTAMP:
1796
      formatTimestamp(buf, *(int64_t*)val, precision);
1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811
      fprintf(fp, "'%s'", buf);
      break;
    default:
      break;
  }
}

static int xDumpResultToFile(const char* fname, TAOS_RES* tres) {
  TAOS_ROW row = taos_fetch_row(tres);
  if (row == NULL) {
    return 0;
  }

  FILE* fp = fopen(fname, "at");
  if (fp == NULL) {
1812
    errorPrint("%s() LN%d, failed to open file: %s\n", __func__, __LINE__, fname);
1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826
    return -1;
  }

  int num_fields = taos_num_fields(tres);
  TAOS_FIELD *fields = taos_fetch_fields(tres);
  int precision = taos_result_precision(tres);

  for (int col = 0; col < num_fields; col++) {
    if (col > 0) {
      fprintf(fp, ",");
    }
    fprintf(fp, "%s", fields[col].name);
  }
  fputc('\n', fp);
1827

1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847
  int numOfRows = 0;
  do {
    int32_t* length = taos_fetch_lengths(tres);
    for (int i = 0; i < num_fields; i++) {
      if (i > 0) {
        fputc(',', fp);
      }
      xDumpFieldToFile(fp, (const char*)row[i], fields +i, length[i], precision);
    }
    fputc('\n', fp);

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

  fclose(fp);

  return numOfRows;
}

1848 1849
static int getDbFromServer(TAOS * taos, SDbInfo** dbInfos) {
  TAOS_RES * res;
1850 1851
  TAOS_ROW row = NULL;
  int count = 0;
1852 1853

  res = taos_query(taos, "show databases;");
1854
  int32_t code = taos_errno(res);
1855

1856
  if (code != 0) {
1857
    errorPrint( "failed to run <show databases>, reason: %s\n", taos_errstr(res));
1858 1859 1860 1861 1862
    return -1;
  }

  TAOS_FIELD *fields = taos_fetch_fields(res);

1863
  while((row = taos_fetch_row(res)) != NULL) {
1864
    // sys database name : 'log'
1865 1866 1867 1868
    if (strncasecmp(row[TSDB_SHOW_DB_NAME_INDEX], "log",
                fields[TSDB_SHOW_DB_NAME_INDEX].bytes) == 0) {
      continue;
    }
1869 1870 1871

    dbInfos[count] = (SDbInfo *)calloc(1, sizeof(SDbInfo));
    if (dbInfos[count] == NULL) {
1872
      errorPrint( "failed to allocate memory for some dbInfo[%d]\n", count);
1873 1874 1875
      return -1;
    }

1876 1877
    tstrncpy(dbInfos[count]->name, (char *)row[TSDB_SHOW_DB_NAME_INDEX],
            fields[TSDB_SHOW_DB_NAME_INDEX].bytes);
1878
    formatTimestamp(dbInfos[count]->create_time,
1879 1880
            *(int64_t*)row[TSDB_SHOW_DB_CREATED_TIME_INDEX],
            TSDB_TIME_PRECISION_MILLI);
1881
    dbInfos[count]->ntables = *((int32_t *)row[TSDB_SHOW_DB_NTABLES_INDEX]);
1882
    dbInfos[count]->vgroups = *((int32_t *)row[TSDB_SHOW_DB_VGROUPS_INDEX]);
1883 1884
    dbInfos[count]->replica = *((int16_t *)row[TSDB_SHOW_DB_REPLICA_INDEX]);
    dbInfos[count]->quorum = *((int16_t *)row[TSDB_SHOW_DB_QUORUM_INDEX]);
1885
    dbInfos[count]->days = *((int16_t *)row[TSDB_SHOW_DB_DAYS_INDEX]);
1886

1887
    tstrncpy(dbInfos[count]->keeplist, (char *)row[TSDB_SHOW_DB_KEEP_INDEX],
1888
            fields[TSDB_SHOW_DB_KEEP_INDEX].bytes);
1889 1890 1891 1892 1893 1894 1895
    dbInfos[count]->cache = *((int32_t *)row[TSDB_SHOW_DB_CACHE_INDEX]);
    dbInfos[count]->blocks = *((int32_t *)row[TSDB_SHOW_DB_BLOCKS_INDEX]);
    dbInfos[count]->minrows = *((int32_t *)row[TSDB_SHOW_DB_MINROWS_INDEX]);
    dbInfos[count]->maxrows = *((int32_t *)row[TSDB_SHOW_DB_MAXROWS_INDEX]);
    dbInfos[count]->wallevel = *((int8_t *)row[TSDB_SHOW_DB_WALLEVEL_INDEX]);
    dbInfos[count]->fsync = *((int32_t *)row[TSDB_SHOW_DB_FSYNC_INDEX]);
    dbInfos[count]->comp = (int8_t)(*((int8_t *)row[TSDB_SHOW_DB_COMP_INDEX]));
1896 1897
    dbInfos[count]->cachelast =
      (int8_t)(*((int8_t *)row[TSDB_SHOW_DB_CACHELAST_INDEX]));
1898

1899
    tstrncpy(dbInfos[count]->precision,
1900
            (char *)row[TSDB_SHOW_DB_PRECISION_INDEX],
1901
            fields[TSDB_SHOW_DB_PRECISION_INDEX].bytes);
1902
    dbInfos[count]->update = *((int8_t *)row[TSDB_SHOW_DB_UPDATE_INDEX]);
1903
    tstrncpy(dbInfos[count]->status, (char *)row[TSDB_SHOW_DB_STATUS_INDEX],
1904
            fields[TSDB_SHOW_DB_STATUS_INDEX].bytes);
1905

1906 1907
    count++;
    if (count > MAX_DATABASE_COUNT) {
1908 1909
      errorPrint("%s() LN%d, The database count overflow than %d\n",
         __func__, __LINE__, MAX_DATABASE_COUNT);
1910 1911 1912 1913 1914 1915 1916
      break;
    }
  }

  return count;
}

1917 1918
static void printfDbInfoForQueryToFile(
        char* filename, SDbInfo* dbInfos, int index) {
1919

1920
  if (filename[0] == 0)
1921
      return;
1922 1923 1924

  FILE *fp = fopen(filename, "at");
  if (fp == NULL) {
1925
    errorPrint( "failed to open file: %s\n", filename);
1926
    return;
1927 1928 1929 1930 1931 1932
  }

  fprintf(fp, "================ database[%d] ================\n", index);
  fprintf(fp, "name: %s\n", dbInfos->name);
  fprintf(fp, "created_time: %s\n", dbInfos->create_time);
  fprintf(fp, "ntables: %d\n", dbInfos->ntables);
1933
  fprintf(fp, "vgroups: %d\n", dbInfos->vgroups);
1934 1935
  fprintf(fp, "replica: %d\n", dbInfos->replica);
  fprintf(fp, "quorum: %d\n", dbInfos->quorum);
1936 1937
  fprintf(fp, "days: %d\n", dbInfos->days);
  fprintf(fp, "keep0,keep1,keep(D): %s\n", dbInfos->keeplist);
1938 1939 1940 1941 1942 1943 1944
  fprintf(fp, "cache(MB): %d\n", dbInfos->cache);
  fprintf(fp, "blocks: %d\n", dbInfos->blocks);
  fprintf(fp, "minrows: %d\n", dbInfos->minrows);
  fprintf(fp, "maxrows: %d\n", dbInfos->maxrows);
  fprintf(fp, "wallevel: %d\n", dbInfos->wallevel);
  fprintf(fp, "fsync: %d\n", dbInfos->fsync);
  fprintf(fp, "comp: %d\n", dbInfos->comp);
1945 1946
  fprintf(fp, "cachelast: %d\n", dbInfos->cachelast);
  fprintf(fp, "precision: %s\n", dbInfos->precision);
1947
  fprintf(fp, "update: %d\n", dbInfos->update);
1948
  fprintf(fp, "status: %s\n", dbInfos->status);
1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962
  fprintf(fp, "\n");

  fclose(fp);
}

static void printfQuerySystemInfo(TAOS * taos) {
  char filename[MAX_QUERY_SQL_LENGTH+1] = {0};
  char buffer[MAX_QUERY_SQL_LENGTH+1] = {0};
  TAOS_RES* res;

  time_t t;
  struct tm* lt;
  time(&t);
  lt = localtime(&t);
1963 1964 1965 1966
  snprintf(filename, MAX_QUERY_SQL_LENGTH, "querySystemInfo-%d-%d-%d %d:%d:%d",
          lt->tm_year+1900, lt->tm_mon, lt->tm_mday, lt->tm_hour, lt->tm_min,
          lt->tm_sec);

1967 1968
  // show variables
  res = taos_query(taos, "show variables;");
1969
  //appendResultToFile(res, filename);
1970 1971 1972 1973 1974
  xDumpResultToFile(filename, res);

  // show dnodes
  res = taos_query(taos, "show dnodes;");
  xDumpResultToFile(filename, res);
1975
  //appendResultToFile(res, filename);
1976

1977 1978 1979 1980
  // show databases
  res = taos_query(taos, "show databases;");
  SDbInfo** dbInfos = (SDbInfo **)calloc(MAX_DATABASE_COUNT, sizeof(SDbInfo *));
  if (dbInfos == NULL) {
1981
    errorPrint("%s() LN%d, failed to allocate memory\n", __func__, __LINE__);
1982 1983 1984
    return;
  }
  int dbCount = getDbFromServer(taos, dbInfos);
1985 1986 1987 1988
  if (dbCount <= 0) {
      free(dbInfos);
      return;
  }
1989 1990

  for (int i = 0; i < dbCount; i++) {
1991
    // printf database info
1992
    printfDbInfoForQueryToFile(filename, dbInfos[i], i);
1993

1994 1995 1996 1997
    // show db.vgroups
    snprintf(buffer, MAX_QUERY_SQL_LENGTH, "show %s.vgroups;", dbInfos[i]->name);
    res = taos_query(taos, buffer);
    xDumpResultToFile(filename, res);
1998

1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009
    // show db.stables
    snprintf(buffer, MAX_QUERY_SQL_LENGTH, "show %s.stables;", dbInfos[i]->name);
    res = taos_query(taos, buffer);
    xDumpResultToFile(filename, res);

    free(dbInfos[i]);
  }

  free(dbInfos);
}

2010 2011
static int postProceSql(char *host, struct sockaddr_in *pServAddr, uint16_t port,
        char* sqlstr, char *resultFile)
2012
{
2013
    char *req_fmt = "POST %s HTTP/1.1\r\nHost: %s:%d\r\nAccept: */*\r\nAuthorization: Basic %s\r\nContent-Length: %d\r\nContent-Type: application/x-www-form-urlencoded\r\n\r\n%s";
2014 2015 2016

    char *url = "/rest/sql";

2017
    int bytes, sent, received, req_str_len, resp_len;
2018 2019 2020
    char *request_buf;
    char response_buf[RESP_BUF_LEN];
    uint16_t rest_port = port + TSDB_PORT_HTTP;
2021

2022 2023 2024
    int req_buf_len = strlen(sqlstr) + REQ_EXTRA_BUF_LEN;

    request_buf = malloc(req_buf_len);
2025 2026 2027 2028
    if (NULL == request_buf) {
      errorPrint("%s", "ERROR, cannot allocate memory.\n");
      exit(EXIT_FAILURE);
    }
2029

2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040
    char userpass_buf[INPUT_BUF_LEN];
    int mod_table[] = {0, 2, 1};

    static char base64[] = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
      'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
      'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
      'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
      'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
      'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
      'w', 'x', 'y', 'z', '0', '1', '2', '3',
      '4', '5', '6', '7', '8', '9', '+', '/'};
2041

2042 2043 2044 2045 2046 2047
    snprintf(userpass_buf, INPUT_BUF_LEN, "%s:%s",
        g_Dbs.user, g_Dbs.password);
    size_t userpass_buf_len = strlen(userpass_buf);
    size_t encoded_len = 4 * ((userpass_buf_len +2) / 3);

    char base64_buf[INPUT_BUF_LEN];
2048
#ifdef WINDOWS
2049
    WSADATA wsaData;
2050
    WSAStartup(MAKEWORD(2, 2), &wsaData);
2051 2052 2053 2054
    SOCKET sockfd;
#else
    int sockfd;
#endif
2055
    sockfd = socket(AF_INET, SOCK_STREAM, 0);
2056
    if (sockfd < 0) {
2057
#ifdef WINDOWS
2058
        errorPrint( "Could not create socket : %d" , WSAGetLastError());
2059
#endif
2060
        debugPrint("%s() LN%d, sockfd=%d\n", __func__, __LINE__, sockfd);
2061
        free(request_buf);
2062
        ERROR_EXIT("ERROR opening socket");
2063
    }
2064

2065
    int retConn = connect(sockfd, (struct sockaddr *)pServAddr, sizeof(struct sockaddr));
2066 2067
    debugPrint("%s() LN%d connect() return %d\n", __func__, __LINE__, retConn);
    if (retConn < 0) {
2068
        free(request_buf);
2069
        ERROR_EXIT("ERROR connecting");
2070
    }
2071

2072 2073 2074
    memset(base64_buf, 0, INPUT_BUF_LEN);

    for (int n = 0, m = 0; n < userpass_buf_len;) {
2075
      uint32_t oct_a = n < userpass_buf_len ?
2076
        (unsigned char) userpass_buf[n++]:0;
2077
      uint32_t oct_b = n < userpass_buf_len ?
2078
        (unsigned char) userpass_buf[n++]:0;
2079
      uint32_t oct_c = n < userpass_buf_len ?
2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091
        (unsigned char) userpass_buf[n++]:0;
      uint32_t triple = (oct_a << 0x10) + (oct_b << 0x08) + oct_c;

      base64_buf[m++] = base64[(triple >> 3* 6) & 0x3f];
      base64_buf[m++] = base64[(triple >> 2* 6) & 0x3f];
      base64_buf[m++] = base64[(triple >> 1* 6) & 0x3f];
      base64_buf[m++] = base64[(triple >> 0* 6) & 0x3f];
    }

    for (int l = 0; l < mod_table[userpass_buf_len % 3]; l++)
      base64_buf[encoded_len - 1 - l] = '=';

2092 2093
    debugPrint("%s() LN%d: auth string base64 encoded: %s\n",
            __func__, __LINE__, base64_buf);
2094 2095
    char *auth = base64_buf;

2096 2097 2098
    int r = snprintf(request_buf,
            req_buf_len,
            req_fmt, url, host, rest_port,
2099 2100 2101 2102 2103
            auth, strlen(sqlstr), sqlstr);
    if (r >= req_buf_len) {
        free(request_buf);
        ERROR_EXIT("ERROR too long request");
    }
2104
    verbosePrint("%s() LN%d: Request:\n%s\n", __func__, __LINE__, request_buf);
2105

2106
    req_str_len = strlen(request_buf);
2107 2108
    sent = 0;
    do {
2109 2110 2111
#ifdef WINDOWS
        bytes = send(sockfd, request_buf + sent, req_str_len - sent, 0);
#else
2112
        bytes = write(sockfd, request_buf + sent, req_str_len - sent);
2113
#endif
2114
        if (bytes < 0)
2115
            ERROR_EXIT("ERROR writing message to socket");
2116 2117 2118
        if (bytes == 0)
            break;
        sent+=bytes;
2119
    } while(sent < req_str_len);
2120

2121 2122
    memset(response_buf, 0, RESP_BUF_LEN);
    resp_len = sizeof(response_buf) - 1;
2123 2124
    received = 0;
    do {
2125 2126 2127
#ifdef WINDOWS
        bytes = recv(sockfd, response_buf + received, resp_len - received, 0);
#else
2128
        bytes = read(sockfd, response_buf + received, resp_len - received);
2129
#endif
2130 2131
        if (bytes < 0) {
            free(request_buf);
2132
            ERROR_EXIT("ERROR reading response from socket");
2133
        }
2134 2135
        if (bytes == 0)
            break;
2136
        received += bytes;
2137
    } while(received < resp_len);
2138

2139 2140
    if (received == resp_len) {
        free(request_buf);
2141
        ERROR_EXIT("ERROR storing complete response from socket");
2142
    }
2143

2144
    response_buf[RESP_BUF_LEN - 1] = '\0';
2145 2146
    printf("Response:\n%s\n", response_buf);

2147 2148 2149 2150
    if (resultFile) {
       appendResultBufToFile(response_buf, resultFile);
    }

2151
    free(request_buf);
2152 2153 2154 2155
#ifdef WINDOWS
    closesocket(sockfd);
    WSACleanup();
#else
2156
    close(sockfd);
2157
#endif
2158 2159 2160 2161

    return 0;
}

2162
static char* getTagValueFromTagSample(SSuperTable* stbInfo, int tagUsePos) {
2163 2164
  char*  dataBuf = (char*)calloc(TSDB_MAX_SQL_LEN+1, 1);
  if (NULL == dataBuf) {
2165 2166
    errorPrint("%s() LN%d, calloc failed! size:%d\n",
        __func__, __LINE__, TSDB_MAX_SQL_LEN+1);
2167 2168
    return NULL;
  }
2169

2170
  int    dataLen = 0;
2171 2172 2173
  dataLen += snprintf(dataBuf + dataLen, TSDB_MAX_SQL_LEN - dataLen,
          "(%s)", stbInfo->tagDataBuf + stbInfo->lenOfTagOfOneRow * tagUsePos);

2174 2175 2176
  return dataBuf;
}

2177
static char* generateTagVaulesForStb(SSuperTable* stbInfo, int32_t tableSeq) {
2178 2179 2180 2181 2182 2183 2184 2185 2186
  char*  dataBuf = (char*)calloc(TSDB_MAX_SQL_LEN+1, 1);
  if (NULL == dataBuf) {
    printf("calloc failed! size:%d\n", TSDB_MAX_SQL_LEN+1);
    return NULL;
  }

  int    dataLen = 0;
  dataLen += snprintf(dataBuf + dataLen, TSDB_MAX_SQL_LEN - dataLen, "(");
  for (int i = 0; i < stbInfo->tagCount; i++) {
2187 2188
    if ((0 == strncasecmp(stbInfo->tags[i].dataType, "binary", strlen("binary")))
            || (0 == strncasecmp(stbInfo->tags[i].dataType, "nchar", strlen("nchar")))) {
2189
      if (stbInfo->tags[i].dataLen > TSDB_MAX_BINARY_LEN) {
2190 2191
        printf("binary or nchar length overflow, max size:%u\n",
                (uint32_t)TSDB_MAX_BINARY_LEN);
2192 2193 2194
        tmfree(dataBuf);
        return NULL;
      }
2195

2196 2197
      int tagBufLen = stbInfo->tags[i].dataLen + 1;
      char* buf = (char*)calloc(tagBufLen, 1);
2198 2199 2200 2201 2202
      if (NULL == buf) {
        printf("calloc failed! size:%d\n", stbInfo->tags[i].dataLen);
        tmfree(dataBuf);
        return NULL;
      }
2203 2204 2205 2206 2207 2208 2209

      if (tableSeq % 2) {
        tstrncpy(buf, "beijing", tagBufLen);
      } else {
        tstrncpy(buf, "shanghai", tagBufLen);
      }
      //rand_string(buf, stbInfo->tags[i].dataLen);
2210 2211
      dataLen += snprintf(dataBuf + dataLen, TSDB_MAX_SQL_LEN - dataLen,
              "\'%s\', ", buf);
2212
      tmfree(buf);
2213 2214 2215
    } else if (0 == strncasecmp(stbInfo->tags[i].dataType,
                "int", strlen("int"))) {
      dataLen += snprintf(dataBuf + dataLen, TSDB_MAX_SQL_LEN - dataLen,
2216
              "%d, ", tableSeq);
2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244
    } else if (0 == strncasecmp(stbInfo->tags[i].dataType,
                "bigint", strlen("bigint"))) {
      dataLen += snprintf(dataBuf + dataLen, TSDB_MAX_SQL_LEN - dataLen,
              "%"PRId64", ", rand_bigint());
    }  else if (0 == strncasecmp(stbInfo->tags[i].dataType,
                "float", strlen("float"))) {
      dataLen += snprintf(dataBuf + dataLen, TSDB_MAX_SQL_LEN - dataLen,
              "%f, ", rand_float());
    }  else if (0 == strncasecmp(stbInfo->tags[i].dataType,
                "double", strlen("double"))) {
      dataLen += snprintf(dataBuf + dataLen, TSDB_MAX_SQL_LEN - dataLen,
              "%f, ", rand_double());
    }  else if (0 == strncasecmp(stbInfo->tags[i].dataType,
                "smallint", strlen("smallint"))) {
      dataLen += snprintf(dataBuf + dataLen, TSDB_MAX_SQL_LEN - dataLen,
              "%d, ", rand_smallint());
    }  else if (0 == strncasecmp(stbInfo->tags[i].dataType,
                "tinyint", strlen("tinyint"))) {
      dataLen += snprintf(dataBuf + dataLen, TSDB_MAX_SQL_LEN - dataLen,
              "%d, ", rand_tinyint());
    }  else if (0 == strncasecmp(stbInfo->tags[i].dataType,
                "bool", strlen("bool"))) {
      dataLen += snprintf(dataBuf + dataLen, TSDB_MAX_SQL_LEN - dataLen,
              "%d, ", rand_bool());
    }  else if (0 == strncasecmp(stbInfo->tags[i].dataType,
                "timestamp", strlen("timestamp"))) {
      dataLen += snprintf(dataBuf + dataLen, TSDB_MAX_SQL_LEN - dataLen,
              "%"PRId64", ", rand_bigint());
2245 2246 2247 2248 2249 2250
    }  else {
      printf("No support data type: %s\n", stbInfo->tags[i].dataType);
      tmfree(dataBuf);
      return NULL;
    }
  }
2251

2252
  dataLen -= 2;
2253
  dataLen += snprintf(dataBuf + dataLen, TSDB_MAX_SQL_LEN - dataLen, ")");
2254 2255 2256
  return dataBuf;
}

2257
static int calcRowLen(SSuperTable*  superTbls) {
2258 2259
  int colIndex;
  int  lenOfOneRow = 0;
2260

2261 2262
  for (colIndex = 0; colIndex < superTbls->columnCount; colIndex++) {
    char* dataType = superTbls->columns[colIndex].dataType;
2263

2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279
    if (strcasecmp(dataType, "BINARY") == 0) {
      lenOfOneRow += superTbls->columns[colIndex].dataLen + 3;
    } else if (strcasecmp(dataType, "NCHAR") == 0) {
      lenOfOneRow += superTbls->columns[colIndex].dataLen + 3;
    } else if (strcasecmp(dataType, "INT") == 0)  {
      lenOfOneRow += 11;
    } else if (strcasecmp(dataType, "BIGINT") == 0)  {
      lenOfOneRow += 21;
    } else if (strcasecmp(dataType, "SMALLINT") == 0)  {
      lenOfOneRow += 6;
    } else if (strcasecmp(dataType, "TINYINT") == 0)  {
      lenOfOneRow += 4;
    } else if (strcasecmp(dataType, "BOOL") == 0)  {
      lenOfOneRow += 6;
    } else if (strcasecmp(dataType, "FLOAT") == 0) {
      lenOfOneRow += 22;
2280
    } else if (strcasecmp(dataType, "DOUBLE") == 0) {
2281
      lenOfOneRow += 42;
2282
    }  else if (strcasecmp(dataType, "TIMESTAMP") == 0) {
2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295
      lenOfOneRow += 21;
    } else {
      printf("get error data type : %s\n", dataType);
      exit(-1);
    }
  }

  superTbls->lenOfOneRow = lenOfOneRow + 20; // timestamp

  int tagIndex;
  int lenOfTagOfOneRow = 0;
  for (tagIndex = 0; tagIndex < superTbls->tagCount; tagIndex++) {
    char* dataType = superTbls->tags[tagIndex].dataType;
2296

2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312
    if (strcasecmp(dataType, "BINARY") == 0) {
      lenOfTagOfOneRow += superTbls->tags[tagIndex].dataLen + 3;
    } else if (strcasecmp(dataType, "NCHAR") == 0) {
      lenOfTagOfOneRow += superTbls->tags[tagIndex].dataLen + 3;
    } else if (strcasecmp(dataType, "INT") == 0)  {
      lenOfTagOfOneRow += superTbls->tags[tagIndex].dataLen + 11;
    } else if (strcasecmp(dataType, "BIGINT") == 0)  {
      lenOfTagOfOneRow += superTbls->tags[tagIndex].dataLen + 21;
    } else if (strcasecmp(dataType, "SMALLINT") == 0)  {
      lenOfTagOfOneRow += superTbls->tags[tagIndex].dataLen + 6;
    } else if (strcasecmp(dataType, "TINYINT") == 0)  {
      lenOfTagOfOneRow += superTbls->tags[tagIndex].dataLen + 4;
    } else if (strcasecmp(dataType, "BOOL") == 0)  {
      lenOfTagOfOneRow += superTbls->tags[tagIndex].dataLen + 6;
    } else if (strcasecmp(dataType, "FLOAT") == 0) {
      lenOfTagOfOneRow += superTbls->tags[tagIndex].dataLen + 22;
2313
    } else if (strcasecmp(dataType, "DOUBLE") == 0) {
2314 2315 2316 2317 2318 2319 2320 2321
      lenOfTagOfOneRow += superTbls->tags[tagIndex].dataLen + 42;
    } else {
      printf("get error tag type : %s\n", dataType);
      exit(-1);
    }
  }

  superTbls->lenOfTagOfOneRow = lenOfTagOfOneRow;
2322

2323 2324 2325 2326
  return 0;
}


2327 2328
static int getChildNameOfSuperTableWithLimitAndOffset(TAOS * taos,
        char* dbName, char* sTblName, char** childTblNameOfSuperTbl,
2329
        uint64_t* childTblCountOfSuperTbl, int64_t limit, uint64_t offset) {
2330

2331
  char command[BUFFER_SIZE] = "\0";
2332 2333
  char limitBuf[100] = "\0";

2334
  TAOS_RES * res;
2335 2336 2337
  TAOS_ROW row = NULL;

  char* childTblName = *childTblNameOfSuperTbl;
2338 2339

  if (offset >= 0) {
2340
    snprintf(limitBuf, 100, " limit %"PRId64" offset %"PRIu64"",
2341
            limit, offset);
2342 2343
  }

2344
  //get all child table name use cmd: select tbname from superTblName;
2345 2346
  snprintf(command, BUFFER_SIZE, "select tbname from %s.%s %s",
          dbName, sTblName, limitBuf);
2347

2348
  res = taos_query(taos, command);
2349 2350 2351 2352
  int32_t code = taos_errno(res);
  if (code != 0) {
    taos_free_result(res);
    taos_close(taos);
2353 2354
    errorPrint("%s() LN%d, failed to run command %s\n",
           __func__, __LINE__, command);
2355 2356 2357
    exit(-1);
  }

2358
  int childTblCount = (limit < 0)?10000:limit;
2359
  int count = 0;
2360 2361 2362 2363 2364 2365 2366 2367 2368 2369
  if (childTblName == NULL) {
    childTblName = (char*)calloc(1, childTblCount * TSDB_TABLE_NAME_LEN);
    if (NULL ==  childTblName) {
    taos_free_result(res);
        taos_close(taos);
        errorPrint("%s() LN%d, failed to allocate memory!\n", __func__, __LINE__);
        exit(-1);
    }
  }

2370
  char* pTblName = childTblName;
2371
  while((row = taos_fetch_row(res)) != NULL) {
2372
    int32_t* len = taos_fetch_lengths(res);
2373
    tstrncpy(pTblName, (char *)row[0], len[0]+1);
2374 2375 2376
    //printf("==== sub table name: %s\n", pTblName);
    count++;
    if (count >= childTblCount - 1) {
2377 2378
      char *tmp = realloc(childTblName,
              (size_t)childTblCount*1.5*TSDB_TABLE_NAME_LEN+1);
2379 2380 2381
      if (tmp != NULL) {
        childTblName = tmp;
        childTblCount = (int)(childTblCount*1.5);
2382 2383
        memset(childTblName + count*TSDB_TABLE_NAME_LEN, 0,
                (size_t)((childTblCount-count)*TSDB_TABLE_NAME_LEN));
2384 2385
      } else {
        // exit, if allocate more memory failed
2386 2387
        errorPrint("%s() LN%d, realloc fail for save child table name of %s.%s\n",
               __func__, __LINE__, dbName, sTblName);
2388 2389 2390 2391 2392 2393
        tmfree(childTblName);
        taos_free_result(res);
        taos_close(taos);
        exit(-1);
      }
    }
2394
    pTblName = childTblName + count * TSDB_TABLE_NAME_LEN;
2395
  }
2396

2397 2398 2399 2400 2401 2402 2403
  *childTblCountOfSuperTbl = count;
  *childTblNameOfSuperTbl  = childTblName;

  taos_free_result(res);
  return 0;
}

2404 2405
static int getAllChildNameOfSuperTable(TAOS * taos, char* dbName,
        char* sTblName, char** childTblNameOfSuperTbl,
2406
        uint64_t* childTblCountOfSuperTbl) {
2407 2408 2409

    return getChildNameOfSuperTableWithLimitAndOffset(taos, dbName, sTblName,
            childTblNameOfSuperTbl, childTblCountOfSuperTbl,
2410
            -1, 0);
2411 2412
}

2413 2414
static int getSuperTableFromServer(TAOS * taos, char* dbName,
        SSuperTable*  superTbls) {
2415

2416
  char command[BUFFER_SIZE] = "\0";
2417
  TAOS_RES * res;
2418 2419
  TAOS_ROW row = NULL;
  int count = 0;
2420

2421
  //get schema use cmd: describe superTblName;
2422
  snprintf(command, BUFFER_SIZE, "describe %s.%s", dbName, superTbls->sTblName);
2423
  res = taos_query(taos, command);
2424 2425 2426
  int32_t code = taos_errno(res);
  if (code != 0) {
    printf("failed to run command %s\n", command);
2427
    taos_free_result(res);
2428 2429 2430 2431 2432 2433
    return -1;
  }

  int tagIndex = 0;
  int columnIndex = 0;
  TAOS_FIELD *fields = taos_fetch_fields(res);
2434
  while((row = taos_fetch_row(res)) != NULL) {
2435 2436 2437
    if (0 == count) {
      count++;
      continue;
2438
    }
2439 2440

    if (strcmp((char *)row[TSDB_DESCRIBE_METRIC_NOTE_INDEX], "TAG") == 0) {
2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451
      tstrncpy(superTbls->tags[tagIndex].field,
              (char *)row[TSDB_DESCRIBE_METRIC_FIELD_INDEX],
              fields[TSDB_DESCRIBE_METRIC_FIELD_INDEX].bytes);
      tstrncpy(superTbls->tags[tagIndex].dataType,
              (char *)row[TSDB_DESCRIBE_METRIC_TYPE_INDEX],
              fields[TSDB_DESCRIBE_METRIC_TYPE_INDEX].bytes);
      superTbls->tags[tagIndex].dataLen =
          *((int *)row[TSDB_DESCRIBE_METRIC_LENGTH_INDEX]);
      tstrncpy(superTbls->tags[tagIndex].note,
              (char *)row[TSDB_DESCRIBE_METRIC_NOTE_INDEX],
              fields[TSDB_DESCRIBE_METRIC_NOTE_INDEX].bytes);
2452
      tagIndex++;
2453
    } else {
2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464
      tstrncpy(superTbls->columns[columnIndex].field,
              (char *)row[TSDB_DESCRIBE_METRIC_FIELD_INDEX],
              fields[TSDB_DESCRIBE_METRIC_FIELD_INDEX].bytes);
      tstrncpy(superTbls->columns[columnIndex].dataType,
              (char *)row[TSDB_DESCRIBE_METRIC_TYPE_INDEX],
              fields[TSDB_DESCRIBE_METRIC_TYPE_INDEX].bytes);
      superTbls->columns[columnIndex].dataLen =
          *((int *)row[TSDB_DESCRIBE_METRIC_LENGTH_INDEX]);
      tstrncpy(superTbls->columns[columnIndex].note,
              (char *)row[TSDB_DESCRIBE_METRIC_NOTE_INDEX],
              fields[TSDB_DESCRIBE_METRIC_NOTE_INDEX].bytes);
2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475
      columnIndex++;
    }
    count++;
  }

  superTbls->columnCount = columnIndex;
  superTbls->tagCount    = tagIndex;
  taos_free_result(res);

  calcRowLen(superTbls);

2476
/*
2477
  if (TBL_ALREADY_EXISTS == superTbls->childTblExists) {
2478
    //get all child table name use cmd: select tbname from superTblName;
2479 2480 2481
    int childTblCount = 10000;
    superTbls->childTblName = (char*)calloc(1, childTblCount * TSDB_TABLE_NAME_LEN);
    if (superTbls->childTblName == NULL) {
2482
      errorPrint("%s() LN%d, alloc memory failed!\n", __func__, __LINE__);
2483 2484
      return -1;
    }
2485
    getAllChildNameOfSuperTable(taos, dbName,
2486 2487 2488
            superTbls->sTblName,
            &superTbls->childTblName,
            &superTbls->childTblCount);
2489
  }
2490
  */
2491 2492 2493
  return 0;
}

2494 2495
static int createSuperTable(
        TAOS * taos, char* dbName,
2496
        SSuperTable*  superTbl) {
2497

2498
  char command[BUFFER_SIZE] = "\0";
2499

2500 2501 2502 2503 2504
  char cols[STRING_LEN] = "\0";
  int colIndex;
  int len = 0;

  int  lenOfOneRow = 0;
2505 2506 2507 2508 2509 2510 2511 2512 2513

  if (superTbl->columnCount == 0) {
    errorPrint("%s() LN%d, super table column count is %d\n",
            __func__, __LINE__, superTbl->columnCount);
    return -1;
  }

  for (colIndex = 0; colIndex < superTbl->columnCount; colIndex++) {
    char* dataType = superTbl->columns[colIndex].dataType;
2514

2515
    if (strcasecmp(dataType, "BINARY") == 0) {
2516 2517
      len += snprintf(cols + len, STRING_LEN - len,
          ", col%d %s(%d)", colIndex, "BINARY",
2518 2519
          superTbl->columns[colIndex].dataLen);
      lenOfOneRow += superTbl->columns[colIndex].dataLen + 3;
2520
    } else if (strcasecmp(dataType, "NCHAR") == 0) {
2521 2522
      len += snprintf(cols + len, STRING_LEN - len,
          ", col%d %s(%d)", colIndex, "NCHAR",
2523 2524
          superTbl->columns[colIndex].dataLen);
      lenOfOneRow += superTbl->columns[colIndex].dataLen + 3;
2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542
    } else if (strcasecmp(dataType, "INT") == 0)  {
      len += snprintf(cols + len, STRING_LEN - len, ", col%d %s", colIndex, "INT");
      lenOfOneRow += 11;
    } else if (strcasecmp(dataType, "BIGINT") == 0)  {
      len += snprintf(cols + len, STRING_LEN - len, ", col%d %s", colIndex, "BIGINT");
      lenOfOneRow += 21;
    } else if (strcasecmp(dataType, "SMALLINT") == 0)  {
      len += snprintf(cols + len, STRING_LEN - len, ", col%d %s", colIndex, "SMALLINT");
      lenOfOneRow += 6;
    } else if (strcasecmp(dataType, "TINYINT") == 0)  {
      len += snprintf(cols + len, STRING_LEN - len, ", col%d %s", colIndex, "TINYINT");
      lenOfOneRow += 4;
    } else if (strcasecmp(dataType, "BOOL") == 0)  {
      len += snprintf(cols + len, STRING_LEN - len, ", col%d %s", colIndex, "BOOL");
      lenOfOneRow += 6;
    } else if (strcasecmp(dataType, "FLOAT") == 0) {
      len += snprintf(cols + len, STRING_LEN - len, ", col%d %s", colIndex, "FLOAT");
      lenOfOneRow += 22;
2543
    } else if (strcasecmp(dataType, "DOUBLE") == 0) {
2544 2545
      len += snprintf(cols + len, STRING_LEN - len, ", col%d %s", colIndex, "DOUBLE");
      lenOfOneRow += 42;
2546
    }  else if (strcasecmp(dataType, "TIMESTAMP") == 0) {
2547 2548 2549 2550
      len += snprintf(cols + len, STRING_LEN - len, ", col%d %s", colIndex, "TIMESTAMP");
      lenOfOneRow += 21;
    } else {
      taos_close(taos);
2551 2552
      errorPrint("%s() LN%d, config error data type : %s\n",
         __func__, __LINE__, dataType);
2553 2554 2555 2556
      exit(-1);
    }
  }

2557 2558
  superTbl->lenOfOneRow = lenOfOneRow + 20; // timestamp
  //printf("%s.%s column count:%d, column length:%d\n\n", g_Dbs.db[i].dbName, g_Dbs.db[i].superTbl[j].sTblName, g_Dbs.db[i].superTbl[j].columnCount, lenOfOneRow);
2559 2560

  // save for creating child table
2561 2562 2563 2564
  superTbl->colsOfCreateChildTable = (char*)calloc(len+20, 1);
  if (NULL == superTbl->colsOfCreateChildTable) {
    errorPrint("%s() LN%d, Failed when calloc, size:%d",
           __func__, __LINE__, len+1);
2565 2566 2567 2568
    taos_close(taos);
    exit(-1);
  }

2569
  snprintf(superTbl->colsOfCreateChildTable, len+20, "(ts timestamp%s)", cols);
2570 2571
  verbosePrint("%s() LN%d: %s\n",
      __func__, __LINE__, superTbl->colsOfCreateChildTable);
2572

2573 2574 2575 2576 2577
  if (superTbl->tagCount == 0) {
    errorPrint("%s() LN%d, super table tag count is %d\n",
            __func__, __LINE__, superTbl->tagCount);
    return -1;
  }
2578

2579 2580 2581
  char tags[STRING_LEN] = "\0";
  int tagIndex;
  len = 0;
2582

2583 2584 2585 2586
  int lenOfTagOfOneRow = 0;
  len += snprintf(tags + len, STRING_LEN - len, "(");
  for (tagIndex = 0; tagIndex < superTbl->tagCount; tagIndex++) {
    char* dataType = superTbl->tags[tagIndex].dataType;
2587

2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625
    if (strcasecmp(dataType, "BINARY") == 0) {
      len += snprintf(tags + len, STRING_LEN - len, "t%d %s(%d), ", tagIndex,
              "BINARY", superTbl->tags[tagIndex].dataLen);
      lenOfTagOfOneRow += superTbl->tags[tagIndex].dataLen + 3;
    } else if (strcasecmp(dataType, "NCHAR") == 0) {
      len += snprintf(tags + len, STRING_LEN - len, "t%d %s(%d), ", tagIndex,
              "NCHAR", superTbl->tags[tagIndex].dataLen);
      lenOfTagOfOneRow += superTbl->tags[tagIndex].dataLen + 3;
    } else if (strcasecmp(dataType, "INT") == 0)  {
      len += snprintf(tags + len, STRING_LEN - len, "t%d %s, ", tagIndex,
              "INT");
      lenOfTagOfOneRow += superTbl->tags[tagIndex].dataLen + 11;
    } else if (strcasecmp(dataType, "BIGINT") == 0)  {
      len += snprintf(tags + len, STRING_LEN - len, "t%d %s, ", tagIndex,
              "BIGINT");
      lenOfTagOfOneRow += superTbl->tags[tagIndex].dataLen + 21;
    } else if (strcasecmp(dataType, "SMALLINT") == 0)  {
      len += snprintf(tags + len, STRING_LEN - len, "t%d %s, ", tagIndex,
              "SMALLINT");
      lenOfTagOfOneRow += superTbl->tags[tagIndex].dataLen + 6;
    } else if (strcasecmp(dataType, "TINYINT") == 0)  {
      len += snprintf(tags + len, STRING_LEN - len, "t%d %s, ", tagIndex,
              "TINYINT");
      lenOfTagOfOneRow += superTbl->tags[tagIndex].dataLen + 4;
    } else if (strcasecmp(dataType, "BOOL") == 0)  {
      len += snprintf(tags + len, STRING_LEN - len, "t%d %s, ", tagIndex,
              "BOOL");
      lenOfTagOfOneRow += superTbl->tags[tagIndex].dataLen + 6;
    } else if (strcasecmp(dataType, "FLOAT") == 0) {
      len += snprintf(tags + len, STRING_LEN - len, "t%d %s, ", tagIndex,
              "FLOAT");
      lenOfTagOfOneRow += superTbl->tags[tagIndex].dataLen + 22;
    } else if (strcasecmp(dataType, "DOUBLE") == 0) {
      len += snprintf(tags + len, STRING_LEN - len, "t%d %s, ", tagIndex,
              "DOUBLE");
      lenOfTagOfOneRow += superTbl->tags[tagIndex].dataLen + 42;
    } else {
      taos_close(taos);
2626 2627
      errorPrint("%s() LN%d, config error tag type : %s\n",
         __func__, __LINE__, dataType);
2628
      exit(-1);
2629 2630
    }
  }
2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647

  len -= 2;
  len += snprintf(tags + len, STRING_LEN - len, ")");

  superTbl->lenOfTagOfOneRow = lenOfTagOfOneRow;

  snprintf(command, BUFFER_SIZE,
          "create table if not exists %s.%s (ts timestamp%s) tags %s",
          dbName, superTbl->sTblName, cols, tags);
  verbosePrint("%s() LN%d: %s\n", __func__, __LINE__, command);

  if (0 != queryDbExec(taos, command, NO_INSERT_TYPE, false)) {
      errorPrint( "create supertable %s failed!\n\n",
              superTbl->sTblName);
      return -1;
  }
  debugPrint("create supertable %s success!\n\n", superTbl->sTblName);
2648 2649 2650
  return 0;
}

2651
static int createDatabasesAndStables() {
2652 2653 2654 2655
  TAOS * taos = NULL;
  int    ret = 0;
  taos = taos_connect(g_Dbs.host, g_Dbs.user, g_Dbs.password, NULL, g_Dbs.port);
  if (taos == NULL) {
2656
    errorPrint( "Failed to connect to TDengine, reason:%s\n", taos_errstr(NULL));
2657
    return -1;
2658 2659 2660
  }
  char command[BUFFER_SIZE] = "\0";

2661
  for (int i = 0; i < g_Dbs.dbCount; i++) {
2662 2663
    if (g_Dbs.db[i].drop) {
      sprintf(command, "drop database if exists %s;", g_Dbs.db[i].dbName);
2664
      verbosePrint("%s() %d command: %s\n", __func__, __LINE__, command);
2665
      if (0 != queryDbExec(taos, command, NO_INSERT_TYPE, false)) {
2666 2667 2668 2669
        taos_close(taos);
        return -1;
      }

2670
      int dataLen = 0;
2671
      dataLen += snprintf(command + dataLen,
2672
          BUFFER_SIZE - dataLen, "create database if not exists %s", g_Dbs.db[i].dbName);
2673

2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743
      if (g_Dbs.db[i].dbCfg.blocks > 0) {
        dataLen += snprintf(command + dataLen,
            BUFFER_SIZE - dataLen, " blocks %d", g_Dbs.db[i].dbCfg.blocks);
      }
      if (g_Dbs.db[i].dbCfg.cache > 0) {
        dataLen += snprintf(command + dataLen,
            BUFFER_SIZE - dataLen, " cache %d", g_Dbs.db[i].dbCfg.cache);
      }
      if (g_Dbs.db[i].dbCfg.days > 0) {
        dataLen += snprintf(command + dataLen,
            BUFFER_SIZE - dataLen, " days %d", g_Dbs.db[i].dbCfg.days);
      }
      if (g_Dbs.db[i].dbCfg.keep > 0) {
        dataLen += snprintf(command + dataLen,
            BUFFER_SIZE - dataLen, " keep %d", g_Dbs.db[i].dbCfg.keep);
      }
      if (g_Dbs.db[i].dbCfg.quorum > 1) {
        dataLen += snprintf(command + dataLen,
            BUFFER_SIZE - dataLen, " quorum %d", g_Dbs.db[i].dbCfg.quorum);
      }
      if (g_Dbs.db[i].dbCfg.replica > 0) {
        dataLen += snprintf(command + dataLen,
            BUFFER_SIZE - dataLen, " replica %d", g_Dbs.db[i].dbCfg.replica);
      }
      if (g_Dbs.db[i].dbCfg.update > 0) {
        dataLen += snprintf(command + dataLen,
            BUFFER_SIZE - dataLen, " update %d", g_Dbs.db[i].dbCfg.update);
      }
      //if (g_Dbs.db[i].dbCfg.maxtablesPerVnode > 0) {
      //  dataLen += snprintf(command + dataLen,
      //  BUFFER_SIZE - dataLen, "tables %d ", g_Dbs.db[i].dbCfg.maxtablesPerVnode);
      //}
      if (g_Dbs.db[i].dbCfg.minRows > 0) {
        dataLen += snprintf(command + dataLen,
            BUFFER_SIZE - dataLen, " minrows %d", g_Dbs.db[i].dbCfg.minRows);
      }
      if (g_Dbs.db[i].dbCfg.maxRows > 0) {
        dataLen += snprintf(command + dataLen,
            BUFFER_SIZE - dataLen, " maxrows %d", g_Dbs.db[i].dbCfg.maxRows);
      }
      if (g_Dbs.db[i].dbCfg.comp > 0) {
        dataLen += snprintf(command + dataLen,
            BUFFER_SIZE - dataLen, " comp %d", g_Dbs.db[i].dbCfg.comp);
      }
      if (g_Dbs.db[i].dbCfg.walLevel > 0) {
        dataLen += snprintf(command + dataLen,
            BUFFER_SIZE - dataLen, " wal %d", g_Dbs.db[i].dbCfg.walLevel);
      }
      if (g_Dbs.db[i].dbCfg.cacheLast > 0) {
        dataLen += snprintf(command + dataLen,
            BUFFER_SIZE - dataLen, " cachelast %d", g_Dbs.db[i].dbCfg.cacheLast);
      }
      if (g_Dbs.db[i].dbCfg.fsync > 0) {
        dataLen += snprintf(command + dataLen, BUFFER_SIZE - dataLen,
                " fsync %d", g_Dbs.db[i].dbCfg.fsync);
      }
      if ((0 == strncasecmp(g_Dbs.db[i].dbCfg.precision, "ms", strlen("ms")))
              || (0 == strncasecmp(g_Dbs.db[i].dbCfg.precision,
                      "us", strlen("us")))) {
        dataLen += snprintf(command + dataLen, BUFFER_SIZE - dataLen,
                " precision \'%s\';", g_Dbs.db[i].dbCfg.precision);
      }

      debugPrint("%s() %d command: %s\n", __func__, __LINE__, command);
      if (0 != queryDbExec(taos, command, NO_INSERT_TYPE, false)) {
        taos_close(taos);
        errorPrint( "\ncreate database %s failed!\n\n", g_Dbs.db[i].dbName);
        return -1;
      }
      printf("\ncreate database %s success!\n\n", g_Dbs.db[i].dbName);
2744 2745
    }

2746
    debugPrint("%s() LN%d supertbl count:%"PRIu64"\n",
2747
            __func__, __LINE__, g_Dbs.db[i].superTblCount);
2748 2749 2750

    int validStbCount = 0;

2751
    for (int j = 0; j < g_Dbs.db[i].superTblCount; j++) {
2752 2753 2754 2755 2756 2757 2758
      sprintf(command, "describe %s.%s;", g_Dbs.db[i].dbName,
              g_Dbs.db[i].superTbls[j].sTblName);
      verbosePrint("%s() %d command: %s\n", __func__, __LINE__, command);

      ret = queryDbExec(taos, command, NO_INSERT_TYPE, true);

      if ((ret != 0) || (g_Dbs.db[i].drop)) {
2759
        ret = createSuperTable(taos, g_Dbs.db[i].dbName,
2760
                &g_Dbs.db[i].superTbls[j]);
2761

2762
        if (0 != ret) {
2763 2764
          errorPrint("create super table %d failed!\n\n", j);
          continue;
2765 2766 2767
        }
      }

2768
      ret = getSuperTableFromServer(taos, g_Dbs.db[i].dbName,
2769
                &g_Dbs.db[i].superTbls[j]);
2770 2771 2772
      if (0 != ret) {
        errorPrint("\nget super table %s.%s info failed!\n\n",
                g_Dbs.db[i].dbName, g_Dbs.db[i].superTbls[j].sTblName);
2773
        continue;
2774
      }
2775 2776

      validStbCount ++;
2777
    }
2778 2779

    g_Dbs.db[i].superTblCount = validStbCount;
2780 2781 2782 2783 2784 2785
  }

  taos_close(taos);
  return 0;
}

2786 2787
static void* createTable(void *sarg)
{
2788 2789
  threadInfo *pThreadInfo = (threadInfo *)sarg;
  SSuperTable* superTblInfo = pThreadInfo->superTblInfo;
2790 2791 2792

  int64_t  lastPrintTime = taosGetTimestampMs();

2793
  int buff_len;
2794
  buff_len = BUFFER_SIZE / 8;
2795

2796
  char *buffer = calloc(buff_len, 1);
2797
  if (buffer == NULL) {
2798
    errorPrint("%s() LN%d, Memory allocated failed!\n", __func__, __LINE__);
2799 2800
    exit(-1);
  }
2801 2802 2803

  int len = 0;
  int batchNum = 0;
2804

2805
  verbosePrint("%s() LN%d: Creating table from %"PRIu64" to %"PRIu64"\n",
2806
          __func__, __LINE__,
2807
          pThreadInfo->start_table_from, pThreadInfo->end_table_to);
2808

2809
  for (uint64_t i = pThreadInfo->start_table_from;
2810
          i <= pThreadInfo->end_table_to; i++) {
2811
    if (0 == g_Dbs.use_metric) {
2812
      snprintf(buffer, buff_len,
2813
              "create table if not exists %s.%s%"PRIu64" %s;",
2814
              pThreadInfo->db_name,
2815
              g_args.tb_prefix, i,
2816
              pThreadInfo->cols);
2817
    } else {
2818 2819 2820
      if (superTblInfo == NULL) {
        errorPrint("%s() LN%d, use metric, but super table info is NULL\n",
                  __func__, __LINE__);
2821
        free(buffer);
2822 2823 2824 2825 2826 2827 2828 2829 2830 2831
        exit(-1);
      } else {
        if (0 == len) {
          batchNum = 0;
          memset(buffer, 0, buff_len);
          len += snprintf(buffer + len,
                  buff_len - len, "create table ");
        }
        char* tagsValBuf = NULL;
        if (0 == superTblInfo->tagSource) {
2832
          tagsValBuf = generateTagVaulesForStb(superTblInfo, i);
2833 2834 2835 2836 2837 2838 2839 2840 2841 2842
        } else {
          tagsValBuf = getTagValueFromTagSample(
                  superTblInfo,
                  i % superTblInfo->tagSampleCount);
        }
        if (NULL == tagsValBuf) {
          free(buffer);
          return NULL;
        }
        len += snprintf(buffer + len,
2843
                buff_len - len,
2844
                "if not exists %s.%s%"PRIu64" using %s.%s tags %s ",
2845 2846
                pThreadInfo->db_name, superTblInfo->childTblPrefix,
                i, pThreadInfo->db_name,
2847 2848 2849 2850
                superTblInfo->sTblName, tagsValBuf);
        free(tagsValBuf);
        batchNum++;
        if ((batchNum < superTblInfo->batchCreateTableNum)
2851
                && ((buff_len - len)
2852 2853 2854
                    >= (superTblInfo->lenOfTagOfOneRow + 256))) {
          continue;
        }
2855 2856 2857 2858
      }
    }

    len = 0;
2859
    verbosePrint("%s() LN%d %s\n", __func__, __LINE__, buffer);
2860
    if (0 != queryDbExec(pThreadInfo->taos, buffer, NO_INSERT_TYPE, false)){
2861
      errorPrint( "queryDbExec() failed. buffer:\n%s\n", buffer);
2862
      free(buffer);
2863 2864 2865 2866 2867
      return NULL;
    }

    int64_t  currentPrintTime = taosGetTimestampMs();
    if (currentPrintTime - lastPrintTime > 30*1000) {
2868
      printf("thread[%d] already create %"PRIu64" - %"PRIu64" tables\n",
2869
              pThreadInfo->threadID, pThreadInfo->start_table_from, i);
2870 2871 2872
      lastPrintTime = currentPrintTime;
    }
  }
2873

2874
  if (0 != len) {
2875
    verbosePrint("%s() %d buffer: %s\n", __func__, __LINE__, buffer);
2876
    if (0 != queryDbExec(pThreadInfo->taos, buffer, NO_INSERT_TYPE, false)) {
2877
      errorPrint( "queryDbExec() failed. buffer:\n%s\n", buffer);
2878
    }
2879
  }
2880

2881 2882 2883 2884
  free(buffer);
  return NULL;
}

2885
static int startMultiThreadCreateChildTable(
2886
        char* cols, int threads, uint64_t startFrom, uint64_t ntables,
2887
        char* db_name, SSuperTable* superTblInfo) {
2888

2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900
  pthread_t *pids = malloc(threads * sizeof(pthread_t));
  threadInfo *infos = malloc(threads * sizeof(threadInfo));

  if ((NULL == pids) || (NULL == infos)) {
    printf("malloc failed\n");
    exit(-1);
  }

  if (threads < 1) {
    threads = 1;
  }

2901
  uint64_t a = ntables / threads;
2902 2903 2904 2905 2906
  if (a < 1) {
    threads = ntables;
    a = 1;
  }

2907
  uint64_t b = 0;
2908
  b = ntables % threads;
2909

2910
  for (int64_t i = 0; i < threads; i++) {
2911 2912
    threadInfo *t_info = infos + i;
    t_info->threadID = i;
H
Hui Li 已提交
2913
    tstrncpy(t_info->db_name, db_name, MAX_DB_NAME_SIZE);
2914
    t_info->superTblInfo = superTblInfo;
2915
    verbosePrint("%s() %d db_name: %s\n", __func__, __LINE__, db_name);
2916 2917 2918 2919 2920 2921
    t_info->taos = taos_connect(
            g_Dbs.host,
            g_Dbs.user,
            g_Dbs.password,
            db_name,
            g_Dbs.port);
2922
    if (t_info->taos == NULL) {
2923 2924
      errorPrint( "%s() LN%d, Failed to connect to TDengine, reason:%s\n",
         __func__, __LINE__, taos_errstr(NULL));
2925
      free(pids);
2926
      free(infos);
2927 2928
      return -1;
    }
2929 2930 2931 2932 2933

    t_info->start_table_from = startFrom;
    t_info->ntables = i<b?a+1:a;
    t_info->end_table_to = i < b ? startFrom + a : startFrom + a - 1;
    startFrom = t_info->end_table_to + 1;
2934
    t_info->use_metric = true;
2935
    t_info->cols = cols;
2936
    t_info->minDelay = UINT64_MAX;
2937 2938
    pthread_create(pids + i, NULL, createTable, t_info);
  }
2939

2940 2941 2942 2943 2944 2945 2946 2947 2948 2949
  for (int i = 0; i < threads; i++) {
    pthread_join(pids[i], NULL);
  }

  for (int i = 0; i < threads; i++) {
    threadInfo *t_info = infos + i;
    taos_close(t_info->taos);
  }

  free(pids);
2950
  free(infos);
2951 2952

  return 0;
2953 2954
}

2955 2956 2957 2958
static void createChildTables() {
    char tblColsBuf[MAX_SQL_SIZE];
    int len;

2959
  for (int i = 0; i < g_Dbs.dbCount; i++) {
2960 2961 2962 2963 2964 2965 2966 2967
    if (g_Dbs.use_metric) {
      if (g_Dbs.db[i].superTblCount > 0) {
          // with super table
        for (int j = 0; j < g_Dbs.db[i].superTblCount; j++) {
          if ((AUTO_CREATE_SUBTBL == g_Dbs.db[i].superTbls[j].autoCreateTable)
                || (TBL_ALREADY_EXISTS == g_Dbs.db[i].superTbls[j].childTblExists)) {
            continue;
          }
2968

2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982
          verbosePrint("%s() LN%d: %s\n", __func__, __LINE__,
                  g_Dbs.db[i].superTbls[j].colsOfCreateChildTable);
          int startFrom = 0;
          g_totalChildTables += g_Dbs.db[i].superTbls[j].childTblCount;

          verbosePrint("%s() LN%d: create %d child tables from %d\n",
                  __func__, __LINE__, g_totalChildTables, startFrom);
          startMultiThreadCreateChildTable(
                g_Dbs.db[i].superTbls[j].colsOfCreateChildTable,
                g_Dbs.threadCountByCreateTbl,
                startFrom,
                g_Dbs.db[i].superTbls[j].childTblCount,
                g_Dbs.db[i].dbName, &(g_Dbs.db[i].superTbls[j]));
        }
2983 2984
      }
    } else {
2985 2986
      // normal table
      len = snprintf(tblColsBuf, MAX_SQL_SIZE, "(TS TIMESTAMP");
2987
      for (int j = 0; j < g_args.num_of_CPR; j++) {
2988 2989 2990 2991
          if ((strncasecmp(g_args.datatype[j], "BINARY", strlen("BINARY")) == 0)
                  || (strncasecmp(g_args.datatype[j],
                      "NCHAR", strlen("NCHAR")) == 0)) {
              snprintf(tblColsBuf + len, MAX_SQL_SIZE - len,
2992
                      ", COL%d %s(%d)", j, g_args.datatype[j], g_args.len_of_binary);
2993 2994 2995 2996 2997 2998
          } else {
              snprintf(tblColsBuf + len, MAX_SQL_SIZE - len,
                      ", COL%d %s", j, g_args.datatype[j]);
          }
          len = strlen(tblColsBuf);
      }
2999

3000
      snprintf(tblColsBuf + len, MAX_SQL_SIZE - len, ")");
3001

3002
      verbosePrint("%s() LN%d: dbName: %s num of tb: %"PRIu64" schema: %s\n",
3003 3004 3005 3006 3007 3008 3009 3010 3011
              __func__, __LINE__,
              g_Dbs.db[i].dbName, g_args.num_of_tables, tblColsBuf);
      startMultiThreadCreateChildTable(
            tblColsBuf,
            g_Dbs.threadCountByCreateTbl,
            0,
            g_args.num_of_tables,
            g_Dbs.db[i].dbName,
            NULL);
3012
    }
3013 3014 3015 3016 3017 3018
  }
}

/*
  Read 10000 lines at most. If more than 10000 lines, continue to read after using
*/
3019
static int readTagFromCsvFileToMem(SSuperTable  * superTblInfo) {
3020 3021 3022
  size_t  n = 0;
  ssize_t readLen = 0;
  char *  line = NULL;
3023

3024 3025
  FILE *fp = fopen(superTblInfo->tagsFile, "r");
  if (fp == NULL) {
3026 3027
    printf("Failed to open tags file: %s, reason:%s\n",
            superTblInfo->tagsFile, strerror(errno));
3028 3029 3030 3031 3032 3033 3034
    return -1;
  }

  if (superTblInfo->tagDataBuf) {
    free(superTblInfo->tagDataBuf);
    superTblInfo->tagDataBuf = NULL;
  }
3035

3036 3037 3038 3039 3040 3041 3042 3043 3044
  int tagCount = 10000;
  int count = 0;
  char* tagDataBuf = calloc(1, superTblInfo->lenOfTagOfOneRow * tagCount);
  if (tagDataBuf == NULL) {
    printf("Failed to calloc, reason:%s\n", strerror(errno));
    fclose(fp);
    return -1;
  }

3045
  while((readLen = tgetline(&line, &n, fp)) != -1) {
3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057
    if (('\r' == line[readLen - 1]) || ('\n' == line[readLen - 1])) {
      line[--readLen] = 0;
    }

    if (readLen == 0) {
      continue;
    }

    memcpy(tagDataBuf + count * superTblInfo->lenOfTagOfOneRow, line, readLen);
    count++;

    if (count >= tagCount - 1) {
3058 3059
      char *tmp = realloc(tagDataBuf,
              (size_t)tagCount*1.5*superTblInfo->lenOfTagOfOneRow);
3060 3061 3062
      if (tmp != NULL) {
        tagDataBuf = tmp;
        tagCount = (int)(tagCount*1.5);
3063 3064
        memset(tagDataBuf + count*superTblInfo->lenOfTagOfOneRow,
                0, (size_t)((tagCount-count)*superTblInfo->lenOfTagOfOneRow));
3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091
      } else {
        // exit, if allocate more memory failed
        printf("realloc fail for save tag val from %s\n", superTblInfo->tagsFile);
        tmfree(tagDataBuf);
        free(line);
        fclose(fp);
        return -1;
      }
    }
  }

  superTblInfo->tagDataBuf = tagDataBuf;
  superTblInfo->tagSampleCount = count;

  free(line);
  fclose(fp);
  return 0;
}

int readSampleFromJsonFileToMem(SSuperTable  * superTblInfo) {
  // TODO
  return 0;
}

/*
  Read 10000 lines at most. If more than 10000 lines, continue to read after using
*/
3092 3093
static int readSampleFromCsvFileToMem(
        SSuperTable* superTblInfo) {
3094 3095 3096 3097
  size_t  n = 0;
  ssize_t readLen = 0;
  char *  line = NULL;
  int getRows = 0;
3098

3099 3100
  FILE*  fp = fopen(superTblInfo->sampleFile, "r");
  if (fp == NULL) {
3101
      errorPrint( "Failed to open sample file: %s, reason:%s\n",
3102 3103 3104
              superTblInfo->sampleFile, strerror(errno));
      return -1;
  }
3105

3106
  assert(superTblInfo->sampleDataBuf);
3107 3108
  memset(superTblInfo->sampleDataBuf, 0,
          MAX_SAMPLES_ONCE_FROM_FILE * superTblInfo->lenOfOneRow);
3109
  while(1) {
3110
    readLen = tgetline(&line, &n, fp);
3111 3112
    if (-1 == readLen) {
      if(0 != fseek(fp, 0, SEEK_SET)) {
3113
        errorPrint( "Failed to fseek file: %s, reason:%s\n",
3114
                superTblInfo->sampleFile, strerror(errno));
3115
        fclose(fp);
3116 3117 3118 3119
        return -1;
      }
      continue;
    }
3120

3121 3122 3123 3124 3125 3126 3127 3128 3129
    if (('\r' == line[readLen - 1]) || ('\n' == line[readLen - 1])) {
      line[--readLen] = 0;
    }

    if (readLen == 0) {
      continue;
    }

    if (readLen > superTblInfo->lenOfOneRow) {
3130
      printf("sample row len[%d] overflow define schema len[%"PRIu64"], so discard this row\n",
3131
              (int32_t)readLen, superTblInfo->lenOfOneRow);
3132 3133 3134
      continue;
    }

3135 3136
    memcpy(superTblInfo->sampleDataBuf + getRows * superTblInfo->lenOfOneRow,
          line, readLen);
3137 3138 3139 3140 3141 3142 3143
    getRows++;

    if (getRows == MAX_SAMPLES_ONCE_FROM_FILE) {
      break;
    }
  }

3144
  fclose(fp);
3145 3146 3147 3148
  tmfree(line);
  return 0;
}

3149 3150
static bool getColumnAndTagTypeFromInsertJsonFile(
        cJSON* stbInfo, SSuperTable* superTbls) {
3151
  bool  ret = false;
3152

3153
  // columns
3154 3155
  cJSON *columns = cJSON_GetObjectItem(stbInfo, "columns");
  if (columns && columns->type != cJSON_Array) {
3156
    printf("ERROR: failed to read json, columns not found\n");
3157 3158 3159 3160 3161 3162
    goto PARSE_OVER;
  } else if (NULL == columns) {
    superTbls->columnCount = 0;
    superTbls->tagCount    = 0;
    return true;
  }
3163

3164
  int columnSize = cJSON_GetArraySize(columns);
3165
  if ((columnSize + 1/* ts */) > MAX_COLUMN_COUNT) {
3166 3167
    errorPrint("%s() LN%d, failed to read json, column size overflow, max column size is %d\n",
            __func__, __LINE__, MAX_COLUMN_COUNT);
3168 3169 3170 3171 3172 3173
    goto PARSE_OVER;
  }

  int count = 1;
  int index = 0;
  StrColumn    columnCase;
3174

3175
  //superTbls->columnCount = columnSize;
3176 3177 3178 3179 3180 3181 3182
  for (int k = 0; k < columnSize; ++k) {
    cJSON* column = cJSON_GetArrayItem(columns, k);
    if (column == NULL) continue;

    count = 1;
    cJSON* countObj = cJSON_GetObjectItem(column, "count");
    if (countObj && countObj->type == cJSON_Number) {
3183
      count = countObj->valueint;
3184
    } else if (countObj && countObj->type != cJSON_Number) {
3185 3186
      errorPrint("%s() LN%d, failed to read json, column count not found\n",
          __func__, __LINE__);
3187 3188 3189 3190 3191
      goto PARSE_OVER;
    } else {
      count = 1;
    }

3192
    // column info
3193 3194
    memset(&columnCase, 0, sizeof(StrColumn));
    cJSON *dataType = cJSON_GetObjectItem(column, "type");
3195 3196 3197 3198
    if (!dataType || dataType->type != cJSON_String
        || dataType->valuestring == NULL) {
      errorPrint("%s() LN%d: failed to read json, column type not found\n",
          __func__, __LINE__);
3199 3200
      goto PARSE_OVER;
    }
3201 3202
    //tstrncpy(superTbls->columns[k].dataType, dataType->valuestring, MAX_TB_NAME_SIZE);
    tstrncpy(columnCase.dataType, dataType->valuestring, MAX_TB_NAME_SIZE);
3203

3204 3205
    cJSON* dataLen = cJSON_GetObjectItem(column, "len");
    if (dataLen && dataLen->type == cJSON_Number) {
3206
      columnCase.dataLen = dataLen->valueint;
3207
    } else if (dataLen && dataLen->type != cJSON_Number) {
3208 3209
      debugPrint("%s() LN%d: failed to read json, column len not found\n",
          __func__, __LINE__);
3210 3211 3212 3213
      goto PARSE_OVER;
    } else {
      columnCase.dataLen = 8;
    }
3214

3215
    for (int n = 0; n < count; ++n) {
3216 3217 3218
      tstrncpy(superTbls->columns[index].dataType,
              columnCase.dataType, MAX_TB_NAME_SIZE);
      superTbls->columns[index].dataLen = columnCase.dataLen;
3219 3220
      index++;
    }
3221
  }
3222

3223 3224
  if ((index + 1 /* ts */) > MAX_COLUMN_COUNT) {
    errorPrint("%s() LN%d, failed to read json, column size overflow, allowed max column size is %d\n",
3225 3226 3227 3228
            __func__, __LINE__, MAX_COLUMN_COUNT);
    goto PARSE_OVER;
  }

3229
  superTbls->columnCount = index;
3230

3231 3232
  count = 1;
  index = 0;
3233
  // tags
3234 3235
  cJSON *tags = cJSON_GetObjectItem(stbInfo, "tags");
  if (!tags || tags->type != cJSON_Array) {
3236 3237
    errorPrint("%s() LN%d, failed to read json, tags not found\n",
        __func__, __LINE__);
3238 3239
    goto PARSE_OVER;
  }
3240

3241 3242
  int tagSize = cJSON_GetArraySize(tags);
  if (tagSize > MAX_TAG_COUNT) {
3243 3244
    errorPrint("%s() LN%d, failed to read json, tags size overflow, max tag size is %d\n",
        __func__, __LINE__, MAX_TAG_COUNT);
3245 3246
    goto PARSE_OVER;
  }
3247 3248

  //superTbls->tagCount = tagSize;
3249 3250 3251
  for (int k = 0; k < tagSize; ++k) {
    cJSON* tag = cJSON_GetArrayItem(tags, k);
    if (tag == NULL) continue;
3252

3253 3254 3255
    count = 1;
    cJSON* countObj = cJSON_GetObjectItem(tag, "count");
    if (countObj && countObj->type == cJSON_Number) {
3256
      count = countObj->valueint;
3257
    } else if (countObj && countObj->type != cJSON_Number) {
3258
      printf("ERROR: failed to read json, column count not found\n");
3259 3260 3261 3262 3263
      goto PARSE_OVER;
    } else {
      count = 1;
    }

3264
    // column info
3265 3266
    memset(&columnCase, 0, sizeof(StrColumn));
    cJSON *dataType = cJSON_GetObjectItem(tag, "type");
3267 3268 3269 3270
    if (!dataType || dataType->type != cJSON_String
        || dataType->valuestring == NULL) {
      errorPrint("%s() LN%d, failed to read json, tag type not found\n",
          __func__, __LINE__);
3271 3272
      goto PARSE_OVER;
    }
3273
    tstrncpy(columnCase.dataType, dataType->valuestring, MAX_TB_NAME_SIZE);
3274

3275 3276
    cJSON* dataLen = cJSON_GetObjectItem(tag, "len");
    if (dataLen && dataLen->type == cJSON_Number) {
3277
      columnCase.dataLen = dataLen->valueint;
3278
    } else if (dataLen && dataLen->type != cJSON_Number) {
3279 3280
      errorPrint("%s() LN%d, failed to read json, column len not found\n",
          __func__, __LINE__);
3281 3282 3283
      goto PARSE_OVER;
    } else {
      columnCase.dataLen = 0;
3284 3285
    }

3286
    for (int n = 0; n < count; ++n) {
3287 3288
      tstrncpy(superTbls->tags[index].dataType, columnCase.dataType,
          MAX_TB_NAME_SIZE);
3289
      superTbls->tags[index].dataLen = columnCase.dataLen;
3290 3291
      index++;
    }
3292
  }
3293 3294

  if (index > MAX_TAG_COUNT) {
3295
    errorPrint("%s() LN%d, failed to read json, tags size overflow, allowed max tag count is %d\n",
3296 3297 3298 3299
        __func__, __LINE__, MAX_TAG_COUNT);
    goto PARSE_OVER;
  }

3300 3301
  superTbls->tagCount = index;

3302 3303 3304
  if ((superTbls->columnCount + superTbls->tagCount + 1 /* ts */) > MAX_COLUMN_COUNT) {
    errorPrint("%s() LN%d, columns + tags is more than allowed max columns count: %d\n",
        __func__, __LINE__, MAX_COLUMN_COUNT);
3305 3306
    goto PARSE_OVER;
  }
3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317
  ret = true;

PARSE_OVER:
  return ret;
}

static bool getMetaFromInsertJsonFile(cJSON* root) {
  bool  ret = false;

  cJSON* cfgdir = cJSON_GetObjectItem(root, "cfgdir");
  if (cfgdir && cfgdir->type == cJSON_String && cfgdir->valuestring != NULL) {
3318
    tstrncpy(g_Dbs.cfgDir, cfgdir->valuestring, MAX_FILE_NAME_LEN);
3319 3320 3321 3322
  }

  cJSON* host = cJSON_GetObjectItem(root, "host");
  if (host && host->type == cJSON_String && host->valuestring != NULL) {
3323
    tstrncpy(g_Dbs.host, host->valuestring, MAX_HOSTNAME_SIZE);
3324
  } else if (!host) {
3325
    tstrncpy(g_Dbs.host, "127.0.0.1", MAX_HOSTNAME_SIZE);
3326
  } else {
3327
    printf("ERROR: failed to read json, host not found\n");
3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339
    goto PARSE_OVER;
  }

  cJSON* port = cJSON_GetObjectItem(root, "port");
  if (port && port->type == cJSON_Number) {
    g_Dbs.port = port->valueint;
  } else if (!port) {
    g_Dbs.port = 6030;
  }

  cJSON* user = cJSON_GetObjectItem(root, "user");
  if (user && user->type == cJSON_String && user->valuestring != NULL) {
3340
    tstrncpy(g_Dbs.user, user->valuestring, MAX_USERNAME_SIZE);
3341
  } else if (!user) {
3342
    tstrncpy(g_Dbs.user, "root", MAX_USERNAME_SIZE);
3343 3344 3345 3346
  }

  cJSON* password = cJSON_GetObjectItem(root, "password");
  if (password && password->type == cJSON_String && password->valuestring != NULL) {
3347
    tstrncpy(g_Dbs.password, password->valuestring, MAX_PASSWORD_SIZE);
3348
  } else if (!password) {
3349
    tstrncpy(g_Dbs.password, "taosdata", MAX_PASSWORD_SIZE);
3350 3351 3352 3353
  }

  cJSON* resultfile = cJSON_GetObjectItem(root, "result_file");
  if (resultfile && resultfile->type == cJSON_String && resultfile->valuestring != NULL) {
3354
    tstrncpy(g_Dbs.resultFile, resultfile->valuestring, MAX_FILE_NAME_LEN);
3355
  } else if (!resultfile) {
3356
    tstrncpy(g_Dbs.resultFile, "./insert_res.txt", MAX_FILE_NAME_LEN);
3357 3358 3359 3360 3361 3362 3363 3364
  }

  cJSON* threads = cJSON_GetObjectItem(root, "thread_count");
  if (threads && threads->type == cJSON_Number) {
    g_Dbs.threadCount = threads->valueint;
  } else if (!threads) {
    g_Dbs.threadCount = 1;
  } else {
3365
    printf("ERROR: failed to read json, threads not found\n");
3366
    goto PARSE_OVER;
3367 3368
  }

3369 3370 3371 3372
  cJSON* threads2 = cJSON_GetObjectItem(root, "thread_count_create_tbl");
  if (threads2 && threads2->type == cJSON_Number) {
    g_Dbs.threadCountByCreateTbl = threads2->valueint;
  } else if (!threads2) {
3373
    g_Dbs.threadCountByCreateTbl = 1;
3374
  } else {
3375 3376
    errorPrint("%s() LN%d, failed to read json, threads2 not found\n",
            __func__, __LINE__);
3377
    goto PARSE_OVER;
3378
  }
3379

3380 3381
  cJSON* gInsertInterval = cJSON_GetObjectItem(root, "insert_interval");
  if (gInsertInterval && gInsertInterval->type == cJSON_Number) {
3382 3383 3384 3385 3386
    if (gInsertInterval->valueint <0) {
      errorPrint("%s() LN%d, failed to read json, insert interval input mistake\n",
            __func__, __LINE__);
      goto PARSE_OVER;
    }
3387 3388 3389 3390
    g_args.insert_interval = gInsertInterval->valueint;
  } else if (!gInsertInterval) {
    g_args.insert_interval = 0;
  } else {
3391 3392
    errorPrint("%s() LN%d, failed to read json, insert_interval input mistake\n",
        __func__, __LINE__);
3393 3394
    goto PARSE_OVER;
  }
3395

3396 3397
  cJSON* interlaceRows = cJSON_GetObjectItem(root, "interlace_rows");
  if (interlaceRows && interlaceRows->type == cJSON_Number) {
3398 3399 3400 3401 3402 3403
    if (interlaceRows->valueint < 0) {
      errorPrint("%s() LN%d, failed to read json, interlace_rows input mistake\n",
        __func__, __LINE__);
      goto PARSE_OVER;

    }
3404
    g_args.interlace_rows = interlaceRows->valueint;
3405 3406 3407

    // rows per table need be less than insert batch
    if (g_args.interlace_rows > g_args.num_of_RPR) {
3408
      printf("NOTICE: interlace rows value %"PRIu64" > num_of_records_per_req %"PRIu64"\n\n",
3409
              g_args.interlace_rows, g_args.num_of_RPR);
3410
      printf("        interlace rows value will be set to num_of_records_per_req %"PRIu64"\n\n",
3411
              g_args.num_of_RPR);
3412
      printf("        press Enter key to continue or Ctrl-C to stop.");
3413 3414 3415
      (void)getchar();
      g_args.interlace_rows = g_args.num_of_RPR;
    }
3416
  } else if (!interlaceRows) {
3417
    g_args.interlace_rows = 0; // 0 means progressive mode, > 0 mean interlace mode. max value is less or equ num_of_records_per_req
3418
  } else {
3419 3420
    errorPrint("%s() LN%d, failed to read json, interlace_rows input mistake\n",
        __func__, __LINE__);
3421
    goto PARSE_OVER;
3422
  }
3423

3424 3425
  cJSON* maxSqlLen = cJSON_GetObjectItem(root, "max_sql_len");
  if (maxSqlLen && maxSqlLen->type == cJSON_Number) {
3426 3427 3428 3429 3430
    if (maxSqlLen->valueint < 0) {
      errorPrint("%s() LN%d, failed to read json, max_sql_len input mistake\n",
        __func__, __LINE__);
      goto PARSE_OVER;
    }
3431 3432
    g_args.max_sql_len = maxSqlLen->valueint;
  } else if (!maxSqlLen) {
3433
    g_args.max_sql_len = (1024*1024);
3434
  } else {
3435 3436
    errorPrint("%s() LN%d, failed to read json, max_sql_len input mistake\n",
        __func__, __LINE__);
3437 3438 3439 3440 3441
    goto PARSE_OVER;
  }

  cJSON* numRecPerReq = cJSON_GetObjectItem(root, "num_of_records_per_req");
  if (numRecPerReq && numRecPerReq->type == cJSON_Number) {
3442
    if (numRecPerReq->valueint <= 0) {
3443 3444 3445 3446
      errorPrint("%s() LN%d, failed to read json, num_of_records_per_req input mistake\n",
        __func__, __LINE__);
      goto PARSE_OVER;
    }
3447 3448
    g_args.num_of_RPR = numRecPerReq->valueint;
  } else if (!numRecPerReq) {
3449
    g_args.num_of_RPR = UINT64_MAX;
3450
  } else {
3451 3452
    errorPrint("%s() LN%d, failed to read json, num_of_records_per_req not found\n",
        __func__, __LINE__);
3453 3454 3455
    goto PARSE_OVER;
  }

3456
  cJSON *answerPrompt = cJSON_GetObjectItem(root, "confirm_parameter_prompt"); // yes, no,
3457
  if (answerPrompt
3458 3459
          && answerPrompt->type == cJSON_String
          && answerPrompt->valuestring != NULL) {
3460 3461 3462 3463 3464 3465 3466 3467 3468 3469
    if (0 == strncasecmp(answerPrompt->valuestring, "yes", 3)) {
      g_args.answer_yes = false;
    } else if (0 == strncasecmp(answerPrompt->valuestring, "no", 2)) {
      g_args.answer_yes = true;
    } else {
      g_args.answer_yes = false;
    }
  } else if (!answerPrompt) {
    g_args.answer_yes = false;
  } else {
3470
    printf("ERROR: failed to read json, confirm_parameter_prompt not found\n");
3471
    goto PARSE_OVER;
3472
  }
3473 3474 3475

  cJSON* dbs = cJSON_GetObjectItem(root, "databases");
  if (!dbs || dbs->type != cJSON_Array) {
3476
    printf("ERROR: failed to read json, databases not found\n");
3477 3478 3479 3480 3481
    goto PARSE_OVER;
  }

  int dbSize = cJSON_GetArraySize(dbs);
  if (dbSize > MAX_DB_COUNT) {
3482
    errorPrint(
3483 3484
            "ERROR: failed to read json, databases size overflow, max database is %d\n",
            MAX_DB_COUNT);
3485 3486 3487 3488 3489 3490 3491 3492
    goto PARSE_OVER;
  }

  g_Dbs.dbCount = dbSize;
  for (int i = 0; i < dbSize; ++i) {
    cJSON* dbinfos = cJSON_GetArrayItem(dbs, i);
    if (dbinfos == NULL) continue;

3493
    // dbinfo
3494 3495
    cJSON *dbinfo = cJSON_GetObjectItem(dbinfos, "dbinfo");
    if (!dbinfo || dbinfo->type != cJSON_Object) {
3496
      printf("ERROR: failed to read json, dbinfo not found\n");
3497 3498
      goto PARSE_OVER;
    }
3499

3500 3501
    cJSON *dbName = cJSON_GetObjectItem(dbinfo, "name");
    if (!dbName || dbName->type != cJSON_String || dbName->valuestring == NULL) {
3502
      printf("ERROR: failed to read json, db name not found\n");
3503 3504
      goto PARSE_OVER;
    }
3505
    tstrncpy(g_Dbs.db[i].dbName, dbName->valuestring, MAX_DB_NAME_SIZE);
3506 3507 3508

    cJSON *drop = cJSON_GetObjectItem(dbinfo, "drop");
    if (drop && drop->type == cJSON_String && drop->valuestring != NULL) {
3509 3510
      if (0 == strncasecmp(drop->valuestring, "yes", strlen("yes"))) {
        g_Dbs.db[i].drop = true;
3511
      } else {
3512
        g_Dbs.db[i].drop = false;
3513
      }
3514
    } else if (!drop) {
3515
      g_Dbs.db[i].drop = g_args.drop_database;
3516
    } else {
3517 3518
      errorPrint("%s() LN%d, failed to read json, drop input mistake\n",
              __func__, __LINE__);
3519 3520 3521 3522
      goto PARSE_OVER;
    }

    cJSON *precision = cJSON_GetObjectItem(dbinfo, "precision");
3523 3524 3525 3526
    if (precision && precision->type == cJSON_String
            && precision->valuestring != NULL) {
      tstrncpy(g_Dbs.db[i].dbCfg.precision, precision->valuestring,
              MAX_DB_NAME_SIZE);
3527
    } else if (!precision) {
3528
      //tstrncpy(g_Dbs.db[i].dbCfg.precision, "ms", MAX_DB_NAME_SIZE);
3529 3530
      memset(g_Dbs.db[i].dbCfg.precision, 0, MAX_DB_NAME_SIZE);
    } else {
3531
      printf("ERROR: failed to read json, precision not found\n");
3532 3533 3534 3535 3536 3537 3538 3539 3540
      goto PARSE_OVER;
    }

    cJSON* update = cJSON_GetObjectItem(dbinfo, "update");
    if (update && update->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.update = update->valueint;
    } else if (!update) {
      g_Dbs.db[i].dbCfg.update = -1;
    } else {
3541
      printf("ERROR: failed to read json, update not found\n");
3542 3543 3544 3545 3546 3547 3548 3549 3550
      goto PARSE_OVER;
    }

    cJSON* replica = cJSON_GetObjectItem(dbinfo, "replica");
    if (replica && replica->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.replica = replica->valueint;
    } else if (!replica) {
      g_Dbs.db[i].dbCfg.replica = -1;
    } else {
3551
      printf("ERROR: failed to read json, replica not found\n");
3552 3553 3554 3555 3556 3557 3558 3559 3560
      goto PARSE_OVER;
    }

    cJSON* keep = cJSON_GetObjectItem(dbinfo, "keep");
    if (keep && keep->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.keep = keep->valueint;
    } else if (!keep) {
      g_Dbs.db[i].dbCfg.keep = -1;
    } else {
3561
     printf("ERROR: failed to read json, keep not found\n");
3562 3563
     goto PARSE_OVER;
    }
3564

3565 3566 3567 3568 3569 3570
    cJSON* days = cJSON_GetObjectItem(dbinfo, "days");
    if (days && days->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.days = days->valueint;
    } else if (!days) {
      g_Dbs.db[i].dbCfg.days = -1;
    } else {
3571
     printf("ERROR: failed to read json, days not found\n");
3572 3573
     goto PARSE_OVER;
    }
3574

3575 3576 3577 3578 3579 3580
    cJSON* cache = cJSON_GetObjectItem(dbinfo, "cache");
    if (cache && cache->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.cache = cache->valueint;
    } else if (!cache) {
      g_Dbs.db[i].dbCfg.cache = -1;
    } else {
3581
     printf("ERROR: failed to read json, cache not found\n");
3582 3583
     goto PARSE_OVER;
    }
3584

3585 3586 3587 3588 3589 3590
    cJSON* blocks= cJSON_GetObjectItem(dbinfo, "blocks");
    if (blocks && blocks->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.blocks = blocks->valueint;
    } else if (!blocks) {
      g_Dbs.db[i].dbCfg.blocks = -1;
    } else {
3591
     printf("ERROR: failed to read json, block not found\n");
3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608
     goto PARSE_OVER;
    }

    //cJSON* maxtablesPerVnode= cJSON_GetObjectItem(dbinfo, "maxtablesPerVnode");
    //if (maxtablesPerVnode && maxtablesPerVnode->type == cJSON_Number) {
    //  g_Dbs.db[i].dbCfg.maxtablesPerVnode = maxtablesPerVnode->valueint;
    //} else if (!maxtablesPerVnode) {
    //  g_Dbs.db[i].dbCfg.maxtablesPerVnode = TSDB_DEFAULT_TABLES;
    //} else {
    // printf("failed to read json, maxtablesPerVnode not found");
    // goto PARSE_OVER;
    //}

    cJSON* minRows= cJSON_GetObjectItem(dbinfo, "minRows");
    if (minRows && minRows->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.minRows = minRows->valueint;
    } else if (!minRows) {
3609
      g_Dbs.db[i].dbCfg.minRows = 0;    // 0 means default
3610
    } else {
3611
     printf("ERROR: failed to read json, minRows not found\n");
3612 3613 3614 3615 3616 3617 3618
     goto PARSE_OVER;
    }

    cJSON* maxRows= cJSON_GetObjectItem(dbinfo, "maxRows");
    if (maxRows && maxRows->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.maxRows = maxRows->valueint;
    } else if (!maxRows) {
3619
      g_Dbs.db[i].dbCfg.maxRows = 0;    // 0 means default
3620
    } else {
3621
     printf("ERROR: failed to read json, maxRows not found\n");
3622 3623 3624 3625 3626 3627 3628 3629 3630
     goto PARSE_OVER;
    }

    cJSON* comp= cJSON_GetObjectItem(dbinfo, "comp");
    if (comp && comp->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.comp = comp->valueint;
    } else if (!comp) {
      g_Dbs.db[i].dbCfg.comp = -1;
    } else {
3631
     printf("ERROR: failed to read json, comp not found\n");
3632 3633 3634 3635 3636 3637 3638 3639 3640
     goto PARSE_OVER;
    }

    cJSON* walLevel= cJSON_GetObjectItem(dbinfo, "walLevel");
    if (walLevel && walLevel->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.walLevel = walLevel->valueint;
    } else if (!walLevel) {
      g_Dbs.db[i].dbCfg.walLevel = -1;
    } else {
3641
     printf("ERROR: failed to read json, walLevel not found\n");
3642 3643 3644
     goto PARSE_OVER;
    }

3645 3646 3647 3648 3649 3650
    cJSON* cacheLast= cJSON_GetObjectItem(dbinfo, "cachelast");
    if (cacheLast && cacheLast->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.cacheLast = cacheLast->valueint;
    } else if (!cacheLast) {
      g_Dbs.db[i].dbCfg.cacheLast = -1;
    } else {
3651
     printf("ERROR: failed to read json, cacheLast not found\n");
3652 3653 3654
     goto PARSE_OVER;
    }

3655 3656 3657 3658
    cJSON* quorum= cJSON_GetObjectItem(dbinfo, "quorum");
    if (quorum && quorum->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.quorum = quorum->valueint;
    } else if (!quorum) {
3659
      g_Dbs.db[i].dbCfg.quorum = 1;
3660
    } else {
3661
     printf("failed to read json, quorum input mistake");
3662 3663 3664 3665 3666 3667 3668 3669 3670
     goto PARSE_OVER;
    }

    cJSON* fsync= cJSON_GetObjectItem(dbinfo, "fsync");
    if (fsync && fsync->type == cJSON_Number) {
      g_Dbs.db[i].dbCfg.fsync = fsync->valueint;
    } else if (!fsync) {
      g_Dbs.db[i].dbCfg.fsync = -1;
    } else {
3671 3672 3673
      errorPrint("%s() LN%d, failed to read json, fsync input mistake\n",
              __func__, __LINE__);
      goto PARSE_OVER;
3674
    }
3675

3676
    // super_talbes
3677 3678
    cJSON *stables = cJSON_GetObjectItem(dbinfos, "super_tables");
    if (!stables || stables->type != cJSON_Array) {
3679 3680
      errorPrint("%s() LN%d, failed to read json, super_tables not found\n",
              __func__, __LINE__);
3681
      goto PARSE_OVER;
3682 3683
    }

3684 3685
    int stbSize = cJSON_GetArraySize(stables);
    if (stbSize > MAX_SUPER_TABLE_COUNT) {
3686
      errorPrint(
3687 3688
              "%s() LN%d, failed to read json, supertable size overflow, max supertable is %d\n",
              __func__, __LINE__, MAX_SUPER_TABLE_COUNT);
3689 3690 3691 3692 3693 3694 3695
      goto PARSE_OVER;
    }

    g_Dbs.db[i].superTblCount = stbSize;
    for (int j = 0; j < stbSize; ++j) {
      cJSON* stbInfo = cJSON_GetArrayItem(stables, j);
      if (stbInfo == NULL) continue;
3696 3697

      // dbinfo
3698 3699
      cJSON *stbName = cJSON_GetObjectItem(stbInfo, "name");
      if (!stbName || stbName->type != cJSON_String || stbName->valuestring == NULL) {
3700 3701
        errorPrint("%s() LN%d, failed to read json, stb name not found\n",
                __func__, __LINE__);
3702 3703
        goto PARSE_OVER;
      }
3704
      tstrncpy(g_Dbs.db[i].superTbls[j].sTblName, stbName->valuestring, MAX_TB_NAME_SIZE);
3705

3706 3707
      cJSON *prefix = cJSON_GetObjectItem(stbInfo, "childtable_prefix");
      if (!prefix || prefix->type != cJSON_String || prefix->valuestring == NULL) {
3708
        printf("ERROR: failed to read json, childtable_prefix not found\n");
3709 3710
        goto PARSE_OVER;
      }
3711
      tstrncpy(g_Dbs.db[i].superTbls[j].childTblPrefix, prefix->valuestring, MAX_DB_NAME_SIZE);
3712 3713

      cJSON *autoCreateTbl = cJSON_GetObjectItem(stbInfo, "auto_create_table"); // yes, no, null
3714 3715 3716
      if (autoCreateTbl
              && autoCreateTbl->type == cJSON_String
              && autoCreateTbl->valuestring != NULL) {
3717 3718 3719 3720 3721 3722 3723 3724 3725 3726
        if (0 == strncasecmp(autoCreateTbl->valuestring, "yes", 3)) {
          g_Dbs.db[i].superTbls[j].autoCreateTable = AUTO_CREATE_SUBTBL;
        } else if (0 == strncasecmp(autoCreateTbl->valuestring, "no", 2)) {
          g_Dbs.db[i].superTbls[j].autoCreateTable = PRE_CREATE_SUBTBL;
        } else {
          g_Dbs.db[i].superTbls[j].autoCreateTable = PRE_CREATE_SUBTBL;
        }
      } else if (!autoCreateTbl) {
        g_Dbs.db[i].superTbls[j].autoCreateTable = PRE_CREATE_SUBTBL;
      } else {
3727
        printf("ERROR: failed to read json, auto_create_table not found\n");
3728 3729
        goto PARSE_OVER;
      }
3730

3731 3732 3733 3734
      cJSON* batchCreateTbl = cJSON_GetObjectItem(stbInfo, "batch_create_tbl_num");
      if (batchCreateTbl && batchCreateTbl->type == cJSON_Number) {
        g_Dbs.db[i].superTbls[j].batchCreateTableNum = batchCreateTbl->valueint;
      } else if (!batchCreateTbl) {
3735
        g_Dbs.db[i].superTbls[j].batchCreateTableNum = 1000;
3736
      } else {
3737
        printf("ERROR: failed to read json, batch_create_tbl_num not found\n");
3738
        goto PARSE_OVER;
3739
      }
3740 3741

      cJSON *childTblExists = cJSON_GetObjectItem(stbInfo, "child_table_exists"); // yes, no
3742 3743 3744
      if (childTblExists
              && childTblExists->type == cJSON_String
              && childTblExists->valuestring != NULL) {
3745 3746
        if ((0 == strncasecmp(childTblExists->valuestring, "yes", 3))
            && (g_Dbs.db[i].drop == false)) {
3747
          g_Dbs.db[i].superTbls[j].childTblExists = TBL_ALREADY_EXISTS;
3748 3749
        } else if ((0 == strncasecmp(childTblExists->valuestring, "no", 2)
              || (g_Dbs.db[i].drop == true))) {
3750 3751 3752 3753 3754 3755 3756
          g_Dbs.db[i].superTbls[j].childTblExists = TBL_NO_EXISTS;
        } else {
          g_Dbs.db[i].superTbls[j].childTblExists = TBL_NO_EXISTS;
        }
      } else if (!childTblExists) {
        g_Dbs.db[i].superTbls[j].childTblExists = TBL_NO_EXISTS;
      } else {
3757 3758
        errorPrint("%s() LN%d, failed to read json, child_table_exists not found\n",
                __func__, __LINE__);
3759 3760
        goto PARSE_OVER;
      }
3761

3762 3763
      cJSON* count = cJSON_GetObjectItem(stbInfo, "childtable_count");
      if (!count || count->type != cJSON_Number || 0 >= count->valueint) {
3764
        errorPrint("%s() LN%d, failed to read json, childtable_count input mistake\n",
3765
                __func__, __LINE__);
3766 3767 3768 3769 3770
        goto PARSE_OVER;
      }
      g_Dbs.db[i].superTbls[j].childTblCount = count->valueint;

      cJSON *dataSource = cJSON_GetObjectItem(stbInfo, "data_source");
3771 3772 3773 3774
      if (dataSource && dataSource->type == cJSON_String
              && dataSource->valuestring != NULL) {
        tstrncpy(g_Dbs.db[i].superTbls[j].dataSource,
                dataSource->valuestring, MAX_DB_NAME_SIZE);
3775
      } else if (!dataSource) {
3776
        tstrncpy(g_Dbs.db[i].superTbls[j].dataSource, "rand", MAX_DB_NAME_SIZE);
3777
      } else {
3778 3779
        errorPrint("%s() LN%d, failed to read json, data_source not found\n",
            __func__, __LINE__);
3780 3781 3782
        goto PARSE_OVER;
      }

3783
      cJSON *insertMode = cJSON_GetObjectItem(stbInfo, "insert_mode"); // taosc , rest
3784 3785 3786 3787
      if (insertMode && insertMode->type == cJSON_String
              && insertMode->valuestring != NULL) {
        tstrncpy(g_Dbs.db[i].superTbls[j].insertMode,
                insertMode->valuestring, MAX_DB_NAME_SIZE);
3788
      } else if (!insertMode) {
3789
        tstrncpy(g_Dbs.db[i].superTbls[j].insertMode, "taosc", MAX_DB_NAME_SIZE);
3790
      } else {
3791
        printf("ERROR: failed to read json, insert_mode not found\n");
3792 3793 3794
        goto PARSE_OVER;
      }

3795
      cJSON* childTbl_limit = cJSON_GetObjectItem(stbInfo, "childtable_limit");
3796 3797
      if ((childTbl_limit) && (g_Dbs.db[i].drop != true)
          && (g_Dbs.db[i].superTbls[j].childTblExists == TBL_ALREADY_EXISTS)) {
3798 3799 3800 3801 3802 3803
        if (childTbl_limit->type != cJSON_Number) {
            printf("ERROR: failed to read json, childtable_limit\n");
            goto PARSE_OVER;
        }
        g_Dbs.db[i].superTbls[j].childTblLimit = childTbl_limit->valueint;
      } else {
3804
        g_Dbs.db[i].superTbls[j].childTblLimit = -1;    // select ... limit -1 means all query result, drop = yes mean all table need recreate, limit value is invalid.
3805 3806 3807
      }

      cJSON* childTbl_offset = cJSON_GetObjectItem(stbInfo, "childtable_offset");
3808 3809
      if ((childTbl_offset) && (g_Dbs.db[i].drop != true)
          && (g_Dbs.db[i].superTbls[j].childTblExists == TBL_ALREADY_EXISTS)) {
3810 3811 3812 3813 3814 3815 3816 3817 3818
        if (childTbl_offset->type != cJSON_Number || 0 > childTbl_offset->valueint) {
            printf("ERROR: failed to read json, childtable_offset\n");
            goto PARSE_OVER;
        }
        g_Dbs.db[i].superTbls[j].childTblOffset = childTbl_offset->valueint;
      } else {
        g_Dbs.db[i].superTbls[j].childTblOffset = 0;
      }

3819 3820
      cJSON *ts = cJSON_GetObjectItem(stbInfo, "start_timestamp");
      if (ts && ts->type == cJSON_String && ts->valuestring != NULL) {
3821 3822
        tstrncpy(g_Dbs.db[i].superTbls[j].startTimestamp,
                ts->valuestring, MAX_DB_NAME_SIZE);
3823
      } else if (!ts) {
3824 3825
        tstrncpy(g_Dbs.db[i].superTbls[j].startTimestamp,
                "now", MAX_DB_NAME_SIZE);
3826
      } else {
3827
        printf("ERROR: failed to read json, start_timestamp not found\n");
3828 3829
        goto PARSE_OVER;
      }
3830

3831 3832 3833 3834
      cJSON* timestampStep = cJSON_GetObjectItem(stbInfo, "timestamp_step");
      if (timestampStep && timestampStep->type == cJSON_Number) {
        g_Dbs.db[i].superTbls[j].timeStampStep = timestampStep->valueint;
      } else if (!timestampStep) {
3835
        g_Dbs.db[i].superTbls[j].timeStampStep = DEFAULT_TIMESTAMP_STEP;
3836
      } else {
3837
        printf("ERROR: failed to read json, timestamp_step not found\n");
3838 3839 3840 3841
        goto PARSE_OVER;
      }

      cJSON *sampleFormat = cJSON_GetObjectItem(stbInfo, "sample_format");
3842 3843
      if (sampleFormat && sampleFormat->type
              == cJSON_String && sampleFormat->valuestring != NULL) {
3844 3845
        tstrncpy(g_Dbs.db[i].superTbls[j].sampleFormat,
                sampleFormat->valuestring, MAX_DB_NAME_SIZE);
3846
      } else if (!sampleFormat) {
3847
        tstrncpy(g_Dbs.db[i].superTbls[j].sampleFormat, "csv", MAX_DB_NAME_SIZE);
3848
      } else {
3849
        printf("ERROR: failed to read json, sample_format not found\n");
3850
        goto PARSE_OVER;
3851
      }
3852

3853
      cJSON *sampleFile = cJSON_GetObjectItem(stbInfo, "sample_file");
3854 3855
      if (sampleFile && sampleFile->type == cJSON_String
          && sampleFile->valuestring != NULL) {
3856 3857
        tstrncpy(g_Dbs.db[i].superTbls[j].sampleFile,
                sampleFile->valuestring, MAX_FILE_NAME_LEN);
3858 3859 3860
      } else if (!sampleFile) {
        memset(g_Dbs.db[i].superTbls[j].sampleFile, 0, MAX_FILE_NAME_LEN);
      } else {
3861
        printf("ERROR: failed to read json, sample_file not found\n");
3862
        goto PARSE_OVER;
3863
      }
3864

3865 3866
      cJSON *tagsFile = cJSON_GetObjectItem(stbInfo, "tags_file");
      if (tagsFile && tagsFile->type == cJSON_String && tagsFile->valuestring != NULL) {
3867 3868
        tstrncpy(g_Dbs.db[i].superTbls[j].tagsFile,
                tagsFile->valuestring, MAX_FILE_NAME_LEN);
3869 3870 3871 3872 3873 3874 3875 3876 3877
        if (0 == g_Dbs.db[i].superTbls[j].tagsFile[0]) {
          g_Dbs.db[i].superTbls[j].tagSource = 0;
        } else {
          g_Dbs.db[i].superTbls[j].tagSource = 1;
        }
      } else if (!tagsFile) {
        memset(g_Dbs.db[i].superTbls[j].tagsFile, 0, MAX_FILE_NAME_LEN);
        g_Dbs.db[i].superTbls[j].tagSource = 0;
      } else {
3878
        printf("ERROR: failed to read json, tags_file not found\n");
3879 3880
        goto PARSE_OVER;
      }
3881

3882 3883 3884 3885 3886
      cJSON* maxSqlLen = cJSON_GetObjectItem(stbInfo, "max_sql_len");
      if (maxSqlLen && maxSqlLen->type == cJSON_Number) {
        int32_t len = maxSqlLen->valueint;
        if (len > TSDB_MAX_ALLOWED_SQL_LEN) {
          len = TSDB_MAX_ALLOWED_SQL_LEN;
3887 3888
        } else if (len < 5) {
          len = 5;
3889
        }
3890 3891
        g_Dbs.db[i].superTbls[j].maxSqlLen = len;
      } else if (!maxSqlLen) {
3892
        g_Dbs.db[i].superTbls[j].maxSqlLen = g_args.max_sql_len;
3893
      } else {
3894 3895
        errorPrint("%s() LN%d, failed to read json, maxSqlLen input mistake\n",
            __func__, __LINE__);
3896
        goto PARSE_OVER;
3897
      }
3898
/*
3899 3900 3901 3902 3903
      cJSON *multiThreadWriteOneTbl =
          cJSON_GetObjectItem(stbInfo, "multi_thread_write_one_tbl"); // no , yes
      if (multiThreadWriteOneTbl
              && multiThreadWriteOneTbl->type == cJSON_String
              && multiThreadWriteOneTbl->valuestring != NULL) {
3904 3905 3906 3907
        if (0 == strncasecmp(multiThreadWriteOneTbl->valuestring, "yes", 3)) {
          g_Dbs.db[i].superTbls[j].multiThreadWriteOneTbl = 1;
        } else {
          g_Dbs.db[i].superTbls[j].multiThreadWriteOneTbl = 0;
3908
        }
3909 3910 3911
      } else if (!multiThreadWriteOneTbl) {
        g_Dbs.db[i].superTbls[j].multiThreadWriteOneTbl = 0;
      } else {
3912
        printf("ERROR: failed to read json, multiThreadWriteOneTbl not found\n");
3913 3914
        goto PARSE_OVER;
      }
3915
*/
3916 3917
      cJSON* interlaceRows = cJSON_GetObjectItem(stbInfo, "interlace_rows");
      if (interlaceRows && interlaceRows->type == cJSON_Number) {
3918 3919 3920 3921 3922
        if (interlaceRows->valueint < 0) {
          errorPrint("%s() LN%d, failed to read json, interlace rows input mistake\n",
            __func__, __LINE__);
          goto PARSE_OVER;
        }
3923
        g_Dbs.db[i].superTbls[j].interlaceRows = interlaceRows->valueint;
3924 3925
        // rows per table need be less than insert batch
        if (g_Dbs.db[i].superTbls[j].interlaceRows > g_args.num_of_RPR) {
3926
          printf("NOTICE: db[%d].superTbl[%d]'s interlace rows value %"PRIu64" > num_of_records_per_req %"PRIu64"\n\n",
3927
                  i, j, g_Dbs.db[i].superTbls[j].interlaceRows, g_args.num_of_RPR);
3928
          printf("        interlace rows value will be set to num_of_records_per_req %"PRIu64"\n\n",
3929
                  g_args.num_of_RPR);
3930
          printf("        press Enter key to continue or Ctrl-C to stop.");
3931 3932 3933
          (void)getchar();
          g_Dbs.db[i].superTbls[j].interlaceRows = g_args.num_of_RPR;
        }
3934 3935
      } else if (!interlaceRows) {
        g_Dbs.db[i].superTbls[j].interlaceRows = 0; // 0 means progressive mode, > 0 mean interlace mode. max value is less or equ num_of_records_per_req
3936
      } else {
3937 3938 3939
        errorPrint(
                "%s() LN%d, failed to read json, interlace rows input mistake\n",
                __func__, __LINE__);
3940
        goto PARSE_OVER;
3941
      }
3942 3943 3944

      cJSON* disorderRatio = cJSON_GetObjectItem(stbInfo, "disorder_ratio");
      if (disorderRatio && disorderRatio->type == cJSON_Number) {
3945 3946 3947 3948 3949 3950
        if (disorderRatio->valueint > 50)
          disorderRatio->valueint = 50;

        if (disorderRatio->valueint < 0)
          disorderRatio->valueint = 0;

3951 3952 3953 3954
        g_Dbs.db[i].superTbls[j].disorderRatio = disorderRatio->valueint;
      } else if (!disorderRatio) {
        g_Dbs.db[i].superTbls[j].disorderRatio = 0;
      } else {
3955
        printf("ERROR: failed to read json, disorderRatio not found\n");
3956
        goto PARSE_OVER;
3957
      }
3958 3959 3960 3961 3962 3963 3964

      cJSON* disorderRange = cJSON_GetObjectItem(stbInfo, "disorder_range");
      if (disorderRange && disorderRange->type == cJSON_Number) {
        g_Dbs.db[i].superTbls[j].disorderRange = disorderRange->valueint;
      } else if (!disorderRange) {
        g_Dbs.db[i].superTbls[j].disorderRange = 1000;
      } else {
3965
        printf("ERROR: failed to read json, disorderRange not found\n");
3966 3967
        goto PARSE_OVER;
      }
3968

3969 3970
      cJSON* insertRows = cJSON_GetObjectItem(stbInfo, "insert_rows");
      if (insertRows && insertRows->type == cJSON_Number) {
3971 3972 3973 3974 3975
        if (insertRows->valueint < 0) {
          errorPrint("%s() LN%d, failed to read json, insert_rows input mistake\n",
                __func__, __LINE__);
          goto PARSE_OVER;
        }
3976 3977 3978 3979
        g_Dbs.db[i].superTbls[j].insertRows = insertRows->valueint;
      } else if (!insertRows) {
        g_Dbs.db[i].superTbls[j].insertRows = 0x7FFFFFFFFFFFFFFF;
      } else {
3980 3981
        errorPrint("%s() LN%d, failed to read json, insert_rows input mistake\n",
                __func__, __LINE__);
3982 3983 3984 3985 3986 3987
        goto PARSE_OVER;
      }

      cJSON* insertInterval = cJSON_GetObjectItem(stbInfo, "insert_interval");
      if (insertInterval && insertInterval->type == cJSON_Number) {
        g_Dbs.db[i].superTbls[j].insertInterval = insertInterval->valueint;
3988 3989 3990 3991 3992
        if (insertInterval->valueint < 0) {
          errorPrint("%s() LN%d, failed to read json, insert_interval input mistake\n",
                __func__, __LINE__);
          goto PARSE_OVER;
        }
3993
      } else if (!insertInterval) {
3994
        verbosePrint("%s() LN%d: stable insert interval be overrided by global %"PRIu64".\n",
3995 3996 3997
                __func__, __LINE__, g_args.insert_interval);
        g_Dbs.db[i].superTbls[j].insertInterval = g_args.insert_interval;
      } else {
3998 3999
        errorPrint("%s() LN%d, failed to read json, insert_interval input mistake\n",
                __func__, __LINE__);
4000 4001 4002
        goto PARSE_OVER;
      }

4003 4004
      int retVal = getColumnAndTagTypeFromInsertJsonFile(
              stbInfo, &g_Dbs.db[i].superTbls[j]);
4005 4006
      if (false == retVal) {
        goto PARSE_OVER;
4007 4008
      }
    }
4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021
  }

  ret = true;

PARSE_OVER:
  return ret;
}

static bool getMetaFromQueryJsonFile(cJSON* root) {
  bool  ret = false;

  cJSON* cfgdir = cJSON_GetObjectItem(root, "cfgdir");
  if (cfgdir && cfgdir->type == cJSON_String && cfgdir->valuestring != NULL) {
4022
    tstrncpy(g_queryInfo.cfgDir, cfgdir->valuestring, MAX_FILE_NAME_LEN);
4023 4024 4025 4026
  }

  cJSON* host = cJSON_GetObjectItem(root, "host");
  if (host && host->type == cJSON_String && host->valuestring != NULL) {
4027
    tstrncpy(g_queryInfo.host, host->valuestring, MAX_HOSTNAME_SIZE);
4028
  } else if (!host) {
4029
    tstrncpy(g_queryInfo.host, "127.0.0.1", MAX_HOSTNAME_SIZE);
4030
  } else {
4031
    printf("ERROR: failed to read json, host not found\n");
4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043
    goto PARSE_OVER;
  }

  cJSON* port = cJSON_GetObjectItem(root, "port");
  if (port && port->type == cJSON_Number) {
    g_queryInfo.port = port->valueint;
  } else if (!port) {
    g_queryInfo.port = 6030;
  }

  cJSON* user = cJSON_GetObjectItem(root, "user");
  if (user && user->type == cJSON_String && user->valuestring != NULL) {
4044
    tstrncpy(g_queryInfo.user, user->valuestring, MAX_USERNAME_SIZE);
4045
  } else if (!user) {
4046
    tstrncpy(g_queryInfo.user, "root", MAX_USERNAME_SIZE); ;
4047 4048 4049 4050
  }

  cJSON* password = cJSON_GetObjectItem(root, "password");
  if (password && password->type == cJSON_String && password->valuestring != NULL) {
4051
    tstrncpy(g_queryInfo.password, password->valuestring, MAX_PASSWORD_SIZE);
4052
  } else if (!password) {
4053
    tstrncpy(g_queryInfo.password, "taosdata", MAX_PASSWORD_SIZE);;
4054
  }
H
hzcheng 已提交
4055

4056
  cJSON *answerPrompt = cJSON_GetObjectItem(root, "confirm_parameter_prompt"); // yes, no,
4057 4058
  if (answerPrompt && answerPrompt->type == cJSON_String
          && answerPrompt->valuestring != NULL) {
4059 4060 4061 4062
    if (0 == strncasecmp(answerPrompt->valuestring, "yes", 3)) {
      g_args.answer_yes = false;
    } else if (0 == strncasecmp(answerPrompt->valuestring, "no", 2)) {
      g_args.answer_yes = true;
H
hzcheng 已提交
4063
    } else {
4064
      g_args.answer_yes = false;
H
hzcheng 已提交
4065
    }
4066 4067 4068
  } else if (!answerPrompt) {
    g_args.answer_yes = false;
  } else {
4069
    printf("ERROR: failed to read json, confirm_parameter_prompt not found\n");
4070
    goto PARSE_OVER;
4071
  }
4072

4073 4074
  cJSON* gQueryTimes = cJSON_GetObjectItem(root, "query_times");
  if (gQueryTimes && gQueryTimes->type == cJSON_Number) {
4075 4076 4077
    if (gQueryTimes->valueint <= 0) {
      errorPrint("%s() LN%d, failed to read json, query_times: %"PRId64", need be a valid (>0) number\n",
        __func__, __LINE__, gQueryTimes->valueint);
4078 4079
      goto PARSE_OVER;
    }
4080 4081 4082 4083
    g_args.query_times = gQueryTimes->valueint;
  } else if (!gQueryTimes) {
    g_args.query_times = 1;
  } else {
4084 4085
    errorPrint("%s() LN%d, failed to read json, query_times input mistake\n",
        __func__, __LINE__);
4086 4087 4088
    goto PARSE_OVER;
  }

4089 4090
  cJSON* dbs = cJSON_GetObjectItem(root, "databases");
  if (dbs && dbs->type == cJSON_String && dbs->valuestring != NULL) {
4091
    tstrncpy(g_queryInfo.dbName, dbs->valuestring, MAX_DB_NAME_SIZE);
4092
  } else if (!dbs) {
4093
    printf("ERROR: failed to read json, databases not found\n");
4094
    goto PARSE_OVER;
H
hzcheng 已提交
4095
  }
4096 4097 4098

  cJSON* queryMode = cJSON_GetObjectItem(root, "query_mode");
  if (queryMode && queryMode->type == cJSON_String && queryMode->valuestring != NULL) {
4099
    tstrncpy(g_queryInfo.queryMode, queryMode->valuestring, MAX_TB_NAME_SIZE);
4100
  } else if (!queryMode) {
4101
    tstrncpy(g_queryInfo.queryMode, "taosc", MAX_TB_NAME_SIZE);
4102
  } else {
4103
    printf("ERROR: failed to read json, query_mode not found\n");
4104
    goto PARSE_OVER;
H
hzcheng 已提交
4105
  }
4106

4107
  // specified_table_query
4108 4109
  cJSON *specifiedQuery = cJSON_GetObjectItem(root, "specified_table_query");
  if (!specifiedQuery) {
4110
    g_queryInfo.specifiedQueryInfo.concurrent = 1;
4111 4112
    g_queryInfo.specifiedQueryInfo.sqlCount = 0;
  } else if (specifiedQuery->type != cJSON_Object) {
4113
    printf("ERROR: failed to read json, super_table_query not found\n");
4114
    goto PARSE_OVER;
4115
  } else {
4116 4117 4118 4119 4120
    cJSON* queryInterval = cJSON_GetObjectItem(specifiedQuery, "query_interval");
    if (queryInterval && queryInterval->type == cJSON_Number) {
      g_queryInfo.specifiedQueryInfo.queryInterval = queryInterval->valueint;
    } else if (!queryInterval) {
      g_queryInfo.specifiedQueryInfo.queryInterval = 0;
4121 4122
    }

4123 4124
    cJSON* specifiedQueryTimes = cJSON_GetObjectItem(specifiedQuery,
        "query_times");
4125
    if (specifiedQueryTimes && specifiedQueryTimes->type == cJSON_Number) {
4126 4127 4128
      if (specifiedQueryTimes->valueint <= 0) {
        errorPrint("%s() LN%d, failed to read json, query_times: %"PRId64", need be a valid (>0) number\n",
                __func__, __LINE__, specifiedQueryTimes->valueint);
4129 4130 4131
        goto PARSE_OVER;

      }
4132 4133 4134 4135
      g_queryInfo.specifiedQueryInfo.queryTimes = specifiedQueryTimes->valueint;
    } else if (!specifiedQueryTimes) {
      g_queryInfo.specifiedQueryInfo.queryTimes = g_args.query_times;
    } else {
4136 4137
      errorPrint("%s() LN%d, failed to read json, query_times input mistake\n",
          __func__, __LINE__);
4138
      goto PARSE_OVER;
4139
    }
4140

4141
    cJSON* concurrent = cJSON_GetObjectItem(specifiedQuery, "concurrent");
4142
    if (concurrent && concurrent->type == cJSON_Number) {
4143 4144 4145 4146
      if (concurrent->valueint <= 0) {
        errorPrint("%s() LN%d, query sqlCount %"PRIu64" or concurrent %"PRIu64" is not correct.\n",
              __func__, __LINE__,
              g_queryInfo.specifiedQueryInfo.sqlCount,
4147 4148 4149
              g_queryInfo.specifiedQueryInfo.concurrent);
        goto PARSE_OVER;
      }
4150
      g_queryInfo.specifiedQueryInfo.concurrent = concurrent->valueint;
4151
    } else if (!concurrent) {
4152
      g_queryInfo.specifiedQueryInfo.concurrent = 1;
4153
    }
4154

4155 4156 4157 4158
    cJSON* mode = cJSON_GetObjectItem(specifiedQuery, "mode");
    if (mode && mode->type == cJSON_String
        && mode->valuestring != NULL) {
      if (0 == strcmp("sync", mode->valuestring)) {
4159
        g_queryInfo.specifiedQueryInfo.mode = SYNC_QUERY_MODE;
4160
      } else if (0 == strcmp("async", mode->valuestring)) {
4161
        g_queryInfo.specifiedQueryInfo.mode = ASYNC_QUERY_MODE;
4162
      } else {
4163 4164
        errorPrint("%s() LN%d, failed to read json, query mode input error\n",
            __func__, __LINE__);
4165 4166 4167
        goto PARSE_OVER;
      }
    } else {
4168
      g_queryInfo.specifiedQueryInfo.mode = SYNC_QUERY_MODE;
4169
    }
4170

4171
    cJSON* interval = cJSON_GetObjectItem(specifiedQuery, "interval");
4172
    if (interval && interval->type == cJSON_Number) {
4173
      g_queryInfo.specifiedQueryInfo.subscribeInterval = interval->valueint;
4174
    } else if (!interval) {
4175 4176
      //printf("failed to read json, subscribe interval no found\n");
      //goto PARSE_OVER;
4177
      g_queryInfo.specifiedQueryInfo.subscribeInterval = 10000;
4178
    }
4179

4180
    cJSON* restart = cJSON_GetObjectItem(specifiedQuery, "restart");
4181
    if (restart && restart->type == cJSON_String && restart->valuestring != NULL) {
4182
      if (0 == strcmp("yes", restart->valuestring)) {
4183
        g_queryInfo.specifiedQueryInfo.subscribeRestart = 1;
4184
      } else if (0 == strcmp("no", restart->valuestring)) {
4185
        g_queryInfo.specifiedQueryInfo.subscribeRestart = 0;
4186
      } else {
4187
        printf("ERROR: failed to read json, subscribe restart error\n");
4188 4189 4190
        goto PARSE_OVER;
      }
    } else {
4191
      g_queryInfo.specifiedQueryInfo.subscribeRestart = 1;
4192
    }
4193

4194
    cJSON* keepProgress = cJSON_GetObjectItem(specifiedQuery, "keepProgress");
4195 4196 4197
    if (keepProgress
            && keepProgress->type == cJSON_String
            && keepProgress->valuestring != NULL) {
4198
      if (0 == strcmp("yes", keepProgress->valuestring)) {
4199
        g_queryInfo.specifiedQueryInfo.subscribeKeepProgress = 1;
4200
      } else if (0 == strcmp("no", keepProgress->valuestring)) {
4201
        g_queryInfo.specifiedQueryInfo.subscribeKeepProgress = 0;
4202
      } else {
4203
        printf("ERROR: failed to read json, subscribe keepProgress error\n");
4204 4205 4206
        goto PARSE_OVER;
      }
    } else {
4207
      g_queryInfo.specifiedQueryInfo.subscribeKeepProgress = 0;
4208 4209
    }

4210
    // sqls
4211
    cJSON* superSqls = cJSON_GetObjectItem(specifiedQuery, "sqls");
4212
    if (!superSqls) {
4213
      g_queryInfo.specifiedQueryInfo.sqlCount = 0;
4214
    } else if (superSqls->type != cJSON_Array) {
4215 4216
      errorPrint("%s() LN%d, failed to read json, super sqls not found\n",
          __func__, __LINE__);
4217
      goto PARSE_OVER;
4218
    } else {
4219 4220
      int superSqlSize = cJSON_GetArraySize(superSqls);
      if (superSqlSize > MAX_QUERY_SQL_COUNT) {
4221 4222
        errorPrint("%s() LN%d, failed to read json, query sql size overflow, max is %d\n",
           __func__, __LINE__, MAX_QUERY_SQL_COUNT);
4223 4224
        goto PARSE_OVER;
      }
4225

4226
      g_queryInfo.specifiedQueryInfo.sqlCount = superSqlSize;
4227 4228 4229
      for (int j = 0; j < superSqlSize; ++j) {
        cJSON* sql = cJSON_GetArrayItem(superSqls, j);
        if (sql == NULL) continue;
4230

4231 4232
        cJSON *sqlStr = cJSON_GetObjectItem(sql, "sql");
        if (!sqlStr || sqlStr->type != cJSON_String || sqlStr->valuestring == NULL) {
4233
          printf("ERROR: failed to read json, sql not found\n");
4234 4235
          goto PARSE_OVER;
        }
4236
        tstrncpy(g_queryInfo.specifiedQueryInfo.sql[j], sqlStr->valuestring, MAX_QUERY_SQL_LENGTH);
H
hzcheng 已提交
4237

4238 4239
        cJSON *result = cJSON_GetObjectItem(sql, "result");
        if (NULL != result && result->type == cJSON_String && result->valuestring != NULL) {
4240
          tstrncpy(g_queryInfo.specifiedQueryInfo.result[j], result->valuestring, MAX_FILE_NAME_LEN);
4241
        } else if (NULL == result) {
4242
          memset(g_queryInfo.specifiedQueryInfo.result[j], 0, MAX_FILE_NAME_LEN);
4243
        } else {
4244
          printf("ERROR: failed to read json, super query result file not found\n");
4245
          goto PARSE_OVER;
4246
        }
4247 4248 4249
      }
    }
  }
4250

4251
  // super_table_query
4252 4253
  cJSON *superQuery = cJSON_GetObjectItem(root, "super_table_query");
  if (!superQuery) {
4254
    g_queryInfo.superQueryInfo.threadCnt = 1;
4255 4256
    g_queryInfo.superQueryInfo.sqlCount = 0;
  } else if (superQuery->type != cJSON_Object) {
4257
    printf("ERROR: failed to read json, sub_table_query not found\n");
4258 4259
    ret = true;
    goto PARSE_OVER;
H
hzcheng 已提交
4260
  } else {
4261
    cJSON* subrate = cJSON_GetObjectItem(superQuery, "query_interval");
4262
    if (subrate && subrate->type == cJSON_Number) {
4263
      g_queryInfo.superQueryInfo.queryInterval = subrate->valueint;
4264
    } else if (!subrate) {
4265
      g_queryInfo.superQueryInfo.queryInterval = 0;
4266 4267 4268 4269
    }

    cJSON* superQueryTimes = cJSON_GetObjectItem(superQuery, "query_times");
    if (superQueryTimes && superQueryTimes->type == cJSON_Number) {
4270 4271 4272
      if (superQueryTimes->valueint <= 0) {
        errorPrint("%s() LN%d, failed to read json, query_times: %"PRId64", need be a valid (>0) number\n",
                __func__, __LINE__, superQueryTimes->valueint);
4273 4274
        goto PARSE_OVER;
      }
4275 4276 4277 4278
      g_queryInfo.superQueryInfo.queryTimes = superQueryTimes->valueint;
    } else if (!superQueryTimes) {
      g_queryInfo.superQueryInfo.queryTimes = g_args.query_times;
    } else {
4279 4280
      errorPrint("%s() LN%d, failed to read json, query_times input mistake\n",
          __func__, __LINE__);
4281
      goto PARSE_OVER;
4282
    }
4283

4284
    cJSON* threads = cJSON_GetObjectItem(superQuery, "threads");
4285
    if (threads && threads->type == cJSON_Number) {
4286 4287 4288 4289 4290 4291
      if (threads->valueint <= 0) {
        errorPrint("%s() LN%d, failed to read json, threads input mistake\n",
          __func__, __LINE__);
        goto PARSE_OVER;

      }
4292
      g_queryInfo.superQueryInfo.threadCnt = threads->valueint;
4293
    } else if (!threads) {
4294
      g_queryInfo.superQueryInfo.threadCnt = 1;
4295
    }
4296

4297
    //cJSON* subTblCnt = cJSON_GetObjectItem(superQuery, "childtable_count");
4298
    //if (subTblCnt && subTblCnt->type == cJSON_Number) {
4299
    //  g_queryInfo.superQueryInfo.childTblCount = subTblCnt->valueint;
4300
    //} else if (!subTblCnt) {
4301
    //  g_queryInfo.superQueryInfo.childTblCount = 0;
4302
    //}
4303

4304
    cJSON* stblname = cJSON_GetObjectItem(superQuery, "stblname");
4305 4306 4307 4308
    if (stblname && stblname->type == cJSON_String
        && stblname->valuestring != NULL) {
      tstrncpy(g_queryInfo.superQueryInfo.sTblName, stblname->valuestring,
          MAX_TB_NAME_SIZE);
4309
    } else {
4310 4311
      errorPrint("%s() LN%d, failed to read json, super table name input error\n",
          __func__, __LINE__);
4312 4313
      goto PARSE_OVER;
    }
4314

4315
    cJSON* submode = cJSON_GetObjectItem(superQuery, "mode");
4316 4317
    if (submode && submode->type == cJSON_String
        && submode->valuestring != NULL) {
4318
      if (0 == strcmp("sync", submode->valuestring)) {
4319
        g_queryInfo.superQueryInfo.mode = SYNC_QUERY_MODE;
4320
      } else if (0 == strcmp("async", submode->valuestring)) {
4321
        g_queryInfo.superQueryInfo.mode = ASYNC_QUERY_MODE;
4322
      } else {
4323 4324
        errorPrint("%s() LN%d, failed to read json, query mode input error\n",
            __func__, __LINE__);
4325 4326 4327
        goto PARSE_OVER;
      }
    } else {
4328
      g_queryInfo.superQueryInfo.mode = SYNC_QUERY_MODE;
4329
    }
4330

4331 4332 4333 4334 4335 4336 4337 4338 4339
    cJSON* superInterval = cJSON_GetObjectItem(superQuery, "interval");
    if (superInterval && superInterval->type == cJSON_Number) {
      if (superInterval->valueint < 0) {
        errorPrint("%s() LN%d, failed to read json, interval input mistake\n",
            __func__, __LINE__);
        goto PARSE_OVER;
      }
      g_queryInfo.superQueryInfo.subscribeInterval = superInterval->valueint;
    } else if (!superInterval) {
4340 4341
      //printf("failed to read json, subscribe interval no found\n");
      //goto PARSE_OVER;
4342
      g_queryInfo.superQueryInfo.subscribeInterval = 10000;
4343
    }
4344

4345
    cJSON* subrestart = cJSON_GetObjectItem(superQuery, "restart");
4346 4347
    if (subrestart && subrestart->type == cJSON_String
        && subrestart->valuestring != NULL) {
4348
      if (0 == strcmp("yes", subrestart->valuestring)) {
4349
        g_queryInfo.superQueryInfo.subscribeRestart = 1;
4350
      } else if (0 == strcmp("no", subrestart->valuestring)) {
4351
        g_queryInfo.superQueryInfo.subscribeRestart = 0;
4352
      } else {
4353
        printf("ERROR: failed to read json, subscribe restart error\n");
4354 4355 4356
        goto PARSE_OVER;
      }
    } else {
4357
      g_queryInfo.superQueryInfo.subscribeRestart = 1;
4358
    }
4359

4360
    cJSON* subkeepProgress = cJSON_GetObjectItem(superQuery, "keepProgress");
4361 4362 4363
    if (subkeepProgress &&
            subkeepProgress->type == cJSON_String
            && subkeepProgress->valuestring != NULL) {
4364
      if (0 == strcmp("yes", subkeepProgress->valuestring)) {
4365
        g_queryInfo.superQueryInfo.subscribeKeepProgress = 1;
4366
      } else if (0 == strcmp("no", subkeepProgress->valuestring)) {
4367
        g_queryInfo.superQueryInfo.subscribeKeepProgress = 0;
4368
      } else {
4369
        printf("ERROR: failed to read json, subscribe keepProgress error\n");
4370 4371 4372
        goto PARSE_OVER;
      }
    } else {
4373
      g_queryInfo.superQueryInfo.subscribeKeepProgress = 0;
4374
    }
4375

4376
    // sqls
4377
    cJSON* subsqls = cJSON_GetObjectItem(superQuery, "sqls");
4378
    if (!subsqls) {
4379
      g_queryInfo.superQueryInfo.sqlCount = 0;
4380
    } else if (subsqls->type != cJSON_Array) {
4381 4382
      errorPrint("%s() LN%d: failed to read json, super sqls not found\n",
          __func__, __LINE__);
4383
      goto PARSE_OVER;
4384
    } else {
4385 4386
      int superSqlSize = cJSON_GetArraySize(subsqls);
      if (superSqlSize > MAX_QUERY_SQL_COUNT) {
4387 4388
        errorPrint("%s() LN%d, failed to read json, query sql size overflow, max is %d\n",
           __func__, __LINE__, MAX_QUERY_SQL_COUNT);
4389 4390
        goto PARSE_OVER;
      }
4391

4392
      g_queryInfo.superQueryInfo.sqlCount = superSqlSize;
4393
      for (int j = 0; j < superSqlSize; ++j) {
4394 4395
        cJSON* sql = cJSON_GetArrayItem(subsqls, j);
        if (sql == NULL) continue;
4396

4397
        cJSON *sqlStr = cJSON_GetObjectItem(sql, "sql");
4398 4399 4400 4401
        if (!sqlStr || sqlStr->type != cJSON_String
            || sqlStr->valuestring == NULL) {
          errorPrint("%s() LN%d, failed to read json, sql not found\n",
              __func__, __LINE__);
4402 4403
          goto PARSE_OVER;
        }
4404 4405
        tstrncpy(g_queryInfo.superQueryInfo.sql[j], sqlStr->valuestring,
            MAX_QUERY_SQL_LENGTH);
4406 4407

        cJSON *result = cJSON_GetObjectItem(sql, "result");
4408 4409 4410 4411
        if (result != NULL && result->type == cJSON_String
            && result->valuestring != NULL){
          tstrncpy(g_queryInfo.superQueryInfo.result[j],
              result->valuestring, MAX_FILE_NAME_LEN);
4412
        } else if (NULL == result) {
4413
          memset(g_queryInfo.superQueryInfo.result[j], 0, MAX_FILE_NAME_LEN);
4414
        }  else {
4415 4416
          errorPrint("%s() LN%d, failed to read json, sub query result file not found\n",
              __func__, __LINE__);
4417
          goto PARSE_OVER;
4418
        }
4419 4420
      }
    }
H
hzcheng 已提交
4421 4422
  }

4423
  ret = true;
H
hzcheng 已提交
4424

4425 4426 4427
PARSE_OVER:
  return ret;
}
H
hzcheng 已提交
4428

4429
static bool getInfoFromJsonFile(char* file) {
4430
    debugPrint("%s %d %s\n", __func__, __LINE__, file);
4431

4432 4433 4434 4435 4436
  FILE *fp = fopen(file, "r");
  if (!fp) {
    printf("failed to read %s, reason:%s\n", file, strerror(errno));
    return false;
  }
H
Hui Li 已提交
4437

4438
  bool  ret = false;
4439
  int   maxLen = 6400000;
4440 4441 4442 4443 4444 4445 4446
  char *content = calloc(1, maxLen + 1);
  int   len = fread(content, 1, maxLen, fp);
  if (len <= 0) {
    free(content);
    fclose(fp);
    printf("failed to read %s, content is null", file);
    return false;
H
hzcheng 已提交
4447
  }
H
Hui Li 已提交
4448

4449 4450 4451
  content[len] = 0;
  cJSON* root = cJSON_Parse(content);
  if (root == NULL) {
4452
    printf("ERROR: failed to cjson parse %s, invalid json format\n", file);
4453 4454
    goto PARSE_OVER;
  }
H
Hui Li 已提交
4455

4456 4457 4458
  cJSON* filetype = cJSON_GetObjectItem(root, "filetype");
  if (filetype && filetype->type == cJSON_String && filetype->valuestring != NULL) {
    if (0 == strcasecmp("insert", filetype->valuestring)) {
4459
      g_args.test_mode = INSERT_TEST;
4460
    } else if (0 == strcasecmp("query", filetype->valuestring)) {
4461
      g_args.test_mode = QUERY_TEST;
4462
    } else if (0 == strcasecmp("subscribe", filetype->valuestring)) {
4463
      g_args.test_mode = SUBSCRIBE_TEST;
4464
    } else {
4465
      printf("ERROR: failed to read json, filetype not support\n");
4466 4467 4468
      goto PARSE_OVER;
    }
  } else if (!filetype) {
4469
    g_args.test_mode = INSERT_TEST;
4470
  } else {
4471
    printf("ERROR: failed to read json, filetype not found\n");
4472 4473
    goto PARSE_OVER;
  }
H
hzcheng 已提交
4474

4475
  if (INSERT_TEST == g_args.test_mode) {
4476
    ret = getMetaFromInsertJsonFile(root);
4477 4478
  } else if ((QUERY_TEST == g_args.test_mode)
          || (SUBSCRIBE_TEST == g_args.test_mode)) {
4479 4480
    ret = getMetaFromQueryJsonFile(root);
  } else {
4481 4482
    errorPrint("%s() LN%d, input json file type error! please input correct file type: insert or query or subscribe\n",
            __func__, __LINE__);
4483
    goto PARSE_OVER;
4484
  }
4485 4486 4487 4488

PARSE_OVER:
  free(content);
  cJSON_Delete(root);
H
hzcheng 已提交
4489
  fclose(fp);
4490 4491
  return ret;
}
H
hzcheng 已提交
4492

4493
static void prepareSampleData() {
4494
  for (int i = 0; i < g_Dbs.dbCount; i++) {
4495 4496 4497
    for (int j = 0; j < g_Dbs.db[i].superTblCount; j++) {
      if (g_Dbs.db[i].superTbls[j].tagsFile[0] != 0) {
        (void)readTagFromCsvFileToMem(&g_Dbs.db[i].superTbls[j]);
S
Shuaiqiang Chang 已提交
4498
      }
4499 4500 4501 4502
    }
  }
}

4503
static void postFreeResource() {
4504
  tmfclose(g_fpOfInsertResult);
4505
  for (int i = 0; i < g_Dbs.dbCount; i++) {
4506
    for (int j = 0; j < g_Dbs.db[i].superTblCount; j++) {
4507 4508 4509
      if (0 != g_Dbs.db[i].superTbls[j].colsOfCreateChildTable) {
        free(g_Dbs.db[i].superTbls[j].colsOfCreateChildTable);
        g_Dbs.db[i].superTbls[j].colsOfCreateChildTable = NULL;
S
Shuaiqiang Chang 已提交
4510
      }
4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522
      if (0 != g_Dbs.db[i].superTbls[j].sampleDataBuf) {
        free(g_Dbs.db[i].superTbls[j].sampleDataBuf);
        g_Dbs.db[i].superTbls[j].sampleDataBuf = NULL;
      }
      if (0 != g_Dbs.db[i].superTbls[j].tagDataBuf) {
        free(g_Dbs.db[i].superTbls[j].tagDataBuf);
        g_Dbs.db[i].superTbls[j].tagDataBuf = NULL;
      }
      if (0 != g_Dbs.db[i].superTbls[j].childTblName) {
        free(g_Dbs.db[i].superTbls[j].childTblName);
        g_Dbs.db[i].superTbls[j].childTblName = NULL;
      }
S
Shuaiqiang Chang 已提交
4523
    }
4524 4525
  }
}
S
Shuaiqiang Chang 已提交
4526

4527 4528 4529
static int getRowDataFromSample(
        char* dataBuf, int64_t maxLen, int64_t timestamp,
      SSuperTable* superTblInfo, int64_t* sampleUsePos) {
4530
  if ((*sampleUsePos) == MAX_SAMPLES_ONCE_FROM_FILE) {
4531
/*    int ret = readSampleFromCsvFileToMem(superTblInfo);
4532
    if (0 != ret) {
4533
      tmfree(superTblInfo->sampleDataBuf);
4534
      superTblInfo->sampleDataBuf = NULL;
4535 4536
      return -1;
    }
4537
*/
4538 4539
    *sampleUsePos = 0;
  }
S
Shuaiqiang Chang 已提交
4540

4541
  int    dataLen = 0;
4542

4543 4544 4545 4546
  dataLen += snprintf(dataBuf + dataLen, maxLen - dataLen,
          "(%" PRId64 ", ", timestamp);
  dataLen += snprintf(dataBuf + dataLen, maxLen - dataLen,
          "%s", superTblInfo->sampleDataBuf + superTblInfo->lenOfOneRow * (*sampleUsePos));
4547
  dataLen += snprintf(dataBuf + dataLen, maxLen - dataLen, ")");
S
Shuaiqiang Chang 已提交
4548

4549
  (*sampleUsePos)++;
4550

4551 4552
  return dataLen;
}
S
Shuaiqiang Chang 已提交
4553

4554 4555
static int64_t generateRowData(char* recBuf, int64_t timestamp, SSuperTable* stbInfo) {
  int64_t   dataLen = 0;
4556
  char  *pstr = recBuf;
4557
  int64_t maxLen = MAX_DATA_SIZE;
4558

4559
  dataLen += snprintf(pstr + dataLen, maxLen - dataLen, "(%" PRId64 ",", timestamp);
4560

4561
  for (int i = 0; i < stbInfo->columnCount; i++) {
4562 4563
    if ((0 == strncasecmp(stbInfo->columns[i].dataType, "BINARY", strlen("BINARY")))
            || (0 == strncasecmp(stbInfo->columns[i].dataType, "NCHAR", strlen("NCHAR")))) {
4564
      if (stbInfo->columns[i].dataLen > TSDB_MAX_BINARY_LEN) {
4565
        errorPrint( "binary or nchar length overflow, max size:%u\n",
4566
                (uint32_t)TSDB_MAX_BINARY_LEN);
4567
        return -1;
4568
      }
4569

4570 4571
      char* buf = (char*)calloc(stbInfo->columns[i].dataLen+1, 1);
      if (NULL == buf) {
4572
        errorPrint( "calloc failed! size:%d\n", stbInfo->columns[i].dataLen);
4573
        return -1;
4574 4575
      }
      rand_string(buf, stbInfo->columns[i].dataLen);
4576
      dataLen += snprintf(pstr + dataLen, maxLen - dataLen, "\'%s\',", buf);
4577
      tmfree(buf);
4578
    } else if (0 == strncasecmp(stbInfo->columns[i].dataType,
4579
                "INT", 3)) {
4580
      dataLen += snprintf(pstr + dataLen, maxLen - dataLen,
4581
              "%d,", rand_int());
4582
    } else if (0 == strncasecmp(stbInfo->columns[i].dataType,
4583
                "BIGINT", 6)) {
4584
      dataLen += snprintf(pstr + dataLen, maxLen - dataLen,
4585
              "%"PRId64",", rand_bigint());
4586
    }  else if (0 == strncasecmp(stbInfo->columns[i].dataType,
4587
                "FLOAT", 5)) {
4588
      dataLen += snprintf(pstr + dataLen, maxLen - dataLen,
4589
              "%f,", rand_float());
4590
    }  else if (0 == strncasecmp(stbInfo->columns[i].dataType,
4591
                "DOUBLE", 6)) {
4592
      dataLen += snprintf(pstr + dataLen, maxLen - dataLen,
4593
              "%f,", rand_double());
4594
    }  else if (0 == strncasecmp(stbInfo->columns[i].dataType,
4595
                "SMALLINT", 8)) {
4596
      dataLen += snprintf(pstr + dataLen, maxLen - dataLen,
4597
          "%d,", rand_smallint());
4598
    }  else if (0 == strncasecmp(stbInfo->columns[i].dataType,
4599
          "TINYINT", strlen("TINYINT"))) {
4600
      dataLen += snprintf(pstr + dataLen, maxLen - dataLen,
4601
          "%d,", rand_tinyint());
4602
    }  else if (0 == strncasecmp(stbInfo->columns[i].dataType,
4603
          "BOOL", strlen("BOOL"))) {
4604
      dataLen += snprintf(pstr + dataLen, maxLen - dataLen,
4605
          "%d,", rand_bool());
4606
    }  else if (0 == strncasecmp(stbInfo->columns[i].dataType,
4607
          "TIMESTAMP", strlen("TIMESTAMP"))) {
4608
      dataLen += snprintf(pstr + dataLen, maxLen - dataLen,
4609
          "%"PRId64",", rand_bigint());
4610
    }  else {
4611
      errorPrint( "No support data type: %s\n", stbInfo->columns[i].dataType);
4612
      return -1;
4613
    }
S
Shuaiqiang Chang 已提交
4614
  }
4615

4616
  dataLen -= 1;
4617
  dataLen += snprintf(pstr + dataLen, maxLen - dataLen, ")");
4618

4619 4620 4621
  verbosePrint("%s() LN%d, recBuf:\n\t%s\n", __func__, __LINE__, recBuf);

  return strlen(recBuf);
4622
}
S
Shuaiqiang Chang 已提交
4623

4624
static int64_t generateData(char *recBuf, char **data_type,
4625
        int num_of_cols, int64_t timestamp, int lenOfBinary) {
4626 4627
  memset(recBuf, 0, MAX_DATA_SIZE);
  char *pstr = recBuf;
4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641
  pstr += sprintf(pstr, "(%" PRId64, timestamp);
  int c = 0;

  for (; c < MAX_NUM_DATATYPE; c++) {
    if (data_type[c] == NULL) {
      break;
    }
  }

  if (0 == c) {
    perror("data type error!");
    exit(-1);
  }

4642
  for (int i = 0; i < c; i++) {
4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653
    if (strcasecmp(data_type[i % c], "TINYINT") == 0) {
      pstr += sprintf(pstr, ",%d", rand_tinyint() );
    } else if (strcasecmp(data_type[i % c], "SMALLINT") == 0) {
      pstr += sprintf(pstr, ",%d", rand_smallint());
    } else if (strcasecmp(data_type[i % c], "INT") == 0) {
      pstr += sprintf(pstr, ",%d", rand_int());
    } else if (strcasecmp(data_type[i % c], "BIGINT") == 0) {
      pstr += sprintf(pstr, ",%" PRId64, rand_bigint());
    } else if (strcasecmp(data_type[i % c], "FLOAT") == 0) {
      pstr += sprintf(pstr, ",%10.4f", rand_float());
    } else if (strcasecmp(data_type[i % c], "DOUBLE") == 0) {
4654
      double t = rand_double();
4655 4656
      pstr += sprintf(pstr, ",%20.8f", t);
    } else if (strcasecmp(data_type[i % c], "BOOL") == 0) {
4657
      bool b = taosRandom() & 1;
4658 4659
      pstr += sprintf(pstr, ",%s", b ? "true" : "false");
    } else if (strcasecmp(data_type[i % c], "BINARY") == 0) {
4660 4661
      char *s = malloc(lenOfBinary);
      rand_string(s, lenOfBinary);
4662
      pstr += sprintf(pstr, ",\"%s\"", s);
4663
      free(s);
4664
    } else if (strcasecmp(data_type[i % c], "NCHAR") == 0) {
4665 4666
      char *s = malloc(lenOfBinary);
      rand_string(s, lenOfBinary);
4667
      pstr += sprintf(pstr, ",\"%s\"", s);
4668 4669 4670
      free(s);
    }

4671
    if (strlen(recBuf) > MAX_DATA_SIZE) {
4672 4673 4674 4675 4676 4677 4678
      perror("column length too long, abort");
      exit(-1);
    }
  }

  pstr += sprintf(pstr, ")");

4679 4680
  verbosePrint("%s() LN%d, recBuf:\n\t%s\n", __func__, __LINE__, recBuf);

4681
  return (int32_t)strlen(recBuf);
4682 4683
}

4684
static int prepareSampleDataForSTable(SSuperTable *superTblInfo) {
4685 4686
  char* sampleDataBuf = NULL;

4687
  sampleDataBuf = calloc(
4688
            superTblInfo->lenOfOneRow * MAX_SAMPLES_ONCE_FROM_FILE, 1);
4689
  if (sampleDataBuf == NULL) {
4690
      errorPrint("%s() LN%d, Failed to calloc %"PRIu64" Bytes, reason:%s\n",
4691
              __func__, __LINE__,
4692
              superTblInfo->lenOfOneRow * MAX_SAMPLES_ONCE_FROM_FILE,
4693
              strerror(errno));
4694
      return -1;
4695
  }
4696

4697 4698 4699 4700
  superTblInfo->sampleDataBuf = sampleDataBuf;
  int ret = readSampleFromCsvFileToMem(superTblInfo);

  if (0 != ret) {
4701 4702
      errorPrint("%s() LN%d, read sample from csv file failed.\n",
          __func__, __LINE__);
4703
      tmfree(sampleDataBuf);
4704
      superTblInfo->sampleDataBuf = NULL;
4705
      return -1;
H
Hui Li 已提交
4706
  }
4707

4708 4709 4710
  return 0;
}

4711
static int64_t execInsert(threadInfo *pThreadInfo, char *buffer, uint64_t k)
4712 4713
{
  int affectedRows;
4714
  SSuperTable* superTblInfo = pThreadInfo->superTblInfo;
4715

4716 4717
  verbosePrint("[%d] %s() LN%d %s\n", pThreadInfo->threadID,
            __func__, __LINE__, buffer);
4718
  if (superTblInfo) {
4719
    if (0 == strncasecmp(superTblInfo->insertMode, "taosc", strlen("taosc"))) {
4720
      affectedRows = queryDbExec(pThreadInfo->taos, buffer, INSERT_TYPE, false);
4721
    } else if (0 == strncasecmp(superTblInfo->insertMode, "rest", strlen("rest"))) {
4722 4723
      if (0 != postProceSql(g_Dbs.host, &g_Dbs.serv_addr, g_Dbs.port,
                  buffer, NULL /* not set result file */)) {
4724
        affectedRows = -1;
4725 4726
        printf("========restful return fail, threadID[%d]\n",
            pThreadInfo->threadID);
4727 4728 4729
      } else {
        affectedRows = k;
      }
4730 4731 4732 4733
    } else {
      errorPrint("%s() LN%d: unknown insert mode: %s\n",
        __func__, __LINE__, superTblInfo->insertMode);
      affectedRows = 0;
4734
    }
4735
  } else {
4736
    affectedRows = queryDbExec(pThreadInfo->taos, buffer, INSERT_TYPE, false);
4737 4738 4739 4740 4741
  }

  return affectedRows;
}

4742
static void getTableName(char *pTblName, threadInfo* pThreadInfo, uint64_t tableSeq)
4743 4744
{
  SSuperTable* superTblInfo = pThreadInfo->superTblInfo;
4745
  if (superTblInfo) {
4746
    if (superTblInfo->childTblLimit > 0) {
4747
        snprintf(pTblName, TSDB_TABLE_NAME_LEN, "%s",
4748 4749
            superTblInfo->childTblName +
            (tableSeq - superTblInfo->childTblOffset) * TSDB_TABLE_NAME_LEN);
4750
    } else {
4751

4752
        verbosePrint("[%d] %s() LN%d: from=%"PRIu64" count=%"PRIu64" seq=%"PRIu64"\n",
4753 4754
                pThreadInfo->threadID, __func__, __LINE__,
                pThreadInfo->start_table_from,
4755 4756 4757 4758 4759
                pThreadInfo->ntables, tableSeq);
        snprintf(pTblName, TSDB_TABLE_NAME_LEN, "%s",
            superTblInfo->childTblName + tableSeq * TSDB_TABLE_NAME_LEN);
    }
  } else {
4760
    snprintf(pTblName, TSDB_TABLE_NAME_LEN, "%s%"PRIu64"",
4761
        g_args.tb_prefix, tableSeq);
4762 4763 4764
  }
}

4765
static int64_t generateDataTail(
4766
        SSuperTable* superTblInfo,
4767
        uint64_t batch, char* buffer, int64_t remainderBufLen, int64_t insertRows,
4768
        int64_t startFrom, int64_t startTime, int64_t *pSamplePos, int64_t *dataLen) {
4769 4770
  uint64_t len = 0;
  uint32_t ncols_per_record = 1; // count first col ts
4771

4772 4773
  char *pstr = buffer;

4774
  if (superTblInfo == NULL) {
4775
    uint32_t datatypeSeq = 0;
4776 4777 4778 4779
    while(g_args.datatype[datatypeSeq]) {
        datatypeSeq ++;
        ncols_per_record ++;
    }
4780 4781
  }

4782
  verbosePrint("%s() LN%d batch=%"PRIu64"\n", __func__, __LINE__, batch);
4783

4784
  uint64_t k = 0;
4785
  for (k = 0; k < batch;) {
4786
    char data[MAX_DATA_SIZE];
4787 4788
    memset(data, 0, MAX_DATA_SIZE);

4789
    int64_t retLen = 0;
4790

4791 4792
    if (superTblInfo) {
      if (0 == strncasecmp(superTblInfo->dataSource,
4793 4794
                    "sample", strlen("sample"))) {
          retLen = getRowDataFromSample(
4795 4796
                    data,
                    remainderBufLen,
4797
                    startTime + superTblInfo->timeStampStep * k,
4798
                    superTblInfo,
4799
                    pSamplePos);
4800
      } else if (0 == strncasecmp(superTblInfo->dataSource,
4801
                   "rand", strlen("rand"))) {
4802

4803
        int64_t randTail = superTblInfo->timeStampStep * k;
4804 4805 4806 4807
        if (superTblInfo->disorderRatio > 0) {
          int rand_num = taosRandom() % 100;
          if(rand_num < superTblInfo->disorderRatio) {
            randTail = (randTail + (taosRandom() % superTblInfo->disorderRange + 1)) * (-1);
4808
            debugPrint("rand data generated, back %"PRId64"\n", randTail);
4809
          }
4810 4811
        }

4812
        int64_t d = startTime
4813 4814
                + randTail;
        retLen = generateRowData(
4815
                      data,
4816
                      d,
4817
                      superTblInfo);
4818
      }
4819

4820 4821 4822
      if (retLen > remainderBufLen) {
        break;
      }
4823

4824
      pstr += snprintf(pstr , retLen + 1, "%s", data);
4825 4826 4827
      k++;
      len += retLen;
      remainderBufLen -= retLen;
4828
    } else {
4829 4830
      char **data_type = g_args.datatype;
      int lenOfBinary = g_args.len_of_binary;
4831

4832 4833 4834 4835 4836 4837
      int64_t randTail = DEFAULT_TIMESTAMP_STEP * k;

      if (g_args.disorderRatio != 0) {
        int rand_num = taosRandom() % 100;
        if (rand_num < g_args.disorderRatio) {
          randTail = (randTail + (taosRandom() % g_args.disorderRange + 1)) * (-1);
4838

4839 4840
          debugPrint("rand data generated, back %"PRId64"\n", randTail);
        }
4841
      } else {
4842 4843 4844 4845
        randTail = DEFAULT_TIMESTAMP_STEP * k;
      }

      retLen = generateData(data, data_type,
4846
                  ncols_per_record,
4847
                  startTime + randTail,
4848
                  lenOfBinary);
4849

4850 4851 4852
      if (len > remainderBufLen)
        break;

4853
      pstr += sprintf(pstr, "%s", data);
4854 4855 4856
      k++;
      len += retLen;
      remainderBufLen -= retLen;
4857 4858
    }

4859
    verbosePrint("%s() LN%d len=%"PRIu64" k=%"PRIu64" \nbuffer=%s\n",
4860
            __func__, __LINE__, len, k, buffer);
4861 4862

    startFrom ++;
4863

4864
    if (startFrom >= insertRows) {
4865
      break;
4866
    }
4867
  }
4868

4869 4870 4871
  *dataLen = len;
  return k;
}
4872

4873
static int generateSQLHead(char *tableName, int32_t tableSeq,
4874 4875
        threadInfo* pThreadInfo, SSuperTable* superTblInfo,
        char *buffer, int remainderBufLen)
4876 4877
{
  int len;
4878 4879 4880 4881

#define HEAD_BUFF_LEN    1024*24  // 16*1024 + (192+32)*2 + insert into ..
  char headBuf[HEAD_BUFF_LEN];

4882 4883 4884 4885
  if (superTblInfo) {
    if (AUTO_CREATE_SUBTBL == superTblInfo->autoCreateTable) {
      char* tagsValBuf = NULL;
      if (0 == superTblInfo->tagSource) {
4886
            tagsValBuf = generateTagVaulesForStb(superTblInfo, tableSeq);
4887 4888 4889 4890 4891 4892
      } else {
            tagsValBuf = getTagValueFromTagSample(
                    superTblInfo,
                    tableSeq % superTblInfo->tagSampleCount);
      }
      if (NULL == tagsValBuf) {
4893 4894
        errorPrint("%s() LN%d, tag buf failed to allocate  memory\n",
            __func__, __LINE__);
4895 4896 4897
        return -1;
      }

4898 4899 4900
      len = snprintf(
          headBuf,
                  HEAD_BUFF_LEN,
4901
                  "%s.%s using %s.%s tags %s values",
4902 4903 4904 4905 4906 4907 4908
                  pThreadInfo->db_name,
                  tableName,
                  pThreadInfo->db_name,
                  superTblInfo->sTblName,
                  tagsValBuf);
      tmfree(tagsValBuf);
    } else if (TBL_ALREADY_EXISTS == superTblInfo->childTblExists) {
4909 4910 4911
      len = snprintf(
          headBuf,
                  HEAD_BUFF_LEN,
4912
                  "%s.%s values",
4913
                  pThreadInfo->db_name,
4914
                  tableName);
4915
    } else {
4916 4917 4918
      len = snprintf(
          headBuf,
                  HEAD_BUFF_LEN,
4919
                  "%s.%s values",
4920 4921 4922 4923
                  pThreadInfo->db_name,
                  tableName);
    }
  } else {
4924 4925 4926
      len = snprintf(
          headBuf,
                  HEAD_BUFF_LEN,
4927
                  "%s.%s values",
4928 4929 4930 4931
                  pThreadInfo->db_name,
                  tableName);
  }

4932 4933 4934 4935 4936
  if (len > remainderBufLen)
    return -1;

  tstrncpy(buffer, headBuf, len + 1);

4937 4938 4939
  return len;
}

4940
static int64_t generateInterlaceDataBuffer(
4941 4942
        char *tableName, uint64_t batchPerTbl, uint64_t i, uint64_t batchPerTblTimes,
        uint64_t tableSeq,
4943
        threadInfo *pThreadInfo, char *buffer,
4944
        uint64_t insertRows,
4945
        int64_t startTime,
4946
        uint64_t *pRemainderBufLen)
4947
{
4948
  assert(buffer);
4949 4950 4951 4952 4953 4954 4955 4956 4957 4958
  char *pstr = buffer;
  SSuperTable* superTblInfo = pThreadInfo->superTblInfo;

  int headLen = generateSQLHead(tableName, tableSeq, pThreadInfo,
            superTblInfo, pstr, *pRemainderBufLen);

  if (headLen <= 0) {
    return 0;
  }
  // generate data buffer
4959
  verbosePrint("[%d] %s() LN%d i=%"PRIu64" buffer:\n%s\n",
4960 4961 4962 4963 4964
            pThreadInfo->threadID, __func__, __LINE__, i, buffer);

  pstr += headLen;
  *pRemainderBufLen -= headLen;

4965
  int64_t dataLen = 0;
4966

4967
  verbosePrint("[%d] %s() LN%d i=%"PRIu64" batchPerTblTimes=%"PRIu64" batchPerTbl = %"PRIu64"\n",
4968 4969 4970 4971 4972 4973 4974 4975 4976 4977
            pThreadInfo->threadID, __func__, __LINE__,
            i, batchPerTblTimes, batchPerTbl);

  if (superTblInfo) {
    if (0 == strncasecmp(superTblInfo->startTimestamp, "now", 3)) {
      startTime = taosGetTimestamp(pThreadInfo->time_precision);
    }
  } else {
      startTime = 1500000000000;
  }
4978

4979
  int64_t k = generateDataTail(
4980
    superTblInfo,
4981 4982 4983 4984
    batchPerTbl, pstr, *pRemainderBufLen, insertRows, 0,
    startTime,
    &(pThreadInfo->samplePos), &dataLen);

4985
  if (k == batchPerTbl) {
4986 4987 4988
    pstr += dataLen;
    *pRemainderBufLen -= dataLen;
  } else {
4989
    debugPrint("%s() LN%d, generated data tail: %"PRIu64", not equal batch per table: %"PRIu64"\n",
4990
            __func__, __LINE__, k, batchPerTbl);
4991 4992
    pstr -= headLen;
    pstr[0] = '\0';
4993
    k = 0;
4994 4995 4996 4997 4998
  }

  return k;
}

4999
static int64_t generateProgressiveDataBuffer(
5000
        char *tableName,
5001
        int64_t tableSeq,
5002 5003
        threadInfo *pThreadInfo, char *buffer,
        int64_t insertRows,
5004 5005
        int64_t startFrom, int64_t startTime, int64_t *pSamplePos,
        int64_t *pRemainderBufLen)
5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019
{
  SSuperTable* superTblInfo = pThreadInfo->superTblInfo;

  int ncols_per_record = 1; // count first col ts

  if (superTblInfo == NULL) {
    int datatypeSeq = 0;
    while(g_args.datatype[datatypeSeq]) {
        datatypeSeq ++;
        ncols_per_record ++;
    }
  }

  assert(buffer != NULL);
5020
  char *pstr = buffer;
5021

5022
  int64_t k = 0;
5023

5024
  memset(buffer, 0, *pRemainderBufLen);
5025

5026
  int64_t headLen = generateSQLHead(tableName, tableSeq, pThreadInfo, superTblInfo,
5027
          buffer, *pRemainderBufLen);
5028 5029 5030 5031

  if (headLen <= 0) {
    return 0;
  }
5032
  pstr += headLen;
5033
  *pRemainderBufLen -= headLen;
5034

5035
  int64_t dataLen;
5036
  k = generateDataTail(superTblInfo,
5037
          g_args.num_of_RPR, pstr, *pRemainderBufLen, insertRows, startFrom,
5038
          startTime,
5039
          pSamplePos, &dataLen);
5040

5041 5042
  return k;
}
5043

5044 5045 5046 5047 5048 5049 5050 5051 5052
static void printStatPerThread(threadInfo *pThreadInfo)
{
  fprintf(stderr, "====thread[%d] completed total inserted rows: %"PRIu64 ", total affected rows: %"PRIu64". %.2f records/second====\n",
          pThreadInfo->threadID,
          pThreadInfo->totalInsertRows,
          pThreadInfo->totalAffectedRows,
          (double)(pThreadInfo->totalAffectedRows / (pThreadInfo->totalDelay/1000.0)));
}

5053
static void* syncWriteInterlace(threadInfo *pThreadInfo) {
5054 5055
  debugPrint("[%d] %s() LN%d: ### interlace write\n",
         pThreadInfo->threadID, __func__, __LINE__);
5056

5057 5058
  uint64_t insertRows;
  uint64_t interlaceRows;
5059

5060
  SSuperTable* superTblInfo = pThreadInfo->superTblInfo;
5061

5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074
  if (superTblInfo) {
    insertRows = superTblInfo->insertRows;

    if ((superTblInfo->interlaceRows == 0)
        && (g_args.interlace_rows > 0)) {
      interlaceRows = g_args.interlace_rows;
    } else {
      interlaceRows = superTblInfo->interlaceRows;
    }
  } else {
    insertRows = g_args.num_of_DPT;
    interlaceRows = g_args.interlace_rows;
  }
5075

5076
  if (interlaceRows > insertRows)
5077
    interlaceRows = insertRows;
5078

5079 5080
  if (interlaceRows > g_args.num_of_RPR)
    interlaceRows = g_args.num_of_RPR;
5081

5082 5083 5084 5085 5086 5087 5088 5089 5090 5091
  int insertMode;

  if (interlaceRows > 0) {
    insertMode = INTERLACE_INSERT_MODE;
  } else {
    insertMode = PROGRESSIVE_INSERT_MODE;
  }

  // TODO: prompt tbl count multple interlace rows and batch
  //
5092

5093
  uint64_t maxSqlLen = superTblInfo?superTblInfo->maxSqlLen:g_args.max_sql_len;
5094
  char* buffer = calloc(maxSqlLen, 1);
5095
  if (NULL == buffer) {
5096
    errorPrint( "%s() LN%d, Failed to alloc %"PRIu64" Bytes, reason:%s\n",
5097
              __func__, __LINE__, maxSqlLen, strerror(errno));
5098 5099 5100
    return NULL;
  }

5101
  char tableName[TSDB_TABLE_NAME_LEN];
5102 5103 5104 5105

  pThreadInfo->totalInsertRows = 0;
  pThreadInfo->totalAffectedRows = 0;

5106
  int64_t nTimeStampStep = superTblInfo?superTblInfo->timeStampStep:DEFAULT_TIMESTAMP_STEP;
5107

5108
  uint64_t insert_interval =
5109
      superTblInfo?superTblInfo->insertInterval:g_args.insert_interval;
5110 5111
  uint64_t st = 0;
  uint64_t et = UINT64_MAX;
5112

5113 5114 5115
  uint64_t lastPrintTime = taosGetTimestampMs();
  uint64_t startTs = taosGetTimestampMs();
  uint64_t endTs;
5116

5117
  uint64_t tableSeq = pThreadInfo->start_table_from;
5118

5119
  debugPrint("[%d] %s() LN%d: start_table_from=%"PRIu64" ntables=%"PRIu64" insertRows=%"PRIu64"\n",
5120
          pThreadInfo->threadID, __func__, __LINE__, pThreadInfo->start_table_from,
5121 5122 5123 5124
          pThreadInfo->ntables, insertRows);

  int64_t startTime = pThreadInfo->start_time;

5125 5126
  assert(pThreadInfo->ntables > 0);

5127 5128
  uint64_t batchPerTbl = interlaceRows;
  uint64_t batchPerTblTimes;
5129

5130
  if ((interlaceRows > 0) && (pThreadInfo->ntables > 1)) {
5131
    batchPerTblTimes =
5132
        g_args.num_of_RPR / interlaceRows;
5133 5134 5135 5136
  } else {
    batchPerTblTimes = 1;
  }

5137
  uint64_t generatedRecPerTbl = 0;
5138
  bool flagSleep = true;
5139
  uint64_t sleepTimeTotal = 0;
5140

5141 5142 5143
  char *strInsertInto = "insert into ";
  int nInsertBufLen = strlen(strInsertInto);

5144
  while(pThreadInfo->totalInsertRows < pThreadInfo->ntables * insertRows) {
5145
    if ((flagSleep) && (insert_interval)) {
5146
        st = taosGetTimestampMs();
5147
        flagSleep = false;
5148 5149
    }
    // generate data
5150
    memset(buffer, 0, maxSqlLen);
5151
    uint64_t remainderBufLen = maxSqlLen;
5152

5153
    char *pstr = buffer;
5154 5155 5156 5157 5158

    int len = snprintf(pstr, nInsertBufLen + 1, "%s", strInsertInto);
    pstr += len;
    remainderBufLen -= len;

5159
    uint64_t recOfBatch = 0;
5160

5161
    for (uint64_t i = 0; i < batchPerTblTimes; i ++) {
5162
      getTableName(tableName, pThreadInfo, tableSeq);
5163 5164 5165
      if (0 == strlen(tableName)) {
        errorPrint("[%d] %s() LN%d, getTableName return null\n",
            pThreadInfo->threadID, __func__, __LINE__);
5166
        free(buffer);
5167 5168
        return NULL;
      }
5169

5170
      uint64_t oldRemainderLen = remainderBufLen;
5171
      int64_t generated = generateInterlaceDataBuffer(
5172 5173 5174 5175
        tableName, batchPerTbl, i, batchPerTblTimes,
        tableSeq,
        pThreadInfo, pstr,
        insertRows,
5176
        startTime,
5177
        &remainderBufLen);
5178

5179 5180
      debugPrint("[%d] %s() LN%d, generated records is %"PRId64"\n",
                  pThreadInfo->threadID, __func__, __LINE__, generated);
5181
      if (generated < 0) {
5182
        errorPrint("[%d] %s() LN%d, generated records is %"PRId64"\n",
5183
                  pThreadInfo->threadID, __func__, __LINE__, generated);
5184
        goto free_of_interlace;
5185 5186
      } else if (generated == 0) {
        break;
5187 5188
      }

5189
      tableSeq ++;
5190
      recOfBatch += batchPerTbl;
5191
      pstr += (oldRemainderLen - remainderBufLen);
5192
//      startTime += batchPerTbl * superTblInfo->timeStampStep;
5193
      pThreadInfo->totalInsertRows += batchPerTbl;
5194
      verbosePrint("[%d] %s() LN%d batchPerTbl=%"PRId64" recOfBatch=%"PRId64"\n",
5195 5196
                pThreadInfo->threadID, __func__, __LINE__,
                batchPerTbl, recOfBatch);
5197

5198 5199 5200 5201
      if (insertMode == INTERLACE_INSERT_MODE) {
          if (tableSeq == pThreadInfo->start_table_from + pThreadInfo->ntables) {
            // turn to first table
            tableSeq = pThreadInfo->start_table_from;
5202
            generatedRecPerTbl += batchPerTbl;
5203 5204

            startTime = pThreadInfo->start_time
5205
              + generatedRecPerTbl * nTimeStampStep;
5206

5207 5208 5209 5210
            flagSleep = true;
            if (generatedRecPerTbl >= insertRows)
              break;

5211 5212 5213 5214
            int remainRows = insertRows - generatedRecPerTbl;
            if ((remainRows > 0) && (batchPerTbl > remainRows))
              batchPerTbl = remainRows;

5215 5216
            if (pThreadInfo->ntables * batchPerTbl < g_args.num_of_RPR)
                break;
5217
          }
5218 5219
      }

5220
      verbosePrint("[%d] %s() LN%d generatedRecPerTbl=%"PRId64" insertRows=%"PRId64"\n",
5221 5222 5223 5224
                pThreadInfo->threadID, __func__, __LINE__,
                generatedRecPerTbl, insertRows);

      if ((g_args.num_of_RPR - recOfBatch) < batchPerTbl)
5225 5226 5227
        break;
    }

5228
    verbosePrint("[%d] %s() LN%d recOfBatch=%"PRIu64" totalInsertRows=%"PRIu64"\n",
5229 5230 5231 5232 5233
              pThreadInfo->threadID, __func__, __LINE__, recOfBatch,
              pThreadInfo->totalInsertRows);
    verbosePrint("[%d] %s() LN%d, buffer=%s\n",
           pThreadInfo->threadID, __func__, __LINE__, buffer);

5234
    startTs = taosGetTimestampMs();
5235

5236 5237 5238 5239 5240 5241 5242
    if (recOfBatch == 0) {
      errorPrint("[%d] %s() LN%d try inserting records of batch is %"PRIu64"\n",
              pThreadInfo->threadID, __func__, __LINE__,
              recOfBatch);
      errorPrint("%s\n", "\tPlease check if the batch or the buffer length is proper value!\n");
      goto free_of_interlace;
    }
5243
    int64_t affectedRows = execInsert(pThreadInfo, buffer, recOfBatch);
5244

5245
    endTs = taosGetTimestampMs();
5246 5247
    uint64_t delay = endTs - startTs;
    performancePrint("%s() LN%d, insert execution time is %"PRIu64"ms\n",
5248
            __func__, __LINE__, delay);
5249 5250 5251
    verbosePrint("[%d] %s() LN%d affectedRows=%"PRId64"\n",
            pThreadInfo->threadID,
            __func__, __LINE__, affectedRows);
5252 5253 5254 5255 5256 5257

    if (delay > pThreadInfo->maxDelay) pThreadInfo->maxDelay = delay;
    if (delay < pThreadInfo->minDelay) pThreadInfo->minDelay = delay;
    pThreadInfo->cntDelay++;
    pThreadInfo->totalDelay += delay;

5258 5259
    if (recOfBatch != affectedRows) {
        errorPrint("[%d] %s() LN%d execInsert insert %"PRIu64", affected rows: %"PRId64"\n%s\n",
5260
                pThreadInfo->threadID, __func__, __LINE__,
5261
                recOfBatch, affectedRows, buffer);
5262
        goto free_of_interlace;
5263
    }
5264

5265
    pThreadInfo->totalAffectedRows += affectedRows;
5266

5267 5268
    int64_t  currentPrintTime = taosGetTimestampMs();
    if (currentPrintTime - lastPrintTime > 30*1000) {
5269
      printf("thread[%d] has currently inserted rows: %"PRIu64 ", affected rows: %"PRIu64 "\n",
5270 5271 5272
                    pThreadInfo->threadID,
                    pThreadInfo->totalInsertRows,
                    pThreadInfo->totalAffectedRows);
5273 5274
      lastPrintTime = currentPrintTime;
    }
5275

5276
    if ((insert_interval) && flagSleep) {
5277
      et = taosGetTimestampMs();
5278

5279 5280
      if (insert_interval > (et - st) ) {
        int sleepTime = insert_interval - (et -st);
5281 5282
        performancePrint("%s() LN%d sleep: %d ms for insert interval\n",
                    __func__, __LINE__, sleepTime);
5283 5284 5285
        taosMsleep(sleepTime); // ms
        sleepTimeTotal += insert_interval;
      }
5286
    }
5287 5288
  }

5289
free_of_interlace:
5290
  tmfree(buffer);
5291
  printStatPerThread(pThreadInfo);
5292 5293 5294
  return NULL;
}

5295 5296 5297 5298 5299 5300 5301 5302
// sync insertion
/*
   1 thread: 100 tables * 2000  rows/s
   1 thread: 10  tables * 20000 rows/s
   6 thread: 300 tables * 2000  rows/s

   2 taosinsertdata , 1 thread:  10  tables * 20000 rows/s
*/
5303
static void* syncWriteProgressive(threadInfo *pThreadInfo) {
5304
  debugPrint("%s() LN%d: ### progressive write\n", __func__, __LINE__);
5305

5306
  SSuperTable* superTblInfo = pThreadInfo->superTblInfo;
5307
  uint64_t maxSqlLen = superTblInfo?superTblInfo->maxSqlLen:g_args.max_sql_len;
5308

5309
  char* buffer = calloc(maxSqlLen, 1);
5310
  if (NULL == buffer) {
5311
    errorPrint( "Failed to alloc %"PRIu64" Bytes, reason:%s\n",
5312
              maxSqlLen,
5313 5314 5315
              strerror(errno));
    return NULL;
  }
5316

5317 5318 5319
  uint64_t lastPrintTime = taosGetTimestampMs();
  uint64_t startTs = taosGetTimestampMs();
  uint64_t endTs;
5320

5321
  int64_t timeStampStep =
5322
      superTblInfo?superTblInfo->timeStampStep:DEFAULT_TIMESTAMP_STEP;
5323
/*  int insert_interval =
5324
      superTblInfo?superTblInfo->insertInterval:g_args.insert_interval;
5325 5326
  uint64_t st = 0;
  uint64_t et = 0xffffffff;
5327
  */
5328

5329 5330
  pThreadInfo->totalInsertRows = 0;
  pThreadInfo->totalAffectedRows = 0;
5331

5332
  pThreadInfo->samplePos = 0;
5333

5334
  for (uint64_t tableSeq =
5335
          pThreadInfo->start_table_from; tableSeq <= pThreadInfo->end_table_to;
5336
        tableSeq ++) {
5337
    int64_t start_time = pThreadInfo->start_time;
5338

5339
    uint64_t insertRows = (superTblInfo)?superTblInfo->insertRows:g_args.num_of_DPT;
5340 5341
    verbosePrint("%s() LN%d insertRows=%"PRId64"\n", __func__, __LINE__, insertRows);

5342
    for (uint64_t i = 0; i < insertRows;) {
5343
        /*
5344
      if (insert_interval) {
5345
            st = taosGetTimestampMs();
5346
      }
5347
      */
5348

5349 5350
      char tableName[TSDB_TABLE_NAME_LEN];
      getTableName(tableName, pThreadInfo, tableSeq);
5351
      verbosePrint("%s() LN%d: tid=%d seq=%"PRId64" tableName=%s\n",
5352 5353 5354
             __func__, __LINE__,
             pThreadInfo->threadID, tableSeq, tableName);

5355
      int64_t remainderBufLen = maxSqlLen;
5356 5357 5358 5359 5360 5361 5362 5363
      char *pstr = buffer;
      int nInsertBufLen = strlen("insert into ");

      int len = snprintf(pstr, nInsertBufLen + 1, "%s", "insert into ");

      pstr += len;
      remainderBufLen -= len;

5364
      int64_t generated = generateProgressiveDataBuffer(
5365
              tableName, tableSeq, pThreadInfo, pstr, insertRows,
5366
            i, start_time,
5367 5368
            &(pThreadInfo->samplePos),
            &remainderBufLen);
5369 5370 5371
      if (generated > 0)
        i += generated;
      else
5372
        goto free_of_progressive;
5373

5374
      start_time +=  generated * timeStampStep;
5375
      pThreadInfo->totalInsertRows += generated;
5376

5377
      startTs = taosGetTimestampMs();
5378

5379
      int64_t affectedRows = execInsert(pThreadInfo, buffer, generated);
5380

5381
      endTs = taosGetTimestampMs();
5382
      uint64_t delay = endTs - startTs;
5383 5384
      performancePrint("%s() LN%d, insert execution time is %"PRId64"ms\n",
              __func__, __LINE__, delay);
5385 5386 5387
      verbosePrint("[%d] %s() LN%d affectedRows=%"PRId64"\n",
            pThreadInfo->threadID,
            __func__, __LINE__, affectedRows);
5388

5389 5390 5391 5392
      if (delay > pThreadInfo->maxDelay) pThreadInfo->maxDelay = delay;
      if (delay < pThreadInfo->minDelay) pThreadInfo->minDelay = delay;
      pThreadInfo->cntDelay++;
      pThreadInfo->totalDelay += delay;
5393

5394 5395 5396 5397 5398
      if (affectedRows < 0) {
        errorPrint("%s() LN%d, affected rows: %"PRId64"\n",
                __func__, __LINE__, affectedRows);
        goto free_of_progressive;
      }
5399 5400 5401

      pThreadInfo->totalAffectedRows += affectedRows;

5402 5403
      int64_t  currentPrintTime = taosGetTimestampMs();
      if (currentPrintTime - lastPrintTime > 30*1000) {
5404
        printf("thread[%d] has currently inserted rows: %"PRId64 ", affected rows: %"PRId64 "\n",
5405 5406 5407
                    pThreadInfo->threadID,
                    pThreadInfo->totalInsertRows,
                    pThreadInfo->totalAffectedRows);
5408 5409 5410
        lastPrintTime = currentPrintTime;
      }

5411
      if (i >= insertRows)
5412
        break;
5413
/*
5414
      if (insert_interval) {
5415
        et = taosGetTimestampMs();
5416

5417 5418
        if (insert_interval > ((et - st)) ) {
            int sleep_time = insert_interval - (et -st);
5419 5420
            performancePrint("%s() LN%d sleep: %d ms for insert interval\n",
                    __func__, __LINE__, sleep_time);
5421 5422
            taosMsleep(sleep_time); // ms
        }
5423
      }
5424
      */
5425 5426
    }   // num_of_DPT

5427 5428
    if (g_args.verbose_print) {
      if ((tableSeq == pThreadInfo->ntables - 1) && superTblInfo &&
5429 5430
        (0 == strncasecmp(
                    superTblInfo->dataSource, "sample", strlen("sample")))) {
5431
          verbosePrint("%s() LN%d samplePos=%"PRId64"\n",
5432
                  __func__, __LINE__, pThreadInfo->samplePos);
5433
      }
5434
    }
5435
  } // tableSeq
5436

5437
free_of_progressive:
5438
  tmfree(buffer);
5439
  printStatPerThread(pThreadInfo);
5440
  return NULL;
H
Hui Li 已提交
5441 5442
}

5443 5444
static void* syncWrite(void *sarg) {

5445 5446
  threadInfo *pThreadInfo = (threadInfo *)sarg;
  SSuperTable* superTblInfo = pThreadInfo->superTblInfo;
5447

5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459
  int interlaceRows;

  if (superTblInfo) {
    if ((superTblInfo->interlaceRows == 0)
        && (g_args.interlace_rows > 0)) {
      interlaceRows = g_args.interlace_rows;
    } else {
      interlaceRows = superTblInfo->interlaceRows;
    }
  } else {
    interlaceRows = g_args.interlace_rows;
  }
5460

5461
  if (interlaceRows > 0) {
5462
    // interlace mode
5463
    return syncWriteInterlace(pThreadInfo);
5464 5465
  } else {
    // progressive mode
5466
    return syncWriteProgressive(pThreadInfo);
5467
  }
5468

5469 5470
}

5471
static void callBack(void *param, TAOS_RES *res, int code) {
5472 5473
  threadInfo* pThreadInfo = (threadInfo*)param;
  SSuperTable* superTblInfo = pThreadInfo->superTblInfo;
5474

5475 5476
  int insert_interval =
      superTblInfo?superTblInfo->insertInterval:g_args.insert_interval;
5477
  if (insert_interval) {
5478 5479 5480
    pThreadInfo->et = taosGetTimestampMs();
    if ((pThreadInfo->et - pThreadInfo->st) < insert_interval) {
      taosMsleep(insert_interval - (pThreadInfo->et - pThreadInfo->st)); // ms
5481
    }
H
Hui Li 已提交
5482
  }
5483

5484
  char *buffer = calloc(1, pThreadInfo->superTblInfo->maxSqlLen);
5485
  char data[MAX_DATA_SIZE];
5486
  char *pstr = buffer;
5487 5488
  pstr += sprintf(pstr, "insert into %s.%s%"PRId64" values",
          pThreadInfo->db_name, pThreadInfo->tb_prefix,
5489 5490 5491 5492 5493 5494 5495 5496
          pThreadInfo->start_table_from);
//  if (pThreadInfo->counter >= pThreadInfo->superTblInfo->insertRows) {
  if (pThreadInfo->counter >= g_args.num_of_RPR) {
    pThreadInfo->start_table_from++;
    pThreadInfo->counter = 0;
  }
  if (pThreadInfo->start_table_from > pThreadInfo->end_table_to) {
    tsem_post(&pThreadInfo->lock_sem);
5497 5498 5499 5500
    free(buffer);
    taos_free_result(res);
    return;
  }
5501

5502
  for (int i = 0; i < g_args.num_of_RPR; i++) {
5503
    int rand_num = taosRandom() % 100;
5504 5505 5506 5507
    if (0 != pThreadInfo->superTblInfo->disorderRatio
            && rand_num < pThreadInfo->superTblInfo->disorderRatio) {
      int64_t d = pThreadInfo->lastTs - (taosRandom() % pThreadInfo->superTblInfo->disorderRange + 1);
      generateRowData(data, d, pThreadInfo->superTblInfo);
5508
    } else {
5509
      generateRowData(data, pThreadInfo->lastTs += 1000, pThreadInfo->superTblInfo);
H
Hui Li 已提交
5510
    }
5511
    pstr += sprintf(pstr, "%s", data);
5512
    pThreadInfo->counter++;
H
Hui Li 已提交
5513

5514
    if (pThreadInfo->counter >= pThreadInfo->superTblInfo->insertRows) {
5515
      break;
H
Hui Li 已提交
5516 5517
    }
  }
5518

5519
  if (insert_interval) {
5520
    pThreadInfo->st = taosGetTimestampMs();
5521
  }
5522
  taos_query_a(pThreadInfo->taos, buffer, callBack, pThreadInfo);
5523
  free(buffer);
H
Hui Li 已提交
5524

5525
  taos_free_result(res);
H
Hui Li 已提交
5526 5527
}

5528
static void *asyncWrite(void *sarg) {
5529 5530
  threadInfo *pThreadInfo = (threadInfo *)sarg;
  SSuperTable* superTblInfo = pThreadInfo->superTblInfo;
5531

5532 5533 5534
  pThreadInfo->st = 0;
  pThreadInfo->et = 0;
  pThreadInfo->lastTs = pThreadInfo->start_time;
5535

5536
  int insert_interval =
5537
      superTblInfo?superTblInfo->insertInterval:g_args.insert_interval;
5538
  if (insert_interval) {
5539
    pThreadInfo->st = taosGetTimestampMs();
H
Hui Li 已提交
5540
  }
5541
  taos_query_a(pThreadInfo->taos, "show databases", callBack, pThreadInfo);
5542

5543
  tsem_wait(&(pThreadInfo->lock_sem));
H
Hui Li 已提交
5544 5545 5546 5547

  return NULL;
}

5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573
static int convertHostToServAddr(char *host, uint16_t port, struct sockaddr_in *serv_addr)
{
  uint16_t rest_port = port + TSDB_PORT_HTTP;
  struct hostent *server = gethostbyname(host);
  if ((server == NULL) || (server->h_addr == NULL)) {
    errorPrint("%s", "ERROR, no such host");
    return -1;
  }

  debugPrint("h_name: %s\nh_addr=%p\nh_addretype: %s\nh_length: %d\n",
            server->h_name,
            server->h_addr,
            (server->h_addrtype == AF_INET)?"ipv4":"ipv6",
            server->h_length);

  memset(serv_addr, 0, sizeof(struct sockaddr_in));
  serv_addr->sin_family = AF_INET;
  serv_addr->sin_port = htons(rest_port);
#ifdef WINDOWS
  serv_addr->sin_addr.s_addr = inet_addr(host);
#else
  memcpy(&(serv_addr->sin_addr.s_addr), server->h_addr, server->h_length);
#endif
  return 0;
}

5574 5575
static void startMultiThreadInsertData(int threads, char* db_name,
        char* precision,SSuperTable* superTblInfo) {
5576

5577 5578
  pthread_t *pids = malloc(threads * sizeof(pthread_t));
  assert(pids != NULL);
H
Hui Li 已提交
5579

5580 5581
  threadInfo *infos = malloc(threads * sizeof(threadInfo));
  assert(infos != NULL);
5582

5583 5584
  memset(pids, 0, threads * sizeof(pthread_t));
  memset(infos, 0, threads * sizeof(threadInfo));
5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601

  //TAOS* taos;
  //if (0 == strncasecmp(superTblInfo->insertMode, "taosc", 5)) {
  //  taos = taos_connect(g_Dbs.host, g_Dbs.user, g_Dbs.password, db_name, g_Dbs.port);
  //  if (NULL == taos) {
  //    printf("connect to server fail, reason: %s\n", taos_errstr(NULL));
  //    exit(-1);
  //  }
  //}

  int32_t timePrec = TSDB_TIME_PRECISION_MILLI;
  if (0 != precision[0]) {
    if (0 == strncasecmp(precision, "ms", 2)) {
      timePrec = TSDB_TIME_PRECISION_MILLI;
    }  else if (0 == strncasecmp(precision, "us", 2)) {
      timePrec = TSDB_TIME_PRECISION_MICRO;
    }  else {
5602
      errorPrint("Not support precision: %s\n", precision);
5603 5604 5605 5606
      exit(-1);
    }
  }

5607
  int64_t start_time;
5608 5609 5610
  if (superTblInfo) {
    if (0 == strncasecmp(superTblInfo->startTimestamp, "now", 3)) {
        start_time = taosGetTimestamp(timePrec);
5611
    } else {
5612 5613 5614 5615 5616
      if (TSDB_CODE_SUCCESS != taosParseTime(
        superTblInfo->startTimestamp,
        &start_time,
        strlen(superTblInfo->startTimestamp),
        timePrec, 0)) {
5617
          ERROR_EXIT("failed to parse time!\n");
5618
      }
5619
    }
5620 5621
  } else {
     start_time = 1500000000000;
5622 5623
  }

5624
  int64_t start = taosGetTimestampMs();
5625

5626
  // read sample data from file first
5627
  if ((superTblInfo) && (0 == strncasecmp(superTblInfo->dataSource,
5628
              "sample", strlen("sample")))) {
5629
    if (0 != prepareSampleDataForSTable(superTblInfo)) {
5630 5631
      errorPrint("%s() LN%d, prepare sample data for stable failed!\n",
              __func__, __LINE__);
5632 5633 5634 5635
      exit(-1);
    }
  }

5636
  // read sample data from file first
5637
  if ((superTblInfo) && (0 == strncasecmp(superTblInfo->dataSource,
5638 5639
              "sample", strlen("sample")))) {
    if (0 != prepareSampleDataForSTable(superTblInfo)) {
5640 5641
      errorPrint("%s() LN%d, prepare sample data for stable failed!\n",
              __func__, __LINE__);
5642 5643 5644 5645 5646 5647 5648 5649
      exit(-1);
    }
  }

  TAOS* taos = taos_connect(
              g_Dbs.host, g_Dbs.user,
              g_Dbs.password, db_name, g_Dbs.port);
  if (NULL == taos) {
5650 5651
    errorPrint("%s() LN%d, connect to server fail , reason: %s\n",
                __func__, __LINE__, taos_errstr(NULL));
5652 5653 5654
    exit(-1);
  }

5655 5656
  int ntables = 0;
  int startFrom;
5657

5658
  if (superTblInfo) {
5659 5660
    int64_t limit;
    uint64_t offset;
5661

5662
    if ((NULL != g_args.sqlFile) && (superTblInfo->childTblExists == TBL_NO_EXISTS) &&
5663
            ((superTblInfo->childTblOffset != 0) || (superTblInfo->childTblLimit >= 0))) {
5664
      printf("WARNING: offset and limit will not be used since the child tables not exists!\n");
5665 5666
    }

5667
    if (superTblInfo->childTblExists == TBL_ALREADY_EXISTS) {
5668 5669
      if ((superTblInfo->childTblLimit < 0)
          || ((superTblInfo->childTblOffset + superTblInfo->childTblLimit)
5670
            > (superTblInfo->childTblCount))) {
5671 5672 5673 5674 5675 5676
        superTblInfo->childTblLimit =
            superTblInfo->childTblCount - superTblInfo->childTblOffset;
      }

      offset = superTblInfo->childTblOffset;
      limit = superTblInfo->childTblLimit;
5677
    } else {
5678 5679
      limit = superTblInfo->childTblCount;
      offset = 0;
5680 5681
    }

5682 5683 5684
    ntables = limit;
    startFrom = offset;

5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703
    if ((superTblInfo->childTblExists != TBL_NO_EXISTS)
        && ((superTblInfo->childTblOffset + superTblInfo->childTblLimit )
            > superTblInfo->childTblCount)) {
      printf("WARNING: specified offset + limit > child table count!\n");
      if (!g_args.answer_yes) {
        printf("         Press enter key to continue or Ctrl-C to stop\n\n");
        (void)getchar();
      }
    }

    if ((superTblInfo->childTblExists != TBL_NO_EXISTS)
            && (0 == superTblInfo->childTblLimit)) {
      printf("WARNING: specified limit = 0, which cannot find table name to insert or query! \n");
      if (!g_args.answer_yes) {
        printf("         Press enter key to continue or Ctrl-C to stop\n\n");
        (void)getchar();
      }
    }

5704 5705 5706
    superTblInfo->childTblName = (char*)calloc(1,
        limit * TSDB_TABLE_NAME_LEN);
    if (superTblInfo->childTblName == NULL) {
5707
      errorPrint("%s() LN%d, alloc memory failed!\n", __func__, __LINE__);
5708 5709 5710 5711
      taos_close(taos);
      exit(-1);
    }

5712
    uint64_t childTblCount;
5713 5714 5715 5716 5717 5718
    getChildNameOfSuperTableWithLimitAndOffset(
        taos,
        db_name, superTblInfo->sTblName,
        &superTblInfo->childTblName, &childTblCount,
        limit,
        offset);
5719 5720 5721
  } else {
    ntables = g_args.num_of_tables;
    startFrom = 0;
5722
  }
5723

5724 5725
  taos_close(taos);

5726
  uint64_t a = ntables / threads;
5727 5728 5729 5730 5731
  if (a < 1) {
    threads = ntables;
    a = 1;
  }

5732
  uint64_t b = 0;
5733 5734 5735 5736
  if (threads != 0) {
    b = ntables % threads;
  }

5737 5738 5739 5740 5741 5742
  if ((superTblInfo)
      && (0 == strncasecmp(superTblInfo->insertMode, "rest", strlen("rest")))) {
    if (convertHostToServAddr(g_Dbs.host, g_Dbs.port, &(g_Dbs.serv_addr)) != 0)
      exit(-1);
  }

H
Hui Li 已提交
5743
  for (int i = 0; i < threads; i++) {
5744
    threadInfo *t_info = infos + i;
H
Hui Li 已提交
5745 5746
    t_info->threadID = i;
    tstrncpy(t_info->db_name, db_name, MAX_DB_NAME_SIZE);
5747
    t_info->time_precision = timePrec;
5748 5749 5750
    t_info->superTblInfo = superTblInfo;

    t_info->start_time = start_time;
5751
    t_info->minDelay = UINT64_MAX;
5752

5753 5754
    if ((NULL == superTblInfo) ||
            (0 == strncasecmp(superTblInfo->insertMode, "taosc", 5))) {
5755
      //t_info->taos = taos;
5756
      t_info->taos = taos_connect(
5757
              g_Dbs.host, g_Dbs.user,
5758
              g_Dbs.password, db_name, g_Dbs.port);
5759
      if (NULL == t_info->taos) {
5760 5761
        errorPrint(
                "connect to server fail from insert sub thread, reason: %s\n",
5762
                taos_errstr(NULL));
5763 5764 5765 5766 5767 5768
        exit(-1);
      }
    } else {
      t_info->taos = NULL;
    }

5769
/*    if ((NULL == superTblInfo)
5770
            || (0 == superTblInfo->multiThreadWriteOneTbl)) {
5771
            */
5772 5773 5774 5775
      t_info->start_table_from = startFrom;
      t_info->ntables = i<b?a+1:a;
      t_info->end_table_to = i < b ? startFrom + a : startFrom + a - 1;
      startFrom = t_info->end_table_to + 1;
5776
/*    } else {
5777 5778
      t_info->start_table_from = 0;
      t_info->ntables = superTblInfo->childTblCount;
5779 5780
      t_info->start_time = t_info->start_time + rand_int() % 10000 - rand_tinyint();
    }
5781
*/
5782 5783
    tsem_init(&(t_info->lock_sem), 0, 0);
    if (SYNC == g_Dbs.queryMode) {
5784
      pthread_create(pids + i, NULL, syncWrite, t_info);
5785
    } else {
5786 5787
      pthread_create(pids + i, NULL, asyncWrite, t_info);
    }
H
Hui Li 已提交
5788
  }
5789

H
Hui Li 已提交
5790 5791 5792 5793
  for (int i = 0; i < threads; i++) {
    pthread_join(pids[i], NULL);
  }

5794 5795 5796 5797
  uint64_t totalDelay = 0;
  uint64_t maxDelay = 0;
  uint64_t minDelay = UINT64_MAX;
  uint64_t cntDelay = 1;
5798 5799
  double  avgDelay = 0;

H
Hui Li 已提交
5800
  for (int i = 0; i < threads; i++) {
5801 5802
    threadInfo *t_info = infos + i;

S
TD-1057  
Shengliang Guan 已提交
5803
    tsem_destroy(&(t_info->lock_sem));
5804 5805
    taos_close(t_info->taos);

5806
    debugPrint("%s() LN%d, [%d] totalInsert=%"PRIu64" totalAffected=%"PRIu64"\n",
5807 5808 5809
            __func__, __LINE__,
            t_info->threadID, t_info->totalInsertRows,
            t_info->totalAffectedRows);
5810 5811
    if (superTblInfo) {
        superTblInfo->totalAffectedRows += t_info->totalAffectedRows;
5812
        superTblInfo->totalInsertRows += t_info->totalInsertRows;
5813 5814 5815
    } else {
        g_args.totalAffectedRows += t_info->totalAffectedRows;
        g_args.totalInsertRows += t_info->totalInsertRows;
5816
    }
5817 5818 5819 5820

    totalDelay  += t_info->totalDelay;
    cntDelay   += t_info->cntDelay;
    if (t_info->maxDelay > maxDelay) maxDelay = t_info->maxDelay;
5821
    if (t_info->minDelay < minDelay) minDelay = t_info->minDelay;
H
Hui Li 已提交
5822
  }
5823
  cntDelay -= 1;
H
Hui Li 已提交
5824

5825
  if (cntDelay == 0)    cntDelay = 1;
5826 5827
  avgDelay = (double)totalDelay / cntDelay;

5828 5829
  int64_t end = taosGetTimestampMs();
  int64_t t = end - start;
5830 5831

  if (superTblInfo) {
5832
    fprintf(stderr, "Spent %.2f seconds to insert rows: %"PRIu64", affected rows: %"PRIu64" with %d thread(s) into %s.%s. %.2f records/second\n\n",
5833
          t / 1000.0, superTblInfo->totalInsertRows,
5834 5835
          superTblInfo->totalAffectedRows,
          threads, db_name, superTblInfo->sTblName,
5836
          (double)superTblInfo->totalInsertRows / (t / 1000.0));
5837 5838 5839 5840

    if (g_fpOfInsertResult) {
      fprintf(g_fpOfInsertResult,
          "Spent %.2f seconds to insert rows: %"PRIu64", affected rows: %"PRIu64" with %d thread(s) into %s.%s. %.2f records/second\n\n",
5841
          t / 1000.0, superTblInfo->totalInsertRows,
5842 5843
          superTblInfo->totalAffectedRows,
          threads, db_name, superTblInfo->sTblName,
5844
          (double)superTblInfo->totalInsertRows / (t / 1000.0));
5845
    }
5846
  } else {
5847
    fprintf(stderr, "Spent %.2f seconds to insert rows: %"PRIu64", affected rows: %"PRIu64" with %d thread(s) into %s %.2f records/second\n\n",
5848
          t / 1000.0, g_args.totalInsertRows,
5849 5850
          g_args.totalAffectedRows,
          threads, db_name,
5851
          (double)g_args.totalInsertRows / (t / 1000.0));
5852 5853 5854
    if (g_fpOfInsertResult) {
      fprintf(g_fpOfInsertResult,
          "Spent %.2f seconds to insert rows: %"PRIu64", affected rows: %"PRIu64" with %d thread(s) into %s %.2f records/second\n\n",
5855
          t * 1000.0, g_args.totalInsertRows,
5856 5857
          g_args.totalAffectedRows,
          threads, db_name,
5858
          (double)g_args.totalInsertRows / (t / 1000.0));
5859
    }
5860
  }
5861

5862
  fprintf(stderr, "insert delay, avg: %10.2fms, max: %"PRIu64"ms, min: %"PRIu64"ms\n\n",
5863
          avgDelay, maxDelay, minDelay);
5864 5865
  if (g_fpOfInsertResult) {
    fprintf(g_fpOfInsertResult, "insert delay, avg:%10.2fms, max: %"PRIu64"ms, min: %"PRIu64"ms\n\n",
5866
          avgDelay, maxDelay, minDelay);
5867
  }
5868

5869 5870
  //taos_close(taos);

H
Hui Li 已提交
5871
  free(pids);
5872
  free(infos);
H
Hui Li 已提交
5873 5874
}

5875
static void *readTable(void *sarg) {
5876
#if 1
5877
  threadInfo *rinfo = (threadInfo *)sarg;
H
hzcheng 已提交
5878 5879
  TAOS *taos = rinfo->taos;
  char command[BUFFER_SIZE] = "\0";
5880
  uint64_t sTime = rinfo->start_time;
H
hzcheng 已提交
5881 5882
  char *tb_prefix = rinfo->tb_prefix;
  FILE *fp = fopen(rinfo->fp, "a");
H
Hui Li 已提交
5883
  if (NULL == fp) {
5884
    errorPrint( "fopen %s fail, reason:%s.\n", rinfo->fp, strerror(errno));
H
Hui Li 已提交
5885 5886
    return NULL;
  }
5887

5888
    int num_of_DPT;
5889
/*  if (rinfo->superTblInfo) {
5890 5891
    num_of_DPT = rinfo->superTblInfo->insertRows; //  nrecords_per_table;
  } else {
5892
  */
5893
      num_of_DPT = g_args.num_of_DPT;
5894
//  }
5895

5896
  int num_of_tables = rinfo->ntables; // rinfo->end_table_to - rinfo->start_table_from + 1;
H
hzcheng 已提交
5897
  int totalData = num_of_DPT * num_of_tables;
5898
  bool do_aggreFunc = g_Dbs.do_aggreFunc;
H
hzcheng 已提交
5899 5900 5901 5902 5903 5904 5905 5906

  int n = do_aggreFunc ? (sizeof(aggreFunc) / sizeof(aggreFunc[0])) : 2;
  if (!do_aggreFunc) {
    printf("\nThe first field is either Binary or Bool. Aggregation functions are not supported.\n");
  }
  printf("%d records:\n", totalData);
  fprintf(fp, "| QFunctions |    QRecords    |   QSpeed(R/s)   |  QLatency(ms) |\n");

5907
  for (uint64_t j = 0; j < n; j++) {
H
hzcheng 已提交
5908
    double totalT = 0;
5909 5910 5911
    uint64_t count = 0;
    for (uint64_t i = 0; i < num_of_tables; i++) {
      sprintf(command, "select %s from %s%"PRIu64" where ts>= %" PRIu64,
5912
              aggreFunc[j], tb_prefix, i, sTime);
H
hzcheng 已提交
5913

5914
      double t = taosGetTimestampMs();
S
Shuaiqiang Chang 已提交
5915 5916
      TAOS_RES *pSql = taos_query(taos, command);
      int32_t code = taos_errno(pSql);
H
hzcheng 已提交
5917

S
Shuaiqiang Chang 已提交
5918
      if (code != 0) {
5919
        errorPrint( "Failed to query:%s\n", taos_errstr(pSql));
S
Shuaiqiang Chang 已提交
5920
        taos_free_result(pSql);
H
hzcheng 已提交
5921
        taos_close(taos);
5922
        fclose(fp);
5923
        return NULL;
H
hzcheng 已提交
5924 5925
      }

5926
      while(taos_fetch_row(pSql) != NULL) {
H
hzcheng 已提交
5927 5928 5929
        count++;
      }

5930
      t = taosGetTimestampMs() - t;
H
hzcheng 已提交
5931 5932
      totalT += t;

S
Shuaiqiang Chang 已提交
5933
      taos_free_result(pSql);
H
hzcheng 已提交
5934 5935 5936
    }

    fprintf(fp, "|%10s  |   %10d   |  %12.2f   |   %10.2f  |\n",
S
slguan 已提交
5937
            aggreFunc[j][0] == '*' ? "   *   " : aggreFunc[j], totalData,
H
hzcheng 已提交
5938
            (double)(num_of_tables * num_of_DPT) / totalT, totalT * 1000);
5939
    printf("select %10s took %.6f second(s)\n", aggreFunc[j], totalT * 1000);
H
hzcheng 已提交
5940 5941 5942
  }
  fprintf(fp, "\n");
  fclose(fp);
5943
#endif
H
hzcheng 已提交
5944 5945 5946
  return NULL;
}

5947
static void *readMetric(void *sarg) {
5948
#if 1
5949
  threadInfo *rinfo = (threadInfo *)sarg;
H
hzcheng 已提交
5950 5951 5952
  TAOS *taos = rinfo->taos;
  char command[BUFFER_SIZE] = "\0";
  FILE *fp = fopen(rinfo->fp, "a");
H
Hui Li 已提交
5953 5954 5955 5956
  if (NULL == fp) {
    printf("fopen %s fail, reason:%s.\n", rinfo->fp, strerror(errno));
    return NULL;
  }
5957 5958

  int num_of_DPT = rinfo->superTblInfo->insertRows;
5959
  int num_of_tables = rinfo->ntables; // rinfo->end_table_to - rinfo->start_table_from + 1;
H
hzcheng 已提交
5960
  int totalData = num_of_DPT * num_of_tables;
5961
  bool do_aggreFunc = g_Dbs.do_aggreFunc;
H
hzcheng 已提交
5962 5963 5964 5965 5966 5967 5968 5969 5970

  int n = do_aggreFunc ? (sizeof(aggreFunc) / sizeof(aggreFunc[0])) : 2;
  if (!do_aggreFunc) {
    printf("\nThe first field is either Binary or Bool. Aggregation functions are not supported.\n");
  }
  printf("%d records:\n", totalData);
  fprintf(fp, "Querying On %d records:\n", totalData);

  for (int j = 0; j < n; j++) {
5971
    char condition[COND_BUF_LEN] = "\0";
B
Bomin Zhang 已提交
5972
    char tempS[64] = "\0";
H
hzcheng 已提交
5973 5974 5975 5976 5977

    int m = 10 < num_of_tables ? 10 : num_of_tables;

    for (int i = 1; i <= m; i++) {
      if (i == 1) {
5978
        sprintf(tempS, "t1 = %d", i);
H
hzcheng 已提交
5979
      } else {
5980
        sprintf(tempS, " or t1 = %d ", i);
H
hzcheng 已提交
5981
      }
5982
      strncat(condition, tempS, COND_BUF_LEN - 1);
H
hzcheng 已提交
5983

L
liu0x54 已提交
5984
      sprintf(command, "select %s from meters where %s", aggreFunc[j], condition);
H
hzcheng 已提交
5985 5986 5987 5988

      printf("Where condition: %s\n", condition);
      fprintf(fp, "%s\n", command);

5989
      double t = taosGetTimestampMs();
H
hzcheng 已提交
5990

S
Shuaiqiang Chang 已提交
5991 5992 5993 5994
      TAOS_RES *pSql = taos_query(taos, command);
      int32_t code = taos_errno(pSql);

      if (code != 0) {
5995
        errorPrint( "Failed to query:%s\n", taos_errstr(pSql));
S
Shuaiqiang Chang 已提交
5996
        taos_free_result(pSql);
H
hzcheng 已提交
5997
        taos_close(taos);
5998
        fclose(fp);
5999
        return NULL;
H
hzcheng 已提交
6000 6001
      }
      int count = 0;
6002
      while(taos_fetch_row(pSql) != NULL) {
H
hzcheng 已提交
6003 6004
        count++;
      }
6005
      t = taosGetTimestampMs() - t;
H
hzcheng 已提交
6006

6007
      fprintf(fp, "| Speed: %12.2f(per s) | Latency: %.4f(ms) |\n",
6008 6009
              num_of_tables * num_of_DPT / (t * 1000.0), t);
      printf("select %10s took %.6f second(s)\n\n", aggreFunc[j], t * 1000.0);
H
hzcheng 已提交
6010

S
Shuaiqiang Chang 已提交
6011
      taos_free_result(pSql);
H
hzcheng 已提交
6012 6013 6014 6015
    }
    fprintf(fp, "\n");
  }
  fclose(fp);
6016
#endif
H
hzcheng 已提交
6017 6018 6019
  return NULL;
}

H
Hui Li 已提交
6020

6021
static int insertTestProcess() {
6022

6023 6024 6025
  setupForAnsiEscape();
  int ret = printfInsertMeta();
  resetAfterAnsiEscape();
6026

6027 6028 6029
  if (ret == -1)
    exit(EXIT_FAILURE);

6030
  debugPrint("%d result file: %s\n", __LINE__, g_Dbs.resultFile);
6031 6032
  g_fpOfInsertResult = fopen(g_Dbs.resultFile, "a");
  if (NULL == g_fpOfInsertResult) {
6033
    errorPrint( "Failed to open %s for save result\n", g_Dbs.resultFile);
6034 6035
    return -1;
  }
6036

6037 6038
  if (g_fpOfInsertResult)
    printfInsertMetaToFile(g_fpOfInsertResult);
6039

6040 6041 6042 6043
  if (!g_args.answer_yes) {
    printf("Press enter key to continue\n\n");
    (void)getchar();
  }
6044

6045 6046 6047
  init_rand_data();

  // create database and super tables
6048
  if(createDatabasesAndStables() != 0) {
6049 6050
    if (g_fpOfInsertResult)
      fclose(g_fpOfInsertResult);
6051 6052
    return -1;
  }
6053 6054

  // pretreatement
6055
  prepareSampleData();
6056

6057 6058 6059 6060
  double start;
  double end;

  // create child tables
6061
  start = taosGetTimestampMs();
6062
  createChildTables();
6063
  end = taosGetTimestampMs();
6064

6065
  if (g_totalChildTables > 0) {
6066
    fprintf(stderr, "Spent %.4f seconds to create %d tables with %d thread(s)\n\n",
6067
            (end - start)/1000.0, g_totalChildTables, g_Dbs.threadCountByCreateTbl);
6068 6069
    if (g_fpOfInsertResult) {
      fprintf(g_fpOfInsertResult,
6070
            "Spent %.4f seconds to create %d tables with %d thread(s)\n\n",
6071
            (end - start)/1000.0, g_totalChildTables, g_Dbs.threadCountByCreateTbl);
6072
    }
6073
  }
6074

6075
  taosMsleep(1000);
6076
  // create sub threads for inserting data
6077
  //start = taosGetTimestampMs();
6078
  for (int i = 0; i < g_Dbs.dbCount; i++) {
6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091
    if (g_Dbs.use_metric) {
      if (g_Dbs.db[i].superTblCount > 0) {
        for (int j = 0; j < g_Dbs.db[i].superTblCount; j++) {

          SSuperTable* superTblInfo = &g_Dbs.db[i].superTbls[j];

          if (superTblInfo && (superTblInfo->insertRows > 0)) {
            startMultiThreadInsertData(
              g_Dbs.threadCount,
              g_Dbs.db[i].dbName,
              g_Dbs.db[i].dbCfg.precision,
              superTblInfo);
          }
6092
        }
6093
      }
6094 6095
    } else {
        startMultiThreadInsertData(
6096 6097 6098
          g_Dbs.threadCount,
          g_Dbs.db[i].dbName,
          g_Dbs.db[i].dbCfg.precision,
6099
          NULL);
H
Hui Li 已提交
6100
    }
6101
  }
6102
  //end = taosGetTimestampMs();
6103

6104
  //int64_t    totalInsertRows = 0;
6105
  //int64_t    totalAffectedRows = 0;
6106
  //for (int i = 0; i < g_Dbs.dbCount; i++) {
6107
  //  for (int j = 0; j < g_Dbs.db[i].superTblCount; j++) {
6108
  //  totalInsertRows+= g_Dbs.db[i].superTbls[j].totalInsertRows;
6109 6110
  //  totalAffectedRows += g_Dbs.db[i].superTbls[j].totalAffectedRows;
  //}
6111
  //printf("Spent %.4f seconds to insert rows: %"PRId64", affected rows: %"PRId64" with %d thread(s)\n\n", end - start, totalInsertRows, totalAffectedRows, g_Dbs.threadCount);
6112
  postFreeResource();
6113

6114 6115 6116
  return 0;
}

6117 6118
static void *specifiedTableQuery(void *sarg) {
  threadInfo *pThreadInfo = (threadInfo *)sarg;
6119

6120
  if (pThreadInfo->taos == NULL) {
6121 6122 6123 6124 6125 6126 6127 6128
    TAOS * taos = NULL;
    taos = taos_connect(g_queryInfo.host,
          g_queryInfo.user,
          g_queryInfo.password,
          NULL,
          g_queryInfo.port);
    if (taos == NULL) {
      errorPrint("[%d] Failed to connect to TDengine, reason:%s\n",
6129
            pThreadInfo->threadID, taos_errstr(NULL));
6130 6131
      return NULL;
    } else {
6132
      pThreadInfo->taos = taos;
6133 6134 6135
    }
  }

6136 6137
  char sqlStr[MAX_DB_NAME_SIZE + 5];
  sprintf(sqlStr, "use %s", g_queryInfo.dbName);
6138 6139
  if (0 != queryDbExec(pThreadInfo->taos, sqlStr, NO_INSERT_TYPE, false)) {
    taos_close(pThreadInfo->taos);
6140 6141 6142 6143
    errorPrint( "use database %s failed!\n\n",
                g_queryInfo.dbName);
    return NULL;
  }
6144

6145 6146
  uint64_t st = 0;
  uint64_t et = 0;
6147

6148
  uint64_t queryTimes = g_queryInfo.specifiedQueryInfo.queryTimes;
6149

6150 6151 6152
  uint64_t totalQueried = 0;
  uint64_t lastPrintTime = taosGetTimestampMs();
  uint64_t startTs = taosGetTimestampMs();
6153

6154
  while(queryTimes --) {
6155 6156 6157
    if (g_queryInfo.specifiedQueryInfo.queryInterval && (et - st) <
            (int64_t)g_queryInfo.specifiedQueryInfo.queryInterval) {
      taosMsleep(g_queryInfo.specifiedQueryInfo.queryInterval - (et - st)); // ms
6158 6159
    }

6160 6161
    char tmpFile[MAX_FILE_NAME_LEN*2] = {0};
    if (g_queryInfo.specifiedQueryInfo.result[pThreadInfo->querySeq][0] != 0) {
6162
        sprintf(tmpFile, "%s-%d",
6163 6164
                g_queryInfo.specifiedQueryInfo.result[pThreadInfo->querySeq],
                pThreadInfo->threadID);
6165 6166 6167 6168 6169
    }

    st = taosGetTimestampMs();

    selectAndGetResult(pThreadInfo,
6170
          g_queryInfo.specifiedQueryInfo.sql[pThreadInfo->querySeq], tmpFile);
6171

6172 6173 6174 6175
    et = taosGetTimestampMs();
    printf("=thread[%"PRId64"] use %s complete one sql, Spent %10.3f s\n",
              taosGetSelfPthreadId(), g_queryInfo.queryMode, (et - st)/1000.0);

6176 6177
    totalQueried ++;
    g_queryInfo.specifiedQueryInfo.totalQueried ++;
6178

6179 6180
    uint64_t  currentPrintTime = taosGetTimestampMs();
    uint64_t  endTs = taosGetTimestampMs();
6181
    if (currentPrintTime - lastPrintTime > 30*1000) {
6182
      debugPrint("%s() LN%d, endTs=%"PRIu64"ms, startTs=%"PRIu64"ms\n",
6183
          __func__, __LINE__, endTs, startTs);
6184
      printf("thread[%d] has currently completed queries: %"PRIu64", QPS: %10.6f\n",
6185 6186
                    pThreadInfo->threadID,
                    totalQueried,
6187
                    (double)(totalQueried/((endTs-startTs)/1000.0)));
6188
      lastPrintTime = currentPrintTime;
6189
    }
H
Hui Li 已提交
6190
  }
6191 6192
  return NULL;
}
H
Hui Li 已提交
6193

6194
static void replaceChildTblName(char* inSql, char* outSql, int tblIndex) {
6195 6196
  char sourceString[32] = "xxxx";
  char subTblName[MAX_TB_NAME_SIZE*3];
6197 6198
  sprintf(subTblName, "%s.%s",
          g_queryInfo.dbName,
6199
          g_queryInfo.superQueryInfo.childTblName + tblIndex*TSDB_TABLE_NAME_LEN);
6200 6201

  //printf("inSql: %s\n", inSql);
6202

6203 6204
  char* pos = strstr(inSql, sourceString);
  if (0 == pos) {
6205
    return;
H
Hui Li 已提交
6206
  }
6207

6208
  tstrncpy(outSql, inSql, pos - inSql + 1);
6209
  //printf("1: %s\n", outSql);
6210
  strncat(outSql, subTblName, MAX_QUERY_SQL_LENGTH - 1);
6211
  //printf("2: %s\n", outSql);
6212
  strncat(outSql, pos+strlen(sourceString), MAX_QUERY_SQL_LENGTH - 1);
6213
  //printf("3: %s\n", outSql);
H
Hui Li 已提交
6214 6215
}

6216
static void *superTableQuery(void *sarg) {
6217
  char sqlstr[MAX_QUERY_SQL_LENGTH];
6218
  threadInfo *pThreadInfo = (threadInfo *)sarg;
6219

6220
  if (pThreadInfo->taos == NULL) {
6221 6222 6223 6224 6225 6226 6227 6228
    TAOS * taos = NULL;
    taos = taos_connect(g_queryInfo.host,
          g_queryInfo.user,
          g_queryInfo.password,
          NULL,
          g_queryInfo.port);
    if (taos == NULL) {
      errorPrint("[%d] Failed to connect to TDengine, reason:%s\n",
6229
            pThreadInfo->threadID, taos_errstr(NULL));
6230 6231
      return NULL;
    } else {
6232
      pThreadInfo->taos = taos;
6233 6234 6235
    }
  }

6236 6237
  uint64_t st = 0;
  uint64_t et = (int64_t)g_queryInfo.superQueryInfo.queryInterval;
6238

6239 6240 6241
  uint64_t queryTimes = g_queryInfo.superQueryInfo.queryTimes;
  uint64_t totalQueried = 0;
  uint64_t  startTs = taosGetTimestampMs();
6242

6243
  uint64_t  lastPrintTime = taosGetTimestampMs();
6244
  while(queryTimes --) {
6245 6246 6247
    if (g_queryInfo.superQueryInfo.queryInterval
            && (et - st) < (int64_t)g_queryInfo.superQueryInfo.queryInterval) {
      taosMsleep(g_queryInfo.superQueryInfo.queryInterval - (et - st)); // ms
6248
      //printf("========sleep duration:%"PRId64 "========inserted rows:%d, table range:%d - %d\n", (1000 - (et - st)), i, pThreadInfo->start_table_from, pThreadInfo->end_table_to);
6249
    }
H
Hui Li 已提交
6250

6251
    st = taosGetTimestampMs();
6252
    for (int i = pThreadInfo->start_table_from; i <= pThreadInfo->end_table_to; i++) {
6253
      for (int j = 0; j < g_queryInfo.superQueryInfo.sqlCount; j++) {
6254
        memset(sqlstr,0,sizeof(sqlstr));
6255
        replaceChildTblName(g_queryInfo.superQueryInfo.sql[j], sqlstr, i);
6256
        char tmpFile[MAX_FILE_NAME_LEN*2] = {0};
6257
        if (g_queryInfo.superQueryInfo.result[j][0] != 0) {
6258
          sprintf(tmpFile, "%s-%d",
6259
                  g_queryInfo.superQueryInfo.result[j],
6260
                  pThreadInfo->threadID);
6261
        }
6262
        selectAndGetResult(pThreadInfo, sqlstr, tmpFile);
6263 6264 6265 6266 6267 6268 6269

        totalQueried++;
        g_queryInfo.superQueryInfo.totalQueried ++;

        int64_t  currentPrintTime = taosGetTimestampMs();
        int64_t  endTs = taosGetTimestampMs();
        if (currentPrintTime - lastPrintTime > 30*1000) {
6270
          printf("thread[%d] has currently completed queries: %"PRIu64", QPS: %10.3f\n",
6271 6272
                    pThreadInfo->threadID,
                    totalQueried,
6273
                    (double)(totalQueried/((endTs-startTs)/1000.0)));
6274
          lastPrintTime = currentPrintTime;
6275
        }
6276
      }
H
Hui Li 已提交
6277
    }
6278
    et = taosGetTimestampMs();
6279
    printf("####thread[%"PRId64"] complete all sqls to allocate all sub-tables[%"PRIu64" - %"PRIu64"] once queries duration:%.4fs\n\n",
6280
            taosGetSelfPthreadId(),
6281 6282
            pThreadInfo->start_table_from,
            pThreadInfo->end_table_to,
6283
            (double)(et - st)/1000.0);
6284
  }
6285

6286 6287 6288
  return NULL;
}

6289
static int queryTestProcess() {
6290 6291 6292 6293

  setupForAnsiEscape();
  printfQueryMeta();
  resetAfterAnsiEscape();
6294 6295 6296 6297 6298 6299

  TAOS * taos = NULL;
  taos = taos_connect(g_queryInfo.host,
          g_queryInfo.user,
          g_queryInfo.password,
          NULL,
6300
          g_queryInfo.port);
6301
  if (taos == NULL) {
6302 6303
    errorPrint( "Failed to connect to TDengine, reason:%s\n",
            taos_errstr(NULL));
6304 6305 6306
    exit(-1);
  }

6307
  if (0 != g_queryInfo.superQueryInfo.sqlCount) {
6308 6309
    getAllChildNameOfSuperTable(taos,
            g_queryInfo.dbName,
6310 6311 6312
            g_queryInfo.superQueryInfo.sTblName,
            &g_queryInfo.superQueryInfo.childTblName,
            &g_queryInfo.superQueryInfo.childTblCount);
6313
  }
6314

6315 6316 6317 6318
  if (!g_args.answer_yes) {
    printf("Press enter key to continue\n\n");
    (void)getchar();
  }
6319

6320
  printfQuerySystemInfo(taos);
6321

6322 6323 6324 6325 6326 6327
  if (0 == strncasecmp(g_queryInfo.queryMode, "rest", strlen("rest"))) {
    if (convertHostToServAddr(
        g_queryInfo.host, g_queryInfo.port, &g_queryInfo.serv_addr) != 0)
      exit(-1);
  }

6328 6329 6330
  pthread_t  *pids  = NULL;
  threadInfo *infos = NULL;
  //==== create sub threads for query from specify table
6331 6332
  int nConcurrent = g_queryInfo.specifiedQueryInfo.concurrent;
  int nSqlCount = g_queryInfo.specifiedQueryInfo.sqlCount;
6333

6334
  uint64_t startTs = taosGetTimestampMs();
6335

6336 6337 6338 6339 6340 6341
  if ((nSqlCount > 0) && (nConcurrent > 0)) {

    pids  = malloc(nConcurrent * nSqlCount * sizeof(pthread_t));
    infos = malloc(nConcurrent * nSqlCount * sizeof(threadInfo));

    if ((NULL == pids) || (NULL == infos)) {
6342
      taos_close(taos);
6343
      ERROR_EXIT("memory allocation failed for create threads\n");
6344
    }
6345

6346 6347 6348 6349 6350
    for (int i = 0; i < nConcurrent; i++) {
      for (int j = 0; j < nSqlCount; j++) {
        threadInfo *t_info = infos + i * nSqlCount + j;
        t_info->threadID = i * nSqlCount + j;
        t_info->querySeq = j;
6351

6352
        if (0 == strncasecmp(g_queryInfo.queryMode, "taosc", 5)) {
6353

6354 6355 6356 6357
          char sqlStr[MAX_TB_NAME_SIZE*2];
          sprintf(sqlStr, "use %s", g_queryInfo.dbName);
          verbosePrint("%s() %d sqlStr: %s\n", __func__, __LINE__, sqlStr);
          if (0 != queryDbExec(taos, sqlStr, NO_INSERT_TYPE, false)) {
6358
            taos_close(taos);
6359 6360
            free(infos);
            free(pids);
6361 6362 6363
            errorPrint( "use database %s failed!\n\n",
                g_queryInfo.dbName);
            return -1;
6364
          }
6365
        }
6366

6367
        t_info->taos = NULL;// TODO: workaround to use separate taos connection;
6368

6369
        pthread_create(pids + i * nSqlCount + j, NULL, specifiedTableQuery,
6370 6371
            t_info);
      }
6372
    }
6373
  } else {
6374
    g_queryInfo.specifiedQueryInfo.concurrent = 0;
6375
  }
6376

6377 6378
  taos_close(taos);

6379 6380 6381
  pthread_t  *pidsOfSub  = NULL;
  threadInfo *infosOfSub = NULL;
  //==== create sub threads for query from all sub table of the super table
6382 6383 6384 6385
  if ((g_queryInfo.superQueryInfo.sqlCount > 0)
          && (g_queryInfo.superQueryInfo.threadCnt > 0)) {
    pidsOfSub  = malloc(g_queryInfo.superQueryInfo.threadCnt * sizeof(pthread_t));
    infosOfSub = malloc(g_queryInfo.superQueryInfo.threadCnt * sizeof(threadInfo));
6386 6387

    if ((NULL == pidsOfSub) || (NULL == infosOfSub)) {
6388 6389
      free(infos);
      free(pids);
6390

6391
      ERROR_EXIT("memory allocation failed for create threads\n");
6392
    }
6393

6394
    uint64_t ntables = g_queryInfo.superQueryInfo.childTblCount;
6395
    int threads = g_queryInfo.superQueryInfo.threadCnt;
6396

6397
    uint64_t a = ntables / threads;
6398 6399 6400 6401
    if (a < 1) {
      threads = ntables;
      a = 1;
    }
6402

6403
    uint64_t b = 0;
6404 6405 6406
    if (threads != 0) {
      b = ntables % threads;
    }
6407

6408
    uint64_t startFrom = 0;
6409
    for (int i = 0; i < threads; i++) {
6410 6411
      threadInfo *t_info = infosOfSub + i;
      t_info->threadID = i;
6412

6413 6414 6415 6416
      t_info->start_table_from = startFrom;
      t_info->ntables = i<b?a+1:a;
      t_info->end_table_to = i < b ? startFrom + a : startFrom + a - 1;
      startFrom = t_info->end_table_to + 1;
6417
      t_info->taos = NULL; // TODO: workaround to use separate taos connection;
6418
      pthread_create(pidsOfSub + i, NULL, superTableQuery, t_info);
6419 6420
    }

6421
    g_queryInfo.superQueryInfo.threadCnt = threads;
6422
  } else {
6423
    g_queryInfo.superQueryInfo.threadCnt = 0;
6424
  }
6425

6426 6427 6428 6429 6430 6431
  if ((nSqlCount > 0) && (nConcurrent > 0)) {
    for (int i = 0; i < nConcurrent; i++) {
      for (int j = 0; j < nSqlCount; j++) {
        pthread_join(pids[i * nSqlCount + j], NULL);
      }
    }
6432
  }
S
Shuaiqiang Chang 已提交
6433

6434
  tmfree((char*)pids);
6435
  tmfree((char*)infos);
6436

6437
  for (int i = 0; i < g_queryInfo.superQueryInfo.threadCnt; i++) {
6438
    pthread_join(pidsOfSub[i], NULL);
H
hzcheng 已提交
6439
  }
H
Hui Li 已提交
6440

6441
  tmfree((char*)pidsOfSub);
6442
  tmfree((char*)infosOfSub);
6443

6444
//  taos_close(taos);// TODO: workaround to use separate taos connection;
6445
  uint64_t endTs = taosGetTimestampMs();
6446

6447
  uint64_t totalQueried = g_queryInfo.specifiedQueryInfo.totalQueried +
6448 6449
    g_queryInfo.superQueryInfo.totalQueried;

6450
  fprintf(stderr, "==== completed total queries: %"PRIu64", the QPS of all threads: %10.3f====\n",
6451
          totalQueried,
6452
          (double)(totalQueried/((endTs-startTs)/1000.0)));
6453 6454 6455
  return 0;
}

6456
static void subscribe_callback(TAOS_SUB* tsub, TAOS_RES *res, void* param, int code) {
6457
  if (res == NULL || taos_errno(res) != 0) {
6458 6459
    errorPrint("%s() LN%d, failed to subscribe result, code:%d, reason:%s\n",
           __func__, __LINE__, code, taos_errstr(res));
6460 6461
    return;
  }
6462

6463 6464
  if (param)
    appendResultToFile(res, (char*)param);
6465
  // tao_unscribe() will free result.
H
hzcheng 已提交
6466 6467
}

6468 6469
static TAOS_SUB* subscribeImpl(
        TAOS *taos, char *sql, char* topic, char* resultFileName) {
6470
  TAOS_SUB* tsub = NULL;
H
hzcheng 已提交
6471

6472
  if (ASYNC_QUERY_MODE == g_queryInfo.specifiedQueryInfo.mode) {
6473
    tsub = taos_subscribe(taos,
6474
            g_queryInfo.specifiedQueryInfo.subscribeRestart,
6475
            topic, sql, subscribe_callback, (void*)resultFileName,
6476
            g_queryInfo.specifiedQueryInfo.subscribeInterval);
6477
  } else {
6478
    tsub = taos_subscribe(taos,
6479
            g_queryInfo.specifiedQueryInfo.subscribeRestart,
6480
            topic, sql, NULL, NULL, 0);
6481
  }
6482

6483 6484 6485
  if (tsub == NULL) {
    printf("failed to create subscription. topic:%s, sql:%s\n", topic, sql);
    return NULL;
6486
  }
6487

6488 6489
  return tsub;
}
H
hzcheng 已提交
6490

6491 6492
static void *superSubscribe(void *sarg) {
  threadInfo *pThreadInfo = (threadInfo *)sarg;
6493
  char subSqlstr[MAX_QUERY_SQL_LENGTH];
6494
  TAOS_SUB*    tsub[MAX_QUERY_SQL_COUNT] = {0};
H
hzcheng 已提交
6495

6496 6497 6498
  if (g_queryInfo.superQueryInfo.sqlCount == 0)
    return NULL;

6499
  if (pThreadInfo->taos == NULL) {
6500 6501 6502 6503 6504 6505 6506 6507
    TAOS * taos = NULL;
    taos = taos_connect(g_queryInfo.host,
          g_queryInfo.user,
          g_queryInfo.password,
          g_queryInfo.dbName,
          g_queryInfo.port);
    if (taos == NULL) {
      errorPrint("[%d] Failed to connect to TDengine, reason:%s\n",
6508
            pThreadInfo->threadID, taos_errstr(NULL));
6509 6510
      return NULL;
    } else {
6511
      pThreadInfo->taos = taos;
6512 6513 6514
    }
  }

6515 6516
  char sqlStr[MAX_TB_NAME_SIZE*2];
  sprintf(sqlStr, "use %s", g_queryInfo.dbName);
6517 6518
  if (0 != queryDbExec(pThreadInfo->taos, sqlStr, NO_INSERT_TYPE, false)) {
    taos_close(pThreadInfo->taos);
6519 6520
    errorPrint( "use database %s failed!\n\n",
                g_queryInfo.dbName);
6521 6522
    return NULL;
  }
6523

6524 6525 6526
  //int64_t st = 0;
  //int64_t et = 0;
  do {
6527 6528
    //if (g_queryInfo.specifiedQueryInfo.queryInterval && (et - st) < g_queryInfo.specifiedQueryInfo.queryInterval) {
    //  taosMsleep(g_queryInfo.specifiedQueryInfo.queryInterval- (et - st)); // ms
6529
    //  //printf("========sleep duration:%"PRId64 "========inserted rows:%d, table range:%d - %d\n", (1000 - (et - st)), i, pThreadInfo->start_table_from, pThreadInfo->end_table_to);
6530 6531 6532 6533
    //}

    //st = taosGetTimestampMs();
    char topic[32] = {0};
6534
    for (int i = 0; i < g_queryInfo.superQueryInfo.sqlCount; i++) {
6535 6536
      sprintf(topic, "taosdemo-subscribe-%d", i);
      memset(subSqlstr,0,sizeof(subSqlstr));
6537
      replaceChildTblName(g_queryInfo.superQueryInfo.sql[i], subSqlstr, i);
6538
      char tmpFile[MAX_FILE_NAME_LEN*2] = {0};
6539
      if (g_queryInfo.superQueryInfo.result[i][0] != 0) {
6540
        sprintf(tmpFile, "%s-%d",
6541
                g_queryInfo.superQueryInfo.result[i], pThreadInfo->threadID);
6542
      }
6543
      tsub[i] = subscribeImpl(pThreadInfo->taos, subSqlstr, topic, tmpFile);
6544
      if (NULL == tsub[i]) {
6545
        taos_close(pThreadInfo->taos);
6546 6547 6548 6549
        return NULL;
      }
    }
    //et = taosGetTimestampMs();
6550
    //printf("========thread[%"PRIu64"] complete all sqls to super table once queries duration:%.4fs\n", taosGetSelfPthreadId(), (double)(et - st)/1000.0);
6551
  } while(0);
6552 6553 6554

  // start loop to consume result
  TAOS_RES* res = NULL;
6555
  while(1) {
6556
    for (int i = 0; i < g_queryInfo.superQueryInfo.sqlCount; i++) {
6557
      if (ASYNC_QUERY_MODE == g_queryInfo.superQueryInfo.mode) {
6558 6559
        continue;
      }
6560

6561
      res = taos_consume(tsub[i]);
6562 6563
      if (res) {
        char tmpFile[MAX_FILE_NAME_LEN*2] = {0};
6564
        if (g_queryInfo.superQueryInfo.result[i][0] != 0) {
6565
          sprintf(tmpFile, "%s-%d",
6566
                  g_queryInfo.superQueryInfo.result[i],
6567
                  pThreadInfo->threadID);
6568
          appendResultToFile(res, tmpFile);
6569
        }
H
hzcheng 已提交
6570 6571 6572
      }
    }
  }
6573
  taos_free_result(res);
6574

6575
  for (int i = 0; i < g_queryInfo.superQueryInfo.sqlCount; i++) {
6576
    taos_unsubscribe(tsub[i], g_queryInfo.superQueryInfo.subscribeKeepProgress);
6577
  }
6578

6579
  taos_close(pThreadInfo->taos);
H
hzcheng 已提交
6580 6581 6582
  return NULL;
}

6583 6584
static void *specifiedSubscribe(void *sarg) {
  threadInfo *pThreadInfo = (threadInfo *)sarg;
6585
  TAOS_SUB*    tsub[MAX_QUERY_SQL_COUNT] = {0};
H
hzcheng 已提交
6586

6587 6588 6589
  if (g_queryInfo.specifiedQueryInfo.sqlCount == 0)
    return NULL;

6590
  if (pThreadInfo->taos == NULL) {
6591 6592 6593 6594 6595 6596 6597 6598
    TAOS * taos = NULL;
    taos = taos_connect(g_queryInfo.host,
          g_queryInfo.user,
          g_queryInfo.password,
          g_queryInfo.dbName,
          g_queryInfo.port);
    if (taos == NULL) {
      errorPrint("[%d] Failed to connect to TDengine, reason:%s\n",
6599
            pThreadInfo->threadID, taos_errstr(NULL));
6600 6601
      return NULL;
    } else {
6602
      pThreadInfo->taos = taos;
6603 6604 6605
    }
  }

6606 6607
  char sqlStr[MAX_TB_NAME_SIZE*2];
  sprintf(sqlStr, "use %s", g_queryInfo.dbName);
6608
  debugPrint("%s() %d sqlStr: %s\n", __func__, __LINE__, sqlStr);
6609 6610
  if (0 != queryDbExec(pThreadInfo->taos, sqlStr, NO_INSERT_TYPE, false)) {
    taos_close(pThreadInfo->taos);
6611 6612
    return NULL;
  }
6613

6614 6615 6616
  //int64_t st = 0;
  //int64_t et = 0;
  do {
6617 6618
    //if (g_queryInfo.specifiedQueryInfo.queryInterval && (et - st) < g_queryInfo.specifiedQueryInfo.queryInterval) {
    //  taosMsleep(g_queryInfo.specifiedQueryInfo.queryInterval- (et - st)); // ms
6619
    //  //printf("========sleep duration:%"PRIu64 "========inserted rows:%d, table range:%d - %d\n", (1000 - (et - st)), i, pThreadInfo->start_table_from, pThreadInfo->end_table_to);
6620 6621 6622 6623
    //}

    //st = taosGetTimestampMs();
    char topic[32] = {0};
6624
    for (int i = 0; i < g_queryInfo.specifiedQueryInfo.sqlCount; i++) {
6625 6626
      sprintf(topic, "taosdemo-subscribe-%d", i);
      char tmpFile[MAX_FILE_NAME_LEN*2] = {0};
6627
      if (g_queryInfo.specifiedQueryInfo.result[i][0] != 0) {
6628
        sprintf(tmpFile, "%s-%d",
6629
                g_queryInfo.specifiedQueryInfo.result[i], pThreadInfo->threadID);
6630
      }
6631
      tsub[i] = subscribeImpl(pThreadInfo->taos,
6632
          g_queryInfo.specifiedQueryInfo.sql[i], topic, tmpFile);
6633
      if (NULL == tsub[i]) {
6634
        taos_close(pThreadInfo->taos);
6635 6636 6637 6638
        return NULL;
      }
    }
    //et = taosGetTimestampMs();
6639
    //printf("========thread[%"PRIu64"] complete all sqls to super table once queries duration:%.4fs\n", taosGetSelfPthreadId(), (double)(et - st)/1000.0);
6640
  } while(0);
6641 6642 6643

  // start loop to consume result
  TAOS_RES* res = NULL;
6644
  while(1) {
6645
    for (int i = 0; i < g_queryInfo.specifiedQueryInfo.sqlCount; i++) {
6646
      if (ASYNC_QUERY_MODE == g_queryInfo.specifiedQueryInfo.mode) {
6647 6648
        continue;
      }
6649

6650
      res = taos_consume(tsub[i]);
6651 6652
      if (res) {
        char tmpFile[MAX_FILE_NAME_LEN*2] = {0};
6653
        if (g_queryInfo.specifiedQueryInfo.result[i][0] != 0) {
6654
          sprintf(tmpFile, "%s-%d",
6655
                  g_queryInfo.specifiedQueryInfo.result[i], pThreadInfo->threadID);
6656
          appendResultToFile(res, tmpFile);
6657 6658 6659 6660 6661
        }
      }
    }
  }
  taos_free_result(res);
6662

6663
  for (int i = 0; i < g_queryInfo.specifiedQueryInfo.sqlCount; i++) {
6664 6665
    taos_unsubscribe(tsub[i],
        g_queryInfo.specifiedQueryInfo.subscribeKeepProgress);
6666
  }
6667

6668
  taos_close(pThreadInfo->taos);
H
hzcheng 已提交
6669 6670 6671
  return NULL;
}

6672
static int subscribeTestProcess() {
6673
  setupForAnsiEscape();
6674
  printfQueryMeta();
6675
  resetAfterAnsiEscape();
6676

6677 6678
  if (!g_args.answer_yes) {
    printf("Press enter key to continue\n\n");
6679
    (void) getchar();
Y
yihaoDeng 已提交
6680
  }
6681

6682 6683 6684 6685 6686
  TAOS * taos = NULL;
  taos = taos_connect(g_queryInfo.host,
          g_queryInfo.user,
          g_queryInfo.password,
          g_queryInfo.dbName,
6687
          g_queryInfo.port);
6688
  if (taos == NULL) {
6689 6690
    errorPrint( "Failed to connect to TDengine, reason:%s\n",
            taos_errstr(NULL));
6691 6692 6693
    exit(-1);
  }

6694
  if (0 != g_queryInfo.superQueryInfo.sqlCount) {
6695 6696
    getAllChildNameOfSuperTable(taos,
            g_queryInfo.dbName,
6697 6698 6699
            g_queryInfo.superQueryInfo.sTblName,
            &g_queryInfo.superQueryInfo.childTblName,
            &g_queryInfo.superQueryInfo.childTblCount);
6700 6701
  }

6702 6703
  taos_close(taos); // TODO: workaround to use separate taos connection;

6704 6705 6706
  pthread_t  *pids = NULL;
  threadInfo *infos = NULL;
  //==== create sub threads for query from super table
6707 6708
  if ((g_queryInfo.specifiedQueryInfo.sqlCount <= 0) ||
          (g_queryInfo.specifiedQueryInfo.concurrent <= 0)) {
6709 6710 6711
    errorPrint("%s() LN%d, query sqlCount %"PRIu64" or concurrent %"PRIu64" is not correct.\n",
              __func__, __LINE__,
              g_queryInfo.specifiedQueryInfo.sqlCount,
6712
              g_queryInfo.specifiedQueryInfo.concurrent);
6713 6714 6715
    exit(-1);
  }

6716 6717
  pids  = malloc(g_queryInfo.specifiedQueryInfo.concurrent * sizeof(pthread_t));
  infos = malloc(g_queryInfo.specifiedQueryInfo.concurrent * sizeof(threadInfo));
6718
  if ((NULL == pids) || (NULL == infos)) {
6719
      errorPrint("%s() LN%d, malloc failed for create threads\n", __func__, __LINE__);
6720
      exit(-1);
6721
  }
6722

6723
  for (int i = 0; i < g_queryInfo.specifiedQueryInfo.concurrent; i++) {
6724 6725
      threadInfo *t_info = infos + i;
      t_info->threadID = i;
6726
      t_info->taos = NULL;  // TODO: workaround to use separate taos connection;
6727
      pthread_create(pids + i, NULL, specifiedSubscribe, t_info);
H
hzcheng 已提交
6728
  }
6729

6730
  //==== create sub threads for query from sub table
6731 6732
  pthread_t  *pidsOfSub  = NULL;
  threadInfo *infosOfSub = NULL;
6733 6734 6735
  if ((g_queryInfo.superQueryInfo.sqlCount > 0)
          && (g_queryInfo.superQueryInfo.threadCnt > 0)) {
    pidsOfSub  = malloc(g_queryInfo.superQueryInfo.threadCnt *
6736
            sizeof(pthread_t));
6737
    infosOfSub = malloc(g_queryInfo.superQueryInfo.threadCnt *
6738
            sizeof(threadInfo));
6739
    if ((NULL == pidsOfSub) || (NULL == infosOfSub)) {
6740 6741 6742
      errorPrint("%s() LN%d, malloc failed for create threads\n",
              __func__, __LINE__);
      // taos_close(taos);
6743
      exit(-1);
S
Shuaiqiang Chang 已提交
6744
    }
6745

6746
    uint64_t ntables = g_queryInfo.superQueryInfo.childTblCount;
6747
    int threads = g_queryInfo.superQueryInfo.threadCnt;
6748

6749
    uint64_t a = ntables / threads;
6750 6751 6752 6753
    if (a < 1) {
      threads = ntables;
      a = 1;
    }
6754

6755
    uint64_t b = 0;
6756 6757 6758
    if (threads != 0) {
      b = ntables % threads;
    }
6759

6760
    uint64_t startFrom = 0;
6761
    for (int i = 0; i < threads; i++) {
6762 6763
      threadInfo *t_info = infosOfSub + i;
      t_info->threadID = i;
6764

6765 6766 6767 6768
      t_info->start_table_from = startFrom;
      t_info->ntables = i<b?a+1:a;
      t_info->end_table_to = i < b ? startFrom + a : startFrom + a - 1;
      startFrom = t_info->end_table_to + 1;
6769
      t_info->taos = NULL; // TODO: workaround to use separate taos connection;
6770
      pthread_create(pidsOfSub + i, NULL, superSubscribe, t_info);
H
hzcheng 已提交
6771
    }
6772

6773
    g_queryInfo.superQueryInfo.threadCnt = threads;
6774

6775
    for (int i = 0; i < g_queryInfo.superQueryInfo.threadCnt; i++) {
6776 6777
      pthread_join(pidsOfSub[i], NULL);
    }
H
hzcheng 已提交
6778
  }
6779

6780
  for (int i = 0; i < g_queryInfo.specifiedQueryInfo.concurrent; i++) {
6781
    pthread_join(pids[i], NULL);
6782
  }
H
hzcheng 已提交
6783

6784
  tmfree((char*)pids);
6785
  tmfree((char*)infos);
H
hzcheng 已提交
6786

6787
  tmfree((char*)pidsOfSub);
6788
  tmfree((char*)infosOfSub);
6789
//   taos_close(taos);
6790
  return 0;
H
hzcheng 已提交
6791 6792
}

6793
static void initOfInsertMeta() {
6794
  memset(&g_Dbs, 0, sizeof(SDbs));
6795

6796
  // set default values
6797
  tstrncpy(g_Dbs.host, "127.0.0.1", MAX_HOSTNAME_SIZE);
6798
  g_Dbs.port = 6030;
6799 6800
  tstrncpy(g_Dbs.user, TSDB_DEFAULT_USER, MAX_USERNAME_SIZE);
  tstrncpy(g_Dbs.password, TSDB_DEFAULT_PASS, MAX_PASSWORD_SIZE);
6801
  g_Dbs.threadCount = 2;
6802 6803

  g_Dbs.use_metric = g_args.use_metric;
L
Liu Tao 已提交
6804 6805
}

6806
static void initOfQueryMeta() {
6807
  memset(&g_queryInfo, 0, sizeof(SQueryMetaInfo));
6808

6809
  // set default values
6810
  tstrncpy(g_queryInfo.host, "127.0.0.1", MAX_HOSTNAME_SIZE);
6811
  g_queryInfo.port = 6030;
6812 6813
  tstrncpy(g_queryInfo.user, TSDB_DEFAULT_USER, MAX_USERNAME_SIZE);
  tstrncpy(g_queryInfo.password, TSDB_DEFAULT_PASS, MAX_PASSWORD_SIZE);
L
Liu Tao 已提交
6814 6815
}

6816
static void setParaFromArg(){
6817
  if (g_args.host) {
6818
    tstrncpy(g_Dbs.host, g_args.host, MAX_HOSTNAME_SIZE);
6819
  } else {
6820
    tstrncpy(g_Dbs.host, "127.0.0.1", MAX_HOSTNAME_SIZE);
6821
  }
L
Liu Tao 已提交
6822

6823
  if (g_args.user) {
6824
    tstrncpy(g_Dbs.user, g_args.user, MAX_USERNAME_SIZE);
6825
  }
6826 6827

  if (g_args.password) {
6828
    tstrncpy(g_Dbs.password, g_args.password, MAX_PASSWORD_SIZE);
6829 6830
  }

6831 6832
  if (g_args.port) {
    g_Dbs.port = g_args.port;
6833
  }
L
Liu Tao 已提交
6834

6835 6836 6837
  g_Dbs.threadCount = g_args.num_of_threads;
  g_Dbs.threadCountByCreateTbl = g_args.num_of_threads;

6838 6839
  g_Dbs.dbCount = 1;
  g_Dbs.db[0].drop = 1;
6840

6841
  tstrncpy(g_Dbs.db[0].dbName, g_args.database, MAX_DB_NAME_SIZE);
6842
  g_Dbs.db[0].dbCfg.replica = g_args.replica;
6843
  tstrncpy(g_Dbs.db[0].dbCfg.precision, "ms", MAX_DB_NAME_SIZE);
L
Liu Tao 已提交
6844

6845
  tstrncpy(g_Dbs.resultFile, g_args.output_file, MAX_FILE_NAME_LEN);
6846 6847 6848 6849 6850

  g_Dbs.use_metric = g_args.use_metric;
  g_Dbs.insert_only = g_args.insert_only;

  g_Dbs.do_aggreFunc = true;
L
Liu Tao 已提交
6851

6852 6853
  char dataString[STRING_LEN];
  char **data_type = g_args.datatype;
6854

6855
  memset(dataString, 0, STRING_LEN);
L
Liu Tao 已提交
6856

6857 6858
  if (strcasecmp(data_type[0], "BINARY") == 0
          || strcasecmp(data_type[0], "BOOL") == 0
6859
          || strcasecmp(data_type[0], "NCHAR") == 0 ) {
6860
    g_Dbs.do_aggreFunc = false;
L
Liu Tao 已提交
6861
  }
H
hzcheng 已提交
6862

6863 6864 6865 6866 6867
  if (g_args.use_metric) {
    g_Dbs.db[0].superTblCount = 1;
    tstrncpy(g_Dbs.db[0].superTbls[0].sTblName, "meters", MAX_TB_NAME_SIZE);
    g_Dbs.db[0].superTbls[0].childTblCount = g_args.num_of_tables;
    g_Dbs.threadCount = g_args.num_of_threads;
6868
    g_Dbs.threadCountByCreateTbl = g_args.num_of_threads;
6869
    g_Dbs.queryMode = g_args.query_mode;
6870

6871 6872 6873 6874
    g_Dbs.db[0].superTbls[0].autoCreateTable = PRE_CREATE_SUBTBL;
    g_Dbs.db[0].superTbls[0].childTblExists = TBL_NO_EXISTS;
    g_Dbs.db[0].superTbls[0].disorderRange = g_args.disorderRange;
    g_Dbs.db[0].superTbls[0].disorderRatio = g_args.disorderRatio;
6875
    tstrncpy(g_Dbs.db[0].superTbls[0].childTblPrefix,
6876 6877 6878
            g_args.tb_prefix, MAX_TB_NAME_SIZE);
    tstrncpy(g_Dbs.db[0].superTbls[0].dataSource, "rand", MAX_TB_NAME_SIZE);
    tstrncpy(g_Dbs.db[0].superTbls[0].insertMode, "taosc", MAX_TB_NAME_SIZE);
6879
    tstrncpy(g_Dbs.db[0].superTbls[0].startTimestamp,
6880
            "2017-07-14 10:40:00.000", MAX_TB_NAME_SIZE);
6881
    g_Dbs.db[0].superTbls[0].timeStampStep = DEFAULT_TIMESTAMP_STEP;
6882

6883
    g_Dbs.db[0].superTbls[0].insertRows = g_args.num_of_DPT;
6884
    g_Dbs.db[0].superTbls[0].maxSqlLen = g_args.max_sql_len;
6885

6886 6887 6888 6889 6890
    g_Dbs.db[0].superTbls[0].columnCount = 0;
    for (int i = 0; i < MAX_NUM_DATATYPE; i++) {
      if (data_type[i] == NULL) {
        break;
      }
6891

6892
      tstrncpy(g_Dbs.db[0].superTbls[0].columns[i].dataType,
6893
              data_type[i], MAX_TB_NAME_SIZE);
6894
      g_Dbs.db[0].superTbls[0].columns[i].dataLen = g_args.len_of_binary;
6895 6896
      g_Dbs.db[0].superTbls[0].columnCount++;
    }
6897

6898 6899 6900 6901 6902
    if (g_Dbs.db[0].superTbls[0].columnCount > g_args.num_of_CPR) {
      g_Dbs.db[0].superTbls[0].columnCount = g_args.num_of_CPR;
    } else {
      for (int i = g_Dbs.db[0].superTbls[0].columnCount; i < g_args.num_of_CPR; i++) {
        tstrncpy(g_Dbs.db[0].superTbls[0].columns[i].dataType, "INT", MAX_TB_NAME_SIZE);
6903
        g_Dbs.db[0].superTbls[0].columns[i].dataLen = 0;
6904 6905 6906
        g_Dbs.db[0].superTbls[0].columnCount++;
      }
    }
6907

6908
    tstrncpy(g_Dbs.db[0].superTbls[0].tags[0].dataType, "INT", MAX_TB_NAME_SIZE);
6909
    g_Dbs.db[0].superTbls[0].tags[0].dataLen = 0;
6910

6911
    tstrncpy(g_Dbs.db[0].superTbls[0].tags[1].dataType, "BINARY", MAX_TB_NAME_SIZE);
6912 6913
    g_Dbs.db[0].superTbls[0].tags[1].dataLen = g_args.len_of_binary;
    g_Dbs.db[0].superTbls[0].tagCount = 2;
6914
  } else {
6915 6916
    g_Dbs.threadCountByCreateTbl = g_args.num_of_threads;
    g_Dbs.db[0].superTbls[0].tagCount = 0;
H
hzcheng 已提交
6917
  }
6918 6919 6920 6921 6922 6923
}

/* Function to do regular expression check */
static int regexMatch(const char *s, const char *reg, int cflags) {
  regex_t regex;
  char    msgbuf[100] = {0};
H
hzcheng 已提交
6924

6925 6926 6927
  /* Compile regular expression */
  if (regcomp(&regex, reg, cflags) != 0) {
    printf("Fail to compile regex\n");
H
Hui Li 已提交
6928 6929 6930
    exit(-1);
  }

6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954
  /* Execute regular expression */
  int reti = regexec(&regex, s, 0, NULL, 0);
  if (!reti) {
    regfree(&regex);
    return 1;
  } else if (reti == REG_NOMATCH) {
    regfree(&regex);
    return 0;
  } else {
    regerror(reti, &regex, msgbuf, sizeof(msgbuf));
    printf("Regex match failed: %s\n", msgbuf);
    regfree(&regex);
    exit(-1);
  }

  return 0;
}

static int isCommentLine(char *line) {
  if (line == NULL) return 1;

  return regexMatch(line, "^\\s*#.*", REG_EXTENDED);
}

6955
static void querySqlFile(TAOS* taos, char* sqlFile)
6956 6957 6958 6959 6960 6961
{
  FILE *fp = fopen(sqlFile, "r");
  if (fp == NULL) {
    printf("failed to open file %s, reason:%s\n", sqlFile, strerror(errno));
    return;
  }
6962

6963 6964 6965 6966 6967 6968
  int       read_len = 0;
  char *    cmd = calloc(1, MAX_SQL_SIZE);
  size_t    cmd_len = 0;
  char *    line = NULL;
  size_t    line_len = 0;

6969
  double t = taosGetTimestampMs();
6970

6971
  while((read_len = tgetline(&line, &line_len, fp)) != -1) {
6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983
    if (read_len >= MAX_SQL_SIZE) continue;
    line[--read_len] = '\0';

    if (read_len == 0 || isCommentLine(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;
6984
    }
6985 6986

    memcpy(cmd + cmd_len, line, read_len);
6987
    verbosePrint("%s() LN%d cmd: %s\n", __func__, __LINE__, cmd);
6988 6989 6990
    if (0 != queryDbExec(taos, cmd, NO_INSERT_TYPE, false)) {
        errorPrint("%s() LN%d, queryDbExec %s failed!\n",
               __func__, __LINE__, cmd);
6991 6992 6993 6994 6995
        tmfree(cmd);
        tmfree(line);
        tmfclose(fp);
        return;
    }
6996 6997
    memset(cmd, 0, MAX_SQL_SIZE);
    cmd_len = 0;
H
hzcheng 已提交
6998 6999
  }

7000
  t = taosGetTimestampMs() - t;
7001
  printf("run %s took %.6f second(s)\n\n", sqlFile, t);
7002

7003 7004 7005 7006
  tmfree(cmd);
  tmfree(line);
  tmfclose(fp);
  return;
H
hzcheng 已提交
7007 7008
}

7009
static void testMetaFile() {
7010
    if (INSERT_TEST == g_args.test_mode) {
7011 7012
      if (g_Dbs.cfgDir[0])
          taos_options(TSDB_OPTION_CONFIGDIR, g_Dbs.cfgDir);
7013

7014
      insertTestProcess();
7015

7016
    } else if (QUERY_TEST == g_args.test_mode) {
7017 7018
      if (g_queryInfo.cfgDir[0])
          taos_options(TSDB_OPTION_CONFIGDIR, g_queryInfo.cfgDir);
7019

7020
      queryTestProcess();
7021

7022
    } else if (SUBSCRIBE_TEST == g_args.test_mode) {
7023 7024
      if (g_queryInfo.cfgDir[0])
          taos_options(TSDB_OPTION_CONFIGDIR, g_queryInfo.cfgDir);
7025

7026
      subscribeTestProcess();
7027

7028 7029 7030
    }  else {
      ;
    }
7031
}
7032

7033
static void queryResult() {
7034
  // query data
7035

7036 7037 7038 7039 7040
  pthread_t read_id;
  threadInfo *rInfo = malloc(sizeof(threadInfo));
  assert(rInfo);
  rInfo->start_time = 1500000000000;  // 2017-07-14 10:40:00.000
  rInfo->start_table_from = 0;
7041

7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077
  //rInfo->do_aggreFunc = g_Dbs.do_aggreFunc;
  if (g_args.use_metric) {
    rInfo->ntables = g_Dbs.db[0].superTbls[0].childTblCount;
    rInfo->end_table_to = g_Dbs.db[0].superTbls[0].childTblCount - 1;
    rInfo->superTblInfo = &g_Dbs.db[0].superTbls[0];
    tstrncpy(rInfo->tb_prefix,
          g_Dbs.db[0].superTbls[0].childTblPrefix, MAX_TB_NAME_SIZE);
  } else {
    rInfo->ntables = g_args.num_of_tables;
    rInfo->end_table_to = g_args.num_of_tables -1;
    tstrncpy(rInfo->tb_prefix, g_args.tb_prefix, MAX_TB_NAME_SIZE);
  }

  rInfo->taos = taos_connect(
          g_Dbs.host,
          g_Dbs.user,
          g_Dbs.password,
          g_Dbs.db[0].dbName,
          g_Dbs.port);
  if (rInfo->taos == NULL) {
    errorPrint( "Failed to connect to TDengine, reason:%s\n",
            taos_errstr(NULL));
    free(rInfo);
    exit(-1);
  }

  tstrncpy(rInfo->fp, g_Dbs.resultFile, MAX_FILE_NAME_LEN);

  if (!g_Dbs.use_metric) {
    pthread_create(&read_id, NULL, readTable, rInfo);
  } else {
    pthread_create(&read_id, NULL, readMetric, rInfo);
  }
  pthread_join(read_id, NULL);
  taos_close(rInfo->taos);
  free(rInfo);
7078 7079
}

7080 7081
static void testCmdLine() {

7082 7083 7084 7085 7086 7087 7088 7089 7090 7091
  if (strlen(configDir)) {
    wordexp_t full_path;
    if (wordexp(configDir, &full_path, 0) != 0) {
      errorPrint( "Invalid path %s\n", configDir);
      return;
    }
    taos_options(TSDB_OPTION_CONFIGDIR, full_path.we_wordv[0]);
    wordfree(&full_path);
  }

7092 7093
  g_args.test_mode = INSERT_TEST;
  insertTestProcess();
7094

7095
  if (false == g_Dbs.insert_only)
7096
    queryResult();
7097 7098
}

7099 7100 7101
int main(int argc, char *argv[]) {
  parse_args(argc, argv, &g_args);

7102
  debugPrint("meta file: %s\n", g_args.metaFile);
7103 7104 7105

  if (g_args.metaFile) {
    initOfInsertMeta();
7106
    initOfQueryMeta();
7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119

    if (false == getInfoFromJsonFile(g_args.metaFile)) {
      printf("Failed to read %s\n", g_args.metaFile);
      return 1;
    }

    testMetaFile();
  } else {
    memset(&g_Dbs, 0, sizeof(SDbs));
    setParaFromArg();

    if (NULL != g_args.sqlFile) {
      TAOS* qtaos = taos_connect(
7120 7121 7122 7123
          g_Dbs.host,
          g_Dbs.user,
          g_Dbs.password,
          g_Dbs.db[0].dbName,
7124
          g_Dbs.port);
7125
      querySqlFile(qtaos, g_args.sqlFile);
7126 7127 7128 7129 7130
      taos_close(qtaos);

    } else {
      testCmdLine();
    }
H
hzcheng 已提交
7131
  }
7132 7133

  return 0;
H
hzcheng 已提交
7134
}
7135