clientMain.c 33.8 KB
Newer Older
L
Liu Jicong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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/>.
 */

#include "catalog.h"
17
#include "clientInt.h"
18
#include "clientLog.h"
L
Liu Jicong 已提交
19
#include "clientStmt.h"
L
Liu Jicong 已提交
20
#include "functionMgt.h"
L
Liu Jicong 已提交
21
#include "os.h"
H
Haojun Liao 已提交
22
#include "query.h"
L
Liu Jicong 已提交
23
#include "scheduler.h"
24
#include "tglobal.h"
L
Liu Jicong 已提交
25 26 27
#include "tmsg.h"
#include "tref.h"
#include "trpc.h"
S
version  
Shengliang Guan 已提交
28
#include "version.h"
29 30 31 32 33

#define TSC_VAR_NOT_RELEASE 1
#define TSC_VAR_RELEASED    0

static int32_t sentinel = TSC_VAR_NOT_RELEASE;
34
static int32_t createParseContext(const SRequestObj *pRequest, SParseContext **pCxt);
35 36 37 38 39 40 41 42 43 44 45

int taos_options(TSDB_OPTION option, const void *arg, ...) {
  static int32_t lock = 0;

  for (int i = 1; atomic_val_compare_exchange_32(&lock, 0, 1) != 0; ++i) {
    if (i % 1000 == 0) {
      tscInfo("haven't acquire lock after spin %d times.", i);
      sched_yield();
    }
  }

L
Liu Jicong 已提交
46
  int ret = taos_options_imp(option, (const char *)arg);
47 48 49 50 51
  atomic_store_32(&lock, 0);
  return ret;
}
// this function may be called by user or system, or by both simultaneously.
void taos_cleanup(void) {
D
dapan1121 已提交
52
  tscDebug("start to cleanup client environment");
53 54 55 56
  if (atomic_val_compare_exchange_32(&sentinel, TSC_VAR_NOT_RELEASE, TSC_VAR_RELEASED) != TSC_VAR_NOT_RELEASE) {
    return;
  }

H
Haojun Liao 已提交
57 58
  int32_t id = clientReqRefPool;
  clientReqRefPool = -1;
59 60
  taosCloseRef(id);

D
dapan1121 已提交
61 62 63 64
  hbMgrCleanUp();

  catalogDestroy();
  schedulerDestroy();
65

X
Xiaoyu Wang 已提交
66 67 68
  fmFuncMgtDestroy();
  qCleanupKeywordsTable();

69 70
  id = clientConnRefPool;
  clientConnRefPool = -1;
71 72
  taosCloseRef(id);

D
dapan1121 已提交
73 74
  rpcCleanup();
  tscDebug("rpc cleanup");
75

D
dapan1121 已提交
76
  cleanupTaskQueue();
H
Haojun Liao 已提交
77 78

  tscInfo("all local resources released");
79
  taosCleanupCfg();
80
  taosCloseLog();
81 82
}

L
Liu Jicong 已提交
83
static setConfRet taos_set_config_imp(const char *config) {
84 85 86 87 88
  setConfRet ret = {SET_CONF_RET_SUCC, {0}};
  // TODO: need re-implementation
  return ret;
}

L
Liu Jicong 已提交
89 90
setConfRet taos_set_config(const char *config) {
  // TODO  pthread_mutex_lock(&setConfMutex);
91
  setConfRet ret = taos_set_config_imp(config);
L
Liu Jicong 已提交
92
  //  pthread_mutex_unlock(&setConfMutex);
93 94 95
  return ret;
}

96
TAOS *taos_connect(const char *ip, const char *user, const char *pass, const char *db, uint16_t port) {
S
Shengliang Guan 已提交
97
  tscDebug("try to connect to %s:%u, user:%s db:%s", ip, port, user, db);
H
Haojun Liao 已提交
98 99 100
  if (user == NULL) {
    user = TSDB_DEFAULT_USER;
  }
101

H
Haojun Liao 已提交
102 103 104
  if (pass == NULL) {
    pass = TSDB_DEFAULT_PASS;
  }
105

L
Liu Jicong 已提交
106
  STscObj *pObj = taos_connect_internal(ip, user, pass, NULL, db, port, CONN_TYPE__QUERY);
107
  if (pObj) {
D
dapan1121 已提交
108 109
    int64_t *rid = taosMemoryCalloc(1, sizeof(int64_t));
    *rid = pObj->id;
dengyihao's avatar
dengyihao 已提交
110
    return (TAOS *)rid;
111
  }
L
Liu Jicong 已提交
112

D
dapan1121 已提交
113
  return NULL;
114 115
}

116
void taos_close_internal(void *taos) {
117 118 119 120
  if (taos == NULL) {
    return;
  }

H
Haojun Liao 已提交
121
  STscObj *pTscObj = (STscObj *)taos;
D
dapan1121 已提交
122
  tscDebug("0x%" PRIx64 " try to close connection, numOfReq:%d", pTscObj->id, pTscObj->numOfReqs);
123

D
dapan1121 已提交
124
  taosRemoveRef(clientConnRefPool, pTscObj->id);
125 126
}

127
void taos_close(TAOS *taos) {
D
dapan1121 已提交
128 129 130
  if (taos == NULL) {
    return;
  }
L
Liu Jicong 已提交
131 132

  STscObj *pObj = acquireTscObj(*(int64_t *)taos);
133
  if (NULL == pObj) {
D
dapan1121 已提交
134
    taosMemoryFree(taos);
135 136
    return;
  }
L
Liu Jicong 已提交
137

138
  taos_close_internal(pObj);
L
Liu Jicong 已提交
139
  releaseTscObj(*(int64_t *)taos);
D
dapan1121 已提交
140
  taosMemoryFree(taos);
141 142
}

L
Liu Jicong 已提交
143 144
int taos_errno(TAOS_RES *res) {
  if (res == NULL || TD_RES_TMQ_META(res)) {
145
    if (terrno == TSDB_CODE_RPC_REDIRECT) terrno = TSDB_CODE_RPC_NETWORK_UNAVAIL;
146 147 148
    return terrno;
  }

L
Liu Jicong 已提交
149
  if (TD_RES_TMQ(res)) {
150 151 152
    return 0;
  }

153 154
  return ((SRequestObj *)res)->code == TSDB_CODE_RPC_REDIRECT ? TSDB_CODE_RPC_NETWORK_UNAVAIL
                                                              : ((SRequestObj *)res)->code;
155 156
}

157
const char *taos_errstr(TAOS_RES *res) {
L
Liu Jicong 已提交
158
  if (res == NULL || TD_RES_TMQ_META(res)) {
159
    if (terrno == TSDB_CODE_RPC_REDIRECT) terrno = TSDB_CODE_RPC_NETWORK_UNAVAIL;
L
Liu Jicong 已提交
160
    return (const char *)tstrerror(terrno);
161 162
  }

163 164 165 166 167
  if (TD_RES_TMQ(res)) {
    return "success";
  }

  SRequestObj *pRequest = (SRequestObj *)res;
168
  if (NULL != pRequest->msgBuf && (strlen(pRequest->msgBuf) > 0 || pRequest->code == TSDB_CODE_RPC_FQDN_ERROR)) {
169 170
    return pRequest->msgBuf;
  } else {
171 172
    return pRequest->code == TSDB_CODE_RPC_REDIRECT ? (const char *)tstrerror(TSDB_CODE_RPC_NETWORK_UNAVAIL)
                                                    : (const char *)tstrerror(pRequest->code);
173
  }
174 175 176
}

