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

L
Liu Jicong 已提交
16 17
#define _DEFAULT_SOURCE

18 19 20 21 22 23 24 25 26
#include "clientInt.h"
#include "clientLog.h"
#include "parser.h"
#include "planner.h"
#include "scheduler.h"
#include "tdef.h"
#include "tep.h"
#include "tglobal.h"
#include "tmsgtype.h"
H
Haojun Liao 已提交
27
#include "tpagedbuf.h"
L
Liu Jicong 已提交
28
#include "tqueue.h"
29 30
#include "tref.h"

L
Liu Jicong 已提交
31 32 33 34 35
struct tmq_list_t {
  int32_t cnt;
  int32_t tot;
  char*   elems[];
};
L
Liu Jicong 已提交
36

L
Liu Jicong 已提交
37
struct tmq_topic_vgroup_t {
L
Liu Jicong 已提交
38
  SMqOffset offset;
L
Liu Jicong 已提交
39 40 41
};

struct tmq_topic_vgroup_list_t {
L
Liu Jicong 已提交
42 43
  int32_t             cnt;
  int32_t             size;
L
Liu Jicong 已提交
44 45 46 47
  tmq_topic_vgroup_t* elems;
};

struct tmq_conf_t {
L
Liu Jicong 已提交
48 49 50 51 52
  char           clientId[256];
  char           groupId[256];
  int8_t         auto_commit;
  int8_t         resetOffset;
  tmq_commit_cb* commit_cb;
L
Liu Jicong 已提交
53 54 55 56 57
  /*char*          ip;*/
  /*uint16_t       port;*/
};

struct tmq_t {
L
Liu Jicong 已提交
58
  // conf
L
Liu Jicong 已提交
59 60
  char           groupId[256];
  char           clientId[256];
L
Liu Jicong 已提交
61
  int8_t         autoCommit;
L
Liu Jicong 已提交
62
  int64_t        consumerId;
L
Liu Jicong 已提交
63
  int32_t        epoch;
L
Liu Jicong 已提交
64
  int32_t        resetOffsetCfg;
L
Liu Jicong 已提交
65 66 67 68
  int64_t        status;
  STscObj*       pTscObj;
  tmq_commit_cb* commit_cb;
  int32_t        nextTopicIdx;
L
Liu Jicong 已提交
69
  SArray*        clientTopics;  // SArray<SMqClientTopic>
L
Liu Jicong 已提交
70 71
  STaosQueue*    mqueue;        // queue of tmq_message_t
  STaosQall*     qall;
L
Liu Jicong 已提交
72 73
  // stat
  int64_t pollCnt;
L
Liu Jicong 已提交
74 75
};

L
Liu Jicong 已提交
76 77 78 79 80 81 82 83
enum {
  TMQ_VG_STATUS__IDLE = 0,
  TMQ_VG_STATUS__WAIT,
};

enum {
  TMQ_CONSUMER_STATUS__INIT = 0,
  TMQ_CONSUMER_STATUS__READY,
L
Liu Jicong 已提交
84 85
};

L
Liu Jicong 已提交
86
typedef struct {
87 88 89 90
  // statistics
  int64_t pollCnt;
  // offset
  int64_t currentOffset;
L
Liu Jicong 已提交
91
  // connection info
92
  int32_t vgId;
L
Liu Jicong 已提交
93
  int32_t vgStatus;
94 95 96
  SEpSet  epSet;
} SMqClientVg;

L
Liu Jicong 已提交
97
typedef struct {
98 99 100 101 102 103
  // subscribe info
  int32_t sqlLen;
  char*   sql;
  char*   topicName;
  int64_t topicId;
  int32_t nextVgIdx;
L
Liu Jicong 已提交
104
  SArray* vgs;  // SArray<SMqClientVg>
105 106
} SMqClientTopic;

L
Liu Jicong 已提交
107
typedef struct {
L
Liu Jicong 已提交
108 109 110 111
  tmq_t*         tmq;
  tsem_t         rspSem;
  tmq_resp_err_t rspErr;
} SMqSubscribeCbParam;
L
Liu Jicong 已提交
112

L
Liu Jicong 已提交
113
typedef struct {
114
  tmq_t*  tmq;
L
Liu Jicong 已提交
115 116
  int32_t sync;
  tsem_t  rspSem;
117 118
} SMqAskEpCbParam;

L
Liu Jicong 已提交
119
typedef struct {
L
Liu Jicong 已提交
120 121 122 123
  tmq_t*       tmq;
  SMqClientVg* pVg;
  int32_t      epoch;
  tsem_t       rspSem;
L
Liu Jicong 已提交
124
} SMqPollCbParam;
125

L
Liu Jicong 已提交
126
typedef struct {
L
Liu Jicong 已提交
127 128 129
  tmq_t* tmq;
  /*SMqClientVg* pVg;*/
  int32_t        async;
L
Liu Jicong 已提交
130 131
  tsem_t         rspSem;
  tmq_resp_err_t rspErr;
L
Liu Jicong 已提交
132
} SMqCommitCbParam;
L
Liu Jicong 已提交
133

134 135
tmq_conf_t* tmq_conf_new() {
  tmq_conf_t* conf = calloc(1, sizeof(tmq_conf_t));
L
Liu Jicong 已提交
136
  conf->auto_commit = false;
L
fix  
Liu Jicong 已提交
137
  conf->resetOffset = TMQ_CONF__RESET_OFFSET__EARLIEAST;
138 139 140
  return conf;
}

L
Liu Jicong 已提交
141
void tmq_conf_destroy(tmq_conf_t* conf) {
L
Liu Jicong 已提交
142
  if (conf) free(conf);
L
Liu Jicong 已提交
143 144 145
}

