/* * 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_INTERNAL_H_ #define _TD_TDB_INTERNAL_H_ #include "os.h" #include "tlist.h" #include "tlockfree.h" #include "tdb.h" #ifdef __cplusplus extern "C" { #endif // pgno_t typedef int32_t pgno_t; #define TDB_IVLD_PGNO ((pgno_t)-1) // fileid #define TDB_FILE_ID_LEN 24 // pgid_t typedef struct { uint8_t fileid[TDB_FILE_ID_LEN]; pgno_t pgno; } pgid_t; #define TDB_IVLD_PGID (pgid_t){0, TDB_IVLD_PGNO}; static FORCE_INLINE int tdbCmprPgId(const void *p1, const void *p2) { pgid_t *pgid1 = (pgid_t *)p1; pgid_t *pgid2 = (pgid_t *)p2; int rcode; rcode = memcmp(pgid1->fileid, pgid2->fileid, TDB_FILE_ID_LEN); if (rcode) { return rcode; } else { if (pgid1->pgno > pgid2->pgno) { return 1; } else if (pgid1->pgno < pgid2->pgno) { return -1; } else { return 0; } } } // framd_id_t typedef int32_t frame_id_t; // pgsize_t typedef int32_t pgsize_t; #define TDB_MIN_PGSIZE 512 #define TDB_MAX_PGSIZE 16384 #define TDB_DEFAULT_PGSIZE 4096 #define TDB_IS_PGSIZE_VLD(s) (((s) >= TDB_MIN_PGSIZE) && ((s) <= TDB_MAX_PGSIZE)) // cache #define TDB_DEFAULT_CACHE_SIZE (256 * 1024) // 256K // tdb_log #define tdbError(var) #include "btree.h" #include "pgcache.h" #include "pgfile.h" #include "tdbEnv.h" #include "tdbUtil.h" #ifdef __cplusplus } #endif #endif /*_TD_TDB_INTERNAL_H_*/