clientImpl.c 23.4 KB
Newer Older
1

2
#include "clientInt.h"
3
#include "clientLog.h"
4
#include "scheduler.h"
H
Haojun Liao 已提交
5
#include "tdatablock.h"
6
#include "tdef.h"
7
#include "tglobal.h"
8
#include "tmsgtype.h"
H
Haojun Liao 已提交
9
#include "tpagedbuf.h"
10
#include "tref.h"
X
Xiaoyu Wang 已提交
11

S
Shengliang Guan 已提交
12
static int32_t       initEpSetFromCfg(const char* firstEp, const char* secondEp, SCorEpSet* pEpSet);
dengyihao's avatar
dengyihao 已提交
13 14
static SMsgSendInfo* buildConnectMsg(SRequestObj* pRequest);
static void          destroySendMsgInfo(SMsgSendInfo* pMsgBody);
15
static int32_t       setQueryResultFromRsp(SReqResultInfo* pResultInfo, const SRetrieveTableRsp* pRsp);
H
Haojun Liao 已提交
16

17
static bool stringLengthCheck(const char* str, size_t maxsize) {
18 19 20 21 22 23 24 25 26 27 28 29
  if (str == NULL) {
    return false;
  }

  size_t len = strlen(str);
  if (len <= 0 || len > maxsize) {
    return false;
  }

  return true;
}

dengyihao's avatar
dengyihao 已提交
30
static bool validateUserName(const char* user) { return stringLengthCheck(user, TSDB_USER_LEN - 1); }
31

dengyihao's avatar
dengyihao 已提交
32
static bool validatePassword(const char* passwd) { return stringLengthCheck(passwd, TSDB_PASSWORD_LEN - 1); }
33

dengyihao's avatar
dengyihao 已提交
34
static bool validateDbName(const char* db) { return stringLengthCheck(db, TSDB_DB_NAME_LEN - 1); }
35

36 37 38 39 40 41
static char* getClusterKey(const char* user, const char* auth, const char* ip, int32_t port) {
  char key[512] = {0};
  snprintf(key, sizeof(key), "%s:%s:%s:%d", user, auth, ip, port);
  return strdup(key);
}

dengyihao's avatar
dengyihao 已提交
42 43 44
static STscObj* taosConnectImpl(const char* user, const char* auth, const char* db, __taos_async_fn_t fp, void* param,
                                SAppInstInfo* pAppInfo);
static void     setResSchemaInfo(SReqResultInfo* pResInfo, const SSchema* pSchema, int32_t numOfCols);
45

dengyihao's avatar
dengyihao 已提交
46 47
TAOS* taos_connect_internal(const char* ip, const char* user, const char* pass, const char* auth, const char* db,
                            uint16_t port) {
48 49 50 51
  if (taos_init() != TSDB_CODE_SUCCESS) {
    return NULL;
  }

52 53 54 55 56
  if (!validateUserName(user)) {
    terrno = TSDB_CODE_TSC_INVALID_USER_LENGTH;
    return NULL;
  }

57
  char localDb[TSDB_DB_NAME_LEN] = {0};
58
  if (db != NULL) {
dengyihao's avatar
dengyihao 已提交
59
    if (!validateDbName(db)) {
60 61 62 63
      terrno = TSDB_CODE_TSC_INVALID_DB_LENGTH;
      return NULL;
    }

64 65
    tstrncpy(localDb, db, sizeof(localDb));
    strdequote(localDb);
66 67
  }

68
  char secretEncrypt[TSDB_PASSWORD_LEN + 1] = {0};
69 70 71 72 73 74
  if (auth == NULL) {
    if (!validatePassword(pass)) {
      terrno = TSDB_CODE_TSC_INVALID_PASS_LENGTH;
      return NULL;
    }

dengyihao's avatar
dengyihao 已提交
75
    taosEncryptPass_c((uint8_t*)pass, strlen(pass), secretEncrypt);
76 77 78 79
  } else {
    tstrncpy(secretEncrypt, auth, tListLen(secretEncrypt));
  }

80
  SCorEpSet epSet = {0};
S
Shengliang Guan 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93
  if (ip) {
    if (initEpSetFromCfg(ip, NULL, &epSet) < 0) {
      return NULL;
    }

    if (port) {
      epSet.epSet.eps[0].port = port;
    }
  } else {
    if (initEpSetFromCfg(tsFirst, tsSecond, &epSet) < 0) {
      return NULL;
    }
  }
94

dengyihao's avatar
dengyihao 已提交
95
  char*          key = getClusterKey(user, secretEncrypt, ip, port);
H
Haojun Liao 已提交
96
  SAppInstInfo** pInst = NULL;
97

wafwerar's avatar
wafwerar 已提交
98
  taosThreadMutexLock(&appInfo.mutex);
H
Haojun Liao 已提交
99 100

  pInst = taosHashGet(appInfo.pInstMap, key, strlen(key));
L
Liu Jicong 已提交
101
  SAppInstInfo* p = NULL;
102
  if (pInst == NULL) {
L
Liu Jicong 已提交
103
    p = calloc(1, sizeof(struct SAppInstInfo));
dengyihao's avatar
dengyihao 已提交
104
    p->mgmtEp = epSet;
H
Haojun Liao 已提交
105
    p->pTransporter = openTransporter(user, secretEncrypt, tsNumOfCores);
D
dapan 已提交
106
    p->pAppHbMgr = appHbMgrInit(p, key);
H
Haojun Liao 已提交
107
    taosHashPut(appInfo.pInstMap, key, strlen(key), &p, POINTER_BYTES);
108

H
Haojun Liao 已提交
109
    pInst = &p;
110 111
  }

wafwerar's avatar
wafwerar 已提交
112
  taosThreadMutexUnlock(&appInfo.mutex);
H
Haojun Liao 已提交
113

H
Haojun Liao 已提交
114
  tfree(key);
H
Haojun Liao 已提交
115
  return taosConnectImpl(user, &secretEncrypt[0], localDb, NULL, NULL, *pInst);
116 117
}