void taos_free_result(TAOS_RES *res) {
D
stmt  
dapan1121 已提交
177 178 179
  if (NULL == res) {
    return;
  }
180

L
Liu Jicong 已提交
181 182 183
  if (TD_RES_QUERY(res)) {
    SRequestObj *pRequest = (SRequestObj *)res;
    destroyRequest(pRequest);
L
Liu Jicong 已提交
184 185 186 187
  } else if (TD_RES_TMQ(res)) {
    SMqRspObj *pRsp = (SMqRspObj *)res;
    if (pRsp->rsp.blockData) taosArrayDestroyP(pRsp->rsp.blockData, taosMemoryFree);
    if (pRsp->rsp.blockDataLen) taosArrayDestroy(pRsp->rsp.blockDataLen);
L
Liu Jicong 已提交
188 189
    if (pRsp->rsp.withTbName) taosArrayDestroyP(pRsp->rsp.blockTbName, taosMemoryFree);
    if (pRsp->rsp.withSchema) taosArrayDestroyP(pRsp->rsp.blockSchema, (FDelete)tDeleteSSchemaWrapper);
L
Liu Jicong 已提交
190 191
    pRsp->resInfo.pRspMsg = NULL;
    doFreeReqResultInfo(&pRsp->resInfo);
L
Liu Jicong 已提交
192 193 194 195
  } else if (TD_RES_TMQ_META(res)) {
    SMqMetaRspObj *pRspObj = (SMqMetaRspObj *)res;
    taosMemoryFree(pRspObj->metaRsp.metaRsp);
    taosMemoryFree(pRspObj);
L
Liu Jicong 已提交
196
  }
197 198
}

D
dapan1121 已提交
199 200 201 202
void taos_kill_query(TAOS *taos) {
  if (NULL == taos) {
    return;
  }
dengyihao's avatar
dengyihao 已提交
203

dengyihao's avatar
dengyihao 已提交
204
  int64_t  rid = *(int64_t *)taos;
dengyihao's avatar
dengyihao 已提交
205
  STscObj *pTscObj = acquireTscObj(rid);
D
dapan1121 已提交
206
  stopAllRequests(pTscObj->pRequests);
D
dapan1121 已提交
207 208 209
  releaseTscObj(rid);
}

L
Liu Jicong 已提交
210
int taos_field_count(TAOS_RES *res) {
L
Liu Jicong 已提交
211
  if (res == NULL || TD_RES_TMQ_META(res)) {
H
Haojun Liao 已提交
212 213 214
    return 0;
  }

L
Liu Jicong 已提交
215
  SReqResultInfo *pResInfo = tscGetCurResInfo(res);
H
Haojun Liao 已提交
216 217 218
  return pResInfo->numOfCols;
}

L
Liu Jicong 已提交
219
int taos_num_fields(TAOS_RES *res) { return taos_field_count(res); }
H
Haojun Liao 已提交
220 221

TAOS_FIELD *taos_fetch_fields(TAOS_RES *res) {
L
Liu Jicong 已提交
222
  if (taos_num_fields(res) == 0 || TD_RES_TMQ_META(res)) {
H
Haojun Liao 已提交
223 224 225
    return NULL;
  }

L
Liu Jicong 已提交
226
  SReqResultInfo *pResInfo = tscGetCurResInfo(res);
227
  return pResInfo->userFields;
H
Haojun Liao 已提交
228 229
}

230
TAOS_RES *taos_query(TAOS *taos, const char *sql) { return taosQueryImpl(taos, sql, false); }
231

232 233
TAOS_ROW taos_fetch_row(TAOS_RES *res) {
  if (res == NULL) {
234 235 236
    return NULL;
  }

L
Liu Jicong 已提交
237 238 239
  if (TD_RES_QUERY(res)) {
    SRequestObj *pRequest = (SRequestObj *)res;
    if (pRequest->type == TSDB_SQL_RETRIEVE_EMPTY_RESULT || pRequest->type == TSDB_SQL_INSERT ||
D
dapan1121 已提交
240
        pRequest->code != TSDB_CODE_SUCCESS || taos_num_fields(res) == 0 || pRequest->killed) {
L
Liu Jicong 已提交
241 242
      return NULL;
    }
D
dapan1121 已提交
243 244 245 246

#if SYNC_ON_TOP_OF_ASYNC
    return doAsyncFetchRows(pRequest, true, true);
#else
247
    return doFetchRows(pRequest, true, true);
248
#endif
L
Liu Jicong 已提交
249 250

  } else if (TD_RES_TMQ(res)) {
dengyihao's avatar
dengyihao 已提交
251
    SMqRspObj      *msg = ((SMqRspObj *)res);
L
Liu Jicong 已提交
252 253 254 255 256 257
    SReqResultInfo *pResultInfo;
    if (msg->resIter == -1) {
      pResultInfo = tmqGetNextResInfo(res, true);
    } else {
      pResultInfo = tmqGetCurResInfo(res);
    }
258

L
Liu Jicong 已提交
259
    if (pResultInfo->current < pResultInfo->numOfRows) {
L
Liu Jicong 已提交
260 261
      doSetOneRowPtr(pResultInfo);
      pResultInfo->current += 1;
L
Liu Jicong 已提交
262 263
      return pResultInfo->row;
    } else {
L
Liu Jicong 已提交
264 265 266 267 268
      pResultInfo = tmqGetNextResInfo(res, true);
      if (pResultInfo == NULL) return NULL;
      doSetOneRowPtr(pResultInfo);
      pResultInfo->current += 1;
      return pResultInfo->row;
L
Liu Jicong 已提交
269
    }
L
Liu Jicong 已提交
270 271
  } else if (TD_RES_TMQ_META(res)) {
    return NULL;
L
Liu Jicong 已提交
272
  } else {
273
    // assert to avoid un-initialization error
L
Liu Jicong 已提交
274 275 276
    ASSERT(0);
  }
  return NULL;
277
}
H
Haojun Liao 已提交
278

