clientEnv.c 15.5 KB
Newer Older
H
Haojun Liao 已提交
1 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
#include "catalog.h"
H
Haojun Liao 已提交
17 18
#include "clientInt.h"
#include "clientLog.h"
dengyihao's avatar
dengyihao 已提交
19 20
#include "functionMgt.h"
#include "os.h"
21
#include "query.h"
X
Xiaoyu Wang 已提交
22
#include "scheduler.h"
H
Haojun Liao 已提交
23 24
#include "tcache.h"
#include "tglobal.h"
dengyihao's avatar
dengyihao 已提交
25
#include "tmsg.h"
H
Haojun Liao 已提交
26 27
#include "tref.h"
#include "trpc.h"
dengyihao's avatar
dengyihao 已提交
28
#include "tsched.h"
H
Haojun Liao 已提交
29 30 31
#include "ttime.h"

#define TSC_VAR_NOT_RELEASE 1
32
#define TSC_VAR_RELEASED    0
H
Haojun Liao 已提交
33

dengyihao's avatar
dengyihao 已提交
34
SAppInfo appInfo;
L
Liu Jicong 已提交
35
int32_t  clientReqRefPool = -1;
dengyihao's avatar
dengyihao 已提交
36
int32_t  clientConnRefPool = -1;
H
Haojun Liao 已提交
37

dengyihao's avatar
dengyihao 已提交
38 39
void *tscQhandle = NULL;

L
Liu Jicong 已提交
40 41
static TdThreadOnce tscinit = PTHREAD_ONCE_INIT;
volatile int32_t    tscInitRes = 0;
H
Haojun Liao 已提交
42

dengyihao's avatar
dengyihao 已提交
43 44 45 46 47 48 49 50 51
void initTscQhandle() {
  // init handle
  tscQhandle = taosInitScheduler(4096, 5, "tsc");
}

void cleanupTscQhandle() {
  // destroy handle
  taosCleanUpScheduler(tscQhandle);
}
H
Haojun Liao 已提交
52

53
static int32_t registerRequest(SRequestObj *pRequest, STscObj* pTscObj) {
H
Haojun Liao 已提交
54
  // connection has been released already, abort creating request.
H
Haojun Liao 已提交
55
  pRequest->self = taosAddRef(clientReqRefPool, pRequest);
H
Haojun Liao 已提交
56 57 58 59

  int32_t num = atomic_add_fetch_32(&pTscObj->numOfReqs, 1);

  if (pTscObj->pAppInfo) {
D
dapan1121 已提交
60
    SAppClusterSummary *pSummary = &pTscObj->pAppInfo->summary;
H
Haojun Liao 已提交
61

L
Liu Jicong 已提交
62 63
    int32_t total = atomic_add_fetch_64((int64_t *)&pSummary->totalRequests, 1);
    int32_t currentInst = atomic_add_fetch_64((int64_t *)&pSummary->currentRequests, 1);
dengyihao's avatar
dengyihao 已提交
64 65
    tscDebug("0x%" PRIx64 " new Request from connObj:0x%" PRIx64
             ", current:%d, app current:%d, total:%d, reqId:0x%" PRIx64,
D
dapan1121 已提交
66
             pRequest->self, pRequest->pTscObj->id, num, currentInst, total, pRequest->requestId);
H
Haojun Liao 已提交
67
  }
D
dapan1121 已提交
68 69

  return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
70 71
}

dengyihao's avatar
dengyihao 已提交
72
static void deregisterRequest(SRequestObj *pRequest) {
H
Haojun Liao 已提交
73 74
  assert(pRequest != NULL);

dengyihao's avatar
dengyihao 已提交
75
  STscObj *           pTscObj = pRequest->pTscObj;
D
dapan1121 已提交
76
  SAppClusterSummary *pActivity = &pTscObj->pAppInfo->summary;
H
Haojun Liao 已提交
77

L
Liu Jicong 已提交
78
  int32_t currentInst = atomic_sub_fetch_64((int64_t *)&pActivity->currentRequests, 1);
H
Haojun Liao 已提交
79 80
  int32_t num = atomic_sub_fetch_32(&pTscObj->numOfReqs, 1);

D
dapan1121 已提交
81
  int64_t duration = taosGetTimestampUs() - pRequest->metric.start;
dengyihao's avatar
dengyihao 已提交
82 83
  tscDebug("0x%" PRIx64 " free Request from connObj: 0x%" PRIx64 ", reqId:0x%" PRIx64 " elapsed:%" PRIu64
           " ms, current:%d, app current:%d",
D
dapan1121 已提交
84 85
           pRequest->self, pTscObj->id, pRequest->requestId, duration / 1000, num, currentInst);
  releaseTscObj(pTscObj->id);
H
Haojun Liao 已提交
86 87
}

