Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
0a372a73
T
TDengine
项目概览
taosdata
/
TDengine
接近 2 年 前同步成功
通知
1192
Star
22018
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看板
提交
0a372a73
编写于
2月 10, 2022
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more TDB
上级
2849a62c
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
43 addition
and
4 deletion
+43
-4
source/libs/tdb/src/db/btree.c
source/libs/tdb/src/db/btree.c
+32
-1
source/libs/tdb/src/db/tdb.c
source/libs/tdb/src/db/tdb.c
+8
-1
source/libs/tdb/src/inc/btree.h
source/libs/tdb/src/inc/btree.h
+1
-1
source/libs/tdb/src/inc/pgfile.h
source/libs/tdb/src/inc/pgfile.h
+0
-1
source/libs/tdb/src/inc/tdbInt.h
source/libs/tdb/src/inc/tdbInt.h
+2
-0
未找到文件。
source/libs/tdb/src/db/btree.c
浏览文件 @
0a372a73
...
...
@@ -17,4 +17,35 @@
struct
SBtCursor
{
// TODO
};
\ No newline at end of file
};
static
int
btreeCreate
(
SBTree
**
pBt
);
static
int
btreeDestroy
(
SBTree
*
pBt
);
int
btreeOpen
(
SBTree
**
ppBt
,
SPgFile
*
pPgFile
)
{
SBTree
*
pBt
;
int
ret
;
ret
=
btreeCreate
(
&
pBt
);
if
(
ret
!=
0
)
{
return
-
1
;
}
*
ppBt
=
pBt
;
return
0
;
}
int
btreeClose
(
SBTree
*
pBt
)
{
// TODO
return
0
;
}
static
int
btreeCreate
(
SBTree
**
pBt
)
{
// TODO
return
0
;
}
static
int
btreeDestroy
(
SBTree
*
pBt
)
{
// TODO
return
0
;
}
\ No newline at end of file
source/libs/tdb/src/db/tdb.c
浏览文件 @
0a372a73
...
...
@@ -16,7 +16,7 @@
#include "tdbInt.h"
struct
STDb
{
SBTree
btree
;
// current access method
SBTree
*
pBt
;
// current access method
SPgFile
*
pPgFile
;
// backend page file this DB is using
TENV
*
pEnv
;
// TENV containing the DB
};
...
...
@@ -47,6 +47,7 @@ int tdbOpen(TDB **ppDb, const char *fname, const char *dbname, TENV *pEnv) {
uint8_t
fileid
[
TDB_FILE_ID_LEN
];
SPgFile
*
pPgFile
;
SPgCache
*
pPgCache
;
SBTree
*
pBt
;
// Create DB if DB handle is not created yet
if
(
ppDb
==
NULL
)
{
...
...
@@ -78,6 +79,7 @@ int tdbOpen(TDB **ppDb, const char *fname, const char *dbname, TENV *pEnv) {
}
// Check if the SPgFile already opened
tdbGnrtFileID
(
fname
,
fileid
,
false
);
pPgFile
=
tdbEnvGetPageFile
(
pEnv
,
fileid
);
if
(
pPgFile
==
NULL
)
{
pPgCache
=
tdbEnvGetPgCache
(
pEnv
);
...
...
@@ -89,6 +91,11 @@ int tdbOpen(TDB **ppDb, const char *fname, const char *dbname, TENV *pEnv) {
pDb
->
pPgFile
=
pPgFile
;
// open the access method (TODO)
if
(
btreeOpen
(
&
pBt
,
pPgFile
)
!=
0
)
{
return
-
1
;
}
pDb
->
pBt
=
pBt
;
return
0
;
}
...
...
source/libs/tdb/src/inc/btree.h
浏览文件 @
0a372a73
...
...
@@ -24,7 +24,7 @@ typedef struct SBTree SBTree;
typedef
struct
SBtCursor
SBtCursor
;
// SBTree
int
btreeOpen
(
SBTree
**
ppBt
);
int
btreeOpen
(
SBTree
**
ppBt
,
SPgFile
*
pPgFile
);
int
btreeClose
(
SBTree
*
pBt
);
// SBtCursor
...
...
source/libs/tdb/src/inc/pgfile.h
浏览文件 @
0a372a73
...
...
@@ -20,7 +20,6 @@
extern
"C"
{
#endif
typedef
struct
SPgFile
SPgFile
;
struct
SPgFile
{
char
*
fname
;
// backend file name
uint8_t
fileid
[
TDB_FILE_ID_LEN
];
// file id
...
...
source/libs/tdb/src/inc/tdbInt.h
浏览文件 @
0a372a73
...
...
@@ -25,6 +25,8 @@
extern
"C"
{
#endif
typedef
struct
SPgFile
SPgFile
;
// pgno_t
typedef
int32_t
pgno_t
;
#define TDB_IVLD_PGNO ((pgno_t)-1)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录