mnode.h 2.7 KB
Newer Older
H
refact  
Hongze Cheng 已提交
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
Shengliang Guan 已提交
16 17
#ifndef _TD_MND_H_
#define _TD_MND_H_
H
refact  
Hongze Cheng 已提交
18

S
monitor  
Shengliang Guan 已提交
19
#include "monitor.h"
L
Liu Jicong 已提交
20
#include "tmsg.h"
S
Shengliang Guan 已提交
21
#include "tmsgcb.h"
L
Liu Jicong 已提交
22
#include "trpc.h"
S
monitor  
Shengliang Guan 已提交
23

H
refact  
Hongze Cheng 已提交
24 25 26 27
#ifdef __cplusplus
extern "C" {
#endif

S
Shengliang Guan 已提交
28
/* ------------------------ TYPES EXPOSED ------------------------ */
S
Shengliang Guan 已提交
29
typedef struct SMnode SMnode;
S
Shengliang Guan 已提交
30

31
typedef struct {
32
  int32_t  dnodeId;
S
shm  
Shengliang Guan 已提交
33
  bool     deploy;
34 35 36
  int8_t   selfIndex;
  int8_t   numOfReplicas;
  SReplica replicas[TSDB_MAX_REPLICA];
S
Shengliang Guan 已提交
37
  SMsgCb   msgCb;
S
Shengliang Guan 已提交
38
} SMnodeOpt;
S
Shengliang Guan 已提交
39 40 41 42 43

/* ------------------------ SMnode ------------------------ */
/**
 * @brief Open a mnode.
 *
S
Shengliang Guan 已提交
44 45 46
 * @param path Path of the mnode.
 * @param pOption Option of the mnode.
 * @return SMnode* The mnode object.
S
Shengliang Guan 已提交
47
 */
48
SMnode *mndOpen(const char *path, const SMnodeOpt *pOption);
S
Shengliang Guan 已提交
49 50

/**
S
Shengliang Guan 已提交
51
 * @brief Close a mnode.
S
Shengliang Guan 已提交
52
 *
S
Shengliang Guan 已提交
53
 * @param pMnode The mnode object to close.
S
Shengliang Guan 已提交
54
 */
55
void mndClose(SMnode *pMnode);
56
void mndPreClose(SMnode *pMnode);
S
Shengliang Guan 已提交
57 58

/**
S
shm  
Shengliang Guan 已提交
59
 * @brief Start mnode
S
Shengliang Guan 已提交
60
 *
S
shm  
Shengliang Guan 已提交
61
 * @param pMnode The mnode object.
S
Shengliang Guan 已提交
62
 */
S
shm  
Shengliang Guan 已提交
63
int32_t mndStart(SMnode *pMnode);
64 65 66 67 68 69 70

/**
 * @brief Stop mnode
 *
 * @param pMnode The mnode object.
 */
void mndStop(SMnode *pMnode);
S
Shengliang Guan 已提交
71 72

/**
S
monitor  
Shengliang Guan 已提交
73
 * @brief Get mnode monitor info.
S
Shengliang Guan 已提交
74
 *
S
Shengliang Guan 已提交
75
 * @param pMnode The mnode object.
76 77
 * @param pCluster
 * @param pVgroup
S
Shengliang Guan 已提交
78
 * @param pStbInfo
79
 * @param pGrant
S
Shengliang Guan 已提交
80
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
81
 */
S
Shengliang Guan 已提交
82 83
int32_t mndGetMonitorInfo(SMnode *pMnode, SMonClusterInfo *pClusterInfo, SMonVgroupInfo *pVgroupInfo,
                          SMonStbInfo *pStbInfo, SMonGrantInfo *pGrantInfo);
84 85 86 87 88 89 90 91

/**
 * @brief Get mnode loads for status msg.
 *
 * @param pMnode The mnode object.
 * @param pLoad
 * @return int32_t 0 for success, -1 for failure.
 */
S
Shengliang Guan 已提交
92
int32_t mndGetLoad(SMnode *pMnode, SMnodeLoad *pLoad);
S
Shengliang Guan 已提交
93

S
Shengliang Guan 已提交
94
/**
95
 * @brief Process the rpc, sync request.
S
Shengliang Guan 已提交
96
 *
S
Shengliang Guan 已提交
97 98
 * @param pMsg The request msg.
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
99
 */
S
Shengliang Guan 已提交
100
int32_t mndProcessRpcMsg(SRpcMsg *pMsg);
M
Minghao Li 已提交
101
int32_t mndProcessSyncMsg(SRpcMsg *pMsg);
102 103
int32_t mndPreProcessQueryMsg(SRpcMsg *pMsg);
void    mndPostProcessQueryMsg(SRpcMsg *pMsg);
M
Minghao Li 已提交
104

S
Shengliang Guan 已提交
105 106 107 108 109
/**
 * @brief Generate machine code
 */
void mndGenerateMachineCode();

S
Shengliang Guan 已提交
110 111
void mndDumpSdb();

H
refact  
Hongze Cheng 已提交
112 113 114 115
#ifdef __cplusplus
}
#endif

S
Shengliang Guan 已提交
116
#endif /*_TD_MND_H_*/