Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
45775a9e
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
45775a9e
编写于
8月 25, 2022
作者:
M
Minglei Jin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: release ofp when encoding and decoding
上级
4c280dc2
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
22 addition
and
16 deletion
+22
-16
source/libs/tdb/src/db/tdbBtree.c
source/libs/tdb/src/db/tdbBtree.c
+8
-0
source/libs/tdb/src/db/tdbPCache.c
source/libs/tdb/src/db/tdbPCache.c
+12
-16
source/libs/tdb/src/db/tdbPage.c
source/libs/tdb/src/db/tdbPage.c
+2
-0
未找到文件。
source/libs/tdb/src/db/tdbBtree.c
浏览文件 @
45775a9e
...
...
@@ -934,6 +934,8 @@ static int tdbFetchOvflPage(SPgno *pPgno, SPage **ppOfp, TXN *pTxn, SBTree *pBt)
return
-
1
;
}
tdbPCacheRelease
(
pBt
->
pPager
->
pCache
,
*
ppOfp
,
pTxn
);
return
ret
;
}
...
...
@@ -1277,6 +1279,8 @@ static int tdbBtreeDecodePayload(SPage *pPage, const SCell *pCell, int nHeader,
nLeft
-=
bytes
;
memcpy
(
&
pgno
,
ofpCell
+
bytes
,
sizeof
(
pgno
));
tdbPCacheRelease
(
pBt
->
pPager
->
pCache
,
ofp
,
pTxn
);
}
}
else
{
int
nLeftKey
=
kLen
;
...
...
@@ -1336,6 +1340,8 @@ static int tdbBtreeDecodePayload(SPage *pPage, const SCell *pCell, int nHeader,
memcpy
(
&
pgno
,
ofpCell
+
bytes
,
sizeof
(
pgno
));
tdbPCacheRelease
(
pBt
->
pPager
->
pCache
,
ofp
,
pTxn
);
nLeftKey
-=
bytes
;
nLeft
-=
bytes
;
}
...
...
@@ -1374,6 +1380,8 @@ static int tdbBtreeDecodePayload(SPage *pPage, const SCell *pCell, int nHeader,
memcpy
(
&
pgno
,
ofpCell
+
vLen
-
nLeft
+
bytes
,
sizeof
(
pgno
));
tdbPCacheRelease
(
pBt
->
pPager
->
pCache
,
ofp
,
pTxn
);
nLeft
-=
bytes
;
}
}
...
...
source/libs/tdb/src/db/tdbPCache.c
浏览文件 @
45775a9e
...
...
@@ -111,6 +111,7 @@ void tdbPCacheRelease(SPCache *pCache, SPage *pPage, TXN *pTxn) {
tdbPCacheLock
(
pCache
);
nRef
=
tdbUnrefPage
(
pPage
);
tdbDebug
(
"pcache/release page %p/%d/%d/%d"
,
pPage
,
TDB_PAGE_PGNO
(
pPage
),
pPage
->
id
,
nRef
);
if
(
nRef
==
0
)
{
// test the nRef again to make sure
// it is safe th handle the page
...
...
@@ -212,7 +213,8 @@ static SPage *tdbPCacheFetchImpl(SPCache *pCache, const SPgid *pPgid, TXN *pTxn)
pPage
->
pPager
=
pPageH
->
pPager
;
memcpy
(
pPage
->
pData
,
pPageH
->
pData
,
pPage
->
pageSize
);
tdbDebug
(
"pcache/pPageH: %p %d %p %p"
,
pPageH
,
pPageH
->
pPageHdr
-
pPageH
->
pData
,
pPageH
->
xCellSize
,
pPage
);
tdbDebug
(
"pcache/pPageH: %p %d %p %p %d"
,
pPageH
,
pPageH
->
pPageHdr
-
pPageH
->
pData
,
pPageH
->
xCellSize
,
pPage
,
TDB_PAGE_PGNO
(
pPageH
));
tdbPageInit
(
pPage
,
pPageH
->
pPageHdr
-
pPageH
->
pData
,
pPageH
->
xCellSize
);
pPage
->
kLen
=
pPageH
->
kLen
;
pPage
->
vLen
=
pPageH
->
vLen
;
...
...
@@ -243,7 +245,7 @@ static void tdbPCachePinPage(SPCache *pCache, SPage *pPage) {
pCache
->
nRecyclable
--
;
// printf("pin page %d pgno %d pPage %p\n", pPage->id, TDB_PAGE_PGNO(pPage), pPage);
tdbDebug
(
"p
in page %d"
,
pPage
->
id
);
tdbDebug
(
"p
cache/pin page %p/%d/%d"
,
pPage
,
TDB_PAGE_PGNO
(
pPage
)
,
pPage
->
id
);
}
}
...
...
@@ -264,29 +266,23 @@ static void tdbPCacheUnpinPage(SPCache *pCache, SPage *pPage) {
pCache
->
nRecyclable
++
;
// printf("unpin page %d pgno %d pPage %p\n", pPage->id, TDB_PAGE_PGNO(pPage), pPage);
tdbDebug
(
"
unpin page %d"
,
pPage
->
id
);
tdbDebug
(
"
pcache/unpin page %p/%d/%d"
,
pPage
,
TDB_PAGE_PGNO
(
pPage
)
,
pPage
->
id
);
}
static
void
tdbPCacheRemovePageFromHash
(
SPCache
*
pCache
,
SPage
*
pPage
)
{
uint32_t
h
=
tdbPCachePageHash
(
&
(
pPage
->
pgid
))
%
pCache
->
nHash
;
SPage
**
ppPage
=
&
(
pCache
->
pgHash
[
h
]);
if
(
*
ppPage
==
pPage
)
{
pCache
->
pgHash
[
h
]
=
pPage
->
pHashNext
;
}
else
{
for
(;
(
*
ppPage
)
&&
(
*
ppPage
)
->
pHashNext
!=
pPage
;
ppPage
=
&
((
*
ppPage
)
->
pHashNext
))
;
if
(
*
ppPage
)
{
(
*
ppPage
)
->
pHashNext
=
pPage
->
pHashNext
;
}
}
for
(;
(
*
ppPage
)
&&
*
ppPage
!=
pPage
;
ppPage
=
&
((
*
ppPage
)
->
pHashNext
))
;
if
(
*
ppPage
)
{
pPage
->
pHashNext
=
NULL
;
--
pCache
->
nPage
;
*
ppPage
=
pPage
->
pHashNext
;
pCache
->
nPage
--
;
// printf("rmv page %d to hash, pgno %d, pPage %p\n", pPage->id, TDB_PAGE_PGNO(pPage), pPage);
}
tdbDebug
(
"
remove page %p/%d from hash"
,
pPage
,
pPage
->
id
);
tdbDebug
(
"
pcache/remove page %p/%d/%d from hash %"
PRIu32
,
pPage
,
TDB_PAGE_PGNO
(
pPage
),
pPage
->
id
,
h
);
}
static
void
tdbPCacheAddPageToHash
(
SPCache
*
pCache
,
SPage
*
pPage
)
{
...
...
@@ -298,7 +294,7 @@ static void tdbPCacheAddPageToHash(SPCache *pCache, SPage *pPage) {
pCache
->
nPage
++
;
// printf("add page %d to hash, pgno %d, pPage %p\n", pPage->id, TDB_PAGE_PGNO(pPage), pPage);
tdbDebug
(
"
add page %p/%d to hash"
,
pPage
,
pPage
->
id
);
tdbDebug
(
"
pcache/add page %p/%d/%d to hash %"
PRIu32
,
pPage
,
TDB_PAGE_PGNO
(
pPage
),
pPage
->
id
,
h
);
}
static
int
tdbPCacheOpenImpl
(
SPCache
*
pCache
)
{
...
...
source/libs/tdb/src/db/tdbPage.c
浏览文件 @
45775a9e
...
...
@@ -68,6 +68,8 @@ int tdbPageCreate(int pageSize, SPage **ppPage, void *(*xMalloc)(void *, size_t)
}
*
ppPage
=
pPage
;
tdbDebug
(
"page/create: %p %p"
,
pPage
,
xMalloc
);
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录