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
#include "dm.h"
S
shm  
Shengliang Guan 已提交
20
#include "mm.h"
S
shm  
Shengliang Guan 已提交
21

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

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

S
shm  
Shengliang Guan 已提交
43 44 45
// mmFile.c
int32_t mmReadFile(SMnodeMgmt *pMgmt);
int32_t mmWriteFile(SMnodeMgmt *pMgmt);
S
shm  
Shengliang Guan 已提交
46

S
shm  
Shengliang Guan 已提交
47
// mmInt.c
S
shm  
Shengliang Guan 已提交
48 49 50 51 52 53
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 已提交
54

S
shm  
Shengliang Guan 已提交
55
// mmMsg.c
S
shm  
Shengliang Guan 已提交
56
int32_t mmProcessAlterReq(SMnodeMgmt *pMgmt, SNodeMsg *pMsg);
S
shm  
Shengliang Guan 已提交
57 58 59 60 61 62 63 64

// mmWorker.c
int32_t mmStartWorker(SMnodeMgmt *pMgmt);
void    mmStopWorker(SMnodeMgmt *pMgmt);
int32_t mmProcessWriteMsg(SMnodeMgmt *pMgmt, SNodeMsg *pMsg);
int32_t mmProcessSyncMsg(SMnodeMgmt *pMgmt, SNodeMsg *pMsg);
int32_t mmProcessReadMsg(SMnodeMgmt *pMgmt, SNodeMsg *pMsg);

S
shm  
Shengliang Guan 已提交
65 66
int32_t mmPutMsgToWriteQueue(SMgmtWrapper *pWrapper, SRpcMsg *pRpcMsg);
int32_t mmPutMsgToReadQueue(SMgmtWrapper *pWrapper, SRpcMsg *pRpcMsg);
S
shm  
Shengliang Guan 已提交
67

68 69 70 71
#ifdef __cplusplus
}
#endif

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