dengyihao's avatar
dengyihao 已提交
118
int32_t buildRequest(STscObj* pTscObj, const char* sql, int sqlLen, SRequestObj** pRequest) {
X
Xiaoyu Wang 已提交
119 120
  *pRequest = createRequest(pTscObj, NULL, NULL, TSDB_SQL_SELECT);
  if (*pRequest == NULL) {
121
    tscError("failed to malloc sqlObj");
X
Xiaoyu Wang 已提交
122
    return TSDB_CODE_TSC_OUT_OF_MEMORY;
123 124
  }

X
Xiaoyu Wang 已提交
125 126
  (*pRequest)->sqlstr = malloc(sqlLen + 1);
  if ((*pRequest)->sqlstr == NULL) {
dengyihao's avatar
dengyihao 已提交
127
    tscError("0x%" PRIx64 " failed to prepare sql string buffer", (*pRequest)->self);
X
Xiaoyu Wang 已提交
128 129
    (*pRequest)->msgBuf = strdup("failed to prepare sql string buffer");
    return TSDB_CODE_TSC_OUT_OF_MEMORY;
130 131
  }

X
Xiaoyu Wang 已提交
132 133 134
  strntolower((*pRequest)->sqlstr, sql, (int32_t)sqlLen);
  (*pRequest)->sqlstr[sqlLen] = 0;
  (*pRequest)->sqlLen = sqlLen;
135

dengyihao's avatar
dengyihao 已提交
136
  tscDebugL("0x%" PRIx64 " SQL: %s, reqId:0x%" PRIx64, (*pRequest)->self, (*pRequest)->sqlstr, (*pRequest)->requestId);
X
Xiaoyu Wang 已提交
137 138
  return TSDB_CODE_SUCCESS;
}
139

X
Xiaoyu Wang 已提交
140
int32_t parseSql(SRequestObj* pRequest, bool topicQuery, SQuery** pQuery) {
H
Haojun Liao 已提交
141 142
  STscObj* pTscObj = pRequest->pTscObj;

X
Xiaoyu Wang 已提交
143
  SParseContext cxt = {
dengyihao's avatar
dengyihao 已提交
144 145
      .requestId = pRequest->requestId,
      .acctId = pTscObj->acctId,
X
Xiaoyu Wang 已提交
146
      .db = pRequest->pDb,
X
Xiaoyu Wang 已提交
147
      .topicQuery = topicQuery,
dengyihao's avatar
dengyihao 已提交
148 149 150 151 152
      .pSql = pRequest->sqlstr,
      .sqlLen = pRequest->sqlLen,
      .pMsg = pRequest->msgBuf,
      .msgLen = ERROR_MSG_BUF_DEFAULT_SIZE,
      .pTransporter = pTscObj->pAppInfo->pTransporter,
X
Xiaoyu Wang 已提交
153
  };
H
Haojun Liao 已提交
154

H
Haojun Liao 已提交
155 156
  cxt.mgmtEpSet = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);
  int32_t code = catalogGetHandle(pTscObj->pAppInfo->clusterId, &cxt.pCatalog);
H
Haojun Liao 已提交
157 158 159 160 161
  if (code != TSDB_CODE_SUCCESS) {
    return code;
  }

  code = qParseQuerySql(&cxt, pQuery);
X
Xiaoyu Wang 已提交
162 163 164 165 166 167
  if (TSDB_CODE_SUCCESS == code) {
    if ((*pQuery)->haveResultSet) {
      setResSchemaInfo(&pRequest->body.resInfo, (*pQuery)->pResSchema, (*pQuery)->numOfResCols);
    }
    TSWAP(pRequest->dbList, (*pQuery)->pDbList, SArray*);
    TSWAP(pRequest->tableList, (*pQuery)->pTableList, SArray*);
X
Xiaoyu Wang 已提交
168
  }
169

X
Xiaoyu Wang 已提交
170 171
  return code;
}
H
Haojun Liao 已提交
172

X
Xiaoyu Wang 已提交
173
int32_t execDdlQuery(SRequestObj* pRequest, SQuery* pQuery) {
174 175 176
  SCmdMsgInfo* pMsgInfo = pQuery->pCmdMsg;
  pRequest->type = pMsgInfo->msgType;
  pRequest->body.requestMsg = (SDataBuf){.pData = pMsgInfo->pMsg, .len = pMsgInfo->msgLen, .handle = NULL};
X
Xiaoyu Wang 已提交
177
  pMsgInfo->pMsg = NULL; // pMsg transferred to SMsgSendInfo management
X
Xiaoyu Wang 已提交
178

dengyihao's avatar
dengyihao 已提交
179
  STscObj*      pTscObj = pRequest->pTscObj;
180
  SMsgSendInfo* pSendMsg = buildMsgInfoImpl(pRequest);
X
Xiaoyu Wang 已提交
181

182 183 184 185 186
  if (pMsgInfo->msgType == TDMT_VND_SHOW_TABLES) {
    SShowReqInfo* pShowReqInfo = &pRequest->body.showInfo;
    if (pShowReqInfo->pArray == NULL) {
      pShowReqInfo->currentIndex = 0;  // set the first vnode/ then iterate the next vnode
      pShowReqInfo->pArray = pMsgInfo->pExtension;
187
    }
188
  }
189 190
  int64_t transporterId = 0;
  asyncSendMsgToServer(pTscObj->pAppInfo->pTransporter, &pMsgInfo->epSet, &transporterId, pSendMsg);
191

X
Xiaoyu Wang 已提交
192 193 194
  tsem_wait(&pRequest->body.rspSem);
  return TSDB_CODE_SUCCESS;
}
X
Xiaoyu Wang 已提交
195

