tmsgcb.c 1.4 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
Shengliang Guan 已提交
19
int32_t tmsgPutToQueue(const SMsgCb* pMsgCb, EQueueType qtype, SRpcMsg* pReq) {
S
Shengliang Guan 已提交
20 21 22
  return (*pMsgCb->queueFps[qtype])(pMsgCb->pWrapper, pReq);
}

S
Shengliang Guan 已提交
23 24 25 26
int32_t tmsgGetQueueSize(const SMsgCb* pMsgCb, int32_t vgId, EQueueType qtype) {
  return (*pMsgCb->qsizeFp)(pMsgCb->pWrapper, vgId, qtype);
}

S
Shengliang Guan 已提交
27
int32_t tmsgSendReq(const SMsgCb* pMsgCb, SEpSet* epSet, SRpcMsg* pReq) {
S
Shengliang Guan 已提交
28 29 30
  return (*pMsgCb->sendReqFp)(pMsgCb->pWrapper, epSet, pReq);
}

S
Shengliang Guan 已提交
31
int32_t tmsgSendMnodeReq(const SMsgCb* pMsgCb, SRpcMsg* pReq) {
S
Shengliang Guan 已提交
32 33 34
  return (*pMsgCb->sendMnodeReqFp)(pMsgCb->pWrapper, pReq);
}

S
Shengliang Guan 已提交
35
void tmsgSendRsp(const SMsgCb* pMsgCb, SRpcMsg* pRsp) { return (*pMsgCb->sendRspFp)(pMsgCb->pWrapper, pRsp); }
S
Shengliang Guan 已提交
36 37 38 39

void tmsgRegisterBrokenLinkArg(const SMsgCb* pMsgCb, SRpcMsg* pMsg) {
  (*pMsgCb->registerBrokenLinkArgFp)(pMsgCb->pWrapper, pMsg);
}