L
Liu Jicong 已提交
279
int taos_print_row(char *str, TAOS_ROW row, TAOS_FIELD *fields, int num_fields) {
H
Haojun Liao 已提交
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
  int32_t len = 0;
  for (int i = 0; i < num_fields; ++i) {
    if (i > 0) {
      str[len++] = ' ';
    }

    if (row[i] == NULL) {
      len += sprintf(str + len, "%s", TSDB_DATA_NULL_STR);
      continue;
    }

    switch (fields[i].type) {
      case TSDB_DATA_TYPE_TINYINT:
        len += sprintf(str + len, "%d", *((int8_t *)row[i]));
        break;

      case TSDB_DATA_TYPE_UTINYINT:
        len += sprintf(str + len, "%u", *((uint8_t *)row[i]));
        break;

      case TSDB_DATA_TYPE_SMALLINT:
        len += sprintf(str + len, "%d", *((int16_t *)row[i]));
        break;

      case TSDB_DATA_TYPE_USMALLINT:
        len += sprintf(str + len, "%u", *((uint16_t *)row[i]));
        break;

      case TSDB_DATA_TYPE_INT:
        len += sprintf(str + len, "%d", *((int32_t *)row[i]));
        break;

      case TSDB_DATA_TYPE_UINT:
        len += sprintf(str + len, "%u", *((uint32_t *)row[i]));
        break;

      case TSDB_DATA_TYPE_BIGINT:
        len += sprintf(str + len, "%" PRId64, *((int64_t *)row[i]));
        break;

      case TSDB_DATA_TYPE_UBIGINT:
        len += sprintf(str + len, "%" PRIu64, *((uint64_t *)row[i]));
        break;

      case TSDB_DATA_TYPE_FLOAT: {
        float fv = 0;
        fv = GET_FLOAT_VAL(row[i]);
        len += sprintf(str + len, "%f", fv);
      } break;

      case TSDB_DATA_TYPE_DOUBLE: {
        double dv = 0;
        dv = GET_DOUBLE_VAL(row[i]);
        len += sprintf(str + len, "%lf", dv);
      } break;

      case TSDB_DATA_TYPE_BINARY:
      case TSDB_DATA_TYPE_NCHAR: {
L
Liu Jicong 已提交
338
        int32_t charLen = varDataLen((char *)row[i] - VARSTR_HEADER_SIZE);
H
Haojun Liao 已提交
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
        if (fields[i].type == TSDB_DATA_TYPE_BINARY) {
          assert(charLen <= fields[i].bytes && charLen >= 0);
        } else {
          assert(charLen <= fields[i].bytes * TSDB_NCHAR_SIZE && charLen >= 0);
        }

        memcpy(str + len, row[i], charLen);
        len += charLen;
      } break;

      case TSDB_DATA_TYPE_TIMESTAMP:
        len += sprintf(str + len, "%" PRId64, *((int64_t *)row[i]));
        break;

      case TSDB_DATA_TYPE_BOOL:
        len += sprintf(str + len, "%d", *((int8_t *)row[i]));
      default:
        break;
    }
  }
L
Liu Jicong 已提交
359
  str[len] = 0;
H
Haojun Liao 已提交
360 361 362

  return len;
}
363

L
Liu Jicong 已提交
364
int *taos_fetch_lengths(TAOS_RES *res) {
L
Liu Jicong 已提交
365
  if (res == NULL || TD_RES_TMQ_META(res)) {
366 367 368
    return NULL;
  }

L
Liu Jicong 已提交
369 370
  SReqResultInfo *pResInfo = tscGetCurResInfo(res);
  return pResInfo->length;
371 372
}

373
TAOS_ROW *taos_result_block(TAOS_RES *res) {
L
Liu Jicong 已提交
374
  if (res == NULL || TD_RES_TMQ_META(res)) {
375 376 377 378 379 380 381 382
    terrno = TSDB_CODE_INVALID_PARA;
    return NULL;
  }

  if (taos_is_update_query(res)) {
    return NULL;
  }

L
Liu Jicong 已提交
383 384
  SReqResultInfo *pResInfo = tscGetCurResInfo(res);
  return &pResInfo->row;
385 386
}

387
// todo intergrate with tDataTypes
388 389
const char *taos_data_type(int type) {
  switch (type) {
L
Liu Jicong 已提交
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
    case TSDB_DATA_TYPE_NULL:
      return "TSDB_DATA_TYPE_NULL";
    case TSDB_DATA_TYPE_BOOL:
      return "TSDB_DATA_TYPE_BOOL";
    case TSDB_DATA_TYPE_TINYINT:
      return "TSDB_DATA_TYPE_TINYINT";
    case TSDB_DATA_TYPE_SMALLINT:
      return "TSDB_DATA_TYPE_SMALLINT";
    case TSDB_DATA_TYPE_INT:
      return "TSDB_DATA_TYPE_INT";
    case TSDB_DATA_TYPE_BIGINT:
      return "TSDB_DATA_TYPE_BIGINT";
    case TSDB_DATA_TYPE_FLOAT:
      return "TSDB_DATA_TYPE_FLOAT";
    case TSDB_DATA_TYPE_DOUBLE:
      return "TSDB_DATA_TYPE_DOUBLE";
    case TSDB_DATA_TYPE_VARCHAR:
      return "TSDB_DATA_TYPE_VARCHAR";
      //    case TSDB_DATA_TYPE_BINARY:          return "TSDB_DATA_TYPE_VARCHAR";
    case TSDB_DATA_TYPE_TIMESTAMP:
      return "TSDB_DATA_TYPE_TIMESTAMP";
    case TSDB_DATA_TYPE_NCHAR:
      return "TSDB_DATA_TYPE_NCHAR";
    case TSDB_DATA_TYPE_JSON:
      return "TSDB_DATA_TYPE_JSON";
    default:
      return "UNKNOWN";
417 418
  }
}
419 420 421

const char *taos_get_client_info() { return version; }

X
Xiaoyu Wang 已提交
422
int taos_affected_rows(TAOS_RES *res) {
L
Liu Jicong 已提交
423
  if (res == NULL || TD_RES_TMQ(res) || TD_RES_TMQ_META(res)) {
H
Haojun Liao 已提交
424 425 426
    return 0;
  }

dengyihao's avatar
dengyihao 已提交
427
  SRequestObj    *pRequest = (SRequestObj *)res;
L
Liu Jicong 已提交
428
  SReqResultInfo *pResInfo = &pRequest->body.resInfo;
H
Haojun Liao 已提交
429
  return pResInfo->numOfRows;
X
Xiaoyu Wang 已提交
430
}
431

432
int taos_result_precision(TAOS_RES *res) {
L
Liu Jicong 已提交
433
  if (res == NULL || TD_RES_TMQ_META(res)) {
H
Haojun Liao 已提交
434 435
    return TSDB_TIME_PRECISION_MILLI;
  }
436

L
Liu Jicong 已提交
437 438 439 440 441 442 443 444
  if (TD_RES_QUERY(res)) {
    SRequestObj *pRequest = (SRequestObj *)res;
    return pRequest->body.resInfo.precision;
  } else if (TD_RES_TMQ(res)) {
    SReqResultInfo *info = tmqGetCurResInfo(res);
    return info->precision;
  }
  return TSDB_TIME_PRECISION_MILLI;
445
}
446 447

int taos_select_db(TAOS *taos, const char *db) {
L
Liu Jicong 已提交
448
  STscObj *pObj = acquireTscObj(*(int64_t *)taos);
449
  if (pObj == NULL) {
L
Liu Jicong 已提交
450
    releaseTscObj(*(int64_t *)taos);
451 452 453 454 455
    terrno = TSDB_CODE_TSC_DISCONNECTED;
    return TSDB_CODE_TSC_DISCONNECTED;
  }

  if (db == NULL || strlen(db) == 0) {
L
Liu Jicong 已提交
456
    releaseTscObj(*(int64_t *)taos);
457 458 459 460 461 462 463
    terrno = TSDB_CODE_TSC_INVALID_INPUT;
    return terrno;
  }

  char sql[256] = {0};
  snprintf(sql, tListLen(sql), "use %s", db);

L
Liu Jicong 已提交
464 465
  TAOS_RES *pRequest = taos_query(taos, sql);
  int32_t   code = taos_errno(pRequest);
466 467

  taos_free_result(pRequest);
L
Liu Jicong 已提交
468
  releaseTscObj(*(int64_t *)taos);
469 470 471 472
  return code;
}