196 197
int32_t getPlan(SRequestObj* pRequest, SQuery* pQuery, SQueryPlan** pPlan, SArray* pNodeList) {
  pRequest->type = pQuery->msgType;
X
Xiaoyu Wang 已提交
198 199 200 201 202 203
  SPlanContext cxt = {
    .queryId = pRequest->requestId,
    .acctId = pRequest->pTscObj->acctId,
    .mgmtEpSet = getEpSet_s(&pRequest->pTscObj->pAppInfo->mgmtEp),
    .pAstRoot = pQuery->pRoot
  };
204
  int32_t  code = qCreateQueryPlan(&cxt, pPlan, pNodeList);
X
Xiaoyu Wang 已提交
205 206 207 208
  if (code != 0) {
    return code;
  }
  return code;
X
Xiaoyu Wang 已提交
209 210
}

211 212
void setResSchemaInfo(SReqResultInfo* pResInfo, const SSchema* pSchema, int32_t numOfCols) {
  assert(pSchema != NULL && numOfCols > 0);
213

214 215
  pResInfo->numOfCols = numOfCols;
  pResInfo->fields = calloc(numOfCols, sizeof(pSchema[0]));
216 217

  for (int32_t i = 0; i < pResInfo->numOfCols; ++i) {
218
    pResInfo->fields[i].bytes = pSchema[i].bytes;
dengyihao's avatar
dengyihao 已提交
219
    pResInfo->fields[i].type = pSchema[i].type;
220
    tstrncpy(pResInfo->fields[i].name, pSchema[i].name, tListLen(pResInfo->fields[i].name));
221
  }
X
Xiaoyu Wang 已提交
222 223
}

X
Xiaoyu Wang 已提交
224
int32_t scheduleQuery(SRequestObj* pRequest, SQueryPlan* pDag, SArray* pNodeList) {
225
  void* pTransporter = pRequest->pTscObj->pAppInfo->pTransporter;
226

D
dapan1121 已提交
227
  SQueryResult res = {.code = 0, .numOfRows = 0, .msgSize = ERROR_MSG_BUF_DEFAULT_SIZE, .msg = pRequest->msgBuf};
D
dapan1121 已提交
228
  int32_t      code = schedulerExecJob(pTransporter, pNodeList, pDag, &pRequest->body.queryJob, pRequest->sqlstr, &res);
D
dapan1121 已提交
229
  if (code != TSDB_CODE_SUCCESS) {
D
dapan1121 已提交
230 231
    if (pRequest->body.queryJob != 0) {
      schedulerFreeJob(pRequest->body.queryJob);
232 233
    }

D
dapan1121 已提交
234
    pRequest->code = code;
D
dapan1121 已提交
235
    terrno = code;
H
Haojun Liao 已提交
236
    return pRequest->code;
X
Xiaoyu Wang 已提交
237
  }
238

239
  if (TDMT_VND_SUBMIT == pRequest->type || TDMT_VND_CREATE_TABLE == pRequest->type) {
D
dapan1121 已提交
240
    pRequest->body.resInfo.numOfRows = res.numOfRows;
dengyihao's avatar
test  
dengyihao 已提交
241

D
dapan1121 已提交
242 243
    if (pRequest->body.queryJob != 0) {
      schedulerFreeJob(pRequest->body.queryJob);
D
dapan1121 已提交
244 245
    }
  }
dengyihao's avatar
test  
dengyihao 已提交
246

D
dapan1121 已提交
247
  pRequest->code = res.code;
D
dapan1121 已提交
248
  terrno = res.code;  
D
dapan1121 已提交
249
  return pRequest->code;
X
Xiaoyu Wang 已提交
250
}
X
Xiaoyu Wang 已提交
251

D
dapan1121 已提交
252
SRequestObj* execQueryImpl(STscObj* pTscObj, const char* sql, int sqlLen) {
S
Shengliang Guan 已提交
253
  SRequestObj* pRequest = NULL;
X
Xiaoyu Wang 已提交
254
  SQuery* pQuery = NULL;
D
dapan1121 已提交
255
  int32_t code = 0;
X
Xiaoyu Wang 已提交
256
  SArray* pNodeList = taosArrayInit(4, sizeof(struct SQueryNodeAddr));
X
Xiaoyu Wang 已提交
257 258

  CHECK_CODE_GOTO(buildRequest(pTscObj, sql, sqlLen, &pRequest), _return);
X
Xiaoyu Wang 已提交
259
  CHECK_CODE_GOTO(parseSql(pRequest, false, &pQuery), _return);
H
Haojun Liao 已提交
260

261
  if (pQuery->directRpc) {
X
Xiaoyu Wang 已提交
262
    CHECK_CODE_GOTO(execDdlQuery(pRequest, pQuery), _return);
H
Haojun Liao 已提交
263
  } else {
X
Xiaoyu Wang 已提交
264
    CHECK_CODE_GOTO(getPlan(pRequest, pQuery, &pRequest->body.pDag, pNodeList), _return);
265
    CHECK_CODE_GOTO(scheduleQuery(pRequest, pRequest->body.pDag, pNodeList), _return);
X
Xiaoyu Wang 已提交
266 267 268
  }

_return:
269
  taosArrayDestroy(pNodeList);
X
Xiaoyu Wang 已提交
270
  qDestroyQuery(pQuery);
D
dapan1121 已提交
271
  if (NULL != pRequest && TSDB_CODE_SUCCESS != code) {
X
Xiaoyu Wang 已提交
272 273
    pRequest->code = terrno;
  }
274

275 276 277
  return pRequest;
}

