dmMgmt.h 4.9 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
// tobe deleted
#include "uv.h"

S
Shengliang Guan 已提交
22
#include "dmInt.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
typedef struct SMgmtWrapper SMgmtWrapper;

#define SINGLE_PROC             0
#define CHILD_PROC              1
#define PARENT_PROC             2
#define TEST_PROC               3
#define OnlyInSingleProc(ptype) (ptype == SINGLE_PROC)
#define OnlyInChildProc(ptype)  (ptype == CHILD_PROC)
#define OnlyInParentProc(ptype) (ptype == PARENT_PROC)
37
#define OnlyInTestProc(ptype)   (ptype == TEST_PROC)
S
Shengliang Guan 已提交
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
#define InChildProc(ptype)      (ptype & CHILD_PROC)
#define InParentProc(ptype)     (ptype & PARENT_PROC)

typedef struct {
  int32_t       head;
  int32_t       tail;
  int32_t       total;
  int32_t       avail;
  int32_t       items;
  char          name[8];
  TdThreadMutex mutex;
  tsem_t        sem;
  char          pBuffer[];
} SProcQueue;

typedef struct {
  SMgmtWrapper *wrapper;
  const char   *name;
  SHashObj     *hash;
  SProcQueue   *pqueue;
  SProcQueue   *cqueue;
  TdThread      pthread;
  TdThread      cthread;
  SShm          shm;
  int32_t       pid;
63
  EDndProcType  ptype;
S
Shengliang Guan 已提交
64 65 66
  bool          stop;
} SProc;

S
Shengliang Guan 已提交
67 68 69 70 71 72 73 74
typedef struct SMgmtWrapper {
  SDnode      *pDnode;
  SMgmtFunc    func;
  void        *pMgmt;
  const char  *name;
  char        *path;
  int32_t      refCount;
  SRWLatch     latch;
S
Shengliang Guan 已提交
75
  EDndNodeType ntype;
S
Shengliang Guan 已提交
76 77
  bool         deployed;
  bool         required;
S
Shengliang Guan 已提交
78
  SProc        proc;
S
Shengliang Guan 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
  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 {
113
  EDndProcType  ptype;
S
Shengliang Guan 已提交
114
  EDndNodeType  rtype;
S
Shengliang Guan 已提交
115 116 117 118 119 120 121
  EDndEvent     event;
  EDndRunStatus status;
  SStartupInfo  startup;
  SDnodeTrans   trans;
  SUdfdData     udfdData;
  TdThreadMutex mutex;
  TdFilePtr     lockfile;
S
Shengliang Guan 已提交
122
  SDnodeData    data;
S
Shengliang Guan 已提交
123 124 125 126
  SMgmtWrapper  wrappers[NODE_END];
} SDnode;

// dmExec.c
S
Shengliang Guan 已提交
127 128
int32_t dmOpenNode(SMgmtWrapper *pWrapper);
void    dmCloseNode(SMgmtWrapper *pWrapper);
S
Shengliang Guan 已提交
129

S
Shengliang Guan 已提交
130 131 132 133
// dmObj.c
SMgmtWrapper *dmAcquireWrapper(SDnode *pDnode, EDndNodeType nType);
int32_t       dmMarkWrapper(SMgmtWrapper *pWrapper);
void          dmReleaseWrapper(SMgmtWrapper *pWrapper);
S
Shengliang Guan 已提交
134
SMgmtInputOpt dmBuildMgmtInputOpt(SMgmtWrapper *pWrapper);
S
Shengliang Guan 已提交
135 136 137 138 139

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);
S
Shengliang Guan 已提交
140 141
void dmProcessServerStartupStatus(SDnode *pDnode, SRpcMsg *pMsg);
void dmProcessNetTestReq(SDnode *pDnode, SRpcMsg *pMsg);
S
Shengliang Guan 已提交
142

S
Shengliang Guan 已提交
143 144 145 146 147 148 149 150 151 152 153 154
// dmProc.c
int32_t dmInitProc(struct SMgmtWrapper *pWrapper);
void    dmCleanupProc(struct SMgmtWrapper *pWrapper);
int32_t dmRunProc(SProc *proc);
void    dmStopProc(SProc *proc);
int64_t dmRemoveProcRpcHandle(SProc *proc, void *handle);
void    dmCloseProcRpcHandles(SProc *proc);
int32_t dmPutToProcCQueue(SProc *proc, const void *pHead, int16_t headLen, const void *pBody, int32_t bodyLen,
                          void *handle, int64_t handleRef, EProcFuncType ftype);
void    dmPutToProcPQueue(SProc *proc, const void *pHead, int16_t headLen, const void *pBody, int32_t bodyLen,
                          EProcFuncType ftype);

S
Shengliang Guan 已提交
155
// dmTransport.c
S
Shengliang Guan 已提交
156 157 158 159 160 161 162
int32_t dmInitServer(SDnode *pDnode);
void    dmCleanupServer(SDnode *pDnode);
int32_t dmInitClient(SDnode *pDnode);
void    dmCleanupClient(SDnode *pDnode);
SMsgCb  dmGetMsgcb(SMgmtWrapper *pWrapper);
int32_t dmInitMsgHandle(SDnode *pDnode);
int32_t dmProcessNodeMsg(SMgmtWrapper *pWrapper, SNodeMsg *pMsg);
S
Shengliang Guan 已提交
163

S
Shengliang Guan 已提交
164
// mgmt nodes
S
Shengliang Guan 已提交
165 166 167 168 169 170
SMgmtFunc dmGetMgmtFunc();
SMgmtFunc bmGetMgmtFunc();
SMgmtFunc qmGetMgmtFunc();
SMgmtFunc smGetMgmtFunc();
SMgmtFunc vmGetMgmtFunc();
SMgmtFunc mmGetMgmtFunc();
S
Shengliang Guan 已提交
171

S
Shengliang Guan 已提交
172 173 174 175
#ifdef __cplusplus
}
#endif

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