tmq.c 41.9 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
struct tmq_list_t {
L
Liu Jicong 已提交
30
  SArray container;
L
Liu Jicong 已提交
31
};
L
Liu Jicong 已提交
32

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

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

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

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

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

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

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

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

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

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

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

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

140
tmq_conf_t* tmq_conf_new() {
wafwerar's avatar
wafwerar 已提交
141
  tmq_conf_t* conf = taosMemoryCalloc(1, sizeof(tmq_conf_t));
L
Liu Jicong 已提交
142
  conf->autoCommit = false;
X
Xiaoyu Wang 已提交
143
  conf->resetOffset = TMQ_CONF__RESET_OFFSET__EARLIEAST;
144 145 146
  return conf;
}

L
Liu Jicong 已提交
147
void tmq_conf_destroy(tmq_conf_t* conf) {
wafwerar's avatar
wafwerar 已提交
148
  if (conf) taosMemoryFree(conf);
L
Liu Jicong 已提交
149 150 151
}

tmq_conf_res_t tmq_conf_set(tmq_conf_t* conf, const char* key, const char* value) {
152 153
  if (strcmp(key, "group.id") == 0) {
    strcpy(conf->groupId, value);
L
Liu Jicong 已提交
154
    return TMQ_CONF_OK;
155
  }
L
Liu Jicong 已提交
156

157 158
  if (strcmp(key, "client.id") == 0) {
    strcpy(conf->clientId, value);
L
Liu Jicong 已提交
159 160
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
161

L
Liu Jicong 已提交
162 163
  if (strcmp(key, "enable.auto.commit") == 0) {
    if (strcmp(value, "true") == 0) {
L
Liu Jicong 已提交
164
      conf->autoCommit = true;
L
Liu Jicong 已提交
165 166
      return TMQ_CONF_OK;
    } else if (strcmp(value, "false") == 0) {
L
Liu Jicong 已提交
167
      conf->autoCommit = false;
L
Liu Jicong 已提交
168 169 170 171
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
172
  }
L
Liu Jicong 已提交
173

L
Liu Jicong 已提交
174 175 176 177 178 179 180 181 182 183 184 185 186 187
  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 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209

  if (strcmp(key, "connection.ip") == 0) {
    conf->ip = strdup(value);
    return TMQ_CONF_OK;
  }
  if (strcmp(key, "connection.user") == 0) {
    conf->user = strdup(value);
    return TMQ_CONF_OK;
  }
  if (strcmp(key, "connection.pass") == 0) {
    conf->pass = strdup(value);
    return TMQ_CONF_OK;
  }
  if (strcmp(key, "connection.port") == 0) {
    conf->port = atoi(value);
    return TMQ_CONF_OK;
  }
  if (strcmp(key, "connection.db") == 0) {
    conf->db = strdup(value);
    return TMQ_CONF_OK;
  }

L
Liu Jicong 已提交
210
  return TMQ_CONF_UNKNOWN;
211 212 213
}

tmq_list_t* tmq_list_new() {
L
Liu Jicong 已提交
214 215
  //
  return (tmq_list_t*)taosArrayInit(0, sizeof(void*));
216 217
}

L
Liu Jicong 已提交
218 219 220
int32_t tmq_list_append(tmq_list_t* list, const char* src) {
  SArray* container = &list->container;
  char*   topic = strdup(src);
L
fix  
Liu Jicong 已提交
221
  if (taosArrayPush(container, &topic) == NULL) return -1;
222 223 224
  return 0;
}

L
Liu Jicong 已提交
225 226
void tmq_list_destroy(tmq_list_t* list) {
  SArray* container = (SArray*)list;
L
fix  
Liu Jicong 已提交
227 228
  /*taosArrayDestroy(container);*/
  taosArrayDestroyEx(container, (void (*)(void*))taosMemoryFree);
L
Liu Jicong 已提交
229 230
}

L
Liu Jicong 已提交
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
void tmqClearUnhandleMsg(tmq_t* tmq) {
  tmq_message_t* msg;
  while (1) {
    taosGetQitem(tmq->qall, (void**)&msg);
    if (msg)
      taosFreeQitem(msg);
    else
      break;
  }

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

L
Liu Jicong 已提交
251 252 253 254 255 256
int32_t tmqSubscribeCb(void* param, const SDataBuf* pMsg, int32_t code) {
  SMqSubscribeCbParam* pParam = (SMqSubscribeCbParam*)param;
  pParam->rspErr = code;
  tsem_post(&pParam->rspSem);
  return 0;
}
257

L
Liu Jicong 已提交
258
int32_t tmqCommitCb(void* param, const SDataBuf* pMsg, int32_t code) {
L
Liu Jicong 已提交
259
  SMqCommitCbParam* pParam = (SMqCommitCbParam*)param;
L
Liu Jicong 已提交
260
  pParam->rspErr = code == 0 ? TMQ_RESP_ERR__SUCCESS : TMQ_RESP_ERR__FAIL;
L
Liu Jicong 已提交
261
  if (pParam->tmq->commit_cb) {
L
Liu Jicong 已提交
262
    pParam->tmq->commit_cb(pParam->tmq, pParam->rspErr, NULL, NULL);
L
Liu Jicong 已提交
263
  }
L
fix  
Liu Jicong 已提交
264
  if (!pParam->async) tsem_post(&pParam->rspSem);
L
Liu Jicong 已提交
265 266 267
  return 0;
}

X
Xiaoyu Wang 已提交
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
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);
}

284
tmq_t* tmq_consumer_new(void* conn, tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
wafwerar's avatar
wafwerar 已提交
285
  tmq_t* pTmq = taosMemoryCalloc(sizeof(tmq_t), 1);
286 287 288 289
  if (pTmq == NULL) {
    return NULL;
  }
  pTmq->pTscObj = (STscObj*)conn;
L
Liu Jicong 已提交
290
  pTmq->inWaiting = 0;
291 292
  pTmq->status = 0;
  pTmq->pollCnt = 0;
L
Liu Jicong 已提交
293
  pTmq->epoch = 0;
L
fix  
Liu Jicong 已提交
294
  pTmq->waitingRequest = 0;
L
Liu Jicong 已提交
295
  pTmq->readyRequest = 0;
L
Liu Jicong 已提交
296
  // set conf
297 298
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
L
Liu Jicong 已提交
299
  pTmq->autoCommit = conf->autoCommit;
300
  pTmq->commit_cb = conf->commit_cb;
L
Liu Jicong 已提交
301
  pTmq->resetOffsetCfg = conf->resetOffset;
L
Liu Jicong 已提交
302

L
Liu Jicong 已提交
303 304 305 306 307 308 309 310 311 312
  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 已提交
313 314
  tsem_init(&pTmq->rspSem, 0, 0);

L
Liu Jicong 已提交
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
  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 已提交
338
  pTmq->consumerId = generateRequestId() & (((uint64_t)-1) >> 1);
339
  pTmq->clientTopics = taosArrayInit(0, sizeof(SMqClientTopic));
L
Liu Jicong 已提交
340 341 342 343
  if (pTmq->clientTopics == NULL) {
    taosMemoryFree(pTmq);
    return NULL;
  }
X
Xiaoyu Wang 已提交
344 345 346

  pTmq->mqueue = taosOpenQueue();
  pTmq->qall = taosAllocateQall();
L
Liu Jicong 已提交
347 348 349

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

350 351 352
  return pTmq;
}

L
Liu Jicong 已提交
353 354 355 356
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 已提交
357 358
  // build msg
  // send to mnode
L
Liu Jicong 已提交
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
  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 已提交
382 383 384 385

  SCoder encoder;

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, NULL, 0, TD_ENCODER);
L
Liu Jicong 已提交
386
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
387
  int32_t tlen = encoder.pos;