D
dapan1121 已提交
278 279 280 281 282 283 284 285 286
int32_t refreshMeta(STscObj* pTscObj, SRequestObj* pRequest) {
  SCatalog *pCatalog = NULL;
  int32_t code = 0;
  int32_t dbNum = taosArrayGetSize(pRequest->dbList);
  int32_t tblNum = taosArrayGetSize(pRequest->tableList);

  if (dbNum <= 0 && tblNum <= 0) {
    return TSDB_CODE_QRY_APP_ERROR;
  }
D
dapan1121 已提交
287
  
D
dapan1121 已提交
288 289 290 291 292 293 294 295 296 297 298 299 300
  code = catalogGetHandle(pTscObj->pAppInfo->clusterId, &pCatalog);
  if (code != TSDB_CODE_SUCCESS) {
    return code;
  }

  SEpSet epset = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);

  for (int32_t i = 0; i < dbNum; ++i) {
    char *dbFName = taosArrayGet(pRequest->dbList, i);
    
    code = catalogRefreshDBVgInfo(pCatalog, pTscObj->pAppInfo->pTransporter, &epset, dbFName);
    if (code != TSDB_CODE_SUCCESS) {
      return code;
D
dapan1121 已提交
301 302 303
    }
  }

D
dapan1121 已提交
304 305 306 307 308 309 310
  for (int32_t i = 0; i < tblNum; ++i) {
    SName *tableName = taosArrayGet(pRequest->tableList, i);

    code = catalogRefreshTableMeta(pCatalog, pTscObj->pAppInfo->pTransporter, &epset, tableName, -1);
    if (code != TSDB_CODE_SUCCESS) {
      return code;
    }
D
dapan1121 已提交
311 312
  }

D
dapan1121 已提交
313
  return code;
D
dapan1121 已提交
314 315 316 317 318
}


SRequestObj* execQuery(STscObj* pTscObj, const char* sql, int sqlLen) {
  SRequestObj* pRequest = NULL;
D
dapan1121 已提交
319
  int32_t retryNum = 0;
D
dapan1121 已提交
320 321
  int32_t code = 0;

D
dapan1121 已提交
322
  while (retryNum++ < REQUEST_MAX_TRY_TIMES) {
D
dapan1121 已提交
323
    pRequest = execQueryImpl(pTscObj, sql, sqlLen);
D
dapan1121 已提交
324
    if (TSDB_CODE_SUCCESS == pRequest->code || !NEED_CLIENT_HANDLE_ERROR(pRequest->code)) {
D
dapan1121 已提交
325 326 327
      break;
    }

D
dapan1121 已提交
328 329 330
    code = refreshMeta(pTscObj, pRequest);
    if (code) {
      pRequest->code = code;
D
dapan1121 已提交
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
      break;
    }
  }
  
  return pRequest;
}

TAOS_RES* taos_query_l(TAOS* taos, const char* sql, int sqlLen) {
  STscObj* pTscObj = (STscObj*)taos;
  if (sqlLen > (size_t)TSDB_MAX_ALLOWED_SQL_LEN) {
    tscError("sql string exceeds max length:%d", TSDB_MAX_ALLOWED_SQL_LEN);
    terrno = TSDB_CODE_TSC_EXCEED_SQL_LIMIT;
    return NULL;
  }

  return execQuery(pTscObj, sql, sqlLen);
}

S
Shengliang Guan 已提交
349 350
int initEpSetFromCfg(const char* firstEp, const char* secondEp, SCorEpSet* pEpSet) {
  pEpSet->version = 0;
351

H
Haojun Liao 已提交
352
  // init mnode ip set
dengyihao's avatar
dengyihao 已提交
353
  SEpSet* mgmtEpSet = &(pEpSet->epSet);
354
  mgmtEpSet->numOfEps = 0;
dengyihao's avatar
dengyihao 已提交
355
  mgmtEpSet->inUse = 0;
356

S
Shengliang Guan 已提交
357 358 359 360
  if (firstEp && firstEp[0] != 0) {
    if (strlen(firstEp) >= TSDB_EP_LEN) {
      terrno = TSDB_CODE_TSC_INVALID_FQDN;
      return -1;
S
Shengliang Guan 已提交
361
    }
S
Shengliang Guan 已提交
362 363 364 365 366 367 368 369 370

    taosGetFqdnPortFromEp(firstEp, &mgmtEpSet->eps[0]);
    mgmtEpSet->numOfEps++;
  }

  if (secondEp && secondEp[0] != 0) {
    if (strlen(secondEp) >= TSDB_EP_LEN) {
      terrno = TSDB_CODE_TSC_INVALID_FQDN;
      return -1;
371
    }
S
Shengliang Guan 已提交
372 373 374

    taosGetFqdnPortFromEp(secondEp, &mgmtEpSet->eps[mgmtEpSet->numOfEps]);
    mgmtEpSet->numOfEps++;
375 376 377 378 379 380 381 382 383 384
  }

  if (mgmtEpSet->numOfEps == 0) {
    terrno = TSDB_CODE_TSC_INVALID_FQDN;
    return -1;
  }

  return 0;
}

