tmq.c 37.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * 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"
#include "planner.h"
#include "scheduler.h"
H
Haojun Liao 已提交
21
#include "tdatablock.h"
22 23 24
#include "tdef.h"
#include "tglobal.h"
#include "tmsgtype.h"
H
Haojun Liao 已提交
25
#include "tpagedbuf.h"
X
Xiaoyu Wang 已提交
26
#include "tqueue.h"
27 28
#include "tref.h"

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

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

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

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

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

X
Xiaoyu Wang 已提交
78 79 80 81 82 83 84 85
enum {
  TMQ_VG_STATUS__IDLE = 0,
  TMQ_VG_STATUS__WAIT,
};

enum {
  TMQ_CONSUMER_STATUS__INIT = 0,
  TMQ_CONSUMER_STATUS__READY,
L
Liu Jicong 已提交
86 87
};

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

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

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

L
Liu Jicong 已提交
115
typedef struct {
116
  tmq_t*  tmq;
X
Xiaoyu Wang 已提交
117 118
  int32_t sync;
  tsem_t  rspSem;
119 120
} SMqAskEpCbParam;

L
Liu Jicong 已提交
121
typedef struct {
L
Liu Jicong 已提交
122 123 124 125 126 127
  tmq_t*          tmq;
  SMqClientVg*    pVg;
  int32_t         epoch;
  tsem_t          rspSem;
  tmq_message_t** msg;
  int32_t         sync;
X
Xiaoyu Wang 已提交
128
} SMqPollCbParam;
129

L
Liu Jicong 已提交
130
typedef struct {
L
Liu Jicong 已提交
131 132 133
  tmq_t* tmq;
  /*SMqClientVg* pVg;*/
  int32_t        async;
L
Liu Jicong 已提交
134 135
  tsem_t         rspSem;
  tmq_resp_err_t rspErr;
L
Liu Jicong 已提交
136
} SMqCommitCbParam;
L
Liu Jicong 已提交
137

138 139
tmq_conf_t* tmq_conf_new() {
  tmq_conf_t* conf = calloc(1, sizeof(tmq_conf_t));
L
Liu Jicong 已提交
140
  conf->auto_commit = false;
X
Xiaoyu Wang 已提交
141
  conf->resetOffset = TMQ_CONF__RESET_OFFSET__EARLIEAST;
142 143 144
  return conf;
}

L
Liu Jicong 已提交
145
void tmq_conf_destroy(tmq_conf_t* conf) {
L
Liu Jicong 已提交
146
  if (conf) free(conf);
L
Liu Jicong 已提交
147 148 149
}

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

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

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

L
Liu Jicong 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
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;
  }
}

L
Liu Jicong 已提交
223 224 225 226 227 228
int32_t tmqSubscribeCb(void* param, const SDataBuf* pMsg, int32_t code) {
  SMqSubscribeCbParam* pParam = (SMqSubscribeCbParam*)param;
  pParam->rspErr = code;
  tsem_post(&pParam->rspSem);
  return 0;
}
229

L
Liu Jicong 已提交
230
int32_t tmqCommitCb(void* param, const SDataBuf* pMsg, int32_t code) {
L
Liu Jicong 已提交
231
  SMqCommitCbParam* pParam = (SMqCommitCbParam*)param;
L
Liu Jicong 已提交
232
  pParam->rspErr = code == 0 ? TMQ_RESP_ERR__SUCCESS : TMQ_RESP_ERR__FAIL;
L
Liu Jicong 已提交
233
  if (pParam->tmq->commit_cb) {
L
Liu Jicong 已提交
234
    pParam->tmq->commit_cb(pParam->tmq, pParam->rspErr, NULL, NULL);
L
Liu Jicong 已提交
235
  }
L
fix  
Liu Jicong 已提交
236
  if (!pParam->async) tsem_post(&pParam->rspSem);
L
Liu Jicong 已提交
237 238 239
  return 0;
}

X
Xiaoyu Wang 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
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);
}

256 257 258 259 260 261
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;
L
Liu Jicong 已提交
262
  pTmq->inWaiting = 0;
263 264
  pTmq->status = 0;
  pTmq->pollCnt = 0;
L
Liu Jicong 已提交
265
  pTmq->epoch = 0;
L
fix  
Liu Jicong 已提交
266
  pTmq->waitingRequest = 0;
L
Liu Jicong 已提交
267
  pTmq->readyRequest = 0;
L
Liu Jicong 已提交
268
  // set conf
269 270
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
L
Liu Jicong 已提交
271
  pTmq->autoCommit = conf->auto_commit;
272
  pTmq->commit_cb = conf->commit_cb;
L
Liu Jicong 已提交
273
  pTmq->resetOffsetCfg = conf->resetOffset;
L
Liu Jicong 已提交
274

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

L
Liu Jicong 已提交
277
  pTmq->consumerId = generateRequestId() & (((uint64_t)-1) >> 1);
278
  pTmq->clientTopics = taosArrayInit(0, sizeof(SMqClientTopic));
X
Xiaoyu Wang 已提交
279 280 281

  pTmq->mqueue = taosOpenQueue();
  pTmq->qall = taosAllocateQall();
282 283 284
  return pTmq;
}

