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

L
Liu Jicong 已提交
16 17
#define _DEFAULT_SOURCE

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

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

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

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

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

struct tmq_t {
L
Liu Jicong 已提交
57
  // conf
L
Liu Jicong 已提交
58 59
  char           groupId[256];
  char           clientId[256];
L
Liu Jicong 已提交
60
  bool           autoCommit;
L
Liu Jicong 已提交
61 62
  SRWLatch       lock;
  int64_t        consumerId;
L
Liu Jicong 已提交
63
  int32_t        epoch;
L
Liu Jicong 已提交
64 65 66 67 68
  int64_t        status;
  tsem_t         rspSem;
  STscObj*       pTscObj;
  tmq_commit_cb* commit_cb;
  int32_t        nextTopicIdx;
L
Liu Jicong 已提交
69 70 71
  SArray*        clientTopics;  // SArray<SMqClientTopic>
  // stat
  int64_t pollCnt;
L
Liu Jicong 已提交
72 73 74 75 76 77
};

struct tmq_message_t {
  SMqConsumeRsp rsp;
};

78 79 80 81 82 83
typedef struct SMqClientVg {
  // statistics
  int64_t pollCnt;
  // offset
  int64_t committedOffset;
  int64_t currentOffset;
L
Liu Jicong 已提交
84
  // connection info
85 86 87 88 89 90 91 92 93 94 95
  int32_t vgId;
  SEpSet  epSet;
} SMqClientVg;

typedef struct SMqClientTopic {
  // subscribe info
  int32_t sqlLen;
  char*   sql;
  char*   topicName;
  int64_t topicId;
  int32_t nextVgIdx;
L
Liu Jicong 已提交
96
  SArray* vgs;  // SArray<SMqClientVg>
97 98
} SMqClientTopic;

L
Liu Jicong 已提交
99
typedef struct {
L
Liu Jicong 已提交
100 101 102 103
  tmq_t*         tmq;
  tsem_t         rspSem;
  tmq_resp_err_t rspErr;
} SMqSubscribeCbParam;
L
Liu Jicong 已提交
104

L
Liu Jicong 已提交
105
typedef struct {
106 107 108 109
  tmq_t*  tmq;
  int32_t wait;
} SMqAskEpCbParam;

L
Liu Jicong 已提交
110
typedef struct {
111 112 113
  tmq_t*          tmq;
  SMqClientVg*    pVg;
  tmq_message_t** retMsg;
L
Liu Jicong 已提交
114
  tsem_t          rspSem;
115 116
} SMqConsumeCbParam;

L
Liu Jicong 已提交
117
typedef struct {
L
Liu Jicong 已提交
118 119 120 121
  tmq_t*       tmq;
  SMqClientVg* pVg;
  int32_t      async;
  tsem_t       rspSem;
L
Liu Jicong 已提交
122
} SMqCommitCbParam;
123

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

130 131
tmq_conf_t* tmq_conf_new() {
  tmq_conf_t* conf = calloc(1, sizeof(tmq_conf_t));
L
Liu Jicong 已提交
132
  conf->auto_commit = false;
133 134 135
  return conf;
}

L
Liu Jicong 已提交
136
void tmq_conf_destroy(tmq_conf_t* conf) {
L
Liu Jicong 已提交
137
  if (conf) free(conf);
L
Liu Jicong 已提交
138 139 140
}