wafwerar's avatar
wafwerar 已提交
388
  void*   buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
389 390 391 392 393 394 395
  if (buf == NULL) {
    tCoderClear(&encoder);
    return -1;
  }
  tCoderClear(&encoder);

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, buf, tlen, TD_ENCODER);
L
Liu Jicong 已提交
396
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
397 398
  tCoderClear(&encoder);

L
Liu Jicong 已提交
399
  pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_MND_MQ_COMMIT_OFFSET);
L
Liu Jicong 已提交
400 401 402 403
  if (pRequest == NULL) {
    tscError("failed to malloc request");
  }

wafwerar's avatar
wafwerar 已提交
404
  SMqCommitCbParam* pParam = taosMemoryMalloc(sizeof(SMqCommitCbParam));
L
Liu Jicong 已提交
405 406 407 408 409
  if (pParam == NULL) {
    return -1;
  }
  pParam->tmq = tmq;
  tsem_init(&pParam->rspSem, 0, 0);
L
fix  
Liu Jicong 已提交
410
  pParam->async = async;
L
Liu Jicong 已提交
411

X
Xiaoyu Wang 已提交
412 413 414 415 416
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
L
Liu Jicong 已提交
417 418

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
419 420
  sendInfo->param = pParam;
  sendInfo->fp = tmqCommitCb;
L
Liu Jicong 已提交
421 422 423 424 425
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
426 427 428 429
  if (!async) {
    tsem_wait(&pParam->rspSem);
    resp = pParam->rspErr;
  }
L
Liu Jicong 已提交
430

L
fix  
Liu Jicong 已提交
431
  tsem_destroy(&pParam->rspSem);
wafwerar's avatar
wafwerar 已提交
432
  taosMemoryFree(pParam);
L
fix  
Liu Jicong 已提交
433

L
Liu Jicong 已提交
434 435 436 437 438
  if (pArray) {
    taosArrayDestroy(pArray);
  }

  return resp;
L
Liu Jicong 已提交
439 440
}

L
Liu Jicong 已提交
441
tmq_resp_err_t tmq_subscribe(tmq_t* tmq, tmq_list_t* topic_list) {
L
Liu Jicong 已提交
442
  SRequestObj* pRequest = NULL;
L
Liu Jicong 已提交
443 444
  SArray*      container = &topic_list->container;
  int32_t      sz = taosArrayGetSize(container);
L
Liu Jicong 已提交
445
  // destroy ex
446 447 448 449 450 451 452 453 454 455
  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 已提交
456 457
    /*char* topicName = topic_list->elems[i];*/
    char* topicName = taosArrayGetP(container, i);
458 459 460

    SName name = {0};
    char* dbName = getDbOfConnection(tmq->pTscObj);
L
Liu Jicong 已提交
461 462 463
    if (dbName == NULL) {
      return TMQ_RESP_ERR__FAIL;
    }
L
Liu Jicong 已提交
464
    tNameSetDbName(&name, tmq->pTscObj->acctId, dbName, strlen(dbName));
465 466
    tNameFromString(&name, topicName, T_NAME_TABLE);

wafwerar's avatar
wafwerar 已提交
467
    char* topicFname = taosMemoryCalloc(1, TSDB_TOPIC_FNAME_LEN);
468
    if (topicFname == NULL) {
L
Liu Jicong 已提交
469
      goto _return;
470 471 472 473
    }
    tNameExtractFullName(&name, topicFname);
    tscDebug("subscribe topic: %s", topicFname);
    SMqClientTopic topic = {
L
Liu Jicong 已提交
474
        .nextVgIdx = 0, .sql = NULL, .sqlLen = 0, .topicId = 0, .topicName = topicFname, .vgs = NULL};
475
    topic.vgs = taosArrayInit(0, sizeof(SMqClientVg));
L
Liu Jicong 已提交
476
    taosArrayPush(tmq->clientTopics, &topic);
477
    taosArrayPush(req.topicNames, &topicFname);
wafwerar's avatar
wafwerar 已提交
478
    taosMemoryFree(dbName);
479 480
  }

L
Liu Jicong 已提交
481
  int   tlen = tSerializeSCMSubscribeReq(NULL, &req);
wafwerar's avatar
wafwerar 已提交
482
  void* buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