tmq_conf_res_t tmq_conf_set(tmq_conf_t* conf, const char* key, const char* value) {
146 147
  if (strcmp(key, "group.id") == 0) {
    strcpy(conf->groupId, value);
L
Liu Jicong 已提交
148
    return TMQ_CONF_OK;
149 150 151
  }
  if (strcmp(key, "client.id") == 0) {
    strcpy(conf->clientId, value);
L
Liu Jicong 已提交
152 153 154 155 156 157 158 159 160 161 162 163
    return TMQ_CONF_OK;
  }
  if (strcmp(key, "enable.auto.commit") == 0) {
    if (strcmp(value, "true") == 0) {
      conf->auto_commit = true;
      return TMQ_CONF_OK;
    } else if (strcmp(value, "false") == 0) {
      conf->auto_commit = false;
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
164
  }
L
Liu Jicong 已提交
165 166 167 168 169 170 171 172 173 174 175 176 177 178
  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 已提交
179
  return TMQ_CONF_UNKNOWN;
180 181 182
}

tmq_list_t* tmq_list_new() {
L
Liu Jicong 已提交
183
  tmq_list_t* ptr = malloc(sizeof(tmq_list_t) + 8 * sizeof(char*));
184 185 186 187 188 189 190 191
  if (ptr == NULL) {
    return ptr;
  }
  ptr->cnt = 0;
  ptr->tot = 8;
  return ptr;
}

L
Liu Jicong 已提交
192
int32_t tmq_list_append(tmq_list_t* ptr, const char* src) {
L
Liu Jicong 已提交
193
  if (ptr->cnt >= ptr->tot - 1) return -1;
194 195 196 197 198
  ptr->elems[ptr->cnt] = strdup(src);
  ptr->cnt++;
  return 0;
}

L
Liu Jicong 已提交
199 200 201 202 203 204
int32_t tmqSubscribeCb(void* param, const SDataBuf* pMsg, int32_t code) {
  SMqSubscribeCbParam* pParam = (SMqSubscribeCbParam*)param;
  pParam->rspErr = code;
  tsem_post(&pParam->rspSem);
  return 0;
}
205

L
Liu Jicong 已提交
206
int32_t tmqCommitCb(void* param, const SDataBuf* pMsg, int32_t code) {
L
Liu Jicong 已提交
207 208
  SMqCommitCbParam* pParam = (SMqCommitCbParam*)param;
  tmq_resp_err_t    rspErr = code == 0 ? TMQ_RESP_ERR__SUCCESS : TMQ_RESP_ERR__FAIL;
L
Liu Jicong 已提交
209 210 211
  if (pParam->tmq->commit_cb) {
    pParam->tmq->commit_cb(pParam->tmq, rspErr, NULL, NULL);
  }
L
Liu Jicong 已提交
212 213 214 215 216 217
  if (!pParam->async)
    tsem_post(&pParam->rspSem);
  else {
    tsem_destroy(&pParam->rspSem);
    free(param);
  }
L
Liu Jicong 已提交
218 219 220
  return 0;
}

L
Liu Jicong 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
tmq_resp_err_t tmq_subscription(tmq_t* tmq, tmq_list_t** topics) {
  if (*topics == NULL) {
    *topics = tmq_list_new();
  }
  for (int i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
    SMqClientTopic* topic = taosArrayGetP(tmq->clientTopics, i);
    tmq_list_append(*topics, strdup(topic->topicName));
  }
  return TMQ_RESP_ERR__SUCCESS;
}

tmq_resp_err_t tmq_unsubscribe(tmq_t* tmq) {
  tmq_list_t* lst = tmq_list_new();
  return tmq_subscribe(tmq, lst);
}

237 238 239 240 241 242 243 244
tmq_t* tmq_consumer_new(void* conn, tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
  tmq_t* pTmq = calloc(sizeof(tmq_t), 1);
  if (pTmq == NULL) {
    return NULL;
  }
  pTmq->pTscObj = (STscObj*)conn;
  pTmq->status = 0;
  pTmq->pollCnt = 0;
L
Liu Jicong 已提交
245
  pTmq->epoch = 0;
L
Liu Jicong 已提交
246
  // set conf
247 248
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
L
Liu Jicong 已提交
249
  pTmq->autoCommit = conf->auto_commit;
250
  pTmq->commit_cb = conf->commit_cb;
L
Liu Jicong 已提交
251
  pTmq->resetOffsetCfg = conf->resetOffset;
L
Liu Jicong 已提交
252 253

  pTmq->consumerId = generateRequestId() & (((uint64_t)-1) >> 1);
254
  pTmq->clientTopics = taosArrayInit(0, sizeof(SMqClientTopic));
L
Liu Jicong 已提交
255 256 257

  pTmq->mqueue = taosOpenQueue();
  pTmq->qall = taosAllocateQall();
258 259 260
  return pTmq;
}

L
Liu Jicong 已提交
261 262 263 264
tmq_resp_err_t tmq_commit(tmq_t* tmq, const tmq_topic_vgroup_list_t* offsets, int32_t async) {
  // TODO: add read write lock
  SRequestObj*   pRequest = NULL;
  tmq_resp_err_t resp = TMQ_RESP_ERR__SUCCESS;
L
Liu Jicong 已提交
265 266
  // build msg
  // send to mnode
L
Liu Jicong 已提交
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
  SMqCMCommitOffsetReq req;
  SArray*              pArray = NULL;

  if (offsets == NULL) {
    pArray = taosArrayInit(0, sizeof(SMqOffset));
    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);
        SMqOffset    offset;
        strcpy(offset.topicName, pTopic->topicName);
        strcpy(offset.cgroup, tmq->groupId);
        offset.vgId = pVg->vgId;
        offset.offset = pVg->currentOffset;
        taosArrayPush(pArray, &offset);
      }
    }
    req.num = pArray->size;
    req.offsets = pArray->pData;
  } else {
    req.num = offsets->cnt;
    req.offsets = (SMqOffset*)offsets->elems;
  }
L
Liu Jicong 已提交
290 291 292 293

  SCoder encoder;

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, NULL, 0, TD_ENCODER);
L
Liu Jicong 已提交
294
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
295 296 297 298 299 300 301 302 303
  int32_t tlen = encoder.pos;
  void*   buf = malloc(tlen);
  if (buf == NULL) {
    tCoderClear(&encoder);
    return -1;
  }
  tCoderClear(&encoder);

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, buf, tlen, TD_ENCODER);
L
Liu Jicong 已提交
304
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
305 306
  tCoderClear(&encoder);

L
Liu Jicong 已提交
307
  pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_MND_MQ_COMMIT_OFFSET);
