tdb.c 2.2 KB
Newer Older
H
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 "tdbInt.h"
H
Hongze Cheng 已提交
17

H
Hongze Cheng 已提交
18
struct STDb {
H
Hongze Cheng 已提交
19
  SBTree * pBt;      // current access method
H
Hongze Cheng 已提交
20
  SPgFile *pPgFile;  // backend page file this DB is using
H
Hongze Cheng 已提交
21
  TENV *   pEnv;     // TENV containing the DB
H
Hongze Cheng 已提交
22
};
H
Hongze Cheng 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36

int tdbCreate(TDB **ppDb) {
  TDB *pDb;

  pDb = (TDB *)calloc(1, sizeof(*pDb));
  if (pDb == NULL) {
    return -1;
  }

  /* TODO */

  return 0;
}

H
Hongze Cheng 已提交
37
static int tdbDestroy(TDB *pDb) {
H
Hongze Cheng 已提交
38 39 40 41 42 43
  if (pDb) {
    free(pDb);
  }
  return 0;
}

H
Hongze Cheng 已提交
44
int tdbOpen(TDB **ppDb, const char *fname, const char *dbname, TENV *pEnv) {
H
Hongze Cheng 已提交
45 46 47 48 49
  TDB *     pDb;
  int       ret;
  uint8_t   fileid[TDB_FILE_ID_LEN];
  SPgFile * pPgFile;
  SPgCache *pPgCache;
H
Hongze Cheng 已提交
50
  SBTree *  pBt;
H
Hongze Cheng 已提交
51 52 53 54 55 56 57 58 59 60 61 62

  // Create DB if DB handle is not created yet
  if (ppDb == NULL) {
    if ((ret = tdbCreate(ppDb)) != 0) {
      return -1;
    }
  }

  pDb = *ppDb;

  // Create a default ENV if pEnv is not set
  if (pEnv == NULL) {
H
Hongze Cheng 已提交
63 64 65
    if ((ret = tdbEnvOpen(&pEnv)) != 0) {
      return -1;
    }
H
Hongze Cheng 已提交
66 67
  }

H
Hongze Cheng 已提交
68 69 70 71 72 73
  pDb->pEnv = pEnv;

  // register DB to ENV

  ASSERT(fname != NULL);

H
Hongze Cheng 已提交
74 75 76 77 78 79
  // Check if file exists
  if (tdbCheckFileAccess(fname, TDB_F_OK) != 0) {
    if (1) {
      // create the file
    }
  }
H
Hongze Cheng 已提交
80 81

  // Check if the SPgFile already opened
H
Hongze Cheng 已提交
82
  tdbGnrtFileID(fname, fileid, false);
H
Hongze Cheng 已提交
83 84 85 86 87 88 89 90 91 92 93
  pPgFile = tdbEnvGetPageFile(pEnv, fileid);
  if (pPgFile == NULL) {
    pPgCache = tdbEnvGetPgCache(pEnv);
    if ((ret = pgFileOpen(&pPgFile, fname, pPgCache)) != 0) {
      return -1;
    }
  }

  pDb->pPgFile = pPgFile;

  // open the access method (TODO)
H
Hongze Cheng 已提交
94 95 96 97 98
  if (btreeOpen(&pBt, pPgFile) != 0) {
    return -1;
  }

  pDb->pBt = pBt;
H
Hongze Cheng 已提交
99

H
Hongze Cheng 已提交
100 101 102 103
  return 0;
}

int tdbClose(TDB *pDb) {
H
Hongze Cheng 已提交
104 105
  if (pDb == NULL) return 0;
  return tdbDestroy(pDb);
H
Hongze Cheng 已提交
106
}