tmq.c 43.7 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 34 35 36 37 38 39 40
typedef struct {
  int32_t curBlock;
  int32_t curRow;
  void**  uData;
} SMqRowIter;

struct tmq_message_t {
  SMqPollRsp msg;
  void*      vg;
  SMqRowIter iter;
};

L
Liu Jicong 已提交
41
struct tmq_list_t {
L
Liu Jicong 已提交
42
  SArray container;
L
Liu Jicong 已提交
43
};
L
Liu Jicong 已提交
44

L
Liu Jicong 已提交
45
struct tmq_topic_vgroup_t {
L
Liu Jicong 已提交
46
  SMqOffset offset;
L
Liu Jicong 已提交
47 48 49
};

struct tmq_topic_vgroup_list_t {
L
Liu Jicong 已提交
50 51
  int32_t             cnt;
  int32_t             size;
L
Liu Jicong 已提交
52 53 54 55
  tmq_topic_vgroup_t* elems;
};

struct tmq_conf_t {
L
Liu Jicong 已提交
56
  char           clientId[256];
L
Liu Jicong 已提交
57
  char           groupId[TSDB_CGROUP_LEN];
L
Liu Jicong 已提交
58
  int8_t         autoCommit;
L
Liu Jicong 已提交
59
  int8_t         resetOffset;
L
Liu Jicong 已提交
60 61 62 63 64
  uint16_t       port;
  char*          ip;
  char*          user;
  char*          pass;
  char*          db;
L
Liu Jicong 已提交
65
  tmq_commit_cb* commit_cb;
L
Liu Jicong 已提交
66 67 68
};

struct tmq_t {
L
Liu Jicong 已提交
69
  // conf
L
Liu Jicong 已提交
70
  char           groupId[TSDB_CGROUP_LEN];
L
Liu Jicong 已提交
71
  char           clientId[256];
L
Liu Jicong 已提交
72
  int8_t         autoCommit;
L
Liu Jicong 已提交
73
  int8_t         inWaiting;
L
Liu Jicong 已提交
74
  int64_t        consumerId;
L
Liu Jicong 已提交
75
  int32_t        epoch;
L
Liu Jicong 已提交
76
  int32_t        resetOffsetCfg;
L
Liu Jicong 已提交
77 78 79 80
  int64_t        status;
  STscObj*       pTscObj;
  tmq_commit_cb* commit_cb;
  int32_t        nextTopicIdx;
L
fix  
Liu Jicong 已提交
81
  int32_t        waitingRequest;
L
Liu Jicong 已提交
82
  int32_t        readyRequest;
L
Liu Jicong 已提交
83
  SArray*        clientTopics;  // SArray<SMqClientTopic>
X
Xiaoyu Wang 已提交
84 85
  STaosQueue*    mqueue;        // queue of tmq_message_t
  STaosQall*     qall;
L
Liu Jicong 已提交
86
  tsem_t         rspSem;
L
Liu Jicong 已提交
87 88
  // stat
  int64_t pollCnt;
L
Liu Jicong 已提交
89 90
};

X
Xiaoyu Wang 已提交
91 92 93 94 95 96 97 98
enum {
  TMQ_VG_STATUS__IDLE = 0,
  TMQ_VG_STATUS__WAIT,
};

enum {
  TMQ_CONSUMER_STATUS__INIT = 0,
  TMQ_CONSUMER_STATUS__READY,
L
Liu Jicong 已提交
99 100
};

L
Liu Jicong 已提交
101
typedef struct {
102 103 104 105
  // statistics
  int64_t pollCnt;
  // offset
  int64_t currentOffset;
L
Liu Jicong 已提交
106
  // connection info
107
  int32_t vgId;
X
Xiaoyu Wang 已提交
108
  int32_t vgStatus;
109 110 111
  SEpSet  epSet;
} SMqClientVg;

L
Liu Jicong 已提交
112
typedef struct {
113
  // subscribe info
L
Liu Jicong 已提交
114 115 116 117 118 119 120 121
  int32_t     sqlLen;
  char*       sql;
  char*       topicName;
  int64_t     topicId;
  SArray*     vgs;  // SArray<SMqClientVg>
  int8_t      isSchemaAdaptive;
  int32_t     numOfFields;
  TAOS_FIELD* fields;
122 123
} SMqClientTopic;

L
Liu Jicong 已提交
124
typedef struct {
L
Liu Jicong 已提交
125 126 127 128
  tmq_t*         tmq;
  tsem_t         rspSem;
  tmq_resp_err_t rspErr;
} SMqSubscribeCbParam;
L
Liu Jicong 已提交
129

L
Liu Jicong 已提交
130
typedef struct {
131
  tmq_t*  tmq;
X
Xiaoyu Wang 已提交
132 133
  int32_t sync;
  tsem_t  rspSem;
134 135
} SMqAskEpCbParam;

L
Liu Jicong 已提交
136
typedef struct {
L
Liu Jicong 已提交
137 138 139 140 141 142
  tmq_t*          tmq;
  SMqClientVg*    pVg;
  int32_t         epoch;
  tsem_t          rspSem;
  tmq_message_t** msg;
  int32_t         sync;
X
Xiaoyu Wang 已提交
143
} SMqPollCbParam;
144

L
Liu Jicong 已提交
145
typedef struct {
L
Liu Jicong 已提交
146
  tmq_t*         tmq;
L
Liu Jicong 已提交
147
  int32_t        async;
L
Liu Jicong 已提交
148 149
  tsem_t         rspSem;
  tmq_resp_err_t rspErr;
L
Liu Jicong 已提交
150
  /*SMqClientVg* pVg;*/
L
Liu Jicong 已提交
151
} SMqCommitCbParam;
L
Liu Jicong 已提交
152

153
tmq_conf_t* tmq_conf_new() {
wafwerar's avatar
wafwerar 已提交
154
  tmq_conf_t* conf = taosMemoryCalloc(1, sizeof(tmq_conf_t));
L
Liu Jicong 已提交
155
  conf->autoCommit = false;
X
Xiaoyu Wang 已提交
156
  conf->resetOffset = TMQ_CONF__RESET_OFFSET__EARLIEAST;
157 158 159
  return conf;
}

L
Liu Jicong 已提交
160
void tmq_conf_destroy(tmq_conf_t* conf) {
wafwerar's avatar
wafwerar 已提交
161
  if (conf) taosMemoryFree(conf);
L
Liu Jicong 已提交
162 163 164
}

