Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
5808cc49
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
5808cc49
编写于
3月 21, 2020
作者:
H
hzcheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
TD-34
上级
cfa6e546
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
41 addition
and
2 deletion
+41
-2
src/util/inc/tlist.h
src/util/inc/tlist.h
+1
-0
src/util/src/tlist.c
src/util/src/tlist.c
+10
-0
src/vnode/tsdb/src/tsdbMain.c
src/vnode/tsdb/src/tsdbMain.c
+28
-1
src/vnode/tsdb/tests/tsdbTests.cpp
src/vnode/tsdb/tests/tsdbTests.cpp
+2
-1
未找到文件。
src/util/inc/tlist.h
浏览文件 @
5808cc49
...
...
@@ -56,6 +56,7 @@ int tdListAppend(SList *list, void *data);
SListNode
*
tdListPopHead
(
SList
*
list
);
SListNode
*
tdListPopTail
(
SList
*
list
);
SListNode
*
tdListPopNode
(
SList
*
list
,
SListNode
*
node
);
void
tdListMove
(
SList
*
src
,
SList
*
dst
);
void
tdListNodeGetData
(
SList
*
list
,
SListNode
*
node
,
void
*
target
);
void
tdListInitIter
(
SList
*
list
,
SListIter
*
pIter
,
TD_LIST_DIRECTION_T
direction
);
...
...
src/util/src/tlist.c
浏览文件 @
5808cc49
...
...
@@ -135,6 +135,16 @@ SListNode *tdListPopNode(SList *list, SListNode *node) {
return
node
;
}
// Move all node elements from src to dst, the dst is assumed as an empty list
void
tdListMove
(
SList
*
src
,
SList
*
dst
)
{
// assert(dst->eleSize == src->eleSize);
dst
->
numOfEles
=
src
->
numOfEles
;
dst
->
head
=
src
->
head
;
dst
->
tail
=
src
->
tail
;
src
->
numOfEles
=
0
;
src
->
head
=
src
->
tail
=
NULL
;
}
void
tdListNodeGetData
(
SList
*
list
,
SListNode
*
node
,
void
*
target
)
{
memcpy
(
target
,
node
->
data
,
list
->
eleSize
);
}
void
tdListInitIter
(
SList
*
list
,
SListIter
*
pIter
,
TD_LIST_DIRECTION_T
direction
)
{
...
...
src/vnode/tsdb/src/tsdbMain.c
浏览文件 @
5808cc49
...
...
@@ -308,9 +308,23 @@ int32_t tsdbTriggerCommit(tsdb_repo_t *repo) {
if
(
pthread_mutex_lock
(
&
(
pRepo
->
mutex
))
<
0
)
return
-
1
;
if
(
pRepo
->
commit
)
return
0
;
pRepo
->
commit
=
1
;
// Loop to move pData to iData
for
(
int
i
=
0
;
i
<
pRepo
->
config
.
maxTables
;
i
++
)
{
STable
*
pTable
=
pRepo
->
tsdbMeta
->
tables
[
i
];
if
(
pTable
!=
NULL
)
{
void
*
pData
=
pTable
->
content
.
pData
;
pTable
->
content
.
pData
=
NULL
;
pTable
->
iData
=
pData
;
}
}
// Loop to move mem to imem
tdListMove
(
pRepo
->
tsdbCache
->
mem
,
pRepo
->
tsdbCache
->
imem
);
pthread_create
(
&
(
pRepo
->
commitThread
),
NULL
,
tsdbCommitToFile
,
(
void
*
)
repo
);
pthread_mutex_unlock
(
&
(
pRepo
->
mutex
));
pthread_join
(
pRepo
->
commitThread
,
NULL
);
return
0
;
}
...
...
@@ -692,7 +706,20 @@ static int32_t tsdbInsertDataToTable(tsdb_repo_t *repo, SSubmitBlk *pBlock) {
}
static
void
*
tsdbCommitToFile
(
void
*
arg
)
{
STsdbRepo
*
pRepo
=
(
STsdbRepo
*
)
arg
;
// TODO
STsdbRepo
*
pRepo
=
(
STsdbRepo
*
)
arg
;
STsdbMeta
*
pMeta
=
pRepo
->
tsdbMeta
;
for
(
int
i
=
0
;
i
<
pRepo
->
config
.
maxTables
;
i
++
)
{
STable
*
pTable
=
pMeta
->
tables
[
i
];
if
(
pTable
==
NULL
)
continue
;
SSkipListIterator
*
pIter
=
tSkipListCreateIter
(
pTable
->
iData
);
while
(
tSkipListIterNext
(
pIter
))
{
SSkipListNode
*
node
=
tSkipListIterGet
(
pIter
);
SDataRow
row
=
SL_GET_NODE_DATA
(
node
);
int
k
=
0
;
}
}
return
NULL
;
}
\ No newline at end of file
src/vnode/tsdb/tests/tsdbTests.cpp
浏览文件 @
5808cc49
...
...
@@ -101,7 +101,8 @@ TEST(TsdbTest, createRepo) {
tsdbInsertData
(
pRepo
,
pMsg
);
int
k
=
0
;
tsdbTriggerCommit
(
pRepo
);
}
TEST
(
TsdbTest
,
openRepo
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录