void taos_stop_query(TAOS_RES *res) {
L
Liu Jicong 已提交
473
  if (res == NULL || TD_RES_TMQ(res) || TD_RES_TMQ_META(res)) {
474 475 476
    return;
  }

L
Liu Jicong 已提交
477
  SRequestObj *pRequest = (SRequestObj *)res;
D
dapan1121 已提交
478
  pRequest->killed = true;
L
Liu Jicong 已提交
479 480

  int32_t numOfFields = taos_num_fields(pRequest);
481 482
  // It is not a query, no need to stop.
  if (numOfFields == 0) {
D
dapan1121 已提交
483
    tscDebug("request %" PRIx64 " no need to be killed since not query", pRequest->requestId);
484 485 486
    return;
  }

D
dapan1121 已提交
487
  schedulerFreeJob(&pRequest->body.queryJob, TSDB_CODE_TSC_QUERY_KILLED);
D
dapan1121 已提交
488
  tscDebug("request %" PRIx64 " killed", pRequest->requestId);
489 490 491
}

bool taos_is_null(TAOS_RES *res, int32_t row, int32_t col) {
L
Liu Jicong 已提交
492 493 494
  if (res == NULL || TD_RES_TMQ_META(res)) {
    return true;
  }
L
Liu Jicong 已提交
495
  SReqResultInfo *pResultInfo = tscGetCurResInfo(res);
496 497 498 499
  if (col >= pResultInfo->numOfCols || col < 0 || row >= pResultInfo->numOfRows || row < 0) {
    return true;
  }

L
Liu Jicong 已提交
500
  SResultColumn *pCol = &pResultInfo->pCol[col];
501 502 503 504 505
  if (IS_VAR_DATA_TYPE(pResultInfo->fields[col].type)) {
    return (pCol->offset[row] == -1);
  } else {
    return colDataIsNull_f(pCol->nullbitmap, row);
  }
506 507
}

L
Liu Jicong 已提交
508
bool taos_is_update_query(TAOS_RES *res) { return taos_num_fields(res) == 0; }
509

L
Liu Jicong 已提交
510
int taos_fetch_block(TAOS_RES *res, TAOS_ROW *rows) {
H
Haojun Liao 已提交
511
  int32_t numOfRows = 0;
L
Liu Jicong 已提交
512
  /*int32_t code = */ taos_fetch_block_s(res, &numOfRows, rows);
H
Haojun Liao 已提交
513 514 515
  return numOfRows;
}

L
Liu Jicong 已提交
516
int taos_fetch_block_s(TAOS_RES *res, int *numOfRows, TAOS_ROW *rows) {
L
Liu Jicong 已提交
517
  if (res == NULL || TD_RES_TMQ_META(res)) {
518 519
    return 0;
  }
520

L
Liu Jicong 已提交
521 522
  if (TD_RES_QUERY(res)) {
    SRequestObj *pRequest = (SRequestObj *)res;
523

L
Liu Jicong 已提交
524 525
    (*rows) = NULL;
    (*numOfRows) = 0;
H
Haojun Liao 已提交
526

L
Liu Jicong 已提交
527 528 529 530
    if (pRequest->type == TSDB_SQL_RETRIEVE_EMPTY_RESULT || pRequest->type == TSDB_SQL_INSERT ||
        pRequest->code != TSDB_CODE_SUCCESS || taos_num_fields(res) == 0) {
      return 0;
    }
531

532
#if SYNC_ON_TOP_OF_ASYNC
533
    doAsyncFetchRows(pRequest, false, true);
534 535 536
#else
    doFetchRows(pRequest, true, true);
#endif
537

L
Liu Jicong 已提交
538 539 540
    // TODO refactor
    SReqResultInfo *pResultInfo = &pRequest->body.resInfo;
    pResultInfo->current = pResultInfo->numOfRows;
541

L
Liu Jicong 已提交
542 543 544 545
    (*rows) = pResultInfo->row;
    (*numOfRows) = pResultInfo->numOfRows;
    return pRequest->code;
  } else if (TD_RES_TMQ(res)) {
L
Liu Jicong 已提交
546
    SReqResultInfo *pResultInfo = tmqGetNextResInfo(res, true);
L
Liu Jicong 已提交
547
    if (pResultInfo == NULL) return -1;
H
Haojun Liao 已提交
548

L
Liu Jicong 已提交
549 550 551
    pResultInfo->current = pResultInfo->numOfRows;
    (*rows) = pResultInfo->row;
    (*numOfRows) = pResultInfo->numOfRows;
H
Haojun Liao 已提交
552
    return 0;
L
Liu Jicong 已提交
553 554 555
  } else {
    ASSERT(0);
    return -1;
H
Haojun Liao 已提交
556
  }
L
Liu Jicong 已提交
557
}
H
Haojun Liao 已提交
558

L
Liu Jicong 已提交
559
int taos_fetch_raw_block(TAOS_RES *res, int *numOfRows, void **pData) {
L
Liu Jicong 已提交
560
  if (res == NULL || TD_RES_TMQ_META(res)) {
H
Haojun Liao 已提交
561 562
    return 0;
  }
563

564
  if (TD_RES_TMQ(res)) {
L
Liu Jicong 已提交
565
    SReqResultInfo *pResultInfo = tmqGetNextResInfo(res, false);
L
Liu Jicong 已提交
566 567 568 569
    if (pResultInfo == NULL) {
      (*numOfRows) = 0;
      return 0;
    }
H
Haojun Liao 已提交
570

L
Liu Jicong 已提交
571 572 573 574
    pResultInfo->current = pResultInfo->numOfRows;
    (*numOfRows) = pResultInfo->numOfRows;
    (*pData) = (void *)pResultInfo->pData;
    return 0;
575
  }
L
Liu Jicong 已提交
576

577 578 579 580 581
  SRequestObj *pRequest = (SRequestObj *)res;

  if (pRequest->type == TSDB_SQL_RETRIEVE_EMPTY_RESULT || pRequest->type == TSDB_SQL_INSERT ||
      pRequest->code != TSDB_CODE_SUCCESS || taos_num_fields(res) == 0) {
    return 0;
L
Liu Jicong 已提交
582
  }
583

584 585 586
#if SYNC_ON_TOP_OF_ASYNC
  doAsyncFetchRows(pRequest, false, false);
#else
587
  doFetchRows(pRequest, false, false);
588
#endif
589 590 591 592 593 594 595 596

  SReqResultInfo *pResultInfo = &pRequest->body.resInfo;

  pResultInfo->current = pResultInfo->numOfRows;
  (*numOfRows) = pResultInfo->numOfRows;
  (*pData) = (void *)pResultInfo->pData;

  return 0;
597 598
}