tmq_conf_res_t tmq_conf_set(tmq_conf_t* conf, const char* key, const char* value) {
165 166
  if (strcmp(key, "group.id") == 0) {
    strcpy(conf->groupId, value);
L
Liu Jicong 已提交
167
    return TMQ_CONF_OK;
168
  }
L
Liu Jicong 已提交
169

170 171
  if (strcmp(key, "client.id") == 0) {
    strcpy(conf->clientId, value);
L
Liu Jicong 已提交
172 173
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
174

L
Liu Jicong 已提交
175 176
  if (strcmp(key, "enable.auto.commit") == 0) {
    if (strcmp(value, "true") == 0) {
L
Liu Jicong 已提交
177
      conf->autoCommit = true;
L
Liu Jicong 已提交
178 179
      return TMQ_CONF_OK;
    } else if (strcmp(value, "false") == 0) {
L
Liu Jicong 已提交
180
      conf->autoCommit = false;
L
Liu Jicong 已提交
181 182 183 184
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
185
  }
L
Liu Jicong 已提交
186

L
Liu Jicong 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200
  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 已提交
201

L
Liu Jicong 已提交
202
  if (strcmp(key, "td.connect.ip") == 0) {
L
Liu Jicong 已提交
203 204 205
    conf->ip = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
206
  if (strcmp(key, "td.connect.user") == 0) {
L
Liu Jicong 已提交
207 208 209
    conf->user = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
210
  if (strcmp(key, "td.connect.pass") == 0) {
L
Liu Jicong 已提交
211 212 213
    conf->pass = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
214
  if (strcmp(key, "td.connect.port") == 0) {
L
Liu Jicong 已提交
215 216 217
    conf->port = atoi(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
218
  if (strcmp(key, "td.connect.db") == 0) {
L
Liu Jicong 已提交
219 220 221 222
    conf->db = strdup(value);
    return TMQ_CONF_OK;
  }

L
Liu Jicong 已提交
223
  return TMQ_CONF_UNKNOWN;
224 225 226
}

tmq_list_t* tmq_list_new() {
L
Liu Jicong 已提交
227 228
  //
  return (tmq_list_t*)taosArrayInit(0, sizeof(void*));
229 230
}

L
Liu Jicong 已提交
231 232 233
int32_t tmq_list_append(tmq_list_t* list, const char* src) {
  SArray* container = &list->container;
  char*   topic = strdup(src);
L
fix  
Liu Jicong 已提交
234
  if (taosArrayPush(container, &topic) == NULL) return -1;
235 236 237
  return 0;
}

L
Liu Jicong 已提交
238
void tmq_list_destroy(tmq_list_t* list) {
L
Liu Jicong 已提交
239
  SArray* container = &list->container;
L
fix  
Liu Jicong 已提交
240 241
  /*taosArrayDestroy(container);*/
  taosArrayDestroyEx(container, (void (*)(void*))taosMemoryFree);
L
Liu Jicong 已提交
242 243
}

L
Liu Jicong 已提交
244 245 246 247
static int32_t tmqMakeTopicVgKey(char* dst, const char* topicName, int32_t vg) {
  return sprintf(dst, "%s:%d", topicName, vg);
}

L
Liu Jicong 已提交
248
void tmqClearUnhandleMsg(tmq_t* tmq) {
L
Liu Jicong 已提交
249
  tmq_message_t* msg = NULL;
L
Liu Jicong 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
  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 已提交
268 269 270 271 272 273
int32_t tmqSubscribeCb(void* param, const SDataBuf* pMsg, int32_t code) {
  SMqSubscribeCbParam* pParam = (SMqSubscribeCbParam*)param;
  pParam->rspErr = code;
  tsem_post(&pParam->rspSem);
  return 0;
}
274

L
Liu Jicong 已提交
275
int32_t tmqCommitCb(void* param, const SDataBuf* pMsg, int32_t code) {
L
Liu Jicong 已提交
276
  SMqCommitCbParam* pParam = (SMqCommitCbParam*)param;
L
Liu Jicong 已提交
277
  pParam->rspErr = code == 0 ? TMQ_RESP_ERR__SUCCESS : TMQ_RESP_ERR__FAIL;
L
Liu Jicong 已提交
278
  if (pParam->tmq->commit_cb) {
L
Liu Jicong 已提交
279
    pParam->tmq->commit_cb(pParam->tmq, pParam->rspErr, NULL, NULL);
L
Liu Jicong 已提交
280
  }
L
fix  
Liu Jicong 已提交
281
  if (!pParam->async) tsem_post(&pParam->rspSem);
L
Liu Jicong 已提交
282 283 284
  return 0;
}

X
Xiaoyu Wang 已提交
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
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);
}

301
tmq_t* tmq_consumer_new(void* conn, tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
wafwerar's avatar
wafwerar 已提交
302
  tmq_t* pTmq = taosMemoryCalloc(sizeof(tmq_t), 1);
303 304 305 306
  if (pTmq == NULL) {
    return NULL;
  }
  pTmq->pTscObj = (STscObj*)conn;
L
Liu Jicong 已提交
307
  pTmq->inWaiting = 0;
308 309
  pTmq->status = 0;
  pTmq->pollCnt = 0;
L
Liu Jicong 已提交
310
  pTmq->epoch = 0;
L
fix  
Liu Jicong 已提交
311
  pTmq->waitingRequest = 0;
L
Liu Jicong 已提交
312
  pTmq->readyRequest = 0;
L
Liu Jicong 已提交
313
  // set conf
314 315
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
L
Liu Jicong 已提交
316
  pTmq->autoCommit = conf->autoCommit;
317
  pTmq->commit_cb = conf->commit_cb;
L
Liu Jicong 已提交
318
  pTmq->resetOffsetCfg = conf->resetOffset;
L
Liu Jicong 已提交
319

L
Liu Jicong 已提交
320 321 322 323 324 325 326 327 328 329
  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 已提交
330 331
  tsem_init(&pTmq->rspSem, 0, 0);

L
Liu Jicong 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
  return pTmq;
}

tmq_t* tmq_consumer_new1(tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
  tmq_t* pTmq = taosMemoryCalloc(1, sizeof(tmq_t));
  if (pTmq == NULL) {
    return NULL;
  }
  pTmq->pTscObj = taos_connect(conf->ip, conf->user, conf->pass, conf->db, conf->port);

  pTmq->inWaiting = 0;
  pTmq->status = 0;
  pTmq->pollCnt = 0;
  pTmq->epoch = 0;
  pTmq->waitingRequest = 0;
  pTmq->readyRequest = 0;
  // set conf
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
  pTmq->autoCommit = conf->autoCommit;
  pTmq->commit_cb = conf->commit_cb;
  pTmq->resetOffsetCfg = conf->resetOffset;

L
Liu Jicong 已提交
355
  pTmq->consumerId = generateRequestId() & (((uint64_t)-1) >> 1);
356
  pTmq->clientTopics = taosArrayInit(0, sizeof(SMqClientTopic));
L
Liu Jicong 已提交
357 358 359 360
  if (pTmq->clientTopics == NULL) {
    taosMemoryFree(pTmq);
    return NULL;
  }
X
Xiaoyu Wang 已提交
361 362 363

  pTmq->mqueue = taosOpenQueue();
  pTmq->qall = taosAllocateQall();
L
Liu Jicong 已提交
364 365 366

  tsem_init(&pTmq->rspSem, 0, 0);

367 368 369
  return pTmq;
}

L
Liu Jicong 已提交
370 371 372 373
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 已提交
374 375
  // build msg
  // send to mnode
L
Liu Jicong 已提交
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
  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 已提交
399 400 401 402

  SCoder encoder;

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, NULL, 0, TD_ENCODER);
L
Liu Jicong 已提交
403
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
404
  int32_t tlen = encoder.pos;
wafwerar's avatar
wafwerar 已提交
405
  void*   buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
406 407 408 409 410 411 412
  if (buf == NULL) {
    tCoderClear(&encoder);
    return -1;
  }
  tCoderClear(&encoder);

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, buf, tlen, TD_ENCODER);
L
Liu Jicong 已提交
413
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
414 415
  tCoderClear(&encoder);

L
Liu Jicong 已提交
416
  pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_MND_MQ_COMMIT_OFFSET);
L
Liu Jicong 已提交
417 418 419 420
  if (pRequest == NULL) {
    tscError("failed to malloc request");
  }

wafwerar's avatar
wafwerar 已提交
421
  SMqCommitCbParam* pParam = taosMemoryMalloc(sizeof(SMqCommitCbParam));
L
Liu Jicong 已提交
422 423 424 425 426
  if (pParam == NULL) {
    return -1;
  }
  pParam->tmq = tmq;
  tsem_init(&pParam->rspSem, 0, 0);
L
fix  
Liu Jicong 已提交
427
  pParam->async = async;
L
Liu Jicong 已提交
428

X
Xiaoyu Wang 已提交
429 430 431 432 433
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
L
Liu Jicong 已提交
434 435

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
436 437
  sendInfo->param = pParam;
  sendInfo->fp = tmqCommitCb;
L
Liu Jicong 已提交
438 439 440 441 442
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
443 444 445 446
  if (!async) {
    tsem_wait(&pParam->rspSem);
    resp = pParam->rspErr;
  }
L
Liu Jicong 已提交
447

L
fix  
Liu Jicong 已提交
448
  tsem_destroy(&pParam->rspSem);
wafwerar's avatar
wafwerar 已提交
449
  taosMemoryFree(pParam);
L
fix  
Liu Jicong 已提交
450

L
Liu Jicong 已提交
451 452 453 454 455
  if (pArray) {
    taosArrayDestroy(pArray);
  }

  return resp;
L
Liu Jicong 已提交
456 457
}

L
Liu Jicong 已提交
458
tmq_resp_err_t tmq_subscribe(tmq_t* tmq, tmq_list_t* topic_list) {
L
Liu Jicong 已提交
459
  SRequestObj* pRequest = NULL;
L
Liu Jicong 已提交
460 461
  SArray*      container = &topic_list->container;
  int32_t      sz = taosArrayGetSize(container);
L
Liu Jicong 已提交
462
  // destroy ex
463 464 465 466 467 468 469 470 471 472
  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++) {
L
Liu Jicong 已提交
473 474
    /*char* topicName = topic_list->elems[i];*/
    char* topicName = taosArrayGetP(container, i);
475 476 477

    SName name = {0};
    char* dbName = getDbOfConnection(tmq->pTscObj);
L
Liu Jicong 已提交
478 479 480
    if (dbName == NULL) {
      return TMQ_RESP_ERR__FAIL;
    }
L
Liu Jicong 已提交
481
    tNameSetDbName(&name, tmq->pTscObj->acctId, dbName, strlen(dbName));
482 483
    tNameFromString(&name, topicName, T_NAME_TABLE);

wafwerar's avatar
wafwerar 已提交
484
    char* topicFname = taosMemoryCalloc(1, TSDB_TOPIC_FNAME_LEN);
485
    if (topicFname == NULL) {
L
Liu Jicong 已提交
486
      goto _return;
487 488 489 490
    }
    tNameExtractFullName(&name, topicFname);
    tscDebug("subscribe topic: %s", topicFname);
    SMqClientTopic topic = {
L
Liu Jicong 已提交
491 492 493 494 495 496
        .sql = NULL,
        .sqlLen = 0,
        .topicId = 0,
        .topicName = topicFname,
        .vgs = NULL,
    };
497
    topic.vgs = taosArrayInit(0, sizeof(SMqClientVg));
L
Liu Jicong 已提交
498
    taosArrayPush(tmq->clientTopics, &topic);
499
    taosArrayPush(req.topicNames, &topicFname);
wafwerar's avatar
wafwerar 已提交
500
    taosMemoryFree(dbName);
501 502
  }

L
Liu Jicong 已提交
503
  int   tlen = tSerializeSCMSubscribeReq(NULL, &req);
wafwerar's avatar
wafwerar 已提交
504
  void* buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
505
  if (buf == NULL) {
506 507 508 509 510 511 512 513 514
    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 已提交
515
    tscError("failed to malloc request");
516 517
  }

X
Xiaoyu Wang 已提交
518 519 520 521
  SMqSubscribeCbParam param = {
      .rspErr = TMQ_RESP_ERR__SUCCESS,
      .tmq = tmq,
  };
L
Liu Jicong 已提交
522 523
  tsem_init(&param.rspSem, 0, 0);

X
Xiaoyu Wang 已提交
524 525 526 527 528
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
529 530

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
531 532
  sendInfo->param = &param;
  sendInfo->fp = tmqSubscribeCb;
533 534 535 536 537
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
538 539
  tsem_wait(&param.rspSem);
  tsem_destroy(&param.rspSem);
540 541 542

_return:
  /*if (sendInfo != NULL) {*/
L
Liu Jicong 已提交
543
  /*destroySendMsgInfo(sendInfo);*/
544 545
  /*}*/

L
Liu Jicong 已提交
546
  return param.rspErr;
547 548
}

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

L
Liu Jicong 已提交
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
TAOS_RES* tmq_create_stream(TAOS* taos, const char* streamName, const char* tbName, const char* sql) {
  STscObj*     pTscObj = (STscObj*)taos;
  SRequestObj* pRequest = NULL;
  SQuery*      pQueryNode = NULL;
  char*        astStr = NULL;
  int32_t      sqlLen;

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

L
Liu Jicong 已提交
566 567
  if (strlen(tbName) >= TSDB_TABLE_NAME_LEN) {
    tscError("output tb name too long, max length:%d", TSDB_TABLE_NAME_LEN - 1);
L
Liu Jicong 已提交
568 569 570 571 572 573 574 575 576 577 578 579
    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 stream: %s", streamName);

H
Haojun Liao 已提交
580
  int32_t code = 0;
L
Liu Jicong 已提交
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
  CHECK_CODE_GOTO(buildRequest(pTscObj, sql, sqlLen, &pRequest), _return);
  CHECK_CODE_GOTO(parseSql(pRequest, false, &pQueryNode), _return);

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

  CHECK_CODE_GOTO(nodesNodeToString(pQueryNode->pRoot, false, &astStr, NULL), _return);

  /*printf("%s\n", pStr);*/

  SName name = {.acctId = pTscObj->acctId, .type = TSDB_TABLE_NAME_T};
  strcpy(name.dbname, pRequest->pDb);
  strcpy(name.tname, streamName);

  SCMCreateStreamReq req = {
      .igExists = 1,
      .ast = astStr,
      .sql = (char*)sql,
  };
  tNameExtractFullName(&name, req.name);
L
Liu Jicong 已提交
600
  strcpy(req.outputSTbName, tbName);
L
Liu Jicong 已提交
601 602

  int   tlen = tSerializeSCMCreateStreamReq(NULL, 0, &req);
wafwerar's avatar
wafwerar 已提交
603
  void* buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
  if (buf == NULL) {
    goto _return;
  }

  tSerializeSCMCreateStreamReq(buf, tlen, &req);
  /*printf("formatted: %s\n", dagStr);*/

  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
  pRequest->type = TDMT_MND_CREATE_STREAM;

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
  SEpSet        epSet = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);

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

  tsem_wait(&pRequest->body.rspSem);

_return:
wafwerar's avatar
wafwerar 已提交
627
  taosMemoryFreeClear(astStr);
L
Liu Jicong 已提交
628 629 630 631 632 633 634 635 636 637 638 639
  qDestroyQuery(pQueryNode);
  /*if (sendInfo != NULL) {*/
  /*destroySendMsgInfo(sendInfo);*/
  /*}*/

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

  return pRequest;
}

L
Liu Jicong 已提交
640
#if 0
L
Liu Jicong 已提交
641 642 643
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 已提交
644
  SQuery*      pQueryNode = NULL;
L
Liu Jicong 已提交
645
  char*        astStr = NULL;
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665

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

L
Liu Jicong 已提交
666
  tscDebug("start to create topic: %s", topicName);
667

X
Xiaoyu Wang 已提交
668
  int32_t code = TSDB_CODE_SUCCESS;
X
Xiaoyu Wang 已提交
669 670
  CHECK_CODE_GOTO(buildRequest(pTscObj, sql, sqlLen, &pRequest), _return);
  CHECK_CODE_GOTO(parseSql(pRequest, true, &pQueryNode), _return);
671 672 673

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

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

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

L
Liu Jicong 已提交
678
  SName name = {.acctId = pTscObj->acctId, .type = TSDB_TABLE_NAME_T};
X
Xiaoyu Wang 已提交
679 680
  strcpy(name.dbname, pRequest->pDb);
  strcpy(name.tname, topicName);
681

L
Liu Jicong 已提交
682
  SCMCreateTopicReq req = {
L
Liu Jicong 已提交
683
      .igExists = 1,
L
Liu Jicong 已提交
684
      .ast = astStr,
L
Liu Jicong 已提交
685
      .sql = (char*)sql,
686
  };
L
Liu Jicong 已提交
687
  tNameExtractFullName(&name, req.name);
688

L
Liu Jicong 已提交
689
  int   tlen = tSerializeSCMCreateTopicReq(NULL, 0, &req);
wafwerar's avatar
wafwerar 已提交
690
  void* buf = taosMemoryMalloc(tlen);
691 692 693 694
  if (buf == NULL) {
    goto _return;
  }

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

L
Liu Jicong 已提交
698 699 700 701 702
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
703 704 705
  pRequest->type = TDMT_MND_CREATE_TOPIC;

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
706
  SEpSet        epSet = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);
