dnd.h 5.1 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
shm  
Shengliang Guan 已提交
16 17
#ifndef _TD_DND_H_
#define _TD_DND_H_
S
Shengliang Guan 已提交
18 19

#include "os.h"
S
Shengliang Guan 已提交
20 21

#include "cJSON.h"
H
Haojun Liao 已提交
22
#include "monitor.h"
S
Shengliang Guan 已提交
23 24
#include "tcache.h"
#include "tcrc32c.h"
H
Haojun Liao 已提交
25 26
#include "tdatablock.h"
#include "tglobal.h"
S
Shengliang Guan 已提交
27
#include "thash.h"
S
Shengliang Guan 已提交
28
#include "tlockfree.h"
S
Shengliang Guan 已提交
29
#include "tlog.h"
S
Shengliang Guan 已提交
30
#include "tmsg.h"
S
shm  
Shengliang Guan 已提交
31
#include "tprocess.h"
S
Shengliang Guan 已提交
32
#include "tqueue.h"
S
Shengliang Guan 已提交
33 34 35
#include "trpc.h"
#include "tthread.h"
#include "ttime.h"
S
Shengliang Guan 已提交
36
#include "tworker.h"
S
Shengliang Guan 已提交
37 38

#include "dnode.h"
S
Shengliang Guan 已提交
39
#include "tfs.h"
S
shm  
Shengliang Guan 已提交
40
#include "wal.h"
S
shm  
Shengliang Guan 已提交
41 42 43 44

