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

int32_t tmqAskEp(tmq_t* tmq, bool sync);
29

L
Liu Jicong 已提交
30 31 32 33 34 35 36 37 38 39 40
typedef struct {
  int8_t  tmqRspType;
  int32_t epoch;
} SMqRspWrapper;

typedef struct {
  int8_t           tmqRspType;
  int32_t          epoch;
  SMqCMGetSubEpRsp msg;
} SMqAskEpRspWrapper;

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
  SArray container;  // SArray<tmq_topic_vgroup_t*>
L
Liu Jicong 已提交
51 52 53
};

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

L
Liu Jicong 已提交
67 68 69 70 71 72 73
typedef struct {
  int8_t inited;
  tmr_h  timer;
} SMqMgmt;

static SMqMgmt tmqMgmt = {0};

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

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

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

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

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

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

X
Xiaoyu Wang 已提交
111 112 113 114 115 116 117
enum {
  TMQ_VG_STATUS__IDLE = 0,
  TMQ_VG_STATUS__WAIT,
};

enum {
  TMQ_CONSUMER_STATUS__INIT = 0,
L
Liu Jicong 已提交
118
  TMQ_CONSUMER_STATUS__SUBSCRIBED,
X
Xiaoyu Wang 已提交
119
  TMQ_CONSUMER_STATUS__READY,
L
Liu Jicong 已提交
120 121
};

L
Liu Jicong 已提交
122 123 124 125 126 127
enum {
  TMQ_DELAYED_TASK__HB = 1,
  TMQ_DELAYED_TASK__REPORT,
  TMQ_DELAYED_TASK__COMMIT,
};

L
Liu Jicong 已提交
128
typedef struct {
129 130 131 132
  // statistics
  int64_t pollCnt;
  // offset
  int64_t currentOffset;
L
Liu Jicong 已提交
133
  // connection info
134
  int32_t vgId;
X
Xiaoyu Wang 已提交
135
  int32_t vgStatus;
L
Liu Jicong 已提交
136
  int32_t vgSkipCnt;
137 138 139
  SEpSet  epSet;
} SMqClientVg;

L
Liu Jicong 已提交
140
typedef struct {
141
  // subscribe info
L
Liu Jicong 已提交
142 143 144 145
  char* topicName;

  SArray* vgs;  // SArray<SMqClientVg>

L
Liu Jicong 已提交
146 147
  int8_t         isSchemaAdaptive;
  SSchemaWrapper schema;
148 149
} SMqClientTopic;

L
Liu Jicong 已提交
150 151 152 153 154
typedef struct {
  int8_t          tmqRspType;
  int32_t         epoch;
  SMqClientVg*    vgHandle;
  SMqClientTopic* topicHandle;
L
Liu Jicong 已提交
155
  SMqDataBlkRsp   msg;
L
Liu Jicong 已提交
156 157
} SMqPollRspWrapper;

L
Liu Jicong 已提交
158
typedef struct {
L
Liu Jicong 已提交
159 160 161 162
  tmq_t*         tmq;
  tsem_t         rspSem;
  tmq_resp_err_t rspErr;
} SMqSubscribeCbParam;
L
Liu Jicong 已提交
163

L
Liu Jicong 已提交
164
typedef struct {
165
  tmq_t*  tmq;
L
Liu Jicong 已提交
166
  int32_t code;
X
Xiaoyu Wang 已提交
167 168
  int32_t sync;
  tsem_t  rspSem;
169 170
} SMqAskEpCbParam;

L
Liu Jicong 已提交
171
typedef struct {
L
Liu Jicong 已提交
172 173
  tmq_t*          tmq;
  SMqClientVg*    pVg;
L
Liu Jicong 已提交
174
  SMqClientTopic* pTopic;
L
Liu Jicong 已提交
175
  int32_t         epoch;
L
Liu Jicong 已提交
176
  int32_t         vgId;
L
Liu Jicong 已提交
177 178
  tsem_t          rspSem;
  int32_t         sync;
X
Xiaoyu Wang 已提交
179
} SMqPollCbParam;
180

L
Liu Jicong 已提交
181
typedef struct {
L
Liu Jicong 已提交
182
  tmq_t*         tmq;
L
Liu Jicong 已提交
183
  int32_t        async;
L
Liu Jicong 已提交
184 185
  tsem_t         rspSem;
  tmq_resp_err_t rspErr;
L
Liu Jicong 已提交
186
} SMqCommitCbParam;
L
Liu Jicong 已提交
187

188
tmq_conf_t* tmq_conf_new() {
wafwerar's avatar
wafwerar 已提交
189
  tmq_conf_t* conf = taosMemoryCalloc(1, sizeof(tmq_conf_t));
L
Liu Jicong 已提交
190
  conf->autoCommit = false;
X
Xiaoyu Wang 已提交
191
  conf->resetOffset = TMQ_CONF__RESET_OFFSET__EARLIEAST;
192 193 194
  return conf;
}

L
Liu Jicong 已提交
195
void tmq_conf_destroy(tmq_conf_t* conf) {
wafwerar's avatar
wafwerar 已提交
196
  if (conf) taosMemoryFree(conf);
L
Liu Jicong 已提交
197 198 199
}

