mnode.h 4.2 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;
27 28 29
typedef void (*SendMsgToDnodeFp)(SDnode *pDnode, struct SEpSet *epSet, struct SRpcMsg *rpcMsg);
typedef void (*SendMsgToMnodeFp)(SDnode *pDnode, struct SRpcMsg *rpcMsg);
typedef void (*SendRedirectMsgFp)(SDnode *pDnode, struct SRpcMsg *rpcMsg);
S
Shengliang Guan 已提交
30

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

S
Shengliang Guan 已提交
45 46 47 48 49 50 51 52 53 54 55 56
typedef struct SMnodeCfg {
  int32_t sver;
  int8_t  enableTelem;
  int32_t statusInterval;
  int32_t shellActivityTimer;
  char   *timezone;
  char   *locale;
  char   *charset;
  char   *buildinfo;
  char   *gitinfo;
} SMnodeCfg;

57
typedef struct {
S
Shengliang Guan 已提交
58
  int32_t           dnodeId;
S
Shengliang Guan 已提交
59
  int64_t           clusterId;
S
Shengliang Guan 已提交
60 61 62
  int8_t            replica;
  int8_t            selfIndex;
  SReplica          replicas[TSDB_MAX_REPLICA];
S
Shengliang Guan 已提交
63
  SMnodeCfg         cfg;
S
Shengliang Guan 已提交
64 65 66
  SDnode           *pDnode;
  SendMsgToDnodeFp  sendMsgToDnodeFp;
  SendMsgToMnodeFp  sendMsgToMnodeFp;
S
Shengliang Guan 已提交
67
  SendRedirectMsgFp sendRedirectMsgFp;
S
Shengliang Guan 已提交
68
} SMnodeOpt;
S
Shengliang Guan 已提交
69 70 71 72 73

/* ------------------------ SMnode ------------------------ */
/**
 * @brief Open a mnode.
 *
S
Shengliang Guan 已提交
74 75 76
 * @param path Path of the mnode.
 * @param pOption Option of the mnode.
 * @return SMnode* The mnode object.
S
Shengliang Guan 已提交
77
 */
78
SMnode *mndOpen(const char *path, const SMnodeOpt *pOption);
S
Shengliang Guan 已提交
79 80

/**
S
Shengliang Guan 已提交
81
 * @brief Close a mnode.
S
Shengliang Guan 已提交
82
 *
S
Shengliang Guan 已提交
83
 * @param pMnode The mnode object to close.
S
Shengliang Guan 已提交
84
 */
85
void mndClose(SMnode *pMnode);
S
Shengliang Guan 已提交
86 87

/**
S
Shengliang Guan 已提交
88
 * @brief Close a mnode.
S
Shengliang Guan 已提交
89
 *
S
Shengliang Guan 已提交
90 91 92
 * @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 已提交
93
 */
94
int32_t mndAlter(SMnode *pMnode, const SMnodeOpt *pOption);
S
Shengliang Guan 已提交
95 96 97 98 99 100

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

/**
S
Shengliang Guan 已提交
104
 * @brief Get mnode statistics info.
S
Shengliang Guan 已提交
105
 *
S
Shengliang Guan 已提交
106
 * @param pMnode The mnode object.
S
Shengliang Guan 已提交
107
 * @param pLoad Statistics of the mnode.
S
Shengliang Guan 已提交
108
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
109
 */
110
int32_t mndGetLoad(SMnode *pMnode, SMnodeLoad *pLoad);
S
Shengliang Guan 已提交
111

S
Shengliang Guan 已提交
112
/**
S
Shengliang Guan 已提交
113
 * @brief Get user authentication info.
S
Shengliang Guan 已提交
114
 *
S
Shengliang Guan 已提交
115
 * @param pMnode The mnode object.
S
Shengliang Guan 已提交
116 117 118 119 120
 * @param user
 * @param spi
 * @param encrypt
 * @param secret
 * @param ckey
S
Shengliang Guan 已提交
121
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
122
 */
123
int32_t mndRetriveAuth(SMnode *pMnode, char *user, char *spi, char *encrypt, char *secret, char *ckey);
S
Shengliang Guan 已提交
124

S
Shengliang Guan 已提交
125
/**
S
Shengliang Guan 已提交
126
 * @brief Initialize mnode msg.
S
Shengliang Guan 已提交
127
 *
S
Shengliang Guan 已提交
128 129 130
 * @param pMnode The mnode object.
 * @param pMsg The request rpc msg.
 * @return int32_t The created mnode msg.
S
Shengliang Guan 已提交
131
 */
132
SMnodeMsg *mndInitMsg(SMnode *pMnode, SRpcMsg *pRpcMsg);
S
Shengliang Guan 已提交
133

S
Shengliang Guan 已提交
134
/**
S
Shengliang Guan 已提交
135
 * @brief Cleanup mnode msg.
S
Shengliang Guan 已提交
136
 *
S
Shengliang Guan 已提交
137
 * @param pMsg The request msg.
S
Shengliang Guan 已提交
138
 */
139
void mndCleanupMsg(SMnodeMsg *pMsg);
S
Shengliang Guan 已提交
140 141

/**
S
Shengliang Guan 已提交
142
 * @brief Cleanup mnode msg.
S
Shengliang Guan 已提交
143
 *
S
Shengliang Guan 已提交
144 145
 * @param pMsg The request msg.
 * @param code The error code.
S
Shengliang Guan 已提交
146
 */
147
void mndSendRsp(SMnodeMsg *pMsg, int32_t code);
S
Shengliang Guan 已提交
148

S
Shengliang Guan 已提交
149
/**
S
Shengliang Guan 已提交
150
 * @brief Process the read request.
S
Shengliang Guan 已提交
151
 *
S
Shengliang Guan 已提交
152 153
 * @param pMsg The request msg.
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
154
 */
155
void mndProcessReadMsg(SMnodeMsg *pMsg);
S
Shengliang Guan 已提交
156 157

/**
S
Shengliang Guan 已提交
158
 * @brief Process the write request.
S
Shengliang Guan 已提交
159
 *
S
Shengliang Guan 已提交
160 161
 * @param pMsg The request msg.
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
162
 */
163
void mndProcessWriteMsg(SMnodeMsg *pMsg);
S
Shengliang Guan 已提交
164 165

/**
S
Shengliang Guan 已提交
166
 * @brief Process the sync request.
S
Shengliang Guan 已提交
167
 *
S
Shengliang Guan 已提交
168 169
 * @param pMsg The request msg.
 * @return int32_t 0 for success, -1 for failure.
S
Shengliang Guan 已提交
170
 */
171
void mndProcessSyncMsg(SMnodeMsg *pMsg);
S
Shengliang Guan 已提交
172

H
refact  
Hongze Cheng 已提交
173 174 175 176
#ifdef __cplusplus
}
#endif

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