Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
4e8e3854
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看板
提交
4e8e3854
编写于
4月 06, 2023
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more code
上级
e8e0e497
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
109 addition
and
1 deletion
+109
-1
source/dnode/vnode/src/tsdb/dev/tsdbFS.c
source/dnode/vnode/src/tsdb/dev/tsdbFS.c
+100
-0
source/dnode/vnode/src/tsdb/dev/tsdbFS.h
source/dnode/vnode/src/tsdb/dev/tsdbFS.h
+9
-1
未找到文件。
source/dnode/vnode/src/tsdb/dev/tsdbFS.c
浏览文件 @
4e8e3854
...
...
@@ -31,6 +31,24 @@ static int32_t destroy_file_system(struct STFileSystem **ppFS) {
return
0
;
}
static
int32_t
get_current_file_name
(
STsdb
*
pTsdb
,
char
fname
[])
{
snprintf
(
fname
,
TSDB_FILENAME_LEN
,
"%s%s%s"
,
pTsdb
->
path
,
TD_DIRSEP
,
"current.json"
);
return
0
;
}
static
int32_t
get_temp_current_file_name
(
STsdb
*
pTsdb
,
char
fname
[],
EFsEditType
etype
)
{
switch
(
etype
)
{
case
TSDB_FS_EDIT_COMMIT
:
snprintf
(
fname
,
TSDB_FILENAME_LEN
,
"%s%s%s"
,
pTsdb
->
path
,
TD_DIRSEP
,
"current.json.commit"
);
break
;
default:
snprintf
(
fname
,
TSDB_FILENAME_LEN
,
"%s%s%s"
,
pTsdb
->
path
,
TD_DIRSEP
,
"current.json.t"
);
break
;
}
return
0
;
}
static
int32_t
open_file_system
(
struct
STFileSystem
*
pFS
,
int8_t
rollback
)
{
// TODO
return
0
;
...
...
@@ -41,6 +59,16 @@ static int32_t close_file_system(struct STFileSystem *pFS) {
return
0
;
}
static
int32_t
write_fs_to_file
(
struct
STFileSystem
*
pFS
,
const
char
*
fname
)
{
// TODO
return
0
;
}
static
int32_t
read_fs_from_file
(
struct
STFileSystem
*
pFS
,
const
char
*
fname
)
{
// TODO
return
0
;
}
int32_t
tsdbOpenFileSystem
(
STsdb
*
pTsdb
,
struct
STFileSystem
**
ppFS
,
int8_t
rollback
)
{
int32_t
code
;
int32_t
lino
;
...
...
@@ -68,3 +96,75 @@ int32_t tsdbCloseFileSystem(struct STFileSystem **ppFS) {
destroy_file_system
(
ppFS
);
return
0
;
}
int32_t
tsdbFileSystemEditBegin
(
struct
STFileSystem
*
pFS
,
const
SArray
*
aFileOp
,
EFsEditType
etype
)
{
int32_t
code
=
0
;
int32_t
lino
=
0
;
char
fname
[
TSDB_FILENAME_LEN
];
get_temp_current_file_name
(
pFS
->
pTsdb
,
fname
,
etype
);
tsem_wait
(
&
pFS
->
canEdit
);
code
=
write_fs_to_file
(
pFS
,
fname
);
TSDB_CHECK_CODE
(
code
,
lino
,
_exit
);
_exit:
if
(
code
)
{
tsdbError
(
"vgId:%d %s failed at line %d since %s"
,
//
TD_VID
(
pFS
->
pTsdb
->
pVnode
),
//
__func__
,
//
lino
,
//
tstrerror
(
code
));
}
return
code
;
}
int32_t
tsdbFileSystemEditCommit
(
struct
STFileSystem
*
pFS
,
EFsEditType
etype
)
{
int32_t
code
=
0
;
int32_t
lino
=
0
;
char
ofname
[
TSDB_FILENAME_LEN
];
char
nfname
[
TSDB_FILENAME_LEN
];
get_current_file_name
(
pFS
->
pTsdb
,
nfname
);
get_temp_current_file_name
(
pFS
->
pTsdb
,
ofname
,
etype
);
code
=
taosRenameFile
(
ofname
,
nfname
);
if
(
code
)
{
code
=
TAOS_SYSTEM_ERROR
(
errno
);
TSDB_CHECK_CODE
(
code
,
lino
,
_exit
);
}
_exit:
if
(
code
)
{
tsdbError
(
"vgId:%d %s failed at line %d since %s"
,
//
TD_VID
(
pFS
->
pTsdb
->
pVnode
),
//
__func__
,
//
lino
,
//
tstrerror
(
code
));
}
tsem_post
(
&
pFS
->
canEdit
);
return
code
;
}
int32_t
tsdbFileSystemEditAbort
(
struct
STFileSystem
*
pFS
,
EFsEditType
etype
)
{
int32_t
code
=
0
;
int32_t
lino
=
0
;
char
fname
[
TSDB_FILENAME_LEN
];
get_temp_current_file_name
(
pFS
->
pTsdb
,
fname
,
etype
);
code
=
taosRemoveFile
(
fname
);
TSDB_CHECK_CODE
(
code
,
lino
,
_exit
);
_exit:
if
(
code
)
{
tsdbError
(
"vgId:%d %s failed at line %d since %s"
,
//
TD_VID
(
pFS
->
pTsdb
->
pVnode
),
//
__func__
,
//
lino
,
//
tstrerror
(
code
));
}
tsem_post
(
&
pFS
->
canEdit
);
return
code
;
}
\ No newline at end of file
source/dnode/vnode/src/tsdb/dev/tsdbFS.h
浏览文件 @
4e8e3854
...
...
@@ -25,16 +25,24 @@ extern "C" {
/* Exposed Handle */
struct
STFileSystem
;
typedef
enum
{
TSDB_FS_EDIT_COMMIT
=
0
,
TSDB_FS_EDIT_MERGE
,
}
EFsEditType
;
/* Exposed APIs */
// open/close
int32_t
tsdbOpenFileSystem
(
STsdb
*
pTsdb
,
struct
STFileSystem
**
ppFS
,
int8_t
rollback
);
int32_t
tsdbCloseFileSystem
(
struct
STFileSystem
**
ppFS
);
// txn
// int32_t tsdb
int32_t
tsdbFileSystemEditBegin
(
struct
STFileSystem
*
pFS
,
const
SArray
*
aFileOp
,
EFsEditType
etype
);
int32_t
tsdbFileSystemEditCommit
(
struct
STFileSystem
*
pFS
,
EFsEditType
etype
);
int32_t
tsdbFileSystemEditAbort
(
struct
STFileSystem
*
pFS
,
EFsEditType
etype
);
/* Exposed Structs */
struct
STFileSystem
{
STsdb
*
pTsdb
;
tsem_t
canEdit
;
int32_t
nFileSet
;
struct
SFileSet
*
aFileSet
;
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录