mnode.h 3.9 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 19 20 21 22

#ifdef __cplusplus
extern "C" {
#endif

S
Shengliang Guan 已提交
23 24 25
/* ------------------------ TYPES EXPOSED ------------------------ */
typedef struct SDnode    SDnode;
typedef struct SMnode    SMnode;
S
Shengliang Guan 已提交
26
typedef struct SMnodeMsg SMnodeMsg;
S
Shengliang Guan 已提交
27 28 29
typedef int32_t (*SendReqToDnodeFp)(SDnode *pDnode, struct SEpSet *epSet, struct SRpcMsg *rpcMsg);
typedef int32_t (*SendReqToMnodeFp)(SDnode *pDnode, struct SRpcMsg *rpcMsg);
typedef int32_t (*PutReqToMWriteQFp)(SDnode *pDnode, struct SRpcMsg *rpcMsg);
L
Liu Jicong 已提交
30
typedef int32_t (*PutReqToMReadQFp)(SDnode *pDnode, struct SRpcMsg *rpcMsg);
S
Shengliang Guan 已提交
31
typedef void (*SendRedirectRspFp)(SDnode *pDnode, struct SRpcMsg *rpcMsg);
S
Shengliang Guan 已提交
32

S
Shengliang Guan 已提交
33
typedef struct SMnodeLoad {
S
Shengliang Guan 已提交
34 35 36 37 38 39
  int64_t numOfDnode;
  int64_t numOfMnode;
  int64_t numOfVgroup;
  int64_t numOfDatabase;
  int64_t numOfSuperTable;
  int64_t numOfChildTable;
S
Shengliang Guan 已提交
40
  int64_t numOfNormalTable;
S
Shengliang Guan 已提交
41 42 43 44
  int64_t numOfColumn;
  int64_t totalPoints;
  int64_t totalStorage;
  int64_t compStorage;
S
Shengliang Guan 已提交
45
} SMnodeLoad;
S
Shengliang Guan 已提交
46

47
typedef struct {
S
Shengliang Guan 已提交
48
  int32_t           dnodeId;
S
Shengliang Guan 已提交
49
  int64_t           clusterId;
S
Shengliang Guan 已提交
50 51 52 53
  int8_t            replica;
  int8_t            selfIndex;
  SReplica          replicas[TSDB_MAX_REPLICA];
  SDnode           *pDnode;
S
Shengliang Guan 已提交
54
  PutReqToMWriteQFp putReqToMWriteQFp;
L
Liu Jicong 已提交
55
  PutReqToMReadQFp  putReqToMReadQFp;
S
Shengliang Guan 已提交
56 57 58
  SendReqToDnodeFp  sendReqToDnodeFp;
  SendReqToMnodeFp  sendReqToMnodeFp;
  SendRedirectRspFp sendRedirectRspFp;
S
Shengliang Guan 已提交
59
} SMnodeOpt;
S
Shengliang Guan 已提交
60 61 62 63 64

/* ------------------------ SMnode ------------------------ */
/**
 * @brief Open a mnode.
 *
S
Shengliang Guan 已提交
65 66 67
 * @param path Path of the mnode.
 * @param pOption Option of the mnode.
 * @return SMnode* The mnode object.
S
Shengliang Guan 已提交
68
 */
69
SMnode *mndOpen(const char *path, const SMnodeOpt *pOption);
S
Shengliang Guan 已提交
70 71

/**
S
Shengliang Guan 已提交
72
 * @brief Close a mnode.
S
Shengliang Guan 已提交
73
 *
S
Shengliang Guan 已提交
74
 * @param pMnode The mnode object to close.
S
Shengliang Guan 已提交
75
 */
76
void mndClose(SMnode *pMnode);
S
Shengliang Guan 已提交
77 78

/**
S
Shengliang Guan 已提交
79
 * @brief Close a mnode.
S
Shengliang Guan 已提交
80
 *
S
Shengliang Guan 已提交
81 82 83
 * @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 已提交
84
 */
85
int32_t mndAlter(SMnode *pMnode, const SMnodeOpt *pOption);
S
Shengliang Guan 已提交
86 87 88 89 90 91

/**
 * @brief Drop a mnode.
 *
 * @param path Path of the mnode.
 */
92
void mndDestroy(const char *path);
S
Shengliang Guan 已提交
93 94

/**
S
Shengliang Guan 已提交
95
 * @brief Get mnode statistics info.
S
Shengliang Guan 已提交
96
 *
S
Shengliang Guan 已提交
97
 * @param pMnode The mnode object.
S
Shengliang Guan 已提交
98
 * @param pLoad Statistics of the mnode.
S
Shengliang Guan 已提交
99
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
100
 */
101
int32_t mndGetLoad(SMnode *pMnode, SMnodeLoad *pLoad);
S
Shengliang Guan 已提交
102

S
Shengliang Guan 已提交
103
/**
S
Shengliang Guan 已提交
104
 * @brief Get user authentication info.
S
Shengliang Guan 已提交
105
 *
S
Shengliang Guan 已提交
106
 * @param pMnode The mnode object.
S
Shengliang Guan 已提交
107 108 109 110 111
 * @param user
 * @param spi
 * @param encrypt
 * @param secret
 * @param ckey
S
Shengliang Guan 已提交
112
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
113
 */
114
int32_t mndRetriveAuth(SMnode *pMnode, char *user, char *spi, char *encrypt, char *secret, char *ckey);
S
Shengliang Guan 已提交
115

S
Shengliang Guan 已提交
116
/**
S
Shengliang Guan 已提交
117
 * @brief Initialize mnode msg.
S
Shengliang Guan 已提交
118
 *
S
Shengliang Guan 已提交
119 120 121
 * @param pMnode The mnode object.
 * @param pMsg The request rpc msg.
 * @return int32_t The created mnode msg.
S
Shengliang Guan 已提交
122
 */
123
SMnodeMsg *mndInitMsg(SMnode *pMnode, SRpcMsg *pRpcMsg);
S
Shengliang Guan 已提交
124

S
Shengliang Guan 已提交
125
/**
S
Shengliang Guan 已提交
126
 * @brief Cleanup mnode msg.
S
Shengliang Guan 已提交
127
 *
S
Shengliang Guan 已提交
128
 * @param pMsg The request msg.
S
Shengliang Guan 已提交
129
 */
130
void mndCleanupMsg(SMnodeMsg *pMsg);
S
Shengliang Guan 已提交
131 132

/**
S
Shengliang Guan 已提交
133
 * @brief Cleanup mnode msg.
S
Shengliang Guan 已提交
134
 *
S
Shengliang Guan 已提交
135 136
 * @param pMsg The request msg.
 * @param code The error code.
S
Shengliang Guan 已提交
137
 */
138
void mndSendRsp(SMnodeMsg *pMsg, int32_t code);
S
Shengliang Guan 已提交
139

S
Shengliang Guan 已提交
140
/**
S
Shengliang Guan 已提交
141
 * @brief Process the read, write, sync request.
S
Shengliang Guan 已提交
142
 *
S
Shengliang Guan 已提交
143 144
 * @param pMsg The request msg.
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
145
 */
S
Shengliang Guan 已提交
146
void mndProcessMsg(SMnodeMsg *pMsg);
S
Shengliang Guan 已提交
147

H
refact  
Hongze Cheng 已提交
148 149 150 151
#ifdef __cplusplus
}
#endif

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