clientHb.c 17.4 KB
Newer Older
L
Liu Jicong 已提交
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/>.
 */

D
dapan1121 已提交
16
#include "catalog.h"
L
fix  
Liu Jicong 已提交
17
#include "clientInt.h"
D
dapan1121 已提交
18
#include "clientLog.h"
L
fix  
Liu Jicong 已提交
19
#include "trpc.h"
L
Liu Jicong 已提交
20 21 22 23 24 25

static SClientHbMgr clientHbMgr = {0};

static int32_t hbCreateThread();
static void    hbStopThread();

L
fix  
Liu Jicong 已提交
26
static int32_t hbMqHbRspHandle(struct SAppHbMgr *pAppHbMgr, SClientHbRsp *pRsp) { return 0; }
L
Liu Jicong 已提交
27

D
dapan1121 已提交
28 29 30
static int32_t hbProcessDBInfoRsp(void *value, int32_t valueLen, struct SCatalog *pCatalog) {
  int32_t code = 0;

S
Shengliang Guan 已提交
31 32 33 34 35
  SUseDbBatchRsp batchUseRsp = {0};
  if (tDeserializeSUseDbBatchRsp(value, valueLen, &batchUseRsp) != 0) {
    terrno = TSDB_CODE_INVALID_MSG;
    return -1;
  }
D
dapan1121 已提交
36

S
Shengliang Guan 已提交
37 38 39
  int32_t numOfBatchs = taosArrayGetSize(batchUseRsp.pArray);
  for (int32_t i = 0; i < numOfBatchs; ++i) {
    SUseDbRsp *rsp = taosArrayGet(batchUseRsp.pArray, i);
L
fix  
Liu Jicong 已提交
40 41
    tscDebug("hb db rsp, db:%s, vgVersion:%d, uid:%" PRIx64, rsp->db, rsp->vgVersion, rsp->uid);

D
dapan1121 已提交
42
    if (rsp->vgVersion < 0) {
D
dapan1121 已提交
43
      code = catalogRemoveDB(pCatalog, rsp->db, rsp->uid);
D
dapan1121 已提交
44
    } else {
D
dapan1121 已提交
45
      SDBVgInfo vgInfo = {0};
D
dapan1121 已提交
46 47
      vgInfo.vgVersion = rsp->vgVersion;
      vgInfo.hashMethod = rsp->hashMethod;
D
dapan1121 已提交
48 49
      vgInfo.vgHash = taosHashInit(rsp->vgNum, taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT), true, HASH_ENTRY_LOCK);
      if (NULL == vgInfo.vgHash) {
D
dapan1121 已提交
50 51 52 53
        tscError("hash init[%d] failed", rsp->vgNum);
        return TSDB_CODE_TSC_OUT_OF_MEMORY;
      }

S
Shengliang Guan 已提交
54 55 56
      for (int32_t j = 0; j < rsp->vgNum; ++j) {
        SVgroupInfo *pInfo = taosArrayGet(rsp->pVgroupInfos, j);
        if (taosHashPut(vgInfo.vgHash, &pInfo->vgId, sizeof(int32_t), pInfo, sizeof(SVgroupInfo)) != 0) {
D
dapan1121 已提交
57
          tscError("hash push failed, errno:%d", errno);
D
dapan1121 已提交
58
          taosHashCleanup(vgInfo.vgHash);
D
dapan1121 已提交
59 60
          return TSDB_CODE_TSC_OUT_OF_MEMORY;
        }
L
fix  
Liu Jicong 已提交
61 62
      }

D
dapan1121 已提交
63
      catalogUpdateDBVgInfo(pCatalog, rsp->db, rsp->uid, &vgInfo);
D
dapan1121 已提交
64 65 66 67 68 69 70
    }

    if (code) {
      return code;
    }
  }

S
Shengliang Guan 已提交
71
  tFreeSUseDbBatchRsp(&batchUseRsp);
D
dapan1121 已提交
72 73 74
  return TSDB_CODE_SUCCESS;
}

