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 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"

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;
H
refact  
Hongze Cheng 已提交
78
  pVnode->path = strdup(path);
H
refact  
Hongze Cheng 已提交
79
  vnodeOptionsCopy(&(pVnode->config), pVnodeCfg);
H
refact  
Hongze Cheng 已提交
80

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

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

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

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

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

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

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

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

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

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

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

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