TDengine/source/server/vnode/src/vnodeInt.c

55 lines
1.7 KiB
C
Raw Normal View History

2021-09-22 08:15:20 +00:00
/*
* 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/>.
*/
#define _DEFAULT_SOURCE
#include "os.h"
#include "tstep.h"
#include "vnodeMain.h"
#include "vnodeMgmt.h"
#include "vnodeRead.h"
#include "vnodeWrite.h"
2021-10-04 09:44:39 +00:00
static struct {
2021-10-25 10:38:31 +00:00
SSteps *steps;
SVnodeFp fp;
} tsVint;
2021-10-26 02:19:36 +00:00
void vnodeGetDnodeEp(int32_t dnodeId, char *ep, char *fqdn, uint16_t *port) {
return (*tsVint.fp.GetDnodeEp)(dnodeId, ep, fqdn, port);
2021-10-26 02:19:36 +00:00
}
void vnodeSendMsgToDnode(struct SRpcEpSet *epSet, struct SRpcMsg *rpcMsg) {
(*tsVint.fp.SendMsgToDnode)(epSet, rpcMsg);
2021-10-26 02:19:36 +00:00
}
void vnodeSendMsgToMnode(struct SRpcMsg *rpcMsg) { return (*tsVint.fp.SendMsgToMnode)(rpcMsg); }
2021-10-04 09:44:39 +00:00
int32_t vnodeInit(SVnodePara para) {
tsVint.fp = para.fp;
2021-10-04 09:44:39 +00:00
struct SSteps *steps = taosStepInit(8, NULL);
if (steps == NULL) return -1;
2021-10-04 09:44:39 +00:00
taosStepAdd(steps, "vnode-main", vnodeInitMain, vnodeCleanupMain);
taosStepAdd(steps, "vnode-read", vnodeInitRead, vnodeCleanupRead);
taosStepAdd(steps, "vnode-mgmt", vnodeInitMgmt, vnodeCleanupMgmt);
taosStepAdd(steps, "vnode-write", vnodeInitWrite, vnodeCleanupWrite);
2021-10-04 09:44:39 +00:00
tsVint.steps = steps;
return taosStepExec(tsVint.steps);
2021-10-25 10:38:31 +00:00
}
void vnodeCleanup() { taosStepCleanup(tsVint.steps); }