tmq_conf_res_t tmq_conf_set(tmq_conf_t* conf, const char* key, const char* value) {
200 201
  if (strcmp(key, "group.id") == 0) {
    strcpy(conf->groupId, value);
L
Liu Jicong 已提交
202
    return TMQ_CONF_OK;
203
  }
L
Liu Jicong 已提交
204

205 206
  if (strcmp(key, "client.id") == 0) {
    strcpy(conf->clientId, value);
L
Liu Jicong 已提交
207 208
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
209

L
Liu Jicong 已提交
210 211
  if (strcmp(key, "enable.auto.commit") == 0) {
    if (strcmp(value, "true") == 0) {
L
Liu Jicong 已提交
212
      conf->autoCommit = true;
L
Liu Jicong 已提交
213 214
      return TMQ_CONF_OK;
    } else if (strcmp(value, "false") == 0) {
L
Liu Jicong 已提交
215
      conf->autoCommit = false;
L
Liu Jicong 已提交
216 217 218 219
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
220
  }
L
Liu Jicong 已提交
221

L
Liu Jicong 已提交
222 223 224 225 226
  if (strcmp(key, "auto.commit.interval.ms") == 0) {
    conf->autoCommitInterval = atoi(value);
    return TMQ_CONF_OK;
  }

L
Liu Jicong 已提交
227 228 229 230 231 232 233 234 235 236 237 238 239 240
  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 已提交
241

L
Liu Jicong 已提交
242
  if (strcmp(key, "td.connect.ip") == 0) {
L
Liu Jicong 已提交
243 244 245
    conf->ip = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
246
  if (strcmp(key, "td.connect.user") == 0) {
L
Liu Jicong 已提交
247 248 249
    conf->user = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
250
  if (strcmp(key, "td.connect.pass") == 0) {
L
Liu Jicong 已提交
251 252 253
    conf->pass = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
254
  if (strcmp(key, "td.connect.port") == 0) {
L
Liu Jicong 已提交
255 256 257
    conf->port = atoi(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
258
  if (strcmp(key, "td.connect.db") == 0) {
L
Liu Jicong 已提交
259 260 261 262
    conf->db = strdup(value);
    return TMQ_CONF_OK;
  }

L
Liu Jicong 已提交
263
  return TMQ_CONF_UNKNOWN;
264 265 266
}

tmq_list_t* tmq_list_new() {
L
Liu Jicong 已提交
267 268
  //
  return (tmq_list_t*)taosArrayInit(0, sizeof(void*));
269 270
}

L
Liu Jicong 已提交
271 272 273
int32_t tmq_list_append(tmq_list_t* list, const char* src) {
  SArray* container = &list->container;
  char*   topic = strdup(src);
L
fix  
Liu Jicong 已提交
274
  if (taosArrayPush(container, &topic) == NULL) return -1;
275 276 277
  return 0;
}

L
Liu Jicong 已提交
278
void tmq_list_destroy(tmq_list_t* list) {
L
Liu Jicong 已提交
279
  SArray* container = &list->container;
L
Liu Jicong 已提交
280
  taosArrayDestroyP(container, taosMemoryFree);
L
Liu Jicong 已提交
281 282
}

L
Liu Jicong 已提交
283 284 285 286 287 288 289 290 291 292
int32_t tmq_list_get_size(const tmq_list_t* list) {
  const SArray* container = &list->container;
  return taosArrayGetSize(container);
}

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

L
Liu Jicong 已提交
293 294 295 296
static int32_t tmqMakeTopicVgKey(char* dst, const char* topicName, int32_t vg) {
  return sprintf(dst, "%s:%d", topicName, vg);
}

L
Liu Jicong 已提交
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
void tmqAssignDelayedHbTask(void* param, void* tmrId) {
  tmq_t*  tmq = (tmq_t*)param;
  int8_t* pTaskType = taosAllocateQitem(sizeof(int8_t));
  *pTaskType = TMQ_DELAYED_TASK__HB;
  taosWriteQitem(tmq->delayedTask, pTaskType);
}

void tmqAssignDelayedCommitTask(void* param, void* tmrId) {
  tmq_t*  tmq = (tmq_t*)param;
  int8_t* pTaskType = taosAllocateQitem(sizeof(int8_t));
  *pTaskType = TMQ_DELAYED_TASK__COMMIT;
  taosWriteQitem(tmq->delayedTask, pTaskType);
}

void tmqAssignDelayedReportTask(void* param, void* tmrId) {
  tmq_t*  tmq = (tmq_t*)param;
  int8_t* pTaskType = taosAllocateQitem(sizeof(int8_t));
  *pTaskType = TMQ_DELAYED_TASK__REPORT;
  taosWriteQitem(tmq->delayedTask, pTaskType);
}

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

    if (*pTaskType == TMQ_DELAYED_TASK__HB) {
      tmqAskEp(tmq, false);
      taosTmrReset(tmqAssignDelayedHbTask, 1000, tmq, tmqMgmt.timer, &tmq->hbTimer);
    } else if (*pTaskType == TMQ_DELAYED_TASK__COMMIT) {
      tmq_commit(tmq, NULL, true);
      taosTmrReset(tmqAssignDelayedCommitTask, tmq->autoCommitInterval, tmq, tmqMgmt.timer, &tmq->commitTimer);
    } else if (*pTaskType == TMQ_DELAYED_TASK__REPORT) {
    } else {
      ASSERT(0);
    }
  }
  taosFreeQall(qall);
  return 0;
}

L
Liu Jicong 已提交
341
void tmqClearUnhandleMsg(tmq_t* tmq) {
L
Liu Jicong 已提交
342
  SMqRspWrapper* msg = NULL;
L
Liu Jicong 已提交
343 344 345 346 347 348 349 350
  while (1) {
    taosGetQitem(tmq->qall, (void**)&msg);
    if (msg)
      taosFreeQitem(msg);
    else
      break;
  }

L
fix  
Liu Jicong 已提交
351
  msg = NULL;
L
Liu Jicong 已提交
352 353 354 355 356 357 358 359 360 361
  taosReadAllQitems(tmq->mqueue, tmq->qall);
  while (1) {
    taosGetQitem(tmq->qall, (void**)&msg);
    if (msg)
      taosFreeQitem(msg);
    else
      break;
  }
}

L
Liu Jicong 已提交
362 363 364
int32_t tmqSubscribeCb(void* param, const SDataBuf* pMsg, int32_t code) {
  SMqSubscribeCbParam* pParam = (SMqSubscribeCbParam*)param;
  pParam->rspErr = code;
L
Liu Jicong 已提交
365 366
  tmq_t* tmq = pParam->tmq;
  atomic_store_8(&tmq->status, TMQ_CONSUMER_STATUS__SUBSCRIBED);
L
Liu Jicong 已提交
367 368 369
  tsem_post(&pParam->rspSem);
  return 0;
}
370

L
Liu Jicong 已提交
371
int32_t tmqCommitCb(void* param, const SDataBuf* pMsg, int32_t code) {
L
Liu Jicong 已提交
372
  SMqCommitCbParam* pParam = (SMqCommitCbParam*)param;
L
Liu Jicong 已提交
373
  pParam->rspErr = code == 0 ? TMQ_RESP_ERR__SUCCESS : TMQ_RESP_ERR__FAIL;
L
Liu Jicong 已提交
374
  if (pParam->tmq->commit_cb) {
L
Liu Jicong 已提交
375
    pParam->tmq->commit_cb(pParam->tmq, pParam->rspErr, NULL);
L
Liu Jicong 已提交
376
  }
L
fix  
Liu Jicong 已提交
377
  if (!pParam->async) tsem_post(&pParam->rspSem);
L
Liu Jicong 已提交
378 379 380
  return 0;
}

X
Xiaoyu Wang 已提交
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
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);
}

L
Liu Jicong 已提交
397
#if 0
398
tmq_t* tmq_consumer_new(void* conn, tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
wafwerar's avatar
wafwerar 已提交
399
  tmq_t* pTmq = taosMemoryCalloc(sizeof(tmq_t), 1);
400 401 402 403 404 405
  if (pTmq == NULL) {
    return NULL;
  }
  pTmq->pTscObj = (STscObj*)conn;
  pTmq->status = 0;
  pTmq->pollCnt = 0;
L
Liu Jicong 已提交
406
  pTmq->epoch = 0;
L
fix txn  
Liu Jicong 已提交
407
  pTmq->epStatus = 0;
L
temp  
Liu Jicong 已提交
408
  pTmq->epSkipCnt = 0;
L
Liu Jicong 已提交
409
  // set conf
410 411
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
L
Liu Jicong 已提交
412
  pTmq->autoCommit = conf->autoCommit;
413
  pTmq->commit_cb = conf->commit_cb;
L
Liu Jicong 已提交
414
  pTmq->resetOffsetCfg = conf->resetOffset;
L
Liu Jicong 已提交
415

L
Liu Jicong 已提交
416 417 418 419 420 421 422 423 424 425
  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 已提交
426 427
  tsem_init(&pTmq->rspSem, 0, 0);

L
Liu Jicong 已提交
428 429
  return pTmq;
}
L
Liu Jicong 已提交
430
#endif
L
Liu Jicong 已提交
431

L
Liu Jicong 已提交
432
tmq_t* tmq_consumer_new(tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
L
Liu Jicong 已提交
433 434 435 436 437 438 439 440 441 442 443
  // init timer
  int8_t inited = atomic_val_compare_exchange_8(&tmqMgmt.inited, 0, 1);
  if (inited == 0) {
    tmqMgmt.timer = taosTmrInit(1000, 100, 360000, "TMQ");
    if (tmqMgmt.timer == NULL) {
      atomic_store_8(&tmqMgmt.inited, 0);
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      return NULL;
    }
  }

L
Liu Jicong 已提交
444 445 446 447
  tmq_t* pTmq = taosMemoryCalloc(1, sizeof(tmq_t));
  if (pTmq == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
448

L
Liu Jicong 已提交
449 450 451 452 453
  const char* user = conf->user == NULL ? TSDB_DEFAULT_USER : conf->user;
  const char* pass = conf->pass == NULL ? TSDB_DEFAULT_PASS : conf->pass;

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

L
Liu Jicong 已提交
456 457 458 459 460 461 462 463
  pTmq->clientTopics = taosArrayInit(0, sizeof(SMqClientTopic));
  pTmq->mqueue = taosOpenQueue();
  pTmq->qall = taosAllocateQall();
  pTmq->delayedTask = taosOpenQueue();

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

L
Liu Jicong 已提交
465 466
  // init status
  pTmq->status = TMQ_CONSUMER_STATUS__INIT;
L
Liu Jicong 已提交
467 468
  pTmq->pollCnt = 0;
  pTmq->epoch = 0;
L
Liu Jicong 已提交
469 470
  /*pTmq->epStatus = 0;*/
  /*pTmq->epSkipCnt = 0;*/
L
Liu Jicong 已提交
471

L
Liu Jicong 已提交
472 473 474
  // set conf
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
L
Liu Jicong 已提交
475 476 477
  /*pTmq->autoCommit = conf->autoCommit;*/
  pTmq->autoCommit = 0;
  pTmq->autoCommitInterval = conf->autoCommitInterval;
L
Liu Jicong 已提交
478 479 480
  pTmq->commit_cb = conf->commit_cb;
  pTmq->resetOffsetCfg = conf->resetOffset;

L
Liu Jicong 已提交
481
  // assign consumerId
L
Liu Jicong 已提交
482
  pTmq->consumerId = tGenIdPI64();
X
Xiaoyu Wang 已提交
483

L
Liu Jicong 已提交
484 485 486 487
  // init semaphore
  if (tsem_init(&pTmq->rspSem, 0, 0) != 0) {
    goto FAIL;
  }
L
Liu Jicong 已提交
488

L
Liu Jicong 已提交
489 490 491 492 493 494
  // init connection
  pTmq->pTscObj = taos_connect_internal(conf->ip, user, pass, NULL, NULL, conf->port, CONN_TYPE__TMQ);
  if (pTmq->pTscObj == NULL) {
    tsem_destroy(&pTmq->rspSem);
    goto FAIL;
  }
L
Liu Jicong 已提交
495

496
  return pTmq;
L
Liu Jicong 已提交
497 498 499 500 501 502 503 504

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

L
Liu Jicong 已提交
507 508 509 510
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 已提交
511 512
  // build msg
  // send to mnode
L
Liu Jicong 已提交
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
  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 {
L
Liu Jicong 已提交
533 534
    req.num = taosArrayGetSize(&offsets->container);
    req.offsets = (SMqOffset*)offsets->container.pData;
L
Liu Jicong 已提交
535
  }
L
Liu Jicong 已提交
536 537 538 539

  SCoder encoder;

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, NULL, 0, TD_ENCODER);
L
Liu Jicong 已提交
540
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
541
  int32_t tlen = encoder.pos;
wafwerar's avatar
wafwerar 已提交
542
  void*   buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
543 544 545 546 547 548 549
  if (buf == NULL) {
    tCoderClear(&encoder);
    return -1;
  }
  tCoderClear(&encoder);

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, buf, tlen, TD_ENCODER);
L
Liu Jicong 已提交
550
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
551 552
  tCoderClear(&encoder);

L
Liu Jicong 已提交
553
  pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_MND_MQ_COMMIT_OFFSET);
L
Liu Jicong 已提交
554 555 556 557
  if (pRequest == NULL) {
    tscError("failed to malloc request");
  }

wafwerar's avatar
wafwerar 已提交
558
  SMqCommitCbParam* pParam = taosMemoryMalloc(sizeof(SMqCommitCbParam));
L
Liu Jicong 已提交
559 560 561 562 563
  if (pParam == NULL) {
    return -1;
  }
  pParam->tmq = tmq;
  tsem_init(&pParam->rspSem, 0, 0);
L
fix  
Liu Jicong 已提交
564
  pParam->async = async;
L
Liu Jicong 已提交
565

X
Xiaoyu Wang 已提交
566 567 568 569 570
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
L
Liu Jicong 已提交
571 572

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
573 574
  sendInfo->param = pParam;
  sendInfo->fp = tmqCommitCb;
L
Liu Jicong 已提交
575 576 577 578 579
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
580 581 582 583
  if (!async) {
    tsem_wait(&pParam->rspSem);
    resp = pParam->rspErr;
  }
L
Liu Jicong 已提交
584

L
fix  
Liu Jicong 已提交
585
  tsem_destroy(&pParam->rspSem);
wafwerar's avatar
wafwerar 已提交
586
  taosMemoryFree(pParam);
L
fix  
Liu Jicong 已提交
587

L
Liu Jicong 已提交
588 589 590 591 592
  if (pArray) {
    taosArrayDestroy(pArray);
  }

  return resp;
L
Liu Jicong 已提交
593 594
}

L
Liu Jicong 已提交
595 596 597 598 599 600
tmq_resp_err_t tmq_subscribe(tmq_t* tmq, const tmq_list_t* topic_list) {
  const SArray*   container = &topic_list->container;
  int32_t         sz = taosArrayGetSize(container);
  void*           buf = NULL;
  SCMSubscribeReq req = {0};
  int32_t         code = -1;
601 602

  req.consumerId = tmq->consumerId;
L
Liu Jicong 已提交
603
  tstrncpy(req.cgroup, tmq->groupId, TSDB_CGROUP_LEN);
604
  req.topicNames = taosArrayInit(sz, sizeof(void*));
L
Liu Jicong 已提交
605
  if (req.topicNames == NULL) goto FAIL;
606

L
Liu Jicong 已提交
607 608
  for (int32_t i = 0; i < sz; i++) {
    char* topic = taosArrayGetP(container, i);
609 610

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

L
Liu Jicong 已提交
613 614 615
    char* topicFName = taosMemoryCalloc(1, TSDB_TOPIC_FNAME_LEN);
    if (topicFName == NULL) {
      goto FAIL;
616
    }
L
Liu Jicong 已提交
617
    tNameExtractFullName(&name, topicFName);
618

L
Liu Jicong 已提交
619 620 621
    tscDebug("subscribe topic: %s", topicFName);

    taosArrayPush(req.topicNames, &topicFName);
622 623
  }

L
Liu Jicong 已提交
624 625 626 627
  int32_t tlen = tSerializeSCMSubscribeReq(NULL, &req);
  buf = taosMemoryMalloc(tlen);
  if (buf == NULL) goto FAIL;

628 629 630
  void* abuf = buf;
  tSerializeSCMSubscribeReq(&abuf, &req);

L
Liu Jicong 已提交
631 632
  SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
  if (sendInfo == NULL) goto FAIL;
633

X
Xiaoyu Wang 已提交
634 635 636 637
  SMqSubscribeCbParam param = {
      .rspErr = TMQ_RESP_ERR__SUCCESS,
      .tmq = tmq,
  };
L
Liu Jicong 已提交
638

L
Liu Jicong 已提交
639 640 641
  if (tsem_init(&param.rspSem, 0, 0) != 0) goto FAIL;

  sendInfo->msgInfo = (SDataBuf){
X
Xiaoyu Wang 已提交
642 643 644 645
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
646

L
Liu Jicong 已提交
647 648
  sendInfo->requestId = generateRequestId();
  sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
649 650
  sendInfo->param = &param;
  sendInfo->fp = tmqSubscribeCb;
L
Liu Jicong 已提交
651 652
  sendInfo->msgType = TDMT_MND_SUBSCRIBE;

653 654 655 656 657
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
658 659
  tsem_wait(&param.rspSem);
  tsem_destroy(&param.rspSem);
660

L
Liu Jicong 已提交
661 662 663 664 665 666 667 668
  code = param.rspErr;
  if (code != 0) goto FAIL;

  // TODO: add max retry cnt
  while (TSDB_CODE_MND_CONSUMER_NOT_READY == tmqAskEp(tmq, true)) {
    tscDebug("not ready, retry\n");
    taosMsleep(500);
  }
669

L
Liu Jicong 已提交
670 671 672 673 674 675 676 677
  // init hb timer
  tmq->hbTimer = taosTmrStart(tmqAssignDelayedHbTask, 1000, tmq, tmqMgmt.timer);

  // init auto commit timer
  if (tmq->autoCommit) {
    tmq->commitTimer = taosTmrStart(tmqAssignDelayedCommitTask, tmq->autoCommitInterval, tmq, tmqMgmt.timer);
  }

L
Liu Jicong 已提交
678 679 680 681 682 683 684
  code = 0;
FAIL:
  if (req.topicNames != NULL) taosArrayDestroyP(req.topicNames, taosMemoryFree);
  if (code != 0) {
    taosMemoryFree(buf);
  }
  return code;
685 686
}

L
Liu Jicong 已提交
687 688 689 690
void tmq_conf_set_offset_commit_cb(tmq_conf_t* conf, tmq_commit_cb* cb) {
  //
  conf->commit_cb = cb;
}
691

L
Liu Jicong 已提交
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
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 已提交
707 708
  if (strlen(tbName) >= TSDB_TABLE_NAME_LEN) {
    tscError("output tb name too long, max length:%d", TSDB_TABLE_NAME_LEN - 1);
L
Liu Jicong 已提交
709 710 711 712 713 714 715 716 717 718 719 720
    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 已提交
721
  int32_t code = 0;
L
Liu Jicong 已提交
722
  CHECK_CODE_GOTO(buildRequest(pTscObj, sql, sqlLen, &pRequest), _return);
D
stmt  
dapan1121 已提交
723
  CHECK_CODE_GOTO(parseSql(pRequest, false, &pQueryNode, NULL), _return);
L
Liu Jicong 已提交
724 725 726 727 728 729 730 731 732 733 734 735 736 737
  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 已提交
738
  strcpy(req.outputSTbName, tbName);
L
Liu Jicong 已提交
739 740

  int   tlen = tSerializeSCMCreateStreamReq(NULL, 0, &req);
wafwerar's avatar
wafwerar 已提交
741
  void* buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
  if (buf == NULL) {
    goto _return;
  }

  tSerializeSCMCreateStreamReq(buf, tlen, &req);

  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 已提交
764
  taosMemoryFreeClear(astStr);
L
Liu Jicong 已提交
765 766 767 768 769 770 771 772 773 774 775 776
  qDestroyQuery(pQueryNode);
  /*if (sendInfo != NULL) {*/
  /*destroySendMsgInfo(sendInfo);*/
  /*}*/

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

  return pRequest;
}

L
Liu Jicong 已提交
777
#if 0
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
  return pRsp->skipLogNum;
}
L
Liu Jicong 已提交
783
#endif
L
Liu Jicong 已提交
784 785

int32_t tmqPollCb(void* param, const SDataBuf* pMsg, int32_t code) {
X
Xiaoyu Wang 已提交
786 787
  SMqPollCbParam* pParam = (SMqPollCbParam*)param;
  SMqClientVg*    pVg = pParam->pVg;
L
Liu Jicong 已提交
788
  SMqClientTopic* pTopic = pParam->pTopic;
X
Xiaoyu Wang 已提交
789
  tmq_t*          tmq = pParam->tmq;
L
Liu Jicong 已提交
790
  if (code != 0) {
L
Liu Jicong 已提交
791
    tscWarn("msg discard from vg %d, epoch %d, code:%x", pParam->vgId, pParam->epoch, code);
L
fix txn  
Liu Jicong 已提交
792
    goto CREATE_MSG_FAIL;
L
Liu Jicong 已提交
793 794
  }

X
Xiaoyu Wang 已提交
795 796 797
  int32_t msgEpoch = ((SMqRspHead*)pMsg->pData)->epoch;
  int32_t tmqEpoch = atomic_load_32(&tmq->epoch);
  if (msgEpoch < tmqEpoch) {
L
Liu Jicong 已提交
798
    // do not write into queue since updating epoch reset
L
Liu Jicong 已提交
799 800
    tscWarn("msg discard from vg %d since from earlier epoch, rsp epoch %d, current epoch %d", pParam->vgId, msgEpoch,
            tmqEpoch);
L
Liu Jicong 已提交
801
    /*tsem_post(&tmq->rspSem);*/
X
Xiaoyu Wang 已提交
802 803 804 805
    return 0;
  }

  if (msgEpoch != tmqEpoch) {
L
Liu Jicong 已提交
806
    tscWarn("mismatch rsp from vg %d, epoch %d, current epoch %d", pParam->vgId, msgEpoch, tmqEpoch);
X
Xiaoyu Wang 已提交
807 808
  }

L
Liu Jicong 已提交
809
#if 0
L
Liu Jicong 已提交
810
  if (pParam->sync == 1) {
wafwerar's avatar
wafwerar 已提交
811
    /**pParam->msg = taosMemoryMalloc(sizeof(tmq_message_t));*/
L
Liu Jicong 已提交
812 813 814 815 816 817 818 819 820 821 822 823 824 825
    *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 已提交
826
#endif
L
Liu Jicong 已提交
827

L
Liu Jicong 已提交
828 829
  SMqPollRspWrapper* pRspWrapper = taosAllocateQitem(sizeof(SMqPollRspWrapper));
  if (pRspWrapper == NULL) {
L
Liu Jicong 已提交
830
    tscWarn("msg discard from vg %d, epoch %d since out of memory", pParam->vgId, pParam->epoch);
L
fix txn  
Liu Jicong 已提交
831
    goto CREATE_MSG_FAIL;
L
Liu Jicong 已提交
832
  }
L
Liu Jicong 已提交
833

L
Liu Jicong 已提交
834 835 836
  pRspWrapper->tmqRspType = TMQ_MSG_TYPE__POLL_RSP;
  pRspWrapper->vgHandle = pVg;
  pRspWrapper->topicHandle = pTopic;
L
Liu Jicong 已提交
837

L
Liu Jicong 已提交
838 839
  memcpy(&pRspWrapper->msg, pMsg->pData, sizeof(SMqRspHead));

L
Liu Jicong 已提交
840
  tDecodeSMqDataBlkRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pRspWrapper->msg);
L
Liu Jicong 已提交
841

L
Liu Jicong 已提交
842 843
  tscDebug("consumer %ld recv poll: vg %d, req offset %ld, rsp offset %ld", tmq->consumerId, pVg->vgId,
           pRspWrapper->msg.reqOffset, pRspWrapper->msg.rspOffset);
L
fix  
Liu Jicong 已提交
844

L
Liu Jicong 已提交
845
  taosWriteQitem(tmq->mqueue, pRspWrapper);
L
temp  
Liu Jicong 已提交
846
  /*tsem_post(&tmq->rspSem);*/
L
Liu Jicong 已提交
847

L
Liu Jicong 已提交
848
  return 0;
L
fix txn  
Liu Jicong 已提交
849
CREATE_MSG_FAIL:
L
Liu Jicong 已提交
850 851 852
  if (pParam->epoch == tmq->epoch) {
    atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
  }
L
temp  
Liu Jicong 已提交
853
  /*tsem_post(&tmq->rspSem);*/
L
Liu Jicong 已提交
854
  return -1;
855 856
}

X
Xiaoyu Wang 已提交
857
bool tmqUpdateEp(tmq_t* tmq, int32_t epoch, SMqCMGetSubEpRsp* pRsp) {
L
Liu Jicong 已提交
858
  /*printf("call update ep %d\n", epoch);*/
X
Xiaoyu Wang 已提交
859
  bool    set = false;
L
Liu Jicong 已提交
860 861
  int32_t topicNumGet = taosArrayGetSize(pRsp->topics);
  char    vgKey[TSDB_TOPIC_FNAME_LEN + 22];
L
Liu Jicong 已提交
862 863
  tscDebug("consumer %ld update ep epoch %d to epoch %d, topic num: %d", tmq->consumerId, tmq->epoch, epoch,
           topicNumGet);
L
Liu Jicong 已提交
864 865 866 867 868 869 870 871 872 873 874 875
  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 已提交
876 877
    SMqClientTopic topic = {0};
    SMqSubTopicEp* pTopicEp = taosArrayGet(pRsp->topics, i);
L
Liu Jicong 已提交
878
    topic.schema = pTopicEp->schema;
L
Liu Jicong 已提交
879
    taosHashClear(pHash);
X
Xiaoyu Wang 已提交
880
    topic.topicName = strdup(pTopicEp->topic);
L
Liu Jicong 已提交
881

L
Liu Jicong 已提交
882
    tscDebug("consumer %ld update topic: %s", tmq->consumerId, topic.topicName);
L
Liu Jicong 已提交
883 884 885 886 887 888
    int32_t topicNumCur = taosArrayGetSize(tmq->clientTopics);
    for (int32_t j = 0; j < topicNumCur; j++) {
      // find old topic
      SMqClientTopic* pTopicCur = taosArrayGet(tmq->clientTopics, j);
      if (pTopicCur->vgs && strcmp(pTopicCur->topicName, pTopicEp->topic) == 0) {
        int32_t vgNumCur = taosArrayGetSize(pTopicCur->vgs);
L
Liu Jicong 已提交
889
        tscDebug("consumer %ld new vg num: %d", tmq->consumerId, vgNumCur);
L
Liu Jicong 已提交
890 891 892 893
        if (vgNumCur == 0) break;
        for (int32_t k = 0; k < vgNumCur; k++) {
          SMqClientVg* pVgCur = taosArrayGet(pTopicCur->vgs, k);
          sprintf(vgKey, "%s:%d", topic.topicName, pVgCur->vgId);
L
Liu Jicong 已提交
894
          tscDebug("consumer %ld epoch %d vg %d build %s", tmq->consumerId, epoch, pVgCur->vgId, vgKey);
L
Liu Jicong 已提交
895 896 897 898 899 900 901 902 903
          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 已提交
904
      SMqSubVgEp* pVgEp = taosArrayGet(pTopicEp->vgs, j);
L
Liu Jicong 已提交
905 906 907
      sprintf(vgKey, "%s:%d", topic.topicName, pVgEp->vgId);
      int64_t* pOffset = taosHashGet(pHash, vgKey, strlen(vgKey));
      int64_t  offset = pVgEp->offset;
L
Liu Jicong 已提交
908
      tscDebug("consumer %ld epoch %d vg %d offset og to %ld", tmq->consumerId, epoch, pVgEp->vgId, offset);
L
Liu Jicong 已提交
909 910
      if (pOffset != NULL) {
        offset = *pOffset;
L
Liu Jicong 已提交
911
        tscDebug("consumer %ld epoch %d vg %d found %s", tmq->consumerId, epoch, pVgEp->vgId, vgKey);
L
Liu Jicong 已提交
912
      }
L
Liu Jicong 已提交
913
      tscDebug("consumer %ld epoch %d vg %d offset set to %ld", tmq->consumerId, epoch, pVgEp->vgId, offset);
X
Xiaoyu Wang 已提交
914 915
      SMqClientVg clientVg = {
          .pollCnt = 0,
L
Liu Jicong 已提交
916
          .currentOffset = offset,
X
Xiaoyu Wang 已提交
917 918 919
          .vgId = pVgEp->vgId,
          .epSet = pVgEp->epSet,
          .vgStatus = TMQ_VG_STATUS__IDLE,
L
Liu Jicong 已提交
920
          .vgSkipCnt = 0,
X
Xiaoyu Wang 已提交
921 922 923 924
      };
      taosArrayPush(topic.vgs, &clientVg);
      set = true;
    }
L
Liu Jicong 已提交
925
    taosArrayPush(newTopics, &topic);
X
Xiaoyu Wang 已提交
926
  }
L
Liu Jicong 已提交
927
  if (tmq->clientTopics) taosArrayDestroy(tmq->clientTopics);
L
Liu Jicong 已提交
928
  taosHashCleanup(pHash);
L
Liu Jicong 已提交
929
  tmq->clientTopics = newTopics;
X
Xiaoyu Wang 已提交
930 931 932 933
  atomic_store_32(&tmq->epoch, epoch);
  return set;
}

L
Liu Jicong 已提交
934
int32_t tmqAskEpCb(void* param, const SDataBuf* pMsg, int32_t code) {
935
  SMqAskEpCbParam* pParam = (SMqAskEpCbParam*)param;
L
Liu Jicong 已提交
936
  tmq_t*           tmq = pParam->tmq;
L
Liu Jicong 已提交
937
  pParam->code = code;
938
  if (code != 0) {
L
temp  
Liu Jicong 已提交
939
    tscError("consumer %ld get topic endpoint error, not ready, wait:%d", tmq->consumerId, pParam->sync);
L
Liu Jicong 已提交
940
    goto END;
941
  }
L
Liu Jicong 已提交
942

L
Liu Jicong 已提交
943
  // tmq's epoch is monotonically increase,
L
Liu Jicong 已提交
944
  // so it's safe to discard any old epoch msg.
L
Liu Jicong 已提交
945
  // Epoch will only increase when received newer epoch ep msg
L
Liu Jicong 已提交
946 947
  SMqRspHead* head = pMsg->pData;
  int32_t     epoch = atomic_load_32(&tmq->epoch);
L
temp  
Liu Jicong 已提交
948
  tscDebug("consumer %ld recv ep, msg epoch %d, current epoch %d", tmq->consumerId, head->epoch, epoch);
L
Liu Jicong 已提交
949 950
  if (head->epoch <= epoch) {
    goto END;
951
  }
L
Liu Jicong 已提交
952

X
Xiaoyu Wang 已提交
953 954 955 956 957
  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 已提交
958
    if (tmqUpdateEp(tmq, head->epoch, &rsp)) {
L
Liu Jicong 已提交
959
      atomic_store_8(&tmq->status, TMQ_CONSUMER_STATUS__READY);
960
    }
X
Xiaoyu Wang 已提交
961 962
    tDeleteSMqCMGetSubEpRsp(&rsp);
  } else {
L
Liu Jicong 已提交
963 964
    SMqAskEpRspWrapper* pWrapper = taosAllocateQitem(sizeof(SMqAskEpRspWrapper));
    if (pWrapper == NULL) {
X
Xiaoyu Wang 已提交
965
      terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
966 967
      code = -1;
      goto END;
X
Xiaoyu Wang 已提交
968
    }
L
Liu Jicong 已提交
969 970 971 972
    pWrapper->tmqRspType = TMQ_MSG_TYPE__EP_RSP;
    pWrapper->epoch = head->epoch;
    memcpy(&pWrapper->msg, pMsg->pData, sizeof(SMqRspHead));
    tDecodeSMqCMGetSubEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pWrapper->msg);
L
Liu Jicong 已提交
973

L
Liu Jicong 已提交
974
    taosWriteQitem(tmq->mqueue, pWrapper);
L
temp  
Liu Jicong 已提交
975
    /*tsem_post(&tmq->rspSem);*/
L
Liu Jicong 已提交
976
    taosMemoryFree(pParam);
977
  }
L
Liu Jicong 已提交
978 979

END:
L
Liu Jicong 已提交
980
  /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
981 982 983 984
  if (pParam->sync) {
    tsem_post(&pParam->rspSem);
  }
  return code;
985 986
}