L
Liu Jicong 已提交
308 309 310 311
  if (pRequest == NULL) {
    tscError("failed to malloc request");
  }

L
Liu Jicong 已提交
312 313 314 315 316 317
  SMqCommitCbParam* pParam = malloc(sizeof(SMqCommitCbParam));
  if (pParam == NULL) {
    return -1;
  }
  pParam->tmq = tmq;
  tsem_init(&pParam->rspSem, 0, 0);
L
Liu Jicong 已提交
318

L
Liu Jicong 已提交
319 320 321 322 323
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
L
Liu Jicong 已提交
324 325

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
326 327
  sendInfo->param = pParam;
  sendInfo->fp = tmqCommitCb;
L
Liu Jicong 已提交
328 329 330 331 332
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
333 334 335 336
  if (!async) {
    tsem_wait(&pParam->rspSem);
    resp = pParam->rspErr;
  }
L
Liu Jicong 已提交
337

L
Liu Jicong 已提交
338 339 340 341 342
  if (pArray) {
    taosArrayDestroy(pArray);
  }

  return resp;
L
Liu Jicong 已提交
343 344
}

L
Liu Jicong 已提交
345
tmq_resp_err_t tmq_subscribe(tmq_t* tmq, tmq_list_t* topic_list) {
L
Liu Jicong 已提交
346 347 348
  SRequestObj* pRequest = NULL;
  int32_t      sz = topic_list->cnt;
  // destroy ex
349 350 351 352 353 354 355 356 357 358 359 360 361 362
  taosArrayDestroy(tmq->clientTopics);
  tmq->clientTopics = taosArrayInit(sz, sizeof(SMqClientTopic));

  SCMSubscribeReq req;
  req.topicNum = sz;
  req.consumerId = tmq->consumerId;
  req.consumerGroup = strdup(tmq->groupId);
  req.topicNames = taosArrayInit(sz, sizeof(void*));

  for (int i = 0; i < sz; i++) {
    char* topicName = topic_list->elems[i];

    SName name = {0};
    char* dbName = getDbOfConnection(tmq->pTscObj);
L
Liu Jicong 已提交
363 364 365
    if (dbName == NULL) {
      return TMQ_RESP_ERR__FAIL;
    }
L
Liu Jicong 已提交
366
    tNameSetDbName(&name, tmq->pTscObj->acctId, dbName, strlen(dbName));
367 368 369 370
    tNameFromString(&name, topicName, T_NAME_TABLE);

    char* topicFname = calloc(1, TSDB_TOPIC_FNAME_LEN);
    if (topicFname == NULL) {
L
Liu Jicong 已提交
371
      goto _return;
372 373 374 375
    }
    tNameExtractFullName(&name, topicFname);
    tscDebug("subscribe topic: %s", topicFname);
    SMqClientTopic topic = {
L
Liu Jicong 已提交
376
        .nextVgIdx = 0, .sql = NULL, .sqlLen = 0, .topicId = 0, .topicName = topicFname, .vgs = NULL};
377
    topic.vgs = taosArrayInit(0, sizeof(SMqClientVg));
L
Liu Jicong 已提交
378
    taosArrayPush(tmq->clientTopics, &topic);
379
    taosArrayPush(req.topicNames, &topicFname);
L
Liu Jicong 已提交
380
    free(dbName);
381 382
  }

L
Liu Jicong 已提交
383
  int   tlen = tSerializeSCMSubscribeReq(NULL, &req);
384
  void* buf = malloc(tlen);
L
Liu Jicong 已提交
385
  if (buf == NULL) {
386 387 388 389 390 391 392 393 394
    goto _return;
  }

  void* abuf = buf;
  tSerializeSCMSubscribeReq(&abuf, &req);
  /*printf("formatted: %s\n", dagStr);*/

  pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_MND_SUBSCRIBE);
  if (pRequest == NULL) {
L
Liu Jicong 已提交
395
    tscError("failed to malloc request");
396 397
  }

L
Liu Jicong 已提交
398 399 400 401
  SMqSubscribeCbParam param = {
      .rspErr = TMQ_RESP_ERR__SUCCESS,
      .tmq = tmq,
  };
L
Liu Jicong 已提交
402 403
  tsem_init(&param.rspSem, 0, 0);

L
Liu Jicong 已提交
404 405 406 407 408
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
409 410

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
411 412
  sendInfo->param = &param;
  sendInfo->fp = tmqSubscribeCb;
413 414 415 416 417
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
418 419
  tsem_wait(&param.rspSem);
  tsem_destroy(&param.rspSem);
420 421 422

_return:
  /*if (sendInfo != NULL) {*/
L
Liu Jicong 已提交
423
  /*destroySendMsgInfo(sendInfo);*/
424 425
  /*}*/

L
Liu Jicong 已提交
426
  return param.rspErr;
427 428
}

L
Liu Jicong 已提交
429
void tmq_conf_set_offset_commit_cb(tmq_conf_t* conf, tmq_commit_cb* cb) { conf->commit_cb = cb; }
430