dengyihao's avatar
dengyihao 已提交
385 386 387
STscObj* taosConnectImpl(const char* user, const char* auth, const char* db, __taos_async_fn_t fp, void* param,
                         SAppInstInfo* pAppInfo) {
  STscObj* pTscObj = createTscObj(user, auth, db, pAppInfo);
388 389 390 391 392
  if (NULL == pTscObj) {
    terrno = TSDB_CODE_TSC_OUT_OF_MEMORY;
    return pTscObj;
  }

dengyihao's avatar
dengyihao 已提交
393
  SRequestObj* pRequest = createRequest(pTscObj, fp, param, TDMT_MND_CONNECT);
394 395 396
  if (pRequest == NULL) {
    destroyTscObj(pTscObj);
    terrno = TSDB_CODE_TSC_OUT_OF_MEMORY;
397 398 399
    return NULL;
  }

400
  SMsgSendInfo* body = buildConnectMsg(pRequest);
401 402

  int64_t transporterId = 0;
H
Haojun Liao 已提交
403
  asyncSendMsgToServer(pTscObj->pAppInfo->pTransporter, &pTscObj->pAppInfo->mgmtEp.epSet, &transporterId, body);
404 405 406

  tsem_wait(&pRequest->body.rspSem);
  if (pRequest->code != TSDB_CODE_SUCCESS) {
dengyihao's avatar
dengyihao 已提交
407 408
    const char* errorMsg =
        (pRequest->code == TSDB_CODE_RPC_FQDN_ERROR) ? taos_errstr(pRequest) : tstrerror(pRequest->code);
409 410 411 412 413 414
    printf("failed to connect to server, reason: %s\n\n", errorMsg);

    destroyRequest(pRequest);
    taos_close(pTscObj);
    pTscObj = NULL;
  } else {
dengyihao's avatar
dengyihao 已提交
415 416
    tscDebug("0x%" PRIx64 " connection is opening, connId:%d, dnodeConn:%p, reqId:0x%" PRIx64, pTscObj->id,
             pTscObj->connId, pTscObj->pAppInfo->pTransporter, pRequest->requestId);
417 418 419 420 421 422
    destroyRequest(pRequest);
  }

  return pTscObj;
}

dengyihao's avatar
dengyihao 已提交
423 424
static SMsgSendInfo* buildConnectMsg(SRequestObj* pRequest) {
  SMsgSendInfo* pMsgSendInfo = calloc(1, sizeof(SMsgSendInfo));
425 426 427 428 429
  if (pMsgSendInfo == NULL) {
    terrno = TSDB_CODE_TSC_OUT_OF_MEMORY;
    return NULL;
  }

dengyihao's avatar
dengyihao 已提交
430
  pMsgSendInfo->msgType = TDMT_MND_CONNECT;
431

432
  pMsgSendInfo->requestObjRefId = pRequest->self;
dengyihao's avatar
dengyihao 已提交
433 434 435
  pMsgSendInfo->requestId = pRequest->requestId;
  pMsgSendInfo->fp = handleRequestRspFp[TMSG_INDEX(pMsgSendInfo->msgType)];
  pMsgSendInfo->param = pRequest;
436

S
Shengliang Guan 已提交
437 438
  SConnectReq connectReq = {0};
  STscObj*    pObj = pRequest->pTscObj;
439

H
Haojun Liao 已提交
440
  char* db = getDbOfConnection(pObj);
441
  if (db != NULL) {
S
Shengliang Guan 已提交
442
    tstrncpy(connectReq.db, db, sizeof(connectReq.db));
443
  }
444
  tfree(db);
445

S
Shengliang Guan 已提交
446 447 448 449 450 451 452
  connectReq.pid = htonl(appInfo.pid);
  connectReq.startTime = htobe64(appInfo.startTime);
  tstrncpy(connectReq.app, appInfo.appName, sizeof(connectReq.app));

  int32_t contLen = tSerializeSConnectReq(NULL, 0, &connectReq);
  void*   pReq = malloc(contLen);
  tSerializeSConnectReq(pReq, contLen, &connectReq);
453

S
Shengliang Guan 已提交
454 455
  pMsgSendInfo->msgInfo.len = contLen;
  pMsgSendInfo->msgInfo.pData = pReq;
456
  return pMsgSendInfo;
457 458
}