D
dapan 已提交
75 76 77
static int32_t hbProcessStbInfoRsp(void *value, int32_t valueLen, struct SCatalog *pCatalog) {
  int32_t code = 0;

S
Shengliang Guan 已提交
78 79 80 81 82 83 84 85 86 87
  STableMetaBatchRsp batchMetaRsp = {0};
  if (tDeserializeSTableMetaBatchRsp(value, valueLen, &batchMetaRsp) != 0) {
    terrno = TSDB_CODE_INVALID_MSG;
    return -1;
  }

  int32_t numOfBatchs = taosArrayGetSize(batchMetaRsp.pArray);
  for (int32_t i = 0; i < numOfBatchs; ++i) {
    STableMetaRsp *rsp = taosArrayGet(batchMetaRsp.pArray, i);

D
dapan 已提交
88 89
    if (rsp->numOfColumns < 0) {
      tscDebug("hb remove stb, db:%s, stb:%s", rsp->dbFName, rsp->stbName);
D
dapan1121 已提交
90
      catalogRemoveStbMeta(pCatalog, rsp->dbFName, rsp->dbId, rsp->stbName, rsp->suid);
D
dapan 已提交
91
    } else {
D
dapan1121 已提交
92
      tscDebug("hb update stb, db:%s, stb:%s", rsp->dbFName, rsp->stbName);
S
Shengliang Guan 已提交
93 94 95
      if (rsp->pSchemas[0].colId != PRIMARYKEY_TIMESTAMP_COL_ID) {
        tscError("invalid colId[%d] for the first column in table meta rsp msg", rsp->pSchemas[0].colId);
        tFreeSTableMetaBatchRsp(&batchMetaRsp);
D
dapan1121 已提交
96
        return TSDB_CODE_TSC_INVALID_VALUE;
D
dapan 已提交
97 98
      }

D
dapan1121 已提交
99
      catalogUpdateSTableMeta(pCatalog, rsp);
D
dapan 已提交
100 101 102
    }
  }

S
Shengliang Guan 已提交
103
  tFreeSTableMetaBatchRsp(&batchMetaRsp);
D
dapan 已提交
104 105 106
  return TSDB_CODE_SUCCESS;
}

L
fix  
Liu Jicong 已提交
107 108
static int32_t hbQueryHbRspHandle(struct SAppHbMgr *pAppHbMgr, SClientHbRsp *pRsp) {
  SHbConnInfo *info = taosHashGet(pAppHbMgr->connInfo, &pRsp->connKey, sizeof(SClientHbKey));
D
dapan1121 已提交
109 110 111 112 113 114
  if (NULL == info) {
    tscWarn("fail to get connInfo, may be dropped, connId:%d, type:%d", pRsp->connKey.connId, pRsp->connKey.hbType);
    return TSDB_CODE_SUCCESS;
  }

  int32_t kvNum = pRsp->info ? taosArrayGetSize(pRsp->info) : 0;
D
dapan1121 已提交
115 116

  tscDebug("hb got %d rsp kv", kvNum);
L
fix  
Liu Jicong 已提交
117

D
dapan1121 已提交
118 119 120
  for (int32_t i = 0; i < kvNum; ++i) {
    SKv *kv = taosArrayGet(pRsp->info, i);
    switch (kv->key) {
D
dapan1121 已提交
121 122 123 124 125 126
      case HEARTBEAT_KEY_DBINFO: {
        if (kv->valueLen <= 0 || NULL == kv->value) {
          tscError("invalid hb db info, len:%d, value:%p", kv->valueLen, kv->value);
          break;
        }

L
fix  
Liu Jicong 已提交
127
        int64_t         *clusterId = (int64_t *)info->param;
D
dapan1121 已提交
128
        struct SCatalog *pCatalog = NULL;
L
fix  
Liu Jicong 已提交
129

D
dapan1121 已提交
130 131
        int32_t code = catalogGetHandle(*clusterId, &pCatalog);
        if (code != TSDB_CODE_SUCCESS) {
L
fix  
Liu Jicong 已提交
132
          tscWarn("catalogGetHandle failed, clusterId:%" PRIx64 ", error:%s", *clusterId, tstrerror(code));
D
dapan1121 已提交
133 134 135 136
          break;
        }

        hbProcessDBInfoRsp(kv->value, kv->valueLen, pCatalog);
D
dapan1121 已提交
137
        break;
D
dapan1121 已提交
138
      }
L
fix  
Liu Jicong 已提交
139
      case HEARTBEAT_KEY_STBINFO: {
D
dapan 已提交
140 141 142 143
        if (kv->valueLen <= 0 || NULL == kv->value) {
          tscError("invalid hb stb info, len:%d, value:%p", kv->valueLen, kv->value);
          break;
        }
D
dapan1121 已提交
144

L
fix  
Liu Jicong 已提交
145
        int64_t         *clusterId = (int64_t *)info->param;
D
dapan 已提交
146
        struct SCatalog *pCatalog = NULL;
L
fix  
Liu Jicong 已提交
147

D
dapan 已提交
148 149
        int32_t code = catalogGetHandle(*clusterId, &pCatalog);
        if (code != TSDB_CODE_SUCCESS) {
L
fix  
Liu Jicong 已提交
150
          tscWarn("catalogGetHandle failed, clusterId:%" PRIx64 ", error:%s", *clusterId, tstrerror(code));
D
dapan 已提交
151 152 153 154
          break;
        }

        hbProcessStbInfoRsp(kv->value, kv->valueLen, pCatalog);
D
dapan1121 已提交
155
        break;
D
dapan 已提交
156
      }
D
dapan1121 已提交
157 158 159 160 161 162 163 164 165
      default:
        tscError("invalid hb key type:%d", kv->key);
        break;
    }
  }

  return TSDB_CODE_SUCCESS;
}