L
Liu Jicong 已提交
285 286 287 288
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 已提交
289 290
  // build msg
  // send to mnode
L
Liu Jicong 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
  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 已提交
314 315 316 317

  SCoder encoder;

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, NULL, 0, TD_ENCODER);
L
Liu Jicong 已提交
318
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
319 320 321 322 323 324 325 326 327
  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 已提交
328
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
329 330
  tCoderClear(&encoder);

L
Liu Jicong 已提交
331
  pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_MND_MQ_COMMIT_OFFSET);
L
Liu Jicong 已提交
332 333 334 335
  if (pRequest == NULL) {
    tscError("failed to malloc request");
  }

L
Liu Jicong 已提交
336 337 338 339 340 341
  SMqCommitCbParam* pParam = malloc(sizeof(SMqCommitCbParam));
  if (pParam == NULL) {
    return -1;
  }
  pParam->tmq = tmq;
  tsem_init(&pParam->rspSem, 0, 0);
L
fix  
Liu Jicong 已提交
342
  pParam->async = async;
L
Liu Jicong 已提交
343

X
Xiaoyu Wang 已提交
344 345 346 347 348
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
L
Liu Jicong 已提交
349 350

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
351 352
  sendInfo->param = pParam;
  sendInfo->fp = tmqCommitCb;
L
Liu Jicong 已提交
353 354 355 356 357
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
358 359 360 361
  if (!async) {
    tsem_wait(&pParam->rspSem);
    resp = pParam->rspErr;
  }
L
Liu Jicong 已提交
362

L
fix  
Liu Jicong 已提交
363 364 365
  tsem_destroy(&pParam->rspSem);
  free(pParam);

L
Liu Jicong 已提交
366 367 368 369 370
  if (pArray) {
    taosArrayDestroy(pArray);
  }

  return resp;
L
Liu Jicong 已提交
371 372
}

L
Liu Jicong 已提交
373
tmq_resp_err_t tmq_subscribe(tmq_t* tmq, tmq_list_t* topic_list) {
L
Liu Jicong 已提交
374 375 376
  SRequestObj* pRequest = NULL;
  int32_t      sz = topic_list->cnt;
  // destroy ex
377 378 379 380 381 382 383 384 385 386 387 388 389 390
  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 已提交
391 392 393
    if (dbName == NULL) {
      return TMQ_RESP_ERR__FAIL;
    }
L
Liu Jicong 已提交
394
    tNameSetDbName(&name, tmq->pTscObj->acctId, dbName, strlen(dbName));
395 396 397 398
    tNameFromString(&name, topicName, T_NAME_TABLE);

    char* topicFname = calloc(1, TSDB_TOPIC_FNAME_LEN);
    if (topicFname == NULL) {
L
Liu Jicong 已提交
399
      goto _return;
400 401 402 403
    }
    tNameExtractFullName(&name, topicFname);
    tscDebug("subscribe topic: %s", topicFname);
    SMqClientTopic topic = {
L
Liu Jicong 已提交
404
        .nextVgIdx = 0, .sql = NULL, .sqlLen = 0, .topicId = 0, .topicName = topicFname, .vgs = NULL};
405
    topic.vgs = taosArrayInit(0, sizeof(SMqClientVg));
L
Liu Jicong 已提交
406
    taosArrayPush(tmq->clientTopics, &topic);
407
    taosArrayPush(req.topicNames, &topicFname);
L
Liu Jicong 已提交
408
    free(dbName);
409 410
  }

L
Liu Jicong 已提交
411
  int   tlen = tSerializeSCMSubscribeReq(NULL, &req);
412
  void* buf = malloc(tlen);
L
Liu Jicong 已提交
413
  if (buf == NULL) {
414 415 416 417 418 419 420 421 422
    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 已提交
423
    tscError("failed to malloc request");
424 425
  }

X
Xiaoyu Wang 已提交
426 427 428 429
  SMqSubscribeCbParam param = {
      .rspErr = TMQ_RESP_ERR__SUCCESS,
      .tmq = tmq,
  };
L
Liu Jicong 已提交
430 431
  tsem_init(&param.rspSem, 0, 0);

X
Xiaoyu Wang 已提交
432 433 434 435 436
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
437 438

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
439 440
  sendInfo->param = &param;
  sendInfo->fp = tmqSubscribeCb;
441 442 443 444 445
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
446 447
  tsem_wait(&param.rspSem);
  tsem_destroy(&param.rspSem);
448 449 450

_return:
  /*if (sendInfo != NULL) {*/
L
Liu Jicong 已提交
451
  /*destroySendMsgInfo(sendInfo);*/
452 453
  /*}*/

L
Liu Jicong 已提交
454
  return param.rspErr;
455 456
}

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

