mndInt.h 4.0 KB
Newer Older
H
refact  
Hongze Cheng 已提交
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_MND_INT_H_
#define _TD_MND_INT_H_
H
refact  
Hongze Cheng 已提交
18

S
Shengliang Guan 已提交
19
#include "mndDef.h"
S
Shengliang Guan 已提交
20

S
Shengliang Guan 已提交
21
#include "sdb.h"
S
Shengliang Guan 已提交
22
#include "tcache.h"
H
Haojun Liao 已提交
23
#include "tdatablock.h"
S
monitor  
Shengliang Guan 已提交
24
#include "tglobal.h"
25
#include "tqueue.h"
S
Shengliang Guan 已提交
26
#include "ttime.h"
S
charset  
Shengliang Guan 已提交
27
#include "version.h"
S
monitor  
Shengliang Guan 已提交
28
#include "wal.h"
S
Shengliang Guan 已提交
29

H
refact  
Hongze Cheng 已提交
30 31 32 33
#ifdef __cplusplus
extern "C" {
#endif

34 35 36 37 38 39 40
#define mFatal(...) { if (mDebugFlag & DEBUG_FATAL) { taosPrintLog("MND FATAL ", DEBUG_FATAL, 255, __VA_ARGS__); }}
#define mError(...) { if (mDebugFlag & DEBUG_ERROR) { taosPrintLog("MND ERROR ", DEBUG_ERROR, 255, __VA_ARGS__); }}
#define mWarn(...)  { if (mDebugFlag & DEBUG_WARN)  { taosPrintLog("MND WARN ", DEBUG_WARN, 255, __VA_ARGS__); }}
#define mInfo(...)  { if (mDebugFlag & DEBUG_INFO)  { taosPrintLog("MND ", DEBUG_INFO, 255, __VA_ARGS__); }}
#define mDebug(...) { if (mDebugFlag & DEBUG_DEBUG) { taosPrintLog("MND ", DEBUG_DEBUG, mDebugFlag, __VA_ARGS__); }}
#define mTrace(...) { if (mDebugFlag & DEBUG_TRACE) { taosPrintLog("MND ", DEBUG_TRACE, mDebugFlag, __VA_ARGS__); }}

D
dapan1121 已提交
41 42 43 44
#define SYSTABLE_SCH_TABLE_NAME_LEN ((TSDB_TABLE_NAME_LEN - 1) + VARSTR_HEADER_SIZE)
#define SYSTABLE_SCH_DB_NAME_LEN    ((TSDB_DB_NAME_LEN - 1) + VARSTR_HEADER_SIZE)
#define SYSTABLE_SCH_COL_NAME_LEN    ((TSDB_COL_NAME_LEN - 1) + VARSTR_HEADER_SIZE)

S
Shengliang Guan 已提交
45
typedef int32_t (*MndMsgFp)(SNodeMsg *pMsg);
46 47
typedef int32_t (*MndInitFp)(SMnode *pMnode);
typedef void (*MndCleanupFp)(SMnode *pMnode);
48
typedef int32_t (*ShowRetrieveFp)(SNodeMsg *pMsg, SShowObj *pShow, SSDataBlock* pBlock, int32_t rows);
S
Shengliang Guan 已提交
49
typedef void (*ShowFreeIterFp)(SMnode *pMnode, void *pIter);
S
Shengliang Guan 已提交
50

S
monitor  
Shengliang Guan 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63 64
typedef struct SMnodeLoad {
  int64_t numOfDnode;
  int64_t numOfMnode;
  int64_t numOfVgroup;
  int64_t numOfDatabase;
  int64_t numOfSuperTable;
  int64_t numOfChildTable;
  int64_t numOfNormalTable;
  int64_t numOfColumn;
  int64_t totalPoints;
  int64_t totalStorage;
  int64_t compStorage;
} SMnodeLoad;

D
dapan1121 已提交
65 66
typedef struct SQWorkerMgmt SQHandle;

67 68 69 70 71
typedef struct {
  const char  *name;
  MndInitFp    initFp;
  MndCleanupFp cleanupFp;
} SMnodeStep;
S
Shengliang Guan 已提交
72

S
Shengliang Guan 已提交
73
typedef struct {
74
  int64_t        showId;
S
Shengliang Guan 已提交
75 76 77 78 79
  ShowRetrieveFp retrieveFps[TSDB_MGMT_TABLE_MAX];
  ShowFreeIterFp freeIterFps[TSDB_MGMT_TABLE_MAX];
  SCacheObj     *cache;
} SShowMgmt;

S
Shengliang Guan 已提交
80 81 82 83
typedef struct {
  SCacheObj *cache;
} SProfileMgmt;

S
Shengliang Guan 已提交
84
typedef struct {
S
Shengliang Guan 已提交
85
  bool     enable;
S
Shengliang Guan 已提交
86 87
  SRWLatch lock;
  char     email[TSDB_FQDN_LEN];
S
Shengliang Guan 已提交
88 89
} STelemMgmt;

S
Shengliang Guan 已提交
90 91 92
typedef struct {
  int32_t    errCode;
  sem_t      syncSem;
S
Shengliang Guan 已提交
93
  SWal      *pWal;
S
Shengliang Guan 已提交
94 95 96 97
  SSyncNode *pSyncNode;
  ESyncState state;
} SSyncMgmt;

S
Shengliang Guan 已提交
98 99 100 101 102
typedef struct {
  int64_t expireTimeMS;
  int64_t timeseriesAllowed;
} SGrantInfo;

103
struct SMnode {
104
  int32_t           selfId;
105
  int64_t           clusterId;
S
Shengliang Guan 已提交
106 107 108 109
  int8_t            replica;
  int8_t            selfIndex;
  SReplica          replicas[TSDB_MAX_REPLICA];
  tmr_h             timer;
S
Shengliang Guan 已提交
110
  tmr_h             transTimer;
L
Liu Jicong 已提交
111
  tmr_h             mqTimer;
S
Shengliang Guan 已提交
112
  tmr_h             telemTimer;
S
Shengliang Guan 已提交
113
  char             *path;
114
  int64_t           checkTime;
115
  SSdb             *pSdb;
S
shm  
Shengliang Guan 已提交
116
  SMgmtWrapper     *pWrapper;
S
Shengliang Guan 已提交
117
  SArray           *pSteps;
D
dapan1121 已提交
118
  SQHandle         *pQuery;
S
Shengliang Guan 已提交
119
  SShowMgmt         showMgmt;
S
Shengliang Guan 已提交
120
  SProfileMgmt      profileMgmt;
S
Shengliang Guan 已提交
121
  STelemMgmt        telemMgmt;
S
Shengliang Guan 已提交
122
  SSyncMgmt         syncMgmt;
D
dapan1121 已提交
123
  SHashObj         *infosMeta;
D
dapan1121 已提交
124
  SHashObj         *perfsMeta;
S
Shengliang Guan 已提交
125
  SGrantInfo        grant;
H
Hongze Cheng 已提交
126
  MndMsgFp          msgFp[TDMT_MAX];
127
  SMsgCb            msgCb;
128
};
S
Shengliang Guan 已提交
129

S
sma  
Shengliang Guan 已提交
130 131 132
void    mndSetMsgHandle(SMnode *pMnode, tmsg_t msgType, MndMsgFp fp);
int64_t mndGenerateUid(char *name, int32_t len);
void    mndGetLoad(SMnode *pMnode, SMnodeLoad *pLoad);
S
Shengliang Guan 已提交
133

H
refact  
Hongze Cheng 已提交
134 135 136 137
#ifdef __cplusplus
}
#endif

S
Shengliang Guan 已提交
138
#endif /*_TD_MND_INT_H_*/