707 708 709 710 711

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

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

713
_return:
wafwerar's avatar
wafwerar 已提交
714
  taosMemoryFreeClear(astStr);
715 716
  qDestroyQuery(pQueryNode);
  /*if (sendInfo != NULL) {*/
L
Liu Jicong 已提交
717
  /*destroySendMsgInfo(sendInfo);*/
718 719 720 721 722 723 724 725
  /*}*/

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

  return pRequest;
}
L
Liu Jicong 已提交
726
#endif
727

L
Liu Jicong 已提交
728
static char* formatTimestamp(char* buf, int64_t val, int precision) {
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
  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 已提交
764
  struct tm* ptm = localtime(&tt);
765 766 767 768 769 770 771 772 773 774 775 776 777
  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 已提交
778 779
int32_t tmqGetSkipLogNum(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return 0;
L
Liu Jicong 已提交
780
  SMqPollRsp* pRsp = &tmq_message->msg;
L
Liu Jicong 已提交
781 782 783
  return pRsp->skipLogNum;
}

L
Liu Jicong 已提交
784 785 786
void tmqShowMsg(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;

L
Liu Jicong 已提交
787 788
  static bool noPrintSchema;
  char        pBuf[128];
L
Liu Jicong 已提交
789 790
  SMqPollRsp* pRsp = &tmq_message->msg;
  int32_t     colNum = pRsp->schema->nCols;
L
Liu Jicong 已提交
791 792 793 794
  if (!noPrintSchema) {
    printf("|");
    for (int32_t i = 0; i < colNum; i++) {
      if (i == 0)
L
Liu Jicong 已提交
795
        printf(" %25s |", pRsp->schema->pSchema[i].name);
L
Liu Jicong 已提交
796
      else
L
Liu Jicong 已提交
797
        printf(" %15s |", pRsp->schema->pSchema[i].name);
L
Liu Jicong 已提交
798 799 800 801
    }
    printf("\n");
    printf("===============================================\n");
    noPrintSchema = true;
802
  }
L
Liu Jicong 已提交
803
  int32_t sz = taosArrayGetSize(pRsp->pBlockData);
804
  for (int32_t i = 0; i < sz; i++) {
L
Liu Jicong 已提交
805 806
    SSDataBlock* pDataBlock = taosArrayGet(pRsp->pBlockData, i);
    int32_t      rows = pDataBlock->info.rows;
807 808 809 810
    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 已提交
811 812
        void*            var = POINTER_SHIFT(pColInfoData->pData, j * pColInfoData->info.bytes);
        switch (pColInfoData->info.type) {
813 814 815 816 817 818 819 820 821 822 823 824 825
          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 已提交
826 827 828
}

int32_t tmqPollCb(void* param, const SDataBuf* pMsg, int32_t code) {
L
fix  
Liu Jicong 已提交
829
  /*printf("recv poll\n");*/
X
Xiaoyu Wang 已提交
830 831 832
  SMqPollCbParam* pParam = (SMqPollCbParam*)param;
  SMqClientVg*    pVg = pParam->pVg;
  tmq_t*          tmq = pParam->tmq;
L
Liu Jicong 已提交
833
  if (code != 0) {
L
Liu Jicong 已提交
834
    tscWarn("msg discard, code:%x", code);
L
Liu Jicong 已提交
835
    goto WRITE_QUEUE_FAIL;
L
Liu Jicong 已提交
836 837
  }

X
Xiaoyu Wang 已提交
838 839 840
  int32_t msgEpoch = ((SMqRspHead*)pMsg->pData)->epoch;
  int32_t tmqEpoch = atomic_load_32(&tmq->epoch);
  if (msgEpoch < tmqEpoch) {
L
Liu Jicong 已提交
841
    tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
842
    tscWarn("discard rsp epoch %d, current epoch %d", msgEpoch, tmqEpoch);
X
Xiaoyu Wang 已提交
843 844 845 846
    return 0;
  }

  if (msgEpoch != tmqEpoch) {
L
Liu Jicong 已提交
847
    tscWarn("mismatch rsp epoch %d, current epoch %d", msgEpoch, tmqEpoch);
L
fix  
Liu Jicong 已提交
848 849
  } else {
    atomic_sub_fetch_32(&tmq->waitingRequest, 1);
X
Xiaoyu Wang 已提交
850 851
  }

L
Liu Jicong 已提交
852
#if 0
L
Liu Jicong 已提交
853
  if (pParam->sync == 1) {
wafwerar's avatar
wafwerar 已提交
854
    /**pParam->msg = taosMemoryMalloc(sizeof(tmq_message_t));*/
L
Liu Jicong 已提交
855 856 857 858 859 860 861 862 863 864 865 866 867 868
    *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 已提交
869
#endif
L
Liu Jicong 已提交
870

wafwerar's avatar
wafwerar 已提交
871
  /*SMqConsumeRsp* pRsp = taosMemoryCalloc(1, sizeof(SMqConsumeRsp));*/
X
Xiaoyu Wang 已提交
872
  tmq_message_t* pRsp = taosAllocateQitem(sizeof(tmq_message_t));
L
Liu Jicong 已提交
873
  if (pRsp == NULL) {
L
Liu Jicong 已提交
874
    goto WRITE_QUEUE_FAIL;
L
Liu Jicong 已提交
875
  }
X
Xiaoyu Wang 已提交
876
  memcpy(pRsp, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
877 878 879
  tDecodeSMqPollRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pRsp->msg);
  pRsp->iter.curBlock = 0;
  pRsp->iter.curRow = 0;
L
Liu Jicong 已提交
880 881
  // TODO: alloc mem
  /*pRsp->*/
882
  /*printf("rsp commit off:%ld rsp off:%ld has data:%d\n", pRsp->committedOffset, pRsp->rspOffset, pRsp->numOfTopics);*/
L
Liu Jicong 已提交
883
  if (pRsp->msg.numOfTopics == 0) {
L
fix  
Liu Jicong 已提交
884
    /*printf("no data\n");*/
X
Xiaoyu Wang 已提交
885
    taosFreeQitem(pRsp);
L
Liu Jicong 已提交
886
    goto WRITE_QUEUE_FAIL;
L
Liu Jicong 已提交
887
  }
L
Liu Jicong 已提交
888

L
Liu Jicong 已提交
889
  pRsp->vg = pParam->pVg;
X
Xiaoyu Wang 已提交
890
  taosWriteQitem(tmq->mqueue, pRsp);
L
Liu Jicong 已提交
891
  atomic_add_fetch_32(&tmq->readyRequest, 1);
L
Liu Jicong 已提交
892
  tsem_post(&tmq->rspSem);
893
  return 0;
L
Liu Jicong 已提交
894 895 896 897 898 899 900

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

X
Xiaoyu Wang 已提交
903
bool tmqUpdateEp(tmq_t* tmq, int32_t epoch, SMqCMGetSubEpRsp* pRsp) {
L
Liu Jicong 已提交
904
  /*printf("call update ep %d\n", epoch);*/
X
Xiaoyu Wang 已提交
905
  bool    set = false;
L
Liu Jicong 已提交
906 907 908 909 910 911 912 913 914 915 916 917 918 919
  int32_t topicNumGet = taosArrayGetSize(pRsp->topics);
  char    vgKey[TSDB_TOPIC_FNAME_LEN + 22];
  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 已提交
920 921
    SMqClientTopic topic = {0};
    SMqSubTopicEp* pTopicEp = taosArrayGet(pRsp->topics, i);
L
Liu Jicong 已提交
922
    taosHashClear(pHash);
X
Xiaoyu Wang 已提交
923
    topic.topicName = strdup(pTopicEp->topic);
L
Liu Jicong 已提交
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943

    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);
        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);
          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 已提交
944
      SMqSubVgEp* pVgEp = taosArrayGet(pTopicEp->vgs, j);
L
Liu Jicong 已提交
945 946 947 948 949 950
      sprintf(vgKey, "%s:%d", topic.topicName, pVgEp->vgId);
      int64_t* pOffset = taosHashGet(pHash, vgKey, strlen(vgKey));
      int64_t  offset = pVgEp->offset;
      if (pOffset != NULL) {
        offset = *pOffset;
      }
X
Xiaoyu Wang 已提交
951 952
      SMqClientVg clientVg = {
          .pollCnt = 0,
L
Liu Jicong 已提交
953
          .currentOffset = offset,
X
Xiaoyu Wang 已提交
954 955 956 957 958 959 960
          .vgId = pVgEp->vgId,
          .epSet = pVgEp->epSet,
          .vgStatus = TMQ_VG_STATUS__IDLE,
      };
      taosArrayPush(topic.vgs, &clientVg);
      set = true;
    }
L
Liu Jicong 已提交
961
    taosArrayPush(newTopics, &topic);
X
Xiaoyu Wang 已提交
962
  }
L
Liu Jicong 已提交
963
  if (tmq->clientTopics) taosArrayDestroy(tmq->clientTopics);
L
Liu Jicong 已提交
964
  taosHashCleanup(pHash);
L
Liu Jicong 已提交
965
  tmq->clientTopics = newTopics;
X
Xiaoyu Wang 已提交
966 967 968 969
  atomic_store_32(&tmq->epoch, epoch);
  return set;
}

L
Liu Jicong 已提交
970
int32_t tmqAskEpCb(void* param, const SDataBuf* pMsg, int32_t code) {
971
  SMqAskEpCbParam* pParam = (SMqAskEpCbParam*)param;
L
Liu Jicong 已提交
972
  tmq_t*           tmq = pParam->tmq;
973
  if (code != 0) {
L
Liu Jicong 已提交
974
    tscError("get topic endpoint error, not ready, wait:%d\n", pParam->sync);
L
Liu Jicong 已提交
975
    goto END;
976
  }
L
Liu Jicong 已提交
977

L
Liu Jicong 已提交
978
  // tmq's epoch is monotonically increase,
L
Liu Jicong 已提交
979
  // so it's safe to discard any old epoch msg.
L
Liu Jicong 已提交
980
  // Epoch will only increase when received newer epoch ep msg
L
Liu Jicong 已提交
981 982 983 984
  SMqRspHead* head = pMsg->pData;
  int32_t     epoch = atomic_load_32(&tmq->epoch);
  if (head->epoch <= epoch) {
    goto END;
985
  }
L
Liu Jicong 已提交
986

X
Xiaoyu Wang 已提交
987 988 989 990 991
  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 已提交
992
    if (tmqUpdateEp(tmq, head->epoch, &rsp)) {
X
Xiaoyu Wang 已提交
993
      atomic_store_64(&tmq->status, TMQ_CONSUMER_STATUS__READY);
994
    }
X
Xiaoyu Wang 已提交
995 996
    tDeleteSMqCMGetSubEpRsp(&rsp);
  } else {
L
Liu Jicong 已提交
997
    SMqCMGetSubEpRsp* pRsp = taosAllocateQitem(sizeof(SMqCMGetSubEpRsp));
X
Xiaoyu Wang 已提交
998 999
    if (pRsp == NULL) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
1000 1001
      code = -1;
      goto END;
X
Xiaoyu Wang 已提交
1002 1003
    }
    memcpy(pRsp, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
1004
    tDecodeSMqCMGetSubEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), pRsp);