X
Xiaoyu Wang 已提交
987
int32_t tmqAskEp(tmq_t* tmq, bool sync) {
L
Liu Jicong 已提交
988
  int32_t code = 0;
L
Liu Jicong 已提交
989
#if 0
L
Liu Jicong 已提交
990
  int8_t  epStatus = atomic_val_compare_exchange_8(&tmq->epStatus, 0, 1);
L
fix txn  
Liu Jicong 已提交
991
  if (epStatus == 1) {
L
temp  
Liu Jicong 已提交
992
    int32_t epSkipCnt = atomic_add_fetch_32(&tmq->epSkipCnt, 1);
L
Liu Jicong 已提交
993
    tscTrace("consumer %ld skip ask ep cnt %d", tmq->consumerId, epSkipCnt);
L
Liu Jicong 已提交
994
    if (epSkipCnt < 5000) return 0;
L
fix txn  
Liu Jicong 已提交
995
  }
L
temp  
Liu Jicong 已提交
996
  atomic_store_32(&tmq->epSkipCnt, 0);
L
Liu Jicong 已提交
997
#endif
L
Liu Jicong 已提交
998
  int32_t           tlen = sizeof(SMqCMGetSubEpReq);
wafwerar's avatar
wafwerar 已提交
999
  SMqCMGetSubEpReq* req = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
1000
  if (req == NULL) {
L
Liu Jicong 已提交
1001
    tscError("failed to malloc get subscribe ep buf");
L
Liu Jicong 已提交
1002
    /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1003
    return -1;
L
Liu Jicong 已提交
1004
  }
L
Liu Jicong 已提交
1005 1006 1007
  req->consumerId = htobe64(tmq->consumerId);
  req->epoch = htonl(tmq->epoch);
  strcpy(req->cgroup, tmq->groupId);
1008

wafwerar's avatar
wafwerar 已提交
1009
  SMqAskEpCbParam* pParam = taosMemoryMalloc(sizeof(SMqAskEpCbParam));
L
Liu Jicong 已提交
1010 1011
  if (pParam == NULL) {
    tscError("failed to malloc subscribe param");
wafwerar's avatar
wafwerar 已提交
1012
    taosMemoryFree(req);
L
Liu Jicong 已提交
1013
    /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1014
    return -1;
L
Liu Jicong 已提交
1015 1016
  }
  pParam->tmq = tmq;
X
Xiaoyu Wang 已提交
1017 1018
  pParam->sync = sync;
  tsem_init(&pParam->rspSem, 0, 0);
1019

wafwerar's avatar
wafwerar 已提交
1020
  SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1021 1022
  if (sendInfo == NULL) {
    tsem_destroy(&pParam->rspSem);
wafwerar's avatar
wafwerar 已提交
1023 1024
    taosMemoryFree(pParam);
    taosMemoryFree(req);
L
Liu Jicong 已提交
1025
    /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
    return -1;
  }

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

  sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
1036 1037 1038
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqAskEpCb;
L
Liu Jicong 已提交
1039
  sendInfo->msgType = TDMT_MND_GET_SUB_EP;
1040

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

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

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

L
Liu Jicong 已提交
1048 1049 1050 1051 1052 1053
  if (sync) {
    tsem_wait(&pParam->rspSem);
    code = pParam->code;
    taosMemoryFree(pParam);
  }
  return code;
1054 1055
}