H
Haojun Liao 已提交
599
int *taos_get_column_data_offset(TAOS_RES *res, int columnIndex) {
L
Liu Jicong 已提交
600
  if (res == NULL || TD_RES_TMQ_META(res)) {
H
Haojun Liao 已提交
601 602 603
    return 0;
  }

L
Liu Jicong 已提交
604
  int32_t numOfFields = taos_num_fields(res);
H
Haojun Liao 已提交
605 606 607 608
  if (columnIndex < 0 || columnIndex >= numOfFields || numOfFields == 0) {
    return 0;
  }

L
Liu Jicong 已提交
609
  SReqResultInfo *pResInfo = tscGetCurResInfo(res);
dengyihao's avatar
dengyihao 已提交
610
  TAOS_FIELD     *pField = &pResInfo->userFields[columnIndex];
H
Haojun Liao 已提交
611 612 613 614
  if (!IS_VAR_DATA_TYPE(pField->type)) {
    return 0;
  }

L
Liu Jicong 已提交
615
  return pResInfo->pCol[columnIndex].offset;
H
Haojun Liao 已提交
616 617
}

618 619
int taos_validate_sql(TAOS *taos, const char *sql) {
  TAOS_RES *pObj = taosQueryImpl(taos, sql, true);
D
dapan1121 已提交
620 621

  int code = taos_errno(pObj);
622

D
dapan1121 已提交
623 624 625
  taos_free_result(pObj);
  return code;
}
626

627
void taos_reset_current_db(TAOS *taos) {
L
Liu Jicong 已提交
628
  STscObj *pTscObj = acquireTscObj(*(int64_t *)taos);
629 630
  if (pTscObj == NULL) {
    terrno = TSDB_CODE_TSC_DISCONNECTED;
H
Haojun Liao 已提交
631 632 633
    return;
  }

634 635
  resetConnectDB(pTscObj);

L
Liu Jicong 已提交
636
  releaseTscObj(*(int64_t *)taos);
637 638
}

639
const char *taos_get_server_info(TAOS *taos) {
L
Liu Jicong 已提交
640
  STscObj *pTscObj = acquireTscObj(*(int64_t *)taos);
641 642
  if (pTscObj == NULL) {
    terrno = TSDB_CODE_TSC_DISCONNECTED;
643 644 645
    return NULL;
  }

L
Liu Jicong 已提交
646
  releaseTscObj(*(int64_t *)taos);
647

D
dapan1121 已提交
648
  return pTscObj->sDetailVer;
649 650
}

651
typedef struct SqlParseWrapper {
652
  SParseContext *pCtx;
653
  SCatalogReq    catalogReq;
dengyihao's avatar
dengyihao 已提交
654 655
  SRequestObj   *pRequest;
  SQuery        *pQuery;
656 657
} SqlParseWrapper;

658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
static void destorySqlParseWrapper(SqlParseWrapper *pWrapper) {
  taosArrayDestroy(pWrapper->catalogReq.pDbVgroup);
  taosArrayDestroy(pWrapper->catalogReq.pDbCfg);
  taosArrayDestroy(pWrapper->catalogReq.pDbInfo);
  taosArrayDestroy(pWrapper->catalogReq.pTableMeta);
  taosArrayDestroy(pWrapper->catalogReq.pTableHash);
  taosArrayDestroy(pWrapper->catalogReq.pUdf);
  taosArrayDestroy(pWrapper->catalogReq.pIndex);
  taosArrayDestroy(pWrapper->catalogReq.pUser);
  taosArrayDestroy(pWrapper->catalogReq.pTableIndex);
  taosMemoryFree(pWrapper->pCtx);
  taosMemoryFree(pWrapper);
}

void retrieveMetaCallback(SMetaData *pResultMeta, void *param, int32_t code) {
  SqlParseWrapper *pWrapper = (SqlParseWrapper *)param;
dengyihao's avatar
dengyihao 已提交
674 675
  SQuery          *pQuery = pWrapper->pQuery;
  SRequestObj     *pRequest = pWrapper->pRequest;
676

677 678
  if (code == TSDB_CODE_SUCCESS) {
    code = qAnalyseSqlSemantic(pWrapper->pCtx, &pWrapper->catalogReq, pResultMeta, pQuery);
679
    pRequest->stableQuery = pQuery->stableQuery;
680 681
  }

682 683 684 685 686
  if (code == TSDB_CODE_SUCCESS) {
    if (pQuery->haveResultSet) {
      setResSchemaInfo(&pRequest->body.resInfo, pQuery->pResSchema, pQuery->numOfResCols);
      setResPrecision(&pRequest->body.resInfo, pQuery->precision);
    }
687

688 689
    TSWAP(pRequest->dbList, (pQuery)->pDbList);
    TSWAP(pRequest->tableList, (pQuery)->pTableList);
690

691
    destorySqlParseWrapper(pWrapper);
692

dengyihao's avatar
dengyihao 已提交
693 694
    tscDebug("0x%" PRIx64 " analysis semantics completed, start async query, reqId:0x%" PRIx64, pRequest->self,
             pRequest->requestId);
D
dapan1121 已提交
695
    launchAsyncQuery(pRequest, pQuery, pResultMeta);
696
    qDestroyQuery(pQuery);
697
  } else {
698
    destorySqlParseWrapper(pWrapper);
699
    qDestroyQuery(pQuery);
700
    if (NEED_CLIENT_HANDLE_ERROR(code)) {
701 702
      tscDebug("0x%" PRIx64 " client retry to handle the error, code:%d - %s, tryCount:%d, reqId:0x%" PRIx64,
               pRequest->self, code, tstrerror(code), pRequest->retry, pRequest->requestId);
703 704 705 706
      pRequest->prevCode = code;
      doAsyncQuery(pRequest, true);
      return;
    }
707

708
    // return to app directly
709 710
    tscError("0x%" PRIx64 " error occurs, code:%s, return to user app, reqId:0x%" PRIx64, pRequest->self,
             tstrerror(code), pRequest->requestId);
711 712 713
    pRequest->code = code;
    pRequest->body.queryFp(pRequest->body.param, pRequest, code);
  }
714 715
}

716
void taos_query_a(TAOS *taos, const char *sql, __taos_async_fn_t fp, void *param) {
dengyihao's avatar
dengyihao 已提交
717
  int64_t connId = *(int64_t *)taos;
718
  taosAsyncQueryImpl(connId, sql, fp, param, false);
719
}
720

721
int32_t createParseContext(const SRequestObj *pRequest, SParseContext **pCxt) {
722 723 724 725 726 727 728
  const STscObj *pTscObj = pRequest->pTscObj;

  *pCxt = taosMemoryCalloc(1, sizeof(SParseContext));
  if (*pCxt == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

dengyihao's avatar
dengyihao 已提交
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
  **pCxt = (SParseContext){.requestId = pRequest->requestId,
                           .requestRid = pRequest->self,
                           .acctId = pTscObj->acctId,
                           .db = pRequest->pDb,
                           .topicQuery = false,
                           .pSql = pRequest->sqlstr,
                           .sqlLen = pRequest->sqlLen,
                           .pMsg = pRequest->msgBuf,
                           .msgLen = ERROR_MSG_BUF_DEFAULT_SIZE,
                           .pTransporter = pTscObj->pAppInfo->pTransporter,
                           .pStmtCb = NULL,
                           .pUser = pTscObj->user,
                           .schemalessType = pTscObj->schemalessType,
                           .isSuperUser = (0 == strcmp(pTscObj->user, TSDB_DEFAULT_USER)),
                           .async = true,
                           .svrVer = pTscObj->sVer,
                           .nodeOffline = (pTscObj->pAppInfo->onlineDnodes < pTscObj->pAppInfo->totalDnodes)};
746 747 748
  return TSDB_CODE_SUCCESS;
}

749 750
void doAsyncQuery(SRequestObj *pRequest, bool updateMetaForce) {
  SParseContext *pCxt = NULL;
dengyihao's avatar
dengyihao 已提交
751
  STscObj       *pTscObj = pRequest->pTscObj;
752
  int32_t        code = 0;
753 754

  if (pRequest->retry++ > REQUEST_TOTAL_EXEC_TIMES) {
755
    code = pRequest->prevCode;
756 757 758
    goto _error;
  }

759
  code = createParseContext(pRequest, &pCxt);
760 761 762
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }
763 764 765 766 767

  pCxt->mgmtEpSet = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);
  code = catalogGetHandle(pTscObj->pAppInfo->clusterId, &pCxt->pCatalog);
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
768 769
  }