tmq_conf_res_t tmq_conf_set(tmq_conf_t* conf, const char* key, const char* value) {
141 142
  if (strcmp(key, "group.id") == 0) {
    strcpy(conf->groupId, value);
L
Liu Jicong 已提交
143
    return TMQ_CONF_OK;
144 145 146
  }
  if (strcmp(key, "client.id") == 0) {
    strcpy(conf->clientId, value);
L
Liu Jicong 已提交
147 148 149 150 151 152 153 154 155 156 157 158
    return TMQ_CONF_OK;
  }
  if (strcmp(key, "enable.auto.commit") == 0) {
    if (strcmp(value, "true") == 0) {
      conf->auto_commit = true;
      return TMQ_CONF_OK;
    } else if (strcmp(value, "false") == 0) {
      conf->auto_commit = false;
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
159
  }
L
Liu Jicong 已提交
160
  return TMQ_CONF_UNKNOWN;
161 162 163
}

tmq_list_t* tmq_list_new() {
L
Liu Jicong 已提交
164
  tmq_list_t* ptr = malloc(sizeof(tmq_list_t) + 8 * sizeof(char*));
165 166 167 168 169 170 171 172
  if (ptr == NULL) {
    return ptr;
  }
  ptr->cnt = 0;
  ptr->tot = 8;
  return ptr;
}

L
Liu Jicong 已提交
173
int32_t tmq_list_append(tmq_list_t* ptr, const char* src) {
L
Liu Jicong 已提交
174
  if (ptr->cnt >= ptr->tot - 1) return -1;
175 176 177 178 179
  ptr->elems[ptr->cnt] = strdup(src);
  ptr->cnt++;
  return 0;
}

L
Liu Jicong 已提交
180 181 182 183 184 185
int32_t tmqSubscribeCb(void* param, const SDataBuf* pMsg, int32_t code) {
  SMqSubscribeCbParam* pParam = (SMqSubscribeCbParam*)param;
  pParam->rspErr = code;
  tsem_post(&pParam->rspSem);
  return 0;
}
186

L
Liu Jicong 已提交
187
int32_t tmqCommitCb(void* param, const SDataBuf* pMsg, int32_t code) {
L
Liu Jicong 已提交
188 189
  SMqCommitCbParam* pParam = (SMqCommitCbParam*)param;
  tmq_resp_err_t    rspErr = code == 0 ? TMQ_RESP_ERR__SUCCESS : TMQ_RESP_ERR__FAIL;
L
Liu Jicong 已提交
190 191 192 193 194 195 196
  if (pParam->tmq->commit_cb) {
    pParam->tmq->commit_cb(pParam->tmq, rspErr, NULL, NULL);
  }
  if (!pParam->async) tsem_post(&pParam->rspSem);
  return 0;
}

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

204 205 206 207 208 209 210 211
tmq_t* tmq_consumer_new(void* conn, tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
  tmq_t* pTmq = calloc(sizeof(tmq_t), 1);
  if (pTmq == NULL) {
    return NULL;
  }
  pTmq->pTscObj = (STscObj*)conn;
  pTmq->status = 0;
  pTmq->pollCnt = 0;
L
Liu Jicong 已提交
212
  pTmq->epoch = 0;
213
  taosInitRWLatch(&pTmq->lock);
L
Liu Jicong 已提交
214
  // set conf
215 216
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
L
Liu Jicong 已提交
217
  pTmq->autoCommit = conf->auto_commit;
218
  pTmq->commit_cb = conf->commit_cb;
L
Liu Jicong 已提交
219

220
  tsem_init(&pTmq->rspSem, 0, 0);
L
Liu Jicong 已提交
221
  pTmq->consumerId = generateRequestId() & (((uint64_t)-1) >> 1);
222 223 224 225
  pTmq->clientTopics = taosArrayInit(0, sizeof(SMqClientTopic));
  return pTmq;
}

L
Liu Jicong 已提交
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
tmq_resp_err_t tmq_reset_offset(tmq_t* tmq, const tmq_topic_vgroup_list_t* offsets) {
  SRequestObj* pRequest = NULL;
  // build msg
  // send to mnode
  SMqCMResetOffsetReq req;
  req.num = offsets->cnt;
  req.offsets = (SMqOffset*)offsets->elems;

  SCoder encoder;

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, NULL, 0, TD_ENCODER);
  tEncodeSMqCMResetOffsetReq(&encoder, &req);
  int32_t tlen = encoder.pos;
  void*   buf = malloc(tlen);
  if (buf == NULL) {
    tCoderClear(&encoder);
    return -1;
  }
  tCoderClear(&encoder);

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, buf, tlen, TD_ENCODER);
  tEncodeSMqCMResetOffsetReq(&encoder, &req);
  tCoderClear(&encoder);

  pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_MND_RESET_OFFSET);
  if (pRequest == NULL) {
    tscError("failed to malloc request");
  }

  SMqResetOffsetParam param = {0};
  tsem_init(&param.rspSem, 0, 0);
  param.tmq = tmq;

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

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

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

  tsem_wait(&param.rspSem);
  tsem_destroy(&param.rspSem);

L
Liu Jicong 已提交
272
  return param.rspErr;
L
Liu Jicong 已提交
273 274
}

