vnodeMain.c 3.4 KB
Newer Older
H
save  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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/>.
 */

#include "vnodeDef.h"

H
refact  
Hongze Cheng 已提交
18
static SVnode *vnodeNew(const char *path, const SVnodeCfg *pVnodeCfg);
H
more  
Hongze Cheng 已提交
19
static void    vnodeFree(SVnode *pVnode);
H
refact  
Hongze Cheng 已提交
20 21
static int     vnodeOpenImpl(SVnode *pVnode);
static void    vnodeCloseImpl(SVnode *pVnode);
H
more  
Hongze Cheng 已提交
22

S
Shengliang Guan 已提交
23
SVnode *vnodeOpen(const char *path, const SVnodeCfg *pVnodeCfgInput) {
H
save  
Hongze Cheng 已提交
24
  SVnode *pVnode = NULL;
H
more  
Hongze Cheng 已提交
25 26

  // Set default options
S
Shengliang Guan 已提交
27 28
  SVnodeCfg *pVnodeCfg = &defaultVnodeOptions;
  pVnodeCfg->vgId = pVnodeCfg->vgId;
H
more  
Hongze Cheng 已提交
29 30

  // Validate options
H
refact  
Hongze Cheng 已提交
31
  if (vnodeValidateOptions(pVnodeCfg) < 0) {
H
more  
Hongze Cheng 已提交
32 33 34 35
    // TODO
    return NULL;
  }

H
refact  
Hongze Cheng 已提交
36
  // Create the handle
H
refact  
Hongze Cheng 已提交
37
  pVnode = vnodeNew(path, pVnodeCfg);
H
more  
Hongze Cheng 已提交
38 39 40 41 42 43 44
  if (pVnode == NULL) {
    // TODO: handle error
    return NULL;
  }

  taosMkDir(path);

H
refact  
Hongze Cheng 已提交
45 46 47 48 49 50
  // Open the vnode
  if (vnodeOpenImpl(pVnode) < 0) {
    // TODO: handle error
    return NULL;
  }

H
save  
Hongze Cheng 已提交
51 52 53
  return pVnode;
}

H
refact  
Hongze Cheng 已提交
54 55 56 57 58
void vnodeClose(SVnode *pVnode) {
  if (pVnode) {
    vnodeCloseImpl(pVnode);
    vnodeFree(pVnode);
  }
H
more  
Hongze Cheng 已提交
59 60 61 62 63
}

void vnodeDestroy(const char *path) { taosRemoveDir(path); }

/* ------------------------ STATIC METHODS ------------------------ */
H
refact  
Hongze Cheng 已提交
64
static SVnode *vnodeNew(const char *path, const SVnodeCfg *pVnodeCfg) {
H
refact  
Hongze Cheng 已提交
65 66 67 68 69 70 71 72 73
  SVnode *pVnode = NULL;

  pVnode = (SVnode *)calloc(1, sizeof(*pVnode));
  if (pVnode == NULL) {
    // TODO
    return NULL;
  }

  pVnode->path = strdup(path);
H
refact  
Hongze Cheng 已提交
74
  vnodeOptionsCopy(&(pVnode->config), pVnodeCfg);
H
refact  
Hongze Cheng 已提交
75

H
more  
Hongze Cheng 已提交
76 77
  tsem_init(&(pVnode->canCommit), 0, 1);

H
more  
Hongze Cheng 已提交
78
  return pVnode;
H
save  
Hongze Cheng 已提交
79 80
}

H
more  
Hongze Cheng 已提交
81 82
static void vnodeFree(SVnode *pVnode) {
  if (pVnode) {
H
more  
Hongze Cheng 已提交
83
    tsem_destroy(&(pVnode->canCommit));
H
refact  
Hongze Cheng 已提交
84 85
    tfree(pVnode->path);
    free(pVnode);
H
more  
Hongze Cheng 已提交
86
  }
H
refact  
Hongze Cheng 已提交
87 88 89
}

static int vnodeOpenImpl(SVnode *pVnode) {
H
refact  
Hongze Cheng 已提交
90 91
  char dir[TSDB_FILENAME_LEN];

H
more  
Hongze Cheng 已提交
92
  if (vnodeOpenBufPool(pVnode) < 0) {
H
more  
Hongze Cheng 已提交
93 94 95 96
    // TODO: handle error
    return -1;
  }

H
refact  
Hongze Cheng 已提交
97 98
  // Open meta
  sprintf(dir, "%s/meta", pVnode->path);
H
more  
Hongze Cheng 已提交
99
  pVnode->pMeta = metaOpen(dir, &(pVnode->config.metaCfg), vBufPoolGetMAF(pVnode));
H
more  
Hongze Cheng 已提交
100
  if (pVnode->pMeta == NULL) {
H
refact  
Hongze Cheng 已提交
101 102 103 104 105 106
    // TODO: handle error
    return -1;
  }

  // Open tsdb
  sprintf(dir, "%s/tsdb", pVnode->path);
H
more  
Hongze Cheng 已提交
107
  pVnode->pTsdb = tsdbOpen(dir, &(pVnode->config.tsdbCfg), vBufPoolGetMAF(pVnode));
H
more  
Hongze Cheng 已提交
108
  if (pVnode->pTsdb == NULL) {
H
refact  
Hongze Cheng 已提交
109 110 111 112 113
    // TODO: handle error
    return -1;
  }

  // TODO: Open TQ
H
more  
Hongze Cheng 已提交
114
  sprintf(dir, "%s/tq", pVnode->path);
H
more  
Hongze Cheng 已提交
115
  pVnode->pTq = tqOpen(dir, &(pVnode->config.tqCfg), NULL, vBufPoolGetMAF(pVnode));
H
refact  
Hongze Cheng 已提交
116 117 118 119
  if (pVnode->pTq == NULL) {
    // TODO: handle error
    return -1;
  }
H
merge  
Hongze Cheng 已提交
120 121 122

  // Open WAL
  sprintf(dir, "%s/wal", pVnode->path);
H
refact  
Hongze Cheng 已提交
123
  pVnode->pWal = walOpen(dir, &(pVnode->config.walCfg));
H
merge  
Hongze Cheng 已提交
124 125 126 127
  if (pVnode->pWal == NULL) {
    // TODO: handle error
    return -1;
  }
H
refact  
Hongze Cheng 已提交
128

D
dapan1121 已提交
129 130 131 132 133
  // Open Query
  if (vnodeQueryOpen(pVnode)) {
    return -1;
  }

H
refact  
Hongze Cheng 已提交
134 135 136 137 138
  // TODO
  return 0;
}

static void vnodeCloseImpl(SVnode *pVnode) {
H
more  
Hongze Cheng 已提交
139
  // vnodeSyncCommit(pVnode);
H
refact  
Hongze Cheng 已提交
140
  if (pVnode) {
H
merge  
Hongze Cheng 已提交
141
    vnodeCloseBufPool(pVnode);
H
refact  
Hongze Cheng 已提交
142
    metaClose(pVnode->pMeta);
H
more  
Hongze Cheng 已提交
143 144 145
    tsdbClose(pVnode->pTsdb);
    tqClose(pVnode->pTq);
    walClose(pVnode->pWal);
H
refact  
Hongze Cheng 已提交
146
  }
H
more  
Hongze Cheng 已提交
147
}