L
Liu Jicong 已提交
459 460 461
TAOS_RES* tmq_create_topic(TAOS* taos, const char* topicName, const char* sql, int sqlLen) {
  STscObj*     pTscObj = (STscObj*)taos;
  SRequestObj* pRequest = NULL;
L
Liu Jicong 已提交
462
  SQuery*      pQueryNode = NULL;
L
Liu Jicong 已提交
463
  char*        astStr = NULL;
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485

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

X
Xiaoyu Wang 已提交
486 487
  CHECK_CODE_GOTO(buildRequest(pTscObj, sql, sqlLen, &pRequest), _return);
  CHECK_CODE_GOTO(parseSql(pRequest, true, &pQueryNode), _return);
488 489 490

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

L
Liu Jicong 已提交
491
  CHECK_CODE_GOTO(nodesNodeToString(pQueryNode->pRoot, false, &astStr, NULL), _return);
492

L
Liu Jicong 已提交
493
  /*printf("%s\n", pStr);*/
494

L
Liu Jicong 已提交
495
  SName name = {.acctId = pTscObj->acctId, .type = TSDB_TABLE_NAME_T};
X
Xiaoyu Wang 已提交
496 497
  strcpy(name.dbname, pRequest->pDb);
  strcpy(name.tname, topicName);
498

L
Liu Jicong 已提交
499
  SCMCreateTopicReq req = {
L
Liu Jicong 已提交
500
      .igExists = 1,
L
Liu Jicong 已提交
501
      .ast = (char*)astStr,
L
Liu Jicong 已提交
502
      .sql = (char*)sql,
503
  };
L
Liu Jicong 已提交
504
  tNameExtractFullName(&name, req.name);
505

L
Liu Jicong 已提交
506
  int   tlen = tSerializeSCMCreateTopicReq(NULL, 0, &req);
507 508 509 510 511
  void* buf = malloc(tlen);
  if (buf == NULL) {
    goto _return;
  }

L
Liu Jicong 已提交
512
  tSerializeSCMCreateTopicReq(buf, tlen, &req);
513 514
  /*printf("formatted: %s\n", dagStr);*/

L
Liu Jicong 已提交
515 516 517 518 519
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
520 521 522
  pRequest->type = TDMT_MND_CREATE_TOPIC;

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
523
  SEpSet        epSet = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);
524 525 526 527 528

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

  tsem_wait(&pRequest->body.rspSem);
X
Xiaoyu Wang 已提交
529

530 531 532
_return:
  qDestroyQuery(pQueryNode);
  /*if (sendInfo != NULL) {*/
L
Liu Jicong 已提交
533
  /*destroySendMsgInfo(sendInfo);*/
534 535 536 537 538 539 540 541 542
  /*}*/

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

  return pRequest;
}

