tmq.c 83.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#include "clientInt.h"
#include "clientLog.h"
#include "parser.h"
H
Haojun Liao 已提交
19
#include "tdatablock.h"
20 21 22
#include "tdef.h"
#include "tglobal.h"
#include "tmsgtype.h"
X
Xiaoyu Wang 已提交
23
#include "tqueue.h"
24
#include "tref.h"
L
Liu Jicong 已提交
25
#include "ttimer.h"
wmmhello's avatar
wmmhello 已提交
26
#include "cJSON.h"
L
Liu Jicong 已提交
27

L
Liu Jicong 已提交
28 29 30 31 32 33 34 35
int32_t tmqAskEp(tmq_t* tmq, bool async);

typedef struct {
  int8_t inited;
  tmr_h  timer;
} SMqMgmt;

static SMqMgmt tmqMgmt = {0};
36

L
Liu Jicong 已提交
37 38 39 40 41 42
typedef struct {
  int8_t  tmqRspType;
  int32_t epoch;
} SMqRspWrapper;

typedef struct {
L
Liu Jicong 已提交
43 44 45
  int8_t      tmqRspType;
  int32_t     epoch;
  SMqAskEpRsp msg;
L
Liu Jicong 已提交
46 47
} SMqAskEpRspWrapper;

L
Liu Jicong 已提交
48
struct tmq_list_t {
L
Liu Jicong 已提交
49
  SArray container;
L
Liu Jicong 已提交
50
};
L
Liu Jicong 已提交
51

L
Liu Jicong 已提交
52
struct tmq_conf_t {
53 54 55 56 57
  char     clientId[256];
  char     groupId[TSDB_CGROUP_LEN];
  int8_t   autoCommit;
  int8_t   resetOffset;
  int8_t   withTbName;
L
Liu Jicong 已提交
58 59
  int8_t   spEnable;
  int32_t  spBatchSize;
60 61 62 63 64 65
  uint16_t port;
  int32_t  autoCommitInterval;
  char*    ip;
  char*    user;
  char*    pass;
  /*char*          db;*/
66
  tmq_commit_cb* commitCb;
L
Liu Jicong 已提交
67
  void*          commitCbUserParam;
L
Liu Jicong 已提交
68 69 70
};

struct tmq_t {
L
Liu Jicong 已提交
71
  // conf
L
Liu Jicong 已提交
72 73
  char           groupId[TSDB_CGROUP_LEN];
  char           clientId[256];
74
  int8_t         withTbName;
L
Liu Jicong 已提交
75
  int8_t         useSnapshot;
L
Liu Jicong 已提交
76
  int8_t         autoCommit;
L
Liu Jicong 已提交
77
  int32_t        autoCommitInterval;
L
Liu Jicong 已提交
78
  int32_t        resetOffsetCfg;
L
Liu Jicong 已提交
79
  int64_t        consumerId;
L
Liu Jicong 已提交
80 81
  tmq_commit_cb* commitCb;
  void*          commitCbUserParam;
L
Liu Jicong 已提交
82 83 84 85

  // status
  int8_t  status;
  int32_t epoch;
L
Liu Jicong 已提交
86 87
#if 0
  int8_t  epStatus;
L
Liu Jicong 已提交
88
  int32_t epSkipCnt;
L
Liu Jicong 已提交
89
#endif
L
Liu Jicong 已提交
90 91
  int64_t pollCnt;

L
Liu Jicong 已提交
92 93 94 95 96
  // timer
  tmr_h hbTimer;
  tmr_h reportTimer;
  tmr_h commitTimer;

L
Liu Jicong 已提交
97 98 99 100
  // connection
  STscObj* pTscObj;

  // container
L
Liu Jicong 已提交
101
  SArray*     clientTopics;  // SArray<SMqClientTopic>
L
Liu Jicong 已提交
102
  STaosQueue* mqueue;        // queue of rsp
L
Liu Jicong 已提交
103
  STaosQall*  qall;
L
Liu Jicong 已提交
104 105 106 107
  STaosQueue* delayedTask;  // delayed task queue for heartbeat and auto commit

  // ctl
  tsem_t rspSem;
L
Liu Jicong 已提交
108 109
};

wmmhello's avatar
wmmhello 已提交
110 111 112 113 114 115
struct tmq_raw_data{
  void    *raw_meta;
  int32_t raw_meta_len;
  int16_t raw_meta_type;
};

X
Xiaoyu Wang 已提交
116 117 118 119 120 121 122 123
enum {
  TMQ_VG_STATUS__IDLE = 0,
  TMQ_VG_STATUS__WAIT,
};

enum {
  TMQ_CONSUMER_STATUS__INIT = 0,
  TMQ_CONSUMER_STATUS__READY,
124
  TMQ_CONSUMER_STATUS__NO_TOPIC,
L
Liu Jicong 已提交
125 126
};

L
Liu Jicong 已提交
127 128 129 130 131 132
enum {
  TMQ_DELAYED_TASK__HB = 1,
  TMQ_DELAYED_TASK__REPORT,
  TMQ_DELAYED_TASK__COMMIT,
};

L
Liu Jicong 已提交
133
typedef struct {
134 135 136
  // statistics
  int64_t pollCnt;
  // offset
L
Liu Jicong 已提交
137 138 139 140
  /*int64_t      committedOffset;*/
  /*int64_t      currentOffset;*/
  STqOffsetVal committedOffsetNew;
  STqOffsetVal currentOffsetNew;
L
Liu Jicong 已提交
141
  // connection info
142
  int32_t vgId;
X
Xiaoyu Wang 已提交
143
  int32_t vgStatus;
L
Liu Jicong 已提交
144
  int32_t vgSkipCnt;
145 146 147
  SEpSet  epSet;
} SMqClientVg;

L
Liu Jicong 已提交
148
typedef struct {
149
  // subscribe info
L
Liu Jicong 已提交
150
  char* topicName;
L
Liu Jicong 已提交
151
  char  db[TSDB_DB_FNAME_LEN];
L
Liu Jicong 已提交
152 153 154

  SArray* vgs;  // SArray<SMqClientVg>

L
Liu Jicong 已提交
155 156
  int8_t         isSchemaAdaptive;
  SSchemaWrapper schema;
157 158
} SMqClientTopic;

L
Liu Jicong 已提交
159 160 161 162 163
typedef struct {
  int8_t          tmqRspType;
  int32_t         epoch;
  SMqClientVg*    vgHandle;
  SMqClientTopic* topicHandle;
L
Liu Jicong 已提交
164
  union {
L
Liu Jicong 已提交
165 166
    SMqDataRsp dataRsp;
    SMqMetaRsp metaRsp;
L
Liu Jicong 已提交
167
  };
L
Liu Jicong 已提交
168 169
} SMqPollRspWrapper;

L
Liu Jicong 已提交
170
typedef struct {
L
Liu Jicong 已提交
171 172 173
  tmq_t*  tmq;
  tsem_t  rspSem;
  int32_t rspErr;
L
Liu Jicong 已提交
174
} SMqSubscribeCbParam;
L
Liu Jicong 已提交
175

L
Liu Jicong 已提交
176
typedef struct {
177
  tmq_t*  tmq;
L
Liu Jicong 已提交
178
  int32_t code;
L
Liu Jicong 已提交
179
  int32_t async;
X
Xiaoyu Wang 已提交
180
  tsem_t  rspSem;
181 182
} SMqAskEpCbParam;

L
Liu Jicong 已提交
183
typedef struct {
L
Liu Jicong 已提交
184 185
  tmq_t*          tmq;
  SMqClientVg*    pVg;
L
Liu Jicong 已提交
186
  SMqClientTopic* pTopic;
L
Liu Jicong 已提交
187
  int32_t         epoch;
L
Liu Jicong 已提交
188
  int32_t         vgId;
L
Liu Jicong 已提交
189
  tsem_t          rspSem;
X
Xiaoyu Wang 已提交
190
} SMqPollCbParam;
191

L
Liu Jicong 已提交
192
#if 0
L
Liu Jicong 已提交
193
typedef struct {
L
Liu Jicong 已提交
194
  tmq_t*         tmq;
L
Liu Jicong 已提交
195 196
  int8_t         async;
  int8_t         automatic;
L
Liu Jicong 已提交
197
  int8_t         freeOffsets;
L
Liu Jicong 已提交
198
  tmq_commit_cb* userCb;
L
Liu Jicong 已提交
199
  tsem_t         rspSem;
L
Liu Jicong 已提交
200
  int32_t        rspErr;
L
Liu Jicong 已提交
201
  SArray*        offsets;
L
Liu Jicong 已提交
202
  void*          userParam;
L
Liu Jicong 已提交
203
} SMqCommitCbParam;
L
Liu Jicong 已提交
204
#endif
L
Liu Jicong 已提交
205

206
typedef struct {
L
Liu Jicong 已提交
207 208 209 210
  tmq_t* tmq;
  int8_t automatic;
  int8_t async;
  /*int8_t         freeOffsets;*/
L
Liu Jicong 已提交
211 212
  int32_t        waitingRspNum;
  int32_t        totalRspNum;
L
Liu Jicong 已提交
213
  int32_t        rspErr;
214
  tmq_commit_cb* userCb;
L
Liu Jicong 已提交
215 216 217 218
  /*SArray*        successfulOffsets;*/
  /*SArray*        failedOffsets;*/
  void*  userParam;
  tsem_t rspSem;
219 220 221 222 223 224 225
} SMqCommitCbParamSet;

typedef struct {
  SMqCommitCbParamSet* params;
  STqOffset*           pOffset;
} SMqCommitCbParam2;

226
tmq_conf_t* tmq_conf_new() {
wafwerar's avatar
wafwerar 已提交
227
  tmq_conf_t* conf = taosMemoryCalloc(1, sizeof(tmq_conf_t));
228
  conf->withTbName = false;
L
Liu Jicong 已提交
229
  conf->autoCommit = true;
L
Liu Jicong 已提交
230
  conf->autoCommitInterval = 5000;
X
Xiaoyu Wang 已提交
231
  conf->resetOffset = TMQ_CONF__RESET_OFFSET__EARLIEAST;
232 233 234
  return conf;
}

L
Liu Jicong 已提交
235
void tmq_conf_destroy(tmq_conf_t* conf) {
L
Liu Jicong 已提交
236 237 238 239 240 241
  if (conf) {
    if (conf->ip) taosMemoryFree(conf->ip);
    if (conf->user) taosMemoryFree(conf->user);
    if (conf->pass) taosMemoryFree(conf->pass);
    taosMemoryFree(conf);
  }
L
Liu Jicong 已提交
242 243 244
}

