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

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

  // Set default options
H
refact  
Hongze Cheng 已提交
27 28
  if (pVnodeCfg == NULL) {
    pVnodeCfg = &defaultVnodeOptions;
H
more  
Hongze Cheng 已提交
29 30 31
  }

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

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

  taosMkDir(path);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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