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

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
// mmFile.c
int32_t mmReadFile(SMnodeMgmt *pMgmt);
int32_t mmWriteFile(SMnodeMgmt *pMgmt);
S
shm  
Shengliang Guan 已提交
45

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

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

// 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);

int32_t mmPutMsgToWriteQueue(void *wrapper, SRpcMsg *pRpcMsg);
int32_t mmPutMsgToReadQueue(void *wrapper, SRpcMsg *pRpcMsg);
S
shm  
Shengliang Guan 已提交
66

67 68 69 70
#ifdef __cplusplus
}
#endif

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