459
static void destroySendMsgInfo(SMsgSendInfo* pMsgBody) {
H
Haojun Liao 已提交
460
  assert(pMsgBody != NULL);
461 462
  tfree(pMsgBody->msgInfo.pData);
  tfree(pMsgBody);
H
Haojun Liao 已提交
463
}
dengyihao's avatar
dengyihao 已提交
464
bool persistConnForSpecificMsg(void* parenct, tmsg_t msgType) {
D
dapan1121 已提交
465
  return msgType == TDMT_VND_QUERY_RSP || msgType == TDMT_VND_FETCH_RSP || msgType == TDMT_VND_RES_READY_RSP || msgType == TDMT_VND_QUERY_HEARTBEAT_RSP;
dengyihao's avatar
dengyihao 已提交
466
}
467
void processMsgFromServer(void* parent, SRpcMsg* pMsg, SEpSet* pEpSet) {
dengyihao's avatar
dengyihao 已提交
468
  SMsgSendInfo* pSendInfo = (SMsgSendInfo*)pMsg->ahandle;
469
  assert(pMsg->ahandle != NULL);
470

471
  if (pSendInfo->requestObjRefId != 0) {
dengyihao's avatar
dengyihao 已提交
472
    SRequestObj* pRequest = (SRequestObj*)taosAcquireRef(clientReqRefPool, pSendInfo->requestObjRefId);
473
    assert(pRequest->self == pSendInfo->requestObjRefId);
474

475
    pRequest->metric.rsp = taosGetTimestampMs();
476

dengyihao's avatar
dengyihao 已提交
477
    STscObj* pTscObj = pRequest->pTscObj;
478 479 480 481
    if (pEpSet) {
      if (!isEpsetEqual(&pTscObj->pAppInfo->mgmtEp.epSet, pEpSet)) {
        updateEpSet_s(&pTscObj->pAppInfo->mgmtEp, pEpSet);
      }
482 483
    }

484
    /*
dengyihao's avatar
dengyihao 已提交
485 486
     * There is not response callback function for submit response.
     * The actual inserted number of points is the first number.
487
     */
488
    int32_t elapsed = pRequest->metric.rsp - pRequest->metric.start;
489
    if (pMsg->code == TSDB_CODE_SUCCESS) {
dengyihao's avatar
dengyihao 已提交
490 491
      tscDebug("0x%" PRIx64 " message:%s, code:%s rspLen:%d, elapsed:%d ms, reqId:0x%" PRIx64, pRequest->self,
               TMSG_INFO(pMsg->msgType), tstrerror(pMsg->code), pMsg->contLen, elapsed, pRequest->requestId);
492
    } else {
dengyihao's avatar
dengyihao 已提交
493 494
      tscError("0x%" PRIx64 " SQL cmd:%s, code:%s rspLen:%d, elapsed time:%d ms, reqId:0x%" PRIx64, pRequest->self,
               TMSG_INFO(pMsg->msgType), tstrerror(pMsg->code), pMsg->contLen, elapsed, pRequest->requestId);
495
    }
496

H
Haojun Liao 已提交
497
    taosReleaseRef(clientReqRefPool, pSendInfo->requestObjRefId);
498 499
  }

dengyihao's avatar
dengyihao 已提交
500
  SDataBuf buf = {.len = pMsg->contLen, .pData = NULL, .handle = pMsg->handle};
501 502 503 504 505 506 507 508 509

  if (pMsg->contLen > 0) {
    buf.pData = calloc(1, pMsg->contLen);
    if (buf.pData == NULL) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      pMsg->code = TSDB_CODE_OUT_OF_MEMORY;
    } else {
      memcpy(buf.pData, pMsg->pCont, pMsg->contLen);
    }
510 511
  }

512
  pSendInfo->fp(pSendInfo->param, &buf, pMsg->code);
513
  rpcFreeCont(pMsg->pCont);
514
  destroySendMsgInfo(pSendInfo);
515
}
516

dengyihao's avatar
dengyihao 已提交
517
TAOS* taos_connect_auth(const char* ip, const char* user, const char* auth, const char* db, uint16_t port) {
518 519 520 521 522 523 524 525 526 527 528 529 530
  tscDebug("try to connect to %s:%u by auth, user:%s db:%s", ip, port, user, db);
  if (user == NULL) {
    user = TSDB_DEFAULT_USER;
  }

  if (auth == NULL) {
    tscError("No auth info is given, failed to connect to server");
    return NULL;
  }

  return taos_connect_internal(ip, user, NULL, auth, db, port);
}

dengyihao's avatar
dengyihao 已提交
531 532 533
TAOS* taos_connect_l(const char* ip, int ipLen, const char* user, int userLen, const char* pass, int passLen,
                     const char* db, int dbLen, uint16_t port) {
  char ipStr[TSDB_EP_LEN] = {0};
534
  char dbStr[TSDB_DB_NAME_LEN] = {0};
dengyihao's avatar
dengyihao 已提交
535 536
  char userStr[TSDB_USER_LEN] = {0};
  char passStr[TSDB_PASSWORD_LEN] = {0};
537

dengyihao's avatar
dengyihao 已提交
538
  strncpy(ipStr, ip, TMIN(TSDB_EP_LEN - 1, ipLen));
dengyihao's avatar
dengyihao 已提交
539 540
  strncpy(userStr, user, TMIN(TSDB_USER_LEN - 1, userLen));
  strncpy(passStr, pass, TMIN(TSDB_PASSWORD_LEN - 1, passLen));
dengyihao's avatar
dengyihao 已提交
541
  strncpy(dbStr, db, TMIN(TSDB_DB_NAME_LEN - 1, dbLen));
542
  return taos_connect(ipStr, userStr, passStr, dbStr, port);
543 544 545 546
}