L
Liu Jicong 已提交
431 432 433 434 435
TAOS_RES* tmq_create_topic(TAOS* taos, const char* topicName, const char* sql, int sqlLen) {
  STscObj*     pTscObj = (STscObj*)taos;
  SRequestObj* pRequest = NULL;
  SQueryNode*  pQueryNode = NULL;
  char*        pStr = NULL;
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460

  terrno = TSDB_CODE_SUCCESS;
  if (taos == NULL || topicName == NULL || sql == NULL) {
    tscError("invalid parameters for creating topic, connObj:%p, topic name:%s, sql:%s", taos, topicName, sql);
    terrno = TSDB_CODE_TSC_INVALID_INPUT;
    goto _return;
  }

  if (strlen(topicName) >= TSDB_TOPIC_NAME_LEN) {
    tscError("topic name too long, max length:%d", TSDB_TOPIC_NAME_LEN - 1);
    terrno = TSDB_CODE_TSC_INVALID_INPUT;
    goto _return;
  }

  if (sqlLen > TSDB_MAX_ALLOWED_SQL_LEN) {
    tscError("sql string exceeds max length:%d", TSDB_MAX_ALLOWED_SQL_LEN);
    terrno = TSDB_CODE_TSC_EXCEED_SQL_LIMIT;
    goto _return;
  }

  tscDebug("start to create topic, %s", topicName);

  CHECK_CODE_GOTO(buildRequest(pTscObj, sql, sqlLen, &pRequest), _return);
  CHECK_CODE_GOTO(parseSql(pRequest, &pQueryNode), _return);

L
Liu Jicong 已提交
461
  SQueryStmtInfo* pQueryStmtInfo = (SQueryStmtInfo*)pQueryNode;
462 463 464 465
  pQueryStmtInfo->info.continueQuery = true;

  // todo check for invalid sql statement and return with error code

L
Liu Jicong 已提交
466
  SSchema* schema = NULL;
467
  int32_t  numOfCols = 0;
L
Liu Jicong 已提交
468 469
  CHECK_CODE_GOTO(qCreateQueryDag(pQueryNode, &pRequest->body.pDag, &schema, &numOfCols, NULL, pRequest->requestId),
                  _return);
470 471

  pStr = qDagToString(pRequest->body.pDag);
L
Liu Jicong 已提交
472
  if (pStr == NULL) {
473 474 475
    goto _return;
  }

L
Liu Jicong 已提交
476
  /*printf("%s\n", pStr);*/
477 478 479

  // The topic should be related to a database that the queried table is belonged to.
  SName name = {0};
L
Liu Jicong 已提交
480 481
  char  dbName[TSDB_DB_FNAME_LEN] = {0};
  tNameGetFullDbName(&((SQueryStmtInfo*)pQueryNode)->pTableMetaInfo[0]->name, dbName);
482

L
Liu Jicong 已提交
483
  tNameFromString(&name, dbName, T_NAME_ACCT | T_NAME_DB);
484 485
  tNameFromString(&name, topicName, T_NAME_TABLE);

S
Shengliang Guan 已提交
486
  SMCreateTopicReq req = {
L
Liu Jicong 已提交
487 488 489
      .igExists = 1,
      .physicalPlan = (char*)pStr,
      .sql = (char*)sql,
L
Liu Jicong 已提交
490
      .logicalPlan = (char*)"no logic plan",
491
  };
L
Liu Jicong 已提交
492
  tNameExtractFullName(&name, req.name);
493

S
Shengliang Guan 已提交
494
  int   tlen = tSerializeMCreateTopicReq(NULL, 0, &req);
495 496 497 498 499
  void* buf = malloc(tlen);
  if (buf == NULL) {
    goto _return;
  }

S
Shengliang Guan 已提交
500
  tSerializeMCreateTopicReq(buf, tlen, &req);
501 502
  /*printf("formatted: %s\n", dagStr);*/

dengyihao's avatar
dengyihao 已提交
503
  pRequest->body.requestMsg = (SDataBuf){.pData = buf, .len = tlen, .handle = NULL};
504 505 506
  pRequest->type = TDMT_MND_CREATE_TOPIC;

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
507
  SEpSet        epSet = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);
508 509 510 511 512 513 514 515 516

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

  tsem_wait(&pRequest->body.rspSem);

_return:
  qDestroyQuery(pQueryNode);
  /*if (sendInfo != NULL) {*/
L
Liu Jicong 已提交
517
  /*destroySendMsgInfo(sendInfo);*/
518 519 520 521 522 523 524 525 526
  /*}*/

  if (pRequest != NULL && terrno != TSDB_CODE_SUCCESS) {
    pRequest->code = terrno;
  }

  return pRequest;
}

L
Liu Jicong 已提交
527
static char* formatTimestamp(char* buf, int64_t val, int precision) {
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
  time_t  tt;
  int32_t ms = 0;
  if (precision == TSDB_TIME_PRECISION_NANO) {
    tt = (time_t)(val / 1000000000);
    ms = val % 1000000000;
  } else if (precision == TSDB_TIME_PRECISION_MICRO) {
    tt = (time_t)(val / 1000000);
    ms = val % 1000000;
  } else {
    tt = (time_t)(val / 1000);
    ms = val % 1000;
  }

  /* comment out as it make testcases like select_with_tags.sim fail.
    but in windows, this may cause the call to localtime crash if tt < 0,
    need to find a better solution.
    if (tt < 0) {
      tt = 0;
    }
    */

#ifdef WINDOWS
  if (tt < 0) tt = 0;
#endif
  if (tt <= 0 && ms < 0) {
    tt--;
    if (precision == TSDB_TIME_PRECISION_NANO) {
      ms += 1000000000;
    } else if (precision == TSDB_TIME_PRECISION_MICRO) {
      ms += 1000000;
    } else {
      ms += 1000;
    }
  }

L
Liu Jicong 已提交
563
  struct tm* ptm = localtime(&tt);
564 565 566 567 568 569 570 571 572 573 574 575 576
  size_t     pos = strftime(buf, 35, "%Y-%m-%d %H:%M:%S", ptm);

  if (precision == TSDB_TIME_PRECISION_NANO) {
    sprintf(buf + pos, ".%09d", ms);
  } else if (precision == TSDB_TIME_PRECISION_MICRO) {
    sprintf(buf + pos, ".%06d", ms);
  } else {
    sprintf(buf + pos, ".%03d", ms);
  }

  return buf;
}

L
Liu Jicong 已提交
577 578 579 580 581 582
int32_t tmqGetSkipLogNum(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return 0;
  SMqConsumeRsp* pRsp = (SMqConsumeRsp*)tmq_message;
  return pRsp->skipLogNum;
}