L
Liu Jicong 已提交
543
static char* formatTimestamp(char* buf, int64_t val, int precision) {
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
  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 已提交
579
  struct tm* ptm = localtime(&tt);
580 581 582 583 584 585 586 587 588 589 590 591 592
  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 已提交
593 594
int32_t tmqGetSkipLogNum(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return 0;
L
Liu Jicong 已提交
595
  SMqPollRsp* pRsp = &tmq_message->consumeRsp;
L
Liu Jicong 已提交
596 597 598
  return pRsp->skipLogNum;
}

L
Liu Jicong 已提交
599 600 601
void tmqShowMsg(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;

L
Liu Jicong 已提交
602 603 604 605
  static bool noPrintSchema;
  char        pBuf[128];
  SMqPollRsp* pRsp = &tmq_message->consumeRsp;
  int32_t     colNum = pRsp->schemas->nCols;
L
Liu Jicong 已提交
606 607 608 609 610 611 612 613 614 615 616
  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;
617
  }
L
Liu Jicong 已提交
618
  int32_t sz = taosArrayGetSize(pRsp->pBlockData);
619
  for (int32_t i = 0; i < sz; i++) {
L
Liu Jicong 已提交
620 621
    SSDataBlock* pDataBlock = taosArrayGet(pRsp->pBlockData, i);
    int32_t      rows = pDataBlock->info.rows;
622 623 624 625
    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 已提交
626 627
        void*            var = POINTER_SHIFT(pColInfoData->pData, j * pColInfoData->info.bytes);
        switch (pColInfoData->info.type) {
628 629 630 631 632 633 634 635 636 637 638 639 640
          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 已提交
641 642 643
}

int32_t tmqPollCb(void* param, const SDataBuf* pMsg, int32_t code) {
L
fix  
Liu Jicong 已提交
644
  /*printf("recv poll\n");*/
X
Xiaoyu Wang 已提交
645 646 647
  SMqPollCbParam* pParam = (SMqPollCbParam*)param;
  SMqClientVg*    pVg = pParam->pVg;
  tmq_t*          tmq = pParam->tmq;
L
Liu Jicong 已提交
648
  if (code != 0) {
649
    printf("msg discard\n");
L
Liu Jicong 已提交
650
    goto WRITE_QUEUE_FAIL;
L
Liu Jicong 已提交
651 652
  }

X
Xiaoyu Wang 已提交
653 654 655
  int32_t msgEpoch = ((SMqRspHead*)pMsg->pData)->epoch;
  int32_t tmqEpoch = atomic_load_32(&tmq->epoch);
  if (msgEpoch < tmqEpoch) {
L
Liu Jicong 已提交
656
    tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
657 658 659 660 661 662
    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);
L
fix  
Liu Jicong 已提交
663 664
  } else {
    atomic_sub_fetch_32(&tmq->waitingRequest, 1);
X
Xiaoyu Wang 已提交
665 666
  }

L
Liu Jicong 已提交
667
#if 0
L
Liu Jicong 已提交
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
  if (pParam->sync == 1) {
    /**pParam->msg = malloc(sizeof(tmq_message_t));*/
    *pParam->msg = taosAllocateQitem(sizeof(tmq_message_t));
    if (*pParam->msg) {
      memcpy(*pParam->msg, pMsg->pData, sizeof(SMqRspHead));
      tDecodeSMqConsumeRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &((*pParam->msg)->consumeRsp));
      if ((*pParam->msg)->consumeRsp.numOfTopics != 0) {
        pVg->currentOffset = (*pParam->msg)->consumeRsp.rspOffset;
      }
      taosWriteQitem(tmq->mqueue, *pParam->msg);
      tsem_post(&pParam->rspSem);
      return 0;
    }
    tsem_post(&pParam->rspSem);
    return -1;
  }
L
Liu Jicong 已提交
684
#endif
L
Liu Jicong 已提交
685

X
Xiaoyu Wang 已提交
686 687
  /*SMqConsumeRsp* pRsp = calloc(1, sizeof(SMqConsumeRsp));*/
  tmq_message_t* pRsp = taosAllocateQitem(sizeof(tmq_message_t));
L
Liu Jicong 已提交
688
  if (pRsp == NULL) {
L
Liu Jicong 已提交
689
    goto WRITE_QUEUE_FAIL;
L
Liu Jicong 已提交
690
  }
X
Xiaoyu Wang 已提交
691
  memcpy(pRsp, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
692
  tDecodeSMqPollRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pRsp->consumeRsp);
L
Liu Jicong 已提交
693 694 695 696
  pRsp->curBlock = 0;
  pRsp->curRow = 0;
  // TODO: alloc mem
  /*pRsp->*/
697
  /*printf("rsp commit off:%ld rsp off:%ld has data:%d\n", pRsp->committedOffset, pRsp->rspOffset, pRsp->numOfTopics);*/
X
Xiaoyu Wang 已提交
698
  if (pRsp->consumeRsp.numOfTopics == 0) {
L
fix  
Liu Jicong 已提交
699
    /*printf("no data\n");*/
X
Xiaoyu Wang 已提交
700
    taosFreeQitem(pRsp);
L
Liu Jicong 已提交
701
    goto WRITE_QUEUE_FAIL;
L
Liu Jicong 已提交
702
  }
L
Liu Jicong 已提交
703

X
Xiaoyu Wang 已提交
704 705
  pRsp->extra = pParam->pVg;
  taosWriteQitem(tmq->mqueue, pRsp);
L
Liu Jicong 已提交
706
  atomic_add_fetch_32(&tmq->readyRequest, 1);
L
Liu Jicong 已提交
707
  tsem_post(&tmq->rspSem);
708
  return 0;
L
Liu Jicong 已提交
709 710 711 712 713 714 715

WRITE_QUEUE_FAIL:
  if (pParam->epoch == tmq->epoch) {
    atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
  }
  tsem_post(&tmq->rspSem);
  return code;
716 717
}

X
Xiaoyu Wang 已提交
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
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 已提交
747
int32_t tmqAskEpCb(void* param, const SDataBuf* pMsg, int32_t code) {
748
  SMqAskEpCbParam* pParam = (SMqAskEpCbParam*)param;
L
Liu Jicong 已提交
749
  tmq_t*           tmq = pParam->tmq;
750
  if (code != 0) {
X
Xiaoyu Wang 已提交
751
    printf("get topic endpoint error, not ready, wait:%d\n", pParam->sync);
L
Liu Jicong 已提交
752
    goto END;
753
  }
L
Liu Jicong 已提交
754

L
Liu Jicong 已提交
755
  // tmq's epoch is monotonically increase,
L
Liu Jicong 已提交
756
  // so it's safe to discard any old epoch msg.
L
Liu Jicong 已提交
757
  // Epoch will only increase when received newer epoch ep msg
L
Liu Jicong 已提交
758 759 760 761
  SMqRspHead* head = pMsg->pData;
  int32_t     epoch = atomic_load_32(&tmq->epoch);
  if (head->epoch <= epoch) {
    goto END;
762
  }
L
Liu Jicong 已提交
763

X
Xiaoyu Wang 已提交
764 765 766 767 768
  if (pParam->sync) {
    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);*/
L
Liu Jicong 已提交
769
    if (tmqUpdateEp(tmq, head->epoch, &rsp)) {
X
Xiaoyu Wang 已提交
770
      atomic_store_64(&tmq->status, TMQ_CONSUMER_STATUS__READY);
771
    }
X
Xiaoyu Wang 已提交
772 773 774 775 776
    tDeleteSMqCMGetSubEpRsp(&rsp);
  } else {
    tmq_message_t* pRsp = taosAllocateQitem(sizeof(tmq_message_t));
    if (pRsp == NULL) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
777 778
      code = -1;
      goto END;
X
Xiaoyu Wang 已提交
779 780 781
    }
    memcpy(pRsp, pMsg->pData, sizeof(SMqRspHead));
    tDecodeSMqCMGetSubEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pRsp->getEpRsp);
L
Liu Jicong 已提交
782