88
// todo close the transporter properly
D
dapan1121 已提交
89 90
void closeTransporter(SAppInstInfo *pAppInfo) {
  if (pAppInfo == NULL || pAppInfo->pTransporter == NULL) {
H
Haojun Liao 已提交
91 92 93
    return;
  }

D
dapan1121 已提交
94 95
  tscDebug("free transporter:%p in app inst %p", pAppInfo->pTransporter, pAppInfo);
  rpcClose(pAppInfo->pTransporter);
H
Haojun Liao 已提交
96 97
}

dengyihao's avatar
dengyihao 已提交
98
static bool clientRpcRfp(int32_t code, tmsg_t msgType) {
D
dapan1121 已提交
99
  if (NEED_REDIRECT_ERROR(code)) {
D
dapan1121 已提交
100
    if (msgType == TDMT_SCH_QUERY || msgType == TDMT_SCH_MERGE_QUERY || msgType == TDMT_SCH_FETCH || msgType == TDMT_SCH_MERGE_FETCH) {
dengyihao's avatar
dengyihao 已提交
101 102
      return false;
    }
D
dapan1121 已提交
103 104 105 106 107 108
    return true;
  } else {
    return false;
  }
}

H
Haojun Liao 已提交
109
// TODO refactor
dengyihao's avatar
dengyihao 已提交
110
void *openTransporter(const char *user, const char *auth, int32_t numOfThread) {
H
Haojun Liao 已提交
111 112 113 114 115 116
  SRpcInit rpcInit;
  memset(&rpcInit, 0, sizeof(rpcInit));
  rpcInit.localPort = 0;
  rpcInit.label = "TSC";
  rpcInit.numOfThreads = numOfThread;
  rpcInit.cfp = processMsgFromServer;
D
dapan1121 已提交
117
  rpcInit.rfp = clientRpcRfp;
S
Shengliang Guan 已提交
118
  rpcInit.sessions = 1024;
H
Haojun Liao 已提交
119 120
  rpcInit.connType = TAOS_CONN_CLIENT;
  rpcInit.user = (char *)user;
S
Shengliang Guan 已提交
121
  rpcInit.idleTime = tsShellActivityTimer * 1000;
dengyihao's avatar
dengyihao 已提交
122
  void *pDnodeConn = rpcOpen(&rpcInit);
H
Haojun Liao 已提交
123 124 125 126 127 128 129 130
  if (pDnodeConn == NULL) {
    tscError("failed to init connection to server");
    return NULL;
  }

  return pDnodeConn;
}

D
dapan1121 已提交
131
void destroyAllRequests(SHashObj *pRequests) {
L
Liu Jicong 已提交
132
  void *pIter = taosHashIterate(pRequests, NULL);
D
dapan1121 已提交
133 134 135
  while (pIter != NULL) {
    int64_t *rid = pIter;

D
dapan1121 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
    SRequestObj *pRequest = acquireRequest(*rid);
    if (pRequest) {
      destroyRequest(pRequest);
      releaseRequest(*rid);
    }

    pIter = taosHashIterate(pRequests, pIter);
  }
}

void stopAllRequests(SHashObj *pRequests) {
  void *pIter = taosHashIterate(pRequests, NULL);
  while (pIter != NULL) {
    int64_t *rid = pIter;

    SRequestObj *pRequest = acquireRequest(*rid);
    if (pRequest) {
      taos_stop_query(pRequest);
      releaseRequest(*rid);
    }
L
Liu Jicong 已提交
156

D
dapan1121 已提交
157 158 159 160
    pIter = taosHashIterate(pRequests, pIter);
  }
}

