dmMgmt.h 3.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
Shengliang Guan 已提交
16 17
#ifndef _TD_DND_IMP_H_
#define _TD_DND_IMP_H_
S
Shengliang Guan 已提交
18

S
Shengliang Guan 已提交
19 20 21 22
// tobe deleted
#include "uv.h"

#include "dmUtil.h"
S
Shengliang Guan 已提交
23 24 25 26 27

#ifdef __cplusplus
extern "C" {
#endif

S
Shengliang Guan 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
typedef struct SMgmtWrapper {
  SDnode      *pDnode;
  SMgmtFunc    func;
  void        *pMgmt;
  const char  *name;
  char        *path;
  int32_t      refCount;
  SRWLatch     latch;
  EDndNodeType nodeType;
  bool         deployed;
  bool         required;
  EDndProcType procType;
  int32_t      procId;
  SProcObj    *procObj;
  SShm         procShm;
  NodeMsgFp    msgFps[TDMT_MAX];
} SMgmtWrapper;

typedef struct {
  EDndNodeType defaultNtype;
  bool         needCheckVgId;
} SMsgHandle;

typedef struct {
  void      *serverRpc;
  void      *clientRpc;
  SMsgHandle msgHandles[TDMT_MAX];
} SDnodeTrans;

typedef struct {
  char name[TSDB_STEP_NAME_LEN];
  char desc[TSDB_STEP_DESC_LEN];
} SStartupInfo;

typedef struct SUdfdData {
  bool         startCalled;
  bool         needCleanUp;
  uv_loop_t    loop;
  uv_thread_t  thread;
  uv_barrier_t barrier;
  uv_process_t process;
  int          spawnErr;
  uv_pipe_t    ctrlPipe;
  uv_async_t   stopAsync;
  int32_t      stopCalled;
  int32_t      dnodeId;
} SUdfdData;

typedef struct SDnode {
  EDndProcType  ptype;
  EDndNodeType  ntype;
  EDndEvent     event;
  EDndRunStatus status;
  SStartupInfo  startup;
  SDnodeTrans   trans;
  SUdfdData     udfdData;
  TdThreadMutex mutex;
  SRWLatch      latch;
  SEpSet        mnodeEps;
  TdFilePtr     lockfile;
  SMgmtInputOpt input;
  SMgmtWrapper  wrappers[NODE_END];
} SDnode;

// dmExec.c
S
Shengliang Guan 已提交
93 94
int32_t dmOpenNode(SMgmtWrapper *pWrapper);
void    dmCloseNode(SMgmtWrapper *pWrapper);
S
Shengliang Guan 已提交
95

S
Shengliang Guan 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
// dmObj.c
SMgmtWrapper *dmAcquireWrapper(SDnode *pDnode, EDndNodeType nType);
int32_t       dmMarkWrapper(SMgmtWrapper *pWrapper);
void          dmReleaseWrapper(SMgmtWrapper *pWrapper);

void dmSetStatus(SDnode *pDnode, EDndRunStatus stype);
void dmSetEvent(SDnode *pDnode, EDndEvent event);
void dmReportStartup(SDnode *pDnode, const char *pName, const char *pDesc);
void dmReportStartupByWrapper(SMgmtWrapper *pWrapper, const char *pName, const char *pDesc);

void    dmProcessServerStatusReq(SDnode *pDnode, SRpcMsg *pMsg);
void    dmProcessNetTestReq(SDnode *pDnode, SRpcMsg *pMsg);
int32_t dmProcessCreateNodeReq(SDnode *pDnode, EDndNodeType ntype, SNodeMsg *pMsg);
int32_t dmProcessDropNodeReq(SDnode *pDnode, EDndNodeType ntype, SNodeMsg *pMsg);

S
Shengliang Guan 已提交
111
// dmTransport.c
112 113 114 115
int32_t  dmInitServer(SDnode *pDnode);
void     dmCleanupServer(SDnode *pDnode);
int32_t  dmInitClient(SDnode *pDnode);
void     dmCleanupClient(SDnode *pDnode);
S
Shengliang Guan 已提交
116
SProcCfg dmGenProcCfg(SMgmtWrapper *pWrapper);
S
Shengliang Guan 已提交
117
SMsgCb   dmGetMsgcb(SMgmtWrapper *pWrapper);
S
Shengliang Guan 已提交
118
int32_t  dmInitMsgHandle(SDnode *pDnode);
S
Shengliang Guan 已提交
119

S
Shengliang Guan 已提交
120
// mgmt nodes
S
Shengliang Guan 已提交
121 122 123 124 125 126
SMgmtFunc dmGetMgmtFunc();
SMgmtFunc bmGetMgmtFunc();
SMgmtFunc qmGetMgmtFunc();
SMgmtFunc smGetMgmtFunc();
SMgmtFunc vmGetMgmtFunc();
SMgmtFunc mmGetMgmtFunc();
S
Shengliang Guan 已提交
127

S
Shengliang Guan 已提交
128 129 130 131
#ifdef __cplusplus
}
#endif

S
Shengliang Guan 已提交
132
#endif /*_TD_DND_IMP_H_*/