X
Xiaoyu Wang 已提交
783
    taosWriteQitem(tmq->mqueue, pRsp);
L
Liu Jicong 已提交
784
    tsem_post(&tmq->rspSem);
785
  }
L
Liu Jicong 已提交
786 787 788 789 790 791

END:
  if (pParam->sync) {
    tsem_post(&pParam->rspSem);
  }
  return code;
792 793
}

X
Xiaoyu Wang 已提交
794
int32_t tmqAskEp(tmq_t* tmq, bool sync) {
L
Liu Jicong 已提交
795
  int32_t           tlen = sizeof(SMqCMGetSubEpReq);
L
Liu Jicong 已提交
796 797
  SMqCMGetSubEpReq* req = malloc(tlen);
  if (req == NULL) {
L
Liu Jicong 已提交
798
    tscError("failed to malloc get subscribe ep buf");
L
Liu Jicong 已提交
799
    return -1;
L
Liu Jicong 已提交
800
  }
L
Liu Jicong 已提交
801 802 803
  req->consumerId = htobe64(tmq->consumerId);
  req->epoch = htonl(tmq->epoch);
  strcpy(req->cgroup, tmq->groupId);
804

L
Liu Jicong 已提交
805
  SMqAskEpCbParam* pParam = malloc(sizeof(SMqAskEpCbParam));
L
Liu Jicong 已提交
806 807
  if (pParam == NULL) {
    tscError("failed to malloc subscribe param");
L
Liu Jicong 已提交
808 809
    free(req);
    return -1;
L
Liu Jicong 已提交
810 811
  }
  pParam->tmq = tmq;
X
Xiaoyu Wang 已提交
812 813
  pParam->sync = sync;
  tsem_init(&pParam->rspSem, 0, 0);
814

L
Liu Jicong 已提交
815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
  SMsgSendInfo* sendInfo = malloc(sizeof(SMsgSendInfo));
  if (sendInfo == NULL) {
    tsem_destroy(&pParam->rspSem);
    free(pParam);
    free(req);
    return -1;
  }

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

  sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
830 831 832
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqAskEpCb;
L
Liu Jicong 已提交
833
  sendInfo->msgType = TDMT_MND_GET_SUB_EP;
834

L
Liu Jicong 已提交
835 836 837 838
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

X
Xiaoyu Wang 已提交
840
  if (sync) tsem_wait(&pParam->rspSem);
L
Liu Jicong 已提交
841
  return 0;
842 843
}

L
Liu Jicong 已提交
844 845 846 847 848 849 850 851 852 853 854 855 856 857
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;
L
Liu Jicong 已提交
858
          tmqClearUnhandleMsg(tmq);
L
Liu Jicong 已提交
859 860 861 862 863 864 865 866
          return TMQ_RESP_ERR__SUCCESS;
        }
      }
    }
  }
  return TMQ_RESP_ERR__FAIL;
}

L
Liu Jicong 已提交
867
SMqPollReq* tmqBuildConsumeReqImpl(tmq_t* tmq, int64_t blockingTime, SMqClientTopic* pTopic, SMqClientVg* pVg) {
L
Liu Jicong 已提交
868 869 870 871 872 873 874 875 876 877 878
  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 已提交
879
  SMqPollReq* pReq = malloc(sizeof(SMqPollReq));
880 881 882
  if (pReq == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
883

L
Liu Jicong 已提交
884
  strcpy(pReq->topic, pTopic->topicName);
885 886
  strcpy(pReq->cgroup, tmq->groupId);

L
fix  
Liu Jicong 已提交
887
  pReq->blockingTime = blockingTime;
L
Liu Jicong 已提交
888
  pReq->consumerId = tmq->consumerId;
X
Xiaoyu Wang 已提交
889
  pReq->epoch = tmq->epoch;
L
Liu Jicong 已提交
890
  pReq->currentOffset = reqOffset;
891 892

  pReq->head.vgId = htonl(pVg->vgId);
L
Liu Jicong 已提交
893
  pReq->head.contLen = htonl(sizeof(SMqPollReq));
894 895 896
  return pReq;
}

L
Liu Jicong 已提交
897 898 899 900 901 902 903 904 905 906
tmq_message_t* tmqSyncPollImpl(tmq_t* tmq, int64_t blockingTime) {
  tmq_message_t* msg = NULL;
  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;*/
      /*}*/
L
Liu Jicong 已提交
907
      SMqPollReq* pReq = tmqBuildConsumeReqImpl(tmq, blockingTime, pTopic, pVg);
L
Liu Jicong 已提交
908 909 910 911 912
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // TODO: out of mem
        return NULL;
      }
X
Xiaoyu Wang 已提交
913

L
Liu Jicong 已提交
914 915
      SMqPollCbParam* pParam = malloc(sizeof(SMqPollCbParam));
      if (pParam == NULL) {
L
Liu Jicong 已提交
916 917 918 919
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // TODO: out of mem
        return NULL;
      }
L
Liu Jicong 已提交
920 921 922 923 924 925 926 927 928 929 930 931 932
      pParam->tmq = tmq;
      pParam->pVg = pVg;
      pParam->epoch = tmq->epoch;
      pParam->sync = 1;
      pParam->msg = &msg;
      tsem_init(&pParam->rspSem, 0, 0);

      SMsgSendInfo* sendInfo = malloc(sizeof(SMsgSendInfo));
      if (sendInfo == NULL) {
        return NULL;
      }

      sendInfo->msgInfo = (SDataBuf){
L
Liu Jicong 已提交
933
          .pData = pReq,
L
Liu Jicong 已提交
934
          .len = sizeof(SMqPollReq),
L
Liu Jicong 已提交
935 936
          .handle = NULL,
      };
L
Liu Jicong 已提交
937
      sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
938
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
939
      sendInfo->param = pParam;
L
Liu Jicong 已提交
940
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
941
      sendInfo->msgType = TDMT_VND_CONSUME;
L
Liu Jicong 已提交
942 943 944 945 946 947 948 949

      int64_t transporterId = 0;
      /*printf("send poll\n");*/
      atomic_add_fetch_32(&tmq->waitingRequest, 1);
      asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, sendInfo);
      pVg->pollCnt++;
      tmq->pollCnt++;

