dnd.h 5.5 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

S
shm  
Shengliang Guan 已提交
77 78 79 80 81 82
typedef struct {
  EWorkerType type;
  const char *name;
  int32_t     minNum;
  int32_t     maxNum;
  void       *queueFp;
S
shm  
Shengliang Guan 已提交
83
  void       *param;
S
shm  
Shengliang Guan 已提交
84 85 86 87 88 89 90
  STaosQueue *queue;
  union {
    SQWorkerPool pool;
    SWWorkerPool mpool;
  };
} SDnodeWorker;

S
shm  
Shengliang Guan 已提交
91
typedef struct SMsgHandle {
S
shm  
Shengliang Guan 已提交
92
  NodeMsgFp     msgFp;
S
shm  
Shengliang Guan 已提交
93 94
  SMgmtWrapper *pWrapper;
} SMsgHandle;
S
shm  
Shengliang Guan 已提交
95 96

typedef struct SMgmtFp {
S
shm  
Shengliang Guan 已提交
97 98
  OpenNodeFp    openFp;
  CloseNodeFp   closeFp;
S
shm  
Shengliang Guan 已提交
99
  StartNodeFp   startFp;
S
shm  
Shengliang Guan 已提交
100 101
  CreateNodeFp  createMsgFp;
  DropNodeFp    dropMsgFp;
S
shm  
Shengliang Guan 已提交
102
  RequireNodeFp requiredFp;
S
shm  
Shengliang Guan 已提交
103 104 105 106 107
} SMgmtFp;

typedef struct SMgmtWrapper {
  const char *name;
  char       *path;
S
shm  
Shengliang Guan 已提交
108
  int32_t     refCount;
S
shm  
Shengliang Guan 已提交
109
  SRWLatch    latch;
S
shm  
Shengliang Guan 已提交
110
  bool        deployed;
S
shm  
Shengliang Guan 已提交
111 112 113 114
  bool        required;
  EProcType   procType;
  SProcObj   *pProc;
  void       *pMgmt;
S
Shengliang Guan 已提交
115
  SDnode     *pDnode;
S
shm  
Shengliang Guan 已提交
116
  NodeMsgFp   msgFps[TDMT_MAX];
S
shm  
Shengliang Guan 已提交
117
  SMgmtFp     fp;
S
shm  
Shengliang Guan 已提交
118
} SMgmtWrapper;
S
Shengliang Guan 已提交
119

S
shm  
Shengliang Guan 已提交
120 121 122 123 124 125
typedef struct {
  void      *serverRpc;
  void      *clientRpc;
  SMsgHandle msgHandles[TDMT_MAX];
} STransMgmt;

S
Shengliang Guan 已提交
126
typedef struct SDnode {
S
shm  
Shengliang Guan 已提交
127 128 129
  int64_t      clusterId;
  int32_t      dnodeId;
  int32_t      numOfSupportVnodes;
S
shm  
Shengliang Guan 已提交
130
  int64_t      rebootTime;
S
shm  
Shengliang Guan 已提交
131 132 133 134 135 136 137 138 139
  char        *localEp;
  char        *localFqdn;
  char        *firstEp;
  char        *secondEp;
  char        *dataDir;
  SDiskCfg    *pDisks;
  int32_t      numOfDisks;
  uint16_t     serverPort;
  bool         dropped;
S
Shengliang Guan 已提交
140
  EDndStatus   status;
S
shm  
Shengliang Guan 已提交
141 142 143
  EDndEvent    event;
  EProcType    procType;
  SStartupReq  startup;
S
Shengliang Guan 已提交
144
  TdFilePtr    pLockFile;
S
shm  
Shengliang Guan 已提交
145
  STransMgmt   trans;
S
shm  
Shengliang Guan 已提交
146
  SMgmtWrapper wrappers[NODE_MAX];
S
Shengliang Guan 已提交
147 148
} SDnode;

S
shm  
Shengliang Guan 已提交
149 150
EDndStatus    dndGetStatus(SDnode *pDnode);
void          dndSetStatus(SDnode *pDnode, EDndStatus stat);
S
shm  
Shengliang Guan 已提交
151
SMgmtWrapper *dndAcquireWrapper(SDnode *pDnode, ENodeType nodeType);
S
shm  
Shengliang Guan 已提交
152
void          dndSetMsgHandle(SMgmtWrapper *pWrapper, int32_t msgType, NodeMsgFp nodeMsgFp);
S
shm  
Shengliang Guan 已提交
153
void          dndReportStartup(SDnode *pDnode, char *pName, char *pDesc);
S
shm  
Shengliang Guan 已提交
154
void          dndSendMonitorReport(SDnode *pDnode);
S
shm  
Shengliang Guan 已提交
155

S
shm  
Shengliang Guan 已提交
156 157 158
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 已提交
159

S
shm  
Shengliang Guan 已提交
160
int32_t dndInitWorker(void *param, SDnodeWorker *pWorker, EWorkerType type, const char *name, int32_t minNum,
S
shm  
Shengliang Guan 已提交
161 162
                      int32_t maxNum, void *queueFp);
void    dndCleanupWorker(SDnodeWorker *pWorker);
S
shm  
Shengliang Guan 已提交
163
int32_t dndWriteMsgToWorker(SDnodeWorker *pWorker, void *pMsg);
S
shm  
Shengliang Guan 已提交
164

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

S
shm  
Shengliang Guan 已提交
167 168 169
int32_t dndReadFile(SMgmtWrapper *pWrapper, bool *pDeployed);
int32_t dndWriteFile(SMgmtWrapper *pWrapper, bool deployed);

S
Shengliang Guan 已提交
170 171 172 173
#ifdef __cplusplus
}
#endif

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