L
Liu Jicong 已提交
583 584 585
void tmqShowMsg(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;

L
Liu Jicong 已提交
586 587
  static bool    noPrintSchema;
  char           pBuf[128];
L
Liu Jicong 已提交
588
  SMqConsumeRsp* pRsp = &tmq_message->consumeRsp;
L
Liu Jicong 已提交
589
  int32_t        colNum = pRsp->schemas->nCols;
L
Liu Jicong 已提交
590 591 592 593 594 595 596 597 598 599 600
  if (!noPrintSchema) {
    printf("|");
    for (int32_t i = 0; i < colNum; i++) {
      if (i == 0)
        printf(" %25s |", pRsp->schemas->pSchema[i].name);
      else
        printf(" %15s |", pRsp->schemas->pSchema[i].name);
    }
    printf("\n");
    printf("===============================================\n");
    noPrintSchema = true;
601
  }
L
Liu Jicong 已提交
602
  int32_t sz = taosArrayGetSize(pRsp->pBlockData);
603
  for (int32_t i = 0; i < sz; i++) {
L
Liu Jicong 已提交
604 605
    SSDataBlock* pDataBlock = taosArrayGet(pRsp->pBlockData, i);
    int32_t      rows = pDataBlock->info.rows;
606 607 608 609
    for (int32_t j = 0; j < rows; j++) {
      printf("|");
      for (int32_t k = 0; k < colNum; k++) {
        SColumnInfoData* pColInfoData = taosArrayGet(pDataBlock->pDataBlock, k);
L
Liu Jicong 已提交
610 611
        void*            var = POINTER_SHIFT(pColInfoData->pData, j * pColInfoData->info.bytes);
        switch (pColInfoData->info.type) {
612 613 614 615 616 617 618 619 620 621 622 623 624
          case TSDB_DATA_TYPE_TIMESTAMP:
            formatTimestamp(pBuf, *(uint64_t*)var, TSDB_TIME_PRECISION_MILLI);
            printf(" %25s |", pBuf);
            break;
          case TSDB_DATA_TYPE_INT:
          case TSDB_DATA_TYPE_UINT:
            printf(" %15u |", *(uint32_t*)var);
            break;
        }
      }
      printf("\n");
    }
  }
L
Liu Jicong 已提交
625 626 627
}

int32_t tmqPollCb(void* param, const SDataBuf* pMsg, int32_t code) {
L
Liu Jicong 已提交
628
  printf("recv poll\n");
L
Liu Jicong 已提交
629 630
  SMqPollCbParam* pParam = (SMqPollCbParam*)param;
  SMqClientVg*    pVg = pParam->pVg;
L
Liu Jicong 已提交
631
  tmq_t*          tmq = pParam->tmq;
L
Liu Jicong 已提交
632
  if (code != 0) {
633
    printf("msg discard\n");
L
Liu Jicong 已提交
634 635 636
    if (pParam->epoch == tmq->epoch) {
      atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
    }
L
Liu Jicong 已提交
637 638 639
    return 0;
  }

L
Liu Jicong 已提交
640 641 642 643 644 645 646 647 648 649 650 651 652
  int32_t msgEpoch = ((SMqRspHead*)pMsg->pData)->epoch;
  int32_t tmqEpoch = atomic_load_32(&tmq->epoch);
  if (msgEpoch < tmqEpoch) {
    printf("discard rsp epoch %d, current epoch %d\n", msgEpoch, tmqEpoch);
    return 0;
  }

  if (msgEpoch != tmqEpoch) {
    printf("mismatch rsp epoch %d, current epoch %d\n", msgEpoch, tmqEpoch);
  }

  /*SMqConsumeRsp* pRsp = calloc(1, sizeof(SMqConsumeRsp));*/
  tmq_message_t* pRsp = taosAllocateQitem(sizeof(tmq_message_t));
L
Liu Jicong 已提交
653
  if (pRsp == NULL) {
L
fix  
Liu Jicong 已提交
654
    printf("fail\n");
L
Liu Jicong 已提交
655 656
    return -1;
  }
L
Liu Jicong 已提交
657 658
  memcpy(pRsp, pMsg->pData, sizeof(SMqRspHead));
  tDecodeSMqConsumeRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pRsp->consumeRsp);
659
  /*printf("rsp commit off:%ld rsp off:%ld has data:%d\n", pRsp->committedOffset, pRsp->rspOffset, pRsp->numOfTopics);*/
L
Liu Jicong 已提交
660
  if (pRsp->consumeRsp.numOfTopics == 0) {
L
fix  
Liu Jicong 已提交
661 662 663 664
    printf("no data\n");
    if (pParam->epoch == tmq->epoch) {
      atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
    }
L
Liu Jicong 已提交
665
    taosFreeQitem(pRsp);
L
Liu Jicong 已提交
666 667
    return 0;
  }
L
Liu Jicong 已提交
668 669 670 671 672 673
  pRsp->extra = pParam->pVg;
  taosWriteQitem(tmq->mqueue, pRsp);
  printf("poll in queue\n");
  /*pParam->rspMsg = (tmq_message_t*)pRsp;*/
  /*pVg->currentOffset = pRsp->consumeRsp.rspOffset;*/

L
Liu Jicong 已提交
674 675
  /*printf("rsp offset: %ld\n", rsp.rspOffset);*/
  /*printf("-----msg begin----\n");*/
676 677 678 679
  /*printf("\n-----msg end------\n");*/
  return 0;
}

L
Liu Jicong 已提交
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708
bool tmqUpdateEp(tmq_t* tmq, int32_t epoch, SMqCMGetSubEpRsp* pRsp) {
  bool    set = false;
  int32_t sz = taosArrayGetSize(pRsp->topics);
  if (tmq->clientTopics) taosArrayDestroy(tmq->clientTopics);
  tmq->clientTopics = taosArrayInit(sz, sizeof(SMqClientTopic));
  for (int32_t i = 0; i < sz; i++) {
    SMqClientTopic topic = {0};
    SMqSubTopicEp* pTopicEp = taosArrayGet(pRsp->topics, i);
    topic.topicName = strdup(pTopicEp->topic);
    int32_t vgSz = taosArrayGetSize(pTopicEp->vgs);
    topic.vgs = taosArrayInit(vgSz, sizeof(SMqClientVg));
    for (int32_t j = 0; j < vgSz; j++) {
      SMqSubVgEp* pVgEp = taosArrayGet(pTopicEp->vgs, j);
      SMqClientVg clientVg = {
          .pollCnt = 0,
          .currentOffset = pVgEp->offset,
          .vgId = pVgEp->vgId,
          .epSet = pVgEp->epSet,
          .vgStatus = TMQ_VG_STATUS__IDLE,
      };
      taosArrayPush(topic.vgs, &clientVg);
      set = true;
    }
    taosArrayPush(tmq->clientTopics, &topic);
  }
  atomic_store_32(&tmq->epoch, epoch);
  return set;
}

