mmInt.h 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

S
shm  
Shengliang Guan 已提交
16 17
#ifndef _TD_DND_MNODE_INT_H_
#define _TD_DND_MNODE_INT_H_
18

S
shm  
Shengliang Guan 已提交
19 20
#include "dndInt.h"

21 22 23 24
#ifdef __cplusplus
extern "C" {
#endif

S
shm  
Shengliang Guan 已提交
25
typedef struct SMnodeMgmt {
S
shm  
Shengliang Guan 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39
  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;
S
shm  
Shengliang Guan 已提交
40 41
} SMnodeMgmt;

S
shm  
Shengliang Guan 已提交
42 43 44 45 46
// 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);
S
shm  
Shengliang Guan 已提交
47

S
shm  
Shengliang Guan 已提交
48 49 50 51 52 53 54
// 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);
S
shm  
Shengliang Guan 已提交
55 56 57 58 59

// mmHandle.h
int32_t mmProcessCreateReq(SDnode *pDnode, SRpcMsg *pRpcMsg);
int32_t mmProcessAlterReq(SDnode *pDnode, SRpcMsg *pRpcMsg);
int32_t mmProcessDropReq(SDnode *pDnode, SRpcMsg *pRpcMsg);
S
shm  
Shengliang Guan 已提交
60

61 62 63 64
#ifdef __cplusplus
}
#endif

S
shm  
Shengliang Guan 已提交
65
#endif /*_TD_DND_MNODE_INT_H_*/