tmq_conf_res_t tmq_conf_set(tmq_conf_t* conf, const char* key, const char* value) {
245 246
  if (strcmp(key, "group.id") == 0) {
    strcpy(conf->groupId, value);
L
Liu Jicong 已提交
247
    return TMQ_CONF_OK;
248
  }
L
Liu Jicong 已提交
249

250 251
  if (strcmp(key, "client.id") == 0) {
    strcpy(conf->clientId, value);
L
Liu Jicong 已提交
252 253
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
254

L
Liu Jicong 已提交
255 256
  if (strcmp(key, "enable.auto.commit") == 0) {
    if (strcmp(value, "true") == 0) {
L
Liu Jicong 已提交
257
      conf->autoCommit = true;
L
Liu Jicong 已提交
258 259
      return TMQ_CONF_OK;
    } else if (strcmp(value, "false") == 0) {
L
Liu Jicong 已提交
260
      conf->autoCommit = false;
L
Liu Jicong 已提交
261 262 263 264
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
265
  }
L
Liu Jicong 已提交
266

L
Liu Jicong 已提交
267 268 269 270 271
  if (strcmp(key, "auto.commit.interval.ms") == 0) {
    conf->autoCommitInterval = atoi(value);
    return TMQ_CONF_OK;
  }

L
Liu Jicong 已提交
272 273 274 275 276 277 278 279 280 281 282 283 284 285
  if (strcmp(key, "auto.offset.reset") == 0) {
    if (strcmp(value, "none") == 0) {
      conf->resetOffset = TMQ_CONF__RESET_OFFSET__NONE;
      return TMQ_CONF_OK;
    } else if (strcmp(value, "earliest") == 0) {
      conf->resetOffset = TMQ_CONF__RESET_OFFSET__EARLIEAST;
      return TMQ_CONF_OK;
    } else if (strcmp(value, "latest") == 0) {
      conf->resetOffset = TMQ_CONF__RESET_OFFSET__LATEST;
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
  }
L
Liu Jicong 已提交
286

287 288
  if (strcmp(key, "msg.with.table.name") == 0) {
    if (strcmp(value, "true") == 0) {
289
      conf->withTbName = true;
L
Liu Jicong 已提交
290
      return TMQ_CONF_OK;
291
    } else if (strcmp(value, "false") == 0) {
292
      conf->withTbName = false;
L
Liu Jicong 已提交
293
      return TMQ_CONF_OK;
294 295 296 297 298
    } else {
      return TMQ_CONF_INVALID;
    }
  }

L
Liu Jicong 已提交
299
  if (strcmp(key, "experimental.snapshot.enable") == 0) {
L
Liu Jicong 已提交
300
    if (strcmp(value, "true") == 0) {
L
Liu Jicong 已提交
301
      conf->spEnable = true;
L
Liu Jicong 已提交
302 303
      return TMQ_CONF_OK;
    } else if (strcmp(value, "false") == 0) {
L
Liu Jicong 已提交
304
      conf->spEnable = false;
L
Liu Jicong 已提交
305 306 307 308 309 310
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
  }

L
Liu Jicong 已提交
311 312 313 314 315
  if (strcmp(key, "experimental.snapshot.batch.size") == 0) {
    conf->spBatchSize = atoi(value);
    return TMQ_CONF_OK;
  }

L
Liu Jicong 已提交
316
  if (strcmp(key, "td.connect.ip") == 0) {
L
Liu Jicong 已提交
317 318 319
    conf->ip = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
320
  if (strcmp(key, "td.connect.user") == 0) {
L
Liu Jicong 已提交
321 322 323
    conf->user = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
324
  if (strcmp(key, "td.connect.pass") == 0) {
L
Liu Jicong 已提交
325 326 327
    conf->pass = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
328
  if (strcmp(key, "td.connect.port") == 0) {
L
Liu Jicong 已提交
329 330 331
    conf->port = atoi(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
332
  if (strcmp(key, "td.connect.db") == 0) {
333
    /*conf->db = strdup(value);*/
L
Liu Jicong 已提交
334 335 336
    return TMQ_CONF_OK;
  }

L
Liu Jicong 已提交
337
  return TMQ_CONF_UNKNOWN;
338 339 340
}

tmq_list_t* tmq_list_new() {
L
Liu Jicong 已提交
341 342
  //
  return (tmq_list_t*)taosArrayInit(0, sizeof(void*));
343 344
}

L
Liu Jicong 已提交
345 346 347
int32_t tmq_list_append(tmq_list_t* list, const char* src) {
  SArray* container = &list->container;
  char*   topic = strdup(src);
L
fix  
Liu Jicong 已提交
348
  if (taosArrayPush(container, &topic) == NULL) return -1;
349 350 351
  return 0;
}

L
Liu Jicong 已提交
352
void tmq_list_destroy(tmq_list_t* list) {
L
Liu Jicong 已提交
353
  SArray* container = &list->container;
L
Liu Jicong 已提交
354
  taosArrayDestroyP(container, taosMemoryFree);
L
Liu Jicong 已提交
355 356
}

L
Liu Jicong 已提交
357 358 359 360 361 362 363 364 365 366
int32_t tmq_list_get_size(const tmq_list_t* list) {
  const SArray* container = &list->container;
  return taosArrayGetSize(container);
}

char** tmq_list_to_c_array(const tmq_list_t* list) {
  const SArray* container = &list->container;
  return container->pData;
}

L
Liu Jicong 已提交
367 368 369 370
static int32_t tmqMakeTopicVgKey(char* dst, const char* topicName, int32_t vg) {
  return sprintf(dst, "%s:%d", topicName, vg);
}

L
Liu Jicong 已提交
371
#if 0
L
Liu Jicong 已提交
372 373
int32_t tmqCommitCb(void* param, const SDataBuf* pMsg, int32_t code) {
  SMqCommitCbParam* pParam = (SMqCommitCbParam*)param;
L
Liu Jicong 已提交
374
  pParam->rspErr = code;
L
Liu Jicong 已提交
375 376
  if (pParam->async) {
    if (pParam->automatic && pParam->tmq->commitCb) {
L
Liu Jicong 已提交
377
      pParam->tmq->commitCb(pParam->tmq, pParam->rspErr, pParam->tmq->commitCbUserParam);
L
Liu Jicong 已提交
378
    } else if (!pParam->automatic && pParam->userCb) {
L
Liu Jicong 已提交
379
      pParam->userCb(pParam->tmq, pParam->rspErr, pParam->userParam);
L
Liu Jicong 已提交
380 381
    }

L
Liu Jicong 已提交
382
    if (pParam->freeOffsets) {
L
Liu Jicong 已提交
383 384 385 386 387 388 389 390 391
      taosArrayDestroy(pParam->offsets);
    }

    taosMemoryFree(pParam);
  } else {
    tsem_post(&pParam->rspSem);
  }
  return 0;
}
L
Liu Jicong 已提交
392
#endif
L
Liu Jicong 已提交
393

D
dapan1121 已提交
394
int32_t tmqCommitCb2(void* param, SDataBuf* pBuf, int32_t code) {
395 396 397
  SMqCommitCbParam2*   pParam = (SMqCommitCbParam2*)param;
  SMqCommitCbParamSet* pParamSet = (SMqCommitCbParamSet*)pParam->params;
  // push into array
L
Liu Jicong 已提交
398
#if 0
399 400 401 402 403
  if (code == 0) {
    taosArrayPush(pParamSet->failedOffsets, &pParam->pOffset);
  } else {
    taosArrayPush(pParamSet->successfulOffsets, &pParam->pOffset);
  }
L
Liu Jicong 已提交
404
#endif
L
Liu Jicong 已提交
405

L
Liu Jicong 已提交
406 407 408
  /*tscDebug("receive offset commit cb of %s on vg %d, offset is %ld", pParam->pOffset->subKey, pParam->->vgId,
   * pOffset->version);*/

409
  // count down waiting rsp
L
Liu Jicong 已提交
410
  int32_t waitingRspNum = atomic_sub_fetch_32(&pParamSet->waitingRspNum, 1);
411 412 413 414 415 416 417
  ASSERT(waitingRspNum >= 0);

  if (waitingRspNum == 0) {
    // if no more waiting rsp
    if (pParamSet->async) {
      // call async cb func
      if (pParamSet->automatic && pParamSet->tmq->commitCb) {
L
Liu Jicong 已提交
418
        pParamSet->tmq->commitCb(pParamSet->tmq, pParamSet->rspErr, pParamSet->tmq->commitCbUserParam);
419 420
      } else if (!pParamSet->automatic && pParamSet->userCb) {
        // sem post
L
Liu Jicong 已提交
421
        pParamSet->userCb(pParamSet->tmq, pParamSet->rspErr, pParamSet->userParam);
422
      }
L
Liu Jicong 已提交
423 424
    } else {
      tsem_post(&pParamSet->rspSem);
425 426
    }

L
Liu Jicong 已提交
427
#if 0
428 429
    taosArrayDestroyP(pParamSet->successfulOffsets, taosMemoryFree);
    taosArrayDestroyP(pParamSet->failedOffsets, taosMemoryFree);
L
Liu Jicong 已提交
430
#endif
431 432 433 434
  }
  return 0;
}

L
Liu Jicong 已提交
435 436 437 438 439 440 441
static int32_t tmqSendCommitReq(tmq_t* tmq, SMqClientVg* pVg, SMqClientTopic* pTopic, SMqCommitCbParamSet* pParamSet) {
  STqOffset* pOffset = taosMemoryCalloc(1, sizeof(STqOffset));
  if (pOffset == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }
  pOffset->val = pVg->currentOffsetNew;
442

L
Liu Jicong 已提交
443 444 445 446
  int32_t groupLen = strlen(tmq->groupId);
  memcpy(pOffset->subKey, tmq->groupId, groupLen);
  pOffset->subKey[groupLen] = TMQ_SEPARATOR;
  strcpy(pOffset->subKey + groupLen + 1, pTopic->topicName);
L
Liu Jicong 已提交
447

L
Liu Jicong 已提交
448 449 450 451 452 453 454 455 456 457
  int32_t len;
  int32_t code;
  tEncodeSize(tEncodeSTqOffset, pOffset, len, code);
  if (code < 0) {
    ASSERT(0);
    return -1;
  }
  void* buf = taosMemoryCalloc(1, sizeof(SMsgHead) + len);
  if (buf == NULL) return -1;
  ((SMsgHead*)buf)->vgId = htonl(pVg->vgId);
L
Liu Jicong 已提交
458

L
Liu Jicong 已提交
459 460 461 462 463 464 465 466 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 525 526 527 528 529
  void* abuf = POINTER_SHIFT(buf, sizeof(SMsgHead));

  SEncoder encoder;
  tEncoderInit(&encoder, abuf, len);
  tEncodeSTqOffset(&encoder, pOffset);

  // build param
  SMqCommitCbParam2* pParam = taosMemoryCalloc(1, sizeof(SMqCommitCbParam2));
  pParam->params = pParamSet;
  pParam->pOffset = pOffset;

  // build send info
  SMsgSendInfo* pMsgSendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
  if (pMsgSendInfo == NULL) {
    return -1;
  }
  pMsgSendInfo->msgInfo = (SDataBuf){
      .pData = buf,
      .len = sizeof(SMsgHead) + len,
      .handle = NULL,
  };

  tscDebug("consumer %ld commit offset of %s on vg %d, offset is %ld", tmq->consumerId, pOffset->subKey, pVg->vgId,
           pOffset->val.version);

  // TODO: put into cb
  pVg->committedOffsetNew = pVg->currentOffsetNew;

  pMsgSendInfo->requestId = generateRequestId();
  pMsgSendInfo->requestObjRefId = 0;
  pMsgSendInfo->param = pParam;
  pMsgSendInfo->fp = tmqCommitCb2;
  pMsgSendInfo->msgType = TDMT_VND_MQ_COMMIT_OFFSET;
  // send msg

  int64_t transporterId = 0;
  asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, pMsgSendInfo);
  pParamSet->waitingRspNum++;
  pParamSet->totalRspNum++;
  return 0;
}

int32_t tmqCommitMsgImpl(tmq_t* tmq, const TAOS_RES* msg, int8_t async, tmq_commit_cb* userCb, void* userParam) {
  char*   topic;
  int32_t vgId;
  ASSERT(msg != NULL);
  if (TD_RES_TMQ(msg)) {
    SMqRspObj* pRspObj = (SMqRspObj*)msg;
    topic = pRspObj->topic;
    vgId = pRspObj->vgId;
  } else if (TD_RES_TMQ_META(msg)) {
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)msg;
    topic = pMetaRspObj->topic;
    vgId = pMetaRspObj->vgId;
  } else {
    return TSDB_CODE_TMQ_INVALID_MSG;
  }

  SMqCommitCbParamSet* pParamSet = taosMemoryCalloc(1, sizeof(SMqCommitCbParamSet));
  if (pParamSet == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }
  pParamSet->tmq = tmq;
  pParamSet->automatic = 0;
  pParamSet->async = async;
  /*pParamSet->freeOffsets = 1;*/
  pParamSet->userCb = userCb;
  pParamSet->userParam = userParam;
  tsem_init(&pParamSet->rspSem, 0, 0);

L
Liu Jicong 已提交
530 531
  int32_t code = -1;

L
Liu Jicong 已提交
532 533 534 535 536 537 538 539 540 541
  for (int32_t i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
    SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
    if (strcmp(pTopic->topicName, topic) != 0) continue;
    for (int32_t j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
      SMqClientVg* pVg = taosArrayGet(pTopic->vgs, j);
      if (pVg->vgId != vgId) continue;

      if (pVg->currentOffsetNew.type > 0 && !tOffsetEqual(&pVg->currentOffsetNew, &pVg->committedOffsetNew)) {
        if (tmqSendCommitReq(tmq, pVg, pTopic, pParamSet) < 0) {
          goto FAIL;
L
Liu Jicong 已提交
542
        }
L
Liu Jicong 已提交
543
        goto HANDLE_RSP;
L
Liu Jicong 已提交
544 545
      }
    }
L
Liu Jicong 已提交
546
  }
L
Liu Jicong 已提交
547

L
Liu Jicong 已提交
548 549 550 551
HANDLE_RSP:
  if (pParamSet->totalRspNum == 0) {
    tsem_destroy(&pParamSet->rspSem);
    taosMemoryFree(pParamSet);
L
Liu Jicong 已提交
552 553 554
    return 0;
  }

L
Liu Jicong 已提交
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
  if (!async) {
    tsem_wait(&pParamSet->rspSem);
    code = pParamSet->rspErr;
    tsem_destroy(&pParamSet->rspSem);
    return code;
  } else {
    code = 0;
  }

FAIL:
  if (code != 0 && async) {
    userCb(tmq, code, userParam);
  }
  return 0;
}

int32_t tmqCommitInner2(tmq_t* tmq, const TAOS_RES* msg, int8_t automatic, int8_t async, tmq_commit_cb* userCb,
                        void* userParam) {
  int32_t code = -1;

  if (msg != NULL) {
    return tmqCommitMsgImpl(tmq, msg, async, userCb, userParam);
  }

579 580 581 582 583 584 585 586
  SMqCommitCbParamSet* pParamSet = taosMemoryCalloc(1, sizeof(SMqCommitCbParamSet));
  if (pParamSet == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }
  pParamSet->tmq = tmq;
  pParamSet->automatic = automatic;
  pParamSet->async = async;
L
Liu Jicong 已提交
587
  /*pParamSet->freeOffsets = 1;*/
588 589 590 591 592 593
  pParamSet->userCb = userCb;
  pParamSet->userParam = userParam;
  tsem_init(&pParamSet->rspSem, 0, 0);

  for (int32_t i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
    SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
L
Liu Jicong 已提交
594 595 596 597

    tscDebug("consumer %ld begin commit for topic %s, vgNum %d", tmq->consumerId, pTopic->topicName,
             (int32_t)taosArrayGetSize(pTopic->vgs));

598
    for (int32_t j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
L
Liu Jicong 已提交
599 600 601 602
      SMqClientVg* pVg = taosArrayGet(pTopic->vgs, j);

      tscDebug("consumer %ld begin commit for topic %s, vgId %d", tmq->consumerId, pTopic->topicName, pVg->vgId);

L
Liu Jicong 已提交
603 604 605 606
      if (pVg->currentOffsetNew.type > 0 && !tOffsetEqual(&pVg->currentOffsetNew, &pVg->committedOffsetNew)) {
        if (tmqSendCommitReq(tmq, pVg, pTopic, pParamSet) < 0) {
          continue;
        }
607 608 609 610
      }
    }
  }

L
Liu Jicong 已提交
611 612 613 614 615 616
  if (pParamSet->totalRspNum == 0) {
    tsem_destroy(&pParamSet->rspSem);
    taosMemoryFree(pParamSet);
    return 0;
  }

617 618 619 620 621 622 623 624 625 626
  if (!async) {
    tsem_wait(&pParamSet->rspSem);
    code = pParamSet->rspErr;
    tsem_destroy(&pParamSet->rspSem);
  } else {
    code = 0;
  }

  if (code != 0 && async) {
    if (automatic) {
L
Liu Jicong 已提交
627
      tmq->commitCb(tmq, code, tmq->commitCbUserParam);
628
    } else {
L
Liu Jicong 已提交
629
      userCb(tmq, code, userParam);
630 631 632
    }
  }

L
Liu Jicong 已提交
633
#if 0
634 635 636 637
  if (!async) {
    taosArrayDestroyP(pParamSet->successfulOffsets, taosMemoryFree);
    taosArrayDestroyP(pParamSet->failedOffsets, taosMemoryFree);
  }
L
Liu Jicong 已提交
638
#endif
639 640 641 642

  return 0;
}

L
Liu Jicong 已提交
643 644
#if 0
int32_t tmqCommitInner(tmq_t* tmq, const TAOS_RES* msg, int8_t automatic, int8_t async,
L
Liu Jicong 已提交
645 646 647 648 649 650
                       tmq_commit_cb* userCb, void* userParam) {
  SMqCMCommitOffsetReq req;
  SArray*              pOffsets = NULL;
  void*                buf = NULL;
  SMqCommitCbParam*    pParam = NULL;
  SMsgSendInfo*        sendInfo = NULL;
L
Liu Jicong 已提交
651 652
  int8_t               freeOffsets;
  int32_t              code = -1;
L
Liu Jicong 已提交
653

L
Liu Jicong 已提交
654
  if (msg == NULL) {
L
Liu Jicong 已提交
655
    freeOffsets = 1;
L
Liu Jicong 已提交
656 657 658 659 660 661 662 663 664 665 666 667 668 669
    pOffsets = taosArrayInit(0, sizeof(SMqOffset));
    for (int32_t i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
      SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
      for (int32_t j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
        SMqClientVg* pVg = taosArrayGet(pTopic->vgs, j);
        SMqOffset    offset;
        tstrncpy(offset.topicName, pTopic->topicName, TSDB_TOPIC_FNAME_LEN);
        tstrncpy(offset.cgroup, tmq->groupId, TSDB_CGROUP_LEN);
        offset.vgId = pVg->vgId;
        offset.offset = pVg->currentOffset;
        taosArrayPush(pOffsets, &offset);
      }
    }
  } else {
L
Liu Jicong 已提交
670
    freeOffsets = 0;
L
Liu Jicong 已提交
671
    pOffsets = (SArray*)&msg->container;
L
Liu Jicong 已提交
672 673 674 675 676
  }

  req.num = (int32_t)pOffsets->size;
  req.offsets = pOffsets->pData;

L
Liu Jicong 已提交
677 678 679 680
  SEncoder encoder;

  tEncoderInit(&encoder, NULL, 0);
  code = tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
681 682 683
  if (code < 0) {
    goto END;
  }
L
Liu Jicong 已提交
684
  int32_t tlen = encoder.pos;
L
Liu Jicong 已提交
685 686
  buf = taosMemoryMalloc(tlen);
  if (buf == NULL) {
L
Liu Jicong 已提交
687
    tEncoderClear(&encoder);
L
Liu Jicong 已提交
688 689
    goto END;
  }
L
Liu Jicong 已提交
690 691
  tEncoderClear(&encoder);

L
Liu Jicong 已提交
692 693 694 695 696 697 698 699 700 701 702 703
  tEncoderInit(&encoder, buf, tlen);
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
  tEncoderClear(&encoder);

  pParam = taosMemoryCalloc(1, sizeof(SMqCommitCbParam));
  if (pParam == NULL) {
    goto END;
  }
  pParam->tmq = tmq;
  pParam->automatic = automatic;
  pParam->async = async;
  pParam->offsets = pOffsets;
L
Liu Jicong 已提交
704
  pParam->freeOffsets = freeOffsets;
L
Liu Jicong 已提交
705 706 707 708
  pParam->userCb = userCb;
  pParam->userParam = userParam;
  if (!async) tsem_init(&pParam->rspSem, 0, 0);

709
  sendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
  if (sendInfo == NULL) goto END;
  sendInfo->msgInfo = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };

  sendInfo->requestId = generateRequestId();
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqCommitCb;
  sendInfo->msgType = TDMT_MND_MQ_COMMIT_OFFSET;

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

  int64_t transporterId = 0;
  asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &epSet, &transporterId, sendInfo);

  if (!async) {
    tsem_wait(&pParam->rspSem);
    code = pParam->rspErr;
    tsem_destroy(&pParam->rspSem);
    taosMemoryFree(pParam);
L
Liu Jicong 已提交
733 734
  } else {
    code = 0;
L
Liu Jicong 已提交
735 736 737 738 739 740 741
  }

  // avoid double free if msg is sent
  buf = NULL;

END:
  if (buf) taosMemoryFree(buf);
L
Liu Jicong 已提交
742 743
  /*if (pParam) taosMemoryFree(pParam);*/
  /*if (sendInfo) taosMemoryFree(sendInfo);*/
L
Liu Jicong 已提交
744 745 746

  if (code != 0 && async) {
    if (automatic) {
L
Liu Jicong 已提交
747
      tmq->commitCb(tmq, code, (tmq_topic_vgroup_list_t*)pOffsets, tmq->commitCbUserParam);
L
Liu Jicong 已提交
748
    } else {
L
Liu Jicong 已提交
749
      userCb(tmq, code, (tmq_topic_vgroup_list_t*)pOffsets, userParam);
L
Liu Jicong 已提交
750 751 752
    }
  }

L
Liu Jicong 已提交
753
  if (!async && freeOffsets) {
L
Liu Jicong 已提交
754 755 756 757
    taosArrayDestroy(pOffsets);
  }
  return code;
}
L
Liu Jicong 已提交
758
#endif
L
Liu Jicong 已提交
759

L
Liu Jicong 已提交
760 761
void tmqAssignDelayedHbTask(void* param, void* tmrId) {
  tmq_t*  tmq = (tmq_t*)param;
762
  int8_t* pTaskType = taosAllocateQitem(sizeof(int8_t), DEF_QITEM);
L
Liu Jicong 已提交
763 764
  *pTaskType = TMQ_DELAYED_TASK__HB;
  taosWriteQitem(tmq->delayedTask, pTaskType);
765
  tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
766 767 768 769
}

void tmqAssignDelayedCommitTask(void* param, void* tmrId) {
  tmq_t*  tmq = (tmq_t*)param;
770
  int8_t* pTaskType = taosAllocateQitem(sizeof(int8_t), DEF_QITEM);
L
Liu Jicong 已提交
771 772
  *pTaskType = TMQ_DELAYED_TASK__COMMIT;
  taosWriteQitem(tmq->delayedTask, pTaskType);
773
  tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
774 775 776 777
}

void tmqAssignDelayedReportTask(void* param, void* tmrId) {
  tmq_t*  tmq = (tmq_t*)param;
778
  int8_t* pTaskType = taosAllocateQitem(sizeof(int8_t), DEF_QITEM);
L
Liu Jicong 已提交
779 780
  *pTaskType = TMQ_DELAYED_TASK__REPORT;
  taosWriteQitem(tmq->delayedTask, pTaskType);
781
  tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
782 783 784 785 786 787 788 789 790 791 792
}

int32_t tmqHandleAllDelayedTask(tmq_t* tmq) {
  STaosQall* qall = taosAllocateQall();
  taosReadAllQitems(tmq->delayedTask, qall);
  while (1) {
    int8_t* pTaskType = NULL;
    taosGetQitem(qall, (void**)&pTaskType);
    if (pTaskType == NULL) break;

    if (*pTaskType == TMQ_DELAYED_TASK__HB) {
L
Liu Jicong 已提交
793
      tmqAskEp(tmq, true);
L
Liu Jicong 已提交
794 795
      taosTmrReset(tmqAssignDelayedHbTask, 1000, tmq, tmqMgmt.timer, &tmq->hbTimer);
    } else if (*pTaskType == TMQ_DELAYED_TASK__COMMIT) {
L
Liu Jicong 已提交
796
      tmqCommitInner2(tmq, NULL, 1, 1, tmq->commitCb, tmq->commitCbUserParam);
L
Liu Jicong 已提交
797 798 799 800 801
      taosTmrReset(tmqAssignDelayedCommitTask, tmq->autoCommitInterval, tmq, tmqMgmt.timer, &tmq->commitTimer);
    } else if (*pTaskType == TMQ_DELAYED_TASK__REPORT) {
    } else {
      ASSERT(0);
    }
L
Liu Jicong 已提交
802
    taosFreeQitem(pTaskType);
L
Liu Jicong 已提交
803 804 805 806 807
  }
  taosFreeQall(qall);
  return 0;
}

L
Liu Jicong 已提交
808
void tmqClearUnhandleMsg(tmq_t* tmq) {
L
Liu Jicong 已提交
809
  SMqRspWrapper* msg = NULL;
L
Liu Jicong 已提交
810 811 812 813 814 815 816 817
  while (1) {
    taosGetQitem(tmq->qall, (void**)&msg);
    if (msg)
      taosFreeQitem(msg);
    else
      break;
  }

L
fix  
Liu Jicong 已提交
818
  msg = NULL;
L
Liu Jicong 已提交
819 820 821 822 823 824 825 826 827 828
  taosReadAllQitems(tmq->mqueue, tmq->qall);
  while (1) {
    taosGetQitem(tmq->qall, (void**)&msg);
    if (msg)
      taosFreeQitem(msg);
    else
      break;
  }
}

D
dapan1121 已提交
829
int32_t tmqSubscribeCb(void* param, SDataBuf* pMsg, int32_t code) {
L
Liu Jicong 已提交
830 831
  SMqSubscribeCbParam* pParam = (SMqSubscribeCbParam*)param;
  pParam->rspErr = code;
L
Liu Jicong 已提交
832
  /*tmq_t* tmq = pParam->tmq;*/
L
Liu Jicong 已提交
833 834 835
  tsem_post(&pParam->rspSem);
  return 0;
}
836

L
Liu Jicong 已提交
837
int32_t tmq_subscription(tmq_t* tmq, tmq_list_t** topics) {
X
Xiaoyu Wang 已提交
838 839 840 841
  if (*topics == NULL) {
    *topics = tmq_list_new();
  }
  for (int i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
L
Liu Jicong 已提交
842
    SMqClientTopic* topic = taosArrayGet(tmq->clientTopics, i);
L
Liu Jicong 已提交
843
    tmq_list_append(*topics, strchr(topic->topicName, '.') + 1);
X
Xiaoyu Wang 已提交
844
  }
L
Liu Jicong 已提交
845
  return 0;
X
Xiaoyu Wang 已提交
846 847
}

L
Liu Jicong 已提交
848 849 850
int32_t tmq_unsubscribe(tmq_t* tmq) {
  tmq_list_t* lst = tmq_list_new();
  int32_t     rsp = tmq_subscribe(tmq, lst);
L
Liu Jicong 已提交
851 852
  tmq_list_destroy(lst);
  return rsp;
X
Xiaoyu Wang 已提交
853 854
}

L
Liu Jicong 已提交
855
#if 0
856
tmq_t* tmq_consumer_new(void* conn, tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
wafwerar's avatar
wafwerar 已提交
857
  tmq_t* pTmq = taosMemoryCalloc(sizeof(tmq_t), 1);
858 859 860 861 862 863
  if (pTmq == NULL) {
    return NULL;
  }
  pTmq->pTscObj = (STscObj*)conn;
  pTmq->status = 0;
  pTmq->pollCnt = 0;
L
Liu Jicong 已提交
864
  pTmq->epoch = 0;
L
fix txn  
Liu Jicong 已提交
865
  pTmq->epStatus = 0;
L
temp  
Liu Jicong 已提交
866
  pTmq->epSkipCnt = 0;
L
Liu Jicong 已提交
867
  // set conf
868 869
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
L
Liu Jicong 已提交
870
  pTmq->autoCommit = conf->autoCommit;
871
  pTmq->commit_cb = conf->commit_cb;
L
Liu Jicong 已提交
872
  pTmq->resetOffsetCfg = conf->resetOffset;
L
Liu Jicong 已提交
873

L
Liu Jicong 已提交
874 875 876 877 878 879 880 881 882 883
  pTmq->consumerId = generateRequestId() & (((uint64_t)-1) >> 1);
  pTmq->clientTopics = taosArrayInit(0, sizeof(SMqClientTopic));
  if (pTmq->clientTopics == NULL) {
    taosMemoryFree(pTmq);
    return NULL;
  }

  pTmq->mqueue = taosOpenQueue();
  pTmq->qall = taosAllocateQall();

L
Liu Jicong 已提交
884 885
  tsem_init(&pTmq->rspSem, 0, 0);

L
Liu Jicong 已提交
886 887
  return pTmq;
}
L
Liu Jicong 已提交
888
#endif
L
Liu Jicong 已提交
889

L
Liu Jicong 已提交
890
tmq_t* tmq_consumer_new(tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
L
Liu Jicong 已提交
891 892 893 894 895 896 897 898 899 900 901
  // init timer
  int8_t inited = atomic_val_compare_exchange_8(&tmqMgmt.inited, 0, 1);
  if (inited == 0) {
    tmqMgmt.timer = taosTmrInit(1000, 100, 360000, "TMQ");
    if (tmqMgmt.timer == NULL) {
      atomic_store_8(&tmqMgmt.inited, 0);
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      return NULL;
    }
  }

L
Liu Jicong 已提交
902 903 904 905
  tmq_t* pTmq = taosMemoryCalloc(1, sizeof(tmq_t));
  if (pTmq == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
906

L
Liu Jicong 已提交
907 908 909 910 911
  const char* user = conf->user == NULL ? TSDB_DEFAULT_USER : conf->user;
  const char* pass = conf->pass == NULL ? TSDB_DEFAULT_PASS : conf->pass;

  ASSERT(user);
  ASSERT(pass);
L
Liu Jicong 已提交
912
  ASSERT(conf->groupId[0]);
L
Liu Jicong 已提交
913

L
Liu Jicong 已提交
914 915 916 917 918 919 920 921
  pTmq->clientTopics = taosArrayInit(0, sizeof(SMqClientTopic));
  pTmq->mqueue = taosOpenQueue();
  pTmq->qall = taosAllocateQall();
  pTmq->delayedTask = taosOpenQueue();

  if (pTmq->clientTopics == NULL || pTmq->mqueue == NULL || pTmq->qall == NULL || pTmq->delayedTask == NULL) {
    goto FAIL;
  }
L
Liu Jicong 已提交
922

L
Liu Jicong 已提交
923 924
  // init status
  pTmq->status = TMQ_CONSUMER_STATUS__INIT;
L
Liu Jicong 已提交
925 926
  pTmq->pollCnt = 0;
  pTmq->epoch = 0;
L
Liu Jicong 已提交
927 928
  /*pTmq->epStatus = 0;*/
  /*pTmq->epSkipCnt = 0;*/
L
Liu Jicong 已提交
929

L
Liu Jicong 已提交
930 931 932
  // set conf
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
933
  pTmq->withTbName = conf->withTbName;
L
Liu Jicong 已提交
934
  pTmq->useSnapshot = conf->spEnable;
L
Liu Jicong 已提交
935
  pTmq->autoCommit = conf->autoCommit;
L
Liu Jicong 已提交
936
  pTmq->autoCommitInterval = conf->autoCommitInterval;
L
Liu Jicong 已提交
937 938
  pTmq->commitCb = conf->commitCb;
  pTmq->commitCbUserParam = conf->commitCbUserParam;
L
Liu Jicong 已提交
939 940
  pTmq->resetOffsetCfg = conf->resetOffset;

L
Liu Jicong 已提交
941
  // assign consumerId
L
Liu Jicong 已提交
942
  pTmq->consumerId = tGenIdPI64();
X
Xiaoyu Wang 已提交
943

L
Liu Jicong 已提交
944 945 946 947
  // init semaphore
  if (tsem_init(&pTmq->rspSem, 0, 0) != 0) {
    goto FAIL;
  }
L
Liu Jicong 已提交
948

L
Liu Jicong 已提交
949 950 951 952 953 954
  // init connection
  pTmq->pTscObj = taos_connect_internal(conf->ip, user, pass, NULL, NULL, conf->port, CONN_TYPE__TMQ);
  if (pTmq->pTscObj == NULL) {
    tsem_destroy(&pTmq->rspSem);
    goto FAIL;
  }
L
Liu Jicong 已提交
955

956
  return pTmq;
L
Liu Jicong 已提交
957 958 959 960 961 962 963 964

FAIL:
  if (pTmq->clientTopics) taosArrayDestroy(pTmq->clientTopics);
  if (pTmq->mqueue) taosCloseQueue(pTmq->mqueue);
  if (pTmq->delayedTask) taosCloseQueue(pTmq->delayedTask);
  if (pTmq->qall) taosFreeQall(pTmq->qall);
  taosMemoryFree(pTmq);
  return NULL;
965 966
}

L
Liu Jicong 已提交
967 968
#if 0
int32_t tmq_commit(tmq_t* tmq, const tmq_topic_vgroup_list_t* offsets, int32_t async) {
L
Liu Jicong 已提交
969
  return tmqCommitInner2(tmq, offsets, 0, async, tmq->commitCb, tmq->commitCbUserParam);
L
Liu Jicong 已提交
970
}
L
Liu Jicong 已提交
971
#endif
L
Liu Jicong 已提交
972

L
Liu Jicong 已提交
973
int32_t tmq_subscribe(tmq_t* tmq, const tmq_list_t* topic_list) {
L
Liu Jicong 已提交
974 975 976 977 978
  const SArray*   container = &topic_list->container;
  int32_t         sz = taosArrayGetSize(container);
  void*           buf = NULL;
  SCMSubscribeReq req = {0};
  int32_t         code = -1;
979 980

  req.consumerId = tmq->consumerId;
L
Liu Jicong 已提交
981
  tstrncpy(req.cgroup, tmq->groupId, TSDB_CGROUP_LEN);
982
  req.topicNames = taosArrayInit(sz, sizeof(void*));
L
Liu Jicong 已提交
983
  if (req.topicNames == NULL) goto FAIL;
984

L
Liu Jicong 已提交
985 986
  for (int32_t i = 0; i < sz; i++) {
    char* topic = taosArrayGetP(container, i);
987 988

    SName name = {0};
L
Liu Jicong 已提交
989
    tNameSetDbName(&name, tmq->pTscObj->acctId, topic, strlen(topic));
990

L
Liu Jicong 已提交
991 992 993
    char* topicFName = taosMemoryCalloc(1, TSDB_TOPIC_FNAME_LEN);
    if (topicFName == NULL) {
      goto FAIL;
994
    }
L
Liu Jicong 已提交
995
    tNameExtractFullName(&name, topicFName);
996

L
Liu Jicong 已提交
997 998 999
    tscDebug("subscribe topic: %s", topicFName);

    taosArrayPush(req.topicNames, &topicFName);
1000 1001
  }

L
Liu Jicong 已提交
1002 1003 1004 1005
  int32_t tlen = tSerializeSCMSubscribeReq(NULL, &req);
  buf = taosMemoryMalloc(tlen);
  if (buf == NULL) goto FAIL;

1006 1007 1008
  void* abuf = buf;
  tSerializeSCMSubscribeReq(&abuf, &req);

1009
  SMsgSendInfo* sendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1010
  if (sendInfo == NULL) goto FAIL;
1011

X
Xiaoyu Wang 已提交
1012
  SMqSubscribeCbParam param = {
L
Liu Jicong 已提交
1013
      .rspErr = 0,
X
Xiaoyu Wang 已提交
1014 1015
      .tmq = tmq,
  };
L
Liu Jicong 已提交
1016

L
Liu Jicong 已提交
1017 1018 1019
  if (tsem_init(&param.rspSem, 0, 0) != 0) goto FAIL;

  sendInfo->msgInfo = (SDataBuf){
X
Xiaoyu Wang 已提交
1020 1021 1022 1023
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
1024

L
Liu Jicong 已提交
1025 1026
  sendInfo->requestId = generateRequestId();
  sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1027 1028
  sendInfo->param = &param;
  sendInfo->fp = tmqSubscribeCb;
L
Liu Jicong 已提交
1029 1030
  sendInfo->msgType = TDMT_MND_SUBSCRIBE;

1031 1032 1033 1034 1035
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

  int64_t transporterId = 0;
  asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &epSet, &transporterId, sendInfo);

L
Liu Jicong 已提交
1036 1037 1038
  // avoid double free if msg is sent
  buf = NULL;

L
Liu Jicong 已提交
1039 1040
  tsem_wait(&param.rspSem);
  tsem_destroy(&param.rspSem);
1041

L
Liu Jicong 已提交
1042 1043 1044
  code = param.rspErr;
  if (code != 0) goto FAIL;

L
Liu Jicong 已提交
1045
  while (TSDB_CODE_MND_CONSUMER_NOT_READY == tmqAskEp(tmq, false)) {
L
fix  
Liu Jicong 已提交
1046
    tscDebug("consumer not ready, retry");
L
Liu Jicong 已提交
1047 1048
    taosMsleep(500);
  }
1049

L
Liu Jicong 已提交
1050
  // init hb timer
1051 1052 1053
  if (tmq->hbTimer == NULL) {
    tmq->hbTimer = taosTmrStart(tmqAssignDelayedHbTask, 1000, tmq, tmqMgmt.timer);
  }
L
Liu Jicong 已提交
1054 1055

  // init auto commit timer
1056
  if (tmq->autoCommit && tmq->commitTimer == NULL) {
L
Liu Jicong 已提交
1057 1058 1059
    tmq->commitTimer = taosTmrStart(tmqAssignDelayedCommitTask, tmq->autoCommitInterval, tmq, tmqMgmt.timer);
  }

L
Liu Jicong 已提交
1060 1061 1062
  code = 0;
FAIL:
  if (req.topicNames != NULL) taosArrayDestroyP(req.topicNames, taosMemoryFree);
L
Liu Jicong 已提交
1063
  if (code != 0 && buf) {
L
Liu Jicong 已提交
1064 1065 1066
    taosMemoryFree(buf);
  }
  return code;
1067 1068
}

L
Liu Jicong 已提交
1069
void tmq_conf_set_auto_commit_cb(tmq_conf_t* conf, tmq_commit_cb* cb, void* param) {
L
Liu Jicong 已提交
1070
  //
1071
  conf->commitCb = cb;
L
Liu Jicong 已提交
1072
  conf->commitCbUserParam = param;
L
Liu Jicong 已提交
1073
}
1074

L
Liu Jicong 已提交
1075
#if 0
L
Liu Jicong 已提交
1076 1077
int32_t tmqGetSkipLogNum(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return 0;
L
Liu Jicong 已提交
1078
  SMqPollRsp* pRsp = &tmq_message->msg;
L
Liu Jicong 已提交
1079 1080
  return pRsp->skipLogNum;
}
L
Liu Jicong 已提交
1081
#endif
L
Liu Jicong 已提交
1082

D
dapan1121 已提交
1083
int32_t tmqPollCb(void* param, SDataBuf* pMsg, int32_t code) {
X
Xiaoyu Wang 已提交
1084 1085
  SMqPollCbParam* pParam = (SMqPollCbParam*)param;
  SMqClientVg*    pVg = pParam->pVg;
L
Liu Jicong 已提交
1086
  SMqClientTopic* pTopic = pParam->pTopic;
X
Xiaoyu Wang 已提交
1087
  tmq_t*          tmq = pParam->tmq;
L
Liu Jicong 已提交
1088 1089 1090
  int32_t         vgId = pParam->vgId;
  int32_t         epoch = pParam->epoch;
  taosMemoryFree(pParam);
L
Liu Jicong 已提交
1091
  if (code != 0) {
L
Liu Jicong 已提交
1092 1093
    tscWarn("msg discard from vg %d, epoch %d, code:%x", vgId, epoch, code);
    if (pMsg->pData) taosMemoryFree(pMsg->pData);
L
Liu Jicong 已提交
1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
    if (code == TSDB_CODE_TQ_NO_COMMITTED_OFFSET) {
      SMqPollRspWrapper* pRspWrapper = taosAllocateQitem(sizeof(SMqPollRspWrapper), DEF_QITEM);
      if (pRspWrapper == NULL) {
        taosMemoryFree(pMsg->pData);
        tscWarn("msg discard from vg %d, epoch %d since out of memory", vgId, epoch);
        goto CREATE_MSG_FAIL;
      }
      pRspWrapper->tmqRspType = TMQ_MSG_TYPE__END_RSP;
      /*pRspWrapper->vgHandle = pVg;*/
      /*pRspWrapper->topicHandle = pTopic;*/
      taosWriteQitem(tmq->mqueue, pRspWrapper);
      tsem_post(&tmq->rspSem);
    }
L
fix txn  
Liu Jicong 已提交
1107
    goto CREATE_MSG_FAIL;
L
Liu Jicong 已提交
1108 1109
  }

X
Xiaoyu Wang 已提交
1110 1111 1112
  int32_t msgEpoch = ((SMqRspHead*)pMsg->pData)->epoch;
  int32_t tmqEpoch = atomic_load_32(&tmq->epoch);
  if (msgEpoch < tmqEpoch) {
L
Liu Jicong 已提交
1113
    // do not write into queue since updating epoch reset
L
Liu Jicong 已提交
1114
    tscWarn("msg discard from vg %d since from earlier epoch, rsp epoch %d, current epoch %d", vgId, msgEpoch,
L
Liu Jicong 已提交
1115
            tmqEpoch);
1116
    tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
1117
    taosMemoryFree(pMsg->pData);
X
Xiaoyu Wang 已提交
1118 1119 1120 1121
    return 0;
  }

  if (msgEpoch != tmqEpoch) {
L
Liu Jicong 已提交
1122
    tscWarn("mismatch rsp from vg %d, epoch %d, current epoch %d", vgId, msgEpoch, tmqEpoch);
X
Xiaoyu Wang 已提交
1123 1124
  }

L
Liu Jicong 已提交
1125 1126 1127
  // handle meta rsp
  int8_t rspType = ((SMqRspHead*)pMsg->pData)->mqMsgType;

1128
  SMqPollRspWrapper* pRspWrapper = taosAllocateQitem(sizeof(SMqPollRspWrapper), DEF_QITEM);
L
Liu Jicong 已提交
1129
  if (pRspWrapper == NULL) {
L
Liu Jicong 已提交
1130 1131
    taosMemoryFree(pMsg->pData);
    tscWarn("msg discard from vg %d, epoch %d since out of memory", vgId, epoch);
L
fix txn  
Liu Jicong 已提交
1132
    goto CREATE_MSG_FAIL;
L
Liu Jicong 已提交
1133
  }
L
Liu Jicong 已提交
1134

L
Liu Jicong 已提交
1135
  pRspWrapper->tmqRspType = rspType;
L
Liu Jicong 已提交
1136 1137
  pRspWrapper->vgHandle = pVg;
  pRspWrapper->topicHandle = pTopic;
L
Liu Jicong 已提交
1138

L
Liu Jicong 已提交
1139
  if (rspType == TMQ_MSG_TYPE__POLL_RSP) {
L
Liu Jicong 已提交
1140 1141 1142
    SDecoder decoder;
    tDecoderInit(&decoder, POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), pMsg->len - sizeof(SMqRspHead));
    tDecodeSMqDataRsp(&decoder, &pRspWrapper->dataRsp);
L
Liu Jicong 已提交
1143
    memcpy(&pRspWrapper->dataRsp, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
1144
    /*tDecodeSMqDataBlkRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pRspWrapper->dataRsp);*/
L
Liu Jicong 已提交
1145 1146
  } else {
    ASSERT(rspType == TMQ_MSG_TYPE__POLL_META_RSP);
L
Liu Jicong 已提交
1147
    memcpy(&pRspWrapper->metaRsp, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
1148 1149
    tDecodeSMqMetaRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pRspWrapper->metaRsp);
  }
L
Liu Jicong 已提交
1150

L
Liu Jicong 已提交
1151
  taosMemoryFree(pMsg->pData);
L
Liu Jicong 已提交
1152

L
Liu Jicong 已提交
1153
  tscDebug("consumer %ld recv poll: vg %d, req offset %ld, rsp offset %ld, type %d", tmq->consumerId, pVg->vgId,
L
Liu Jicong 已提交
1154
           pRspWrapper->dataRsp.reqOffset.version, pRspWrapper->dataRsp.rspOffset.version, rspType);
L
fix  
Liu Jicong 已提交
1155

L
Liu Jicong 已提交
1156
  taosWriteQitem(tmq->mqueue, pRspWrapper);
1157
  tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
1158

L
Liu Jicong 已提交
1159
  return 0;
L
fix txn  
Liu Jicong 已提交
1160
CREATE_MSG_FAIL:
L
Liu Jicong 已提交
1161
  if (epoch == tmq->epoch) {
L
Liu Jicong 已提交
1162 1163
    atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
  }
1164
  tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
1165
  return -1;
1166 1167
}

1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195
bool tmqUpdateEp2(tmq_t* tmq, int32_t epoch, SMqAskEpRsp* pRsp) {
  bool set = false;

  int32_t topicNumGet = taosArrayGetSize(pRsp->topics);
  char    vgKey[TSDB_TOPIC_FNAME_LEN + 22];
  tscDebug("consumer %ld update ep epoch %d to epoch %d, topic num: %d", tmq->consumerId, tmq->epoch, epoch,
           topicNumGet);

  SArray* newTopics = taosArrayInit(topicNumGet, sizeof(SMqClientTopic));
  if (newTopics == NULL) {
    return false;
  }

  SHashObj* pHash = taosHashInit(64, MurmurHash3_32, false, HASH_NO_LOCK);
  if (pHash == NULL) {
    taosArrayDestroy(newTopics);
    return false;
  }
  int32_t topicNumCur = taosArrayGetSize(tmq->clientTopics);
  for (int32_t i = 0; i < topicNumCur; i++) {
    // find old topic
    SMqClientTopic* pTopicCur = taosArrayGet(tmq->clientTopics, i);
    if (pTopicCur->vgs) {
      int32_t vgNumCur = taosArrayGetSize(pTopicCur->vgs);
      tscDebug("consumer %ld new vg num: %d", tmq->consumerId, vgNumCur);
      for (int32_t j = 0; j < vgNumCur; j++) {
        SMqClientVg* pVgCur = taosArrayGet(pTopicCur->vgs, j);
        sprintf(vgKey, "%s:%d", pTopicCur->topicName, pVgCur->vgId);
L
Liu Jicong 已提交
1196 1197 1198 1199 1200
        char buf[50];
        tFormatOffset(buf, 50, &pVgCur->currentOffsetNew);
        tscDebug("consumer %ld epoch %d vg %d vgKey is %s, offset is %s", tmq->consumerId, epoch, pVgCur->vgId, vgKey,
                 buf);
        taosHashPut(pHash, vgKey, strlen(vgKey), &pVgCur->currentOffsetNew, sizeof(STqOffsetVal));
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
      }
    }
  }

  for (int32_t i = 0; i < topicNumGet; i++) {
    SMqClientTopic topic = {0};
    SMqSubTopicEp* pTopicEp = taosArrayGet(pRsp->topics, i);
    topic.schema = pTopicEp->schema;
    topic.topicName = strdup(pTopicEp->topic);
    tstrncpy(topic.db, pTopicEp->db, TSDB_DB_FNAME_LEN);

    tscDebug("consumer %ld update topic: %s", tmq->consumerId, topic.topicName);

    int32_t vgNumGet = taosArrayGetSize(pTopicEp->vgs);
    topic.vgs = taosArrayInit(vgNumGet, sizeof(SMqClientVg));
    for (int32_t j = 0; j < vgNumGet; j++) {
      SMqSubVgEp* pVgEp = taosArrayGet(pTopicEp->vgs, j);
      sprintf(vgKey, "%s:%d", topic.topicName, pVgEp->vgId);
L
Liu Jicong 已提交
1219 1220
      STqOffsetVal* pOffset = taosHashGet(pHash, vgKey, strlen(vgKey));
      STqOffsetVal  offsetNew = {.type = tmq->resetOffsetCfg};
1221
      if (pOffset != NULL) {
L
Liu Jicong 已提交
1222
        offsetNew = *pOffset;
1223 1224
      }

L
Liu Jicong 已提交
1225 1226
      /*tscDebug("consumer %ld(epoch %d) offset of vg %d updated to %ld, vgKey is %s", tmq->consumerId, epoch,*/
      /*pVgEp->vgId, offset, vgKey);*/
1227 1228
      SMqClientVg clientVg = {
          .pollCnt = 0,
L
Liu Jicong 已提交
1229
          .currentOffsetNew = offsetNew,
1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
          .vgId = pVgEp->vgId,
          .epSet = pVgEp->epSet,
          .vgStatus = TMQ_VG_STATUS__IDLE,
          .vgSkipCnt = 0,
      };
      taosArrayPush(topic.vgs, &clientVg);
      set = true;
    }
    taosArrayPush(newTopics, &topic);
  }
  if (tmq->clientTopics) taosArrayDestroy(tmq->clientTopics);
  taosHashCleanup(pHash);
  tmq->clientTopics = newTopics;

  if (taosArrayGetSize(tmq->clientTopics) == 0)
    atomic_store_8(&tmq->status, TMQ_CONSUMER_STATUS__NO_TOPIC);
  else
    atomic_store_8(&tmq->status, TMQ_CONSUMER_STATUS__READY);

  atomic_store_32(&tmq->epoch, epoch);
  return set;
}

L
Liu Jicong 已提交
1253
#if 0
L
Liu Jicong 已提交
1254
bool tmqUpdateEp(tmq_t* tmq, int32_t epoch, SMqAskEpRsp* pRsp) {
L
Liu Jicong 已提交
1255
  /*printf("call update ep %d\n", epoch);*/
X
Xiaoyu Wang 已提交
1256
  bool    set = false;
L
Liu Jicong 已提交
1257 1258
  int32_t topicNumGet = taosArrayGetSize(pRsp->topics);
  char    vgKey[TSDB_TOPIC_FNAME_LEN + 22];
L
Liu Jicong 已提交
1259 1260
  tscDebug("consumer %ld update ep epoch %d to epoch %d, topic num: %d", tmq->consumerId, tmq->epoch, epoch,
           topicNumGet);
L
Liu Jicong 已提交
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
  SArray* newTopics = taosArrayInit(topicNumGet, sizeof(SMqClientTopic));
  if (newTopics == NULL) {
    return false;
  }
  SHashObj* pHash = taosHashInit(64, MurmurHash3_32, false, HASH_NO_LOCK);
  if (pHash == NULL) {
    taosArrayDestroy(newTopics);
    return false;
  }

  // find topic, build hash
  for (int32_t i = 0; i < topicNumGet; i++) {
X
Xiaoyu Wang 已提交
1273 1274
    SMqClientTopic topic = {0};
    SMqSubTopicEp* pTopicEp = taosArrayGet(pRsp->topics, i);
L
Liu Jicong 已提交
1275
    topic.schema = pTopicEp->schema;
L
Liu Jicong 已提交
1276
    taosHashClear(pHash);
X
Xiaoyu Wang 已提交
1277
    topic.topicName = strdup(pTopicEp->topic);
L
Liu Jicong 已提交
1278
    tstrncpy(topic.db, pTopicEp->db, TSDB_DB_FNAME_LEN);
L
Liu Jicong 已提交
1279

L
Liu Jicong 已提交
1280
    tscDebug("consumer %ld update topic: %s", tmq->consumerId, topic.topicName);
L
Liu Jicong 已提交
1281 1282 1283 1284 1285 1286
    int32_t topicNumCur = taosArrayGetSize(tmq->clientTopics);
    for (int32_t j = 0; j < topicNumCur; j++) {
      // find old topic
      SMqClientTopic* pTopicCur = taosArrayGet(tmq->clientTopics, j);
      if (pTopicCur->vgs && strcmp(pTopicCur->topicName, pTopicEp->topic) == 0) {
        int32_t vgNumCur = taosArrayGetSize(pTopicCur->vgs);
L
Liu Jicong 已提交
1287
        tscDebug("consumer %ld new vg num: %d", tmq->consumerId, vgNumCur);
L
Liu Jicong 已提交
1288 1289 1290 1291
        if (vgNumCur == 0) break;
        for (int32_t k = 0; k < vgNumCur; k++) {
          SMqClientVg* pVgCur = taosArrayGet(pTopicCur->vgs, k);
          sprintf(vgKey, "%s:%d", topic.topicName, pVgCur->vgId);
L
Liu Jicong 已提交
1292
          tscDebug("consumer %ld epoch %d vg %d build %s", tmq->consumerId, epoch, pVgCur->vgId, vgKey);
L
Liu Jicong 已提交
1293 1294 1295 1296 1297 1298 1299 1300 1301
          taosHashPut(pHash, vgKey, strlen(vgKey), &pVgCur->currentOffset, sizeof(int64_t));
        }
        break;
      }
    }

    int32_t vgNumGet = taosArrayGetSize(pTopicEp->vgs);
    topic.vgs = taosArrayInit(vgNumGet, sizeof(SMqClientVg));
    for (int32_t j = 0; j < vgNumGet; j++) {
X
Xiaoyu Wang 已提交
1302
      SMqSubVgEp* pVgEp = taosArrayGet(pTopicEp->vgs, j);
L
Liu Jicong 已提交
1303 1304 1305
      sprintf(vgKey, "%s:%d", topic.topicName, pVgEp->vgId);
      int64_t* pOffset = taosHashGet(pHash, vgKey, strlen(vgKey));
      int64_t  offset = pVgEp->offset;
1306
      tscDebug("consumer %ld(epoch %d) original offset of vg %d is %ld", tmq->consumerId, epoch, pVgEp->vgId, offset);
L
Liu Jicong 已提交
1307 1308
      if (pOffset != NULL) {
        offset = *pOffset;
1309 1310
        tscDebug("consumer %ld(epoch %d) receive offset of vg %d, full key is %s", tmq->consumerId, epoch, pVgEp->vgId,
                 vgKey);
L
Liu Jicong 已提交
1311
      }
1312
      tscDebug("consumer %ld(epoch %d) offset of vg %d updated to %ld", tmq->consumerId, epoch, pVgEp->vgId, offset);
X
Xiaoyu Wang 已提交
1313 1314
      SMqClientVg clientVg = {
          .pollCnt = 0,
L
Liu Jicong 已提交
1315
          .currentOffset = offset,
X
Xiaoyu Wang 已提交
1316 1317 1318
          .vgId = pVgEp->vgId,
          .epSet = pVgEp->epSet,
          .vgStatus = TMQ_VG_STATUS__IDLE,
L
Liu Jicong 已提交
1319
          .vgSkipCnt = 0,
X
Xiaoyu Wang 已提交
1320 1321 1322 1323
      };
      taosArrayPush(topic.vgs, &clientVg);
      set = true;
    }
L
Liu Jicong 已提交
1324
    taosArrayPush(newTopics, &topic);
X
Xiaoyu Wang 已提交
1325
  }
L
Liu Jicong 已提交
1326
  if (tmq->clientTopics) taosArrayDestroy(tmq->clientTopics);
L
Liu Jicong 已提交
1327
  taosHashCleanup(pHash);
L
Liu Jicong 已提交
1328
  tmq->clientTopics = newTopics;
1329

1330 1331 1332 1333
  if (taosArrayGetSize(tmq->clientTopics) == 0)
    atomic_store_8(&tmq->status, TMQ_CONSUMER_STATUS__NO_TOPIC);
  else
    atomic_store_8(&tmq->status, TMQ_CONSUMER_STATUS__READY);
1334

X
Xiaoyu Wang 已提交
1335 1336 1337
  atomic_store_32(&tmq->epoch, epoch);
  return set;
}
L
Liu Jicong 已提交
1338
#endif
X
Xiaoyu Wang 已提交
1339

D
dapan1121 已提交
1340
int32_t tmqAskEpCb(void* param, SDataBuf* pMsg, int32_t code) {
1341
  SMqAskEpCbParam* pParam = (SMqAskEpCbParam*)param;
L
Liu Jicong 已提交
1342
  tmq_t*           tmq = pParam->tmq;
L
Liu Jicong 已提交
1343
  int8_t           async = pParam->async;
L
Liu Jicong 已提交
1344
  pParam->code = code;
1345
  if (code != 0) {
L
Liu Jicong 已提交
1346
    tscError("consumer %ld get topic endpoint error, not ready, wait:%d", tmq->consumerId, pParam->async);
L
Liu Jicong 已提交
1347
    goto END;
1348
  }
L
Liu Jicong 已提交
1349

L
Liu Jicong 已提交
1350
  // tmq's epoch is monotonically increase,
L
Liu Jicong 已提交
1351
  // so it's safe to discard any old epoch msg.
L
Liu Jicong 已提交
1352
  // Epoch will only increase when received newer epoch ep msg
L
Liu Jicong 已提交
1353 1354
  SMqRspHead* head = pMsg->pData;
  int32_t     epoch = atomic_load_32(&tmq->epoch);
L
temp  
Liu Jicong 已提交
1355
  tscDebug("consumer %ld recv ep, msg epoch %d, current epoch %d", tmq->consumerId, head->epoch, epoch);
L
Liu Jicong 已提交
1356 1357
  if (head->epoch <= epoch) {
    goto END;
1358
  }
L
Liu Jicong 已提交
1359

L
Liu Jicong 已提交
1360
  if (!async) {
L
Liu Jicong 已提交
1361 1362
    SMqAskEpRsp rsp;
    tDecodeSMqAskEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &rsp);
X
Xiaoyu Wang 已提交
1363 1364
    /*printf("rsp epoch %ld sz %ld\n", rsp.epoch, rsp.topics->size);*/
    /*printf("tmq epoch %ld sz %ld\n", tmq->epoch, tmq->clientTopics->size);*/
L
Liu Jicong 已提交
1365
    tmqUpdateEp2(tmq, head->epoch, &rsp);
L
Liu Jicong 已提交
1366
    tDeleteSMqAskEpRsp(&rsp);
X
Xiaoyu Wang 已提交
1367
  } else {
1368
    SMqAskEpRspWrapper* pWrapper = taosAllocateQitem(sizeof(SMqAskEpRspWrapper), DEF_QITEM);
L
Liu Jicong 已提交
1369
    if (pWrapper == NULL) {
X
Xiaoyu Wang 已提交
1370
      terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
1371 1372
      code = -1;
      goto END;
X
Xiaoyu Wang 已提交
1373
    }
L
Liu Jicong 已提交
1374 1375 1376
    pWrapper->tmqRspType = TMQ_MSG_TYPE__EP_RSP;
    pWrapper->epoch = head->epoch;
    memcpy(&pWrapper->msg, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
1377
    tDecodeSMqAskEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pWrapper->msg);
L
Liu Jicong 已提交
1378

L
Liu Jicong 已提交
1379
    taosWriteQitem(tmq->mqueue, pWrapper);
1380
    tsem_post(&tmq->rspSem);
1381
  }
L
Liu Jicong 已提交
1382 1383

END:
L
Liu Jicong 已提交
1384
  /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1385
  if (!async) {
L
Liu Jicong 已提交
1386
    tsem_post(&pParam->rspSem);
L
Liu Jicong 已提交
1387 1388
  } else {
    taosMemoryFree(pParam);
L
Liu Jicong 已提交
1389 1390
  }
  return code;
1391 1392
}

L
Liu Jicong 已提交
1393
int32_t tmqAskEp(tmq_t* tmq, bool async) {
L
Liu Jicong 已提交
1394
  int32_t code = 0;
L
Liu Jicong 已提交
1395
#if 0
L
Liu Jicong 已提交
1396
  int8_t  epStatus = atomic_val_compare_exchange_8(&tmq->epStatus, 0, 1);
L
fix txn  
Liu Jicong 已提交
1397
  if (epStatus == 1) {
L
temp  
Liu Jicong 已提交
1398
    int32_t epSkipCnt = atomic_add_fetch_32(&tmq->epSkipCnt, 1);
L
Liu Jicong 已提交
1399
    tscTrace("consumer %ld skip ask ep cnt %d", tmq->consumerId, epSkipCnt);
L
Liu Jicong 已提交
1400
    if (epSkipCnt < 5000) return 0;
L
fix txn  
Liu Jicong 已提交
1401
  }
L
temp  
Liu Jicong 已提交
1402
  atomic_store_32(&tmq->epSkipCnt, 0);
L
Liu Jicong 已提交
1403
#endif
L
Liu Jicong 已提交
1404
  int32_t      tlen = sizeof(SMqAskEpReq);
L
Liu Jicong 已提交
1405
  SMqAskEpReq* req = taosMemoryCalloc(1, tlen);
L
Liu Jicong 已提交
1406
  if (req == NULL) {
L
Liu Jicong 已提交
1407
    tscError("failed to malloc get subscribe ep buf");
L
Liu Jicong 已提交
1408
    /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1409
    return -1;
L
Liu Jicong 已提交
1410
  }
L
Liu Jicong 已提交
1411 1412 1413
  req->consumerId = htobe64(tmq->consumerId);
  req->epoch = htonl(tmq->epoch);
  strcpy(req->cgroup, tmq->groupId);
1414

L
Liu Jicong 已提交
1415
  SMqAskEpCbParam* pParam = taosMemoryCalloc(1, sizeof(SMqAskEpCbParam));
L
Liu Jicong 已提交
1416 1417
  if (pParam == NULL) {
    tscError("failed to malloc subscribe param");
wafwerar's avatar
wafwerar 已提交
1418
    taosMemoryFree(req);
L
Liu Jicong 已提交
1419
    /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1420
    return -1;
L
Liu Jicong 已提交
1421 1422
  }
  pParam->tmq = tmq;
L
Liu Jicong 已提交
1423
  pParam->async = async;
X
Xiaoyu Wang 已提交
1424
  tsem_init(&pParam->rspSem, 0, 0);
1425

1426
  SMsgSendInfo* sendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1427 1428
  if (sendInfo == NULL) {
    tsem_destroy(&pParam->rspSem);
wafwerar's avatar
wafwerar 已提交
1429 1430
    taosMemoryFree(pParam);
    taosMemoryFree(req);
L
Liu Jicong 已提交
1431
    /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1432 1433 1434 1435 1436 1437 1438 1439 1440 1441
    return -1;
  }

  sendInfo->msgInfo = (SDataBuf){
      .pData = req,
      .len = tlen,
      .handle = NULL,
  };

  sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
1442 1443 1444
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqAskEpCb;
L
Liu Jicong 已提交
1445
  sendInfo->msgType = TDMT_MND_MQ_ASK_EP;
1446

L
Liu Jicong 已提交
1447 1448
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

L
add log  
Liu Jicong 已提交
1449 1450
  tscDebug("consumer %ld ask ep", tmq->consumerId);

L
Liu Jicong 已提交
1451 1452
  int64_t transporterId = 0;
  asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &epSet, &transporterId, sendInfo);
1453

L
Liu Jicong 已提交
1454
  if (!async) {
L
Liu Jicong 已提交
1455 1456 1457 1458 1459
    tsem_wait(&pParam->rspSem);
    code = pParam->code;
    taosMemoryFree(pParam);
  }
  return code;
1460 1461
}

L
Liu Jicong 已提交
1462 1463
#if 0
int32_t tmq_seek(tmq_t* tmq, const tmq_topic_vgroup_t* offset) {
L
Liu Jicong 已提交
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
  const SMqOffset* pOffset = &offset->offset;
  if (strcmp(pOffset->cgroup, tmq->groupId) != 0) {
    return TMQ_RESP_ERR__FAIL;
  }
  int32_t sz = taosArrayGetSize(tmq->clientTopics);
  for (int32_t i = 0; i < sz; i++) {
    SMqClientTopic* clientTopic = taosArrayGet(tmq->clientTopics, i);
    if (strcmp(clientTopic->topicName, pOffset->topicName) == 0) {
      int32_t vgSz = taosArrayGetSize(clientTopic->vgs);
      for (int32_t j = 0; j < vgSz; j++) {
        SMqClientVg* pVg = taosArrayGet(clientTopic->vgs, j);
        if (pVg->vgId == pOffset->vgId) {
          pVg->currentOffset = pOffset->offset;
L
Liu Jicong 已提交
1477
          tmqClearUnhandleMsg(tmq);
L
Liu Jicong 已提交
1478 1479 1480 1481 1482 1483 1484
          return TMQ_RESP_ERR__SUCCESS;
        }
      }
    }
  }
  return TMQ_RESP_ERR__FAIL;
}
L
Liu Jicong 已提交
1485
#endif
L
Liu Jicong 已提交
1486

1487
SMqPollReq* tmqBuildConsumeReqImpl(tmq_t* tmq, int64_t timeout, SMqClientTopic* pTopic, SMqClientVg* pVg) {
L
Liu Jicong 已提交
1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
  /*int64_t reqOffset;*/
  /*if (pVg->currentOffset >= 0) {*/
  /*reqOffset = pVg->currentOffset;*/
  /*} else {*/
  /*if (tmq->resetOffsetCfg == TMQ_CONF__RESET_OFFSET__NONE) {*/
  /*tscError("unable to poll since no committed offset but reset offset is set to none");*/
  /*return NULL;*/
  /*}*/
  /*reqOffset = tmq->resetOffsetCfg;*/
  /*}*/
L
Liu Jicong 已提交
1498

L
Liu Jicong 已提交
1499
  SMqPollReq* pReq = taosMemoryCalloc(1, sizeof(SMqPollReq));
1500 1501 1502
  if (pReq == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
1503

L
Liu Jicong 已提交
1504 1505 1506
  /*strcpy(pReq->topic, pTopic->topicName);*/
  /*strcpy(pReq->cgroup, tmq->groupId);*/

L
Liu Jicong 已提交
1507 1508 1509 1510
  int32_t groupLen = strlen(tmq->groupId);
  memcpy(pReq->subKey, tmq->groupId, groupLen);
  pReq->subKey[groupLen] = TMQ_SEPARATOR;
  strcpy(pReq->subKey + groupLen + 1, pTopic->topicName);
1511

1512
  pReq->withTbName = tmq->withTbName;
1513
  pReq->timeout = timeout;
L
Liu Jicong 已提交
1514
  pReq->consumerId = tmq->consumerId;
X
Xiaoyu Wang 已提交
1515
  pReq->epoch = tmq->epoch;
L
Liu Jicong 已提交
1516 1517
  /*pReq->currentOffset = reqOffset;*/
  pReq->reqOffset = pVg->currentOffsetNew;
L
Liu Jicong 已提交
1518
  pReq->reqId = generateRequestId();
1519

L
Liu Jicong 已提交
1520 1521
  pReq->useSnapshot = tmq->useSnapshot;

1522
  pReq->head.vgId = htonl(pVg->vgId);
L
Liu Jicong 已提交
1523
  pReq->head.contLen = htonl(sizeof(SMqPollReq));
1524 1525 1526
  return pReq;
}

L
Liu Jicong 已提交
1527 1528
SMqMetaRspObj* tmqBuildMetaRspFromWrapper(SMqPollRspWrapper* pWrapper) {
  SMqMetaRspObj* pRspObj = taosMemoryCalloc(1, sizeof(SMqMetaRspObj));
L
Liu Jicong 已提交
1529
  pRspObj->resType = RES_TYPE__TMQ_META;
L
Liu Jicong 已提交
1530 1531 1532 1533 1534 1535 1536 1537
  tstrncpy(pRspObj->topic, pWrapper->topicHandle->topicName, TSDB_TOPIC_FNAME_LEN);
  tstrncpy(pRspObj->db, pWrapper->topicHandle->db, TSDB_DB_FNAME_LEN);
  pRspObj->vgId = pWrapper->vgHandle->vgId;

  memcpy(&pRspObj->metaRsp, &pWrapper->metaRsp, sizeof(SMqMetaRsp));
  return pRspObj;
}

L
Liu Jicong 已提交
1538 1539 1540
SMqRspObj* tmqBuildRspFromWrapper(SMqPollRspWrapper* pWrapper) {
  SMqRspObj* pRspObj = taosMemoryCalloc(1, sizeof(SMqRspObj));
  pRspObj->resType = RES_TYPE__TMQ;
L
Liu Jicong 已提交
1541 1542
  tstrncpy(pRspObj->topic, pWrapper->topicHandle->topicName, TSDB_TOPIC_FNAME_LEN);
  tstrncpy(pRspObj->db, pWrapper->topicHandle->db, TSDB_DB_FNAME_LEN);
L
Liu Jicong 已提交
1543
  pRspObj->vgId = pWrapper->vgHandle->vgId;
L
Liu Jicong 已提交
1544
  pRspObj->resIter = -1;
L
Liu Jicong 已提交
1545
  memcpy(&pRspObj->rsp, &pWrapper->dataRsp, sizeof(SMqDataRsp));
L
Liu Jicong 已提交
1546

L
Liu Jicong 已提交
1547 1548
  pRspObj->resInfo.totalRows = 0;
  pRspObj->resInfo.precision = TSDB_TIME_PRECISION_MILLI;
L
Liu Jicong 已提交
1549
  if (!pWrapper->dataRsp.withSchema) {
L
Liu Jicong 已提交
1550 1551
    setResSchemaInfo(&pRspObj->resInfo, pWrapper->topicHandle->schema.pSchema, pWrapper->topicHandle->schema.nCols);
  }
L
Liu Jicong 已提交
1552

L
Liu Jicong 已提交
1553
  return pRspObj;
X
Xiaoyu Wang 已提交
1554 1555
}

1556
int32_t tmqPollImpl(tmq_t* tmq, int64_t timeout) {
L
Liu Jicong 已提交
1557
  /*tscDebug("call poll");*/
X
Xiaoyu Wang 已提交
1558 1559 1560 1561 1562 1563
  for (int i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
    SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
    for (int j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
      SMqClientVg* pVg = taosArrayGet(pTopic->vgs, j);
      int32_t      vgStatus = atomic_val_compare_exchange_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE, TMQ_VG_STATUS__WAIT);
      if (vgStatus != TMQ_VG_STATUS__IDLE) {
L
Liu Jicong 已提交
1564
        int32_t vgSkipCnt = atomic_add_fetch_32(&pVg->vgSkipCnt, 1);
L
Liu Jicong 已提交
1565
        tscTrace("consumer %ld epoch %d skip vg %d skip cnt %d", tmq->consumerId, tmq->epoch, pVg->vgId, vgSkipCnt);
X
Xiaoyu Wang 已提交
1566
        continue;
L
Liu Jicong 已提交
1567
        /*if (vgSkipCnt < 10000) continue;*/
L
temp  
Liu Jicong 已提交
1568 1569 1570 1571 1572 1573 1574
#if 0
        if (skipCnt < 30000) {
          continue;
        } else {
        tscDebug("consumer %ld skip vg %d skip too much reset", tmq->consumerId, pVg->vgId);
        }
#endif
X
Xiaoyu Wang 已提交
1575
      }
L
Liu Jicong 已提交
1576
      atomic_store_32(&pVg->vgSkipCnt, 0);
1577
      SMqPollReq* pReq = tmqBuildConsumeReqImpl(tmq, timeout, pTopic, pVg);
X
Xiaoyu Wang 已提交
1578 1579
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
1580
        tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
1581 1582
        return -1;
      }
wafwerar's avatar
wafwerar 已提交
1583
      SMqPollCbParam* pParam = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1584
      if (pParam == NULL) {
wafwerar's avatar
wafwerar 已提交
1585
        taosMemoryFree(pReq);
X
Xiaoyu Wang 已提交
1586
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
1587
        tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
1588 1589
        return -1;
      }
L
Liu Jicong 已提交
1590 1591
      pParam->tmq = tmq;
      pParam->pVg = pVg;
L
Liu Jicong 已提交
1592
      pParam->pTopic = pTopic;
L
Liu Jicong 已提交
1593
      pParam->vgId = pVg->vgId;
L
Liu Jicong 已提交
1594 1595
      pParam->epoch = tmq->epoch;

1596
      SMsgSendInfo* sendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1597
      if (sendInfo == NULL) {
wafwerar's avatar
wafwerar 已提交
1598 1599
        taosMemoryFree(pReq);
        taosMemoryFree(pParam);
L
Liu Jicong 已提交
1600
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
1601
        tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
1602 1603 1604 1605
        return -1;
      }

      sendInfo->msgInfo = (SDataBuf){
X
Xiaoyu Wang 已提交
1606
          .pData = pReq,
L
Liu Jicong 已提交
1607
          .len = sizeof(SMqPollReq),
X
Xiaoyu Wang 已提交
1608 1609
          .handle = NULL,
      };
L
Liu Jicong 已提交
1610
      sendInfo->requestId = pReq->reqId;
X
Xiaoyu Wang 已提交
1611
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1612
      sendInfo->param = pParam;
X
Xiaoyu Wang 已提交
1613
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
1614
      sendInfo->msgType = TDMT_VND_CONSUME;
X
Xiaoyu Wang 已提交
1615 1616

      int64_t transporterId = 0;
L
fix  
Liu Jicong 已提交
1617
      /*printf("send poll\n");*/
L
Liu Jicong 已提交
1618

1619 1620
      char offsetFormatBuf[80];
      tFormatOffset(offsetFormatBuf, 80, &pVg->currentOffsetNew);
L
Liu Jicong 已提交
1621 1622
      tscDebug("consumer %ld send poll to %s : vg %d, epoch %d, req offset %s, reqId %lu", tmq->consumerId,
               pTopic->topicName, pVg->vgId, tmq->epoch, offsetFormatBuf, pReq->reqId);
L
fix  
Liu Jicong 已提交
1623
      /*printf("send vg %d %ld\n", pVg->vgId, pVg->currentOffset);*/
X
Xiaoyu Wang 已提交
1624 1625 1626 1627 1628 1629 1630 1631
      asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, sendInfo);
      pVg->pollCnt++;
      tmq->pollCnt++;
    }
  }
  return 0;
}

L
Liu Jicong 已提交
1632 1633
int32_t tmqHandleNoPollRsp(tmq_t* tmq, SMqRspWrapper* rspWrapper, bool* pReset) {
  if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__EP_RSP) {
L
fix  
Liu Jicong 已提交
1634
    /*printf("ep %d %d\n", rspMsg->head.epoch, tmq->epoch);*/
L
Liu Jicong 已提交
1635 1636
    if (rspWrapper->epoch > atomic_load_32(&tmq->epoch)) {
      SMqAskEpRspWrapper* pEpRspWrapper = (SMqAskEpRspWrapper*)rspWrapper;
L
Liu Jicong 已提交
1637
      SMqAskEpRsp*        rspMsg = &pEpRspWrapper->msg;
L
Liu Jicong 已提交
1638
      tmqUpdateEp2(tmq, rspWrapper->epoch, rspMsg);
L
temp  
Liu Jicong 已提交
1639
      /*tmqClearUnhandleMsg(tmq);*/
X
Xiaoyu Wang 已提交
1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
      *pReset = true;
    } else {
      *pReset = false;
    }
  } else {
    return -1;
  }
  return 0;
}

L
Liu Jicong 已提交
1650
void* tmqHandleAllRsp(tmq_t* tmq, int64_t timeout, bool pollIfReset) {
X
Xiaoyu Wang 已提交
1651
  while (1) {
L
Liu Jicong 已提交
1652 1653 1654
    SMqRspWrapper* rspWrapper = NULL;
    taosGetQitem(tmq->qall, (void**)&rspWrapper);
    if (rspWrapper == NULL) {
L
Liu Jicong 已提交
1655
      taosReadAllQitems(tmq->mqueue, tmq->qall);
L
Liu Jicong 已提交
1656 1657
      taosGetQitem(tmq->qall, (void**)&rspWrapper);
      if (rspWrapper == NULL) return NULL;
X
Xiaoyu Wang 已提交
1658 1659
    }

L
Liu Jicong 已提交
1660 1661 1662 1663 1664
    if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__END_RSP) {
      taosFreeQitem(rspWrapper);
      terrno = TSDB_CODE_TQ_NO_COMMITTED_OFFSET;
      return NULL;
    } else if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__POLL_RSP) {
L
Liu Jicong 已提交
1665
      SMqPollRspWrapper* pollRspWrapper = (SMqPollRspWrapper*)rspWrapper;
L
Liu Jicong 已提交
1666
      /*atomic_sub_fetch_32(&tmq->readyRequest, 1);*/
1667
      int32_t consumerEpoch = atomic_load_32(&tmq->epoch);
L
Liu Jicong 已提交
1668
      if (pollRspWrapper->dataRsp.head.epoch == consumerEpoch) {
L
Liu Jicong 已提交
1669
        SMqClientVg* pVg = pollRspWrapper->vgHandle;
L
Liu Jicong 已提交
1670
        /*printf("vg %d offset %ld up to %ld\n", pVg->vgId, pVg->currentOffset, rspMsg->msg.rspOffset);*/
L
Liu Jicong 已提交
1671
        pVg->currentOffsetNew = pollRspWrapper->dataRsp.rspOffset;
X
Xiaoyu Wang 已提交
1672
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
Liu Jicong 已提交
1673
        if (pollRspWrapper->dataRsp.blockNum == 0) {
L
Liu Jicong 已提交
1674 1675
          taosFreeQitem(pollRspWrapper);
          rspWrapper = NULL;
L
temp  
Liu Jicong 已提交
1676 1677
          continue;
        }
L
Liu Jicong 已提交
1678
        // build rsp
L
Liu Jicong 已提交
1679
        SMqRspObj* pRsp = tmqBuildRspFromWrapper(pollRspWrapper);
L
Liu Jicong 已提交
1680
        taosFreeQitem(pollRspWrapper);
L
Liu Jicong 已提交
1681
        return pRsp;
X
Xiaoyu Wang 已提交
1682
      } else {
L
Liu Jicong 已提交
1683 1684 1685 1686 1687 1688 1689
        tscDebug("msg discard since epoch mismatch: msg epoch %d, consumer epoch %d\n",
                 pollRspWrapper->dataRsp.head.epoch, consumerEpoch);
        taosFreeQitem(pollRspWrapper);
      }
    } else if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__POLL_META_RSP) {
      SMqPollRspWrapper* pollRspWrapper = (SMqPollRspWrapper*)rspWrapper;
      int32_t            consumerEpoch = atomic_load_32(&tmq->epoch);
L
Liu Jicong 已提交
1690
      if (pollRspWrapper->metaRsp.head.epoch == consumerEpoch) {
L
Liu Jicong 已提交
1691 1692
        SMqClientVg* pVg = pollRspWrapper->vgHandle;
        /*printf("vg %d offset %ld up to %ld\n", pVg->vgId, pVg->currentOffset, rspMsg->msg.rspOffset);*/
wmmhello's avatar
wmmhello 已提交
1693 1694
        pVg->currentOffsetNew.version = pollRspWrapper->metaRsp.rspOffset;
        pVg->currentOffsetNew.type = TMQ_OFFSET__LOG;
L
Liu Jicong 已提交
1695 1696
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // build rsp
L
Liu Jicong 已提交
1697
        SMqMetaRspObj* pRsp = tmqBuildMetaRspFromWrapper(pollRspWrapper);
L
Liu Jicong 已提交
1698 1699 1700 1701
        taosFreeQitem(pollRspWrapper);
        return pRsp;
      } else {
        tscDebug("msg discard since epoch mismatch: msg epoch %d, consumer epoch %d\n",
L
Liu Jicong 已提交
1702
                 pollRspWrapper->metaRsp.head.epoch, consumerEpoch);
L
Liu Jicong 已提交
1703
        taosFreeQitem(pollRspWrapper);
X
Xiaoyu Wang 已提交
1704 1705
      }
    } else {
L
fix  
Liu Jicong 已提交
1706
      /*printf("handle ep rsp %d\n", rspMsg->head.mqMsgType);*/
X
Xiaoyu Wang 已提交
1707
      bool reset = false;
L
Liu Jicong 已提交
1708 1709
      tmqHandleNoPollRsp(tmq, rspWrapper, &reset);
      taosFreeQitem(rspWrapper);
X
Xiaoyu Wang 已提交
1710
      if (pollIfReset && reset) {
L
add log  
Liu Jicong 已提交
1711
        tscDebug("consumer %ld reset and repoll", tmq->consumerId);
1712
        tmqPollImpl(tmq, timeout);
X
Xiaoyu Wang 已提交
1713 1714 1715 1716 1717
      }
    }
  }
}