483
  if (buf == NULL) {
484 485 486 487 488 489 490 491 492
    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 已提交
493
    tscError("failed to malloc request");
494 495
  }

X
Xiaoyu Wang 已提交
496 497 498 499
  SMqSubscribeCbParam param = {
      .rspErr = TMQ_RESP_ERR__SUCCESS,
      .tmq = tmq,
  };
L
Liu Jicong 已提交
500 501
  tsem_init(&param.rspSem, 0, 0);

X
Xiaoyu Wang 已提交
502 503 504 505 506
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
507 508

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

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

L
Liu Jicong 已提交
516 517
  tsem_wait(&param.rspSem);
  tsem_destroy(&param.rspSem);
518 519 520

_return:
  /*if (sendInfo != NULL) {*/
L
Liu Jicong 已提交
521
  /*destroySendMsgInfo(sendInfo);*/
522 523
  /*}*/

L
Liu Jicong 已提交
524
  return param.rspErr;
525 526
}

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

L
Liu Jicong 已提交
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
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 已提交
544 545
  if (strlen(tbName) >= TSDB_TABLE_NAME_LEN) {
    tscError("output tb name too long, max length:%d", TSDB_TABLE_NAME_LEN - 1);
L
Liu Jicong 已提交
546 547 548 549 550 551 552 553 554 555 556 557
    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 已提交
558
  int32_t code = 0;
L
Liu Jicong 已提交
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
  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 已提交
578
  strcpy(req.outputSTbName, tbName);
L
Liu Jicong 已提交
579 580

  int   tlen = tSerializeSCMCreateStreamReq(NULL, 0, &req);
wafwerar's avatar
wafwerar 已提交
581
  void* buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
  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 已提交
605
  taosMemoryFreeClear(astStr);
L
Liu Jicong 已提交
606 607 608 609 610 611 612 613 614 615 616 617
  qDestroyQuery(pQueryNode);
  /*if (sendInfo != NULL) {*/
  /*destroySendMsgInfo(sendInfo);*/
  /*}*/

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

  return pRequest;
}

L
Liu Jicong 已提交
618 619 620
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 已提交
621
  SQuery*      pQueryNode = NULL;
L
Liu Jicong 已提交
622
  char*        astStr = NULL;
623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642

  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 已提交
643
  tscDebug("start to create topic: %s", topicName);
644

X
Xiaoyu Wang 已提交
645
  int32_t code = TSDB_CODE_SUCCESS;
X
Xiaoyu Wang 已提交
646 647
  CHECK_CODE_GOTO(buildRequest(pTscObj, sql, sqlLen, &pRequest), _return);
  CHECK_CODE_GOTO(parseSql(pRequest, true, &pQueryNode), _return);
648 649 650

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

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

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

L
Liu Jicong 已提交
655
  SName name = {.acctId = pTscObj->acctId, .type = TSDB_TABLE_NAME_T};
X
Xiaoyu Wang 已提交
656 657
  strcpy(name.dbname, pRequest->pDb);
  strcpy(name.tname, topicName);
658

L
Liu Jicong 已提交
659
  SCMCreateTopicReq req = {
L
Liu Jicong 已提交
660
      .igExists = 1,
L
Liu Jicong 已提交
661
      .ast = astStr,
L
Liu Jicong 已提交
662
      .sql = (char*)sql,
663
  };
L
Liu Jicong 已提交
664
  tNameExtractFullName(&name, req.name);
665

L
Liu Jicong 已提交
666
  int   tlen = tSerializeSCMCreateTopicReq(NULL, 0, &req);
wafwerar's avatar
wafwerar 已提交
667
  void* buf = taosMemoryMalloc(tlen);
668 669 670 671
  if (buf == NULL) {
    goto _return;
  }

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

L
Liu Jicong 已提交
675 676 677 678 679
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
680 681 682
  pRequest->type = TDMT_MND_CREATE_TOPIC;

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
683
  SEpSet        epSet = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);
684 685 686 687 688

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

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

690
_return:
wafwerar's avatar
wafwerar 已提交
691
  taosMemoryFreeClear(astStr);
692 693
  qDestroyQuery(pQueryNode);
  /*if (sendInfo != NULL) {*/
L
Liu Jicong 已提交
694
  /*destroySendMsgInfo(sendInfo);*/
695 696 697 698 699 700 701 702 703
  /*}*/

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

  return pRequest;
}

