clientEnv.c 16.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
#include "os.h"
20
#include "query.h"
X
Xiaoyu Wang 已提交
21
#include "scheduler.h"
H
Haojun Liao 已提交
22 23
#include "tcache.h"
#include "tglobal.h"
dengyihao's avatar
dengyihao 已提交
24
#include "tmsg.h"
H
Haojun Liao 已提交
25 26 27 28 29
#include "tref.h"
#include "trpc.h"
#include "ttime.h"

#define TSC_VAR_NOT_RELEASE 1
dengyihao's avatar
dengyihao 已提交
30
#define TSC_VAR_RELEASED 0
H
Haojun Liao 已提交
31

dengyihao's avatar
dengyihao 已提交
32 33 34
SAppInfo appInfo;
int32_t  clientReqRefPool = -1;
int32_t  clientConnRefPool = -1;
H
Haojun Liao 已提交
35

wafwerar's avatar
wafwerar 已提交
36
static TdThreadOnce tscinit = PTHREAD_ONCE_INIT;
dengyihao's avatar
dengyihao 已提交
37
volatile int32_t      tscInitRes = 0;
H
Haojun Liao 已提交
38

dengyihao's avatar
dengyihao 已提交
39
static void registerRequest(SRequestObj *pRequest) {
40
  STscObj *pTscObj = (STscObj *)taosAcquireRef(clientConnRefPool, pRequest->pTscObj->id);
H
Haojun Liao 已提交
41 42 43
  assert(pTscObj != NULL);

  // connection has been released already, abort creating request.
H
Haojun Liao 已提交
44
  pRequest->self = taosAddRef(clientReqRefPool, pRequest);
H
Haojun Liao 已提交
45 46 47 48

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

  if (pTscObj->pAppInfo) {
49
    SInstanceSummary *pSummary = &pTscObj->pAppInfo->summary;
H
Haojun Liao 已提交
50

wafwerar's avatar
wafwerar 已提交
51 52
    int32_t total = atomic_add_fetch_64(&pSummary->totalRequests, 1);
    int32_t currentInst = atomic_add_fetch_64(&pSummary->currentRequests, 1);
dengyihao's avatar
dengyihao 已提交
53 54 55
    tscDebug("0x%" PRIx64 " new Request from connObj:0x%" PRIx64
             ", current:%d, app current:%d, total:%d, reqId:0x%" PRIx64,
             pRequest->self, pRequest->pTscObj->id, num, currentInst, total, pRequest->requestId);
H
Haojun Liao 已提交
56 57 58
  }
}

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

dengyihao's avatar
dengyihao 已提交
62 63
  STscObj *         pTscObj = pRequest->pTscObj;
  SInstanceSummary *pActivity = &pTscObj->pAppInfo->summary;
H
Haojun Liao 已提交
64

wafwerar's avatar
wafwerar 已提交
65
  int32_t currentInst = atomic_sub_fetch_64(&pActivity->currentRequests, 1);
H
Haojun Liao 已提交
66 67
  int32_t num = atomic_sub_fetch_32(&pTscObj->numOfReqs, 1);

H
Haojun Liao 已提交
68
  int64_t duration = taosGetTimestampMs() - pRequest->metric.start;
dengyihao's avatar
dengyihao 已提交
69 70 71
  tscDebug("0x%" PRIx64 " free Request from connObj: 0x%" PRIx64 ", reqId:0x%" PRIx64 " elapsed:%" PRIu64
           " ms, current:%d, app current:%d",
           pRequest->self, pTscObj->id, pRequest->requestId, duration, num, currentInst);
72
  taosReleaseRef(clientConnRefPool, pTscObj->id);
H
Haojun Liao 已提交
73 74
}

75
// todo close the transporter properly
dengyihao's avatar
dengyihao 已提交
76
void closeTransporter(STscObj *pTscObj) {
H
Haojun Liao 已提交
77
  if (pTscObj == NULL || pTscObj->pAppInfo->pTransporter == NULL) {
H
Haojun Liao 已提交
78 79 80
    return;
  }

dengyihao's avatar
dengyihao 已提交
81
  tscDebug("free transporter:%p in connObj: 0x%" PRIx64, pTscObj->pAppInfo->pTransporter, pTscObj->id);
H
Haojun Liao 已提交
82
  rpcClose(pTscObj->pAppInfo->pTransporter);
H
Haojun Liao 已提交
83 84 85
}