1718
TAOS_RES* tmq_consumer_poll(tmq_t* tmq, int64_t timeout) {
L
Liu Jicong 已提交
1719
  /*tscDebug("call poll1");*/
L
Liu Jicong 已提交
1720 1721
  void*   rspObj;
  int64_t startTime = taosGetTimestampMs();
L
Liu Jicong 已提交
1722

1723 1724 1725
#if 0
  tmqHandleAllDelayedTask(tmq);
  tmqPollImpl(tmq, timeout);
1726
  rspObj = tmqHandleAllRsp(tmq, timeout, false);
L
Liu Jicong 已提交
1727 1728
  if (rspObj) {
    return (TAOS_RES*)rspObj;
L
fix  
Liu Jicong 已提交
1729
  }
1730
#endif
X
Xiaoyu Wang 已提交
1731

L
Liu Jicong 已提交
1732
  // in no topic status also need process delayed task
L
Liu Jicong 已提交
1733
  if (atomic_load_8(&tmq->status) == TMQ_CONSUMER_STATUS__INIT) {
1734 1735 1736
    return NULL;
  }

X
Xiaoyu Wang 已提交
1737
  while (1) {
L
Liu Jicong 已提交
1738
    tmqHandleAllDelayedTask(tmq);
1739
    if (tmqPollImpl(tmq, timeout) < 0) return NULL;
L
Liu Jicong 已提交
1740

1741
    rspObj = tmqHandleAllRsp(tmq, timeout, false);
L
Liu Jicong 已提交
1742 1743
    if (rspObj) {
      return (TAOS_RES*)rspObj;
L
Liu Jicong 已提交
1744 1745
    } else if (terrno == TSDB_CODE_TQ_NO_COMMITTED_OFFSET) {
      return NULL;
X
Xiaoyu Wang 已提交
1746
    }
1747
    if (timeout != -1) {
X
Xiaoyu Wang 已提交
1748
      int64_t endTime = taosGetTimestampMs();
1749
      int64_t leftTime = endTime - startTime;
1750
      if (leftTime > timeout) {
L
Liu Jicong 已提交
1751
        tscDebug("consumer %ld (epoch %d) timeout, no rsp", tmq->consumerId, tmq->epoch);
X
Xiaoyu Wang 已提交
1752 1753
        return NULL;
      }
1754
      tsem_timewait(&tmq->rspSem, leftTime * 1000);
L
Liu Jicong 已提交
1755 1756 1757
    } else {
      // use tsem_timewait instead of tsem_wait to avoid unexpected stuck
      tsem_timewait(&tmq->rspSem, 500 * 1000);
X
Xiaoyu Wang 已提交
1758 1759 1760 1761
    }
  }
}