L
Liu Jicong 已提交
704
static char* formatTimestamp(char* buf, int64_t val, int precision) {
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
  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 已提交
740
  struct tm* ptm = localtime(&tt);
741 742 743 744 745 746 747 748 749 750 751 752 753
  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 已提交
754 755
int32_t tmqGetSkipLogNum(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return 0;
L
Liu Jicong 已提交
756
  SMqPollRsp* pRsp = &tmq_message->msg;
L
Liu Jicong 已提交
757 758 759
  return pRsp->skipLogNum;
}

L
Liu Jicong 已提交
760 761 762
void tmqShowMsg(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;

L
Liu Jicong 已提交
763 764
  static bool noPrintSchema;
  char        pBuf[128];
L
Liu Jicong 已提交
765 766
  SMqPollRsp* pRsp = &tmq_message->msg;
  int32_t     colNum = pRsp->schema->nCols;
L
Liu Jicong 已提交
767 768 769 770
  if (!noPrintSchema) {
    printf("|");
    for (int32_t i = 0; i < colNum; i++) {
      if (i == 0)
L
Liu Jicong 已提交
771
        printf(" %25s |", pRsp->schema->pSchema[i].name);
L
Liu Jicong 已提交
772
      else
L
Liu Jicong 已提交
773
        printf(" %15s |", pRsp->schema->pSchema[i].name);
L
Liu Jicong 已提交
774 775 776 777
    }
    printf("\n");
    printf("===============================================\n");
    noPrintSchema = true;
778
  }
L
Liu Jicong 已提交
779
  int32_t sz = taosArrayGetSize(pRsp->pBlockData);
780
  for (int32_t i = 0; i < sz; i++) {
L
Liu Jicong 已提交
781 782
    SSDataBlock* pDataBlock = taosArrayGet(pRsp->pBlockData, i);
    int32_t      rows = pDataBlock->info.rows;
783 784 785 786
    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 已提交
787 788
        void*            var = POINTER_SHIFT(pColInfoData->pData, j * pColInfoData->info.bytes);
        switch (pColInfoData->info.type) {
789 790 791 792 793 794 795 796 797 798 799 800 801
          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 已提交
802 803 804
}

int32_t tmqPollCb(void* param, const SDataBuf* pMsg, int32_t code) {
L
fix  
Liu Jicong 已提交
805
  /*printf("recv poll\n");*/
X
Xiaoyu Wang 已提交
806 807 808
  SMqPollCbParam* pParam = (SMqPollCbParam*)param;
  SMqClientVg*    pVg = pParam->pVg;
  tmq_t*          tmq = pParam->tmq;
L
Liu Jicong 已提交
809
  if (code != 0) {
L
Liu Jicong 已提交
810
    printf("msg discard %x\n", code);
L
Liu Jicong 已提交
811
    goto WRITE_QUEUE_FAIL;
L
Liu Jicong 已提交
812 813
  }

X
Xiaoyu Wang 已提交
814 815 816
  int32_t msgEpoch = ((SMqRspHead*)pMsg->pData)->epoch;
  int32_t tmqEpoch = atomic_load_32(&tmq->epoch);
  if (msgEpoch < tmqEpoch) {
L
Liu Jicong 已提交
817
    tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
818 819 820 821 822 823
    printf("discard rsp epoch %d, current epoch %d\n", msgEpoch, tmqEpoch);
    return 0;
  }

  if (msgEpoch != tmqEpoch) {
    printf("mismatch rsp epoch %d, current epoch %d\n", msgEpoch, tmqEpoch);
L
fix  
Liu Jicong 已提交
824 825
  } else {
    atomic_sub_fetch_32(&tmq->waitingRequest, 1);
X
Xiaoyu Wang 已提交
826 827
  }

L
Liu Jicong 已提交
828
#if 0
L
Liu Jicong 已提交
829
  if (pParam->sync == 1) {
wafwerar's avatar
wafwerar 已提交
830
    /**pParam->msg = taosMemoryMalloc(sizeof(tmq_message_t));*/
L
Liu Jicong 已提交
831 832 833 834 835 836 837 838 839 840 841 842 843 844
    *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 已提交
845
#endif
L
Liu Jicong 已提交
846

wafwerar's avatar
wafwerar 已提交
847
  /*SMqConsumeRsp* pRsp = taosMemoryCalloc(1, sizeof(SMqConsumeRsp));*/
X
Xiaoyu Wang 已提交
848
  tmq_message_t* pRsp = taosAllocateQitem(sizeof(tmq_message_t));
L
Liu Jicong 已提交
849
  if (pRsp == NULL) {
L
Liu Jicong 已提交
850
    goto WRITE_QUEUE_FAIL;
L
Liu Jicong 已提交
851
  }
X
Xiaoyu Wang 已提交
852
  memcpy(pRsp, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
853 854 855
  tDecodeSMqPollRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pRsp->msg);
  pRsp->iter.curBlock = 0;
  pRsp->iter.curRow = 0;
L
Liu Jicong 已提交
856 857
  // TODO: alloc mem
  /*pRsp->*/
858
  /*printf("rsp commit off:%ld rsp off:%ld has data:%d\n", pRsp->committedOffset, pRsp->rspOffset, pRsp->numOfTopics);*/
L
Liu Jicong 已提交
859
  if (pRsp->msg.numOfTopics == 0) {
L
fix  
Liu Jicong 已提交
860
    /*printf("no data\n");*/
X
Xiaoyu Wang 已提交
861
    taosFreeQitem(pRsp);
L
Liu Jicong 已提交
862
    goto WRITE_QUEUE_FAIL;
L
Liu Jicong 已提交
863
  }
L
Liu Jicong 已提交
864

L
Liu Jicong 已提交
865
  pRsp->vg = pParam->pVg;
X
Xiaoyu Wang 已提交
866
  taosWriteQitem(tmq->mqueue, pRsp);
L
Liu Jicong 已提交
867
  atomic_add_fetch_32(&tmq->readyRequest, 1);
L
Liu Jicong 已提交
868
  tsem_post(&tmq->rspSem);
869
  return 0;
L
Liu Jicong 已提交
870 871 872 873 874 875 876

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

X
Xiaoyu Wang 已提交
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
bool tmqUpdateEp(tmq_t* tmq, int32_t epoch, SMqCMGetSubEpRsp* pRsp) {
  bool    set = false;
  int32_t sz = taosArrayGetSize(pRsp->topics);
  if (tmq->clientTopics) taosArrayDestroy(tmq->clientTopics);
  tmq->clientTopics = taosArrayInit(sz, sizeof(SMqClientTopic));
  for (int32_t i = 0; i < sz; i++) {
    SMqClientTopic topic = {0};
    SMqSubTopicEp* pTopicEp = taosArrayGet(pRsp->topics, i);
    topic.topicName = strdup(pTopicEp->topic);
    int32_t vgSz = taosArrayGetSize(pTopicEp->vgs);
    topic.vgs = taosArrayInit(vgSz, sizeof(SMqClientVg));
    for (int32_t j = 0; j < vgSz; j++) {
      SMqSubVgEp* pVgEp = taosArrayGet(pTopicEp->vgs, j);
      SMqClientVg clientVg = {
          .pollCnt = 0,
          .currentOffset = pVgEp->offset,
          .vgId = pVgEp->vgId,
          .epSet = pVgEp->epSet,
          .vgStatus = TMQ_VG_STATUS__IDLE,
      };
      taosArrayPush(topic.vgs, &clientVg);
      set = true;
    }
    taosArrayPush(tmq->clientTopics, &topic);
  }
  atomic_store_32(&tmq->epoch, epoch);
  return set;
}

L
Liu Jicong 已提交
908
int32_t tmqAskEpCb(void* param, const SDataBuf* pMsg, int32_t code) {
909
  SMqAskEpCbParam* pParam = (SMqAskEpCbParam*)param;
L
Liu Jicong 已提交
910
  tmq_t*           tmq = pParam->tmq;
911
  if (code != 0) {
X
Xiaoyu Wang 已提交
912
    printf("get topic endpoint error, not ready, wait:%d\n", pParam->sync);
L
Liu Jicong 已提交
913
    goto END;
914
  }
L
Liu Jicong 已提交
915

L
Liu Jicong 已提交
916
  // tmq's epoch is monotonically increase,
L
Liu Jicong 已提交
917
  // so it's safe to discard any old epoch msg.
L
Liu Jicong 已提交
918
  // Epoch will only increase when received newer epoch ep msg
L
Liu Jicong 已提交
919 920 921 922
  SMqRspHead* head = pMsg->pData;
  int32_t     epoch = atomic_load_32(&tmq->epoch);
  if (head->epoch <= epoch) {
    goto END;
923
  }
L
Liu Jicong 已提交
924

X
Xiaoyu Wang 已提交
925 926 927 928 929
  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 已提交
930
    if (tmqUpdateEp(tmq, head->epoch, &rsp)) {
X
Xiaoyu Wang 已提交
931
      atomic_store_64(&tmq->status, TMQ_CONSUMER_STATUS__READY);
932
    }
X
Xiaoyu Wang 已提交
933 934
    tDeleteSMqCMGetSubEpRsp(&rsp);
  } else {
L
Liu Jicong 已提交
935
    SMqCMGetSubEpRsp* pRsp = taosAllocateQitem(sizeof(SMqCMGetSubEpRsp));
X
Xiaoyu Wang 已提交
936 937
    if (pRsp == NULL) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
938 939
      code = -1;
      goto END;
X
Xiaoyu Wang 已提交
940 941
    }
    memcpy(pRsp, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
942
    tDecodeSMqCMGetSubEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), pRsp);
L
Liu Jicong 已提交
943

X
Xiaoyu Wang 已提交
944
    taosWriteQitem(tmq->mqueue, pRsp);
L
Liu Jicong 已提交
945
    tsem_post(&tmq->rspSem);
946
  }
L
Liu Jicong 已提交
947 948 949 950 951 952

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

X
Xiaoyu Wang 已提交
955
int32_t tmqAskEp(tmq_t* tmq, bool sync) {
L
Liu Jicong 已提交
956
  int32_t           tlen = sizeof(SMqCMGetSubEpReq);
wafwerar's avatar
wafwerar 已提交
957
  SMqCMGetSubEpReq* req = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
958
  if (req == NULL) {
L
Liu Jicong 已提交
959
    tscError("failed to malloc get subscribe ep buf");
L
Liu Jicong 已提交
960
    return -1;
L
Liu Jicong 已提交
961
  }
L
Liu Jicong 已提交
962 963 964
  req->consumerId = htobe64(tmq->consumerId);
  req->epoch = htonl(tmq->epoch);
  strcpy(req->cgroup, tmq->groupId);
965

wafwerar's avatar
wafwerar 已提交
966
  SMqAskEpCbParam* pParam = taosMemoryMalloc(sizeof(SMqAskEpCbParam));
L
Liu Jicong 已提交
967 968
  if (pParam == NULL) {
    tscError("failed to malloc subscribe param");
wafwerar's avatar
wafwerar 已提交
969
    taosMemoryFree(req);
L
Liu Jicong 已提交
970
    return -1;
L
Liu Jicong 已提交
971 972
  }
  pParam->tmq = tmq;
X
Xiaoyu Wang 已提交
973 974
  pParam->sync = sync;
  tsem_init(&pParam->rspSem, 0, 0);
975

wafwerar's avatar
wafwerar 已提交
976
  SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
977 978
  if (sendInfo == NULL) {
    tsem_destroy(&pParam->rspSem);
wafwerar's avatar
wafwerar 已提交
979 980
    taosMemoryFree(pParam);
    taosMemoryFree(req);
L
Liu Jicong 已提交
981 982 983 984 985 986 987 988 989 990
    return -1;
  }

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

  sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
991 992 993
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqAskEpCb;
L
Liu Jicong 已提交
994
  sendInfo->msgType = TDMT_MND_GET_SUB_EP;
995

L
Liu Jicong 已提交
996 997 998 999
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

X
Xiaoyu Wang 已提交
1001
  if (sync) tsem_wait(&pParam->rspSem);
L
Liu Jicong 已提交
1002
  return 0;
1003 1004
}

L
Liu Jicong 已提交
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
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 已提交
1019
          tmqClearUnhandleMsg(tmq);
L
Liu Jicong 已提交
1020 1021 1022 1023 1024 1025 1026 1027
          return TMQ_RESP_ERR__SUCCESS;
        }
      }
    }
  }
  return TMQ_RESP_ERR__FAIL;
}