dengyihao's avatar
dengyihao 已提交
161
void destroyAppInst(SAppInstInfo *pAppInfo) {
D
dapan1121 已提交
162
  tscDebug("destroy app inst mgr %p", pAppInfo);
D
dapan1121 已提交
163 164

  taosThreadMutexLock(&appInfo.mutex);
dengyihao's avatar
dengyihao 已提交
165

D
dapan1121 已提交
166 167
  hbRemoveAppHbMrg(&pAppInfo->pAppHbMgr);
  taosHashRemove(appInfo.pInstMap, pAppInfo->instKey, strlen(pAppInfo->instKey));
D
dapan1121 已提交
168 169 170

  taosThreadMutexUnlock(&appInfo.mutex);

D
dapan1121 已提交
171 172
  taosMemoryFreeClear(pAppInfo->instKey);
  closeTransporter(pAppInfo);
dengyihao's avatar
dengyihao 已提交
173

D
dapan1121 已提交
174 175
  taosThreadMutexLock(&pAppInfo->qnodeMutex);
  taosArrayDestroy(pAppInfo->pQnodeList);
dengyihao's avatar
dengyihao 已提交
176
  taosThreadMutexUnlock(&pAppInfo->qnodeMutex);
D
dapan1121 已提交
177 178 179 180

  taosMemoryFree(pAppInfo);
}

H
Haojun Liao 已提交
181
void destroyTscObj(void *pObj) {
D
dapan1121 已提交
182 183 184
  if (NULL == pObj) {
    return;
  }
dengyihao's avatar
dengyihao 已提交
185

H
Haojun Liao 已提交
186
  STscObj *pTscObj = pObj;
dengyihao's avatar
dengyihao 已提交
187
  int64_t  tscId = pTscObj->id;
D
dapan1121 已提交
188
  tscTrace("begin to destroy tscObj %" PRIx64 " p:%p", tscId, pTscObj);
H
Haojun Liao 已提交
189

D
dapan1121 已提交
190
  SClientHbKey connKey = {.tscRid = pTscObj->id, .connType = pTscObj->connType};
191
  hbDeregisterConn(pTscObj->pAppInfo->pAppHbMgr, connKey);
192

D
dapan1121 已提交
193
  destroyAllRequests(pTscObj->pRequests);
194 195
  taosHashCleanup(pTscObj->pRequests);
  
D
dapan1121 已提交
196
  schedulerStopQueryHb(pTscObj->pAppInfo->pTransporter);
dengyihao's avatar
dengyihao 已提交
197
  tscDebug("connObj 0x%" PRIx64 " p:%p destroyed, remain inst totalConn:%" PRId64, pTscObj->id, pTscObj,
D
dapan1121 已提交
198 199
           pTscObj->pAppInfo->numOfConns);

200
  int64_t connNum = atomic_sub_fetch_64(&pTscObj->pAppInfo->numOfConns, 1);
D
dapan1121 已提交
201
  if (0 == connNum) {
D
dapan1121 已提交
202
    destroyAppInst(pTscObj->pAppInfo);
D
dapan1121 已提交
203
  }
wafwerar's avatar
wafwerar 已提交
204
  taosThreadMutexDestroy(&pTscObj->mutex);
D
dapan1121 已提交
205
  taosMemoryFree(pTscObj);
D
dapan1121 已提交
206

D
dapan1121 已提交
207
  tscTrace("end to destroy tscObj %" PRIx64 " p:%p", tscId, pTscObj);
H
Haojun Liao 已提交
208 209
}

210
void *createTscObj(const char *user, const char *auth, const char *db, int32_t connType, SAppInstInfo *pAppInfo) {
wafwerar's avatar
wafwerar 已提交
211
  STscObj *pObj = (STscObj *)taosMemoryCalloc(1, sizeof(STscObj));
H
Haojun Liao 已提交
212 213 214 215 216
  if (NULL == pObj) {
    terrno = TSDB_CODE_TSC_OUT_OF_MEMORY;
    return NULL;
  }

D
dapan1121 已提交
217 218 219 220 221 222
  pObj->pRequests = taosHashInit(64, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), false, HASH_ENTRY_LOCK);
  if (NULL == pObj->pRequests) {
    taosMemoryFree(pObj);
    terrno = TSDB_CODE_TSC_OUT_OF_MEMORY;
    return NULL;
  }
L
Liu Jicong 已提交
223

224
  pObj->connType = connType;
H
Haojun Liao 已提交
225 226 227 228
  pObj->pAppInfo = pAppInfo;
  tstrncpy(pObj->user, user, sizeof(pObj->user));
  memcpy(pObj->pass, auth, TSDB_PASSWORD_LEN);

229 230 231 232
  if (db != NULL) {
    tstrncpy(pObj->db, db, tListLen(pObj->db));
  }