// TODO refactor
dengyihao's avatar
dengyihao 已提交
86
void *openTransporter(const char *user, const char *auth, int32_t numOfThread) {
H
Haojun Liao 已提交
87 88 89 90 91 92
  SRpcInit rpcInit;
  memset(&rpcInit, 0, sizeof(rpcInit));
  rpcInit.localPort = 0;
  rpcInit.label = "TSC";
  rpcInit.numOfThreads = numOfThread;
  rpcInit.cfp = processMsgFromServer;
S
Shengliang Guan 已提交
93
  rpcInit.sessions = tsMaxConnections;
H
Haojun Liao 已提交
94 95
  rpcInit.connType = TAOS_CONN_CLIENT;
  rpcInit.user = (char *)user;
S
Shengliang Guan 已提交
96
  rpcInit.idleTime = tsShellActivityTimer * 1000;
H
Haojun Liao 已提交
97
  rpcInit.ckey = "key";
S
Shengliang Guan 已提交
98
  rpcInit.spi = 1;
H
Haojun Liao 已提交
99 100
  rpcInit.secret = (char *)auth;

dengyihao's avatar
dengyihao 已提交
101
  void *pDnodeConn = rpcOpen(&rpcInit);
H
Haojun Liao 已提交
102 103 104 105 106 107 108 109 110 111 112
  if (pDnodeConn == NULL) {
    tscError("failed to init connection to server");
    return NULL;
  }

  return pDnodeConn;
}

void destroyTscObj(void *pObj) {
  STscObj *pTscObj = pObj;

113 114
  SClientHbKey connKey = {.connId = pTscObj->connId, .hbType = pTscObj->connType};
  hbDeregisterConn(pTscObj->pAppInfo->pAppHbMgr, connKey);
H
Haojun Liao 已提交
115
  atomic_sub_fetch_64(&pTscObj->pAppInfo->numOfConns, 1);
dengyihao's avatar
dengyihao 已提交
116
  tscDebug("connObj 0x%" PRIx64 " destroyed, totalConn:%" PRId64, pTscObj->id, pTscObj->pAppInfo->numOfConns);
wafwerar's avatar
wafwerar 已提交
117
  taosThreadMutexDestroy(&pTscObj->mutex);
wafwerar's avatar
wafwerar 已提交
118
  taosMemoryFreeClear(pTscObj);
H
Haojun Liao 已提交
119 120
}

dengyihao's avatar
dengyihao 已提交
121
void *createTscObj(const char *user, const char *auth, const char *db, SAppInstInfo *pAppInfo) {
wafwerar's avatar
wafwerar 已提交
122
  STscObj *pObj = (STscObj *)taosMemoryCalloc(1, sizeof(STscObj));
H
Haojun Liao 已提交
123 124 125 126 127 128 129 130 131
  if (NULL == pObj) {
    terrno = TSDB_CODE_TSC_OUT_OF_MEMORY;
    return NULL;
  }

  pObj->pAppInfo = pAppInfo;
  tstrncpy(pObj->user, user, sizeof(pObj->user));
  memcpy(pObj->pass, auth, TSDB_PASSWORD_LEN);

132 133 134 135
  if (db != NULL) {
    tstrncpy(pObj->db, db, tListLen(pObj->db));
  }

wafwerar's avatar
wafwerar 已提交
136
  taosThreadMutexInit(&pObj->mutex, NULL);
137
  pObj->id = taosAddRef(clientConnRefPool, pObj);
H
Haojun Liao 已提交
138

dengyihao's avatar
dengyihao 已提交
139
  tscDebug("connObj created, 0x%" PRIx64, pObj->id);
H
Haojun Liao 已提交
140 141 142
  return pObj;
}