L
Liu Jicong 已提交
950
      tsem_wait(&pParam->rspSem);
L
Liu Jicong 已提交
951 952 953 954
      tmq_message_t* nmsg = NULL;
      while (1) {
        taosReadQitem(tmq->mqueue, (void**)&nmsg);
        if (nmsg == NULL) continue;
L
Liu Jicong 已提交
955 956 957
        while (nmsg->head.mqMsgType != TMQ_MSG_TYPE__POLL_RSP) {
          taosReadQitem(tmq->mqueue, (void**)&nmsg);
        }
L
Liu Jicong 已提交
958 959 960
        return nmsg;
      }
    }
X
Xiaoyu Wang 已提交
961
  }
L
Liu Jicong 已提交
962
  return NULL;
X
Xiaoyu Wang 已提交
963 964 965
}

int32_t tmqPollImpl(tmq_t* tmq, int64_t blockingTime) {
L
fix  
Liu Jicong 已提交
966
  /*printf("call poll\n");*/
X
Xiaoyu Wang 已提交
967 968 969 970 971 972 973 974
  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;
      }
L
Liu Jicong 已提交
975
      SMqPollReq* pReq = tmqBuildConsumeReqImpl(tmq, blockingTime, pTopic, pVg);
X
Xiaoyu Wang 已提交
976 977
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
Liu Jicong 已提交
978
        tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
979 980
        return -1;
      }
L
Liu Jicong 已提交
981 982 983
      SMqPollCbParam* pParam = malloc(sizeof(SMqPollCbParam));
      if (pParam == NULL) {
        free(pReq);
X
Xiaoyu Wang 已提交
984
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
Liu Jicong 已提交
985
        tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
986 987
        return -1;
      }
L
Liu Jicong 已提交
988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002
      pParam->tmq = tmq;
      pParam->pVg = pVg;
      pParam->epoch = tmq->epoch;
      pParam->sync = 0;

      SMsgSendInfo* sendInfo = malloc(sizeof(SMsgSendInfo));
      if (sendInfo == NULL) {
        free(pReq);
        free(pParam);
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        tsem_post(&tmq->rspSem);
        return -1;
      }

      sendInfo->msgInfo = (SDataBuf){
X
Xiaoyu Wang 已提交
1003
          .pData = pReq,
L
Liu Jicong 已提交
1004
          .len = sizeof(SMqPollReq),
X
Xiaoyu Wang 已提交
1005 1006
          .handle = NULL,
      };
L
Liu Jicong 已提交
1007
      sendInfo->requestId = generateRequestId();
X
Xiaoyu Wang 已提交
1008
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1009
      sendInfo->param = pParam;
X
Xiaoyu Wang 已提交
1010
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
1011
      sendInfo->msgType = TDMT_VND_CONSUME;
X
Xiaoyu Wang 已提交
1012 1013

      int64_t transporterId = 0;
L
fix  
Liu Jicong 已提交
1014 1015
      /*printf("send poll\n");*/
      atomic_add_fetch_32(&tmq->waitingRequest, 1);
X
Xiaoyu Wang 已提交
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
      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
fix  
Liu Jicong 已提交
1027
    /*printf("ep %d %d\n", rspMsg->head.epoch, tmq->epoch);*/
X
Xiaoyu Wang 已提交
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
    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;
}

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) {
L
Liu Jicong 已提交
1046 1047 1048
      taosReadAllQitems(tmq->mqueue, tmq->qall);
      taosGetQitem(tmq->qall, (void**)&rspMsg);
      if (rspMsg == NULL) return NULL;
X
Xiaoyu Wang 已提交
1049 1050 1051
    }

    if (rspMsg->head.mqMsgType == TMQ_MSG_TYPE__POLL_RSP) {
L
Liu Jicong 已提交
1052
      atomic_sub_fetch_32(&tmq->readyRequest, 1);
L
fix  
Liu Jicong 已提交
1053
      /*printf("handle poll rsp %d\n", rspMsg->head.mqMsgType);*/
X
Xiaoyu Wang 已提交
1054
      if (rspMsg->head.epoch == atomic_load_32(&tmq->epoch)) {
L
fix  
Liu Jicong 已提交
1055
        /*printf("epoch match\n");*/
X
Xiaoyu Wang 已提交
1056 1057 1058 1059 1060
        SMqClientVg* pVg = rspMsg->extra;
        pVg->currentOffset = rspMsg->consumeRsp.rspOffset;
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        return rspMsg;
      } else {
L
Liu Jicong 已提交
1061
        /*printf("epoch mismatch\n");*/
X
Xiaoyu Wang 已提交
1062 1063 1064
        taosFreeQitem(rspMsg);
      }
    } else {
L
fix  
Liu Jicong 已提交
1065
      /*printf("handle ep rsp %d\n", rspMsg->head.mqMsgType);*/
X
Xiaoyu Wang 已提交
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
      bool reset = false;
      tmqHandleRes(tmq, rspMsg, &reset);
      taosFreeQitem(rspMsg);
      if (pollIfReset && reset) {
        printf("reset and repoll\n");
        tmqPollImpl(tmq, blockingTime);
      }
    }
  }
}