L
Liu Jicong 已提交
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
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 已提交
1070
          tmqClearUnhandleMsg(tmq);
L
Liu Jicong 已提交
1071 1072 1073 1074 1075 1076 1077 1078
          return TMQ_RESP_ERR__SUCCESS;
        }
      }
    }
  }
  return TMQ_RESP_ERR__FAIL;
}

L
Liu Jicong 已提交
1079
SMqPollReqV2* tmqBuildConsumeReqImpl(tmq_t* tmq, int64_t blockingTime, SMqClientTopic* pTopic, SMqClientVg* pVg) {
L
Liu Jicong 已提交
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
  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 已提交
1091
  SMqPollReqV2* pReq = taosMemoryMalloc(sizeof(SMqPollReqV2));
1092 1093 1094
  if (pReq == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
1095

L
Liu Jicong 已提交
1096 1097 1098 1099 1100 1101 1102
  /*strcpy(pReq->topic, pTopic->topicName);*/
  /*strcpy(pReq->cgroup, tmq->groupId);*/

  int32_t tlen = strlen(tmq->groupId);
  memcpy(pReq->subKey, tmq->groupId, tlen);
  pReq->subKey[tlen] = TMQ_SEPARATOR;
  strcpy(pReq->subKey + tlen + 1, pTopic->topicName);
1103

L
fix  
Liu Jicong 已提交
1104
  pReq->blockingTime = blockingTime;
L
Liu Jicong 已提交
1105
  pReq->consumerId = tmq->consumerId;
X
Xiaoyu Wang 已提交
1106
  pReq->epoch = tmq->epoch;
L
Liu Jicong 已提交
1107
  pReq->currentOffset = reqOffset;
L
Liu Jicong 已提交
1108
  pReq->reqId = generateRequestId();
1109 1110

  pReq->head.vgId = htonl(pVg->vgId);
L
Liu Jicong 已提交
1111
  pReq->head.contLen = htonl(sizeof(SMqPollReqV2));
1112 1113 1114
  return pReq;
}

L
Liu Jicong 已提交
1115 1116 1117
SMqRspObj* tmqBuildRspFromWrapper(SMqPollRspWrapper* pWrapper) {
  SMqRspObj* pRspObj = taosMemoryCalloc(1, sizeof(SMqRspObj));
  pRspObj->resType = RES_TYPE__TMQ;
L
Liu Jicong 已提交
1118
  strncpy(pRspObj->topic, pWrapper->topicHandle->topicName, TSDB_TOPIC_FNAME_LEN);
L
Liu Jicong 已提交
1119
  pRspObj->vgId = pWrapper->vgHandle->vgId;
L
Liu Jicong 已提交
1120 1121
  pRspObj->resIter = -1;
  memcpy(&pRspObj->rsp, &pWrapper->msg, sizeof(SMqDataBlkRsp));
L
Liu Jicong 已提交
1122

L
Liu Jicong 已提交
1123 1124
  pRspObj->resInfo.totalRows = 0;
  pRspObj->resInfo.precision = TSDB_TIME_PRECISION_MILLI;
L
Liu Jicong 已提交
1125 1126 1127
  if (!pWrapper->msg.withSchema) {
    setResSchemaInfo(&pRspObj->resInfo, pWrapper->topicHandle->schema.pSchema, pWrapper->topicHandle->schema.nCols);
  }
L
Liu Jicong 已提交
1128

L
Liu Jicong 已提交
1129 1130
  taosFreeQitem(pWrapper);
  return pRspObj;
X
Xiaoyu Wang 已提交
1131 1132 1133
}

int32_t tmqPollImpl(tmq_t* tmq, int64_t blockingTime) {
L
fix  
Liu Jicong 已提交
1134
  /*printf("call poll\n");*/
X
Xiaoyu Wang 已提交
1135 1136 1137 1138 1139 1140
  for (int i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
    SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
    for (int j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
      SMqClientVg* pVg = taosArrayGet(pTopic->vgs, j);
      int32_t      vgStatus = atomic_val_compare_exchange_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE, TMQ_VG_STATUS__WAIT);
      if (vgStatus != TMQ_VG_STATUS__IDLE) {
L
Liu Jicong 已提交
1141
        int32_t vgSkipCnt = atomic_add_fetch_32(&pVg->vgSkipCnt, 1);
L
Liu Jicong 已提交
1142
        tscTrace("consumer %ld epoch %d skip vg %d skip cnt %d", tmq->consumerId, tmq->epoch, pVg->vgId, vgSkipCnt);
X
Xiaoyu Wang 已提交
1143
        continue;
L
Liu Jicong 已提交
1144
        /*if (vgSkipCnt < 10000) continue;*/
L
temp  
Liu Jicong 已提交
1145 1146 1147 1148 1149 1150 1151
#if 0
        if (skipCnt < 30000) {
          continue;
        } else {
        tscDebug("consumer %ld skip vg %d skip too much reset", tmq->consumerId, pVg->vgId);
        }
#endif
X
Xiaoyu Wang 已提交
1152
      }
L
Liu Jicong 已提交
1153
      atomic_store_32(&pVg->vgSkipCnt, 0);
L
Liu Jicong 已提交
1154
      SMqPollReqV2* pReq = tmqBuildConsumeReqImpl(tmq, blockingTime, pTopic, pVg);
X
Xiaoyu Wang 已提交
1155 1156
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
temp  
Liu Jicong 已提交
1157
        /*tsem_post(&tmq->rspSem);*/
X
Xiaoyu Wang 已提交
1158 1159
        return -1;
      }
wafwerar's avatar
wafwerar 已提交
1160
      SMqPollCbParam* pParam = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1161
      if (pParam == NULL) {
wafwerar's avatar
wafwerar 已提交
1162
        taosMemoryFree(pReq);
X
Xiaoyu Wang 已提交
1163
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
temp  
Liu Jicong 已提交
1164
        /*tsem_post(&tmq->rspSem);*/
X
Xiaoyu Wang 已提交
1165 1166
        return -1;
      }
L
Liu Jicong 已提交
1167 1168
      pParam->tmq = tmq;
      pParam->pVg = pVg;
L
Liu Jicong 已提交
1169
      pParam->pTopic = pTopic;
L
Liu Jicong 已提交
1170
      pParam->vgId = pVg->vgId;
L
Liu Jicong 已提交
1171 1172 1173
      pParam->epoch = tmq->epoch;
      pParam->sync = 0;

wafwerar's avatar
wafwerar 已提交
1174
      SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1175
      if (sendInfo == NULL) {
wafwerar's avatar
wafwerar 已提交
1176 1177
        taosMemoryFree(pReq);
        taosMemoryFree(pParam);
L
Liu Jicong 已提交
1178
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
temp  
Liu Jicong 已提交
1179
        /*tsem_post(&tmq->rspSem);*/
L
Liu Jicong 已提交
1180 1181 1182 1183
        return -1;
      }

      sendInfo->msgInfo = (SDataBuf){
X
Xiaoyu Wang 已提交
1184
          .pData = pReq,
L
Liu Jicong 已提交
1185
          .len = sizeof(SMqPollReqV2),
X
Xiaoyu Wang 已提交
1186 1187
          .handle = NULL,
      };
L
Liu Jicong 已提交
1188
      sendInfo->requestId = pReq->reqId;
X
Xiaoyu Wang 已提交
1189
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1190
      sendInfo->param = pParam;
X
Xiaoyu Wang 已提交
1191
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
1192
      sendInfo->msgType = TDMT_VND_CONSUME;
X
Xiaoyu Wang 已提交
1193 1194

      int64_t transporterId = 0;
L
fix  
Liu Jicong 已提交
1195
      /*printf("send poll\n");*/
L
Liu Jicong 已提交
1196 1197
      tscDebug("consumer %ld send poll to %s : vg %d, epoch %d, req offset %ld, reqId %lu", tmq->consumerId,
               pTopic->topicName, pVg->vgId, tmq->epoch, pVg->currentOffset, pReq->reqId);
L
fix  
Liu Jicong 已提交
1198
      /*printf("send vg %d %ld\n", pVg->vgId, pVg->currentOffset);*/
X
Xiaoyu Wang 已提交
1199 1200 1201 1202 1203 1204 1205 1206
      asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, sendInfo);
      pVg->pollCnt++;
      tmq->pollCnt++;
    }
  }
  return 0;
}