L
Liu Jicong 已提交
275
tmq_resp_err_t tmq_subscribe(tmq_t* tmq, tmq_list_t* topic_list) {
L
Liu Jicong 已提交
276 277 278
  SRequestObj* pRequest = NULL;
  int32_t      sz = topic_list->cnt;
  // destroy ex
279 280 281 282 283 284 285 286 287 288 289 290 291 292
  taosArrayDestroy(tmq->clientTopics);
  tmq->clientTopics = taosArrayInit(sz, sizeof(SMqClientTopic));

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

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

    SName name = {0};
    char* dbName = getDbOfConnection(tmq->pTscObj);
L
Liu Jicong 已提交
293 294 295
    if (dbName == NULL) {
      return TMQ_RESP_ERR__FAIL;
    }
L
Liu Jicong 已提交
296
    tNameSetDbName(&name, tmq->pTscObj->acctId, dbName, strlen(dbName));
297 298 299 300
    tNameFromString(&name, topicName, T_NAME_TABLE);

    char* topicFname = calloc(1, TSDB_TOPIC_FNAME_LEN);
    if (topicFname == NULL) {
L
Liu Jicong 已提交
301
      goto _return;
302 303 304 305
    }
    tNameExtractFullName(&name, topicFname);
    tscDebug("subscribe topic: %s", topicFname);
    SMqClientTopic topic = {
L
Liu Jicong 已提交
306
        .nextVgIdx = 0, .sql = NULL, .sqlLen = 0, .topicId = 0, .topicName = topicFname, .vgs = NULL};
307
    topic.vgs = taosArrayInit(0, sizeof(SMqClientVg));
L
Liu Jicong 已提交
308
    taosArrayPush(tmq->clientTopics, &topic);
309
    taosArrayPush(req.topicNames, &topicFname);
L
Liu Jicong 已提交
310
    free(dbName);
311 312
  }

L
Liu Jicong 已提交
313
  int   tlen = tSerializeSCMSubscribeReq(NULL, &req);
314
  void* buf = malloc(tlen);
L
Liu Jicong 已提交
315
  if (buf == NULL) {
316 317 318 319 320 321 322 323 324
    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 已提交
325
    tscError("failed to malloc request");
326 327
  }

L
Liu Jicong 已提交
328
  SMqSubscribeCbParam param = {.rspErr = TMQ_RESP_ERR__SUCCESS, .tmq = tmq};
L
Liu Jicong 已提交
329 330
  tsem_init(&param.rspSem, 0, 0);

dengyihao's avatar
dengyihao 已提交
331
  pRequest->body.requestMsg = (SDataBuf){.pData = buf, .len = tlen, .handle = NULL};
332 333

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
334 335
  sendInfo->param = &param;
  sendInfo->fp = tmqSubscribeCb;
336 337 338 339 340
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
341 342
  tsem_wait(&param.rspSem);
  tsem_destroy(&param.rspSem);
343 344 345

_return:
  /*if (sendInfo != NULL) {*/
L
Liu Jicong 已提交
346
  /*destroySendMsgInfo(sendInfo);*/
347 348
  /*}*/

L
Liu Jicong 已提交
349
  return param.rspErr;
350 351
}

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

SArray* tmqGetConnInfo(SClientHbKey connKey, void* param) {
L
Liu Jicong 已提交
355
  tmq_t*  pTmq = (void*)param;
356 357 358 359 360 361 362 363 364 365 366 367 368
  SArray* pArray = taosArrayInit(0, sizeof(SKv));
  if (pArray == NULL) {
    return NULL;
  }
  SKv kv = {0};
  kv.key = HEARTBEAT_KEY_MQ_TMP;

  SMqHbMsg* pMqHb = malloc(sizeof(SMqHbMsg));
  if (pMqHb == NULL) {
    return pArray;
  }
  pMqHb->consumerId = connKey.connId;
  SArray* clientTopics = pTmq->clientTopics;
L
Liu Jicong 已提交
369
  int     sz = taosArrayGetSize(clientTopics);
370 371 372
  for (int i = 0; i < sz; i++) {
    SMqClientTopic* pCTopic = taosArrayGet(clientTopics, i);
    /*if (pCTopic->vgId == -1) {*/
L
Liu Jicong 已提交
373 374
    /*pMqHb->status = 1;*/
    /*break;*/
375 376 377 378 379 380 381 382 383
    /*}*/
  }
  kv.value = pMqHb;
  kv.valueLen = sizeof(SMqHbMsg);
  taosArrayPush(pArray, &kv);

  return pArray;
}