L
Liu Jicong 已提交
1005

X
Xiaoyu Wang 已提交
1006
    taosWriteQitem(tmq->mqueue, pRsp);
L
Liu Jicong 已提交
1007
    tsem_post(&tmq->rspSem);
1008
  }
L
Liu Jicong 已提交
1009 1010 1011 1012 1013 1014

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

X
Xiaoyu Wang 已提交
1017
int32_t tmqAskEp(tmq_t* tmq, bool sync) {
L
Liu Jicong 已提交
1018
  int32_t           tlen = sizeof(SMqCMGetSubEpReq);
wafwerar's avatar
wafwerar 已提交
1019
  SMqCMGetSubEpReq* req = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
1020
  if (req == NULL) {
L
Liu Jicong 已提交
1021
    tscError("failed to malloc get subscribe ep buf");
L
Liu Jicong 已提交
1022
    return -1;
L
Liu Jicong 已提交
1023
  }
L
Liu Jicong 已提交
1024 1025 1026
  req->consumerId = htobe64(tmq->consumerId);
  req->epoch = htonl(tmq->epoch);
  strcpy(req->cgroup, tmq->groupId);
1027

wafwerar's avatar
wafwerar 已提交
1028
  SMqAskEpCbParam* pParam = taosMemoryMalloc(sizeof(SMqAskEpCbParam));
L
Liu Jicong 已提交
1029 1030
  if (pParam == NULL) {
    tscError("failed to malloc subscribe param");
wafwerar's avatar
wafwerar 已提交
1031
    taosMemoryFree(req);
L
Liu Jicong 已提交
1032
    return -1;
L
Liu Jicong 已提交
1033 1034
  }
  pParam->tmq = tmq;
X
Xiaoyu Wang 已提交
1035 1036
  pParam->sync = sync;
  tsem_init(&pParam->rspSem, 0, 0);
1037

wafwerar's avatar
wafwerar 已提交
1038
  SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1039 1040
  if (sendInfo == NULL) {
    tsem_destroy(&pParam->rspSem);
wafwerar's avatar
wafwerar 已提交
1041 1042
    taosMemoryFree(pParam);
    taosMemoryFree(req);
L
Liu Jicong 已提交
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
    return -1;
  }

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

  sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
1053 1054 1055
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqAskEpCb;
L
Liu Jicong 已提交
1056
  sendInfo->msgType = TDMT_MND_GET_SUB_EP;
1057

L
Liu Jicong 已提交
1058 1059 1060 1061
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

X
Xiaoyu Wang 已提交
1063
  if (sync) tsem_wait(&pParam->rspSem);
L
Liu Jicong 已提交
1064
  return 0;
1065 1066
}