dengyihao's avatar
dengyihao 已提交
143
void *createRequest(STscObj *pObj, __taos_async_fn_t fp, void *param, int32_t type) {
H
Haojun Liao 已提交
144 145
  assert(pObj != NULL);

wafwerar's avatar
wafwerar 已提交
146
  SRequestObj *pRequest = (SRequestObj *)taosMemoryCalloc(1, sizeof(SRequestObj));
H
Haojun Liao 已提交
147 148 149 150 151
  if (NULL == pRequest) {
    terrno = TSDB_CODE_TSC_OUT_OF_MEMORY;
    return NULL;
  }

X
Xiaoyu Wang 已提交
152
  pRequest->pDb = getDbOfConnection(pObj);
dengyihao's avatar
dengyihao 已提交
153
  pRequest->requestId = generateRequestId();
H
Haojun Liao 已提交
154 155
  pRequest->metric.start = taosGetTimestampMs();

dengyihao's avatar
dengyihao 已提交
156 157 158
  pRequest->type = type;
  pRequest->pTscObj = pObj;
  pRequest->body.fp = fp;  // not used it yet
wafwerar's avatar
wafwerar 已提交
159
  pRequest->msgBuf = taosMemoryCalloc(1, ERROR_MSG_BUF_DEFAULT_SIZE);
H
Haojun Liao 已提交
160 161 162 163 164 165
  tsem_init(&pRequest->body.rspSem, 0, 0);

  registerRequest(pRequest);
  return pRequest;
}

dengyihao's avatar
dengyihao 已提交
166
static void doFreeReqResultInfo(SReqResultInfo *pResInfo) {
wafwerar's avatar
wafwerar 已提交
167 168 169 170 171
  taosMemoryFreeClear(pResInfo->pRspMsg);
  taosMemoryFreeClear(pResInfo->length);
  taosMemoryFreeClear(pResInfo->row);
  taosMemoryFreeClear(pResInfo->pCol);
  taosMemoryFreeClear(pResInfo->fields);
172
  taosMemoryFreeClear(pResInfo->userFields);
173 174 175

  if (pResInfo->convertBuf != NULL) {
    for (int32_t i = 0; i < pResInfo->numOfCols; ++i) {
wafwerar's avatar
wafwerar 已提交
176
      taosMemoryFreeClear(pResInfo->convertBuf[i]);
177
    }
wafwerar's avatar
wafwerar 已提交
178
    taosMemoryFreeClear(pResInfo->convertBuf);
179
  }
H
Haojun Liao 已提交
180 181
}

dengyihao's avatar
dengyihao 已提交
182
static void doDestroyRequest(void *p) {
H
Haojun Liao 已提交
183
  assert(p != NULL);
dengyihao's avatar
dengyihao 已提交
184
  SRequestObj *pRequest = (SRequestObj *)p;
H
Haojun Liao 已提交
185 186 187

  assert(RID_VALID(pRequest->self));

wafwerar's avatar
wafwerar 已提交
188 189 190 191
  taosMemoryFreeClear(pRequest->msgBuf);
  taosMemoryFreeClear(pRequest->sqlstr);
  taosMemoryFreeClear(pRequest->pInfo);
  taosMemoryFreeClear(pRequest->pDb);
H
Haojun Liao 已提交
192

H
Haojun Liao 已提交
193
  doFreeReqResultInfo(&pRequest->body.resInfo);
X
Xiaoyu Wang 已提交
194
  qDestroyQueryPlan(pRequest->body.pDag);
H
Haojun Liao 已提交
195

D
dapan1121 已提交
196 197 198 199
  if (pRequest->body.queryJob != 0) {
    schedulerFreeJob(pRequest->body.queryJob);
  }

H
Haojun Liao 已提交
200 201 202 203
  if (pRequest->body.showInfo.pArray != NULL) {
    taosArrayDestroy(pRequest->body.showInfo.pArray);
  }

X
Xiaoyu Wang 已提交
204 205 206
  taosArrayDestroy(pRequest->tableList);
  taosArrayDestroy(pRequest->dbList);

H
Haojun Liao 已提交
207
  deregisterRequest(pRequest);
wafwerar's avatar
wafwerar 已提交
208
  taosMemoryFreeClear(pRequest);
H
Haojun Liao 已提交
209 210
}

dengyihao's avatar
dengyihao 已提交
211
void destroyRequest(SRequestObj *pRequest) {
H
Haojun Liao 已提交
212 213 214 215
  if (pRequest == NULL) {
    return;
  }

H
Haojun Liao 已提交
216
  taosReleaseRef(clientReqRefPool, pRequest->self);
H
Haojun Liao 已提交
217 218 219 220 221 222 223 224
}

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);

  errno = TSDB_CODE_SUCCESS;
wafwerar's avatar
wafwerar 已提交
225
  taosSeedRand(taosGetTimestampSec());