L
Liu Jicong 已提交
1762
int32_t tmq_consumer_close(tmq_t* tmq) {
1763
  if (tmq->status == TMQ_CONSUMER_STATUS__READY) {
L
Liu Jicong 已提交
1764 1765
    int32_t rsp = tmq_commit_sync(tmq, NULL);
    if (rsp != 0) {
L
Liu Jicong 已提交
1766
      return rsp;
1767 1768 1769 1770
    }

    tmq_list_t* lst = tmq_list_new();
    rsp = tmq_subscribe(tmq, lst);
1771
    tmq_list_destroy(lst);
1772

L
Liu Jicong 已提交
1773
    if (rsp != 0) {
L
Liu Jicong 已提交
1774
      return rsp;
1775
    }
L
Liu Jicong 已提交
1776
  }
1777
  // TODO: free resources
L
Liu Jicong 已提交
1778
  return 0;
1779
}
L
Liu Jicong 已提交
1780

L
Liu Jicong 已提交
1781 1782
const char* tmq_err2str(int32_t err) {
  if (err == 0) {
L
Liu Jicong 已提交
1783
    return "success";
L
Liu Jicong 已提交
1784
  } else if (err == -1) {
L
Liu Jicong 已提交
1785 1786 1787
    return "fail";
  } else {
    return tstrerror(err);
L
Liu Jicong 已提交
1788 1789
  }
}
L
Liu Jicong 已提交
1790

