/* * Copyright (c) 2019 TAOS Data, Inc. * * 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 . */ #ifndef _TD_MND_H_ #define _TD_MND_H_ #include "monitor.h" #include "tmsg.h" #include "tmsgcb.h" #include "trpc.h" #ifdef __cplusplus extern "C" { #endif /* ------------------------ TYPES EXPOSED ------------------------ */ typedef struct SMnode SMnode; typedef struct { int32_t dnodeId; bool standby; bool deploy; int8_t replica; int8_t selfIndex; SReplica replicas[TSDB_MAX_REPLICA]; SMsgCb msgCb; } SMnodeOpt; /* ------------------------ SMnode ------------------------ */ /** * @brief Open a mnode. * * @param path Path of the mnode. * @param pOption Option of the mnode. * @return SMnode* The mnode object. */ SMnode *mndOpen(const char *path, const SMnodeOpt *pOption); /** * @brief Close a mnode. * * @param pMnode The mnode object to close. */ void mndClose(SMnode *pMnode); /** * @brief Close a mnode. * * @param pMnode The mnode object to close. * @param pOption Options of the mnode. * @return int32_t 0 for success, -1 for failure. */ int32_t mndAlter(SMnode *pMnode, const SMnodeOpt *pOption); /** * @brief Start mnode * * @param pMnode The mnode object. */ int32_t mndStart(SMnode *pMnode); void mndStop(SMnode *pMnode); /** * @brief Get mnode monitor info. * * @param pMnode The mnode object. * @param pCluster * @param pVgroup * @param pGrant * @return int32_t 0 for success, -1 for failure. */ int32_t mndGetMonitorInfo(SMnode *pMnode, SMonClusterInfo *pCluster, SMonVgroupInfo *pVgroup, SMonGrantInfo *pGrant); int32_t mndGetLoad(SMnode *pMnode, SMnodeLoad *pLoad); /** * @brief Process the read, write, sync request. * * @param pMsg The request msg. * @return int32_t 0 for success, -1 for failure. */ int32_t mndProcessMsg(SRpcMsg *pMsg); int32_t mndProcessSyncMsg(SRpcMsg *pMsg); /** * @brief Generate machine code */ void mndGenerateMachineCode(); #ifdef __cplusplus } #endif #endif /*_TD_MND_H_*/