wafwerar's avatar
wafwerar 已提交
233
  taosThreadMutexInit(&pObj->mutex, NULL);
D
dapan1121 已提交
234
  pObj->id = taosAddRef(clientConnRefPool, pObj);
235
  pObj->schemalessType = 1;
H
Haojun Liao 已提交
236

D
dapan1121 已提交
237 238
  atomic_add_fetch_64(&pObj->pAppInfo->numOfConns, 1);

D
dapan1121 已提交
239
  tscDebug("connObj created, 0x%" PRIx64 ",p:%p", pObj->id, pObj);
H
Haojun Liao 已提交
240 241 242
  return pObj;
}

L
Liu Jicong 已提交
243
STscObj *acquireTscObj(int64_t rid) { return (STscObj *)taosAcquireRef(clientConnRefPool, rid); }
D
dapan1121 已提交
244

L
Liu Jicong 已提交
245
int32_t releaseTscObj(int64_t rid) { return taosReleaseRef(clientConnRefPool, rid); }
D
dapan1121 已提交
246

247
void *createRequest(uint64_t connId, int32_t type) {
wafwerar's avatar
wafwerar 已提交
248
  SRequestObj *pRequest = (SRequestObj *)taosMemoryCalloc(1, sizeof(SRequestObj));
H
Haojun Liao 已提交
249 250 251 252 253
  if (NULL == pRequest) {
    terrno = TSDB_CODE_TSC_OUT_OF_MEMORY;
    return NULL;
  }

254 255 256 257 258 259
  STscObj* pTscObj = acquireTscObj(connId);
  if (pTscObj == NULL) {
    terrno = TSDB_CODE_TSC_DISCONNECTED;
    return NULL;
  }

L
Liu Jicong 已提交
260
  pRequest->resType = RES_TYPE__QUERY;
dengyihao's avatar
dengyihao 已提交
261
  pRequest->requestId = generateRequestId();
D
dapan1121 已提交
262
  pRequest->metric.start = taosGetTimestampUs();
H
Haojun Liao 已提交
263

264
  pRequest->body.resInfo.convertUcs4 = true;  // convert ucs4 by default
dengyihao's avatar
dengyihao 已提交
265
  pRequest->type = type;
266 267 268 269

  pRequest->pDb = getDbOfConnection(pTscObj);
  pRequest->pTscObj = pTscObj;

wafwerar's avatar
wafwerar 已提交
270
  pRequest->msgBuf = taosMemoryCalloc(1, ERROR_MSG_BUF_DEFAULT_SIZE);
D
stmt  
dapan1121 已提交
271
  pRequest->msgBufLen = ERROR_MSG_BUF_DEFAULT_SIZE;
H
Haojun Liao 已提交
272 273
  tsem_init(&pRequest->body.rspSem, 0, 0);

274
  if (registerRequest(pRequest, pTscObj)) {
D
dapan1121 已提交
275 276 277
    doDestroyRequest(pRequest);
    return NULL;
  }
L
Liu Jicong 已提交
278

H
Haojun Liao 已提交
279 280 281
  return pRequest;
}

L
Liu Jicong 已提交
282
void doFreeReqResultInfo(SReqResultInfo *pResInfo) {
wafwerar's avatar
wafwerar 已提交
283 284 285 286 287
  taosMemoryFreeClear(pResInfo->pRspMsg);
  taosMemoryFreeClear(pResInfo->length);
  taosMemoryFreeClear(pResInfo->row);
  taosMemoryFreeClear(pResInfo->pCol);
  taosMemoryFreeClear(pResInfo->fields);
288
  taosMemoryFreeClear(pResInfo->userFields);
wmmhello's avatar
wmmhello 已提交
289
  taosMemoryFreeClear(pResInfo->convertJson);
290 291 292

  if (pResInfo->convertBuf != NULL) {
    for (int32_t i = 0; i < pResInfo->numOfCols; ++i) {
wafwerar's avatar
wafwerar 已提交
293
      taosMemoryFreeClear(pResInfo->convertBuf[i]);
294
    }
wafwerar's avatar
wafwerar 已提交
295
    taosMemoryFreeClear(pResInfo->convertBuf);
296
  }
H
Haojun Liao 已提交
297 298
}

D
dapan1121 已提交
299 300 301 302 303 304
SRequestObj *acquireRequest(int64_t rid) { return (SRequestObj *)taosAcquireRef(clientReqRefPool, rid); }