L
Liu Jicong 已提交
709
int32_t tmqAskEpCb(void* param, const SDataBuf* pMsg, int32_t code) {
710
  SMqAskEpCbParam* pParam = (SMqAskEpCbParam*)param;
L
Liu Jicong 已提交
711
  tmq_t*           tmq = pParam->tmq;
712
  if (code != 0) {
L
Liu Jicong 已提交
713 714 715
    printf("get topic endpoint error, not ready, wait:%d\n", pParam->sync);
    if (pParam->sync) {
      tsem_post(&pParam->rspSem);
716 717 718 719
    }
    return 0;
  }
  tscDebug("tmq ask ep cb called");
L
Liu Jicong 已提交
720 721 722 723 724 725 726 727 728
  if (pParam->sync) {
    SMqRspHead*      head = pMsg->pData;
    SMqCMGetSubEpRsp rsp;
    tDecodeSMqCMGetSubEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &rsp);
    /*printf("rsp epoch %ld sz %ld\n", rsp.epoch, rsp.topics->size);*/
    /*printf("tmq epoch %ld sz %ld\n", tmq->epoch, tmq->clientTopics->size);*/
    int32_t epoch = atomic_load_32(&tmq->epoch);
    if (head->epoch > epoch && tmqUpdateEp(tmq, head->epoch, &rsp)) {
      atomic_store_64(&tmq->status, TMQ_CONSUMER_STATUS__READY);
729
    }
L
Liu Jicong 已提交
730 731 732 733
    tsem_post(&pParam->rspSem);
    tDeleteSMqCMGetSubEpRsp(&rsp);
  } else {
    tmq_message_t* pRsp = taosAllocateQitem(sizeof(tmq_message_t));
L
Liu Jicong 已提交
734 735 736 737
    if (pRsp == NULL) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      return -1;
    }
L
Liu Jicong 已提交
738
    memcpy(pRsp, pMsg->pData, sizeof(SMqRspHead));
L
fix  
Liu Jicong 已提交
739
    tDecodeSMqCMGetSubEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pRsp->getEpRsp);
L
Liu Jicong 已提交
740
    taosWriteQitem(tmq->mqueue, pRsp);
741 742 743 744
  }
  return 0;
}

L
Liu Jicong 已提交
745
int32_t tmqAskEp(tmq_t* tmq, bool sync) {
L
Liu Jicong 已提交
746
  printf("ask ep sync %d\n", sync);
L
Liu Jicong 已提交
747 748 749 750 751 752 753
  int32_t           tlen = sizeof(SMqCMGetSubEpReq);
  SMqCMGetSubEpReq* buf = malloc(tlen);
  if (buf == NULL) {
    tscError("failed to malloc get subscribe ep buf");
    goto END;
  }
  buf->consumerId = htobe64(tmq->consumerId);
L
Liu Jicong 已提交
754
  buf->epoch = htonl(tmq->epoch);
L
Liu Jicong 已提交
755
  strcpy(buf->cgroup, tmq->groupId);
756

L
Liu Jicong 已提交
757 758 759 760 761
  SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_MND_GET_SUB_EP);
  if (pRequest == NULL) {
    tscError("failed to malloc subscribe ep request");
    goto END;
  }
762

L
Liu Jicong 已提交
763 764 765 766 767
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
768

L
Liu Jicong 已提交
769
  SMqAskEpCbParam* pParam = malloc(sizeof(SMqAskEpCbParam));
L
Liu Jicong 已提交
770 771 772 773 774
  if (pParam == NULL) {
    tscError("failed to malloc subscribe param");
    goto END;
  }
  pParam->tmq = tmq;
L
Liu Jicong 已提交
775 776
  pParam->sync = sync;
  tsem_init(&pParam->rspSem, 0, 0);
777

L
Liu Jicong 已提交
778 779 780 781
  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqAskEpCb;
782

L
Liu Jicong 已提交
783 784 785 786
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

END:
L
Liu Jicong 已提交
789
  if (sync) tsem_wait(&pParam->rspSem);
L
Liu Jicong 已提交
790
  return 0;
791 792
}

L
Liu Jicong 已提交
793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826
tmq_resp_err_t tmq_seek(tmq_t* tmq, const tmq_topic_vgroup_t* offset) {
  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;
          return TMQ_RESP_ERR__SUCCESS;
        }
      }
    }
  }
  return TMQ_RESP_ERR__FAIL;
}

SMqConsumeReq* tmqBuildConsumeReqImpl(tmq_t* tmq, int64_t blocking_time, SMqClientTopic* pTopic, SMqClientVg* pVg) {
  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;
  }

827 828 829 830
  SMqConsumeReq* pReq = malloc(sizeof(SMqConsumeReq));
  if (pReq == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
831

L
Liu Jicong 已提交
832
  strcpy(pReq->topic, pTopic->topicName);
833 834
  strcpy(pReq->cgroup, tmq->groupId);

L
Liu Jicong 已提交
835 836
  pReq->blockingTime = blocking_time;
  pReq->consumerId = tmq->consumerId;
L
Liu Jicong 已提交
837
  pReq->epoch = tmq->epoch;
L
Liu Jicong 已提交
838
  pReq->currentOffset = reqOffset;
839 840 841 842 843 844

  pReq->head.vgId = htonl(pVg->vgId);
  pReq->head.contLen = htonl(sizeof(SMqConsumeReq));
  return pReq;
}

L
Liu Jicong 已提交
845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865
void tmqClearUnhandleMsg(tmq_t* tmq) {
  tmq_message_t* msg;
  while (1) {
    taosGetQitem(tmq->qall, (void**)&msg);
    if (msg)
      taosFreeQitem(msg);
    else
      break;
  }

  taosReadAllQitems(tmq->mqueue, tmq->qall);
  while (1) {
    taosGetQitem(tmq->qall, (void**)&msg);
    if (msg)
      taosFreeQitem(msg);
    else
      break;
  }
}

