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

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

S
shm  
Shengliang Guan 已提交
26
typedef struct SMnodeMgmt {
27 28 29 30 31 32
  SDnodeData    *pData;
  SMnode        *pMnode;
  SMsgCb         msgCb;
  const char    *path;
  const char    *name;
  SSingleWorker  queryWorker;
D
dapan1121 已提交
33
  SSingleWorker  fetchWorker;
34 35 36
  SSingleWorker  readWorker;
  SSingleWorker  writeWorker;
  SSingleWorker  syncWorker;
37
  SSingleWorker  syncRdWorker;
38 39 40
  bool           stopped;
  int32_t        refCount;
  TdThreadRwlock lock;
S
shm  
Shengliang Guan 已提交
41 42
} SMnodeMgmt;

S
shm  
Shengliang Guan 已提交
43
// mmFile.c
44 45
int32_t mmReadFile(const char *path, SMnodeOpt *pOption);
int32_t mmWriteFile(const char *path, const SMnodeOpt *pOption);
S
shm  
Shengliang Guan 已提交
46

S
Shengliang Guan 已提交
47
// mmHandle.c
S
Shengliang 已提交
48
SArray *mmGetMsgHandles();
S
Shengliang Guan 已提交
49
int32_t mmProcessCreateReq(const SMgmtInputOpt *pInput, SRpcMsg *pMsg);
50
int32_t mmProcessDropReq(const SMgmtInputOpt *pInput, SRpcMsg *pMsg);
S
shm  
Shengliang Guan 已提交
51 52 53 54

// mmWorker.c
int32_t mmStartWorker(SMnodeMgmt *pMgmt);
void    mmStopWorker(SMnodeMgmt *pMgmt);
S
Shengliang Guan 已提交
55 56
int32_t mmPutMsgToWriteQueue(SMnodeMgmt *pMgmt, SRpcMsg *pMsg);
int32_t mmPutMsgToSyncQueue(SMnodeMgmt *pMgmt, SRpcMsg *pMsg);
57
int32_t mmPutMsgToSyncRdQueue(SMnodeMgmt *pMgmt, SRpcMsg *pMsg);
S
Shengliang Guan 已提交
58 59
int32_t mmPutMsgToReadQueue(SMnodeMgmt *pMgmt, SRpcMsg *pMsg);
int32_t mmPutMsgToQueryQueue(SMnodeMgmt *pMgmt, SRpcMsg *pMsg);
D
dapan1121 已提交
60
int32_t mmPutMsgToFetchQueue(SMnodeMgmt *pMgmt, SRpcMsg *pMsg);
S
Shengliang Guan 已提交
61
int32_t mmPutMsgToQueue(SMnodeMgmt *pMgmt, EQueueType qtype, SRpcMsg *pRpc);
S
shm  
Shengliang Guan 已提交
62

63 64 65 66
#ifdef __cplusplus
}
#endif

D
dapan1121 已提交
67
#endif /*_TD_DND_MNODE_INT_H_*/