int32_t releaseRequest(int64_t rid) { return taosReleaseRef(clientReqRefPool, rid); }

int32_t removeRequest(int64_t rid) { return taosRemoveRef(clientReqRefPool, rid); }

D
dapan1121 已提交
305
void doDestroyRequest(void *p) {
D
dapan1121 已提交
306 307 308
  if (NULL == p) {
    return;
  }
dengyihao's avatar
dengyihao 已提交
309

dengyihao's avatar
dengyihao 已提交
310
  SRequestObj *pRequest = (SRequestObj *)p;
dengyihao's avatar
dengyihao 已提交
311

D
dapan1121 已提交
312
  int64_t reqId = pRequest->self;
D
dapan1121 已提交
313
  tscTrace("begin to destroy request %" PRIx64 " p:%p", reqId, pRequest);
dengyihao's avatar
dengyihao 已提交
314

D
dapan1121 已提交
315
  taosHashRemove(pRequest->pTscObj->pRequests, &pRequest->self, sizeof(pRequest->self));
L
Liu Jicong 已提交
316

D
dapan1121 已提交
317
  schedulerFreeJob(&pRequest->body.queryJob, 0);
D
dapan1121 已提交
318

wafwerar's avatar
wafwerar 已提交
319 320 321
  taosMemoryFreeClear(pRequest->msgBuf);
  taosMemoryFreeClear(pRequest->sqlstr);
  taosMemoryFreeClear(pRequest->pDb);
H
Haojun Liao 已提交
322

H
Haojun Liao 已提交
323
  doFreeReqResultInfo(&pRequest->body.resInfo);
H
Haojun Liao 已提交
324

X
Xiaoyu Wang 已提交
325 326 327
  taosArrayDestroy(pRequest->tableList);
  taosArrayDestroy(pRequest->dbList);

D
dapan1121 已提交
328
  destroyQueryExecRes(&pRequest->body.resInfo.execRes);
D
dapan1121 已提交
329

D
dapan1121 已提交
330 331 332
  if (pRequest->self) {
    deregisterRequest(pRequest);
  }
D
dapan1121 已提交
333

334
  taosMemoryFree(pRequest);
D
dapan1121 已提交
335
  tscTrace("end to destroy request %" PRIx64 " p:%p", reqId, pRequest);
H
Haojun Liao 已提交
336 337
}

dengyihao's avatar
dengyihao 已提交
338
void destroyRequest(SRequestObj *pRequest) {
H
Haojun Liao 已提交
339 340 341 342
  if (pRequest == NULL) {
    return;
  }

D
dapan1121 已提交
343
  taos_stop_query(pRequest);
D
dapan1121 已提交
344
  removeRequest(pRequest->self);
H
Haojun Liao 已提交
345 346 347 348 349 350
}

void taos_init_imp(void) {
  // In the APIs of other program language, taos_cleanup is not available yet.
  // So, to make sure taos_cleanup will be invoked to clean up the allocated resource to suppress the valgrind warning.
  atexit(taos_cleanup);
dengyihao's avatar
dengyihao 已提交
351
  initTscQhandle();
H
Haojun Liao 已提交
352
  errno = TSDB_CODE_SUCCESS;
wafwerar's avatar
wafwerar 已提交
353
  taosSeedRand(taosGetTimestampSec());
H
Haojun Liao 已提交
354 355

  deltaToUtcInitOnce();
S
Shengliang Guan 已提交
356

wafwerar's avatar
wafwerar 已提交
357
  if (taosCreateLog("taoslog", 10, configDir, NULL, NULL, NULL, NULL, 1) != 0) {
S
Shengliang Guan 已提交
358 359 360 361
    tscInitRes = -1;
    return;
  }

wafwerar's avatar
wafwerar 已提交
362
  if (taosInitCfg(configDir, NULL, NULL, NULL, NULL, 1) != 0) {
S
Shengliang Guan 已提交
363 364 365 366
    tscInitRes = -1;
    return;
  }

367
  initQueryModuleMsgHandle();
H
Haojun Liao 已提交
368

S
Shengliang Guan 已提交
369
  rpcInit();
H
Haojun Liao 已提交
370

D
dapan1121 已提交
371
  SCatalogCfg cfg = {.maxDBCacheNum = 100, .maxTblCacheNum = 100};
372 373
  catalogInit(&cfg);

X
Xiaoyu Wang 已提交
374 375
  SSchedulerCfg scfg = {.maxJobNum = 100};
  schedulerInit(&scfg);
S
Shengliang Guan 已提交
376
  tscDebug("starting to initialize TAOS driver");
H
Haojun Liao 已提交
377 378 379 380

  taosSetCoreDump(true);

  initTaskQueue();
381
  fmFuncMgtInit();
H
Haojun Liao 已提交
382

383
  clientConnRefPool = taosOpenRef(200, destroyTscObj);
dengyihao's avatar
dengyihao 已提交
384
  clientReqRefPool = taosOpenRef(40960, doDestroyRequest);
H
Haojun Liao 已提交
385

dengyihao's avatar
dengyihao 已提交
386
  // transDestroyBuffer(&conn->readBuf);
H
Haojun Liao 已提交
387
  taosGetAppName(appInfo.appName, NULL);
wafwerar's avatar
wafwerar 已提交
388
  taosThreadMutexInit(&appInfo.mutex, NULL);
H
Haojun Liao 已提交
389

dengyihao's avatar
dengyihao 已提交
390
  appInfo.pid = taosGetPId();
H
Haojun Liao 已提交
391
  appInfo.startTime = taosGetTimestampMs();
dengyihao's avatar
dengyihao 已提交
392
  appInfo.pInstMap = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_ENTRY_LOCK);