L
Liu Jicong 已提交
1207 1208
int32_t tmqHandleNoPollRsp(tmq_t* tmq, SMqRspWrapper* rspWrapper, bool* pReset) {
  if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__EP_RSP) {
L
fix  
Liu Jicong 已提交
1209
    /*printf("ep %d %d\n", rspMsg->head.epoch, tmq->epoch);*/
L
Liu Jicong 已提交
1210 1211 1212 1213
    if (rspWrapper->epoch > atomic_load_32(&tmq->epoch)) {
      SMqAskEpRspWrapper* pEpRspWrapper = (SMqAskEpRspWrapper*)rspWrapper;
      SMqCMGetSubEpRsp*   rspMsg = &pEpRspWrapper->msg;
      tmqUpdateEp(tmq, rspWrapper->epoch, rspMsg);
L
temp  
Liu Jicong 已提交
1214
      /*tmqClearUnhandleMsg(tmq);*/
X
Xiaoyu Wang 已提交
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
      *pReset = true;
    } else {
      *pReset = false;
    }
  } else {
    return -1;
  }
  return 0;
}

L
Liu Jicong 已提交
1225
SMqRspObj* tmqHandleAllRsp(tmq_t* tmq, int64_t blockingTime, bool pollIfReset) {
X
Xiaoyu Wang 已提交
1226
  while (1) {
L
Liu Jicong 已提交
1227 1228 1229
    SMqRspWrapper* rspWrapper = NULL;
    taosGetQitem(tmq->qall, (void**)&rspWrapper);
    if (rspWrapper == NULL) {
L
Liu Jicong 已提交
1230
      taosReadAllQitems(tmq->mqueue, tmq->qall);
L
Liu Jicong 已提交
1231 1232
      taosGetQitem(tmq->qall, (void**)&rspWrapper);
      if (rspWrapper == NULL) return NULL;
X
Xiaoyu Wang 已提交
1233 1234
    }

L
Liu Jicong 已提交
1235 1236
    if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__POLL_RSP) {
      SMqPollRspWrapper* pollRspWrapper = (SMqPollRspWrapper*)rspWrapper;
L
Liu Jicong 已提交
1237
      /*atomic_sub_fetch_32(&tmq->readyRequest, 1);*/
L
fix  
Liu Jicong 已提交
1238
      /*printf("handle poll rsp %d\n", rspMsg->head.mqMsgType);*/
L
Liu Jicong 已提交
1239
      if (pollRspWrapper->msg.head.epoch == atomic_load_32(&tmq->epoch)) {
L
fix  
Liu Jicong 已提交
1240
        /*printf("epoch match\n");*/
L
Liu Jicong 已提交
1241
        SMqClientVg* pVg = pollRspWrapper->vgHandle;
L
Liu Jicong 已提交
1242
        /*printf("vg %d offset %ld up to %ld\n", pVg->vgId, pVg->currentOffset, rspMsg->msg.rspOffset);*/
L
Liu Jicong 已提交
1243
        pVg->currentOffset = pollRspWrapper->msg.rspOffset;
X
Xiaoyu Wang 已提交
1244
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
Liu Jicong 已提交
1245
        if (pollRspWrapper->msg.blockNum == 0) {
L
Liu Jicong 已提交
1246 1247
          taosFreeQitem(pollRspWrapper);
          rspWrapper = NULL;
L
temp  
Liu Jicong 已提交
1248 1249
          continue;
        }
L
Liu Jicong 已提交
1250
        // build rsp
L
Liu Jicong 已提交
1251 1252
        SMqRspObj* pRsp = tmqBuildRspFromWrapper(pollRspWrapper);
        return pRsp;
X
Xiaoyu Wang 已提交
1253
      } else {
L
Liu Jicong 已提交
1254
        /*printf("epoch mismatch\n");*/
L
Liu Jicong 已提交
1255
        taosFreeQitem(pollRspWrapper);
X
Xiaoyu Wang 已提交
1256 1257
      }
    } else {
L
fix  
Liu Jicong 已提交
1258
      /*printf("handle ep rsp %d\n", rspMsg->head.mqMsgType);*/
X
Xiaoyu Wang 已提交
1259
      bool reset = false;
L
Liu Jicong 已提交
1260 1261
      tmqHandleNoPollRsp(tmq, rspWrapper, &reset);
      taosFreeQitem(rspWrapper);
X
Xiaoyu Wang 已提交
1262
      if (pollIfReset && reset) {
L
add log  
Liu Jicong 已提交
1263
        tscDebug("consumer %ld reset and repoll", tmq->consumerId);
X
Xiaoyu Wang 已提交
1264 1265 1266 1267 1268 1269
        tmqPollImpl(tmq, blockingTime);
      }
    }
  }
}