L
fix  
Liu Jicong 已提交
166
static int32_t hbMqAsyncCallBack(void *param, const SDataBuf *pMsg, int32_t code) {
D
dapan1121 已提交
167
  static int32_t emptyRspNum = 0;
L
Liu Jicong 已提交
168
  if (code != 0) {
D
dapan1121 已提交
169
    tfree(param);
L
Liu Jicong 已提交
170 171
    return -1;
  }
S
Shengliang Guan 已提交
172

L
fix  
Liu Jicong 已提交
173
  char             *key = (char *)param;
D
dapan1121 已提交
174
  SClientHbBatchRsp pRsp = {0};
S
Shengliang Guan 已提交
175
  tDeserializeSClientHbBatchRsp(pMsg->pData, pMsg->len, &pRsp);
L
fix  
Liu Jicong 已提交
176

D
dapan1121 已提交
177
  int32_t rspNum = taosArrayGetSize(pRsp.rsps);
D
dapan1121 已提交
178

L
fix  
Liu Jicong 已提交
179
  SAppInstInfo **pInst = taosHashGet(appInfo.pInstMap, key, strlen(key));
D
dapan1121 已提交
180
  if (pInst == NULL || NULL == *pInst) {
L
fix  
Liu Jicong 已提交
181
    tscError("cluster not exist, key:%s", key);
D
dapan1121 已提交
182 183
    tfree(param);
    tFreeClientHbBatchRsp(&pRsp);
D
dapan1121 已提交
184 185 186
    return -1;
  }

D
dapan1121 已提交
187 188 189
  tfree(param);

  if (rspNum) {
L
fix  
Liu Jicong 已提交
190 191
    tscDebug("hb got %d rsp, %d empty rsp received before", rspNum,
             atomic_val_compare_exchange_32(&emptyRspNum, emptyRspNum, 0));
D
dapan1121 已提交
192 193 194 195 196
  } else {
    atomic_add_fetch_32(&emptyRspNum, 1);
  }

  for (int32_t i = 0; i < rspNum; ++i) {
L
fix  
Liu Jicong 已提交
197
    SClientHbRsp *rsp = taosArrayGet(pRsp.rsps, i);
D
dapan1121 已提交
198 199 200 201 202
    code = (*clientHbMgr.rspHandle[rsp->connKey.hbType])((*pInst)->pAppHbMgr, rsp);
    if (code) {
      break;
    }
  }
D
dapan1121 已提交
203 204

  tFreeClientHbBatchRsp(&pRsp);
L
fix  
Liu Jicong 已提交
205

D
dapan1121 已提交
206
  return code;
L
Liu Jicong 已提交
207 208
}

D
dapan1121 已提交
209 210
int32_t hbGetExpiredDBInfo(SClientHbKey *connKey, struct SCatalog *pCatalog, SClientHbReq *req) {
  SDbVgVersion *dbs = NULL;
L
fix  
Liu Jicong 已提交
211 212
  uint32_t      dbNum = 0;
  int32_t       code = 0;
D
dapan1121 已提交
213 214 215 216 217 218

  code = catalogGetExpiredDBs(pCatalog, &dbs, &dbNum);
  if (TSDB_CODE_SUCCESS != code) {
    return code;
  }

D
dapan1121 已提交
219 220 221 222
  if (dbNum <= 0) {
    return TSDB_CODE_SUCCESS;
  }

D
dapan1121 已提交
223 224 225 226 227 228 229
  for (int32_t i = 0; i < dbNum; ++i) {
    SDbVgVersion *db = &dbs[i];
    db->dbId = htobe64(db->dbId);
    db->vgVersion = htonl(db->vgVersion);
  }

  SKv kv = {.key = HEARTBEAT_KEY_DBINFO, .valueLen = sizeof(SDbVgVersion) * dbNum, .value = dbs};
D
dapan1121 已提交
230 231 232

  tscDebug("hb got %d expired db, valueLen:%d", dbNum, kv.valueLen);

D
dapan1121 已提交
233 234 235 236 237
  taosHashPut(req->info, &kv.key, sizeof(kv.key), &kv, sizeof(kv));

  return TSDB_CODE_SUCCESS;
}