L
Liu Jicong 已提交
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
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 已提交
1081
          tmqClearUnhandleMsg(tmq);
L
Liu Jicong 已提交
1082 1083 1084 1085 1086 1087 1088 1089
          return TMQ_RESP_ERR__SUCCESS;
        }
      }
    }
  }
  return TMQ_RESP_ERR__FAIL;
}

L
Liu Jicong 已提交
1090
SMqPollReq* tmqBuildConsumeReqImpl(tmq_t* tmq, int64_t blockingTime, SMqClientTopic* pTopic, SMqClientVg* pVg) {
L
Liu Jicong 已提交
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101
  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;
  }

wafwerar's avatar
wafwerar 已提交
1102
  SMqPollReq* pReq = taosMemoryMalloc(sizeof(SMqPollReq));
1103 1104 1105
  if (pReq == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
1106

L
Liu Jicong 已提交
1107
  strcpy(pReq->topic, pTopic->topicName);
1108 1109
  strcpy(pReq->cgroup, tmq->groupId);

L
fix  
Liu Jicong 已提交
1110
  pReq->blockingTime = blockingTime;
L
Liu Jicong 已提交
1111
  pReq->consumerId = tmq->consumerId;
X
Xiaoyu Wang 已提交
1112
  pReq->epoch = tmq->epoch;
L
Liu Jicong 已提交
1113
  pReq->currentOffset = reqOffset;
1114 1115

  pReq->head.vgId = htonl(pVg->vgId);
L
Liu Jicong 已提交
1116
  pReq->head.contLen = htonl(sizeof(SMqPollReq));
1117 1118 1119
  return pReq;
}