L
Liu Jicong 已提交
1791 1792 1793 1794 1795 1796 1797 1798 1799 1800
tmq_res_t tmq_get_res_type(TAOS_RES* res) {
  if (TD_RES_TMQ(res)) {
    return TMQ_RES_DATA;
  } else if (TD_RES_TMQ_META(res)) {
    return TMQ_RES_TABLE_META;
  } else {
    return TMQ_RES_INVALID;
  }
}

L
Liu Jicong 已提交
1801
const char* tmq_get_topic_name(TAOS_RES* res) {
L
Liu Jicong 已提交
1802 1803
  if (TD_RES_TMQ(res)) {
    SMqRspObj* pRspObj = (SMqRspObj*)res;
L
Liu Jicong 已提交
1804
    return strchr(pRspObj->topic, '.') + 1;
L
Liu Jicong 已提交
1805 1806 1807
  } else if (TD_RES_TMQ_META(res)) {
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
    return strchr(pMetaRspObj->topic, '.') + 1;
L
Liu Jicong 已提交
1808 1809 1810 1811 1812
  } else {
    return NULL;
  }
}

L
Liu Jicong 已提交
1813 1814 1815 1816
const char* tmq_get_db_name(TAOS_RES* res) {
  if (TD_RES_TMQ(res)) {
    SMqRspObj* pRspObj = (SMqRspObj*)res;
    return strchr(pRspObj->db, '.') + 1;
L
Liu Jicong 已提交
1817 1818 1819
  } else if (TD_RES_TMQ_META(res)) {
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
    return strchr(pMetaRspObj->db, '.') + 1;
L
Liu Jicong 已提交
1820 1821 1822 1823 1824
  } else {
    return NULL;
  }
}

