dmUtil.h 6.3 KB
Newer Older
S
Shengliang Guan 已提交
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_DM_INT_H_
#define _TD_DM_INT_H_
S
Shengliang Guan 已提交
18

S
Shengliang 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
#include "cJSON.h"
#include "tcache.h"
#include "tcrc32c.h"
#include "tdatablock.h"
#include "tglobal.h"
#include "thash.h"
#include "tlockfree.h"
#include "tlog.h"
#include "tmsg.h"
#include "tmsgcb.h"
#include "tqueue.h"
#include "trpc.h"
#include "tthread.h"
#include "ttime.h"
#include "tworker.h"

#include "dnode.h"
#include "mnode.h"
#include "monitor.h"
dengyihao's avatar
dengyihao 已提交
38
#include "qnode.h"
S
Shengliang 已提交
39 40 41 42
#include "sync.h"
#include "wal.h"

#include "libs/function/function.h"
S
Shengliang Guan 已提交
43 44 45 46
#ifdef __cplusplus
extern "C" {
#endif

S
Shengliang Guan 已提交
47 48 49 50 51 52 53 54 55
// clang-format off

#define dFatal(...) { if (dDebugFlag & DEBUG_FATAL) { taosPrintLog("DND FATAL ", DEBUG_FATAL, 255,        __VA_ARGS__); }}
#define dError(...) { if (dDebugFlag & DEBUG_ERROR) { taosPrintLog("DND ERROR ", DEBUG_ERROR, 255,        __VA_ARGS__); }}
#define dWarn(...)  { if (dDebugFlag & DEBUG_WARN)  { taosPrintLog("DND WARN ",  DEBUG_WARN,  255,        __VA_ARGS__); }}
#define dInfo(...)  { if (dDebugFlag & DEBUG_INFO)  { taosPrintLog("DND ",       DEBUG_INFO,  255,        __VA_ARGS__); }}
#define dDebug(...) { if (dDebugFlag & DEBUG_DEBUG) { taosPrintLog("DND ",       DEBUG_DEBUG, dDebugFlag, __VA_ARGS__); }}
#define dTrace(...) { if (dDebugFlag & DEBUG_TRACE) { taosPrintLog("DND ",       DEBUG_TRACE, dDebugFlag, __VA_ARGS__); }}

S
Shengliang Guan 已提交
56 57 58 59 60 61
#define dGFatal(param, ...) { char buf[40] = {0}; TRACE_TO_STR(trace, buf); dFatal(param ", gtid:%s", __VA_ARGS__, buf);}
#define dGError(param, ...) { char buf[40] = {0}; TRACE_TO_STR(trace, buf); dError(param ", gtid:%s", __VA_ARGS__, buf);}
#define dGWarn(param, ...)  { char buf[40] = {0}; TRACE_TO_STR(trace, buf); dWarn (param ", gtid:%s", __VA_ARGS__, buf);}
#define dGInfo(param, ...)  { char buf[40] = {0}; TRACE_TO_STR(trace, buf); dInfo (param ", gtid:%s", __VA_ARGS__, buf);}
#define dGDebug(param, ...) { char buf[40] = {0}; TRACE_TO_STR(trace, buf); dDebug(param ", gtid:%s", __VA_ARGS__, buf);}
#define dGTrace(param, ...) { char buf[40] = {0}; TRACE_TO_STR(trace, buf); dTrace(param ", gtid:%s", __VA_ARGS__, buf);}
S
Shengliang Guan 已提交
62 63

// clang-format on
S
Shengliang 已提交
64 65 66

typedef enum {
  DNODE = 0,
S
Shengliang Guan 已提交
67 68 69 70
  MNODE = 1,
  VNODE = 2,
  QNODE = 3,
  SNODE = 4,
S
Shengliang Guan 已提交
71
  NODE_END = 5,
S
Shengliang 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
} EDndNodeType;

typedef enum {
  DND_STAT_INIT,
  DND_STAT_RUNNING,
  DND_STAT_STOPPED,
} EDndRunStatus;

typedef enum {
  DND_ENV_INIT,
  DND_ENV_READY,
  DND_ENV_CLEANUP,
} EDndEnvStatus;

typedef enum {
  DND_PROC_SINGLE,
  DND_PROC_CHILD,
  DND_PROC_PARENT,
  DND_PROC_TEST,
} EDndProcType;

S
Shengliang Guan 已提交
93 94 95 96 97 98 99
typedef enum {
  DND_FUNC_REQ = 1,
  DND_FUNC_RSP = 2,
  DND_FUNC_REGIST = 3,
  DND_FUNC_RELEASE = 4,
} EProcFuncType;

100 101
typedef int32_t (*ProcessCreateNodeFp)(EDndNodeType ntype, SRpcMsg *pMsg);
typedef int32_t (*ProcessDropNodeFp)(EDndNodeType ntype, SRpcMsg *pMsg);
S
Shengliang Guan 已提交
102
typedef void (*SendMonitorReportFp)();
103 104
typedef void (*GetVnodeLoadsFp)(SMonVloadInfo *pInfo);
typedef void (*GetMnodeLoadsFp)(SMonMloadInfo *pInfo);
D
dapan1121 已提交
105
typedef void (*GetQnodeLoadsFp)(SQnodeLoad *pInfo);
S
Shengliang 已提交
106

S
Shengliang Guan 已提交
107
typedef struct {
108 109 110 111 112 113 114 115 116 117 118 119
  int32_t        dnodeId;
  int64_t        clusterId;
  int64_t        dnodeVer;
  int64_t        updateTime;
  int64_t        rebootTime;
  bool           dropped;
  bool           stopped;
  SEpSet         mnodeEps;
  SArray        *dnodeEps;
  SHashObj      *dnodeHash;
  TdThreadRwlock lock;
  SMsgCb         msgCb;
S
Shengliang Guan 已提交
120 121
} SDnodeData;

S
Shengliang 已提交
122
typedef struct {
S
Shengliang 已提交
123 124
  const char         *path;
  const char         *name;
S
Shengliang Guan 已提交
125 126
  SDnodeData         *pData;
  SMsgCb              msgCb;
S
Shengliang 已提交
127 128
  ProcessCreateNodeFp processCreateNodeFp;
  ProcessDropNodeFp   processDropNodeFp;
S
Shengliang Guan 已提交
129 130 131
  SendMonitorReportFp sendMonitorReportFp;
  GetVnodeLoadsFp     getVnodeLoadsFp;
  GetMnodeLoadsFp     getMnodeLoadsFp;
D
dapan1121 已提交
132
  GetQnodeLoadsFp     getQnodeLoadsFp;
S
Shengliang 已提交
133 134 135
} SMgmtInputOpt;

typedef struct {
S
Shengliang Guan 已提交
136
  void *pMgmt;
S
Shengliang 已提交
137 138
} SMgmtOutputOpt;

S
Shengliang Guan 已提交
139
typedef int32_t (*NodeMsgFp)(void *pMgmt, SRpcMsg *pMsg);
S
Shengliang Guan 已提交
140
typedef int32_t (*NodeOpenFp)(SMgmtInputOpt *pInput, SMgmtOutputOpt *pOutput);
S
Shengliang 已提交
141 142 143
typedef void (*NodeCloseFp)(void *pMgmt);
typedef int32_t (*NodeStartFp)(void *pMgmt);
typedef void (*NodeStopFp)(void *pMgmt);
S
Shengliang Guan 已提交
144
typedef int32_t (*NodeCreateFp)(const SMgmtInputOpt *pInput, SRpcMsg *pMsg);
145
typedef int32_t (*NodeDropFp)(const SMgmtInputOpt *pInput, SRpcMsg *pMsg);
S
Shengliang 已提交
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
typedef int32_t (*NodeRequireFp)(const SMgmtInputOpt *pInput, bool *required);
typedef SArray *(*NodeGetHandlesFp)();  // array of SMgmtHandle

typedef struct {
  NodeOpenFp       openFp;
  NodeCloseFp      closeFp;
  NodeStartFp      startFp;
  NodeStopFp       stopFp;
  NodeCreateFp     createFp;
  NodeDropFp       dropFp;
  NodeRequireFp    requiredFp;
  NodeGetHandlesFp getHandlesFp;
} SMgmtFunc;

typedef struct {
  tmsg_t    msgType;
  bool      needCheckVgId;
  NodeMsgFp msgFp;
} SMgmtHandle;

// dmUtil.c
const char *dmStatStr(EDndRunStatus stype);
const char *dmNodeLogName(EDndNodeType ntype);
const char *dmNodeProcName(EDndNodeType ntype);
S
Shengliang 已提交
170
const char *dmNodeName(EDndNodeType ntype);
S
Shengliang 已提交
171
const char *dmProcStr(EDndProcType ptype);
S
Shengliang Guan 已提交
172
const char *dmFuncStr(EProcFuncType etype);
S
Shengliang 已提交
173
void       *dmSetMgmtHandle(SArray *pArray, tmsg_t msgType, void *nodeMsgFp, bool needCheckVgId);
S
Shengliang 已提交
174
void        dmGetMonitorSystemInfo(SMonSysInfo *pInfo);
S
Shengliang Guan 已提交
175 176

// dmFile.c
S
Shengliang 已提交
177 178
int32_t   dmReadFile(const char *path, const char *name, bool *pDeployed);
int32_t   dmWriteFile(const char *path, const char *name, bool deployed);
S
Shengliang Guan 已提交
179
TdFilePtr dmCheckRunning(const char *dataDir);
S
Shengliang Guan 已提交
180
int32_t   dmReadShmFile(const char *path, const char *name, EDndNodeType runType, SShm *pShm);
S
Shengliang 已提交
181
int32_t   dmWriteShmFile(const char *path, const char *name, const SShm *pShm);
S
Shengliang Guan 已提交
182

S
Shengliang Guan 已提交
183 184 185 186
// dmEps.c
int32_t dmReadEps(SDnodeData *pData);
int32_t dmWriteEps(SDnodeData *pData);
void    dmUpdateEps(SDnodeData *pData, SArray *pDnodeEps);
S
Shengliang Guan 已提交
187
void    dmGetMnodeEpSet(SDnodeData *pData, SEpSet *pEpSet);
188
void    dmGetMnodeEpSetForRedirect(SDnodeData *pData, SRpcMsg *pMsg, SEpSet *pEpSet);
S
Shengliang Guan 已提交
189
void    dmSetMnodeEpSet(SDnodeData *pData, SEpSet *pEpSet);
S
Shengliang 已提交
190

S
Shengliang Guan 已提交
191 192 193 194
#ifdef __cplusplus
}
#endif

D
dapan1121 已提交
195
#endif /*_TD_DM_INT_H_*/