Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
42f8dde7
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看板
未验证
提交
42f8dde7
编写于
8月 05, 2022
作者:
C
Cary Xu
提交者:
GitHub
8月 05, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #15746 from taosdata/fix/TD-18141
fix: free btc cell coder's pval memory when closing btc
上级
876443bb
938c6e4c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
35 addition
and
5 deletion
+35
-5
source/libs/tdb/src/db/tdbBtree.c
source/libs/tdb/src/db/tdbBtree.c
+35
-5
未找到文件。
source/libs/tdb/src/db/tdbBtree.c
浏览文件 @
42f8dde7
...
...
@@ -176,6 +176,8 @@ int tdbBtreeInsert(SBTree *pBt, const void *pKey, int kLen, const void *pVal, in
tdbBtcOpen
(
&
btc
,
pBt
,
pTxn
);
tdbTrace
(
"tdb insert, btc: %p, pTxn: %p"
,
&
btc
,
pTxn
);
// move to the position to insert
ret
=
tdbBtcMoveTo
(
&
btc
,
pKey
,
kLen
,
&
c
);
if
(
ret
<
0
)
{
...
...
@@ -214,6 +216,8 @@ int tdbBtreeDelete(SBTree *pBt, const void *pKey, int kLen, TXN *pTxn) {
tdbBtcOpen
(
&
btc
,
pBt
,
pTxn
);
tdbTrace
(
"tdb delete, btc: %p, pTxn: %p"
,
&
btc
,
pTxn
);
// move the cursor
ret
=
tdbBtcMoveTo
(
&
btc
,
pKey
,
kLen
,
&
c
);
if
(
ret
<
0
)
{
...
...
@@ -244,6 +248,8 @@ int tdbBtreeUpsert(SBTree *pBt, const void *pKey, int nKey, const void *pData, i
tdbBtcOpen
(
&
btc
,
pBt
,
pTxn
);
tdbTrace
(
"tdb upsert, btc: %p, pTxn: %p"
,
&
btc
,
pTxn
);
// move the cursor
ret
=
tdbBtcMoveTo
(
&
btc
,
pKey
,
nKey
,
&
c
);
if
(
ret
<
0
)
{
...
...
@@ -283,10 +289,12 @@ int tdbBtreePGet(SBTree *pBt, const void *pKey, int kLen, void **ppKey, int *pkL
int
ret
;
void
*
pTKey
=
NULL
;
void
*
pTVal
=
NULL
;
SCellDecoder
cd
;
SCellDecoder
cd
=
{
0
}
;
tdbBtcOpen
(
&
btc
,
pBt
,
NULL
);
tdbTrace
(
"tdb pget, btc: %p"
,
&
btc
);
ret
=
tdbBtcMoveTo
(
&
btc
,
pKey
,
kLen
,
&
cret
);
if
(
ret
<
0
)
{
tdbBtcClose
(
&
btc
);
...
...
@@ -295,6 +303,7 @@ int tdbBtreePGet(SBTree *pBt, const void *pKey, int kLen, void **ppKey, int *pkL
if
(
btc
.
idx
<
0
||
cret
)
{
tdbBtcClose
(
&
btc
);
return
-
1
;
}
...
...
@@ -330,9 +339,13 @@ int tdbBtreePGet(SBTree *pBt, const void *pKey, int kLen, void **ppKey, int *pkL
}
if
(
TDB_CELLDECODER_FREE_VAL
(
&
cd
))
{
tdbDebug
(
"tdb btc/pget/2 decoder: %p pVal free: %p"
,
&
cd
,
cd
.
pVal
);
tdbFree
(
cd
.
pVal
);
}
tdbTrace
(
"tdb pget end, btc decoder: %p/0x%x, local decoder:%p"
,
&
btc
.
coder
,
btc
.
coder
.
freeKV
,
&
cd
);
tdbBtcClose
(
&
btc
);
return
0
;
...
...
@@ -722,7 +735,7 @@ static int tdbBtreeBalanceNonRoot(SBTree *pBt, SPage *pParent, int idx, TXN *pTx
int
szCell
;
SBtreeInitPageArg
iarg
;
int
iNew
,
nNewCells
;
SCellDecoder
cd
;
SCellDecoder
cd
=
{
0
}
;
iarg
.
pBt
=
pBt
;
iarg
.
flags
=
TDB_BTREE_PAGE_GET_FLAGS
(
pOlds
[
0
]);
...
...
@@ -1235,6 +1248,8 @@ static int tdbBtreeDecodePayload(SPage *pPage, const SCell *pCell, int nHeader,
}
TDB_CELLDECODER_SET_FREE_VAL
(
pDecoder
);
tdbDebug
(
"tdb btc decoder: %p/0x%x pVal: %p "
,
pDecoder
,
pDecoder
->
freeKV
,
pDecoder
->
pVal
);
memcpy
(
pDecoder
->
pVal
,
pCell
+
nHeader
+
kLen
,
nLocal
-
kLen
-
sizeof
(
SPgno
));
nLeft
-=
nLocal
-
kLen
-
sizeof
(
SPgno
);
...
...
@@ -1376,6 +1391,9 @@ static int tdbBtreeDecodeCell(SPage *pPage, const SCell *pCell, SCellDecoder *pD
leaf
=
TDB_BTREE_PAGE_IS_LEAF
(
pPage
);
// Clear the state of decoder
if
(
TDB_CELLDECODER_FREE_VAL
(
pDecoder
))
{
tdbFree
(
pDecoder
->
pVal
);
}
pDecoder
->
kLen
=
-
1
;
pDecoder
->
pKey
=
NULL
;
pDecoder
->
vLen
=
-
1
;
...
...
@@ -1383,6 +1401,8 @@ static int tdbBtreeDecodeCell(SPage *pPage, const SCell *pCell, SCellDecoder *pD
pDecoder
->
pgno
=
0
;
TDB_CELLDECODER_SET_FREE_NIL
(
pDecoder
);
tdbDebug
(
"tdb btc decoder set nil: %p/0x%x "
,
pDecoder
,
pDecoder
->
freeKV
);
// 1. Decode header part
if
(
!
leaf
)
{
ASSERT
(
pPage
->
vLen
==
sizeof
(
SPgno
));
...
...
@@ -1650,7 +1670,7 @@ int tdbBtcMoveToLast(SBTC *pBtc) {
int
tdbBtreeNext
(
SBTC
*
pBtc
,
void
**
ppKey
,
int
*
kLen
,
void
**
ppVal
,
int
*
vLen
)
{
SCell
*
pCell
;
SCellDecoder
cd
;
SCellDecoder
cd
=
{
0
}
;
void
*
pKey
,
*
pVal
;
int
ret
;
...
...
@@ -1696,7 +1716,7 @@ int tdbBtreeNext(SBTC *pBtc, void **ppKey, int *kLen, void **ppVal, int *vLen) {
int
tdbBtreePrev
(
SBTC
*
pBtc
,
void
**
ppKey
,
int
*
kLen
,
void
**
ppVal
,
int
*
vLen
)
{
SCell
*
pCell
;
SCellDecoder
cd
;
SCellDecoder
cd
=
{
0
}
;
void
*
pKey
,
*
pVal
;
int
ret
;
...
...
@@ -2037,7 +2057,7 @@ int tdbBtcMoveTo(SBTC *pBtc, const void *pKey, int kLen, int *pCRst) {
const
void
*
pTKey
;
int
tkLen
;
tdbTrace
(
"t
tl
moveto, pager:%p, ipage:%d"
,
pPager
,
pBtc
->
iPage
);
tdbTrace
(
"t
db
moveto, pager:%p, ipage:%d"
,
pPager
,
pBtc
->
iPage
);
if
(
pBtc
->
iPage
<
0
)
{
// move from a clear cursor
ret
=
tdbPagerFetchPage
(
pPager
,
&
pBt
->
root
,
&
(
pBtc
->
pPage
),
tdbBtreeInitPage
,
...
...
@@ -2093,6 +2113,7 @@ int tdbBtcMoveTo(SBTC *pBtc, const void *pKey, int kLen, int *pCRst) {
}
// search downward to the leaf
tdbTrace
(
"tdb search downward, pager:%p, ipage:%d"
,
pPager
,
pBtc
->
iPage
);
for
(;;)
{
int
lidx
,
ridx
;
SPage
*
pPage
;
...
...
@@ -2127,6 +2148,7 @@ int tdbBtcMoveTo(SBTC *pBtc, const void *pKey, int kLen, int *pCRst) {
}
// binary search
tdbTrace
(
"tdb binary search, pager:%p, ipage:%d"
,
pPager
,
pBtc
->
iPage
);
for
(;;)
{
if
(
lidx
>
ridx
)
break
;
...
...
@@ -2157,6 +2179,8 @@ int tdbBtcMoveTo(SBTC *pBtc, const void *pKey, int kLen, int *pCRst) {
}
}
tdbTrace
(
"tdb moveto end, pager:%p, ipage:%d"
,
pPager
,
pBtc
->
iPage
);
return
0
;
}
...
...
@@ -2175,6 +2199,12 @@ int tdbBtcClose(SBTC *pBtc) {
pBtc
->
idx
=
pBtc
->
idxStack
[
pBtc
->
iPage
];
}
if
(
TDB_CELLDECODER_FREE_VAL
(
&
pBtc
->
coder
))
{
tdbDebug
(
"tdb btc/close decoder: %p pVal free: %p"
,
&
pBtc
->
coder
,
pBtc
->
coder
.
pVal
);
tdbFree
(
pBtc
->
coder
.
pVal
);
}
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录