L
Liu Jicong 已提交
1120
#if 0
L
Liu Jicong 已提交
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
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 已提交
1131
      SMqPollReq* pReq = tmqBuildConsumeReqImpl(tmq, blockingTime, pTopic, pVg);
L
Liu Jicong 已提交
1132 1133 1134 1135 1136
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // TODO: out of mem
        return NULL;
      }
X
Xiaoyu Wang 已提交
1137

wafwerar's avatar
wafwerar 已提交
1138
      SMqPollCbParam* pParam = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1139
      if (pParam == NULL) {
L
Liu Jicong 已提交
1140 1141 1142 1143
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // TODO: out of mem
        return NULL;
      }
L
Liu Jicong 已提交
1144 1145 1146 1147 1148 1149 1150
      pParam->tmq = tmq;
      pParam->pVg = pVg;
      pParam->epoch = tmq->epoch;
      pParam->sync = 1;
      pParam->msg = &msg;
      tsem_init(&pParam->rspSem, 0, 0);

wafwerar's avatar
wafwerar 已提交
1151
      SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1152 1153 1154 1155 1156
      if (sendInfo == NULL) {
        return NULL;
      }

      sendInfo->msgInfo = (SDataBuf){
L
Liu Jicong 已提交
1157
          .pData = pReq,
L
Liu Jicong 已提交
1158
          .len = sizeof(SMqPollReq),
L
Liu Jicong 已提交
1159 1160
          .handle = NULL,
      };
L
Liu Jicong 已提交
1161
      sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
1162
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1163
      sendInfo->param = pParam;
L
Liu Jicong 已提交
1164
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
1165
      sendInfo->msgType = TDMT_VND_CONSUME;
L
Liu Jicong 已提交
1166 1167 1168 1169 1170 1171 1172 1173

      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 已提交
1174
      tsem_wait(&pParam->rspSem);
L
Liu Jicong 已提交
1175 1176 1177 1178
      tmq_message_t* nmsg = NULL;
      while (1) {
        taosReadQitem(tmq->mqueue, (void**)&nmsg);
        if (nmsg == NULL) continue;
L
Liu Jicong 已提交
1179 1180 1181
        while (nmsg->head.mqMsgType != TMQ_MSG_TYPE__POLL_RSP) {
          taosReadQitem(tmq->mqueue, (void**)&nmsg);
        }
L
Liu Jicong 已提交
1182 1183 1184
        return nmsg;
      }
    }
X
Xiaoyu Wang 已提交
1185
  }
L
Liu Jicong 已提交
1186
  return NULL;
X
Xiaoyu Wang 已提交
1187
}
L
Liu Jicong 已提交
1188
#endif
X
Xiaoyu Wang 已提交
1189 1190

int32_t tmqPollImpl(tmq_t* tmq, int64_t blockingTime) {
L
fix  
Liu Jicong 已提交
1191
  /*printf("call poll\n");*/
X
Xiaoyu Wang 已提交
1192 1193 1194 1195 1196 1197 1198 1199
  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 已提交
1200
      SMqPollReq* pReq = tmqBuildConsumeReqImpl(tmq, blockingTime, pTopic, pVg);
X
Xiaoyu Wang 已提交
1201 1202
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
Liu Jicong 已提交
1203
        tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
1204 1205
        return -1;
      }
wafwerar's avatar
wafwerar 已提交
1206
      SMqPollCbParam* pParam = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1207
      if (pParam == NULL) {
wafwerar's avatar
wafwerar 已提交
1208
        taosMemoryFree(pReq);
X
Xiaoyu Wang 已提交
1209
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
Liu Jicong 已提交
1210
        tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
1211 1212
        return -1;
      }
L
Liu Jicong 已提交
1213 1214 1215 1216 1217
      pParam->tmq = tmq;
      pParam->pVg = pVg;
      pParam->epoch = tmq->epoch;
      pParam->sync = 0;