L
Liu Jicong 已提交
1077
tmq_message_t* tmq_consumer_poll_v1(tmq_t* tmq, int64_t blocking_time) {
X
Xiaoyu Wang 已提交
1078 1079
  tmq_message_t* rspMsg = NULL;
  int64_t        startTime = taosGetTimestampMs();
1080 1081

  int64_t status = atomic_load_64(&tmq->status);
X
Xiaoyu Wang 已提交
1082 1083
  tmqAskEp(tmq, status == TMQ_CONSUMER_STATUS__INIT);

L
Liu Jicong 已提交
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
  while (1) {
    rspMsg = tmqSyncPollImpl(tmq, blocking_time);
    if (rspMsg && rspMsg->consumeRsp.numOfTopics) {
      return rspMsg;
    }

    if (blocking_time != 0) {
      int64_t endTime = taosGetTimestampMs();
      if (endTime - startTime > blocking_time) {
        return NULL;
      }
    } else
      return NULL;
X
Xiaoyu Wang 已提交
1097
  }
L
Liu Jicong 已提交
1098
}
X
Xiaoyu Wang 已提交
1099

L
Liu Jicong 已提交
1100 1101
tmq_message_t* tmq_consumer_poll(tmq_t* tmq, int64_t blocking_time) {
  tmq_message_t* rspMsg;
L
Liu Jicong 已提交
1102 1103
  int64_t        startTime = taosGetTimestampMs();

L
Liu Jicong 已提交
1104
  // TODO: put into another thread or delayed queue
1105
  int64_t status = atomic_load_64(&tmq->status);
L
Liu Jicong 已提交
1106 1107
  tmqAskEp(tmq, status == TMQ_CONSUMER_STATUS__INIT);

L
fix  
Liu Jicong 已提交
1108 1109 1110 1111
  rspMsg = tmqHandleAllRsp(tmq, blocking_time, false);
  if (rspMsg) {
    return rspMsg;
  }
X
Xiaoyu Wang 已提交
1112 1113 1114

  while (1) {
    /*printf("cycle\n");*/
L
Liu Jicong 已提交
1115
    tmqPollImpl(tmq, blocking_time);
L
Liu Jicong 已提交
1116 1117 1118 1119

    tsem_wait(&tmq->rspSem);

    rspMsg = tmqHandleAllRsp(tmq, blocking_time, false);
X
Xiaoyu Wang 已提交
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
    if (rspMsg) {
      return rspMsg;
    }
    if (blocking_time != 0) {
      int64_t endTime = taosGetTimestampMs();
      if (endTime - startTime > blocking_time) {
        return NULL;
      }
    }
  }
}

#if 0
1133

L
Liu Jicong 已提交
1134
  if (blocking_time <= 0) blocking_time = 1;
L
Liu Jicong 已提交
1135 1136
  if (blocking_time > 1000) blocking_time = 1000;
  /*blocking_time = 1;*/
1137 1138 1139

  if (taosArrayGetSize(tmq->clientTopics) == 0) {
    tscDebug("consumer:%ld poll but not assigned", tmq->consumerId);
L
Liu Jicong 已提交
1140
    /*printf("over1\n");*/
wafwerar's avatar
wafwerar 已提交
1141
    taosMsleep(blocking_time);
1142 1143 1144 1145
    return NULL;
  }
  SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, tmq->nextTopicIdx);
  if (taosArrayGetSize(pTopic->vgs) == 0) {
L
Liu Jicong 已提交
1146
    /*printf("over2\n");*/
wafwerar's avatar
wafwerar 已提交
1147
    taosMsleep(blocking_time);
1148 1149 1150
    return NULL;
  }

L
Liu Jicong 已提交
1151
  tmq->nextTopicIdx = (tmq->nextTopicIdx + 1) % taosArrayGetSize(tmq->clientTopics);
L
Liu Jicong 已提交
1152
  int32_t beginVgIdx = pTopic->nextVgIdx;
L
Liu Jicong 已提交
1153
  while (1) {
L
Liu Jicong 已提交
1154 1155 1156
    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 已提交
1157
    SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, blocking_time, pTopic, pVg);
L
Liu Jicong 已提交
1158 1159
    if (pReq == NULL) {
      ASSERT(false);
wafwerar's avatar
wafwerar 已提交
1160
      taosMsleep(blocking_time);
L
Liu Jicong 已提交
1161 1162
      return NULL;
    }