#ifdef __cplusplus
extern "C" {
#endif
S
shm  
Shengliang Guan 已提交
45

46 47 48 49 50 51
#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 已提交
52

S
shm  
Shengliang Guan 已提交
53
typedef enum { DNODE, VNODES, QNODE, SNODE, MNODE, BNODE, NODE_MAX } ENodeType;
S
shm  
Shengliang Guan 已提交
54
typedef enum { DND_STAT_INIT, DND_STAT_RUNNING, DND_STAT_STOPPED } EDndStatus;
S
shm  
Shengliang Guan 已提交
55
typedef enum { DND_ENV_INIT, DND_ENV_READY, DND_ENV_CLEANUP } EEnvStatus;
S
Shengliang Guan 已提交
56
typedef enum { DND_WORKER_SINGLE, DND_WORKER_MULTI } EWorkerType;
S
shm  
Shengliang Guan 已提交
57
typedef enum { PROC_SINGLE, PROC_CHILD, PROC_PARENT } EProcType;
S
Shengliang Guan 已提交
58

S
shm  
Shengliang Guan 已提交
59 60
typedef struct SMgmtFp      SMgmtFp;
typedef struct SMgmtWrapper SMgmtWrapper;
S
shm  
Shengliang Guan 已提交
61
typedef struct SMsgHandle   SMsgHandle;
S
shm  
Shengliang Guan 已提交
62 63 64 65 66 67
typedef struct SDnodeMgmt   SDnodeMgmt;
typedef struct SVnodesMgmt  SVnodesMgmt;
typedef struct SMnodeMgmt   SMnodeMgmt;
typedef struct SQnodeMgmt   SQnodeMgmt;
typedef struct SSnodeMgmt   SSnodeMgmt;
typedef struct SBnodeMgmt   SBnodeMgmt;
S
shm  
Shengliang Guan 已提交
68

S
shm  
Shengliang Guan 已提交
69
typedef int32_t (*NodeMsgFp)(void *pMgmt, SNodeMsg *pMsg);
S
shm  
Shengliang Guan 已提交
70
typedef int32_t (*OpenNodeFp)(SMgmtWrapper *pWrapper);
S
shm  
Shengliang Guan 已提交
71
typedef void (*CloseNodeFp)(SMgmtWrapper *pWrapper);
S
shm  
Shengliang Guan 已提交
72
typedef int32_t (*StartNodeFp)(SMgmtWrapper *pWrapper);
S
shm  
Shengliang Guan 已提交
73 74
typedef int32_t (*CreateNodeFp)(SMgmtWrapper *pWrapper, SNodeMsg *pMsg);
typedef int32_t (*DropNodeFp)(SMgmtWrapper *pWrapper, SNodeMsg *pMsg);
S
shm  
Shengliang Guan 已提交
75
typedef int32_t (*RequireNodeFp)(SMgmtWrapper *pWrapper, bool *required);
S
shm  
Shengliang Guan 已提交
76 77

typedef struct SMsgHandle {
S
Shengliang Guan 已提交
78 79
  SMgmtWrapper *pQndWrapper; 
  SMgmtWrapper *pMndWrapper;
S
shm  
Shengliang Guan 已提交
80 81
  SMgmtWrapper *pWrapper;
} SMsgHandle;
S
shm  
Shengliang Guan 已提交
82 83

typedef struct SMgmtFp {
S
shm  
Shengliang Guan 已提交
84 85
  OpenNodeFp    openFp;
  CloseNodeFp   closeFp;
S
shm  
Shengliang Guan 已提交
86
  StartNodeFp   startFp;
S
shm  
Shengliang Guan 已提交
87 88
  CreateNodeFp  createMsgFp;
  DropNodeFp    dropMsgFp;
S
shm  
Shengliang Guan 已提交
89
  RequireNodeFp requiredFp;
S
shm  
Shengliang Guan 已提交
90 91 92 93 94
} SMgmtFp;

typedef struct SMgmtWrapper {
  const char *name;
  char       *path;
S
shm  
Shengliang Guan 已提交
95
  int32_t     refCount;
S
shm  
Shengliang Guan 已提交
96
  SRWLatch    latch;
S
shm  
Shengliang Guan 已提交
97
  bool        deployed;
S
shm  
Shengliang Guan 已提交
98 99 100 101
  bool        required;
  EProcType   procType;
  SProcObj   *pProc;
  void       *pMgmt;
S
Shengliang Guan 已提交
102
  SDnode     *pDnode;
S
shm  
Shengliang Guan 已提交
103
  NodeMsgFp   msgFps[TDMT_MAX];
104
  int32_t     msgVgIds[TDMT_MAX];  // Handle the case where the same message type is distributed to qnode or vnode
S
shm  
Shengliang Guan 已提交
105
  SMgmtFp     fp;
S
shm  
Shengliang Guan 已提交
106
} SMgmtWrapper;
S
Shengliang Guan 已提交
107

S
shm  
Shengliang Guan 已提交
108 109 110 111 112 113
typedef struct {
  void      *serverRpc;
  void      *clientRpc;
  SMsgHandle msgHandles[TDMT_MAX];
} STransMgmt;

S
Shengliang Guan 已提交
114
typedef struct SDnode {
S
shm  
Shengliang Guan 已提交
115 116 117
  int64_t      clusterId;
  int32_t      dnodeId;
  int32_t      numOfSupportVnodes;
S
shm  
Shengliang Guan 已提交
118
  int64_t      rebootTime;
S
shm  
Shengliang Guan 已提交
119 120 121 122 123 124 125 126 127
  char        *localEp;
  char        *localFqdn;
  char        *firstEp;
  char        *secondEp;
  char        *dataDir;
  SDiskCfg    *pDisks;
  int32_t      numOfDisks;
  uint16_t     serverPort;
  bool         dropped;
S
Shengliang Guan 已提交
128
  EDndStatus   status;
S
shm  
Shengliang Guan 已提交
129 130 131
  EDndEvent    event;
  EProcType    procType;
  SStartupReq  startup;
S
Shengliang Guan 已提交
132
  TdFilePtr    pLockFile;
S
shm  
Shengliang Guan 已提交
133
  STransMgmt   trans;
S
shm  
Shengliang Guan 已提交
134
  SMgmtWrapper wrappers[NODE_MAX];
S
Shengliang Guan 已提交
135 136
} SDnode;

S
shm  
Shengliang Guan 已提交
137 138
EDndStatus    dndGetStatus(SDnode *pDnode);
void          dndSetStatus(SDnode *pDnode, EDndStatus stat);
S
shm  
Shengliang Guan 已提交
139
SMgmtWrapper *dndAcquireWrapper(SDnode *pDnode, ENodeType nodeType);
140
void          dndSetMsgHandle(SMgmtWrapper *pWrapper, int32_t msgType, NodeMsgFp nodeMsgFp, int32_t vgId);
S
shm  
Shengliang Guan 已提交
141
void          dndReportStartup(SDnode *pDnode, char *pName, char *pDesc);
S
shm  
Shengliang Guan 已提交
142
void          dndSendMonitorReport(SDnode *pDnode);
S
shm  
Shengliang Guan 已提交
143

S
shm  
Shengliang Guan 已提交
144 145 146
int32_t dndSendReqToMnode(SMgmtWrapper *pWrapper, SRpcMsg *pMsg);
int32_t dndSendReqToDnode(SMgmtWrapper *pWrapper, SEpSet *pEpSet, SRpcMsg *pMsg);
void    dndSendRsp(SMgmtWrapper *pWrapper, SRpcMsg *pRsp);
S
shm  
Shengliang Guan 已提交
147

S
shm  
Shengliang Guan 已提交
148
int32_t dndProcessNodeMsg(SDnode *pDnode, SNodeMsg *pMsg);
S
shm  
Shengliang Guan 已提交
149

S
shm  
Shengliang Guan 已提交
150 151 152
int32_t dndReadFile(SMgmtWrapper *pWrapper, bool *pDeployed);
int32_t dndWriteFile(SMgmtWrapper *pWrapper, bool deployed);

S
Shengliang Guan 已提交
153 154 155 156
#ifdef __cplusplus
}
#endif

S
shm  
Shengliang Guan 已提交
157
#endif /*_TD_DND_H_*/