L
Liu Jicong 已提交
384 385 386 387 388
TAOS_RES* tmq_create_topic(TAOS* taos, const char* topicName, const char* sql, int sqlLen) {
  STscObj*     pTscObj = (STscObj*)taos;
  SRequestObj* pRequest = NULL;
  SQueryNode*  pQueryNode = NULL;
  char*        pStr = NULL;
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413

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

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

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

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

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

L
Liu Jicong 已提交
414
  SQueryStmtInfo* pQueryStmtInfo = (SQueryStmtInfo*)pQueryNode;
415 416 417 418
  pQueryStmtInfo->info.continueQuery = true;

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

L
Liu Jicong 已提交
419
  SSchema* schema = NULL;
420
  int32_t  numOfCols = 0;
L
Liu Jicong 已提交
421 422
  CHECK_CODE_GOTO(qCreateQueryDag(pQueryNode, &pRequest->body.pDag, &schema, &numOfCols, NULL, pRequest->requestId),
                  _return);
423 424

  pStr = qDagToString(pRequest->body.pDag);
L
Liu Jicong 已提交
425
  if (pStr == NULL) {
426 427 428
    goto _return;
  }

L
Liu Jicong 已提交
429
  /*printf("%s\n", pStr);*/
430 431 432

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

L
Liu Jicong 已提交
436
  tNameFromString(&name, dbName, T_NAME_ACCT | T_NAME_DB);
437 438
  tNameFromString(&name, topicName, T_NAME_TABLE);

S
Shengliang Guan 已提交
439
  SMCreateTopicReq req = {
L
Liu Jicong 已提交
440 441 442
      .igExists = 1,
      .physicalPlan = (char*)pStr,
      .sql = (char*)sql,
L
Liu Jicong 已提交
443
      .logicalPlan = (char*)"no logic plan",
444
  };
L
Liu Jicong 已提交
445
  tNameExtractFullName(&name, req.name);
446

S
Shengliang Guan 已提交
447
  int   tlen = tSerializeMCreateTopicReq(NULL, 0, &req);
448 449 450 451 452
  void* buf = malloc(tlen);
  if (buf == NULL) {
    goto _return;
  }

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

dengyihao's avatar
dengyihao 已提交
456
  pRequest->body.requestMsg = (SDataBuf){.pData = buf, .len = tlen, .handle = NULL};
457 458 459
  pRequest->type = TDMT_MND_CREATE_TOPIC;

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
460
  SEpSet        epSet = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);
461 462 463 464 465 466 467 468 469

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

  tsem_wait(&pRequest->body.rspSem);

_return:
  qDestroyQuery(pQueryNode);
  /*if (sendInfo != NULL) {*/
L
Liu Jicong 已提交
470
  /*destroySendMsgInfo(sendInfo);*/
471 472 473 474 475 476 477 478 479
  /*}*/

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

  return pRequest;
}

