Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
066786e6
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22017
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
066786e6
编写于
5月 15, 2023
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more code
上级
c31b1034
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
35 addition
and
15 deletion
+35
-15
source/dnode/vnode/src/tsdb/dev/inc/tsdbFS.h
source/dnode/vnode/src/tsdb/dev/inc/tsdbFS.h
+1
-0
source/dnode/vnode/src/tsdb/dev/inc/tsdbFile.h
source/dnode/vnode/src/tsdb/dev/inc/tsdbFile.h
+2
-2
source/dnode/vnode/src/tsdb/dev/tsdbFSet.c
source/dnode/vnode/src/tsdb/dev/tsdbFSet.c
+17
-13
source/dnode/vnode/src/tsdb/dev/tsdbFile.c
source/dnode/vnode/src/tsdb/dev/tsdbFile.c
+15
-0
未找到文件。
source/dnode/vnode/src/tsdb/dev/inc/tsdbFS.h
浏览文件 @
066786e6
...
...
@@ -49,6 +49,7 @@ struct STFileSystem {
tsem_t
canEdit
;
int64_t
neid
;
SArray
*
cstate
;
// current state, SArray<STFileSet>
// new state
EFEditT
etype
;
int64_t
eid
;
SArray
*
nstate
;
// next state, SArray<STFileSet>
...
...
source/dnode/vnode/src/tsdb/dev/inc/tsdbFile.h
浏览文件 @
066786e6
...
...
@@ -39,7 +39,7 @@ 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
tsdbTFileCreate
(
const
STFile
*
pFile
,
STFile
**
f
);
int32_t
tsdbTFileDestroy
(
STFile
*
pFile
);
// init/clear
...
...
@@ -48,9 +48,9 @@ int32_t tsdbTFileClear(STFile *pFile);
struct
STFile
{
LISTD
(
STFile
)
listNode
;
char
fname
[
TSDB_FILENAME_LEN
];
int32_t
ref
;
char
fname
[
TSDB_FILENAME_LEN
];
tsdb_ftype_t
type
;
SDiskID
did
;
int32_t
fid
;
// file id
...
...
source/dnode/vnode/src/tsdb/dev/tsdbFSet.c
浏览文件 @
066786e6
...
...
@@ -43,6 +43,19 @@ static int32_t stt_lvl_from_json(const cJSON *json, SSttLvl *lvl) {
return
0
;
}
static
int32_t
add_file
(
STFileSet
*
fset
,
STFile
*
f
)
{
if
(
f
->
type
==
TSDB_FTYPE_STT
)
{
SSttLvl
*
lvl
=
&
fset
->
lvl0
;
// TODO
lvl
->
nstt
++
;
lvl
->
fstt
=
f
;
}
else
{
fset
->
farr
[
f
->
type
]
=
f
;
}
return
0
;
}
int32_t
tsdbFileSetToJson
(
const
STFileSet
*
fset
,
cJSON
*
json
)
{
int32_t
code
=
0
;
...
...
@@ -118,20 +131,11 @@ int32_t tsdbFSetEdit(STFileSet *fset, const STFileOp *op) {
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
;
// code = get_or_create_lvl(fset, f[0].stt.lvl, &lvl);
if
(
code
)
return
code
;
STFile
*
f
;
code
=
tsdbTFileCreate
(
&
op
->
nState
,
&
f
);
if
(
code
)
return
code
;
// TODO: add the stt file to the level
}
else
{
fset
->
farr
[
f
[
0
].
type
]
=
f
;
}
add_file
(
fset
,
f
);
}
else
if
(
op
->
nState
.
size
==
0
)
{
// delete
}
else
{
...
...
source/dnode/vnode/src/tsdb/dev/tsdbFile.c
浏览文件 @
066786e6
...
...
@@ -226,5 +226,20 @@ int32_t tsdbTFileFromJson(const cJSON *json, tsdb_ftype_t ftype, STFile **f) {
f
[
0
]
=
NULL
;
}
return
0
;
}
int32_t
tsdbTFileCreate
(
const
STFile
*
pFile
,
STFile
**
f
)
{
f
[
0
]
=
taosMemoryMalloc
(
sizeof
(
*
f
[
0
]));
if
(
f
[
0
]
==
NULL
)
return
TSDB_CODE_OUT_OF_MEMORY
;
*
f
[
0
]
=
*
pFile
;
f
[
0
]
->
ref
=
1
;
return
0
;
}
int32_t
tsdbTFileDestroy
(
STFile
*
pFile
)
{
taosMemoryFree
(
pFile
);
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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录