D
dapan 已提交
238 239
int32_t hbGetExpiredStbInfo(SClientHbKey *connKey, struct SCatalog *pCatalog, SClientHbReq *req) {
  SSTableMetaVersion *stbs = NULL;
L
fix  
Liu Jicong 已提交
240 241
  uint32_t            stbNum = 0;
  int32_t             code = 0;
D
dapan 已提交
242 243 244 245 246 247 248 249 250 251 252 253 254 255

  code = catalogGetExpiredSTables(pCatalog, &stbs, &stbNum);
  if (TSDB_CODE_SUCCESS != code) {
    return code;
  }

  if (stbNum <= 0) {
    return TSDB_CODE_SUCCESS;
  }

  for (int32_t i = 0; i < stbNum; ++i) {
    SSTableMetaVersion *stb = &stbs[i];
    stb->suid = htobe64(stb->suid);
    stb->sversion = htons(stb->sversion);
L
fix  
Liu Jicong 已提交
256
    stb->tversion = htons(stb->tversion);
D
dapan 已提交
257 258 259 260 261 262 263 264 265 266 267
  }

  SKv kv = {.key = HEARTBEAT_KEY_STBINFO, .valueLen = sizeof(SSTableMetaVersion) * stbNum, .value = stbs};

  tscDebug("hb got %d expired stb, valueLen:%d", stbNum, kv.valueLen);

  taosHashPut(req->info, &kv.key, sizeof(kv.key), &kv, sizeof(kv));

  return TSDB_CODE_SUCCESS;
}

L
fix  
Liu Jicong 已提交
268 269
int32_t hbQueryHbReqHandle(SClientHbKey *connKey, void *param, SClientHbReq *req) {
  int64_t         *clusterId = (int64_t *)param;
D
dapan1121 已提交
270 271 272 273
  struct SCatalog *pCatalog = NULL;

  int32_t code = catalogGetHandle(*clusterId, &pCatalog);
  if (code != TSDB_CODE_SUCCESS) {
L
fix  
Liu Jicong 已提交
274
    tscWarn("catalogGetHandle failed, clusterId:%" PRIx64 ", error:%s", *clusterId, tstrerror(code));
D
dapan1121 已提交
275 276
    return code;
  }
L
fix  
Liu Jicong 已提交
277

D
dapan1121 已提交
278 279 280 281 282
  code = hbGetExpiredDBInfo(connKey, pCatalog, req);
  if (TSDB_CODE_SUCCESS != code) {
    return code;
  }

D
dapan 已提交
283 284 285 286 287
  code = hbGetExpiredStbInfo(connKey, pCatalog, req);
  if (TSDB_CODE_SUCCESS != code) {
    return code;
  }

D
dapan1121 已提交
288 289 290
  return TSDB_CODE_SUCCESS;
}

L
Liu Jicong 已提交
291
int32_t hbMqHbReqHandle(SClientHbKey *connKey, void *param, SClientHbReq *req) {}
D
dapan1121 已提交
292 293 294 295 296 297

void hbMgrInitMqHbHandle() {
  clientHbMgr.reqHandle[HEARTBEAT_TYPE_QUERY] = hbQueryHbReqHandle;
  clientHbMgr.reqHandle[HEARTBEAT_TYPE_MQ] = hbMqHbReqHandle;
  clientHbMgr.rspHandle[HEARTBEAT_TYPE_QUERY] = hbQueryHbRspHandle;
  clientHbMgr.rspHandle[HEARTBEAT_TYPE_MQ] = hbMqHbRspHandle;
L
Liu Jicong 已提交
298 299
}

L
Liu Jicong 已提交
300 301
static FORCE_INLINE void hbMgrInitHandle() {
  // init all handle
D
dapan1121 已提交
302
  hbMgrInitMqHbHandle();
L
Liu Jicong 已提交
303 304
}

