tdbEnv.c 2.2 KB
Newer Older
H
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 "tdbInt.h"

H
refact  
Hongze Cheng 已提交
18 19
int tdbEnvOpen(const char *rootDir, int pageSize, int cacheSize, TENV **ppEnv) {
  TENV *pEnv;
H
Hongze Cheng 已提交
20 21
  int   dsize;
  int   zsize;
H
Hongze Cheng 已提交
22
  int   tsize;
H
Hongze Cheng 已提交
23 24
  u8   *pPtr;
  int   ret;
H
Hongze Cheng 已提交
25 26 27 28

  *ppEnv = NULL;

  dsize = strlen(rootDir);
H
more  
Hongze Cheng 已提交
29
  zsize = sizeof(*pEnv) + dsize * 2 + strlen(TDB_JOURNAL_NAME) + 3;
H
Hongze Cheng 已提交
30

H
Hongze Cheng 已提交
31
  pPtr = (uint8_t *)tdbOsCalloc(1, zsize);
H
Hongze Cheng 已提交
32 33 34 35
  if (pPtr == NULL) {
    return -1;
  }

H
refact  
Hongze Cheng 已提交
36
  pEnv = (TENV *)pPtr;
H
Hongze Cheng 已提交
37
  pPtr += sizeof(*pEnv);
H
more  
Hongze Cheng 已提交
38
  // pEnv->rootDir
H
Hongze Cheng 已提交
39 40 41
  pEnv->rootDir = pPtr;
  memcpy(pEnv->rootDir, rootDir, dsize);
  pEnv->rootDir[dsize] = '\0';
H
more  
Hongze Cheng 已提交
42 43 44 45 46 47 48
  pPtr = pPtr + dsize + 1;
  // pEnv->jfname
  pEnv->jfname = pPtr;
  memcpy(pEnv->jfname, rootDir, dsize);
  pEnv->jfname[dsize] = '/';
  memcpy(pEnv->jfname + dsize + 1, TDB_JOURNAL_NAME, strlen(TDB_JOURNAL_NAME));
  pEnv->jfname[dsize + 1 + strlen(TDB_JOURNAL_NAME)] = '\0';
H
Hongze Cheng 已提交
49

H
Hongze Cheng 已提交
50 51
  pEnv->jfd = -1;

H
Hongze Cheng 已提交
52
  ret = tdbPCacheOpen(pageSize, cacheSize, &(pEnv->pCache));
H
more  
Hongze Cheng 已提交
53 54 55 56
  if (ret < 0) {
    return -1;
  }

H
Hongze Cheng 已提交
57 58 59 60 61 62 63 64
  pEnv->nHash = 8;
  tsize = sizeof(SPager *) * pEnv->nHash;
  pEnv->pagerHash = TDB_REALLOC(pEnv->pagerHash, tsize);
  if (pEnv->pagerHash == NULL) {
    return -1;
  }
  memset(pEnv->pagerHash, 0, tsize);

H
more  
Hongze Cheng 已提交
65
  mkdir(rootDir, 0755);
H
Hongze Cheng 已提交
66

H
Hongze Cheng 已提交
67 68 69 70
  *ppEnv = pEnv;
  return 0;
}

H
refact  
Hongze Cheng 已提交
71
int tdbEnvClose(TENV *pEnv) {
H
Hongze Cheng 已提交
72 73
  // TODO
  return 0;
H
Hongze Cheng 已提交
74 75
}

H
Hongze Cheng 已提交
76
int tdbBegin(TENV *pEnv) {
H
Hongze Cheng 已提交
77
  ASSERT(0);
H
Hongze Cheng 已提交
78 79 80 81
  return 0;
}

int tdbCommit(TENV *pEnv) {
H
Hongze Cheng 已提交
82 83 84 85 86 87 88
  SPager *pPager;

  pPager = pEnv->pagerList;
  while (pPager) {
    tdbPagerCommit(pPager);
  }

H
Hongze Cheng 已提交
89 90 91 92
  return 0;
}

int tdbRollback(TENV *pEnv) {
H
Hongze Cheng 已提交
93
  ASSERT(0);
H
Hongze Cheng 已提交
94 95 96
  return 0;
}

H
refact  
Hongze Cheng 已提交
97
SPager *tdbEnvGetPager(TENV *pEnv, const char *fname) {
H
Hongze Cheng 已提交
98 99
  // TODO
  return NULL;
H
Hongze Cheng 已提交
100 101 102 103
}

static void tdbEnvAddPager(TENV *pEnv, SPager *pPager) {

H
Hongze Cheng 已提交
104
}