L
Liu Jicong 已提交
480
static char* formatTimestamp(char* buf, int64_t val, int precision) {
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
  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 已提交
516
  struct tm* ptm = localtime(&tt);
517 518 519 520 521 522 523 524 525 526 527 528 529
  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 已提交
530 531 532 533 534 535
int32_t tmqGetSkipLogNum(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return 0;
  SMqConsumeRsp* pRsp = (SMqConsumeRsp*)tmq_message;
  return pRsp->skipLogNum;
}

L
Liu Jicong 已提交
536 537 538
void tmqShowMsg(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;

L
Liu Jicong 已提交
539 540
  static bool    noPrintSchema;
  char           pBuf[128];
L
Liu Jicong 已提交
541
  SMqConsumeRsp* pRsp = (SMqConsumeRsp*)tmq_message;
L
Liu Jicong 已提交
542
  int32_t        colNum = pRsp->schemas->nCols;
L
Liu Jicong 已提交
543 544 545 546 547 548 549 550 551 552 553
  if (!noPrintSchema) {
    printf("|");
    for (int32_t i = 0; i < colNum; i++) {
      if (i == 0)
        printf(" %25s |", pRsp->schemas->pSchema[i].name);
      else
        printf(" %15s |", pRsp->schemas->pSchema[i].name);
    }
    printf("\n");
    printf("===============================================\n");
    noPrintSchema = true;
554
  }
L
Liu Jicong 已提交
555
  int32_t sz = taosArrayGetSize(pRsp->pBlockData);
556
  for (int32_t i = 0; i < sz; i++) {
L
Liu Jicong 已提交
557 558
    SSDataBlock* pDataBlock = taosArrayGet(pRsp->pBlockData, i);
    int32_t      rows = pDataBlock->info.rows;
559 560 561 562
    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 已提交
563 564
        void*            var = POINTER_SHIFT(pColInfoData->pData, j * pColInfoData->info.bytes);
        switch (pColInfoData->info.type) {
565 566 567 568 569 570 571 572 573 574 575 576 577
          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 已提交
578 579 580 581 582 583
}

int32_t tmqPollCb(void* param, const SDataBuf* pMsg, int32_t code) {
  SMqConsumeCbParam* pParam = (SMqConsumeCbParam*)param;
  SMqClientVg*       pVg = pParam->pVg;
  if (code != 0) {
584
    printf("msg discard\n");
L
Liu Jicong 已提交
585 586 587 588 589 590 591 592 593 594
    tsem_post(&pParam->rspSem);
    return 0;
  }

  SMqConsumeRsp* pRsp = calloc(1, sizeof(SMqConsumeRsp));
  if (pRsp == NULL) {
    tsem_post(&pParam->rspSem);
    return -1;
  }
  tDecodeSMqConsumeRsp(pMsg->pData, pRsp);
595
  /*printf("rsp commit off:%ld rsp off:%ld has data:%d\n", pRsp->committedOffset, pRsp->rspOffset, pRsp->numOfTopics);*/
L
Liu Jicong 已提交
596 597 598 599 600 601 602 603 604 605 606
  if (pRsp->numOfTopics == 0) {
    /*printf("no data\n");*/
    free(pRsp);
    tsem_post(&pParam->rspSem);
    return 0;
  }
  *pParam->retMsg = (tmq_message_t*)pRsp;
  pVg->currentOffset = pRsp->rspOffset;
  /*printf("rsp offset: %ld\n", rsp.rspOffset);*/
  /*printf("-----msg begin----\n");*/
  tsem_post(&pParam->rspSem);
607 608 609 610
  /*printf("\n-----msg end------\n");*/
  return 0;
}

L
Liu Jicong 已提交
611
int32_t tmqAskEpCb(void* param, const SDataBuf* pMsg, int32_t code) {
612
  SMqAskEpCbParam* pParam = (SMqAskEpCbParam*)param;
L
Liu Jicong 已提交
613
  tmq_t*           tmq = pParam->tmq;
614 615 616 617 618 619 620 621
  if (code != 0) {
    printf("get topic endpoint error, not ready, wait:%d\n", pParam->wait);
    if (pParam->wait) {
      tsem_post(&tmq->rspSem);
    }
    return 0;
  }
  tscDebug("tmq ask ep cb called");
L
Liu Jicong 已提交
622
  bool             set = false;
623 624 625 626
  SMqCMGetSubEpRsp rsp;
  tDecodeSMqCMGetSubEpRsp(pMsg->pData, &rsp);
  int32_t sz = taosArrayGetSize(rsp.topics);
  // TODO: lock
L
Liu Jicong 已提交
627 628
  /*printf("rsp epoch %ld sz %ld\n", rsp.epoch, rsp.topics->size);*/
  /*printf("tmq epoch %ld sz %ld\n", tmq->epoch, tmq->clientTopics->size);*/
629
  if (rsp.epoch != tmq->epoch) {
L
Liu Jicong 已提交
630
    // TODO
631 632 633 634 635 636 637 638 639 640
    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(rsp.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);
L
Liu Jicong 已提交
641
        // clang-format off
642
        SMqClientVg clientVg = {
L
Liu Jicong 已提交
643 644 645 646 647 648 649
            .pollCnt = 0,
            .committedOffset = -1,
            .currentOffset = -1,
            .vgId = pVgEp->vgId,
            .epSet = pVgEp->epSet
        };
        // clang-format on
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
        taosArrayPush(topic.vgs, &clientVg);
        set = true;
      }
      taosArrayPush(tmq->clientTopics, &topic);
    }
    tmq->epoch = rsp.epoch;
  }
  if (set) {
    atomic_store_64(&tmq->status, 1);
  }
  // unlock
  /*tsem_post(&tmq->rspSem);*/
  if (pParam->wait) {
    tsem_post(&tmq->rspSem);
  }
L
Liu Jicong 已提交
665
  tDeleteSMqCMGetSubEpRsp(&rsp);
666 667 668
  return 0;
}

L
Liu Jicong 已提交
669
int32_t tmqAskEp(tmq_t* tmq, bool wait) {
L
Liu Jicong 已提交
670 671 672 673 674 675 676
  int32_t           tlen = sizeof(SMqCMGetSubEpReq);
  SMqCMGetSubEpReq* buf = malloc(tlen);
  if (buf == NULL) {
    tscError("failed to malloc get subscribe ep buf");
    goto END;
  }
  buf->consumerId = htobe64(tmq->consumerId);
L
Liu Jicong 已提交
677
  buf->epoch = htonl(tmq->epoch);
L
Liu Jicong 已提交
678
  strcpy(buf->cgroup, tmq->groupId);
679

L
Liu Jicong 已提交
680 681 682 683 684
  SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_MND_GET_SUB_EP);
  if (pRequest == NULL) {
    tscError("failed to malloc subscribe ep request");
    goto END;
  }
685

L
Liu Jicong 已提交
686
  pRequest->body.requestMsg = (SDataBuf){.pData = buf, .len = tlen};
687

L
Liu Jicong 已提交
688
  SMqAskEpCbParam* pParam = malloc(sizeof(SMqAskEpCbParam));
L
Liu Jicong 已提交
689 690 691 692 693 694
  if (pParam == NULL) {
    tscError("failed to malloc subscribe param");
    goto END;
  }
  pParam->tmq = tmq;
  pParam->wait = wait;
695

L
Liu Jicong 已提交
696 697 698 699
  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqAskEpCb;
700

L
Liu Jicong 已提交
701 702 703 704
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

END:
L
Liu Jicong 已提交
707 708
  if (wait) tsem_wait(&tmq->rspSem);
  return 0;
709 710
}

