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

H
refact  
Hongze Cheng 已提交
16
#include "vnd.h"
H
save  
Hongze Cheng 已提交
17

S
Shengliang Guan 已提交
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 *pVnodeCfg) {
H
save  
Hongze Cheng 已提交
24
  SVnode *pVnode = NULL;
H
more  
Hongze Cheng 已提交
25 26

  // Set default options
S
Shengliang Guan 已提交
27 28 29 30 31
  SVnodeCfg cfg = defaultVnodeOptions;
  if (pVnodeCfg != NULL) {
    cfg.vgId = pVnodeCfg->vgId;
    cfg.pDnode = pVnodeCfg->pDnode;
  }
H
more  
Hongze Cheng 已提交
32 33

  // Validate options
S
Shengliang Guan 已提交
34
  if (vnodeValidateOptions(&cfg) < 0) {
H
more  
Hongze Cheng 已提交
35 36 37 38
    // TODO
    return NULL;
  }

H
refact  
Hongze Cheng 已提交
39
  // Create the handle
S
Shengliang Guan 已提交
40
  pVnode = vnodeNew(path, &cfg);
H
more  
Hongze Cheng 已提交
41 42 43 44 45 46 47
  if (pVnode == NULL) {
    // TODO: handle error
    return NULL;
  }

  taosMkDir(path);

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

H
save  
Hongze Cheng 已提交
54 55 56
  return pVnode;
}

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

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

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

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

S
Shengliang Guan 已提交
76 77
  pVnode->vgId = pVnodeCfg->vgId;
  pVnode->pDnode = pVnodeCfg->pDnode;
S
Shengliang Guan 已提交
78
  pVnode->pTfs = pVnodeCfg->pTfs;
H
refact  
Hongze Cheng 已提交
79
  pVnode->path = strdup(path);
H
refact  
Hongze Cheng 已提交
80
  vnodeOptionsCopy(&(pVnode->config), pVnodeCfg);
H
refact  
Hongze Cheng 已提交
81

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

H
more  
Hongze Cheng 已提交
84
  return pVnode;
H
save  
Hongze Cheng 已提交
85 86
}

H
more  
Hongze Cheng 已提交
87 88
static void vnodeFree(SVnode *pVnode) {
  if (pVnode) {
H
more  
Hongze Cheng 已提交
89
    tsem_destroy(&(pVnode->canCommit));
H
refact  
Hongze Cheng 已提交
90 91
    tfree(pVnode->path);
    free(pVnode);
H
more  
Hongze Cheng 已提交
92
  }
H
refact  
Hongze Cheng 已提交
93 94 95
}

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

H
more  
Hongze Cheng 已提交
98
  if (vnodeOpenBufPool(pVnode) < 0) {
H
more  
Hongze Cheng 已提交
99 100 101 102
    // TODO: handle error
    return -1;
  }

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

  // Open tsdb
  sprintf(dir, "%s/tsdb", pVnode->path);
S
Shengliang Guan 已提交
113
  pVnode->pTsdb = tsdbOpen(dir, pVnode->vgId, &(pVnode->config.tsdbCfg), vBufPoolGetMAF(pVnode), pVnode->pMeta, pVnode->pTfs);
H
more  
Hongze Cheng 已提交
114
  if (pVnode->pTsdb == NULL) {
H
refact  
Hongze Cheng 已提交
115 116 117 118 119
    // TODO: handle error
    return -1;
  }

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

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

D
dapan1121 已提交
135 136 137 138 139
  // Open Query
  if (vnodeQueryOpen(pVnode)) {
    return -1;
  }

H
refact  
Hongze Cheng 已提交
140 141 142 143 144
  // TODO
  return 0;
}

static void vnodeCloseImpl(SVnode *pVnode) {
H
more  
Hongze Cheng 已提交
145
  vnodeSyncCommit(pVnode);
H
refact  
Hongze Cheng 已提交
146
  if (pVnode) {
H
merge  
Hongze Cheng 已提交
147
    vnodeCloseBufPool(pVnode);
H
refact  
Hongze Cheng 已提交
148
    metaClose(pVnode->pMeta);
H
more  
Hongze Cheng 已提交
149 150 151
    tsdbClose(pVnode->pTsdb);
    tqClose(pVnode->pTq);
    walClose(pVnode->pWal);
H
refact  
Hongze Cheng 已提交
152
  }
H
more  
Hongze Cheng 已提交
153
}