int32_t tmqPollImpl(tmq_t* tmq, int64_t blockingTime) {
L
Liu Jicong 已提交
866
  printf("call poll\n");
L
Liu Jicong 已提交
867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888
  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) {
        continue;
      }
      SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, blockingTime, pTopic, pVg);
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // TODO: out of mem
        return -1;
      }
      SMqPollCbParam* param = malloc(sizeof(SMqPollCbParam));
      if (param == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // TODO: out of mem
        return -1;
      }
      param->tmq = tmq;
      param->pVg = pVg;
L
Liu Jicong 已提交
889
      param->epoch = tmq->epoch;
L
Liu Jicong 已提交
890 891 892 893 894 895 896 897 898 899 900 901 902
      SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_VND_CONSUME);
      pRequest->body.requestMsg = (SDataBuf){
          .pData = pReq,
          .len = sizeof(SMqConsumeReq),
          .handle = NULL,
      };

      SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
      sendInfo->requestObjRefId = 0;
      sendInfo->param = param;
      sendInfo->fp = tmqPollCb;

      int64_t transporterId = 0;
L
Liu Jicong 已提交
903
      printf("send poll\n");
L
Liu Jicong 已提交
904 905 906 907 908 909 910 911 912 913 914
      asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, sendInfo);
      pVg->pollCnt++;
      tmq->pollCnt++;
    }
  }
  return 0;
}

// return
int32_t tmqHandleRes(tmq_t* tmq, tmq_message_t* rspMsg, bool* pReset) {
  if (rspMsg->head.mqMsgType == TMQ_MSG_TYPE__EP_RSP) {
L
Liu Jicong 已提交
915
    printf("ep %d %d\n", rspMsg->head.epoch, tmq->epoch);
L
Liu Jicong 已提交
916 917 918 919 920 921 922 923 924 925 926 927 928
    if (rspMsg->head.epoch > atomic_load_32(&tmq->epoch)) {
      tmqUpdateEp(tmq, rspMsg->head.epoch, &rspMsg->getEpRsp);
      tmqClearUnhandleMsg(tmq);
      *pReset = true;
    } else {
      *pReset = false;
    }
  } else {
    return -1;
  }
  return 0;
}

L
Liu Jicong 已提交
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962
tmq_message_t* tmqHandleAllRsp(tmq_t* tmq, int64_t blockingTime, bool pollIfReset) {
  while (1) {
    tmq_message_t* rspMsg = NULL;
    taosGetQitem(tmq->qall, (void**)&rspMsg);
    if (rspMsg == NULL) {
      break;
    }

    if (rspMsg->head.mqMsgType == TMQ_MSG_TYPE__POLL_RSP) {
      printf("handle poll rsp %d\n", rspMsg->head.mqMsgType);
      if (rspMsg->head.epoch == atomic_load_32(&tmq->epoch)) {
        printf("epoch match\n");
        SMqClientVg* pVg = rspMsg->extra;
        pVg->currentOffset = rspMsg->consumeRsp.rspOffset;
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        return rspMsg;
      } else {
        printf("epoch mismatch\n");
        taosFreeQitem(rspMsg);
      }
    } else {
      printf("handle ep rsp %d\n", rspMsg->head.mqMsgType);
      bool reset = false;
      tmqHandleRes(tmq, rspMsg, &reset);
      taosFreeQitem(rspMsg);
      if (pollIfReset && reset) {
        printf("reset and repoll\n");
        tmqPollImpl(tmq, blockingTime);
      }
    }
  }
  return NULL;
}

963
tmq_message_t* tmq_consumer_poll(tmq_t* tmq, int64_t blocking_time) {
L
Liu Jicong 已提交
964 965
  tmq_message_t* rspMsg = NULL;
  int64_t        startTime = taosGetTimestampMs();
966

L
Liu Jicong 已提交
967
  // TODO: put into another thread or delayed queue
968
  int64_t status = atomic_load_64(&tmq->status);
L
Liu Jicong 已提交
969 970 971 972 973 974
  tmqAskEp(tmq, status == TMQ_CONSUMER_STATUS__INIT);

  taosGetQitem(tmq->qall, (void**)&rspMsg);
  if (rspMsg == NULL) {
    taosReadAllQitems(tmq->mqueue, tmq->qall);
  }
L
Liu Jicong 已提交
975
  tmqHandleAllRsp(tmq, blocking_time, false);
L
Liu Jicong 已提交
976 977 978 979

  tmqPollImpl(tmq, blocking_time);

  while (1) {
L
fix  
Liu Jicong 已提交
980
    /*printf("cycle\n");*/
L
Liu Jicong 已提交
981
    taosReadAllQitems(tmq->mqueue, tmq->qall);
L
fix  
Liu Jicong 已提交
982 983 984 985 986 987 988 989 990 991
    rspMsg = tmqHandleAllRsp(tmq, blocking_time, true);
    if (rspMsg) {
      return rspMsg;
    }
    if (blocking_time != 0) {
      int64_t endTime = taosGetTimestampMs();
      if (endTime - startTime > blocking_time) {
        printf("normal exit\n");
        return NULL;
      }
L
Liu Jicong 已提交
992 993 994 995 996
    }
  }
}

#if 0
997

L
Liu Jicong 已提交
998
  if (blocking_time <= 0) blocking_time = 1;
L
Liu Jicong 已提交
999 1000
  if (blocking_time > 1000) blocking_time = 1000;
  /*blocking_time = 1;*/
1001 1002 1003

  if (taosArrayGetSize(tmq->clientTopics) == 0) {
    tscDebug("consumer:%ld poll but not assigned", tmq->consumerId);
L
Liu Jicong 已提交
1004
    /*printf("over1\n");*/
1005 1006 1007 1008 1009
    usleep(blocking_time * 1000);
    return NULL;
  }
  SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, tmq->nextTopicIdx);
  if (taosArrayGetSize(pTopic->vgs) == 0) {
L
Liu Jicong 已提交
1010
    /*printf("over2\n");*/
1011 1012 1013 1014
    usleep(blocking_time * 1000);
    return NULL;
  }

L
Liu Jicong 已提交
1015
  tmq->nextTopicIdx = (tmq->nextTopicIdx + 1) % taosArrayGetSize(tmq->clientTopics);
L
Liu Jicong 已提交
1016
  int32_t beginVgIdx = pTopic->nextVgIdx;