wafwerar's avatar
wafwerar 已提交
1218
      SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1219
      if (sendInfo == NULL) {
wafwerar's avatar
wafwerar 已提交
1220 1221
        taosMemoryFree(pReq);
        taosMemoryFree(pParam);
L
Liu Jicong 已提交
1222 1223 1224 1225 1226 1227
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        tsem_post(&tmq->rspSem);
        return -1;
      }

      sendInfo->msgInfo = (SDataBuf){
X
Xiaoyu Wang 已提交
1228
          .pData = pReq,
L
Liu Jicong 已提交
1229
          .len = sizeof(SMqPollReq),
X
Xiaoyu Wang 已提交
1230 1231
          .handle = NULL,
      };
L
Liu Jicong 已提交
1232
      sendInfo->requestId = generateRequestId();
X
Xiaoyu Wang 已提交
1233
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1234
      sendInfo->param = pParam;
X
Xiaoyu Wang 已提交
1235
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
1236
      sendInfo->msgType = TDMT_VND_CONSUME;
X
Xiaoyu Wang 已提交
1237 1238

      int64_t transporterId = 0;
L
fix  
Liu Jicong 已提交
1239 1240
      /*printf("send poll\n");*/
      atomic_add_fetch_32(&tmq->waitingRequest, 1);
X
Xiaoyu Wang 已提交
1241 1242 1243 1244 1245 1246 1247 1248 1249
      asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, sendInfo);
      pVg->pollCnt++;
      tmq->pollCnt++;
    }
  }
  return 0;
}

// return
L
Liu Jicong 已提交
1250 1251
int32_t tmqHandleRes(tmq_t* tmq, SMqRspHead* rspHead, bool* pReset) {
  if (rspHead->mqMsgType == TMQ_MSG_TYPE__EP_RSP) {
L
fix  
Liu Jicong 已提交
1252
    /*printf("ep %d %d\n", rspMsg->head.epoch, tmq->epoch);*/
L
Liu Jicong 已提交
1253 1254 1255
    if (rspHead->epoch > atomic_load_32(&tmq->epoch)) {
      SMqCMGetSubEpRsp* rspMsg = (SMqCMGetSubEpRsp*)rspHead;
      tmqUpdateEp(tmq, rspHead->epoch, rspMsg);
X
Xiaoyu Wang 已提交
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268
      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) {
L
Liu Jicong 已提交
1269 1270 1271
    SMqRspHead* rspHead = NULL;
    taosGetQitem(tmq->qall, (void**)&rspHead);
    if (rspHead == NULL) {
L
Liu Jicong 已提交
1272
      taosReadAllQitems(tmq->mqueue, tmq->qall);
L
Liu Jicong 已提交
1273 1274
      taosGetQitem(tmq->qall, (void**)&rspHead);
      if (rspHead == NULL) return NULL;
X
Xiaoyu Wang 已提交
1275 1276
    }

L
Liu Jicong 已提交
1277 1278
    if (rspHead->mqMsgType == TMQ_MSG_TYPE__POLL_RSP) {
      tmq_message_t* rspMsg = (tmq_message_t*)rspHead;
L
Liu Jicong 已提交
1279
      atomic_sub_fetch_32(&tmq->readyRequest, 1);
L
fix  
Liu Jicong 已提交
1280
      /*printf("handle poll rsp %d\n", rspMsg->head.mqMsgType);*/
L
Liu Jicong 已提交
1281
      if (rspMsg->msg.head.epoch == atomic_load_32(&tmq->epoch)) {
L
fix  
Liu Jicong 已提交
1282
        /*printf("epoch match\n");*/
L
Liu Jicong 已提交
1283
        SMqClientVg* pVg = rspMsg->vg;
L
Liu Jicong 已提交
1284
        /*printf("vg %d offset %ld up to %ld\n", pVg->vgId, pVg->currentOffset, rspMsg->msg.rspOffset);*/
L
Liu Jicong 已提交
1285
        pVg->currentOffset = rspMsg->msg.rspOffset;
X
Xiaoyu Wang 已提交
1286 1287 1288
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        return rspMsg;
      } else {
L
Liu Jicong 已提交
1289
        /*printf("epoch mismatch\n");*/
X
Xiaoyu Wang 已提交
1290 1291 1292
        taosFreeQitem(rspMsg);
      }
    } else {
L
fix  
Liu Jicong 已提交
1293
      /*printf("handle ep rsp %d\n", rspMsg->head.mqMsgType);*/
X
Xiaoyu Wang 已提交
1294
      bool reset = false;
L
Liu Jicong 已提交
1295 1296
      tmqHandleRes(tmq, rspHead, &reset);
      taosFreeQitem(rspHead);
X
Xiaoyu Wang 已提交
1297 1298 1299 1300 1301 1302 1303 1304
      if (pollIfReset && reset) {
        printf("reset and repoll\n");
        tmqPollImpl(tmq, blockingTime);
      }
    }
  }
}

L
Liu Jicong 已提交
1305
#if 0
L
Liu Jicong 已提交
1306
tmq_message_t* tmq_consumer_poll_v1(tmq_t* tmq, int64_t blocking_time) {
X
Xiaoyu Wang 已提交
1307 1308
  tmq_message_t* rspMsg = NULL;
  int64_t        startTime = taosGetTimestampMs();
1309 1310

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

L
Liu Jicong 已提交
1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325
  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 已提交
1326
  }
L
Liu Jicong 已提交
1327
}
L
Liu Jicong 已提交
1328
#endif
X
Xiaoyu Wang 已提交
1329

L
Liu Jicong 已提交
1330 1331
tmq_message_t* tmq_consumer_poll(tmq_t* tmq, int64_t blocking_time) {
  tmq_message_t* rspMsg;
L
Liu Jicong 已提交
1332 1333
  int64_t        startTime = taosGetTimestampMs();

L
Liu Jicong 已提交
1334
  // TODO: put into another thread or delayed queue
1335
  int64_t status = atomic_load_64(&tmq->status);
L
Liu Jicong 已提交
1336 1337
  tmqAskEp(tmq, status == TMQ_CONSUMER_STATUS__INIT);

L
fix  
Liu Jicong 已提交
1338 1339 1340 1341
  rspMsg = tmqHandleAllRsp(tmq, blocking_time, false);
  if (rspMsg) {
    return rspMsg;
  }
X
Xiaoyu Wang 已提交
1342 1343 1344

  while (1) {
    /*printf("cycle\n");*/
L
Liu Jicong 已提交
1345
    tmqAskEp(tmq, false);
L
Liu Jicong 已提交
1346
    tmqPollImpl(tmq, blocking_time);
L
Liu Jicong 已提交
1347 1348 1349 1350

    tsem_wait(&tmq->rspSem);

    rspMsg = tmqHandleAllRsp(tmq, blocking_time, false);
X
Xiaoyu Wang 已提交
1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363
    if (rspMsg) {
      return rspMsg;
    }
    if (blocking_time != 0) {
      int64_t endTime = taosGetTimestampMs();
      if (endTime - startTime > blocking_time) {
        return NULL;
      }
    }
  }
}

#if 0
1364

L
Liu Jicong 已提交
1365
  if (blocking_time <= 0) blocking_time = 1;
L
Liu Jicong 已提交
1366 1367
  if (blocking_time > 1000) blocking_time = 1000;
  /*blocking_time = 1;*/
