dmInt.h 2.0 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_DM_INT_H_
#define _TD_DM_INT_H_
S
Shengliang Guan 已提交
18

S
Shengliang Guan 已提交
19
#include "dmDef.h"
S
Shengliang Guan 已提交
20 21 22 23 24

#ifdef __cplusplus
extern "C" {
#endif

S
Shengliang Guan 已提交
25 26 27 28
// dmInt.c
SMgmtWrapper *dmAcquireWrapper(SDnode *pDnode, EDndNodeType nType);
int32_t       dmMarkWrapper(SMgmtWrapper *pWrapper);
void          dmReleaseWrapper(SMgmtWrapper *pWrapper);
S
Shengliang Guan 已提交
29 30 31 32 33
const char   *dmStatStr(EDndRunStatus stype);
const char   *dmNodeLogName(EDndNodeType ntype);
const char   *dmNodeProcName(EDndNodeType ntype);
const char   *dmEventStr(EDndEvent etype);
const char   *dmProcStr(EDndProcType ptype);
S
Shengliang Guan 已提交
34

S
Shengliang Guan 已提交
35
void   dmSetStatus(SDnode *pDnode, EDndRunStatus stype);
S
Shengliang Guan 已提交
36 37
void   dmSetEvent(SDnode *pDnode, EDndEvent event);
void   dmSetMsgHandle(SMgmtWrapper *pWrapper, tmsg_t msgType, NodeMsgFp nodeMsgFp, int8_t vgId);
S
Shengliang Guan 已提交
38
void   dmReportStartup(SDnode *pDnode, const char *pName, const char *pDesc);
S
Shengliang Guan 已提交
39
void   dmReportStartupByWrapper(SMgmtWrapper *pWrapper, const char *pName, const char *pDesc);
S
Shengliang Guan 已提交
40
void   dmProcessServerStatusReq(SDnode *pDnode, SRpcMsg *pMsg);
S
Shengliang Guan 已提交
41
void   dmProcessNetTestReq(SDnode *pDnode, SRpcMsg *pMsg);
S
Shengliang Guan 已提交
42 43 44 45 46 47
void   dmGetMonitorSysInfo(SMonSysInfo *pInfo);

// dmFile.c
int32_t   dmReadFile(SMgmtWrapper *pWrapper, bool *pDeployed);
int32_t   dmWriteFile(SMgmtWrapper *pWrapper, bool deployed);
TdFilePtr dmCheckRunning(const char *dataDir);
S
Shengliang Guan 已提交
48 49
int32_t   dmReadShmFile(SMgmtWrapper *pWrapper);
int32_t   dmWriteShmFile(SMgmtWrapper *pWrapper);
S
Shengliang Guan 已提交
50 51 52 53 54

#ifdef __cplusplus
}
#endif

S
Shengliang Guan 已提交
55
#endif /*_TD_DM_INT_H_*/