L
Liu Jicong 已提交
1028
SMqPollReq* tmqBuildConsumeReqImpl(tmq_t* tmq, int64_t blockingTime, SMqClientTopic* pTopic, SMqClientVg* pVg) {
L
Liu Jicong 已提交
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
  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 已提交
1040
  SMqPollReq* pReq = taosMemoryMalloc(sizeof(SMqPollReq));
1041 1042 1043
  if (pReq == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
1044

L
Liu Jicong 已提交
1045
  strcpy(pReq->topic, pTopic->topicName);
1046 1047
  strcpy(pReq->cgroup, tmq->groupId);

L
fix  
Liu Jicong 已提交
1048
  pReq->blockingTime = blockingTime;
L
Liu Jicong 已提交
1049
  pReq->consumerId = tmq->consumerId;
X
Xiaoyu Wang 已提交
1050
  pReq->epoch = tmq->epoch;
L
Liu Jicong 已提交
1051
  pReq->currentOffset = reqOffset;
1052 1053

  pReq->head.vgId = htonl(pVg->vgId);
L
Liu Jicong 已提交
1054
  pReq->head.contLen = htonl(sizeof(SMqPollReq));
1055 1056 1057
  return pReq;
}

L
Liu Jicong 已提交
1058
#if 0
L
Liu Jicong 已提交
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
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 已提交
1069
      SMqPollReq* pReq = tmqBuildConsumeReqImpl(tmq, blockingTime, pTopic, pVg);
L
Liu Jicong 已提交
1070 1071 1072 1073 1074
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // TODO: out of mem
        return NULL;
      }
