65 lines
2.1 KiB
C
65 lines
2.1 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"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct SMnodeMgmt {
|
|
int32_t refCount;
|
|
int8_t deployed;
|
|
int8_t dropped;
|
|
int8_t replica;
|
|
int8_t selfIndex;
|
|
SReplica replicas[TSDB_MAX_REPLICA];
|
|
SMnode *pMnode;
|
|
SDnode *pDnode;
|
|
SMgmtWrapper *pWrapper;
|
|
const char *path;
|
|
SRWLatch latch;
|
|
SDnodeWorker readWorker;
|
|
SDnodeWorker writeWorker;
|
|
SDnodeWorker syncWorker;
|
|
} SMnodeMgmt;
|
|
|
|
// interface
|
|
void mmGetMgmtFp(SMgmtWrapper *pMgmt);
|
|
int32_t mmGetUserAuth(SMgmtWrapper *pWrapper, char *user, char *spi, char *encrypt, char *secret, char *ckey);
|
|
int32_t mmGetMonitorInfo(SMgmtWrapper *pWrapper, SMonClusterInfo *pClusterInfo, SMonVgroupInfo *pVgroupInfo,
|
|
SMonGrantInfo *pGrantInfo);
|
|
|
|
// mmInt.h
|
|
SMnode *mmAcquire(SMnodeMgmt *pMgmt);
|
|
void mmRelease(SMnodeMgmt *pMgmt, SMnode *pMnode);
|
|
int32_t mmOpen(SMnodeMgmt *pMgmt, SMnodeOpt *pOption);
|
|
int32_t mmAlter(SMnodeMgmt *pMgmt, SMnodeOpt *pOption);
|
|
int32_t mmDrop(SMnodeMgmt *pMgmt);
|
|
int32_t mmBuildOptionFromReq(SMnodeMgmt *pMgmt, SMnodeOpt *pOption, SDCreateMnodeReq *pCreate);
|
|
|
|
// mmHandle.h
|
|
int32_t mmProcessCreateReq(SDnode *pDnode, SRpcMsg *pRpcMsg);
|
|
int32_t mmProcessAlterReq(SDnode *pDnode, SRpcMsg *pRpcMsg);
|
|
int32_t mmProcessDropReq(SDnode *pDnode, SRpcMsg *pRpcMsg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /*_TD_DND_MNODE_INT_H_*/ |