770 771
  SQuery *pQuery = NULL;

D
dapan1121 已提交
772
  SCatalogReq catalogReq = {.forceUpdate = updateMetaForce, .qNodeRequired = qnodeRequired(pRequest)};
773 774 775 776 777 778
  code = qParseSqlSyntax(pCxt, &pQuery, &catalogReq);
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }

  SqlParseWrapper *pWrapper = taosMemoryCalloc(1, sizeof(SqlParseWrapper));
779
  if (pWrapper == NULL) {
780
    code = TSDB_CODE_OUT_OF_MEMORY;
781 782 783
    goto _error;
  }

784 785 786 787 788
  pWrapper->pCtx = pCxt;
  pWrapper->pQuery = pQuery;
  pWrapper->pRequest = pRequest;
  pWrapper->catalogReq = catalogReq;

X
Xiaoyu Wang 已提交
789
  SRequestConnInfo conn = {.pTrans = pCxt->pTransporter,
D
dapan1121 已提交
790 791 792 793
                           .requestId = pCxt->requestId,
                           .requestObjRefId = pCxt->requestRid,
                           .mgmtEps = pCxt->mgmtEpSet};

D
dapan1121 已提交
794
  code = catalogAsyncGetAllMeta(pCxt->pCatalog, &conn, &catalogReq, retrieveMetaCallback, pWrapper,
X
Xiaoyu Wang 已提交
795
                                &pRequest->body.queryJob);
796 797
  if (code == TSDB_CODE_SUCCESS) {
    return;
798 799
  }

800 801 802
_error:
  tscError("0x%" PRIx64 " error happens, code:%d - %s, reqId:0x%" PRIx64, pRequest->self, code, tstrerror(code),
           pRequest->requestId);
803 804
  terrno = code;
  pRequest->code = code;
805
  pRequest->body.queryFp(pRequest->body.param, pRequest, code);
806 807
}

808 809
static void fetchCallback(void *pResult, void *param, int32_t code) {
  SRequestObj *pRequest = (SRequestObj *)param;
810

811
  SReqResultInfo *pResultInfo = &pRequest->body.resInfo;
812

L
Liu Jicong 已提交
813 814
  tscDebug("0x%" PRIx64 " enter scheduler fetch cb, code:%d - %s, reqId:0x%" PRIx64, pRequest->self, code,
           tstrerror(code), pRequest->requestId);
D
dapan1121 已提交
815

816 817 818 819 820 821 822 823 824 825 826
  pResultInfo->pData = pResult;
  pResultInfo->numOfRows = 0;

  if (code != TSDB_CODE_SUCCESS) {
    pRequest->code = code;
    pRequest->body.fetchFp(pRequest->body.param, pRequest, 0);
    return;
  }

  if (pRequest->code != TSDB_CODE_SUCCESS) {
    pRequest->body.fetchFp(pRequest->body.param, pRequest, 0);
827
    return;
828 829
  }

830 831
  pRequest->code =
      setQueryResultFromRsp(pResultInfo, (SRetrieveTableRsp *)pResultInfo->pData, pResultInfo->convertUcs4, false);
832 833 834
  if (pRequest->code != TSDB_CODE_SUCCESS) {
    pResultInfo->numOfRows = 0;
    pRequest->code = code;
835 836 837 838 839 840
    tscError("0x%" PRIx64 " fetch results failed, code:%s, reqId:0x%" PRIx64, pRequest->self, tstrerror(code),
             pRequest->requestId);
  } else {
    tscDebug("0x%" PRIx64 " fetch results, numOfRows:%d total Rows:%" PRId64 ", complete:%d, reqId:0x%" PRIx64,
             pRequest->self, pResultInfo->numOfRows, pResultInfo->totalRows, pResultInfo->completed,
             pRequest->requestId);
841 842 843 844 845
  }

  pRequest->body.fetchFp(pRequest->body.param, pRequest, pResultInfo->numOfRows);
}

846
void taos_fetch_rows_a(TAOS_RES *res, __taos_async_fn_t fp, void *param) {
847
  ASSERT(res != NULL && fp != NULL);
L
Liu Jicong 已提交
848
  ASSERT(TD_RES_QUERY(res));
849 850 851

  SRequestObj *pRequest = res;
  pRequest->body.fetchFp = fp;
852
  pRequest->body.param = param;
853 854

  SReqResultInfo *pResultInfo = &pRequest->body.resInfo;
855 856 857

  // this query has no results or error exists, return directly
  if (taos_num_fields(pRequest) == 0 || pRequest->code != TSDB_CODE_SUCCESS) {
858 859 860 861 862
    pResultInfo->numOfRows = 0;
    pRequest->body.fetchFp(param, pRequest, pResultInfo->numOfRows);
    return;
  }

863
  // all data has returned to App already, no need to try again
D
dapan1121 已提交
864 865 866 867 868 869 870 871 872 873
  if (pResultInfo->completed) {
    // it is a local executed query, no need to do async fetch
    if (QUERY_EXEC_MODE_LOCAL == pRequest->body.execMode) {
      ASSERT(pResultInfo->numOfRows >= 0);
      if (pResultInfo->localResultFetched) {
        pResultInfo->numOfRows = 0;
        pResultInfo->current = 0;
      } else {
        pResultInfo->localResultFetched = true;
      }
874
    } else {
D
dapan1121 已提交
875
      pResultInfo->numOfRows = 0;
876
    }
877

D
dapan1121 已提交
878
    pRequest->body.fetchFp(param, pRequest, pResultInfo->numOfRows);
879
    return;
880 881
  }

D
dapan1121 已提交
882
  SSchedulerReq req = {
dengyihao's avatar
dengyihao 已提交
883 884 885
      .syncReq = false,
      .fetchFp = fetchCallback,
      .cbParam = pRequest,
D
dapan1121 已提交
886
  };
887

D
dapan1121 已提交
888
  schedulerFetchRows(pRequest->body.queryJob, &req);
L
Liu Jicong 已提交
889
}
890

891
void taos_fetch_raw_block_a(TAOS_RES *res, __taos_async_fn_t fp, void *param) {
892
  ASSERT(res != NULL && fp != NULL);
L
Liu Jicong 已提交
893
  ASSERT(TD_RES_QUERY(res));
894

dengyihao's avatar
dengyihao 已提交
895
  SRequestObj    *pRequest = res;
896 897 898
  SReqResultInfo *pResultInfo = &pRequest->body.resInfo;

  // set the current block is all consumed
899 900
  pResultInfo->convertUcs4 = false;

901 902
  // it is a local executed query, no need to do async fetch
  taos_fetch_rows_a(pRequest, fp, param);
903 904
}

