Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
7dbc861b
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
7dbc861b
编写于
1月 13, 2022
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more tdb
上级
254e144f
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
72 addition
and
34 deletion
+72
-34
source/dnode/vnode/inc/vnode.h
source/dnode/vnode/inc/vnode.h
+12
-14
source/libs/tdb/CMakeLists.txt
source/libs/tdb/CMakeLists.txt
+8
-7
source/libs/tdb/inc/tdb.h
source/libs/tdb/inc/tdb.h
+10
-6
source/libs/tdb/src/db/tdbDB.c
source/libs/tdb/src/db/tdbDB.c
+34
-0
source/libs/tdb/src/dmgr/tdbDiskMgr.c
source/libs/tdb/src/dmgr/tdbDiskMgr.c
+0
-0
source/libs/tdb/src/inc/tdbBtree.h
source/libs/tdb/src/inc/tdbBtree.h
+1
-1
source/libs/tdb/src/inc/tdbDB.h
source/libs/tdb/src/inc/tdbDB.h
+1
-1
source/libs/tdb/src/inc/tdbDef.h
source/libs/tdb/src/inc/tdbDef.h
+5
-4
source/libs/tdb/src/mpool/tdbBufPool.c
source/libs/tdb/src/mpool/tdbBufPool.c
+0
-0
source/libs/tdb/test/tdbTest.cpp
source/libs/tdb/test/tdbTest.cpp
+1
-1
未找到文件。
source/dnode/vnode/inc/vnode.h
浏览文件 @
7dbc861b
...
...
@@ -35,28 +35,26 @@ typedef struct SDnode SDnode;
typedef
int32_t
(
*
PutReqToVQueryQFp
)(
SDnode
*
pDnode
,
struct
SRpcMsg
*
pReq
);
typedef
struct
SVnodeCfg
{
int32_t
vgId
;
SDnode
*
pDnode
;
struct
{
uint64_t
wsize
;
uint64_t
ssize
;
uint64_t
lsize
;
bool
isHeapAllocator
;
};
int32_t
vgId
;
SDnode
*
pDnode
;
uint64_t
wsize
;
uint64_t
ssize
;
uint64_t
lsize
;
bool
isHeapAllocator
;
uint32_t
ttl
;
uint32_t
keep
;
bool
isWeak
;
bool
isWeak
;
STsdbCfg
tsdbCfg
;
SMetaCfg
metaCfg
;
STqCfg
tqCfg
;
SWalCfg
walCfg
;
STqCfg
tqCfg
;
SWalCfg
walCfg
;
}
SVnodeCfg
;
typedef
struct
{
int32_t
sver
;
char
*
timezone
;
char
*
locale
;
char
*
charset
;
char
*
timezone
;
char
*
locale
;
char
*
charset
;
uint16_t
nthreads
;
// number of commit threads. 0 for no threads and a schedule queue should be given (TODO)
PutReqToVQueryQFp
putReqToVQueryQFp
;
}
SVnodeOpt
;
...
...
source/libs/tdb/CMakeLists.txt
浏览文件 @
7dbc861b
aux_source_directory
(
src TDB_SRC
)
set
(
TDB_SUBDIRS
"btree"
"db"
"hash"
"mpool"
"dmgr"
)
foreach
(
TDB_SUBDIR
${
TDB_SUBDIRS
}
)
aux_source_directory
(
"src/
${
TDB_SUBDIR
}
"
TDB_SRC
)
endforeach
()
add_library
(
tdb STATIC
${
TDB_SRC
}
)
# target_include_directories(
# tkv
# PUBLIC "${CMAKE_SOURCE_DIR}/include/libs/tkv"
# PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/inc"
# )
target_include_directories
(
tdb
PUBLIC
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/inc"
...
...
@@ -17,5 +18,5 @@ target_link_libraries(
)
if
(
${
BUILD_TEST
}
)
#
add_subdirectory(test)
add_subdirectory
(
test
)
endif
(
${
BUILD_TEST
}
)
source/libs/tdb/inc/tdb.h
浏览文件 @
7dbc861b
...
...
@@ -22,10 +22,14 @@
extern
"C"
{
#endif
#define TDB_EXTERN
#define TDB_PUBLIC
#define TDB_STATIC static
typedef
enum
{
TDB_BTREE
=
0
,
TDB_HASH
,
TDB_HEAP
,
TDB_BTREE
_T
=
0
,
TDB_HASH
_T
,
TDB_HEAP
_T
,
}
tdb_db_t
;
// Forward declaration
...
...
@@ -39,9 +43,9 @@ typedef struct {
}
TDB_KEY
,
TDB_VALUE
;
// TDB Operations
int
tdbCreateDB
(
TDB
**
dbpp
);
int
tdbOpenDB
(
TDB
*
dbp
,
tdb_db_t
type
,
uint32_t
flags
);
int
tdbCloseDB
(
TDB
*
dbp
,
uint32_t
flags
);
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
}
...
...
source/libs/tdb/src/db/tdbDB.c
0 → 100644
浏览文件 @
7dbc861b
/*
* 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/>.
*/
#include "tdbDB.h"
#include "tdb.h"
TDB_EXTERN
int
tdbCreateDB
(
TDB
**
dbpp
)
{
TDB
*
dbp
;
// dbp = malloc
return
0
;
}
int
tdbOpenDB
(
TDB
*
dbp
,
tdb_db_t
type
,
uint32_t
flags
)
{
// TODO
return
0
;
}
int
tdbCloseDB
(
TDB
*
dbp
,
uint32_t
flags
)
{
// TODO
return
0
;
}
\ No newline at end of file
source/libs/tdb/src/tdbDiskMgr.c
→
source/libs/tdb/src/
dmgr/
tdbDiskMgr.c
浏览文件 @
7dbc861b
文件已移动
source/libs/tdb/src/inc/tdbBtree.h
浏览文件 @
7dbc861b
...
...
@@ -16,7 +16,7 @@
#ifndef _TD_TDB_BTREE_H_
#define _TD_TDB_BTREE_H_
#include "t
kv
Def.h"
#include "t
db
Def.h"
#ifdef __cplusplus
extern
"C"
{
...
...
source/libs/tdb/src/inc/tdbDB.h
浏览文件 @
7dbc861b
...
...
@@ -16,6 +16,7 @@
#ifndef _TD_TDB_DB_H_
#define _TD_TDB_DB_H_
#include "tdb.h"
#include "tdbBtree.h"
#include "tdbHash.h"
...
...
@@ -23,7 +24,6 @@
extern
"C"
{
#endif
struct
TDB
{
pgsize_t
pageSize
;
tdb_db_t
type
;
...
...
source/libs/tdb/src/inc/tdbDef.h
浏览文件 @
7dbc861b
...
...
@@ -24,16 +24,17 @@ extern "C" {
// pgid_t
typedef
int32_t
pgid_t
;
#define T
KV
_IVLD_PGID ((pgid_t)-1)
#define T
DB
_IVLD_PGID ((pgid_t)-1)
// framd_id_t
typedef
int32_t
frame_id_t
;
// pgsize_t
typedef
int32_t
pgsize_t
;
#define TKV_MIN_PGSIZE 512
#define TKV_MAX_PGSIZE 16384
#define TKV_IS_PGSIZE_VLD(s) (((s) >= TKV_MIN_PGSIZE) && (TKV_MAX_PGSIZE <= TKV_MAX_PGSIZE))
#define TDB_MIN_PGSIZE 512
#define TDB_MAX_PGSIZE 16384
#define TDB_DEFAULT_PGSIZE 4096
#define TDB_IS_PGSIZE_VLD(s) (((s) >= TKV_MIN_PGSIZE) && (TKV_MAX_PGSIZE <= TKV_MAX_PGSIZE))
#ifdef __cplusplus
}
...
...
source/libs/tdb/src/tdbBufPool.c
→
source/libs/tdb/src/
mpool/
tdbBufPool.c
浏览文件 @
7dbc861b
文件已移动
source/libs/tdb/test/tdbTest.cpp
浏览文件 @
7dbc861b
...
...
@@ -8,7 +8,7 @@ TEST(tdb_api_test, tdb_create_open_close_db_test) {
tdbCreateDB
(
&
dbp
);
tdbOpenDB
(
dbp
,
TDB_BTREE
,
0
);
tdbOpenDB
(
dbp
,
TDB_BTREE
_T
,
0
);
tdbCloseDB
(
dbp
,
0
);
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录