L
Liu Jicong 已提交
711 712
SMqConsumeReq* tmqBuildConsumeReqImpl(tmq_t* tmq, int64_t blocking_time, int32_t type, SMqClientTopic* pTopic,
                                      SMqClientVg* pVg) {
713 714 715 716 717
  SMqConsumeReq* pReq = malloc(sizeof(SMqConsumeReq));
  if (pReq == NULL) {
    return NULL;
  }
  pReq->reqType = type;
L
Liu Jicong 已提交
718
  strcpy(pReq->topic, pTopic->topicName);
719 720 721 722
  pReq->blockingTime = blocking_time;
  pReq->consumerId = tmq->consumerId;
  strcpy(pReq->cgroup, tmq->groupId);

L
Liu Jicong 已提交
723 724 725 726 727
  if (type == TMQ_REQ_TYPE_COMMIT_ONLY) {
    pReq->offset = pVg->currentOffset;
  } else {
    pReq->offset = pVg->currentOffset + 1;
  }
728 729 730 731 732 733 734 735 736 737

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

tmq_message_t* tmq_consumer_poll(tmq_t* tmq, int64_t blocking_time) {
  tmq_message_t* tmq_message = NULL;

  int64_t status = atomic_load_64(&tmq->status);
L
Liu Jicong 已提交
738
  tmqAskEp(tmq, status == 0);
739

L
Liu Jicong 已提交
740
  if (blocking_time <= 0) blocking_time = 1;
L
Liu Jicong 已提交
741 742
  if (blocking_time > 1000) blocking_time = 1000;
  /*blocking_time = 1;*/
743 744 745

  if (taosArrayGetSize(tmq->clientTopics) == 0) {
    tscDebug("consumer:%ld poll but not assigned", tmq->consumerId);
L
Liu Jicong 已提交
746
    printf("over1\n");
747 748 749 750 751
    usleep(blocking_time * 1000);
    return NULL;
  }
  SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, tmq->nextTopicIdx);
  if (taosArrayGetSize(pTopic->vgs) == 0) {
L
Liu Jicong 已提交
752
    printf("over2\n");
753 754 755 756
    usleep(blocking_time * 1000);
    return NULL;
  }

L
Liu Jicong 已提交
757
  tmq->nextTopicIdx = (tmq->nextTopicIdx + 1) % taosArrayGetSize(tmq->clientTopics);
L
Liu Jicong 已提交
758
  int32_t beginVgIdx = pTopic->nextVgIdx;
L
Liu Jicong 已提交
759
  while (1) {
L
Liu Jicong 已提交
760 761 762
    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 已提交
763
    int32_t        reqType = tmq->autoCommit ? TMQ_REQ_TYPE_CONSUME_AND_COMMIT : TMQ_REQ_TYPE_CONSUME_ONLY;
L
Liu Jicong 已提交
764
    SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, blocking_time, reqType, pTopic, pVg);
L
Liu Jicong 已提交
765 766 767 768 769
    if (pReq == NULL) {
      ASSERT(false);
      usleep(blocking_time * 1000);
      return NULL;
    }
770

L
Liu Jicong 已提交
771 772 773 774 775 776 777 778 779 780 781
    SMqConsumeCbParam* param = malloc(sizeof(SMqConsumeCbParam));
    if (param == NULL) {
      ASSERT(false);
      usleep(blocking_time * 1000);
      return NULL;
    }
    param->tmq = tmq;
    param->retMsg = &tmq_message;
    param->pVg = pVg;
    tsem_init(&param->rspSem, 0, 0);

782

L
Liu Jicong 已提交
783
    SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_VND_CONSUME);
