TDengine/include/common/tmsgcb.h

74 lines
2.5 KiB
C
Raw Normal View History

2022-03-21 11:08:25 +00:00
/*
* 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/>.
*/
#ifndef _TD_COMMON_MSG_CB_H_
#define _TD_COMMON_MSG_CB_H_
#include "os.h"
#ifdef __cplusplus
extern "C" {
#endif
2022-03-21 11:49:20 +00:00
typedef struct SRpcMsg SRpcMsg;
typedef struct SEpSet SEpSet;
2022-03-21 11:08:25 +00:00
typedef struct SMgmtWrapper SMgmtWrapper;
2022-03-29 03:37:29 +00:00
2022-03-25 12:19:09 +00:00
typedef enum {
QUERY_QUEUE,
FETCH_QUEUE,
READ_QUEUE,
2022-03-25 12:19:09 +00:00
WRITE_QUEUE,
APPLY_QUEUE,
SYNC_QUEUE,
MERGE_QUEUE,
QUEUE_MAX,
} EQueueType;
2022-03-21 11:08:25 +00:00
2022-03-21 11:49:20 +00:00
typedef int32_t (*PutToQueueFp)(SMgmtWrapper* pWrapper, SRpcMsg* pReq);
2022-03-22 07:53:29 +00:00
typedef int32_t (*GetQueueSizeFp)(SMgmtWrapper* pWrapper, int32_t vgId, EQueueType qtype);
2022-03-29 03:37:29 +00:00
typedef int32_t (*SendReqFp)(SMgmtWrapper* pWrapper, const SEpSet* epSet, SRpcMsg* pReq);
2022-03-21 11:49:20 +00:00
typedef int32_t (*SendMnodeReqFp)(SMgmtWrapper* pWrapper, SRpcMsg* pReq);
2022-03-29 03:37:29 +00:00
typedef void (*SendRspFp)(SMgmtWrapper* pWrapper, const SRpcMsg* pRsp);
typedef void (*RegisterBrokenLinkArgFp)(SMgmtWrapper* pWrapper, SRpcMsg* pMsg);
typedef void (*ReleaseHandleFp)(SMgmtWrapper* pWrapper, void* handle, int8_t type);
2022-04-19 11:43:55 +00:00
typedef void (*ReportStartup)(SMgmtWrapper* pWrapper, const char* name, const char* desc);
2022-03-21 11:08:25 +00:00
typedef struct {
2022-03-28 12:45:52 +00:00
SMgmtWrapper* pWrapper;
PutToQueueFp queueFps[QUEUE_MAX];
GetQueueSizeFp qsizeFp;
SendReqFp sendReqFp;
SendRspFp sendRspFp;
RegisterBrokenLinkArgFp registerBrokenLinkArgFp;
2022-03-29 03:37:29 +00:00
ReleaseHandleFp releaseHandleFp;
2022-04-19 11:43:55 +00:00
ReportStartup reportStartupFp;
2022-03-21 11:08:25 +00:00
} SMsgCb;
2022-03-29 05:39:55 +00:00
void tmsgSetDefaultMsgCb(const SMsgCb* pMsgCb);
2022-03-21 11:49:20 +00:00
int32_t tmsgPutToQueue(const SMsgCb* pMsgCb, EQueueType qtype, SRpcMsg* pReq);
2022-03-22 07:53:29 +00:00
int32_t tmsgGetQueueSize(const SMsgCb* pMsgCb, int32_t vgId, EQueueType qtype);
2022-03-29 03:37:29 +00:00
int32_t tmsgSendReq(const SMsgCb* pMsgCb, const SEpSet* epSet, SRpcMsg* pReq);
2022-03-29 09:15:48 +00:00
void tmsgSendRsp(const SRpcMsg* pRsp);
2022-03-28 12:45:52 +00:00
void tmsgRegisterBrokenLinkArg(const SMsgCb* pMsgCb, SRpcMsg* pMsg);
2022-03-29 05:39:55 +00:00
void tmsgReleaseHandle(void* handle, int8_t type);
2022-04-19 11:43:55 +00:00
void tmsgReportStartup(const char* name, const char* desc);
2022-03-21 11:08:25 +00:00
#ifdef __cplusplus
}
#endif
#endif /*_TD_COMMON_MSG_CB_H_*/