X
Xiaoyu Wang 已提交
1075

wafwerar's avatar
wafwerar 已提交
1076
      SMqPollCbParam* pParam = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1077
      if (pParam == NULL) {
L
Liu Jicong 已提交
1078 1079 1080 1081
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // TODO: out of mem
        return NULL;
      }
L
Liu Jicong 已提交
1082 1083 1084 1085 1086 1087 1088
      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 已提交
1089
      SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1090 1091 1092 1093 1094
      if (sendInfo == NULL) {
        return NULL;
      }

      sendInfo->msgInfo = (SDataBuf){
L
Liu Jicong 已提交
1095
          .pData = pReq,
L
Liu Jicong 已提交
1096
          .len = sizeof(SMqPollReq),
L
Liu Jicong 已提交
1097 1098
          .handle = NULL,
      };
L
Liu Jicong 已提交
1099
      sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
1100
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1101
      sendInfo->param = pParam;
L
Liu Jicong 已提交
1102
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
1103
      sendInfo->msgType = TDMT_VND_CONSUME;
L
Liu Jicong 已提交
1104 1105 1106 1107 1108 1109 1110 1111

      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 已提交
1112
      tsem_wait(&pParam->rspSem);
L
Liu Jicong 已提交
1113 1114 1115 1116
      tmq_message_t* nmsg = NULL;
      while (1) {
        taosReadQitem(tmq->mqueue, (void**)&nmsg);
        if (nmsg == NULL) continue;
L
Liu Jicong 已提交
1117 1118 1119
        while (nmsg->head.mqMsgType != TMQ_MSG_TYPE__POLL_RSP) {
          taosReadQitem(tmq->mqueue, (void**)&nmsg);
        }
L
Liu Jicong 已提交
1120 1121 1122
        return nmsg;
      }
    }
X
Xiaoyu Wang 已提交
1123
  }
L
Liu Jicong 已提交
1124
  return NULL;
X
Xiaoyu Wang 已提交
1125
}
L
Liu Jicong 已提交
1126
#endif
X
Xiaoyu Wang 已提交
1127 1128

int32_t tmqPollImpl(tmq_t* tmq, int64_t blockingTime) {
L
fix  
Liu Jicong 已提交
1129
  /*printf("call poll\n");*/
X
Xiaoyu Wang 已提交
1130 1131 1132 1133 1134 1135 1136 1137
  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 已提交
1138
      SMqPollReq* pReq = tmqBuildConsumeReqImpl(tmq, blockingTime, pTopic, pVg);
X
Xiaoyu Wang 已提交
1139 1140
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
Liu Jicong 已提交
1141
        tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
1142 1143
        return -1;
      }
wafwerar's avatar
wafwerar 已提交
1144
      SMqPollCbParam* pParam = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1145
      if (pParam == NULL) {
wafwerar's avatar
wafwerar 已提交
1146
        taosMemoryFree(pReq);
X
Xiaoyu Wang 已提交
1147
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
Liu Jicong 已提交
1148
        tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
1149 1150
        return -1;
      }
L
Liu Jicong 已提交
1151 1152 1153 1154 1155
      pParam->tmq = tmq;
      pParam->pVg = pVg;
      pParam->epoch = tmq->epoch;
      pParam->sync = 0;

wafwerar's avatar
wafwerar 已提交
1156
      SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1157
      if (sendInfo == NULL) {
wafwerar's avatar
wafwerar 已提交
1158 1159
        taosMemoryFree(pReq);
        taosMemoryFree(pParam);
L
Liu Jicong 已提交
1160 1161 1162 1163 1164 1165
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        tsem_post(&tmq->rspSem);
        return -1;
      }

      sendInfo->msgInfo = (SDataBuf){
X
Xiaoyu Wang 已提交
1166
          .pData = pReq,
L
Liu Jicong 已提交
1167
          .len = sizeof(SMqPollReq),
X
Xiaoyu Wang 已提交
1168 1169
          .handle = NULL,
      };
L
Liu Jicong 已提交
1170
      sendInfo->requestId = generateRequestId();
X
Xiaoyu Wang 已提交
1171
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1172
      sendInfo->param = pParam;
X
Xiaoyu Wang 已提交
1173
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
1174
      sendInfo->msgType = TDMT_VND_CONSUME;
X
Xiaoyu Wang 已提交
1175 1176

      int64_t transporterId = 0;
L
fix  
Liu Jicong 已提交
1177 1178
      /*printf("send poll\n");*/
      atomic_add_fetch_32(&tmq->waitingRequest, 1);
X
Xiaoyu Wang 已提交
1179 1180 1181 1182 1183 1184 1185 1186 1187
      asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, sendInfo);
      pVg->pollCnt++;
      tmq->pollCnt++;
    }
  }
  return 0;
}

