vnodeCfg.c 1.5 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
Hongze Cheng 已提交
16
#include "vnodeInt.h"
H
save  
Hongze Cheng 已提交
17

H
more  
Hongze Cheng 已提交
18 19
const SVnodeCfg defaultVnodeOptions = {
    .wsize = 96 * 1024 * 1024, .ssize = 1 * 1024 * 1024, .lsize = 1024, .walCfg = {.level = TAOS_WAL_WRITE}}; /* TODO */
H
save  
Hongze Cheng 已提交
20

H
refact  
Hongze Cheng 已提交
21
int vnodeValidateOptions(const SVnodeCfg *pVnodeOptions) {
H
more  
Hongze Cheng 已提交
22 23
  // TODO
  return 0;
H
refact  
Hongze Cheng 已提交
24 25
}

H
refact  
Hongze Cheng 已提交
26 27
void vnodeOptionsCopy(SVnodeCfg *pDest, const SVnodeCfg *pSrc) {
  memcpy((void *)pDest, (void *)pSrc, sizeof(SVnodeCfg));
D
dapan1121 已提交
28 29
}

D
dapan1121 已提交
30
int vnodeValidateTableHash(SVnodeCfg *pVnodeOptions, char *tableFName) {
D
dapan1121 已提交
31
  uint32_t hashValue = 0;
H
Hongze Cheng 已提交
32

D
dapan1121 已提交
33 34
  switch (pVnodeOptions->hashMethod) {
    default:
D
dapan1121 已提交
35
      hashValue = MurmurHash3_32(tableFName, strlen(tableFName));
D
dapan1121 已提交
36 37 38
      break;
  }

H
Hongze Cheng 已提交
39
    // TODO OPEN THIS !!!!!!!
D
dapan1121 已提交
40
#if 0
D
dapan1121 已提交
41 42 43 44
  if (hashValue < pVnodeOptions->hashBegin || hashValue > pVnodeOptions->hashEnd) {
    terrno = TSDB_CODE_VND_HASH_MISMATCH;
    return TSDB_CODE_VND_HASH_MISMATCH;
  }
D
dapan1121 已提交
45
#endif
D
dapan1121 已提交
46 47 48

  return TSDB_CODE_SUCCESS;
}