D
dapan1121 已提交
305 306
void hbFreeReq(void *req) {
  SClientHbReq *pReq = (SClientHbReq *)req;
D
dapan1121 已提交
307
  tFreeReqKvHash(pReq->info);
D
dapan1121 已提交
308 309
}

L
fix  
Liu Jicong 已提交
310 311
SClientHbBatchReq *hbGatherAllInfo(SAppHbMgr *pAppHbMgr) {
  SClientHbBatchReq *pBatchReq = calloc(1, sizeof(SClientHbBatchReq));
L
Liu Jicong 已提交
312
  if (pBatchReq == NULL) {
L
Liu Jicong 已提交
313 314 315
    terrno = TSDB_CODE_TSC_OUT_OF_MEMORY;
    return NULL;
  }
L
Liu Jicong 已提交
316
  int32_t connKeyCnt = atomic_load_32(&pAppHbMgr->connKeyCnt);
L
Liu Jicong 已提交
317
  pBatchReq->reqs = taosArrayInit(connKeyCnt, sizeof(SClientHbReq));
L
Liu Jicong 已提交
318

D
dapan1121 已提交
319
  int32_t code = 0;
L
fix  
Liu Jicong 已提交
320
  void   *pIter = taosHashIterate(pAppHbMgr->activeInfo, NULL);
L
Liu Jicong 已提交
321
  while (pIter != NULL) {
L
fix  
Liu Jicong 已提交
322
    SClientHbReq *pOneReq = pIter;
D
dapan1121 已提交
323

L
fix  
Liu Jicong 已提交
324
    SHbConnInfo *info = taosHashGet(pAppHbMgr->connInfo, &pOneReq->connKey, sizeof(SClientHbKey));
D
dapan1121 已提交
325 326 327 328 329 330 331 332
    if (info) {
      code = (*clientHbMgr.reqHandle[pOneReq->connKey.hbType])(&pOneReq->connKey, info->param, pOneReq);
      if (code) {
        taosHashCancelIterate(pAppHbMgr->activeInfo, pIter);
        break;
      }
    }

L
Liu Jicong 已提交
333
    taosArrayPush(pBatchReq->reqs, pOneReq);
L
Liu Jicong 已提交
334

L
Liu Jicong 已提交
335
    pIter = taosHashIterate(pAppHbMgr->activeInfo, pIter);
L
Liu Jicong 已提交
336 337
  }

D
dapan1121 已提交
338 339 340
  if (code) {
    taosArrayDestroyEx(pBatchReq->reqs, hbFreeReq);
    tfree(pBatchReq);
L
Liu Jicong 已提交
341 342
  }

L
Liu Jicong 已提交
343
  return pBatchReq;
L
Liu Jicong 已提交
344 345
}

D
dapan1121 已提交
346 347 348
void hbClearReqInfo(SAppHbMgr *pAppHbMgr) {
  void *pIter = taosHashIterate(pAppHbMgr->activeInfo, NULL);
  while (pIter != NULL) {
L
fix  
Liu Jicong 已提交
349
    SClientHbReq *pOneReq = pIter;
D
dapan1121 已提交
350

D
dapan1121 已提交
351
    tFreeReqKvHash(pOneReq->info);
D
dapan1121 已提交
352 353 354 355 356 357
    taosHashClear(pOneReq->info);

    pIter = taosHashIterate(pAppHbMgr->activeInfo, pIter);
  }
}