H
Haojun Liao 已提交
393 394 395 396
  tscDebug("client is initialized successfully");
}

int taos_init() {
wafwerar's avatar
wafwerar 已提交
397
  taosThreadOnce(&tscinit, taos_init_imp);
H
Haojun Liao 已提交
398 399 400 401
  return tscInitRes;
}

int taos_options_imp(TSDB_OPTION option, const char *str) {
S
Shengliang Guan 已提交
402 403 404 405 406 407 408 409
  if (option != TSDB_OPTION_CONFIGDIR) {
    taos_init();  // initialize global config
  } else {
    tstrncpy(configDir, str, PATH_MAX);
    tscInfo("set cfg:%s to %s", configDir, str);
    return 0;
  }

dengyihao's avatar
dengyihao 已提交
410
  SConfig *    pCfg = taosGetCfg();
S
Shengliang Guan 已提交
411
  SConfigItem *pItem = NULL;
H
Haojun Liao 已提交
412 413 414

  switch (option) {
    case TSDB_OPTION_CONFIGDIR:
S
Shengliang Guan 已提交
415
      pItem = cfgGetItem(pCfg, "configDir");
H
Haojun Liao 已提交
416 417
      break;
    case TSDB_OPTION_SHELL_ACTIVITY_TIMER:
S
Shengliang Guan 已提交
418
      pItem = cfgGetItem(pCfg, "shellActivityTimer");
H
Haojun Liao 已提交
419
      break;
S
Shengliang Guan 已提交
420 421
    case TSDB_OPTION_LOCALE:
      pItem = cfgGetItem(pCfg, "locale");
H
Haojun Liao 已提交
422
      break;
S
Shengliang Guan 已提交
423 424
    case TSDB_OPTION_CHARSET:
      pItem = cfgGetItem(pCfg, "charset");
H
Haojun Liao 已提交
425 426
      break;
    case TSDB_OPTION_TIMEZONE:
S
Shengliang Guan 已提交
427
      pItem = cfgGetItem(pCfg, "timezone");
H
Haojun Liao 已提交
428 429
      break;
    default:
S
Shengliang Guan 已提交
430 431 432 433 434 435 436 437 438 439 440 441 442
      break;
  }

  if (pItem == NULL) {
    tscError("Invalid option %d", option);
    return -1;
  }

  int code = cfgSetItem(pCfg, pItem->name, str, CFG_STYPE_TAOS_OPTIONS);
  if (code != 0) {
    tscError("failed to set cfg:%s to %s since %s", pItem->name, str, terrstr());
  } else {
    tscInfo("set cfg:%s to %s", pItem->name, str);
H
Haojun Liao 已提交
443
  }
S
Shengliang Guan 已提交
444 445

  return code;
H
Haojun Liao 已提交
446 447
}

448 449 450 451 452
/**
 * The request id is an unsigned integer format of 64bit.
 *+------------+-----+-----------+---------------+
 *| uid|localIp| PId | timestamp | serial number |
 *+------------+-----+-----------+---------------+
453
 *| 12bit      |12bit|24bit      |16bit          |
454 455 456 457
 *+------------+-----+-----------+---------------+
 * @return
 */