L
Liu Jicong 已提交
1825 1826 1827 1828
int32_t tmq_get_vgroup_id(TAOS_RES* res) {
  if (TD_RES_TMQ(res)) {
    SMqRspObj* pRspObj = (SMqRspObj*)res;
    return pRspObj->vgId;
L
Liu Jicong 已提交
1829 1830 1831
  } else if (TD_RES_TMQ_META(res)) {
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
    return pMetaRspObj->vgId;
L
Liu Jicong 已提交
1832 1833 1834 1835
  } else {
    return -1;
  }
}
L
Liu Jicong 已提交
1836 1837 1838 1839 1840 1841 1842 1843

const char* tmq_get_table_name(TAOS_RES* res) {
  if (TD_RES_TMQ(res)) {
    SMqRspObj* pRspObj = (SMqRspObj*)res;
    if (!pRspObj->rsp.withTbName || pRspObj->rsp.blockTbName == NULL || pRspObj->resIter < 0 ||
        pRspObj->resIter >= pRspObj->rsp.blockNum) {
      return NULL;
    }
1844
    return (const char*)taosArrayGetP(pRspObj->rsp.blockTbName, pRspObj->resIter);
L
Liu Jicong 已提交
1845 1846 1847
  }
  return NULL;
}
1848

wmmhello's avatar
wmmhello 已提交
1849
tmq_raw_data *tmq_get_raw_meta(TAOS_RES* res) {
L
Liu Jicong 已提交
1850
  if (TD_RES_TMQ_META(res)) {
wmmhello's avatar
wmmhello 已提交
1851
    tmq_raw_data *raw = taosMemoryCalloc(1, sizeof(tmq_raw_data));
L
Liu Jicong 已提交
1852
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
wmmhello's avatar
wmmhello 已提交
1853 1854 1855 1856
    raw->raw_meta = pMetaRspObj->metaRsp.metaRsp;
    raw->raw_meta_len = pMetaRspObj->metaRsp.metaRspLen;
    raw->raw_meta_type = pMetaRspObj->metaRsp.resMsgType;
    return raw;
L
Liu Jicong 已提交
1857
  }
wmmhello's avatar
wmmhello 已提交
1858
  return NULL;
L
Liu Jicong 已提交
1859 1860
}

wmmhello's avatar
wmmhello 已提交
1861 1862 1863 1864 1865 1866 1867 1868
static char *buildCreateTableJson(SSchemaWrapper *schemaRow, SSchemaWrapper* schemaTag, char* name, int64_t id, int8_t t){
  char*  string = NULL;
  cJSON* json = cJSON_CreateObject();
  if (json == NULL) {
    return string;
  }
  cJSON* type = cJSON_CreateString("create");
  cJSON_AddItemToObject(json, "type", type);
wmmhello's avatar
wmmhello 已提交
1869 1870 1871 1872 1873

  char uid[32] = {0};
  sprintf(uid, "%"PRIi64, id);
  cJSON* id_ = cJSON_CreateString(uid);
  cJSON_AddItemToObject(json, "id", id_);
wmmhello's avatar
wmmhello 已提交
1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888
  cJSON* tableName = cJSON_CreateString(name);
  cJSON_AddItemToObject(json, "tableName", tableName);
  cJSON* tableType = cJSON_CreateString(t == TSDB_NORMAL_TABLE ? "normal" : "super");
  cJSON_AddItemToObject(json, "tableType", tableType);
//  cJSON* version = cJSON_CreateNumber(1);
//  cJSON_AddItemToObject(json, "version", version);

  cJSON* columns = cJSON_CreateArray();
  for(int i = 0; i < schemaRow->nCols; i++){
    cJSON* column = cJSON_CreateObject();
    SSchema *s = schemaRow->pSchema + i;
    cJSON* cname = cJSON_CreateString(s->name);
    cJSON_AddItemToObject(column, "name", cname);
    cJSON* ctype = cJSON_CreateNumber(s->type);
    cJSON_AddItemToObject(column, "type", ctype);
wmmhello's avatar
wmmhello 已提交
1889 1890 1891 1892 1893 1894 1895 1896 1897
    if(s->type == TSDB_DATA_TYPE_BINARY){
      int32_t length = s->bytes - VARSTR_HEADER_SIZE;
      cJSON* cbytes = cJSON_CreateNumber(length);
      cJSON_AddItemToObject(column, "length", cbytes);
    }else if (s->type == TSDB_DATA_TYPE_NCHAR){
      int32_t length = (s->bytes - VARSTR_HEADER_SIZE)/TSDB_NCHAR_SIZE;
      cJSON* cbytes = cJSON_CreateNumber(length);
      cJSON_AddItemToObject(column, "length", cbytes);
    }
wmmhello's avatar
wmmhello 已提交
1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909
    cJSON_AddItemToArray(columns, column);
  }
  cJSON_AddItemToObject(json, "columns", columns);

  cJSON* tags = cJSON_CreateArray();
  for(int i = 0; schemaTag && i < schemaTag->nCols; i++){
    cJSON* tag = cJSON_CreateObject();
    SSchema *s = schemaTag->pSchema + i;
    cJSON* tname = cJSON_CreateString(s->name);
    cJSON_AddItemToObject(tag, "name", tname);
    cJSON* ttype = cJSON_CreateNumber(s->type);
    cJSON_AddItemToObject(tag, "type", ttype);
wmmhello's avatar
wmmhello 已提交
1910 1911 1912 1913 1914 1915 1916 1917 1918
    if(s->type == TSDB_DATA_TYPE_BINARY){
      int32_t length = s->bytes - VARSTR_HEADER_SIZE;
      cJSON* cbytes = cJSON_CreateNumber(length);
      cJSON_AddItemToObject(tag, "length", cbytes);
    }else if (s->type == TSDB_DATA_TYPE_NCHAR){
      int32_t length = (s->bytes - VARSTR_HEADER_SIZE)/TSDB_NCHAR_SIZE;
      cJSON* cbytes = cJSON_CreateNumber(length);
      cJSON_AddItemToObject(tag, "length", cbytes);
    }
wmmhello's avatar
wmmhello 已提交
1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957
    cJSON_AddItemToArray(tags, tag);
  }
  cJSON_AddItemToObject(json, "tags", tags);

  string = cJSON_PrintUnformatted(json);
  cJSON_Delete(json);
  return string;
}

static char *processCreateStb(SMqMetaRsp *metaRsp){
  SVCreateStbReq req = {0};
  SDecoder       coder;
  char*  string = NULL;

  // decode and process req
  void* data = POINTER_SHIFT(metaRsp->metaRsp, sizeof(SMsgHead));
  int32_t len = metaRsp->metaRspLen - sizeof(SMsgHead);
  tDecoderInit(&coder, data, len);

  if (tDecodeSVCreateStbReq(&coder, &req) < 0) {
    goto _err;
  }
  string = buildCreateTableJson(&req.schemaRow, &req.schemaTag, req.name, req.suid, TSDB_SUPER_TABLE);
  tDecoderClear(&coder);
  return string;

_err:
  tDecoderClear(&coder);
  return string;
}

