72 lines
2.3 KiB
C
72 lines
2.3 KiB
C
/*
|
|
* 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_DND_MNODE_INT_H_
|
|
#define _TD_DND_MNODE_INT_H_
|
|
|
|
#include "dndInt.h"
|
|
#include "mnode.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct SMnodeMgmt {
|
|
SMnode *pMnode;
|
|
SDnode *pDnode;
|
|
SMgmtWrapper *pWrapper;
|
|
const char *path;
|
|
SSingleWorker queryWorker;
|
|
SSingleWorker readWorker;
|
|
SSingleWorker writeWorker;
|
|
SSingleWorker syncWorker;
|
|
SReplica replicas[TSDB_MAX_REPLICA];
|
|
int8_t replica;
|
|
int8_t selfIndex;
|
|
} SMnodeMgmt;
|
|
|
|
// mmFile.c
|
|
int32_t mmReadFile(SMnodeMgmt *pMgmt, bool *pDeployed);
|
|
int32_t mmWriteFile(SMnodeMgmt *pMgmt, bool deployed);
|
|
|
|
// mmInt.c
|
|
int32_t mmOpenFromMsg(SMgmtWrapper *pWrapper, SDCreateMnodeReq *pReq);
|
|
int32_t mmDrop(SMgmtWrapper *pWrapper);
|
|
int32_t mmAlter(SMnodeMgmt *pMgmt, SDAlterMnodeReq *pReq);
|
|
|
|
// mmHandle.c
|
|
void mmInitMsgHandle(SMgmtWrapper *pWrapper);
|
|
int32_t mmProcessCreateReq(SMgmtWrapper *pWrapper, SNodeMsg *pMsg);
|
|
int32_t mmProcessDropReq(SMgmtWrapper *pWrapper, SNodeMsg *pMsg);
|
|
int32_t mmProcessAlterReq(SMnodeMgmt *pMgmt, SNodeMsg *pMsg);
|
|
|
|
// mmWorker.c
|
|
int32_t mmStartWorker(SMnodeMgmt *pMgmt);
|
|
void mmStopWorker(SMnodeMgmt *pMgmt);
|
|
int32_t mmProcessWriteMsg(SMgmtWrapper *pWrapper, SNodeMsg *pMsg);
|
|
int32_t mmProcessSyncMsg(SMgmtWrapper *pWrapper, SNodeMsg *pMsg);
|
|
int32_t mmProcessReadMsg(SMgmtWrapper *pWrapper, SNodeMsg *pMsg);
|
|
int32_t mmProcessQueryMsg(SMgmtWrapper *pWrapper, SNodeMsg *pMsg);
|
|
int32_t mmPutMsgToQueryQueue(SMgmtWrapper *pWrapper, SRpcMsg *pRpc);
|
|
int32_t mmPutMsgToReadQueue(SMgmtWrapper *pWrapper, SRpcMsg *pRpc);
|
|
int32_t mmPutMsgToWriteQueue(SMgmtWrapper *pWrapper, SRpcMsg *pRpc);
|
|
int32_t mmPutMsgToSyncQueue(SMgmtWrapper *pWrapper, SRpcMsg *pRpc);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /*_TD_DND_MNODE_INT_H_*/
|