tdb.c 2.3 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

H
Hongze Cheng 已提交
24 25 26 27
struct STDbCurosr {
  SBtCursor *pBtCur;
};

H
Hongze Cheng 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40
int tdbCreate(TDB **ppDb) {
  TDB *pDb;

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

  /* TODO */

  return 0;
}

H
Hongze Cheng 已提交
41
static int tdbDestroy(TDB *pDb) {
H
Hongze Cheng 已提交
42 43 44 45 46 47
  if (pDb) {
    free(pDb);
  }
  return 0;
}

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

  // 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 已提交
67 68 69
    // if ((ret = tdbEnvOpen(&pEnv)) != 0) {
    //   return -1;
    // }
H
Hongze Cheng 已提交
70 71
  }

H
Hongze Cheng 已提交
72 73 74 75 76 77
  pDb->pEnv = pEnv;

  // register DB to ENV

  ASSERT(fname != NULL);

H
Hongze Cheng 已提交
78 79 80 81 82 83
  // Check if file exists
  if (tdbCheckFileAccess(fname, TDB_F_OK) != 0) {
    if (1) {
      // create the file
    }
  }
H
Hongze Cheng 已提交
84 85

  // Check if the SPgFile already opened
H
Hongze Cheng 已提交
86
  tdbGnrtFileID(fname, fileid, false);
H
Hongze Cheng 已提交
87 88 89 90 91 92 93 94 95 96 97
  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 已提交
98 99 100 101 102
  if (btreeOpen(&pBt, pPgFile) != 0) {
    return -1;
  }

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

H
Hongze Cheng 已提交
104 105 106 107
  return 0;
}

int tdbClose(TDB *pDb) {
H
Hongze Cheng 已提交
108 109
  if (pDb == NULL) return 0;
  return tdbDestroy(pDb);
H
Hongze Cheng 已提交
110
}