/* * 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 . */ #ifndef _TD_TDB_H_ #define _TD_TDB_H_ #include "os.h" #ifdef __cplusplus extern "C" { #endif #define TDB_EXTERN #define TDB_PUBLIC #define TDB_STATIC static typedef enum { TDB_BTREE_T = 0, TDB_HASH_T, TDB_HEAP_T, } tdb_db_t; // Forward declaration typedef struct TDB TDB; typedef struct TDB_CURSOR TDB_CURSOR; // SKey typedef struct { void* bdata; uint32_t size; } TDB_KEY, TDB_VALUE; // TDB Operations TDB_EXTERN int tdbCreateDB(TDB** dbpp); TDB_EXTERN int tdbOpenDB(TDB* dbp, tdb_db_t type, uint32_t flags); TDB_EXTERN int tdbCloseDB(TDB* dbp, uint32_t flags); #ifdef __cplusplus } #endif #endif /*_TD_TDB_H_*/