H
Haojun Liao 已提交
226 227

  deltaToUtcInitOnce();
S
Shengliang Guan 已提交
228

S
Shengliang Guan 已提交
229
  if (taosCreateLog("taoslog", 10, configDir, NULL, NULL, NULL, 1) != 0) {
S
Shengliang Guan 已提交
230 231 232 233
    tscInitRes = -1;
    return;
  }

S
Shengliang Guan 已提交
234
  if (taosInitCfg(configDir, NULL, NULL, NULL, 1) != 0) {
S
Shengliang Guan 已提交
235 236 237 238
    tscInitRes = -1;
    return;
  }

H
Haojun Liao 已提交
239
  initMsgHandleFp();
240
  initQueryModuleMsgHandle();
H
Haojun Liao 已提交
241

S
Shengliang Guan 已提交
242
  rpcInit();
H
Haojun Liao 已提交
243

D
dapan1121 已提交
244
  SCatalogCfg cfg = {.maxDBCacheNum = 100, .maxTblCacheNum = 100};
245 246
  catalogInit(&cfg);

X
Xiaoyu Wang 已提交
247 248
  SSchedulerCfg scfg = {.maxJobNum = 100};
  schedulerInit(&scfg);
S
Shengliang Guan 已提交
249
  tscDebug("starting to initialize TAOS driver");
H
Haojun Liao 已提交
250 251 252 253 254

  taosSetCoreDump(true);

  initTaskQueue();

255
  clientConnRefPool = taosOpenRef(200, destroyTscObj);
dengyihao's avatar
dengyihao 已提交
256
  clientReqRefPool = taosOpenRef(40960, doDestroyRequest);
H
Haojun Liao 已提交
257

dengyihao's avatar
dengyihao 已提交
258
  // transDestroyBuffer(&conn->readBuf);
H
Haojun Liao 已提交
259
  taosGetAppName(appInfo.appName, NULL);
wafwerar's avatar
wafwerar 已提交
260
  taosThreadMutexInit(&appInfo.mutex, NULL);
H
Haojun Liao 已提交
261

dengyihao's avatar
dengyihao 已提交
262
  appInfo.pid = taosGetPId();
H
Haojun Liao 已提交
263
  appInfo.startTime = taosGetTimestampMs();
dengyihao's avatar
dengyihao 已提交
264
  appInfo.pInstMap = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_ENTRY_LOCK);
H
Haojun Liao 已提交
265 266 267 268
  tscDebug("client is initialized successfully");
}

int taos_init() {
wafwerar's avatar
wafwerar 已提交
269
  taosThreadOnce(&tscinit, taos_init_imp);
H
Haojun Liao 已提交
270 271 272 273
  return tscInitRes;
}