static char *buildCreateCTableJson(STag* pTag, int64_t sid, char* name, int64_t id){
  char*  string = NULL;
  cJSON* json = cJSON_CreateObject();
  if (json == NULL) {
    return string;
  }
  cJSON* type = cJSON_CreateString("create");
  cJSON_AddItemToObject(json, "type", type);
wmmhello's avatar
wmmhello 已提交
1958 1959 1960 1961 1962
  char cid[32] = {0};
  sprintf(cid, "%"PRIi64, id);
  cJSON* cid_ = cJSON_CreateString(cid);
  cJSON_AddItemToObject(json, "id", cid_);

wmmhello's avatar
wmmhello 已提交
1963 1964 1965 1966
  cJSON* tableName = cJSON_CreateString(name);
  cJSON_AddItemToObject(json, "tableName", tableName);
  cJSON* tableType = cJSON_CreateString("child");
  cJSON_AddItemToObject(json, "tableType", tableType);
wmmhello's avatar
wmmhello 已提交
1967 1968 1969 1970

  char sid_[32] = {0};
  sprintf(sid_, "%"PRIi64, sid);
  cJSON* using = cJSON_CreateString(sid_);
wmmhello's avatar
wmmhello 已提交
1971 1972 1973 1974 1975 1976 1977 1978 1979 1980
  cJSON_AddItemToObject(json, "using", using);
//  cJSON* version = cJSON_CreateNumber(1);
//  cJSON_AddItemToObject(json, "version", version);

  cJSON* tags = cJSON_CreateArray();

  if (tTagIsJson(pTag)) {   // todo
    char* pJson = parseTagDatatoJson(pTag);

    cJSON* tag = cJSON_CreateObject();
wmmhello's avatar
wmmhello 已提交
1981 1982
    cJSON* tname = cJSON_CreateString("unknown");                 // todo
    cJSON_AddItemToObject(tag, "name", tname);
wmmhello's avatar
wmmhello 已提交
1983 1984
    cJSON* ttype = cJSON_CreateNumber(TSDB_DATA_TYPE_JSON);
    cJSON_AddItemToObject(tag, "type", ttype);
wmmhello's avatar
wmmhello 已提交
1985
    cJSON* tvalue = cJSON_CreateString(pJson);
wmmhello's avatar
wmmhello 已提交
1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999
    cJSON_AddItemToObject(tag, "value", tvalue);
    cJSON_AddItemToArray(tags, tag);
    cJSON_AddItemToObject(json, "tags", tags);

    string = cJSON_PrintUnformatted(json);
    goto end;
  }

  SArray* pTagVals = NULL;
  int32_t code = tTagToValArray(pTag, &pTagVals);
  if (code) {
    goto end;
  }

wmmhello's avatar
wmmhello 已提交
2000
  for(int i = 0; i < taosArrayGetSize(pTagVals); i++){
wmmhello's avatar
wmmhello 已提交
2001 2002 2003
    STagVal* pTagVal = (STagVal*)taosArrayGet(pTagVals, i);

    cJSON* tag = cJSON_CreateObject();
wmmhello's avatar
wmmhello 已提交
2004 2005 2006
//    cJSON* tname = cJSON_CreateNumber(pTagVal->cid);
    cJSON* tname = cJSON_CreateString("unkonwn");    // todo
    cJSON_AddItemToObject(tag, "name", tname);
wmmhello's avatar
wmmhello 已提交
2007 2008
    cJSON* ttype = cJSON_CreateNumber(pTagVal->type);
    cJSON_AddItemToObject(tag, "type", ttype);
wmmhello's avatar
wmmhello 已提交
2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020

    char* buf = NULL;
    if (IS_VAR_DATA_TYPE(pTagVal->type)) {
      buf = taosMemoryCalloc(pTagVal->nData + 1, 1);
      dataConverToStr(buf, pTagVal->type, pTagVal->pData, pTagVal->nData, NULL);
    } else {
      buf = taosMemoryCalloc(32, 1);
      dataConverToStr(buf, pTagVal->type, &pTagVal->i64, tDataTypes[pTagVal->type].bytes, NULL);
    }

    cJSON* tvalue = cJSON_CreateString(buf);
    taosMemoryFree(buf);
wmmhello's avatar
wmmhello 已提交
2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085
    cJSON_AddItemToObject(tag, "value", tvalue);
    cJSON_AddItemToArray(tags, tag);
  }
  cJSON_AddItemToObject(json, "tags", tags);
  string = cJSON_PrintUnformatted(json);

end:

  cJSON_Delete(json);
  return string;
}

static char *processCreateTable(SMqMetaRsp *metaRsp){
  SDecoder           decoder = {0};
  SVCreateTbBatchReq req = {0};
  SVCreateTbReq     *pCreateReq;
  char              *string = NULL;
  // decode
  void* data = POINTER_SHIFT(metaRsp->metaRsp, sizeof(SMsgHead));
  int32_t len = metaRsp->metaRspLen - sizeof(SMsgHead);
  tDecoderInit(&decoder, data, len);
  if (tDecodeSVCreateTbBatchReq(&decoder, &req) < 0) {
    goto _exit;
  }

  // loop to create table
  for (int32_t iReq = 0; iReq < req.nReqs; iReq++) {
    pCreateReq = req.pReqs + iReq;
    if(pCreateReq->type == TSDB_CHILD_TABLE){
      string = buildCreateCTableJson((STag*)pCreateReq->ctb.pTag, pCreateReq->ctb.suid, pCreateReq->name, pCreateReq->uid);
    }else if(pCreateReq->type == TSDB_NORMAL_TABLE){
      string = buildCreateTableJson(&pCreateReq->ntb.schemaRow, NULL, pCreateReq->name, pCreateReq->uid, TSDB_NORMAL_TABLE);
    }
  }

  tDecoderClear(&decoder);

  _exit:
  tDecoderClear(&decoder);
  return string;
}

static char *processAlterTable(SMqMetaRsp *metaRsp){
  SDecoder           decoder = {0};
  SVAlterTbReq       vAlterTbReq = {0};
  char              *string = NULL;

  // decode
  void* data = POINTER_SHIFT(metaRsp->metaRsp, sizeof(SMsgHead));
  int32_t len = metaRsp->metaRspLen - sizeof(SMsgHead);
  tDecoderInit(&decoder, data, len);
  if (tDecodeSVAlterTbReq(&decoder, &vAlterTbReq) < 0) {
    goto _exit;
  }

  cJSON* json = cJSON_CreateObject();
  if (json == NULL) {
    goto _exit;
  }
  cJSON* type = cJSON_CreateString("alter");
  cJSON_AddItemToObject(json, "type", type);
//  cJSON* uid = cJSON_CreateNumber(id);
//  cJSON_AddItemToObject(json, "uid", uid);
  cJSON* tableName = cJSON_CreateString(vAlterTbReq.tbName);
  cJSON_AddItemToObject(json, "tableName", tableName);
wmmhello's avatar
wmmhello 已提交
2086
  cJSON* tableType = cJSON_CreateString(vAlterTbReq.action == TSDB_ALTER_TABLE_UPDATE_TAG_VAL ? "child" : "normal");
wmmhello's avatar
wmmhello 已提交
2087 2088 2089 2090 2091 2092 2093 2094 2095 2096
  cJSON_AddItemToObject(json, "tableType", tableType);

  switch (vAlterTbReq.action) {
    case TSDB_ALTER_TABLE_ADD_COLUMN: {
      cJSON* alterType = cJSON_CreateNumber(TSDB_ALTER_TABLE_ADD_COLUMN);
      cJSON_AddItemToObject(json, "alterType", alterType);
      cJSON* colName = cJSON_CreateString(vAlterTbReq.colName);
      cJSON_AddItemToObject(json, "colName", colName);
      cJSON* colType = cJSON_CreateNumber(vAlterTbReq.type);
      cJSON_AddItemToObject(json, "colType", colType);
wmmhello's avatar
wmmhello 已提交
2097 2098 2099 2100 2101 2102 2103 2104 2105 2106

      if(vAlterTbReq.type == TSDB_DATA_TYPE_BINARY){
        int32_t length = vAlterTbReq.bytes - VARSTR_HEADER_SIZE;
        cJSON* cbytes = cJSON_CreateNumber(length);
        cJSON_AddItemToObject(json, "colLength", cbytes);
      }else if (vAlterTbReq.type == TSDB_DATA_TYPE_NCHAR){
        int32_t length = (vAlterTbReq.bytes - VARSTR_HEADER_SIZE)/TSDB_NCHAR_SIZE;
        cJSON* cbytes = cJSON_CreateNumber(length);
        cJSON_AddItemToObject(json, "colLength", cbytes);
      }
wmmhello's avatar
wmmhello 已提交
2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122
      break;
    }
    case TSDB_ALTER_TABLE_DROP_COLUMN:{
      cJSON* alterType = cJSON_CreateNumber(TSDB_ALTER_TABLE_DROP_COLUMN);
      cJSON_AddItemToObject(json, "alterType", alterType);
      cJSON* colName = cJSON_CreateString(vAlterTbReq.colName);
      cJSON_AddItemToObject(json, "colName", colName);
      break;
    }
    case TSDB_ALTER_TABLE_UPDATE_COLUMN_BYTES:{
      cJSON* alterType = cJSON_CreateNumber(TSDB_ALTER_TABLE_UPDATE_COLUMN_BYTES);
      cJSON_AddItemToObject(json, "alterType", alterType);
      cJSON* colName = cJSON_CreateString(vAlterTbReq.colName);
      cJSON_AddItemToObject(json, "colName", colName);
      cJSON* colType = cJSON_CreateNumber(vAlterTbReq.type);
      cJSON_AddItemToObject(json, "colType", colType);
wmmhello's avatar
wmmhello 已提交
2123 2124 2125 2126 2127 2128 2129 2130 2131
      if(vAlterTbReq.type == TSDB_DATA_TYPE_BINARY){
        int32_t length = vAlterTbReq.bytes - VARSTR_HEADER_SIZE;
        cJSON* cbytes = cJSON_CreateNumber(length);
        cJSON_AddItemToObject(json, "colLength", cbytes);
      }else if (vAlterTbReq.type == TSDB_DATA_TYPE_NCHAR){
        int32_t length = (vAlterTbReq.bytes - VARSTR_HEADER_SIZE)/TSDB_NCHAR_SIZE;
        cJSON* cbytes = cJSON_CreateNumber(length);
        cJSON_AddItemToObject(json, "colLength", cbytes);
      }
wmmhello's avatar
wmmhello 已提交
2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142
      break;
    }
    case TSDB_ALTER_TABLE_UPDATE_COLUMN_NAME:{
      cJSON* alterType = cJSON_CreateNumber(TSDB_ALTER_TABLE_UPDATE_COLUMN_NAME);
      cJSON_AddItemToObject(json, "alterType", alterType);
      cJSON* colName = cJSON_CreateString(vAlterTbReq.colName);
      cJSON_AddItemToObject(json, "colName", colName);
      cJSON* colNewName = cJSON_CreateString(vAlterTbReq.colNewName);
      cJSON_AddItemToObject(json, "colNewName", colNewName);
      break;
    }
wmmhello's avatar
wmmhello 已提交
2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153
    case TSDB_ALTER_TABLE_UPDATE_TAG_VAL:{
      cJSON* alterType = cJSON_CreateNumber(TSDB_ALTER_TABLE_UPDATE_TAG_VAL);
      cJSON_AddItemToObject(json, "alterType", alterType);
      cJSON* tagName = cJSON_CreateString(vAlterTbReq.tagName);
      cJSON_AddItemToObject(json, "colName", tagName);
      cJSON* colValue = cJSON_CreateString("invalid, todo");   // todo
      cJSON_AddItemToObject(json, "colValue", colValue);
      cJSON* isNull = cJSON_CreateBool(vAlterTbReq.isNull);
      cJSON_AddItemToObject(json, "colValueNull", isNull);
      break;
    }
wmmhello's avatar
wmmhello 已提交
2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
    default:
      break;
  }
  string = cJSON_PrintUnformatted(json);

  _exit:
  tDecoderClear(&decoder);
  return string;
}

static char *processDropSTable(SMqMetaRsp *metaRsp){
  SDecoder           decoder = {0};
  SVDropStbReq       req = {0};
  char              *string = NULL;

  // decode
  void* data = POINTER_SHIFT(metaRsp->metaRsp, sizeof(SMsgHead));
  int32_t len = metaRsp->metaRspLen - sizeof(SMsgHead);
  tDecoderInit(&decoder, data, len);
  if (tDecodeSVDropStbReq(&decoder, &req) < 0) {
    goto _exit;
  }

  cJSON* json = cJSON_CreateObject();
  if (json == NULL) {
    goto _exit;
  }
  cJSON* type = cJSON_CreateString("drop");
  cJSON_AddItemToObject(json, "type", type);
wmmhello's avatar
wmmhello 已提交
2183 2184 2185 2186
  char uid[32] = {0};
  sprintf(uid, "%"PRIi64, req.suid);
  cJSON* id = cJSON_CreateString(uid);
  cJSON_AddItemToObject(json, "id", id);
wmmhello's avatar
wmmhello 已提交
2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219
  cJSON* tableName = cJSON_CreateString(req.name);
  cJSON_AddItemToObject(json, "tableName", tableName);
  cJSON* tableType = cJSON_CreateString("super");
  cJSON_AddItemToObject(json, "tableType", tableType);

  string = cJSON_PrintUnformatted(json);

  _exit:
  tDecoderClear(&decoder);
  return string;
}

static char *processDropTable(SMqMetaRsp *metaRsp){
  SDecoder           decoder = {0};
  SVDropTbBatchReq   req = {0};
  char              *string = NULL;

  // decode
  void* data = POINTER_SHIFT(metaRsp->metaRsp, sizeof(SMsgHead));
  int32_t len = metaRsp->metaRspLen - sizeof(SMsgHead);
  tDecoderInit(&decoder, data, len);
  if (tDecodeSVDropTbBatchReq(&decoder, &req) < 0) {
    goto _exit;
  }

  cJSON* json = cJSON_CreateObject();
  if (json == NULL) {
    goto _exit;
  }
  cJSON* type = cJSON_CreateString("drop");
  cJSON_AddItemToObject(json, "type", type);
//  cJSON* uid = cJSON_CreateNumber(id);
//  cJSON_AddItemToObject(json, "uid", uid);
wmmhello's avatar
wmmhello 已提交
2220 2221
//  cJSON* tableType = cJSON_CreateString("normal");
//  cJSON_AddItemToObject(json, "tableType", tableType);
wmmhello's avatar
wmmhello 已提交
2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247

  cJSON* tableNameList = cJSON_CreateArray();
  for (int32_t iReq = 0; iReq < req.nReqs; iReq++) {
    SVDropTbReq* pDropTbReq = req.pReqs + iReq;

    cJSON* tableName = cJSON_CreateString(pDropTbReq->name);   // todo
    cJSON_AddItemToArray(tableNameList, tableName);
  }
  cJSON_AddItemToObject(json, "tableNameList", tableNameList);

  string = cJSON_PrintUnformatted(json);

  _exit:
  tDecoderClear(&decoder);
  return string;
}

char *tmq_get_json_meta(TAOS_RES *res){
  if (!TD_RES_TMQ_META(res)) {
    return NULL;
  }

  SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
  if(pMetaRspObj->metaRsp.resMsgType == TDMT_VND_CREATE_STB){
    return processCreateStb(&pMetaRspObj->metaRsp);
  }else if(pMetaRspObj->metaRsp.resMsgType == TDMT_VND_ALTER_STB){
wmmhello's avatar
wmmhello 已提交
2248
    return processCreateStb(&pMetaRspObj->metaRsp);
wmmhello's avatar
wmmhello 已提交
2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260
  }else if(pMetaRspObj->metaRsp.resMsgType == TDMT_VND_DROP_STB){
    return processDropSTable(&pMetaRspObj->metaRsp);
  }else if(pMetaRspObj->metaRsp.resMsgType == TDMT_VND_CREATE_TABLE){
    return processCreateTable(&pMetaRspObj->metaRsp);
  }else if(pMetaRspObj->metaRsp.resMsgType == TDMT_VND_ALTER_TABLE){
    return processAlterTable(&pMetaRspObj->metaRsp);
  }else if(pMetaRspObj->metaRsp.resMsgType == TDMT_VND_DROP_TABLE){
    return processDropTable(&pMetaRspObj->metaRsp);
  }
  return NULL;
}

wmmhello's avatar
wmmhello 已提交
2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314
static int32_t taosCreateStb(TAOS *taos, void *meta, int32_t metaLen){
  SVCreateStbReq req = {0};
  SDecoder       coder;
  SMCreateStbReq pReq = {0};
  int32_t code = TSDB_CODE_SUCCESS;
  SRequestObj* pRequest = NULL;

  STscObj *pTscObj = acquireTscObj(*(int64_t *)taos);
  if (NULL == pTscObj) {
    code = TSDB_CODE_TSC_DISCONNECTED;
    goto end;
  }

  code = buildRequest(pTscObj, "", 0, &pRequest);
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

  if(!pRequest->pDb){
    code = TSDB_CODE_PAR_DB_NOT_SPECIFIED;
    goto end;
  }
  // decode and process req
  void* data = POINTER_SHIFT(meta, sizeof(SMsgHead));
  int32_t len = metaLen - sizeof(SMsgHead);
  tDecoderInit(&coder, data, len);
  if (tDecodeSVCreateStbReq(&coder, &req) < 0) {
    code = TSDB_CODE_INVALID_PARA;
    goto end;
  }
  // build create stable
  pReq.pColumns = taosArrayInit(req.schemaRow.nCols, sizeof(SField));
  for(int32_t i = 0; i < req.schemaRow.nCols; i++){
    SSchema* pSchema = req.schemaRow.pSchema + i;
    SField   field   = {.type = pSchema->type, .bytes = pSchema->bytes};
    strcpy(field.name, pSchema->name);
    taosArrayPush(pReq.pColumns, &field);
  }
  pReq.pTags = taosArrayInit(req.schemaTag.nCols, sizeof(SField));
  for(int32_t i = 0; i < req.schemaTag.nCols; i++){
    SSchema* pSchema = req.schemaTag.pSchema + i;
    SField   field   = {.type = pSchema->type, .bytes = pSchema->bytes};
    strcpy(field.name, pSchema->name);
    taosArrayPush(pReq.pTags, &field);
  }
  pReq.cVersion = req.schemaRow.version;
  pReq.tVersion = req.schemaTag.version;
  pReq.numOfColumns = req.schemaRow.nCols;
  pReq.numOfTags = req.schemaTag.nCols;
  pReq.commentLen = -1;
  pReq.suid = req.suid;
  pReq.source = 1;

  SName tableName;
wmmhello's avatar
wmmhello 已提交
2315
  tNameExtractFullName(toName(pTscObj->acctId, pRequest->pDb, req.name, &tableName), pReq.name);
wmmhello's avatar
wmmhello 已提交
2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769

  SCmdMsgInfo pCmdMsg = {0};
  pCmdMsg.epSet = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);
  pCmdMsg.msgType = TDMT_MND_CREATE_STB;
  pCmdMsg.msgLen = tSerializeSMCreateStbReq(NULL, 0, &pReq);
  pCmdMsg.pMsg = taosMemoryMalloc(pCmdMsg.msgLen);
  if (NULL == pCmdMsg.pMsg) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }
  tSerializeSMCreateStbReq(pCmdMsg.pMsg, pCmdMsg.msgLen, &pReq);

  SQuery      pQuery = {0};
  pQuery.execMode = QUERY_EXEC_MODE_RPC;
  pQuery.pCmdMsg = &pCmdMsg;
  pQuery.msgType = pQuery.pCmdMsg->msgType;
  pQuery.stableQuery = true;

  launchQueryImpl(pRequest, &pQuery, true, NULL);
  code = pRequest->code;
  taosMemoryFree(pCmdMsg.pMsg);

  end:
  destroyRequest(pRequest);
  tFreeSMCreateStbReq(&pReq);
  tDecoderClear(&coder);
  return code;
}

