/* * 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 TDENGINE_DNODE_MODULE_H #define TDENGINE_DNODE_MODULE_H #ifdef __cplusplus extern "C" { #endif #include #include #include #define tsetModuleStatus(mod) \ { tsModuleStatus |= (1 << mod); } #define tclearModuleStatus(mod) \ { tsModuleStatus &= ~(1 << mod); } enum _module { TSDB_MOD_MGMT, TSDB_MOD_HTTP, TSDB_MOD_MONITOR, TSDB_MOD_MAX }; typedef struct { char *name; int (*initFp)(); void (*cleanUpFp)(); int (*startFp)(); void (*stopFp)(); int num; int curNum; int equalVnodeNum; } SModule; extern uint32_t tsModuleStatus; extern SModule tsModule[]; void dnodeAllocModules(); int32_t dnodeInitModules(); void dnodeCleanUpModules(); extern void (*dnodeStartModules)(); void dnodeStartModulesEdgeImp(); #ifdef __cplusplus } #endif #endif