L
fix  
Liu Jicong 已提交
358
static void *hbThreadFunc(void *param) {
L
Liu Jicong 已提交
359 360
  setThreadName("hb");
  while (1) {
361
    int8_t threadStop = atomic_val_compare_exchange_8(&clientHbMgr.threadStop, 1, 2);
L
fix  
Liu Jicong 已提交
362
    if (1 == threadStop) {
L
Liu Jicong 已提交
363 364 365
      break;
    }

366 367
    pthread_mutex_lock(&clientHbMgr.lock);

L
Liu Jicong 已提交
368
    int sz = taosArrayGetSize(clientHbMgr.appHbMgrs);
L
fix  
Liu Jicong 已提交
369 370
    for (int i = 0; i < sz; i++) {
      SAppHbMgr *pAppHbMgr = taosArrayGetP(clientHbMgr.appHbMgrs, i);
L
Liu Jicong 已提交
371

L
Liu Jicong 已提交
372 373 374 375
      int32_t connCnt = atomic_load_32(&pAppHbMgr->connKeyCnt);
      if (connCnt == 0) {
        continue;
      }
L
fix  
Liu Jicong 已提交
376
      SClientHbBatchReq *pReq = hbGatherAllInfo(pAppHbMgr);
L
Liu Jicong 已提交
377 378 379
      if (pReq == NULL) {
        continue;
      }
L
fix  
Liu Jicong 已提交
380
      int   tlen = tSerializeSClientHbBatchReq(NULL, 0, pReq);
L
Liu Jicong 已提交
381 382
      void *buf = malloc(tlen);
      if (buf == NULL) {
D
dapan1121 已提交
383 384 385
        terrno = TSDB_CODE_TSC_OUT_OF_MEMORY;
        tFreeClientHbBatchReq(pReq, false);
        hbClearReqInfo(pAppHbMgr);
L
Liu Jicong 已提交
386 387
        break;
      }
L
fix  
Liu Jicong 已提交
388

S
Shengliang Guan 已提交
389
      tSerializeSClientHbBatchReq(buf, tlen, pReq);
dengyihao's avatar
dengyihao 已提交
390
      SMsgSendInfo *pInfo = calloc(1, sizeof(SMsgSendInfo));
391

L
Liu Jicong 已提交
392 393
      if (pInfo == NULL) {
        terrno = TSDB_CODE_TSC_OUT_OF_MEMORY;
L
Liu Jicong 已提交
394
        tFreeClientHbBatchReq(pReq, false);
D
dapan1121 已提交
395
        hbClearReqInfo(pAppHbMgr);
L
Liu Jicong 已提交
396 397 398 399 400 401 402
        free(buf);
        break;
      }
      pInfo->fp = hbMqAsyncCallBack;
      pInfo->msgInfo.pData = buf;
      pInfo->msgInfo.len = tlen;
      pInfo->msgType = TDMT_MND_HEARTBEAT;
D
dapan1121 已提交
403
      pInfo->param = strdup(pAppHbMgr->key);
L
Liu Jicong 已提交
404 405
      pInfo->requestId = generateRequestId();
      pInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
406 407

      SAppInstInfo *pAppInstInfo = pAppHbMgr->pAppInstInfo;
L
fix  
Liu Jicong 已提交
408 409
      int64_t       transporterId = 0;
      SEpSet        epSet = getEpSet_s(&pAppInstInfo->mgmtEp);
L
Liu Jicong 已提交
410
      asyncSendMsgToServer(pAppInstInfo->pTransporter, &epSet, &transporterId, pInfo);
L
fix  
Liu Jicong 已提交
411
      tFreeClientHbBatchReq(pReq, false);
D
dapan1121 已提交
412
      hbClearReqInfo(pAppHbMgr);
L
Liu Jicong 已提交
413 414 415

      atomic_add_fetch_32(&pAppHbMgr->reportCnt, 1);
    }
416 417

    pthread_mutex_unlock(&clientHbMgr.lock);
L
fix  
Liu Jicong 已提交
418

L
Liu Jicong 已提交
419
    taosMsleep(HEARTBEAT_INTERVAL);
L
Liu Jicong 已提交
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
  }
  return NULL;
}

static int32_t hbCreateThread() {
  pthread_attr_t thAttr;
  pthread_attr_init(&thAttr);
  pthread_attr_setdetachstate(&thAttr, PTHREAD_CREATE_JOINABLE);

  if (pthread_create(&clientHbMgr.thread, &thAttr, hbThreadFunc, NULL) != 0) {
    terrno = TAOS_SYSTEM_ERROR(errno);
    return -1;
  }
  pthread_attr_destroy(&thAttr);
  return 0;
}

L
Liu Jicong 已提交
437
static void hbStopThread() {
438
  if (atomic_val_compare_exchange_8(&clientHbMgr.threadStop, 0, 1)) {
D
dapan1121 已提交
439
    tscDebug("hb thread already stopped");
440 441
    return;
  }
L
fix  
Liu Jicong 已提交
442

443 444 445
  while (2 != atomic_load_8(&clientHbMgr.threadStop)) {
    usleep(10);
  }
D
dapan1121 已提交
446

L
fix  
Liu Jicong 已提交
447
  tscDebug("hb thread stopped");
L
Liu Jicong 已提交
448 449
}