void* doFetchRow(SRequestObj* pRequest) {
  assert(pRequest != NULL);
547
  SReqResultInfo* pResultInfo = &pRequest->body.resInfo;
548

H
Haojun Liao 已提交
549 550
  SEpSet epSet = {0};

H
Haojun Liao 已提交
551
  if (pResultInfo->pData == NULL || pResultInfo->current >= pResultInfo->numOfRows) {
552
    if (pRequest->type == TDMT_VND_QUERY) {
553 554 555 556 557
      // All data has returned to App already, no need to try again
      if (pResultInfo->completed) {
        return NULL;
      }

558
      SReqResultInfo* pResInfo = &pRequest->body.resInfo;
559 560 561 562 563 564 565
      pRequest->code = schedulerFetchRows(pRequest->body.queryJob, (void**)&pResInfo->pData);
      if (pRequest->code != TSDB_CODE_SUCCESS) {
        return NULL;
      }

      pRequest->code = setQueryResultFromRsp(&pRequest->body.resInfo, (SRetrieveTableRsp*)pResInfo->pData);
      if (pRequest->code != TSDB_CODE_SUCCESS) {
566 567
        return NULL;
      }
H
Haojun Liao 已提交
568

dengyihao's avatar
dengyihao 已提交
569 570
      tscDebug("0x%" PRIx64 " fetch results, numOfRows:%d total Rows:%" PRId64 ", complete:%d, reqId:0x%" PRIx64,
               pRequest->self, pResInfo->numOfRows, pResInfo->totalRows, pResInfo->completed, pRequest->requestId);
571

572
      if (pResultInfo->numOfRows == 0) {
D
dapan1121 已提交
573 574 575 576
        return NULL;
      }

      goto _return;
577
    } else if (pRequest->type == TDMT_MND_SHOW) {
H
Haojun Liao 已提交
578
      pRequest->type = TDMT_MND_SHOW_RETRIEVE;
H
Haojun Liao 已提交
579
      epSet = getEpSet_s(&pRequest->pTscObj->pAppInfo->mgmtEp);
H
Haojun Liao 已提交
580 581
    } else if (pRequest->type == TDMT_VND_SHOW_TABLES) {
      pRequest->type = TDMT_VND_SHOW_TABLES_FETCH;
H
Haojun Liao 已提交
582
      SShowReqInfo* pShowReqInfo = &pRequest->body.showInfo;
dengyihao's avatar
dengyihao 已提交
583
      SVgroupInfo*  pVgroupInfo = taosArrayGet(pShowReqInfo->pArray, pShowReqInfo->currentIndex);
H
Haojun Liao 已提交
584

L
Liu Jicong 已提交
585
      epSet = pVgroupInfo->epSet;
H
Haojun Liao 已提交
586 587 588 589 590 591 592 593
    } else if (pRequest->type == TDMT_VND_SHOW_TABLES_FETCH) {
      pRequest->type = TDMT_VND_SHOW_TABLES;
      SShowReqInfo* pShowReqInfo = &pRequest->body.showInfo;
      pShowReqInfo->currentIndex += 1;
      if (pShowReqInfo->currentIndex >= taosArrayGetSize(pShowReqInfo->pArray)) {
        return NULL;
      }

dengyihao's avatar
dengyihao 已提交
594
      SVgroupInfo*     pVgroupInfo = taosArrayGet(pShowReqInfo->pArray, pShowReqInfo->currentIndex);
H
Haojun Liao 已提交
595 596 597 598 599 600 601
      SVShowTablesReq* pShowReq = calloc(1, sizeof(SVShowTablesReq));
      pShowReq->head.vgId = htonl(pVgroupInfo->vgId);

      pRequest->body.requestMsg.len = sizeof(SVShowTablesReq);
      pRequest->body.requestMsg.pData = pShowReq;

      SMsgSendInfo* body = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
602
      epSet = pVgroupInfo->epSet;
H
Haojun Liao 已提交
603

H
Haojun Liao 已提交
604
      int64_t  transporterId = 0;
dengyihao's avatar
dengyihao 已提交
605
      STscObj* pTscObj = pRequest->pTscObj;
H
Haojun Liao 已提交
606
      asyncSendMsgToServer(pTscObj->pAppInfo->pTransporter, &epSet, &transporterId, body);
H
Haojun Liao 已提交
607 608 609
      tsem_wait(&pRequest->body.rspSem);

      pRequest->type = TDMT_VND_SHOW_TABLES_FETCH;
dengyihao's avatar
dengyihao 已提交
610
    } else if (pRequest->type == TDMT_MND_SHOW_RETRIEVE) {
D
dapan1121 已提交
611
      epSet = getEpSet_s(&pRequest->pTscObj->pAppInfo->mgmtEp);
dengyihao's avatar
dengyihao 已提交
612

D
dapan1121 已提交
613 614 615
      if (pResultInfo->completed) {
        return NULL;
      }
H
Haojun Liao 已提交
616
    }
H
Haojun Liao 已提交
617

618
    SMsgSendInfo* body = buildMsgInfoImpl(pRequest);
H
Haojun Liao 已提交
619

620
    int64_t  transporterId = 0;
dengyihao's avatar
dengyihao 已提交
621
    STscObj* pTscObj = pRequest->pTscObj;
H
Haojun Liao 已提交
622
    asyncSendMsgToServer(pTscObj->pAppInfo->pTransporter, &epSet, &transporterId, body);
H
Haojun Liao 已提交
623 624 625 626 627 628 629 630 631

    tsem_wait(&pRequest->body.rspSem);

    pResultInfo->current = 0;
    if (pResultInfo->numOfRows <= pResultInfo->current) {
      return NULL;
    }
  }

D
dapan1121 已提交
632 633
_return:

dengyihao's avatar
dengyihao 已提交
634
  for (int32_t i = 0; i < pResultInfo->numOfCols; ++i) {
635 636
    SResultColumn* pCol = &pResultInfo->pCol[i];

H
Haojun Liao 已提交
637
    if (IS_VAR_DATA_TYPE(pResultInfo->fields[i].type)) {
638 639 640 641 642 643 644 645 646 647 648 649 650 651
      if (pCol->offset[pResultInfo->current] != -1) {
        char* pStart = pResultInfo->pCol[i].offset[pResultInfo->current] + pResultInfo->pCol[i].pData;

        pResultInfo->length[i] = varDataLen(pStart);
        pResultInfo->row[i] = varDataVal(pStart);
      } else {
        pResultInfo->row[i] = NULL;
      }
    } else {
      if (!colDataIsNull_f(pCol->nullbitmap, pResultInfo->current)) {
        pResultInfo->row[i] = pResultInfo->pCol[i].pData + pResultInfo->fields[i].bytes * pResultInfo->current;
      } else {
        pResultInfo->row[i] = NULL;
      }
652
    }
H
Haojun Liao 已提交
653 654 655 656 657 658
  }

  pResultInfo->current += 1;
  return pResultInfo->row;
}