1163

X
Xiaoyu Wang 已提交
1164
    SMqPollCbParam* param = malloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1165 1166
    if (param == NULL) {
      ASSERT(false);
wafwerar's avatar
wafwerar 已提交
1167
      taosMsleep(blocking_time);
L
Liu Jicong 已提交
1168 1169 1170 1171 1172 1173 1174 1175
      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);
X
Xiaoyu Wang 已提交
1176 1177 1178 1179 1180
    pRequest->body.requestMsg = (SDataBuf){
        .pData = pReq,
        .len = sizeof(SMqConsumeReq),
        .handle = NULL,
    };
1181

L
Liu Jicong 已提交
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198
    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) {
wafwerar's avatar
wafwerar 已提交
1199
        taosMsleep(blocking_time);
L
Liu Jicong 已提交
1200 1201 1202 1203
      } else {
        continue;
      }
    }
L
Liu Jicong 已提交
1204

L
Liu Jicong 已提交
1205
    return tmq_message;
L
Liu Jicong 已提交
1206
  }
1207 1208 1209 1210

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

  /*if (body != NULL) {*/
L
Liu Jicong 已提交
1211
  /*destroySendMsgInfo(body);*/
1212 1213 1214
  /*}*/

  /*if (pRequest != NULL && terrno != TSDB_CODE_SUCCESS) {*/
L
Liu Jicong 已提交
1215
  /*pRequest->code = terrno;*/
1216 1217 1218 1219
  /*}*/

  /*return pRequest;*/
}
X
Xiaoyu Wang 已提交
1220
#endif
1221

L
Liu Jicong 已提交
1222
#if 0
L
Liu Jicong 已提交
1223
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 已提交
1224
  if (tmq_topic_vgroup_list != NULL) {
L
Liu Jicong 已提交
1225
    // TODO
L
Liu Jicong 已提交
1226 1227
  }

L
Liu Jicong 已提交
1228
  // TODO: change semaphore to gate
L
Liu Jicong 已提交
1229 1230 1231
  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 已提交
1232
      SMqClientVg*   pVg = taosArrayGet(pTopic->vgs, j);
L
Liu Jicong 已提交
1233
      SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, 0, pTopic, pVg);
L
Liu Jicong 已提交
1234

L
Liu Jicong 已提交
1235 1236
      SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_VND_CONSUME);
      pRequest->body.requestMsg = (SDataBuf){.pData = pReq, .len = sizeof(SMqConsumeReq)};
L
Liu Jicong 已提交
1237
      SMqCommitCbParam* pParam = malloc(sizeof(SMqCommitCbParam));
L
Liu Jicong 已提交
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257
      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 已提交
1258
  return 0;
1259
}
L
Liu Jicong 已提交
1260
#endif
1261 1262 1263

void tmq_message_destroy(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;
L
Liu Jicong 已提交
1264
  SMqPollRsp* pRsp = &tmq_message->consumeRsp;
L
Liu Jicong 已提交
1265
  tDeleteSMqConsumeRsp(pRsp);
L
Liu Jicong 已提交
1266
  /*free(tmq_message);*/
X
Xiaoyu Wang 已提交
1267
  taosFreeQitem(tmq_message);
1268 1269
}

L
Liu Jicong 已提交
1270
tmq_resp_err_t tmq_consumer_close(tmq_t* tmq) { return TMQ_RESP_ERR__SUCCESS; }
L
Liu Jicong 已提交
1271 1272 1273 1274 1275 1276 1277

const char* tmq_err2str(tmq_resp_err_t err) {
  if (err == TMQ_RESP_ERR__SUCCESS) {
    return "success";
  }
  return "fail";
}
L
Liu Jicong 已提交
1278

L
Liu Jicong 已提交
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306
TAOS_ROW tmq_get_row(tmq_message_t* message) {
  SMqPollRsp* rsp = &message->consumeRsp;
  while (1) {
    if (message->curBlock < taosArrayGetSize(rsp->pBlockData)) {
      SSDataBlock* pBlock = taosArrayGet(rsp->pBlockData, message->curBlock);
      if (message->curRow < pBlock->info.rows) {
        for (int i = 0; i < pBlock->info.numOfCols; i++) {
          SColumnInfoData* pData = taosArrayGet(pBlock->pDataBlock, i);
          if (colDataIsNull_s(pData, message->curRow))
            message->uData[i] = NULL;
          else {
            message->uData[i] = colDataGetData(pData, message->curRow);
          }
        }
        message->curRow++;
        return message->uData;
      } else {
        message->curBlock++;
        message->curRow = 0;
        continue;
      }
    }
    return NULL;
  }
}

char* tmq_get_topic_name(tmq_message_t* message) { return "not implemented yet"; }

L
Liu Jicong 已提交
1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
#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;
}


1321 1322 1323 1324 1325
static void destroySendMsgInfo(SMsgSendInfo* pMsgBody) {
  assert(pMsgBody != NULL);
  tfree(pMsgBody->msgInfo.pData);
  tfree(pMsgBody);
}
L
Liu Jicong 已提交
1326
#endif