tmsgcb.c 2.5 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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/>.
 */

#define _DEFAULT_SOURCE
#include "tmsgcb.h"
18
#include "taoserror.h"
S
Shengliang Guan 已提交
19

S
shm  
Shengliang Guan 已提交
20 21
static SMsgCb tsDefaultMsgCb;

S
Shengliang Guan 已提交
22
void tmsgSetDefaultMsgCb(const SMsgCb* pMsgCb) { tsDefaultMsgCb = *pMsgCb; }
S
shm  
Shengliang Guan 已提交
23

S
Shengliang Guan 已提交
24
int32_t tmsgPutToQueue(const SMsgCb* pMsgCb, EQueueType qtype, SRpcMsg* pReq) {
S
Shengliang Guan 已提交
25
  // cannot be empty, but not checked for faster detect
26
  PutToQueueFp fp = pMsgCb->queueFps[qtype];
S
Shengliang Guan 已提交
27
  return (*fp)(pMsgCb->pMgmt, pReq);
S
Shengliang Guan 已提交
28 29
}

S
Shengliang Guan 已提交
30
int32_t tmsgGetQueueSize(const SMsgCb* pMsgCb, int32_t vgId, EQueueType qtype) {
S
Shengliang Guan 已提交
31
  // cannot be empty, but not checked for faster detect
32
  GetQueueSizeFp fp = pMsgCb->qsizeFp;
S
Shengliang Guan 已提交
33
  return (*fp)(pMsgCb->pMgmt, vgId, qtype);
S
Shengliang Guan 已提交
34 35
}

S
shm  
Shengliang Guan 已提交
36
int32_t tmsgSendReq(const SMsgCb* pMsgCb, const SEpSet* epSet, SRpcMsg* pReq) {
S
Shengliang Guan 已提交
37
  // cannot be empty, but not checked for faster detect
38
  SendReqFp fp = pMsgCb->sendReqFp;
S
Shengliang Guan 已提交
39
  return (*fp)(pMsgCb->pWrapper, epSet, pReq);
S
Shengliang Guan 已提交
40 41
}

42
void tmsgSendRsp(SRpcMsg* pRsp) {
S
Shengliang Guan 已提交
43
  // cannot be empty, but not checked for faster detect
44
  SendRspFp fp = tsDefaultMsgCb.sendRspFp;
S
Shengliang Guan 已提交
45
  return (*fp)(pRsp);
46
}
S
Shengliang Guan 已提交
47

48
void tmsgSendRedirectRsp(SRpcMsg* pRsp, const SEpSet* pNewEpSet) {
S
Shengliang Guan 已提交
49
  // cannot be empty, but not checked for faster detect
50
  SendRedirectRspFp fp = tsDefaultMsgCb.sendRedirectRspFp;
S
Shengliang Guan 已提交
51
  (*fp)(pRsp, pNewEpSet);
S
Shengliang Guan 已提交
52 53
}

S
Shengliang Guan 已提交
54
void tmsgRegisterBrokenLinkArg(const SMsgCb* pMsgCb, SRpcMsg* pMsg) {
55 56 57 58 59 60
  RegisterBrokenLinkArgFp fp = pMsgCb->registerBrokenLinkArgFp;
  if (fp != NULL) {
    (*fp)(pMsgCb->pWrapper, pMsg);
  } else {
    terrno = TSDB_CODE_INVALID_PTR;
  }
S
shm  
Shengliang Guan 已提交
61 62
}

S
shm  
Shengliang Guan 已提交
63
void tmsgReleaseHandle(void* handle, int8_t type) {
64 65 66 67 68 69
  ReleaseHandleFp fp = tsDefaultMsgCb.releaseHandleFp;
  if (fp != NULL) {
    (*fp)(tsDefaultMsgCb.pWrapper, handle, type);
  } else {
    terrno = TSDB_CODE_INVALID_PTR;
  }
S
Shengliang Guan 已提交
70 71 72
}

void tmsgReportStartup(const char* name, const char* desc) {
73 74 75 76 77 78
  ReportStartup fp = tsDefaultMsgCb.reportStartupFp;
  if (fp != NULL && tsDefaultMsgCb.pWrapper != NULL) {
    (*fp)(tsDefaultMsgCb.pWrapper, name, desc);
  } else {
    terrno = TSDB_CODE_INVALID_PTR;
  }
S
Shengliang Guan 已提交
79
}