Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
e19fdafd
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看板
提交
e19fdafd
编写于
2月 11, 2022
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more TDB
上级
49edc62e
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
59 addition
and
13 deletion
+59
-13
source/libs/tdb/src/db/btree.c
source/libs/tdb/src/db/btree.c
+55
-9
source/libs/tdb/src/inc/pgfile.h
source/libs/tdb/src/inc/pgfile.h
+1
-1
source/libs/tdb/src/inc/tdbInt.h
source/libs/tdb/src/inc/tdbInt.h
+1
-1
source/libs/tdb/src/inc/tdbUtil.h
source/libs/tdb/src/inc/tdbUtil.h
+2
-2
未找到文件。
source/libs/tdb/src/db/btree.c
浏览文件 @
e19fdafd
...
@@ -27,13 +27,19 @@ typedef struct {
...
@@ -27,13 +27,19 @@ typedef struct {
}
SBtIdx
;
}
SBtIdx
;
// Btree page header definition
// Btree page header definition
typedef
struct
{
typedef
struct
__attribute__
((
__packed__
))
{
uint8_t
flags
;
uint8_t
flags
;
uint16_t
ncells
;
uint16_t
ncells
;
pgsz_t
pldOffset
;
// payload offset
pgsz_t
pldOffset
;
// payload offset
/* TODO */
/* TODO */
}
SBtPgHdr
;
}
SBtPgHdr
;
typedef
int
(
*
BtreeCmprFn
)(
const
void
*
,
const
void
*
);
#define BTREE_PAGE_HDR(pPage) NULL
/* TODO */
#define BTREE_PAGE_PAYLOAD_AT(pPage, idx) NULL
/*TODO*/
#define BTREE_PAGE_IS_LEAF(pPage) 0
/* TODO */
static
int
btreeCreate
(
SBTree
**
pBt
);
static
int
btreeCreate
(
SBTree
**
pBt
);
static
int
btreeDestroy
(
SBTree
*
pBt
);
static
int
btreeDestroy
(
SBTree
*
pBt
);
static
int
btreeCursorMoveToChild
(
SBtCursor
*
pBtCur
,
pgno_t
pgno
);
static
int
btreeCursorMoveToChild
(
SBtCursor
*
pBtCur
,
pgno_t
pgno
);
...
@@ -77,23 +83,63 @@ int btreeCursorClose(SBtCursor *pBtCur) {
...
@@ -77,23 +83,63 @@ int btreeCursorClose(SBtCursor *pBtCur) {
}
}
int
btreeCursorMoveTo
(
SBtCursor
*
pBtCur
,
int
kLen
,
const
void
*
pKey
)
{
int
btreeCursorMoveTo
(
SBtCursor
*
pBtCur
,
int
kLen
,
const
void
*
pKey
)
{
SPage
*
pPage
;
SPage
*
pPage
;
SBtPgHdr
*
pBtPgHdr
;
SBtPgHdr
*
pBtPgHdr
;
pgno_t
childPgno
;
SPgFile
*
pPgFile
;
int
idx
;
pgno_t
childPgno
;
pgno_t
rootPgno
;
int
nPayload
;
void
*
pPayload
;
BtreeCmprFn
cmpFn
;
// 1. Move the cursor to the root page
// 1. Move the cursor to the root page
if
(
rootPgno
==
TDB_IVLD_PGNO
)
{
// No any data in this btree, just return not found (TODO)
return
0
;
}
else
{
// Load the page from the file by the SPgFile handle
pPage
=
pgFileFetch
(
pPgFile
,
rootPgno
);
pBtCur
->
pPage
=
pPage
;
}
// 2. Loop to search over the whole tree
// 2. Loop to search over the whole tree
for
(;;)
{
for
(;;)
{
int
lidx
,
ridx
,
midx
,
cret
;
pPage
=
pBtCur
->
pPage
;
pPage
=
pBtCur
->
pPage
;
pBtPgHdr
=
BTREE_PAGE_HDR
(
pPage
);
nPayload
=
pBtPgHdr
->
ncells
;
// Loop to search in current page
// Binary search the page
lidx
=
0
;
ridx
=
nPayload
-
1
;
midx
=
(
lidx
+
ridx
)
>>
1
;
for
(;;)
{
for
(;;)
{
/* code */
// get the payload ptr at midx
pPayload
=
BTREE_PAGE_PAYLOAD_AT
(
pPage
,
midx
);
// the payload and the key
cret
=
cmpFn
(
pKey
,
pPayload
);
if
(
cret
<
0
)
{
/* TODO */
}
else
if
(
cret
>
0
)
{
/* TODO */
}
else
{
/* TODO */
}
if
(
lidx
>
ridx
)
break
;
midx
=
(
lidx
+
ridx
)
>>
1
;
}
if
(
BTREE_PAGE_IS_LEAF
(
pPage
))
{
/* TODO */
break
;
}
else
{
/* TODO */
btreeCursorMoveToChild
(
pBtCur
,
childPgno
);
}
}
btreeCursorMoveToChild
(
pBtCur
,
childPgno
);
}
}
return
0
;
return
0
;
...
...
source/libs/tdb/src/inc/pgfile.h
浏览文件 @
e19fdafd
...
@@ -30,7 +30,7 @@ typedef struct __attribute__((__packed__)) {
...
@@ -30,7 +30,7 @@ typedef struct __attribute__((__packed__)) {
#define TDB_PG_FILE_HDR_SIZE 128
#define TDB_PG_FILE_HDR_SIZE 128
TD_STATIC_ASSERT
(
sizeof
(
SPgFileHdr
)
==
TDB_PG_FILE_HDR_SIZE
,
"Page file header size if not 128"
);
TD
B
_STATIC_ASSERT
(
sizeof
(
SPgFileHdr
)
==
TDB_PG_FILE_HDR_SIZE
,
"Page file header size if not 128"
);
struct
SPgFile
{
struct
SPgFile
{
char
*
fname
;
// backend file name
char
*
fname
;
// backend file name
...
...
source/libs/tdb/src/inc/tdbInt.h
浏览文件 @
e19fdafd
...
@@ -29,7 +29,7 @@ typedef struct SPgFile SPgFile;
...
@@ -29,7 +29,7 @@ typedef struct SPgFile SPgFile;
// pgno_t
// pgno_t
typedef
int32_t
pgno_t
;
typedef
int32_t
pgno_t
;
#define TDB_IVLD_PGNO ((pgno_t)
-1
)
#define TDB_IVLD_PGNO ((pgno_t)
0
)
// fileid
// fileid
#define TDB_FILE_ID_LEN 24
#define TDB_FILE_ID_LEN 24
...
...
source/libs/tdb/src/inc/tdbUtil.h
浏览文件 @
e19fdafd
...
@@ -21,9 +21,9 @@ extern "C" {
...
@@ -21,9 +21,9 @@ extern "C" {
#endif
#endif
#if __STDC_VERSION__ >= 201112L
#if __STDC_VERSION__ >= 201112L
#define TD_STATIC_ASSERT(op, info) static_assert(op, info)
#define TD
B
_STATIC_ASSERT(op, info) static_assert(op, info)
#else
#else
#define TD_STATIC_ASSERT(op, info)
#define TD
B
_STATIC_ASSERT(op, info)
#endif
#endif
#define TDB_ROUND8(x) (((x) + 7) & ~7)
#define TDB_ROUND8(x) (((x) + 7) & ~7)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录