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

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

void tmsgSetDefaultMsgCb(const SMsgCb* pMsgCb) { tsDefaultMsgCb = *pMsgCb; }

S
Shengliang Guan 已提交
23
int32_t tmsgPutToQueue(const SMsgCb* pMsgCb, EQueueType qtype, SRpcMsg* pReq) {
S
Shengliang Guan 已提交
24 25 26
  return (*pMsgCb->queueFps[qtype])(pMsgCb->pWrapper, pReq);
}

S
Shengliang Guan 已提交
27 28 29 30
int32_t tmsgGetQueueSize(const SMsgCb* pMsgCb, int32_t vgId, EQueueType qtype) {
  return (*pMsgCb->qsizeFp)(pMsgCb->pWrapper, vgId, qtype);
}

S
shm  
Shengliang Guan 已提交
31
int32_t tmsgSendReq(const SMsgCb* pMsgCb, const SEpSet* epSet, SRpcMsg* pReq) {
S
Shengliang Guan 已提交
32 33 34
  return (*pMsgCb->sendReqFp)(pMsgCb->pWrapper, epSet, pReq);
}

S
shm  
Shengliang Guan 已提交
35
void tmsgSendRsp(const SRpcMsg* pRsp) { return (*tsDefaultMsgCb.sendRspFp)(tsDefaultMsgCb.pWrapper, pRsp); }
S
Shengliang Guan 已提交
36 37 38

void tmsgRegisterBrokenLinkArg(const SMsgCb* pMsgCb, SRpcMsg* pMsg) {
  (*pMsgCb->registerBrokenLinkArgFp)(pMsgCb->pWrapper, pMsg);
S
shm  
Shengliang Guan 已提交
39 40
}

S
shm  
Shengliang Guan 已提交
41 42
void tmsgReleaseHandle(void* handle, int8_t type) {
  (*tsDefaultMsgCb.releaseHandleFp)(tsDefaultMsgCb.pWrapper, handle, type);
S
Shengliang Guan 已提交
43 44 45 46
}

void tmsgReportStartup(const char* name, const char* desc) {
  (*tsDefaultMsgCb.reportStartupFp)(tsDefaultMsgCb.pWrapper, name, desc);
S
Shengliang Guan 已提交
47
}