Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
e7ebb5c2
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看板
提交
e7ebb5c2
编写于
5月 12, 2023
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more code
上级
10a39650
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
72 addition
and
22 deletion
+72
-22
include/util/tarray.h
include/util/tarray.h
+2
-2
source/dnode/vnode/src/tsdb/dev/inc/tsdbFSet.h
source/dnode/vnode/src/tsdb/dev/inc/tsdbFSet.h
+3
-2
source/dnode/vnode/src/tsdb/dev/inc/tsdbFile.h
source/dnode/vnode/src/tsdb/dev/inc/tsdbFile.h
+5
-0
source/dnode/vnode/src/tsdb/dev/tsdbFS.c
source/dnode/vnode/src/tsdb/dev/tsdbFS.c
+14
-1
source/dnode/vnode/src/tsdb/dev/tsdbFSet.c
source/dnode/vnode/src/tsdb/dev/tsdbFSet.c
+48
-17
未找到文件。
include/util/tarray.h
浏览文件 @
e7ebb5c2
...
...
@@ -204,9 +204,9 @@ void taosArrayClearEx(SArray* pArray, void (*fp)(void*));
void
*
taosArrayDestroy
(
SArray
*
pArray
);
void
taosArrayDestroyP
(
SArray
*
pArray
,
FDelete
fp
);
void
taosArrayDestroyP
(
SArray
*
pArray
,
FDelete
fp
);
void
taosArrayDestroyEx
(
SArray
*
pArray
,
FDelete
fp
);
void
taosArrayDestroyEx
(
SArray
*
pArray
,
FDelete
fp
);
void
taosArraySwap
(
SArray
*
a
,
SArray
*
b
);
...
...
source/dnode/vnode/src/tsdb/dev/inc/tsdbFSet.h
浏览文件 @
e7ebb5c2
...
...
@@ -36,7 +36,9 @@ typedef enum {
int32_t
tsdbFileSetToJson
(
const
STFileSet
*
fset
,
cJSON
*
json
);
int32_t
tsdbFileSetFromJson
(
const
cJSON
*
json
,
STFileSet
*
fset
);
int32_t
tsdbFileSetCreate
(
int32_t
fid
,
STFileSet
**
ppSet
);
int32_t
tsdbFileSetInit
(
STFileSet
*
pSet
);
int32_t
tsdbFileSetClear
(
STFileSet
*
pSet
);
int32_t
tsdbFSetEdit
(
STFileSet
*
pSet
,
const
STFileOp
*
pOp
);
int32_t
tsdbFSetCmprFn
(
const
STFileSet
*
pSet1
,
const
STFileSet
*
pSet2
);
...
...
@@ -57,7 +59,6 @@ typedef struct SSttLvl {
struct
STFileSet
{
int32_t
fid
;
int64_t
nextid
;
STFile
*
farr
[
TSDB_FTYPE_MAX
];
// file array
SSttLvl
lvl0
;
// level 0 of .stt
};
...
...
source/dnode/vnode/src/tsdb/dev/inc/tsdbFile.h
浏览文件 @
e7ebb5c2
...
...
@@ -38,6 +38,11 @@ typedef enum {
int32_t
tsdbTFileToJson
(
const
STFile
*
f
,
cJSON
*
json
);
int32_t
tsdbTFileFromJson
(
const
cJSON
*
json
,
tsdb_ftype_t
ftype
,
STFile
**
f
);
// create/destroy
int32_t
tsdbTFileCreate
(
STsdb
*
pTsdb
,
STFile
*
pFile
,
STFile
**
f
);
int32_t
tsdbTFileDestroy
(
STFile
*
pFile
);
// init/clear
int32_t
tsdbTFileInit
(
STsdb
*
pTsdb
,
STFile
*
pFile
);
int32_t
tsdbTFileClear
(
STFile
*
pFile
);
...
...
source/dnode/vnode/src/tsdb/dev/tsdbFS.c
浏览文件 @
e7ebb5c2
...
...
@@ -444,9 +444,22 @@ static int32_t edit_fs(STFileSystem *pFS, const SArray *aFileOp) {
pSet
=
taosArraySearch
(
pFS
->
nstate
,
&
fset
,
(
__compar_fn_t
)
tsdbFSetCmprFn
,
TD_EQ
);
}
// create fset if need
if
(
pSet
==
NULL
)
{
ASSERT
(
op
->
oState
.
size
==
0
&&
op
->
nState
.
size
>
0
);
// TODO
STFileSet
fset
=
{.
fid
=
op
->
fid
};
int32_t
idx
=
taosArraySearchIdx
(
pFS
->
nstate
,
&
fset
,
(
__compar_fn_t
)
tsdbFSetCmprFn
,
TD_GT
);
if
(
idx
<
0
)
idx
=
taosArrayGetSize
(
pFS
->
nstate
);
pSet
=
taosArrayInsert
(
pFS
->
nstate
,
idx
,
&
fset
);
if
(
pSet
==
NULL
)
{
code
=
TSDB_CODE_OUT_OF_MEMORY
;
TSDB_CHECK_CODE
(
code
,
lino
,
_exit
)
}
tsdbFileSetInit
(
pSet
);
}
code
=
tsdbFSetEdit
(
pSet
,
op
);
...
...
source/dnode/vnode/src/tsdb/dev/tsdbFSet.c
浏览文件 @
e7ebb5c2
...
...
@@ -43,21 +43,6 @@ static int32_t stt_lvl_from_json(const cJSON *json, SSttLvl *lvl) {
return
0
;
}
int32_t
tsdbFileSetCreate
(
int32_t
fid
,
struct
STFileSet
**
ppSet
)
{
int32_t
code
=
0
;
ppSet
[
0
]
=
taosMemoryCalloc
(
1
,
sizeof
(
struct
STFileSet
));
if
(
ppSet
[
0
]
==
NULL
)
{
code
=
TSDB_CODE_OUT_OF_MEMORY
;
goto
_exit
;
}
ppSet
[
0
]
->
fid
=
fid
;
ppSet
[
0
]
->
nextid
=
1
;
// TODO
_exit:
return
code
;
}
int32_t
tsdbFileSetToJson
(
const
STFileSet
*
fset
,
cJSON
*
json
)
{
int32_t
code
=
0
;
...
...
@@ -126,7 +111,53 @@ int32_t tsdbFSetCmprFn(const STFileSet *pSet1, const STFileSet *pSet2) {
return
0
;
}
int32_t
tsdbFSetEdit
(
STFileSet
*
pSet
,
const
STFileOp
*
pOp
)
{
int32_t
tsdbFSetEdit
(
STFileSet
*
fset
,
const
STFileOp
*
op
)
{
ASSERT
(
fset
->
fid
==
op
->
fid
);
if
(
op
->
oState
.
size
==
0
)
{
// create
STFile
*
f
=
taosMemoryMalloc
(
sizeof
(
STFile
));
if
(
f
==
NULL
)
return
TSDB_CODE_OUT_OF_MEMORY
;
f
[
0
]
=
op
->
nState
;
if
(
f
[
0
].
type
==
TSDB_FTYPE_STT
)
{
SSttLvl
*
lvl
;
LISTD_FOREACH
(
&
fset
->
lvl0
,
lvl
,
listNode
)
{
if
(
lvl
->
lvl
==
f
[
0
].
stt
.
lvl
)
{
break
;
}
}
if
(
lvl
==
NULL
)
{
// TODO: create the level
}
// TODO: add the stt file to the level
}
else
{
fset
->
farr
[
f
[
0
].
type
]
=
f
;
}
}
else
if
(
op
->
nState
.
size
==
0
)
{
// delete
}
else
{
// modify
}
return
0
;
}
int32_t
tsdbFileSetInit
(
STFileSet
*
pSet
)
{
for
(
tsdb_ftype_t
ftype
=
TSDB_FTYPE_MIN
;
ftype
<
TSDB_FTYPE_MAX
;
ftype
++
)
{
pSet
->
farr
[
ftype
]
=
NULL
;
}
LISTD_INIT
(
&
pSet
->
lvl0
,
listNode
);
pSet
->
lvl0
.
lvl
=
0
;
pSet
->
lvl0
.
nstt
=
0
;
pSet
->
lvl0
.
fstt
=
NULL
;
return
0
;
}
int32_t
tsdbFileSetClear
(
STFileSet
*
pSet
)
{
// TODO
return
0
;
}
\ No newline at end of file
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录