TDengine/include/dnode/mgmt/dnode.h

90 lines
2.1 KiB
C
Raw Normal View History

/*
* 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/>.
*/
2021-11-20 16:13:35 +00:00
#ifndef _TD_DNODE_H_
#define _TD_DNODE_H_
2021-11-22 02:03:41 +00:00
#include "tdef.h"
#ifdef __cplusplus
extern "C" {
#endif
2022-01-12 02:46:52 +00:00
/* ------------------------ TYPES EXPOSED ---------------- */
2021-11-20 16:13:35 +00:00
typedef struct SDnode SDnode;
2022-01-12 02:46:52 +00:00
/**
* @brief Initialize the environment
*
* @return int32_t 0 for success and -1 for failure
*/
2022-02-24 11:47:32 +00:00
int32_t dndInit();
2022-01-12 02:46:52 +00:00
/**
2022-03-12 14:56:56 +00:00
* @brief Clear the environment
2022-01-12 02:46:52 +00:00
*/
void dndCleanup();
/* ------------------------ SDnode ----------------------- */
2021-11-22 02:03:41 +00:00
typedef struct {
2022-02-25 06:20:33 +00:00
int32_t numOfSupportVnodes;
uint16_t serverPort;
2022-03-17 07:33:16 +00:00
char dataDir[PATH_MAX];
2022-02-25 06:20:33 +00:00
char localEp[TSDB_EP_LEN];
char localFqdn[TSDB_FQDN_LEN];
char firstEp[TSDB_EP_LEN];
char secondEp[TSDB_EP_LEN];
SDiskCfg *pDisks;
int32_t numOfDisks;
2022-03-16 08:59:45 +00:00
} SDnodeOpt;
2021-11-22 02:03:41 +00:00
2022-03-16 10:20:57 +00:00
typedef enum { DND_EVENT_START, DND_EVENT_STOP = 1, DND_EVENT_RELOAD } EDndEvent;
2022-03-12 14:56:56 +00:00
2021-11-20 16:13:35 +00:00
/**
* @brief Initialize and start the dnode.
*
2022-03-16 08:59:45 +00:00
* @param pOption Option of the dnode.
2021-11-20 16:13:35 +00:00
* @return SDnode* The dnode object.
*/
2022-03-16 08:59:45 +00:00
SDnode *dndCreate(const SDnodeOpt *pOption);
2021-11-20 16:13:35 +00:00
/**
* @brief Stop and cleanup the dnode.
2021-11-20 16:13:35 +00:00
*
* @param pDnode The dnode object to close.
2021-11-20 16:13:35 +00:00
*/
2022-01-12 02:46:52 +00:00
void dndClose(SDnode *pDnode);
2021-11-05 07:42:19 +00:00
2022-03-12 14:56:56 +00:00
/**
* @brief Run dnode until specific event is receive.
*
* @param pDnode The dnode object to run.
*/
2022-03-14 07:51:09 +00:00
int32_t dndRun(SDnode *pDnode);
2022-03-12 14:56:56 +00:00
/**
* @brief Handle event in the dnode.
*
* @param pDnode The dnode object to close.
* @param event The event to handle.
*/
2022-03-16 08:59:45 +00:00
void dndHandleEvent(SDnode *pDnode, EDndEvent event);
2022-03-12 14:56:56 +00:00
#ifdef __cplusplus
}
#endif
2021-11-20 16:13:35 +00:00
#endif /*_TD_DNODE_H_*/