1368 1369 1370

  if (taosArrayGetSize(tmq->clientTopics) == 0) {
    tscDebug("consumer:%ld poll but not assigned", tmq->consumerId);
L
Liu Jicong 已提交
1371
    /*printf("over1\n");*/
wafwerar's avatar
wafwerar 已提交
1372
    taosMsleep(blocking_time);
1373 1374 1375 1376
    return NULL;
  }
  SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, tmq->nextTopicIdx);
  if (taosArrayGetSize(pTopic->vgs) == 0) {
L
Liu Jicong 已提交
1377
    /*printf("over2\n");*/
wafwerar's avatar
wafwerar 已提交
1378
    taosMsleep(blocking_time);
1379 1380 1381
    return NULL;
  }

L
Liu Jicong 已提交
1382
  tmq->nextTopicIdx = (tmq->nextTopicIdx + 1) % taosArrayGetSize(tmq->clientTopics);
L
Liu Jicong 已提交
1383
  int32_t beginVgIdx = pTopic->nextVgIdx;
L
Liu Jicong 已提交
1384
  while (1) {
L
Liu Jicong 已提交
1385 1386 1387
    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 已提交
1388
    SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, blocking_time, pTopic, pVg);
L
Liu Jicong 已提交
1389 1390
    if (pReq == NULL) {
      ASSERT(false);
wafwerar's avatar
wafwerar 已提交
1391
      taosMsleep(blocking_time);
L
Liu Jicong 已提交
1392 1393
      return NULL;
    }
1394

wafwerar's avatar
wafwerar 已提交
1395
    SMqPollCbParam* param = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1396 1397
    if (param == NULL) {
      ASSERT(false);
wafwerar's avatar
wafwerar 已提交
1398
      taosMsleep(blocking_time);
L
Liu Jicong 已提交
1399 1400 1401 1402 1403 1404 1405 1406
      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 已提交
1407 1408 1409 1410 1411
    pRequest->body.requestMsg = (SDataBuf){
        .pData = pReq,
        .len = sizeof(SMqConsumeReq),
        .handle = NULL,
    };
1412

L
Liu Jicong 已提交
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425
    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);
wafwerar's avatar
wafwerar 已提交
1426
    taosMemoryFree(param);
L
Liu Jicong 已提交
1427 1428 1429

    if (tmq_message == NULL) {
      if (beginVgIdx == pTopic->nextVgIdx) {
wafwerar's avatar
wafwerar 已提交
1430
        taosMsleep(blocking_time);
L
Liu Jicong 已提交
1431 1432 1433 1434
      } else {
        continue;
      }
    }
L
Liu Jicong 已提交
1435

L
Liu Jicong 已提交
1436
    return tmq_message;
L
Liu Jicong 已提交
1437
  }
1438 1439 1440 1441

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

  /*if (body != NULL) {*/
L
Liu Jicong 已提交
1442
  /*destroySendMsgInfo(body);*/
1443 1444 1445
  /*}*/

  /*if (pRequest != NULL && terrno != TSDB_CODE_SUCCESS) {*/
L
Liu Jicong 已提交
1446
  /*pRequest->code = terrno;*/
1447 1448 1449 1450
  /*}*/

  /*return pRequest;*/
}
X
Xiaoyu Wang 已提交
1451
#endif
1452

L
Liu Jicong 已提交
1453
#if 0
L
Liu Jicong 已提交
1454
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 已提交
1455
  if (tmq_topic_vgroup_list != NULL) {
L
Liu Jicong 已提交
1456
    // TODO
L
Liu Jicong 已提交
1457 1458
  }

L
Liu Jicong 已提交
1459
  // TODO: change semaphore to gate
L
Liu Jicong 已提交
1460 1461 1462
  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 已提交
1463
      SMqClientVg*   pVg = taosArrayGet(pTopic->vgs, j);
L
Liu Jicong 已提交
1464
      SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, 0, pTopic, pVg);
L
Liu Jicong 已提交
1465

L
Liu Jicong 已提交
1466 1467
      SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_VND_CONSUME);
      pRequest->body.requestMsg = (SDataBuf){.pData = pReq, .len = sizeof(SMqConsumeReq)};
wafwerar's avatar
wafwerar 已提交
1468
      SMqCommitCbParam* pParam = taosMemoryMalloc(sizeof(SMqCommitCbParam));
L
Liu Jicong 已提交
1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488
      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 已提交
1489
  return 0;
1490
}
L
Liu Jicong 已提交
1491
#endif
1492 1493 1494

void tmq_message_destroy(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;
L
Liu Jicong 已提交
1495
  SMqPollRsp* pRsp = &tmq_message->msg;
L
Liu Jicong 已提交
1496
  tDeleteSMqConsumeRsp(pRsp);
wafwerar's avatar
wafwerar 已提交
1497
  /*taosMemoryFree(tmq_message);*/
X
Xiaoyu Wang 已提交
1498
  taosFreeQitem(tmq_message);
1499 1500
}

L
Liu Jicong 已提交
1501
tmq_resp_err_t tmq_consumer_close(tmq_t* tmq) { return TMQ_RESP_ERR__SUCCESS; }
L
Liu Jicong 已提交
1502 1503 1504 1505 1506 1507 1508

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

L
Liu Jicong 已提交
1510
TAOS_ROW tmq_get_row(tmq_message_t* message) {
L
Liu Jicong 已提交
1511
  SMqPollRsp* rsp = &message->msg;
L
Liu Jicong 已提交
1512
  while (1) {
L
Liu Jicong 已提交
1513 1514 1515
    if (message->iter.curBlock < taosArrayGetSize(rsp->pBlockData)) {
      SSDataBlock* pBlock = taosArrayGet(rsp->pBlockData, message->iter.curBlock);
      if (message->iter.curRow < pBlock->info.rows) {
L
Liu Jicong 已提交
1516 1517
        for (int i = 0; i < pBlock->info.numOfCols; i++) {
          SColumnInfoData* pData = taosArrayGet(pBlock->pDataBlock, i);
L
Liu Jicong 已提交
1518 1519
          if (colDataIsNull_s(pData, message->iter.curRow))
            message->iter.uData[i] = NULL;
L
Liu Jicong 已提交
1520
          else {
L
Liu Jicong 已提交
1521
            message->iter.uData[i] = colDataGetData(pData, message->iter.curRow);
L
Liu Jicong 已提交
1522 1523
          }
        }
L
Liu Jicong 已提交
1524 1525
        message->iter.curRow++;
        return message->iter.uData;
L
Liu Jicong 已提交
1526
      } else {
L
Liu Jicong 已提交
1527 1528
        message->iter.curBlock++;
        message->iter.curRow = 0;
L
Liu Jicong 已提交
1529 1530 1531 1532 1533 1534 1535 1536 1537
        continue;
      }
    }
    return NULL;
  }
}

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

L
Liu Jicong 已提交
1538 1539
#if 0
tmq_t* tmqCreateConsumerImpl(TAOS* conn, tmq_conf_t* conf) {
wafwerar's avatar
wafwerar 已提交
1540
  tmq_t* pTmq = taosMemoryMalloc(sizeof(tmq_t));
L
Liu Jicong 已提交
1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551
  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;
}


1552 1553
static void destroySendMsgInfo(SMsgSendInfo* pMsgBody) {
  assert(pMsgBody != NULL);
wafwerar's avatar
wafwerar 已提交
1554 1555
  taosMemoryFreeClear(pMsgBody->msgInfo.pData);
  taosMemoryFreeClear(pMsgBody);
1556
}
L
Liu Jicong 已提交
1557
#endif