int taos_options_imp(TSDB_OPTION option, const char *str) {
S
Shengliang Guan 已提交
274
#if 0  
H
Haojun Liao 已提交
275 276 277 278 279 280 281 282 283 284 285 286
  SGlobalCfg *cfg = NULL;

  switch (option) {
    case TSDB_OPTION_CONFIGDIR:
      cfg = taosGetConfigOption("configDir");
      assert(cfg != NULL);

      if (cfg->cfgStatus <= TAOS_CFG_CSTATUS_OPTION) {
        tstrncpy(configDir, str, TSDB_FILENAME_LEN);
        cfg->cfgStatus = TAOS_CFG_CSTATUS_OPTION;
        tscInfo("set config file directory:%s", str);
      } else {
dengyihao's avatar
dengyihao 已提交
287 288
        tscWarn("config option:%s, input value:%s, is configured by %s, use %s", cfg->option, str,
                tsCfgStatusStr[cfg->cfgStatus], (char *)cfg->ptr);
H
Haojun Liao 已提交
289 290 291 292 293 294 295 296 297 298 299 300 301 302
      }
      break;

    case TSDB_OPTION_SHELL_ACTIVITY_TIMER:
      cfg = taosGetConfigOption("shellActivityTimer");
      assert(cfg != NULL);

      if (cfg->cfgStatus <= TAOS_CFG_CSTATUS_OPTION) {
        tsShellActivityTimer = atoi(str);
        if (tsShellActivityTimer < 1) tsShellActivityTimer = 1;
        if (tsShellActivityTimer > 3600) tsShellActivityTimer = 3600;
        cfg->cfgStatus = TAOS_CFG_CSTATUS_OPTION;
        tscInfo("set shellActivityTimer:%d", tsShellActivityTimer);
      } else {
dengyihao's avatar
dengyihao 已提交
303 304
        tscWarn("config option:%s, input value:%s, is configured by %s, use %d", cfg->option, str,
                tsCfgStatusStr[cfg->cfgStatus], *(int32_t *)cfg->ptr);
H
Haojun Liao 已提交
305 306 307 308 309 310 311 312
      }
      break;

    case TSDB_OPTION_LOCALE: {  // set locale
      cfg = taosGetConfigOption("locale");
      assert(cfg != NULL);

      size_t len = strlen(str);
S
Shengliang Guan 已提交
313
      if (len == 0 || len > TD_LOCALE_LEN) {
H
Haojun Liao 已提交
314 315 316 317 318 319 320
        tscInfo("Invalid locale:%s, use default", str);
        return -1;
      }

      if (cfg->cfgStatus <= TAOS_CFG_CSTATUS_OPTION) {
        char sep = '.';

dengyihao's avatar
dengyihao 已提交
321 322
        if (strlen(tsLocale) == 0) {  // locale does not set yet
          char *defaultLocale = setlocale(LC_CTYPE, "");
H
Haojun Liao 已提交
323 324 325 326 327 328 329 330

          // The locale of the current OS does not be set correctly, so the default locale cannot be acquired.
          // The launch of current system will abort soon.
          if (defaultLocale == NULL) {
            tscError("failed to get default locale, please set the correct locale in current OS");
            return -1;
          }

S
Shengliang Guan 已提交
331
          tstrncpy(tsLocale, defaultLocale, TD_LOCALE_LEN);
H
Haojun Liao 已提交
332 333 334 335 336
        }

        // set the user specified locale
        char *locale = setlocale(LC_CTYPE, str);

dengyihao's avatar
dengyihao 已提交
337
        if (locale != NULL) {  // failed to set the user specified locale
H
Haojun Liao 已提交
338 339
          tscInfo("locale set, prev locale:%s, new locale:%s", tsLocale, locale);
          cfg->cfgStatus = TAOS_CFG_CSTATUS_OPTION;
dengyihao's avatar
dengyihao 已提交
340
        } else {  // set the user specified locale failed, use default LC_CTYPE as current locale
H
Haojun Liao 已提交
341 342 343 344
          locale = setlocale(LC_CTYPE, tsLocale);
          tscInfo("failed to set locale:%s, current locale:%s", str, tsLocale);
        }

S
Shengliang Guan 已提交
345
        tstrncpy(tsLocale, locale, TD_LOCALE_LEN);
H
Haojun Liao 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359

        char *charset = strrchr(tsLocale, sep);
        if (charset != NULL) {
          charset += 1;

          charset = taosCharsetReplace(charset);

          if (taosValidateEncodec(charset)) {
            if (strlen(tsCharset) == 0) {
              tscInfo("charset set:%s", charset);
            } else {
              tscInfo("charset changed from %s to %s", tsCharset, charset);
            }

S
Shengliang Guan 已提交
360
            tstrncpy(tsCharset, charset, TD_LOCALE_LEN);
H
Haojun Liao 已提交
361 362 363 364 365 366
            cfg->cfgStatus = TAOS_CFG_CSTATUS_OPTION;

          } else {
            tscInfo("charset:%s is not valid in locale, charset remains:%s", charset, tsCharset);
          }

wafwerar's avatar
wafwerar 已提交
367
          taosMemoryFree(charset);
dengyihao's avatar
dengyihao 已提交
368
        } else {  // it may be windows system
H
Haojun Liao 已提交
369 370 371
          tscInfo("charset remains:%s", tsCharset);
        }
      } else {
dengyihao's avatar
dengyihao 已提交
372 373
        tscWarn("config option:%s, input value:%s, is configured by %s, use %s", cfg->option, str,
                tsCfgStatusStr[cfg->cfgStatus], (char *)cfg->ptr);
H
Haojun Liao 已提交
374 375 376 377 378 379 380 381 382 383
      }
      break;
    }

    case TSDB_OPTION_CHARSET: {
      /* set charset will override the value of charset, assigned during system locale changed */
      cfg = taosGetConfigOption("charset");
      assert(cfg != NULL);

      size_t len = strlen(str);
S
Shengliang Guan 已提交
384
      if (len == 0 || len > TD_LOCALE_LEN) {
H
Haojun Liao 已提交
385 386 387 388 389 390 391 392 393 394 395 396
        tscInfo("failed to set charset:%s", str);
        return -1;
      }

      if (cfg->cfgStatus <= TAOS_CFG_CSTATUS_OPTION) {
        if (taosValidateEncodec(str)) {
          if (strlen(tsCharset) == 0) {
            tscInfo("charset is set:%s", str);
          } else {
            tscInfo("charset changed from %s to %s", tsCharset, str);
          }

S
Shengliang Guan 已提交
397
          tstrncpy(tsCharset, str, TD_LOCALE_LEN);
H
Haojun Liao 已提交
398 399 400 401 402
          cfg->cfgStatus = TAOS_CFG_CSTATUS_OPTION;
        } else {
          tscInfo("charset:%s not valid", str);
        }
      } else {
dengyihao's avatar
dengyihao 已提交
403 404
        tscWarn("config option:%s, input value:%s, is configured by %s, use %s", cfg->option, str,
                tsCfgStatusStr[cfg->cfgStatus], (char *)cfg->ptr);
H
Haojun Liao 已提交
405 406 407 408 409 410 411 412 413 414
      }

      break;
    }

    case TSDB_OPTION_TIMEZONE:
      cfg = taosGetConfigOption("timezone");
      assert(cfg != NULL);

      if (cfg->cfgStatus <= TAOS_CFG_CSTATUS_OPTION) {
wafwerar's avatar
wafwerar 已提交
415
        tstrncpy(tsTimezoneStr, str, TD_TIMEZONE_LEN);
H
Haojun Liao 已提交
416 417
        tsSetTimeZone();
        cfg->cfgStatus = TAOS_CFG_CSTATUS_OPTION;
wafwerar's avatar
wafwerar 已提交
418
        tscDebug("timezone set:%s, input:%s by taos_options", tsTimezoneStr, str);
H
Haojun Liao 已提交
419
      } else {
dengyihao's avatar
dengyihao 已提交
420 421
        tscWarn("config option:%s, input value:%s, is configured by %s, use %s", cfg->option, str,
                tsCfgStatusStr[cfg->cfgStatus], (char *)cfg->ptr);
H
Haojun Liao 已提交
422 423 424 425 426 427 428 429
      }
      break;

    default:
      // TODO return the correct error code to client in the format for taos_errstr()
      tscError("Invalid option %d", option);
      return -1;
  }
S
Shengliang Guan 已提交
430
#endif
H
Haojun Liao 已提交
431 432 433
  return 0;
}