784
    pRequest->body.requestMsg = (SDataBuf){.pData = pReq, .len = sizeof(SMqConsumeReq), .handle = NULL};
785

L
Liu Jicong 已提交
786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808

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

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

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

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

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

L
Liu Jicong 已提交
810
    return tmq_message;
L
Liu Jicong 已提交
811
  }
812 813 814 815

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

  /*if (body != NULL) {*/
L
Liu Jicong 已提交
816
  /*destroySendMsgInfo(body);*/
817 818 819
  /*}*/

  /*if (pRequest != NULL && terrno != TSDB_CODE_SUCCESS) {*/
L
Liu Jicong 已提交
820
  /*pRequest->code = terrno;*/
821 822 823 824 825
  /*}*/

  /*return pRequest;*/
}

L
Liu Jicong 已提交
826
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 已提交
827
  if (tmq_topic_vgroup_list != NULL) {
L
Liu Jicong 已提交
828
    // TODO
L
Liu Jicong 已提交
829 830
  }

L
Liu Jicong 已提交
831
  // TODO: change semaphore to gate
L
Liu Jicong 已提交
832 833 834
  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 已提交
835
      SMqClientVg*   pVg = taosArrayGet(pTopic->vgs, j);
L
Liu Jicong 已提交
836
      SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, 0, TMQ_REQ_TYPE_COMMIT_ONLY, pTopic, pVg);
L
Liu Jicong 已提交
837

L
Liu Jicong 已提交
838 839
      SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_VND_CONSUME);
      pRequest->body.requestMsg = (SDataBuf){.pData = pReq, .len = sizeof(SMqConsumeReq)};
L
Liu Jicong 已提交
840
      SMqCommitCbParam* pParam = malloc(sizeof(SMqCommitCbParam));
L
Liu Jicong 已提交
841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860
      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 已提交
861
  return 0;
862 863 864 865
}

void tmq_message_destroy(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;
L
Liu Jicong 已提交
866 867 868
  SMqConsumeRsp* pRsp = (SMqConsumeRsp*)tmq_message;
  tDeleteSMqConsumeRsp(pRsp);
  free(tmq_message);
869 870
}

L
Liu Jicong 已提交
871
tmq_resp_err_t tmq_consumer_close(tmq_t* tmq) { return TMQ_RESP_ERR__SUCCESS; }
L
Liu Jicong 已提交
872 873 874 875 876 877 878

const char* tmq_err2str(tmq_resp_err_t err) {
  if (err == TMQ_RESP_ERR__SUCCESS) {
    return "success";
  }
  return "fail";
}
L
Liu Jicong 已提交
879 880 881 882 883 884 885 886 887 888 889 890 891 892
#if 0
tmq_t* tmqCreateConsumerImpl(TAOS* conn, tmq_conf_t* conf) {
  tmq_t* pTmq = malloc(sizeof(tmq_t));
  if (pTmq == NULL) {
    return NULL;
  }
  strcpy(pTmq->groupId, conf->groupId);
  strcpy(pTmq->clientId, conf->clientId);
  pTmq->pTscObj = (STscObj*)conn;
  pTmq->pTscObj->connType = HEARTBEAT_TYPE_MQ;
  return pTmq;
}


893 894 895 896 897
static void destroySendMsgInfo(SMsgSendInfo* pMsgBody) {
  assert(pMsgBody != NULL);
  tfree(pMsgBody->msgInfo.pData);
  tfree(pMsgBody);
}
L
Liu Jicong 已提交
898
#endif