/* * Copyright (c) 2019 TAOS Data, Inc. * * 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 . */ #include "tdbDB.h" #include "tdb.h" TDB_EXTERN int tdbCreateDB(TDB** dbpp, tdb_db_t type) { TDB* dbp; int ret; dbp = calloc(1, sizeof(*dbp)); if (dbp == NULL) { return -1; } dbp->pageSize = TDB_DEFAULT_PGSIZE; dbp->type = type; switch (type) { case TDB_BTREE_T: // ret = tdbInitBtreeDB(dbp); // if (ret < 0) goto _err; break; case TDB_HASH_T: // ret = tdbInitHashDB(dbp); // if (ret < 0) goto _err; break; case TDB_HEAP_T: // ret = tdbInitHeapDB(dbp); // if (ret < 0) goto _err; break; default: break; } *dbpp = dbp; return 0; _err: if (dbp) { free(dbp); } *dbpp = NULL; return 0; } TDB_EXTERN int tdbOpenDB(TDB* dbp, uint32_t flags) { // TODO return 0; } TDB_EXTERN int tdbCloseDB(TDB* dbp, uint32_t flags) { // TODO return 0; }