434 435 436 437 438
/**
 * The request id is an unsigned integer format of 64bit.
 *+------------+-----+-----------+---------------+
 *| uid|localIp| PId | timestamp | serial number |
 *+------------+-----+-----------+---------------+
439
 *| 12bit      |12bit|24bit      |16bit          |
440 441 442 443
 *+------------+-----+-----------+---------------+
 * @return
 */
uint64_t generateRequestId() {
H
Haojun Liao 已提交
444
  static uint64_t hashId = 0;
dengyihao's avatar
dengyihao 已提交
445
  static int32_t  requestSerialId = 0;
H
Haojun Liao 已提交
446 447 448 449 450 451 452 453 454 455 456

  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));
    }
457 458
  }

dengyihao's avatar
dengyihao 已提交
459 460 461
  int64_t  ts = taosGetTimestampMs();
  uint64_t pid = taosGetPId();
  int32_t  val = atomic_add_fetch_32(&requestSerialId, 1);
462

463
  uint64_t id = ((hashId & 0x0FFF) << 52) | ((pid & 0x0FFF) << 40) | ((ts & 0xFFFFFF) << 16) | (val & 0xFFFF);
464 465 466
  return id;
}

H
Haojun Liao 已提交
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 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
#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 已提交
525
  taosThreadMutexLock(&setConfMutex);
H
Haojun Liao 已提交
526
  setConfRet ret = taos_set_config_imp(config);
wafwerar's avatar
wafwerar 已提交
527
  taosThreadMutexUnlock(&setConfMutex);
H
Haojun Liao 已提交
528 529
  return ret;
}
530
#endif