// return
L
Liu Jicong 已提交
1188 1189
int32_t tmqHandleRes(tmq_t* tmq, SMqRspHead* rspHead, bool* pReset) {
  if (rspHead->mqMsgType == TMQ_MSG_TYPE__EP_RSP) {
L
fix  
Liu Jicong 已提交
1190
    /*printf("ep %d %d\n", rspMsg->head.epoch, tmq->epoch);*/
L
Liu Jicong 已提交
1191 1192 1193
    if (rspHead->epoch > atomic_load_32(&tmq->epoch)) {
      SMqCMGetSubEpRsp* rspMsg = (SMqCMGetSubEpRsp*)rspHead;
      tmqUpdateEp(tmq, rspHead->epoch, rspMsg);
X
Xiaoyu Wang 已提交
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
      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 已提交
1207 1208 1209
    SMqRspHead* rspHead = NULL;
    taosGetQitem(tmq->qall, (void**)&rspHead);
    if (rspHead == NULL) {
L
Liu Jicong 已提交
1210
      taosReadAllQitems(tmq->mqueue, tmq->qall);
L
Liu Jicong 已提交
1211 1212
      taosGetQitem(tmq->qall, (void**)&rspHead);
      if (rspHead == NULL) return NULL;
X
Xiaoyu Wang 已提交
1213 1214
    }

L
Liu Jicong 已提交
1215 1216
    if (rspHead->mqMsgType == TMQ_MSG_TYPE__POLL_RSP) {
      tmq_message_t* rspMsg = (tmq_message_t*)rspHead;
L
Liu Jicong 已提交
1217
      atomic_sub_fetch_32(&tmq->readyRequest, 1);
L
fix  
Liu Jicong 已提交
1218
      /*printf("handle poll rsp %d\n", rspMsg->head.mqMsgType);*/
L
Liu Jicong 已提交
1219
      if (rspMsg->msg.head.epoch == atomic_load_32(&tmq->epoch)) {
L
fix  
Liu Jicong 已提交
1220
        /*printf("epoch match\n");*/
L
Liu Jicong 已提交
1221 1222
        SMqClientVg* pVg = rspMsg->vg;
        pVg->currentOffset = rspMsg->msg.rspOffset;
X
Xiaoyu Wang 已提交
1223 1224 1225
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        return rspMsg;
      } else {
L
Liu Jicong 已提交
1226
        /*printf("epoch mismatch\n");*/
X
Xiaoyu Wang 已提交
1227 1228 1229
        taosFreeQitem(rspMsg);
      }
    } else {
L
fix  
Liu Jicong 已提交
1230
      /*printf("handle ep rsp %d\n", rspMsg->head.mqMsgType);*/
X
Xiaoyu Wang 已提交
1231
      bool reset = false;
L
Liu Jicong 已提交
1232 1233
      tmqHandleRes(tmq, rspHead, &reset);
      taosFreeQitem(rspHead);
X
Xiaoyu Wang 已提交
1234 1235 1236 1237 1238 1239 1240 1241
      if (pollIfReset && reset) {
        printf("reset and repoll\n");
        tmqPollImpl(tmq, blockingTime);
      }
    }
  }
}

L
Liu Jicong 已提交
1242
#if 0
L
Liu Jicong 已提交
1243
tmq_message_t* tmq_consumer_poll_v1(tmq_t* tmq, int64_t blocking_time) {
X
Xiaoyu Wang 已提交
1244 1245
  tmq_message_t* rspMsg = NULL;
  int64_t        startTime = taosGetTimestampMs();
1246 1247

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

L
Liu Jicong 已提交
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
  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 已提交
1263
  }
L
Liu Jicong 已提交
1264
}
L
Liu Jicong 已提交
1265
#endif
X
Xiaoyu Wang 已提交
1266

L
Liu Jicong 已提交
1267 1268
tmq_message_t* tmq_consumer_poll(tmq_t* tmq, int64_t blocking_time) {
  tmq_message_t* rspMsg;
L
Liu Jicong 已提交
1269 1270
  int64_t        startTime = taosGetTimestampMs();

L
Liu Jicong 已提交
1271
  // TODO: put into another thread or delayed queue
1272
  int64_t status = atomic_load_64(&tmq->status);
L
Liu Jicong 已提交
1273 1274
  tmqAskEp(tmq, status == TMQ_CONSUMER_STATUS__INIT);

L
fix  
Liu Jicong 已提交
1275 1276 1277 1278
  rspMsg = tmqHandleAllRsp(tmq, blocking_time, false);
  if (rspMsg) {
    return rspMsg;
  }
X
Xiaoyu Wang 已提交
1279 1280 1281

  while (1) {
    /*printf("cycle\n");*/
L
Liu Jicong 已提交
1282
    tmqPollImpl(tmq, blocking_time);
L
Liu Jicong 已提交
1283 1284 1285 1286

    tsem_wait(&tmq->rspSem);

    rspMsg = tmqHandleAllRsp(tmq, blocking_time, false);
X
Xiaoyu Wang 已提交
1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
    if (rspMsg) {
      return rspMsg;
    }
    if (blocking_time != 0) {
      int64_t endTime = taosGetTimestampMs();
      if (endTime - startTime > blocking_time) {
        return NULL;
      }
    }
  }
}

#if 0
1300

L
Liu Jicong 已提交
1301
  if (blocking_time <= 0) blocking_time = 1;
L
Liu Jicong 已提交
1302 1303
  if (blocking_time > 1000) blocking_time = 1000;
  /*blocking_time = 1;*/
1304 1305 1306

  if (taosArrayGetSize(tmq->clientTopics) == 0) {
    tscDebug("consumer:%ld poll but not assigned", tmq->consumerId);
L
Liu Jicong 已提交
1307
    /*printf("over1\n");*/
wafwerar's avatar
wafwerar 已提交
1308
    taosMsleep(blocking_time);
1309 1310 1311 1312
    return NULL;
  }
  SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, tmq->nextTopicIdx);
  if (taosArrayGetSize(pTopic->vgs) == 0) {
L
Liu Jicong 已提交
1313
    /*printf("over2\n");*/
wafwerar's avatar
wafwerar 已提交
1314
    taosMsleep(blocking_time);
1315 1316 1317
    return NULL;
  }

L
Liu Jicong 已提交
1318
  tmq->nextTopicIdx = (tmq->nextTopicIdx + 1) % taosArrayGetSize(tmq->clientTopics);
L
Liu Jicong 已提交
1319
  int32_t beginVgIdx = pTopic->nextVgIdx;
L
Liu Jicong 已提交
1320
  while (1) {
L
Liu Jicong 已提交
1321 1322 1323
    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 已提交
1324
    SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, blocking_time, pTopic, pVg);