905
const void *taos_get_raw_block(TAOS_RES *res) {
H
Haojun Liao 已提交
906
  ASSERT(res != NULL);
L
Liu Jicong 已提交
907
  ASSERT(TD_RES_QUERY(res));
908
  SRequestObj *pRequest = res;
H
Haojun Liao 已提交
909 910 911 912

  return pRequest->body.resInfo.pData;
}

L
Liu Jicong 已提交
913 914 915 916
TAOS_SUB *taos_subscribe(TAOS *taos, int restart, const char *topic, const char *sql, TAOS_SUBSCRIBE_CALLBACK fp,
                         void *param, int interval) {
  // TODO
  return NULL;
917 918 919
}

TAOS_RES *taos_consume(TAOS_SUB *tsub) {
L
Liu Jicong 已提交
920 921
  // TODO
  return NULL;
922 923 924
}

void taos_unsubscribe(TAOS_SUB *tsub, int keepProgress) {
L
Liu Jicong 已提交
925
  // TODO
926 927
}

928
int taos_load_table_info(TAOS *taos, const char *tableNameList) {
D
dapan1121 已提交
929 930 931 932 933
  if (NULL == taos) {
    terrno = TSDB_CODE_TSC_DISCONNECTED;
    return terrno;
  }

934
  int64_t       connId = *(int64_t *)taos;
D
dapan1121 已提交
935
  const int32_t MAX_TABLE_NAME_LENGTH = 12 * 1024 * 1024;  // 12MB list
936
  int32_t       code = 0;
dengyihao's avatar
dengyihao 已提交
937
  SRequestObj  *pRequest = NULL;
938 939
  SCatalogReq   catalogReq = {0};

D
dapan1121 已提交
940 941 942 943 944 945 946 947 948 949 950 951
  if (NULL == tableNameList) {
    return TSDB_CODE_SUCCESS;
  }

  int32_t length = (int32_t)strlen(tableNameList);
  if (0 == length) {
    return TSDB_CODE_SUCCESS;
  } else if (length > MAX_TABLE_NAME_LENGTH) {
    tscError("tableNameList too long, length:%d, maximum allowed:%d", length, MAX_TABLE_NAME_LENGTH);
    return TSDB_CODE_TSC_INVALID_OPERATION;
  }

952 953 954 955 956
  char *sql = "taos_load_table_info";
  code = buildRequest(connId, sql, strlen(sql), NULL, false, &pRequest);
  if (code != TSDB_CODE_SUCCESS) {
    terrno = code;
    goto _return;
D
dapan1121 已提交
957 958
  }

dengyihao's avatar
dengyihao 已提交
959
  STscObj *pTscObj = pRequest->pTscObj;
D
dapan1121 已提交
960 961 962 963 964
  code = transferTableNameList(tableNameList, pTscObj->acctId, pTscObj->db, &catalogReq.pTableMeta);
  if (code) {
    goto _return;
  }

965
  SCatalog *pCtg = NULL;
D
dapan1121 已提交
966 967 968 969 970
  code = catalogGetHandle(pTscObj->pAppInfo->clusterId, &pCtg);
  if (code != TSDB_CODE_SUCCESS) {
    goto _return;
  }

971 972
  SRequestConnInfo conn = {
      .pTrans = pTscObj->pAppInfo->pTransporter, .requestId = pRequest->requestId, .requestObjRefId = pRequest->self};
D
dapan1121 已提交
973 974 975

  conn.mgmtEps = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);

976
  code = catalogAsyncGetAllMeta(pCtg, &conn, &catalogReq, syncCatalogFn, NULL, NULL);
D
dapan1121 已提交
977 978 979 980
  if (code) {
    goto _return;
  }

dengyihao's avatar
dengyihao 已提交
981
  SSyncQueryParam *pParam = pRequest->body.param;
982
  tsem_wait(&pParam->sem);
D
dapan1121 已提交
983 984 985 986 987

_return:
  taosArrayDestroy(catalogReq.pTableMeta);
  destroyRequest(pRequest);
  return code;
988 989
}

L
Liu Jicong 已提交
990
TAOS_STMT *taos_stmt_init(TAOS *taos) {
L
Liu Jicong 已提交
991
  STscObj *pObj = acquireTscObj(*(int64_t *)taos);
992 993 994
  if (NULL == pObj) {
    tscError("invalid parameter for %s", __FUNCTION__);
    terrno = TSDB_CODE_TSC_DISCONNECTED;
D
stmt  
dapan1121 已提交
995 996 997
    return NULL;
  }

L
Liu Jicong 已提交
998 999 1000
  TAOS_STMT *pStmt = stmtInit(pObj);

  releaseTscObj(*(int64_t *)taos);
1001 1002

  return pStmt;
1003 1004
}