L
fix  
Liu Jicong 已提交
450
SAppHbMgr *appHbMgrInit(SAppInstInfo *pAppInstInfo, char *key) {
L
Liu Jicong 已提交
451
  /*return NULL;*/
L
Liu Jicong 已提交
452
  hbMgrInit();
L
fix  
Liu Jicong 已提交
453
  SAppHbMgr *pAppHbMgr = malloc(sizeof(SAppHbMgr));
L
Liu Jicong 已提交
454 455 456 457 458 459
  if (pAppHbMgr == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }
  // init stat
  pAppHbMgr->startTime = taosGetTimestampMs();
L
Liu Jicong 已提交
460 461 462
  pAppHbMgr->connKeyCnt = 0;
  pAppHbMgr->reportCnt = 0;
  pAppHbMgr->reportBytes = 0;
D
dapan1121 已提交
463
  pAppHbMgr->key = strdup(key);
L
Liu Jicong 已提交
464

L
Liu Jicong 已提交
465 466
  // init app info
  pAppHbMgr->pAppInstInfo = pAppInstInfo;
L
Liu Jicong 已提交
467 468 469

  // init hash info
  pAppHbMgr->activeInfo = taosHashInit(64, hbKeyHashFunc, 1, HASH_ENTRY_LOCK);
L
Liu Jicong 已提交
470 471 472 473 474 475

  if (pAppHbMgr->activeInfo == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    free(pAppHbMgr);
    return NULL;
  }
L
Liu Jicong 已提交
476 477
  pAppHbMgr->activeInfo->freeFp = tFreeClientHbReq;
  // init getInfoFunc
D
dapan1121 已提交
478
  pAppHbMgr->connInfo = taosHashInit(64, hbKeyHashFunc, 1, HASH_ENTRY_LOCK);
L
Liu Jicong 已提交
479

D
dapan1121 已提交
480
  if (pAppHbMgr->connInfo == NULL) {
L
Liu Jicong 已提交
481 482 483 484 485
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    free(pAppHbMgr);
    return NULL;
  }

486
  pthread_mutex_lock(&clientHbMgr.lock);
L
Liu Jicong 已提交
487
  taosArrayPush(clientHbMgr.appHbMgrs, &pAppHbMgr);
488
  pthread_mutex_unlock(&clientHbMgr.lock);
L
fix  
Liu Jicong 已提交
489

L
Liu Jicong 已提交
490 491 492
  return pAppHbMgr;
}

D
dapan1121 已提交
493
void appHbMgrCleanup(void) {
L
Liu Jicong 已提交
494 495 496 497
  pthread_mutex_lock(&clientHbMgr.lock);

  int sz = taosArrayGetSize(clientHbMgr.appHbMgrs);
  for (int i = 0; i < sz; i++) {
L
fix  
Liu Jicong 已提交
498
    SAppHbMgr *pTarget = taosArrayGetP(clientHbMgr.appHbMgrs, i);
D
dapan1121 已提交
499 500 501 502
    taosHashCleanup(pTarget->activeInfo);
    pTarget->activeInfo = NULL;
    taosHashCleanup(pTarget->connInfo);
    pTarget->connInfo = NULL;
L
Liu Jicong 已提交
503 504 505 506 507 508
  }

  pthread_mutex_unlock(&clientHbMgr.lock);
}

int hbMgrInit() {
L
Liu Jicong 已提交
509
  /*return 0;*/
L
Liu Jicong 已提交
510 511 512 513
  // init once
  int8_t old = atomic_val_compare_exchange_8(&clientHbMgr.inited, 0, 1);
  if (old == 1) return 0;

L
fix  
Liu Jicong 已提交
514
  clientHbMgr.appHbMgrs = taosArrayInit(0, sizeof(void *));
L
Liu Jicong 已提交
515
  pthread_mutex_init(&clientHbMgr.lock, NULL);
L
Liu Jicong 已提交
516 517 518 519 520

  // init handle funcs
  hbMgrInitHandle();

  // init backgroud thread
L
Liu Jicong 已提交
521 522
  hbCreateThread();

L
Liu Jicong 已提交
523 524 525 526
  return 0;
}

void hbMgrCleanUp() {
L
Liu Jicong 已提交
527
  return;
528
  hbStopThread();
L
fix  
Liu Jicong 已提交
529

L
Liu Jicong 已提交
530
  // destroy all appHbMgr
L
Liu Jicong 已提交
531 532 533
  int8_t old = atomic_val_compare_exchange_8(&clientHbMgr.inited, 1, 0);
  if (old == 0) return;

534
  pthread_mutex_lock(&clientHbMgr.lock);
D
dapan1121 已提交
535
  appHbMgrCleanup();
L
fix  
Liu Jicong 已提交
536
  taosArrayDestroy(clientHbMgr.appHbMgrs);
537
  pthread_mutex_unlock(&clientHbMgr.lock);
L
fix  
Liu Jicong 已提交
538

539
  clientHbMgr.appHbMgrs = NULL;
L
Liu Jicong 已提交
540 541
}