L
Liu Jicong 已提交
1325 1326
    if (pReq == NULL) {
      ASSERT(false);
wafwerar's avatar
wafwerar 已提交
1327
      taosMsleep(blocking_time);
L
Liu Jicong 已提交
1328 1329
      return NULL;
    }
1330

wafwerar's avatar
wafwerar 已提交
1331
    SMqPollCbParam* param = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1332 1333
    if (param == NULL) {
      ASSERT(false);
wafwerar's avatar
wafwerar 已提交
1334
      taosMsleep(blocking_time);
L
Liu Jicong 已提交
1335 1336 1337 1338 1339 1340 1341 1342
      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 已提交
1343 1344 1345 1346 1347
    pRequest->body.requestMsg = (SDataBuf){
        .pData = pReq,
        .len = sizeof(SMqConsumeReq),
        .handle = NULL,
    };
1348

L
Liu Jicong 已提交
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361
    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 已提交
1362
    taosMemoryFree(param);
L
Liu Jicong 已提交
1363 1364 1365

    if (tmq_message == NULL) {
      if (beginVgIdx == pTopic->nextVgIdx) {
wafwerar's avatar
wafwerar 已提交
1366
        taosMsleep(blocking_time);
L
Liu Jicong 已提交
1367 1368 1369 1370
      } else {
        continue;
      }
    }
L
Liu Jicong 已提交
1371

L
Liu Jicong 已提交
1372
    return tmq_message;
L
Liu Jicong 已提交
1373
  }
1374 1375 1376 1377

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

  /*if (body != NULL) {*/
L
Liu Jicong 已提交
1378
  /*destroySendMsgInfo(body);*/
1379 1380 1381
  /*}*/

  /*if (pRequest != NULL && terrno != TSDB_CODE_SUCCESS) {*/
L
Liu Jicong 已提交
1382
  /*pRequest->code = terrno;*/
1383 1384 1385 1386
  /*}*/

  /*return pRequest;*/
}
X
Xiaoyu Wang 已提交
1387
#endif
1388

L
Liu Jicong 已提交
1389
#if 0
L
Liu Jicong 已提交
1390
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 已提交
1391
  if (tmq_topic_vgroup_list != NULL) {
L
Liu Jicong 已提交
1392
    // TODO
L
Liu Jicong 已提交
1393 1394
  }

L
Liu Jicong 已提交
1395
  // TODO: change semaphore to gate
L
Liu Jicong 已提交
1396 1397 1398
  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 已提交
1399
      SMqClientVg*   pVg = taosArrayGet(pTopic->vgs, j);
L
Liu Jicong 已提交
1400
      SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, 0, pTopic, pVg);
L
Liu Jicong 已提交
1401

L
Liu Jicong 已提交
1402 1403
      SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_VND_CONSUME);
      pRequest->body.requestMsg = (SDataBuf){.pData = pReq, .len = sizeof(SMqConsumeReq)};
wafwerar's avatar
wafwerar 已提交
1404
      SMqCommitCbParam* pParam = taosMemoryMalloc(sizeof(SMqCommitCbParam));
L
Liu Jicong 已提交
1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424
      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 已提交
1425
  return 0;
1426
}
L
Liu Jicong 已提交
1427
#endif
1428 1429 1430

void tmq_message_destroy(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;
L
Liu Jicong 已提交
1431
  SMqPollRsp* pRsp = &tmq_message->msg;
L
Liu Jicong 已提交
1432
  tDeleteSMqConsumeRsp(pRsp);
wafwerar's avatar
wafwerar 已提交
1433
  /*taosMemoryFree(tmq_message);*/
X
Xiaoyu Wang 已提交
1434
  taosFreeQitem(tmq_message);
1435 1436
}

L
Liu Jicong 已提交
1437
tmq_resp_err_t tmq_consumer_close(tmq_t* tmq) { return TMQ_RESP_ERR__SUCCESS; }
L
Liu Jicong 已提交
1438 1439 1440 1441 1442 1443 1444

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

L
Liu Jicong 已提交
1446
TAOS_ROW tmq_get_row(tmq_message_t* message) {
L
Liu Jicong 已提交
1447
  SMqPollRsp* rsp = &message->msg;
L
Liu Jicong 已提交
1448
  while (1) {
L
Liu Jicong 已提交
1449 1450 1451
    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 已提交
1452 1453
        for (int i = 0; i < pBlock->info.numOfCols; i++) {
          SColumnInfoData* pData = taosArrayGet(pBlock->pDataBlock, i);
L
Liu Jicong 已提交
1454 1455
          if (colDataIsNull_s(pData, message->iter.curRow))
            message->iter.uData[i] = NULL;
L
Liu Jicong 已提交
1456
          else {
L
Liu Jicong 已提交
1457
            message->iter.uData[i] = colDataGetData(pData, message->iter.curRow);
L
Liu Jicong 已提交
1458 1459
          }
        }
L
Liu Jicong 已提交
1460 1461
        message->iter.curRow++;
        return message->iter.uData;
L
Liu Jicong 已提交
1462
      } else {
L
Liu Jicong 已提交
1463 1464
        message->iter.curBlock++;
        message->iter.curRow = 0;
L
Liu Jicong 已提交
1465 1466 1467 1468 1469 1470 1471 1472 1473
        continue;
      }
    }
    return NULL;
  }
}

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

L
Liu Jicong 已提交
1474 1475
#if 0
tmq_t* tmqCreateConsumerImpl(TAOS* conn, tmq_conf_t* conf) {
wafwerar's avatar
wafwerar 已提交
1476
  tmq_t* pTmq = taosMemoryMalloc(sizeof(tmq_t));
L
Liu Jicong 已提交
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
  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;
}


1488 1489
static void destroySendMsgInfo(SMsgSendInfo* pMsgBody) {
  assert(pMsgBody != NULL);
wafwerar's avatar
wafwerar 已提交
1490 1491
  taosMemoryFreeClear(pMsgBody->msgInfo.pData);
  taosMemoryFreeClear(pMsgBody);
1492
}
L
Liu Jicong 已提交
1493
#endif