/* * 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_VNODE_H #define TDENGINE_VNODE_H #ifdef __cplusplus extern "C" { #endif #include "twal.h" typedef enum _VN_STATUS { TAOS_VN_STATUS_INIT = 0, TAOS_VN_STATUS_READY = 1, TAOS_VN_STATUS_CLOSING = 2, TAOS_VN_STATUS_UPDATING = 3, TAOS_VN_STATUS_RESET = 4, } EVnodeStatus; typedef struct { int32_t len; void * rsp; void * qhandle; // used by query and retrieve msg } SRspRet; typedef struct { int32_t code; int32_t contLen; void * rpcHandle; void * rpcAhandle; void * qhandle; int8_t qtype; int8_t msgType; SRspRet rspRet; char pCont[]; } SVReadMsg; typedef struct { int32_t code; int32_t processedCount; void * rpcHandle; void * rpcAhandle; SRspRet rspRet; char reserveForSync[16]; SWalHead pHead[]; } SVWriteMsg; extern char *vnodeStatus[]; int32_t vnodeCreate(SCreateVnodeMsg *pVnodeCfg); int32_t vnodeDrop(int32_t vgId); int32_t vnodeOpen(int32_t vgId, char *rootDir); int32_t vnodeAlter(void *pVnode, SCreateVnodeMsg *pVnodeCfg); int32_t vnodeClose(int32_t vgId); void* vnodeAcquire(int32_t vgId); // add refcount void vnodeRelease(void *pVnode); // dec refCount void* vnodeGetWal(void *pVnode); int32_t vnodeWriteToWQueue(void *pVnode, void *pHead, int32_t qtype, void *pRpcMsg); void vnodeFreeFromWQueue(void *pVnode, SVWriteMsg *pWrite); int32_t vnodeProcessWrite(void *pVnode, void *pHead, int32_t qtype, void *pRspRet); int32_t vnodeGetVnodeList(int32_t vnodeList[], int32_t *numOfVnodes); void vnodeBuildStatusMsg(void *pStatus); void vnodeConfirmForward(void *pVnode, uint64_t version, int32_t code); void vnodeSetAccess(SVgroupAccess *pAccess, int32_t numOfVnodes); int32_t vnodeInitResources(); void vnodeCleanupResources(); int32_t vnodeWriteToRQueue(void *pVnode, void *pCont, int32_t contLen, int8_t qtype, void *rparam); void vnodeFreeFromRQueue(void *pVnode, SVReadMsg *pRead); int32_t vnodeProcessRead(void *pVnode, SVReadMsg *pRead); #ifdef __cplusplus } #endif #endif