static int32_t taosDropStb(TAOS *taos, void *meta, int32_t metaLen){
  SVDropStbReq req = {0};
  SDecoder     coder;
  SMDropStbReq pReq = {0};
  int32_t code = TSDB_CODE_SUCCESS;
  SRequestObj* pRequest = NULL;

  STscObj *pTscObj = acquireTscObj(*(int64_t *)taos);
  if (NULL == pTscObj) {
    code = TSDB_CODE_TSC_DISCONNECTED;
    goto end;
  }

  code = buildRequest(pTscObj, "", 0, &pRequest);
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

  if(!pRequest->pDb){
    code = TSDB_CODE_PAR_DB_NOT_SPECIFIED;
    goto end;
  }
  // decode and process req
  void* data = POINTER_SHIFT(meta, sizeof(SMsgHead));
  int32_t len = metaLen - sizeof(SMsgHead);
  tDecoderInit(&coder, data, len);
  if (tDecodeSVDropStbReq(&coder, &req) < 0) {
    code = TSDB_CODE_INVALID_PARA;
    goto end;
  }

  // build drop stable
  pReq.igNotExists = true;
  pReq.source = 1;
  pReq.suid = req.suid;
  SName tableName;
  tNameExtractFullName(toName(pTscObj->acctId, pRequest->pDb, "rname", &tableName), pReq.name);

  SCmdMsgInfo pCmdMsg = {0};
  pCmdMsg.epSet = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);
  pCmdMsg.msgType = TDMT_MND_DROP_STB;
  pCmdMsg.msgLen = tSerializeSMDropStbReq(NULL, 0, &pReq);
  pCmdMsg.pMsg = taosMemoryMalloc(pCmdMsg.msgLen);
  if (NULL == pCmdMsg.pMsg) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }
  tSerializeSMDropStbReq(pCmdMsg.pMsg, pCmdMsg.msgLen, &pReq);

  SQuery      pQuery = {0};
  pQuery.execMode = QUERY_EXEC_MODE_RPC;
  pQuery.pCmdMsg = &pCmdMsg;
  pQuery.msgType = pQuery.pCmdMsg->msgType;
  pQuery.stableQuery = true;

  launchQueryImpl(pRequest, &pQuery, true, NULL);
  code = pRequest->code;
  taosMemoryFree(pCmdMsg.pMsg);

  end:
  destroyRequest(pRequest);
  tDecoderClear(&coder);
  return code;
}

typedef struct SVgroupCreateTableBatch {
  SVCreateTbBatchReq req;
  SVgroupInfo        info;
  char               dbName[TSDB_DB_NAME_LEN];
} SVgroupCreateTableBatch;

static void destroyCreateTbReqBatch(void* data) {
  SVgroupCreateTableBatch* pTbBatch = (SVgroupCreateTableBatch*) data;
  taosArrayDestroy(pTbBatch->req.pArray);
}

static int32_t taosCreateTable(TAOS *taos, void *meta, int32_t metaLen){
  SVCreateTbBatchReq  req             = {0};
  SDecoder            coder           = {0};
  int32_t             code            = TSDB_CODE_SUCCESS;
  SRequestObj        *pRequest        = NULL;
  SQuery             *pQuery          = NULL;
  SHashObj           *pVgroupHashmap  = NULL;
  STscObj            *pTscObj         = acquireTscObj(*(int64_t *)taos);

  if (NULL == pTscObj) {
    code = TSDB_CODE_TSC_DISCONNECTED;
    goto end;
  }

  code = buildRequest(pTscObj, "", 0, &pRequest);
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

  if(!pRequest->pDb){
    code = TSDB_CODE_PAR_DB_NOT_SPECIFIED;
    goto end;
  }
  // decode and process req
  void* data = POINTER_SHIFT(meta, sizeof(SMsgHead));
  int32_t len = metaLen - sizeof(SMsgHead);
  tDecoderInit(&coder, data, len);
  if (tDecodeSVCreateTbBatchReq(&coder, &req) < 0) {
    code = TSDB_CODE_INVALID_PARA;
    goto end;
  }

  SVCreateTbReq     *pCreateReq = NULL;
  SCatalog* pCatalog = NULL;
  code = catalogGetHandle(pTscObj->pAppInfo->clusterId, &pCatalog);
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

  pVgroupHashmap = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT), false, HASH_NO_LOCK);
  if (NULL == pVgroupHashmap) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }
  taosHashSetFreeFp(pVgroupHashmap, destroyCreateTbReqBatch);

  SRequestConnInfo conn = {.pTrans = pTscObj->pAppInfo->pTransporter,
      .requestId = pRequest->requestId,
      .requestObjRefId = pRequest->self,
      .mgmtEps = getEpSet_s(&pTscObj->pAppInfo->mgmtEp)};
  // loop to create table
  for (int32_t iReq = 0; iReq < req.nReqs; iReq++) {
    pCreateReq = req.pReqs + iReq;

    SVgroupInfo pInfo = {0};
    SName pName;
    toName(pTscObj->acctId, pRequest->pDb, pCreateReq->name, &pName);
    code = catalogGetTableHashVgroup(pCatalog, &conn, &pName, &pInfo);
    if (code != TSDB_CODE_SUCCESS) {
      goto end;
    }

    SVgroupCreateTableBatch* pTableBatch = taosHashGet(pVgroupHashmap, &pInfo.vgId, sizeof(pInfo.vgId));
    if (pTableBatch == NULL) {
      SVgroupCreateTableBatch tBatch = {0};
      tBatch.info = pInfo;
      strcpy(tBatch.dbName, pRequest->pDb);

      tBatch.req.pArray = taosArrayInit(4, sizeof(struct SVCreateTbReq));
      taosArrayPush(tBatch.req.pArray, pCreateReq);

      taosHashPut(pVgroupHashmap, &pInfo.vgId, sizeof(pInfo.vgId), &tBatch, sizeof(tBatch));
    } else {  // add to the correct vgroup
      taosArrayPush(pTableBatch->req.pArray, pCreateReq);
    }
  }

  SArray* pBufArray = serializeVgroupsCreateTableBatch(pVgroupHashmap);
  if (NULL == pBufArray) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }

  pQuery = (SQuery*)nodesMakeNode(QUERY_NODE_QUERY);
  pQuery->execMode = QUERY_EXEC_MODE_SCHEDULE;
  pQuery->msgType = TDMT_VND_CREATE_TABLE;
  pQuery->stableQuery = false;
  pQuery->pRoot   = nodesMakeNode(QUERY_NODE_CREATE_TABLE_STMT);

  code = rewriteToVnodeModifyOpStmt(pQuery, pBufArray);
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

  launchQueryImpl(pRequest, pQuery, false, NULL);
  pQuery  = NULL;          // no need to free in the end
  code    = pRequest->code;

  end:
  taosHashCleanup(pVgroupHashmap);
  destroyRequest(pRequest);
  tDecoderClear(&coder);
  qDestroyQuery(pQuery);
  return code;
}

typedef struct SVgroupDropTableBatch {
  SVDropTbBatchReq req;
  SVgroupInfo      info;
  char             dbName[TSDB_DB_NAME_LEN];
} SVgroupDropTableBatch;

static void destroyDropTbReqBatch(void* data) {
  SVgroupDropTableBatch* pTbBatch = (SVgroupDropTableBatch*)data;
  taosArrayDestroy(pTbBatch->req.pArray);
}

static int32_t taosDropTable(TAOS *taos, void *meta, int32_t metaLen){
  SVDropTbBatchReq    req             = {0};
  SDecoder            coder           = {0};
  int32_t             code            = TSDB_CODE_SUCCESS;
  SRequestObj        *pRequest        = NULL;
  SQuery             *pQuery          = NULL;
  SHashObj           *pVgroupHashmap  = NULL;
  STscObj            *pTscObj         = acquireTscObj(*(int64_t *)taos);

  if (NULL == pTscObj) {
    code = TSDB_CODE_TSC_DISCONNECTED;
    goto end;
  }

  code = buildRequest(pTscObj, "", 0, &pRequest);
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

  if(!pRequest->pDb){
    code = TSDB_CODE_PAR_DB_NOT_SPECIFIED;
    goto end;
  }
  // decode and process req
  void* data = POINTER_SHIFT(meta, sizeof(SMsgHead));
  int32_t len = metaLen - sizeof(SMsgHead);
  tDecoderInit(&coder, data, len);
  if (tDecodeSVDropTbBatchReq(&coder, &req) < 0) {
    code = TSDB_CODE_INVALID_PARA;
    goto end;
  }

  SVDropTbReq     *pDropReq = NULL;
  SCatalog        *pCatalog = NULL;
  code = catalogGetHandle(pTscObj->pAppInfo->clusterId, &pCatalog);
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

  pVgroupHashmap = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT), false, HASH_NO_LOCK);
  if (NULL == pVgroupHashmap) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }
  taosHashSetFreeFp(pVgroupHashmap, destroyDropTbReqBatch);

  SRequestConnInfo conn = {.pTrans = pTscObj->pAppInfo->pTransporter,
      .requestId = pRequest->requestId,
      .requestObjRefId = pRequest->self,
      .mgmtEps = getEpSet_s(&pTscObj->pAppInfo->mgmtEp)};
  // loop to create table
  for (int32_t iReq = 0; iReq < req.nReqs; iReq++) {
    pDropReq = req.pReqs + iReq;

    SVgroupInfo pInfo = {0};
    SName pName;
    toName(pTscObj->acctId, pRequest->pDb, pDropReq->name, &pName);
    code = catalogGetTableHashVgroup(pCatalog, &conn, &pName, &pInfo);
    if (code != TSDB_CODE_SUCCESS) {
      goto end;
    }

    SVgroupDropTableBatch* pTableBatch = taosHashGet(pVgroupHashmap, &pInfo.vgId, sizeof(pInfo.vgId));
    if (pTableBatch == NULL) {
      SVgroupDropTableBatch tBatch = {0};
      tBatch.info = pInfo;
      tBatch.req.pArray = taosArrayInit(TARRAY_MIN_SIZE, sizeof(SVDropTbReq));
      taosArrayPush(tBatch.req.pArray, pDropReq);

      taosHashPut(pVgroupHashmap, &pInfo.vgId, sizeof(pInfo.vgId), &tBatch, sizeof(tBatch));
    } else {  // add to the correct vgroup
      taosArrayPush(pTableBatch->req.pArray, pDropReq);
    }
  }

  SArray* pBufArray = serializeVgroupsDropTableBatch(pVgroupHashmap);
  if (NULL == pBufArray) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }

  pQuery = (SQuery*)nodesMakeNode(QUERY_NODE_QUERY);
  pQuery->execMode = QUERY_EXEC_MODE_SCHEDULE;
  pQuery->msgType = TDMT_VND_DROP_TABLE;
  pQuery->stableQuery = false;
  pQuery->pRoot   = nodesMakeNode(QUERY_NODE_DROP_TABLE_STMT);

  code = rewriteToVnodeModifyOpStmt(pQuery, pBufArray);
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

  launchQueryImpl(pRequest, pQuery, false, NULL);
  pQuery  = NULL;          // no need to free in the end
  code    = pRequest->code;

  end:
  taosHashCleanup(pVgroupHashmap);
  destroyRequest(pRequest);
  tDecoderClear(&coder);
  qDestroyQuery(pQuery);
  return code;
}

static int32_t taosAlterTable(TAOS *taos, void *meta, int32_t metaLen){
  SVAlterTbReq        req             = {0};
  SDecoder            coder           = {0};
  int32_t             code            = TSDB_CODE_SUCCESS;
  SRequestObj        *pRequest        = NULL;
  SQuery             *pQuery          = NULL;
  SArray             *pArray          = NULL;
  SVgDataBlocks      *pVgData         = NULL;
  STscObj            *pTscObj         = acquireTscObj(*(int64_t *)taos);

  if (NULL == pTscObj) {
    code = TSDB_CODE_TSC_DISCONNECTED;
    goto end;
  }

  code = buildRequest(pTscObj, "", 0, &pRequest);
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

  if(!pRequest->pDb){
    code = TSDB_CODE_PAR_DB_NOT_SPECIFIED;
    goto end;
  }
  // decode and process req
  void* data = POINTER_SHIFT(meta, sizeof(SMsgHead));
  int32_t len = metaLen - sizeof(SMsgHead);
  tDecoderInit(&coder, data, len);
  if (tDecodeSVAlterTbReq(&coder, &req) < 0) {
    code = TSDB_CODE_INVALID_PARA;
    goto end;
  }

  // do not deal TSDB_ALTER_TABLE_UPDATE_OPTIONS
  if(req.action == TSDB_ALTER_TABLE_UPDATE_OPTIONS){
    goto end;
  }

  SCatalog        *pCatalog = NULL;
  code = catalogGetHandle(pTscObj->pAppInfo->clusterId, &pCatalog);
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

  SRequestConnInfo conn = {.pTrans = pTscObj->pAppInfo->pTransporter,
      .requestId = pRequest->requestId,
      .requestObjRefId = pRequest->self,
      .mgmtEps = getEpSet_s(&pTscObj->pAppInfo->mgmtEp)};

  SVgroupInfo pInfo = {0};
  SName pName = {0};
  toName(pTscObj->acctId, pRequest->pDb, req.tbName, &pName);
  code = catalogGetTableHashVgroup(pCatalog, &conn, &pName, &pInfo);
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

  pArray = taosArrayInit(1, sizeof(void*));
  if (NULL == pArray) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }

  pVgData = taosMemoryCalloc(1, sizeof(SVgDataBlocks));
  if (NULL == pVgData) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }
  pVgData->vg = pInfo;
  pVgData->pData = taosMemoryMalloc(metaLen);
  if (NULL == pVgData->pData) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }
  memcpy(pVgData->pData, meta, metaLen);
  ((SMsgHead*)pVgData->pData)->vgId = htonl(pInfo.vgId);
  pVgData->size = metaLen;
  pVgData->numOfTables = 1;
  taosArrayPush(pArray, &pVgData);

  pQuery = (SQuery*)nodesMakeNode(QUERY_NODE_QUERY);
  pQuery->execMode = QUERY_EXEC_MODE_SCHEDULE;
  pQuery->msgType = TDMT_VND_ALTER_TABLE;
  pQuery->stableQuery = false;
  pQuery->pRoot   = nodesMakeNode(QUERY_NODE_ALTER_TABLE_STMT);

  code = rewriteToVnodeModifyOpStmt(pQuery, pArray);
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

  launchQueryImpl(pRequest, pQuery, false, NULL);
  pQuery  = NULL;          // no need to free in the end
  pVgData = NULL;
  pArray  = NULL;
  code    = pRequest->code;

end:
  taosArrayDestroy(pArray);
  if(pVgData) taosMemoryFreeClear(pVgData->pData);
  taosMemoryFreeClear(pVgData);
  destroyRequest(pRequest);
  tDecoderClear(&coder);
  qDestroyQuery(pQuery);
  return code;
}

int32_t taos_write_raw_meta(TAOS *taos, tmq_raw_data *raw_meta){
  if (!taos || !raw_meta) {
    return TSDB_CODE_INVALID_PARA;
  }

  if(raw_meta->raw_meta_type == TDMT_VND_CREATE_STB) {
    return taosCreateStb(taos, raw_meta->raw_meta, raw_meta->raw_meta_len);
  }else if(raw_meta->raw_meta_type == TDMT_VND_ALTER_STB){
    return taosCreateStb(taos, raw_meta->raw_meta, raw_meta->raw_meta_len);
  }else if(raw_meta->raw_meta_type == TDMT_VND_DROP_STB){
    return taosDropStb(taos, raw_meta->raw_meta, raw_meta->raw_meta_len);
  }else if(raw_meta->raw_meta_type == TDMT_VND_CREATE_TABLE){
    return taosCreateTable(taos, raw_meta->raw_meta, raw_meta->raw_meta_len);
  }else if(raw_meta->raw_meta_type == TDMT_VND_ALTER_TABLE){
    return taosAlterTable(taos, raw_meta->raw_meta, raw_meta->raw_meta_len);
  }else if(raw_meta->raw_meta_type == TDMT_VND_DROP_TABLE){
    return taosDropTable(taos, raw_meta->raw_meta, raw_meta->raw_meta_len);
  }
  return TSDB_CODE_INVALID_PARA;
}

L
Liu Jicong 已提交
2770 2771
void tmq_commit_async(tmq_t* tmq, const TAOS_RES* msg, tmq_commit_cb* cb, void* param) {
  tmqCommitInner2(tmq, msg, 0, 1, cb, param);
L
Liu Jicong 已提交
2772 2773
}

L
Liu Jicong 已提交
2774
int32_t tmq_commit_sync(tmq_t* tmq, const TAOS_RES* msg) { return tmqCommitInner2(tmq, msg, 0, 0, NULL, NULL); }