mnode.h 2.6 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"
S
Shengliang Guan 已提交
20
#include "tmsgcb.h"
S
monitor  
Shengliang Guan 已提交
21

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

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

29
typedef struct {
S
Shengliang Guan 已提交
30 31 32 33 34 35
  int32_t  dnodeId;
  int64_t  clusterId;
  int8_t   replica;
  int8_t   selfIndex;
  SReplica replicas[TSDB_MAX_REPLICA];
  SMsgCb   msgCb;
S
Shengliang Guan 已提交
36
} SMnodeOpt;
S
Shengliang Guan 已提交
37 38 39 40 41

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

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

/**
S
Shengliang Guan 已提交
56
 * @brief Close a mnode.
S
Shengliang Guan 已提交
57
 *
S
Shengliang Guan 已提交
58 59 60
 * @param pMnode The mnode object to close.
 * @param pOption Options of the mnode.
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
61
 */
62
int32_t mndAlter(SMnode *pMnode, const SMnodeOpt *pOption);
S
Shengliang Guan 已提交
63 64

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

/**
S
monitor  
Shengliang Guan 已提交
72
 * @brief Get mnode monitor info.
S
Shengliang Guan 已提交
73
 *
S
Shengliang Guan 已提交
74
 * @param pMnode The mnode object.
S
monitor  
Shengliang Guan 已提交
75 76 77
 * @param pClusterInfo
 * @param pVgroupInfo
 * @param pGrantInfo
S
Shengliang Guan 已提交
78
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
79
 */
S
monitor  
Shengliang Guan 已提交
80 81
int32_t mndGetMonitorInfo(SMnode *pMnode, SMonClusterInfo *pClusterInfo, SMonVgroupInfo *pVgroupInfo,
                          SMonGrantInfo *pGrantInfo);
S
Shengliang Guan 已提交
82

S
Shengliang Guan 已提交
83
/**
S
Shengliang Guan 已提交
84
 * @brief Get user authentication info.
S
Shengliang Guan 已提交
85
 *
S
Shengliang Guan 已提交
86
 * @param pMnode The mnode object.
S
Shengliang Guan 已提交
87 88 89 90 91
 * @param user
 * @param spi
 * @param encrypt
 * @param secret
 * @param ckey
S
Shengliang Guan 已提交
92
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
93
 */
94
int32_t mndRetriveAuth(SMnode *pMnode, char *user, char *spi, char *encrypt, char *secret, char *ckey);
S
Shengliang Guan 已提交
95

S
Shengliang Guan 已提交
96
/**
S
Shengliang Guan 已提交
97
 * @brief Process the read, write, sync request.
S
Shengliang Guan 已提交
98
 *
S
Shengliang Guan 已提交
99 100
 * @param pMsg The request msg.
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
101
 */
S
Shengliang Guan 已提交
102
int32_t mndProcessMsg(SNodeMsg *pMsg);
S
Shengliang Guan 已提交
103

H
refact  
Hongze Cheng 已提交
104 105 106 107
#ifdef __cplusplus
}
#endif

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