D
stmt  
dapan1121 已提交
1005 1006
int taos_stmt_prepare(TAOS_STMT *stmt, const char *sql, unsigned long length) {
  if (stmt == NULL || sql == NULL) {
D
stmt  
dapan1121 已提交
1007
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1008 1009 1010 1011
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

D
stmt  
dapan1121 已提交
1012
  return stmtPrepare(stmt, sql, length);
1013 1014
}

D
dapan1121 已提交
1015
int taos_stmt_set_tbname_tags(TAOS_STMT *stmt, const char *name, TAOS_MULTI_BIND *tags) {
D
stmt  
dapan1121 已提交
1016
  if (stmt == NULL || name == NULL) {
D
stmt  
dapan1121 已提交
1017
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1018 1019 1020 1021
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

D
stmt  
dapan1121 已提交
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
  int32_t code = stmtSetTbName(stmt, name);
  if (code) {
    return code;
  }

  if (tags) {
    return stmtSetTbTags(stmt, tags);
  }

  return TSDB_CODE_SUCCESS;
1032 1033
}

D
stmt  
dapan1121 已提交
1034 1035
int taos_stmt_set_tbname(TAOS_STMT *stmt, const char *name) {
  if (stmt == NULL || name == NULL) {
D
stmt  
dapan1121 已提交
1036
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1037
    terrno = TSDB_CODE_INVALID_PARA;
D
stmt  
dapan1121 已提交
1038
    return terrno;
D
stmt  
dapan1121 已提交
1039 1040
  }

D
stmt  
dapan1121 已提交
1041
  return stmtSetTbName(stmt, name);
1042 1043
}

D
dapan1121 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
int taos_stmt_set_tags(TAOS_STMT *stmt, TAOS_MULTI_BIND *tags) {
  if (stmt == NULL || tags == NULL) {
    tscError("NULL parameter for %s", __FUNCTION__);
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

  return stmtSetTbTags(stmt, tags);
}

1054
int taos_stmt_set_sub_tbname(TAOS_STMT *stmt, const char *name) { return taos_stmt_set_tbname(stmt, name); }
D
dapan1121 已提交
1055

1056
int taos_stmt_get_tag_fields(TAOS_STMT *stmt, int *fieldNum, TAOS_FIELD_E **fields) {
D
dapan1121 已提交
1057 1058 1059 1060 1061
  if (stmt == NULL || NULL == fieldNum) {
    tscError("NULL parameter for %s", __FUNCTION__);
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }
1062

D
dapan1121 已提交
1063 1064 1065
  return stmtGetTagFields(stmt, fieldNum, fields);
}

1066
int taos_stmt_get_col_fields(TAOS_STMT *stmt, int *fieldNum, TAOS_FIELD_E **fields) {
D
dapan1121 已提交
1067 1068 1069 1070 1071
  if (stmt == NULL || NULL == fieldNum) {
    tscError("NULL parameter for %s", __FUNCTION__);
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }
1072

D
dapan1121 已提交
1073 1074 1075
  return stmtGetColFields(stmt, fieldNum, fields);
}

D
dapan1121 已提交
1076
int taos_stmt_bind_param(TAOS_STMT *stmt, TAOS_MULTI_BIND *bind) {
D
stmt  
dapan1121 已提交
1077
  if (stmt == NULL || bind == NULL) {
D
stmt  
dapan1121 已提交
1078
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1079
    terrno = TSDB_CODE_INVALID_PARA;
D
stmt  
dapan1121 已提交
1080
    return terrno;
D
stmt  
dapan1121 已提交
1081
  }
1082

D
stmt  
dapan1121 已提交
1083 1084 1085 1086 1087
  if (bind->num > 1) {
    tscError("invalid bind number %d for %s", bind->num, __FUNCTION__);
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }
1088

D
stmt  
dapan1121 已提交
1089
  return stmtBindBatch(stmt, bind, -1);
1090 1091
}

D
dapan1121 已提交
1092
int taos_stmt_bind_param_batch(TAOS_STMT *stmt, TAOS_MULTI_BIND *bind) {
D
stmt  
dapan1121 已提交
1093
  if (stmt == NULL || bind == NULL) {
D
stmt  
dapan1121 已提交
1094
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1095 1096 1097 1098
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

D
stmt  
dapan1121 已提交
1099 1100
  if (bind->num <= 0 || bind->num > INT16_MAX) {
    tscError("invalid bind num %d", bind->num);
D
stmt  
dapan1121 已提交
1101 1102 1103 1104
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

D
dapan1121 已提交
1105 1106 1107 1108 1109 1110 1111 1112
  int32_t insert = 0;
  stmtIsInsert(stmt, &insert);
  if (0 == insert && bind->num > 1) {
    tscError("only one row data allowed for query");
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

D
stmt  
dapan1121 已提交
1113
  return stmtBindBatch(stmt, bind, -1);
1114 1115
}

D
dapan1121 已提交
1116
int taos_stmt_bind_single_param_batch(TAOS_STMT *stmt, TAOS_MULTI_BIND *bind, int colIdx) {
D
stmt  
dapan1121 已提交
1117
  if (stmt == NULL || bind == NULL) {
D
stmt  
dapan1121 已提交
1118
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1119 1120 1121 1122
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

D
stmt  
dapan1121 已提交
1123
  if (colIdx < 0) {
D
stmt  
dapan1121 已提交
1124 1125 1126 1127
    tscError("invalid bind column idx %d", colIdx);
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }
D
dapan1121 已提交
1128 1129 1130 1131 1132 1133 1134 1135

  int32_t insert = 0;
  stmtIsInsert(stmt, &insert);
  if (0 == insert && bind->num > 1) {
    tscError("only one row data allowed for query");
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }
1136

D
stmt  
dapan1121 已提交
1137
  return stmtBindBatch(stmt, bind, colIdx);
1138 1139
}

D
stmt  
dapan1121 已提交
1140 1141
int taos_stmt_add_batch(TAOS_STMT *stmt) {
  if (stmt == NULL) {
D
stmt  
dapan1121 已提交
1142
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1143 1144 1145 1146
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

D
stmt  
dapan1121 已提交
1147
  return stmtAddBatch(stmt);
1148 1149
}

D
stmt  
dapan1121 已提交
1150 1151
int taos_stmt_execute(TAOS_STMT *stmt) {
  if (stmt == NULL) {
D
stmt  
dapan1121 已提交
1152
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1153 1154 1155 1156
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

D
stmt  
dapan1121 已提交
1157
  return stmtExec(stmt);
1158 1159
}

1160
int taos_stmt_is_insert(TAOS_STMT *stmt, int *insert) {
D
stmt  
dapan1121 已提交
1161
  if (stmt == NULL || insert == NULL) {
D
stmt  
dapan1121 已提交
1162
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1163 1164 1165 1166 1167
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

  return stmtIsInsert(stmt, insert);
1168 1169
}

1170
int taos_stmt_num_params(TAOS_STMT *stmt, int *nums) {
D
stmt  
dapan1121 已提交
1171
  if (stmt == NULL || nums == NULL) {
D
stmt  
dapan1121 已提交
1172
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1173 1174 1175 1176 1177
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

  return stmtGetParamNum(stmt, nums);
1178 1179
}

D
dapan1121 已提交
1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
int taos_stmt_get_param(TAOS_STMT *stmt, int idx, int *type, int *bytes) {
  if (stmt == NULL || type == NULL || NULL == bytes || idx < 0) {
    tscError("invalid parameter for %s", __FUNCTION__);
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

  return stmtGetParam(stmt, idx, type, bytes);
}

D
stmt  
dapan1121 已提交
1190
TAOS_RES *taos_stmt_use_result(TAOS_STMT *stmt) {
D
stmt  
dapan1121 已提交
1191
  if (stmt == NULL) {
D
stmt  
dapan1121 已提交
1192
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1193
    terrno = TSDB_CODE_INVALID_PARA;
D
stmt  
dapan1121 已提交
1194
    return NULL;
D
stmt  
dapan1121 已提交
1195 1196
  }

D
stmt  
dapan1121 已提交
1197
  return stmtUseResult(stmt);
1198 1199
}

1200
char *taos_stmt_errstr(TAOS_STMT *stmt) { return (char *)stmtErrstr(stmt); }
1201

D
stmt  
dapan1121 已提交
1202
int taos_stmt_affected_rows(TAOS_STMT *stmt) {
D
stmt  
dapan1121 已提交
1203
  if (stmt == NULL) {
D
stmt  
dapan1121 已提交
1204
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1205
    terrno = TSDB_CODE_INVALID_PARA;
D
stmt  
dapan1121 已提交
1206
    return 0;
D
stmt  
dapan1121 已提交
1207 1208
  }

D
stmt  
dapan1121 已提交
1209
  return stmtAffectedRows(stmt);
1210 1211
}

D
dapan1121 已提交
1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
int taos_stmt_affected_rows_once(TAOS_STMT *stmt) {
  if (stmt == NULL) {
    tscError("NULL parameter for %s", __FUNCTION__);
    terrno = TSDB_CODE_INVALID_PARA;
    return 0;
  }

  return stmtAffectedRowsOnce(stmt);
}

D
stmt  
dapan1121 已提交
1222 1223
int taos_stmt_close(TAOS_STMT *stmt) {
  if (stmt == NULL) {
D
stmt  
dapan1121 已提交
1224
    tscError("NULL parameter for %s", __FUNCTION__);
D
stmt  
dapan1121 已提交
1225 1226 1227 1228
    terrno = TSDB_CODE_INVALID_PARA;
    return terrno;
  }

D
stmt  
dapan1121 已提交
1229
  return stmtClose(stmt);
D
stmt  
dapan1121 已提交
1230
}