L
Liu Jicong 已提交
1017
  while (1) {
L
Liu Jicong 已提交
1018 1019 1020
    pTopic->nextVgIdx = (pTopic->nextVgIdx + 1) % taosArrayGetSize(pTopic->vgs);
    SMqClientVg* pVg = taosArrayGet(pTopic->vgs, pTopic->nextVgIdx);
    /*printf("consume vg %d, offset %ld\n", pVg->vgId, pVg->currentOffset);*/
L
Liu Jicong 已提交
1021
    SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, blocking_time, pTopic, pVg);
L
Liu Jicong 已提交
1022 1023 1024 1025 1026
    if (pReq == NULL) {
      ASSERT(false);
      usleep(blocking_time * 1000);
      return NULL;
    }
1027

L
Liu Jicong 已提交
1028
    SMqPollCbParam* param = malloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
    if (param == NULL) {
      ASSERT(false);
      usleep(blocking_time * 1000);
      return NULL;
    }
    param->tmq = tmq;
    param->retMsg = &tmq_message;
    param->pVg = pVg;
    tsem_init(&param->rspSem, 0, 0);

    SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_VND_CONSUME);
L
Liu Jicong 已提交
1040 1041 1042 1043 1044
    pRequest->body.requestMsg = (SDataBuf){
        .pData = pReq,
        .len = sizeof(SMqConsumeReq),
        .handle = NULL,
    };
1045

L
Liu Jicong 已提交
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
    SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
    sendInfo->requestObjRefId = 0;
    sendInfo->param = param;
    sendInfo->fp = tmqPollCb;

    /*printf("req offset: %ld\n", pReq->offset);*/

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

    tsem_wait(&param->rspSem);
    tsem_destroy(&param->rspSem);
    free(param);

    if (tmq_message == NULL) {
      if (beginVgIdx == pTopic->nextVgIdx) {
        usleep(blocking_time * 1000);
      } else {
        continue;
      }
    }
L
Liu Jicong 已提交
1068

L
Liu Jicong 已提交
1069
    return tmq_message;
L
Liu Jicong 已提交
1070
  }
1071 1072 1073 1074

  /*tsem_wait(&pRequest->body.rspSem);*/

  /*if (body != NULL) {*/
L
Liu Jicong 已提交
1075
  /*destroySendMsgInfo(body);*/
1076 1077 1078
  /*}*/

  /*if (pRequest != NULL && terrno != TSDB_CODE_SUCCESS) {*/
L
Liu Jicong 已提交
1079
  /*pRequest->code = terrno;*/
1080 1081 1082 1083
  /*}*/

  /*return pRequest;*/
}
L
Liu Jicong 已提交
1084
#endif
1085

L
Liu Jicong 已提交
1086
#if 0
L
Liu Jicong 已提交
1087
tmq_resp_err_t tmq_commit(tmq_t* tmq, const tmq_topic_vgroup_list_t* tmq_topic_vgroup_list, int32_t async) {
L
Liu Jicong 已提交
1088
  if (tmq_topic_vgroup_list != NULL) {
L
Liu Jicong 已提交
1089
    // TODO
L
Liu Jicong 已提交
1090 1091
  }

L
Liu Jicong 已提交
1092
  // TODO: change semaphore to gate
L
Liu Jicong 已提交
1093 1094 1095
  for (int i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
    SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
    for (int j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
L
Liu Jicong 已提交
1096
      SMqClientVg*   pVg = taosArrayGet(pTopic->vgs, j);
L
Liu Jicong 已提交
1097
      SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, 0, pTopic, pVg);
L
Liu Jicong 已提交
1098

L
Liu Jicong 已提交
1099 1100
      SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_VND_CONSUME);
      pRequest->body.requestMsg = (SDataBuf){.pData = pReq, .len = sizeof(SMqConsumeReq)};
L
Liu Jicong 已提交
1101
      SMqCommitCbParam* pParam = malloc(sizeof(SMqCommitCbParam));
L
Liu Jicong 已提交
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
      if (pParam == NULL) {
        continue;
      }
      pParam->tmq = tmq;
      pParam->pVg = pVg;
      pParam->async = async;
      if (!async) tsem_init(&pParam->rspSem, 0, 0);

      SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
      sendInfo->requestObjRefId = 0;
      sendInfo->param = pParam;
      sendInfo->fp = tmqCommitCb;

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

      if (!async) tsem_wait(&pParam->rspSem);
    }
  }

L
Liu Jicong 已提交
1122
  return 0;
1123
}
L
Liu Jicong 已提交
1124
#endif
1125 1126 1127

void tmq_message_destroy(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;
L
Liu Jicong 已提交
1128
  SMqConsumeRsp* pRsp = &tmq_message->consumeRsp;
L
Liu Jicong 已提交
1129
  tDeleteSMqConsumeRsp(pRsp);
L
Liu Jicong 已提交
1130
  taosFreeQitem(tmq_message);
1131 1132
}

L
Liu Jicong 已提交
1133
tmq_resp_err_t tmq_consumer_close(tmq_t* tmq) { return TMQ_RESP_ERR__SUCCESS; }
L
Liu Jicong 已提交
1134 1135 1136 1137 1138 1139 1140

const char* tmq_err2str(tmq_resp_err_t err) {
  if (err == TMQ_RESP_ERR__SUCCESS) {
    return "success";
  }
  return "fail";
}
L
Liu Jicong 已提交
1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
#if 0
tmq_t* tmqCreateConsumerImpl(TAOS* conn, tmq_conf_t* conf) {
  tmq_t* pTmq = malloc(sizeof(tmq_t));
  if (pTmq == NULL) {
    return NULL;
  }
  strcpy(pTmq->groupId, conf->groupId);
  strcpy(pTmq->clientId, conf->clientId);
  pTmq->pTscObj = (STscObj*)conn;
  pTmq->pTscObj->connType = HEARTBEAT_TYPE_MQ;
  return pTmq;
}


1155 1156 1157 1158 1159
static void destroySendMsgInfo(SMsgSendInfo* pMsgBody) {
  assert(pMsgBody != NULL);
  tfree(pMsgBody->msgInfo.pData);
  tfree(pMsgBody);
}
L
Liu Jicong 已提交
1160
#endif