uint64_t generateRequestId() {
H
Haojun Liao 已提交
458
  static uint64_t hashId = 0;
dengyihao's avatar
dengyihao 已提交
459
  static int32_t  requestSerialId = 0;
H
Haojun Liao 已提交
460 461 462 463 464 465 466 467 468 469 470

  if (hashId == 0) {
    char    uid[64] = {0};
    int32_t code = taosGetSystemUUID(uid, tListLen(uid));
    if (code != TSDB_CODE_SUCCESS) {
      tscError("Failed to get the system uid to generated request id, reason:%s. use ip address instead",
               tstrerror(TAOS_SYSTEM_ERROR(errno)));

    } else {
      hashId = MurmurHash3_32(uid, strlen(uid));
    }
471 472
  }

D
dapan1121 已提交
473
  uint64_t id = 0;
L
Liu Jicong 已提交
474

D
dapan1121 已提交
475 476 477 478
  while (true) {
    int64_t  ts = taosGetTimestampMs();
    uint64_t pid = taosGetPId();
    int32_t  val = atomic_add_fetch_32(&requestSerialId, 1);
479

D
dapan1121 已提交
480 481 482 483 484
    id = ((hashId & 0x0FFF) << 52) | ((pid & 0x0FFF) << 40) | ((ts & 0xFFFFFF) << 16) | (val & 0xFFFF);
    if (id) {
      break;
    }
  }
485 486 487
  return id;
}

H
Haojun Liao 已提交
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
#if 0
#include "cJSON.h"
static setConfRet taos_set_config_imp(const char *config){
  setConfRet ret = {SET_CONF_RET_SUCC, {0}};
  static bool setConfFlag = false;
  if (setConfFlag) {
    ret.retCode = SET_CONF_RET_ERR_ONLY_ONCE;
    strcpy(ret.retMsg, "configuration can only set once");
    return ret;
  }
  taosInitGlobalCfg();
  cJSON *root = cJSON_Parse(config);
  if (root == NULL){
    ret.retCode = SET_CONF_RET_ERR_JSON_PARSE;
    strcpy(ret.retMsg, "parse json error");
    return ret;
  }

  int size = cJSON_GetArraySize(root);
  if(!cJSON_IsObject(root) || size == 0) {
    ret.retCode = SET_CONF_RET_ERR_JSON_INVALID;
    strcpy(ret.retMsg, "json content is invalid, must be not empty object");
    return ret;
  }

  if(size >= 1000) {
    ret.retCode = SET_CONF_RET_ERR_TOO_LONG;
    strcpy(ret.retMsg, "json object size is too long");
    return ret;
  }

  for(int i = 0; i < size; i++){
    cJSON *item = cJSON_GetArrayItem(root, i);
    if(!item) {
      ret.retCode = SET_CONF_RET_ERR_INNER;
      strcpy(ret.retMsg, "inner error");
      return ret;
    }
    if(!taosReadConfigOption(item->string, item->valuestring, NULL, NULL, TAOS_CFG_CSTATUS_OPTION, TSDB_CFG_CTYPE_B_CLIENT)){
      ret.retCode = SET_CONF_RET_ERR_PART;
      if (strlen(ret.retMsg) == 0){
        snprintf(ret.retMsg, RET_MSG_LENGTH, "part error|%s", item->string);
      }else{
        int tmp = RET_MSG_LENGTH - 1 - (int)strlen(ret.retMsg);
        size_t leftSize = tmp >= 0 ? tmp : 0;
        strncat(ret.retMsg, "|",  leftSize);
        tmp = RET_MSG_LENGTH - 1 - (int)strlen(ret.retMsg);
        leftSize = tmp >= 0 ? tmp : 0;
        strncat(ret.retMsg, item->string, leftSize);
      }
    }
  }
  cJSON_Delete(root);
  setConfFlag = true;
  return ret;
}

setConfRet taos_set_config(const char *config){
wafwerar's avatar
wafwerar 已提交
546
  taosThreadMutexLock(&setConfMutex);
H
Haojun Liao 已提交
547
  setConfRet ret = taos_set_config_imp(config);
wafwerar's avatar
wafwerar 已提交
548
  taosThreadMutexUnlock(&setConfMutex);
H
Haojun Liao 已提交
549 550
  return ret;
}
551
#endif