L
fix  
Liu Jicong 已提交
542
int hbRegisterConnImpl(SAppHbMgr *pAppHbMgr, SClientHbKey connKey, SHbConnInfo *info) {
L
Liu Jicong 已提交
543
  // init hash in activeinfo
L
fix  
Liu Jicong 已提交
544
  void *data = taosHashGet(pAppHbMgr->activeInfo, &connKey, sizeof(SClientHbKey));
L
Liu Jicong 已提交
545 546 547 548 549 550
  if (data != NULL) {
    return 0;
  }
  SClientHbReq hbReq;
  hbReq.connKey = connKey;
  hbReq.info = taosHashInit(64, hbKeyHashFunc, 1, HASH_ENTRY_LOCK);
L
fix  
Liu Jicong 已提交
551

L
Liu Jicong 已提交
552
  taosHashPut(pAppHbMgr->activeInfo, &connKey, sizeof(SClientHbKey), &hbReq, sizeof(SClientHbReq));
L
fix  
Liu Jicong 已提交
553

L
Liu Jicong 已提交
554
  // init hash
D
dapan1121 已提交
555
  if (info != NULL) {
L
fix  
Liu Jicong 已提交
556
    SClientHbReq *pReq = taosHashGet(pAppHbMgr->activeInfo, &connKey, sizeof(SClientHbKey));
D
dapan1121 已提交
557 558
    info->req = pReq;
    taosHashPut(pAppHbMgr->connInfo, &connKey, sizeof(SClientHbKey), info, sizeof(SHbConnInfo));
L
Liu Jicong 已提交
559 560
  }

L
Liu Jicong 已提交
561
  atomic_add_fetch_32(&pAppHbMgr->connKeyCnt, 1);
L
Liu Jicong 已提交
562 563 564
  return 0;
}

L
fix  
Liu Jicong 已提交
565
int hbRegisterConn(SAppHbMgr *pAppHbMgr, int32_t connId, int64_t clusterId, int32_t hbType) {
L
Liu Jicong 已提交
566
  /*return 0;*/
D
dapan1121 已提交
567
  SClientHbKey connKey = {.connId = connId, .hbType = HEARTBEAT_TYPE_QUERY};
L
fix  
Liu Jicong 已提交
568
  SHbConnInfo  info = {0};
D
dapan1121 已提交
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583

  switch (hbType) {
    case HEARTBEAT_TYPE_QUERY: {
      int64_t *pClusterId = malloc(sizeof(int64_t));
      *pClusterId = clusterId;

      info.param = pClusterId;
      break;
    }
    case HEARTBEAT_TYPE_MQ: {
      break;
    }
    default:
      break;
  }
L
fix  
Liu Jicong 已提交
584

D
dapan1121 已提交
585 586 587
  return hbRegisterConnImpl(pAppHbMgr, connKey, &info);
}

L
fix  
Liu Jicong 已提交
588
void hbDeregisterConn(SAppHbMgr *pAppHbMgr, SClientHbKey connKey) {
L
Liu Jicong 已提交
589
  /*return;*/
D
dapan1121 已提交
590 591 592 593 594 595
  int32_t code = 0;
  code = taosHashRemove(pAppHbMgr->activeInfo, &connKey, sizeof(SClientHbKey));
  code = taosHashRemove(pAppHbMgr->connInfo, &connKey, sizeof(SClientHbKey));
  if (code) {
    return;
  }
L
Liu Jicong 已提交
596
  atomic_sub_fetch_32(&pAppHbMgr->connKeyCnt, 1);
L
Liu Jicong 已提交
597 598
}

L
fix  
Liu Jicong 已提交
599 600 601
int hbAddConnInfo(SAppHbMgr *pAppHbMgr, SClientHbKey connKey, void *key, void *value, int32_t keyLen,
                  int32_t valueLen) {
  return 0;
L
Liu Jicong 已提交
602
  // find req by connection id
L
fix  
Liu Jicong 已提交
603
  SClientHbReq *pReq = taosHashGet(pAppHbMgr->activeInfo, &connKey, sizeof(SClientHbKey));
L
Liu Jicong 已提交
604 605 606 607 608 609
  ASSERT(pReq != NULL);

  taosHashPut(pReq->info, key, keyLen, value, valueLen);

  return 0;
}