659
static int32_t doPrepareResPtr(SReqResultInfo* pResInfo) {
H
Haojun Liao 已提交
660
  if (pResInfo->row == NULL) {
661 662
    pResInfo->row    = calloc(pResInfo->numOfCols, POINTER_BYTES);
    pResInfo->pCol   = calloc(pResInfo->numOfCols, sizeof(SResultColumn));
H
Haojun Liao 已提交
663 664
    pResInfo->length = calloc(pResInfo->numOfCols, sizeof(int32_t));
  }
665 666 667 668 669 670

  if (pResInfo->row == NULL || pResInfo->pCol == NULL || pResInfo->length == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
  } else {
    return TSDB_CODE_SUCCESS;
  }
H
Haojun Liao 已提交
671 672
}

673
int32_t setResultDataPtr(SReqResultInfo* pResultInfo, TAOS_FIELD* pFields, int32_t numOfCols, int32_t numOfRows) {
H
Haojun Liao 已提交
674 675
  assert(numOfCols > 0 && pFields != NULL && pResultInfo != NULL);
  if (numOfRows == 0) {
676
    return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
677 678
  }

679 680 681 682
  int32_t code = doPrepareResPtr(pResultInfo);
  if (code != TSDB_CODE_SUCCESS) {
    return code;
  }
H
Haojun Liao 已提交
683

684 685
  int32_t* colLength = (int32_t*)pResultInfo->pData;
  char*    pStart = ((char*)pResultInfo->pData) + sizeof(int32_t) * numOfCols;
H
Haojun Liao 已提交
686
  for (int32_t i = 0; i < numOfCols; ++i) {
687 688 689 690 691 692 693 694 695 696 697
    colLength[i] = htonl(colLength[i]);

    if (IS_VAR_DATA_TYPE(pResultInfo->fields[i].type)) {
      pResultInfo->pCol[i].offset = (int32_t*)pStart;
      pStart += numOfRows * sizeof(int32_t);
    } else {
      pResultInfo->pCol[i].nullbitmap = pStart;
      pStart += BitmapLen(pResultInfo->numOfRows);
    }

    pResultInfo->pCol[i].pData = pStart;
H
Haojun Liao 已提交
698
    pResultInfo->length[i] = pResultInfo->fields[i].bytes;
699 700 701
    pResultInfo->row[i] = pResultInfo->pCol[i].pData;

    pStart += colLength[i];
702
  }
703 704

  return TSDB_CODE_SUCCESS;
S
Shengliang Guan 已提交
705 706
}

H
Haojun Liao 已提交
707
char* getDbOfConnection(STscObj* pObj) {
dengyihao's avatar
dengyihao 已提交
708
  char* p = NULL;
wafwerar's avatar
wafwerar 已提交
709
  taosThreadMutexLock(&pObj->mutex);
710 711 712 713
  size_t len = strlen(pObj->db);
  if (len > 0) {
    p = strndup(pObj->db, tListLen(pObj->db));
  }
S
Shengliang Guan 已提交
714

wafwerar's avatar
wafwerar 已提交
715
  taosThreadMutexUnlock(&pObj->mutex);
716 717 718 719 720
  return p;
}

void setConnectionDB(STscObj* pTscObj, const char* db) {
  assert(db != NULL && pTscObj != NULL);
wafwerar's avatar
wafwerar 已提交
721
  taosThreadMutexLock(&pTscObj->mutex);
722
  tstrncpy(pTscObj->db, db, tListLen(pTscObj->db));
wafwerar's avatar
wafwerar 已提交
723
  taosThreadMutexUnlock(&pTscObj->mutex);
724
}
S
Shengliang Guan 已提交
725

726
int32_t setQueryResultFromRsp(SReqResultInfo* pResultInfo, const SRetrieveTableRsp* pRsp) {
727 728
  assert(pResultInfo != NULL && pRsp != NULL);

729 730 731 732 733 734
  pResultInfo->pRspMsg    = (const char*)pRsp;
  pResultInfo->pData      = (void*)pRsp->data;
  pResultInfo->numOfRows  = htonl(pRsp->numOfRows);
  pResultInfo->current    = 0;
  pResultInfo->completed  = (pRsp->completed == 1);
  pResultInfo->payloadLen = htonl(pRsp->compLen);
H
Haojun Liao 已提交
735

736
  // TODO handle the compressed case
737
  pResultInfo->totalRows += pResultInfo->numOfRows;
738
  return setResultDataPtr(pResultInfo, pResultInfo->fields, pResultInfo->numOfCols, pResultInfo->numOfRows);
L
fix  
Liu Jicong 已提交
739
}