L
Liu Jicong 已提交
1270 1271 1272
TAOS_RES* tmq_consumer_poll(tmq_t* tmq, int64_t blocking_time) {
  SMqRspObj* rspObj;
  int64_t    startTime = taosGetTimestampMs();
L
Liu Jicong 已提交
1273

L
Liu Jicong 已提交
1274 1275 1276 1277
  // TODO: put into delayed queue
#if 0
  int8_t status = atomic_load_8(&tmq->status);
  while (0 != tmqAskEp(tmq, status != TMQ_CONSUMER_STATUS__READY)) {
L
Liu Jicong 已提交
1278 1279 1280
    tscDebug("not ready, retry\n");
    taosSsleep(1);
  }
L
Liu Jicong 已提交
1281
#endif
L
Liu Jicong 已提交
1282

L
Liu Jicong 已提交
1283 1284 1285
  rspObj = tmqHandleAllRsp(tmq, blocking_time, false);
  if (rspObj) {
    return (TAOS_RES*)rspObj;
L
fix  
Liu Jicong 已提交
1286
  }
X
Xiaoyu Wang 已提交
1287 1288

  while (1) {
L
Liu Jicong 已提交
1289
    tmqHandleAllDelayedTask(tmq);
L
Liu Jicong 已提交
1290
    tmqPollImpl(tmq, blocking_time);
L
Liu Jicong 已提交
1291

L
temp  
Liu Jicong 已提交
1292
    /*tsem_wait(&tmq->rspSem);*/
L
Liu Jicong 已提交
1293

L
Liu Jicong 已提交
1294 1295 1296
    rspObj = tmqHandleAllRsp(tmq, blocking_time, false);
    if (rspObj) {
      return (TAOS_RES*)rspObj;
X
Xiaoyu Wang 已提交
1297 1298 1299 1300
    }
    if (blocking_time != 0) {
      int64_t endTime = taosGetTimestampMs();
      if (endTime - startTime > blocking_time) {
L
Liu Jicong 已提交
1301
        tscDebug("consumer %ld (epoch %d) timeout, no rsp", tmq->consumerId, tmq->epoch);
X
Xiaoyu Wang 已提交
1302 1303 1304 1305 1306 1307
        return NULL;
      }
    }
  }
}

L
Liu Jicong 已提交
1308 1309 1310
tmq_resp_err_t tmq_consumer_close(tmq_t* tmq) {
  // TODO
  return TMQ_RESP_ERR__SUCCESS;
1311
}
L
Liu Jicong 已提交
1312 1313 1314 1315 1316 1317 1318

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

L
Liu Jicong 已提交
1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336
char* tmq_get_topic_name(TAOS_RES* res) {
  if (TD_RES_TMQ(res)) {
    SMqRspObj* pRspObj = (SMqRspObj*)res;
    return pRspObj->topic;
  } else {
    return NULL;
  }
}

int32_t tmq_get_vgroup_id(TAOS_RES* res) {
  if (TD_RES_TMQ(res)) {
    SMqRspObj* pRspObj = (SMqRspObj*)res;
    return pRspObj->vgId;
  } else {
    return -1;
  }
}