Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
46397968
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
46397968
编写于
1月 19, 2021
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix encode problem in tsdb sync
上级
514e6ca4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
74 addition
and
6 deletion
+74
-6
src/tsdb/inc/tsdbFile.h
src/tsdb/inc/tsdbFile.h
+4
-0
src/tsdb/src/tsdbFile.c
src/tsdb/src/tsdbFile.c
+64
-0
src/tsdb/src/tsdbSync.c
src/tsdb/src/tsdbSync.c
+6
-6
未找到文件。
src/tsdb/inc/tsdbFile.h
浏览文件 @
46397968
...
...
@@ -57,6 +57,8 @@ void tsdbInitMFile(SMFile* pMFile, SDiskID did, int vid, uint32_t ver);
void
tsdbInitMFileEx
(
SMFile
*
pMFile
,
SMFile
*
pOMFile
);
int
tsdbEncodeSMFile
(
void
**
buf
,
SMFile
*
pMFile
);
void
*
tsdbDecodeSMFile
(
void
*
buf
,
SMFile
*
pMFile
);
int
tsdbEncodeSMFileEx
(
void
**
buf
,
SMFile
*
pMFile
);
void
*
tsdbDecodeSMFileEx
(
void
*
buf
,
SMFile
*
pMFile
);
int
tsdbApplyMFileChange
(
SMFile
*
from
,
SMFile
*
to
);
int
tsdbCreateMFile
(
SMFile
*
pMFile
,
bool
updateHeader
);
int
tsdbUpdateMFileHeader
(
SMFile
*
pMFile
);
...
...
@@ -301,6 +303,8 @@ void tsdbInitDFileSet(SDFileSet* pSet, SDiskID did, int vid, int fid, uint32_t
void
tsdbInitDFileSetEx
(
SDFileSet
*
pSet
,
SDFileSet
*
pOSet
);
int
tsdbEncodeDFileSet
(
void
**
buf
,
SDFileSet
*
pSet
);
void
*
tsdbDecodeDFileSet
(
void
*
buf
,
SDFileSet
*
pSet
);
int
tsdbEncodeDFileSetEx
(
void
**
buf
,
SDFileSet
*
pSet
);
void
*
tsdbDecodeDFileSetEx
(
void
*
buf
,
SDFileSet
*
pSet
);
int
tsdbApplyDFileSetChange
(
SDFileSet
*
from
,
SDFileSet
*
to
);
int
tsdbCreateDFileSet
(
SDFileSet
*
pSet
,
bool
updateHeader
);
int
tsdbUpdateDFileSetHeader
(
SDFileSet
*
pSet
);
...
...
src/tsdb/src/tsdbFile.c
浏览文件 @
46397968
...
...
@@ -64,6 +64,27 @@ void *tsdbDecodeSMFile(void *buf, SMFile *pMFile) {
return
buf
;
}
int
tsdbEncodeSMFileEx
(
void
**
buf
,
SMFile
*
pMFile
)
{
int
tlen
=
0
;
tlen
+=
tsdbEncodeMFInfo
(
buf
,
&
(
pMFile
->
info
));
tlen
+=
taosEncodeString
(
buf
,
TSDB_FILE_FULL_NAME
(
pMFile
));
return
tlen
;
}
void
*
tsdbDecodeSMFileEx
(
void
*
buf
,
SMFile
*
pMFile
)
{
char
*
aname
;
buf
=
tsdbDecodeMFInfo
(
buf
,
&
(
pMFile
->
info
));
buf
=
taosDecodeString
(
buf
,
&
aname
);
strncpy
(
TSDB_FILE_FULL_NAME
(
pMFile
),
aname
,
TSDB_FILENAME_LEN
);
TSDB_FILE_SET_CLOSED
(
pMFile
);
tfree
(
aname
);
return
buf
;
}
int
tsdbApplyMFileChange
(
SMFile
*
from
,
SMFile
*
to
)
{
ASSERT
(
from
!=
NULL
||
to
!=
NULL
);
...
...
@@ -262,6 +283,27 @@ void *tsdbDecodeSDFile(void *buf, SDFile *pDFile) {
return
buf
;
}
static
int
tsdbEncodeSDFileEx
(
void
**
buf
,
SDFile
*
pDFile
)
{
int
tlen
=
0
;
tlen
+=
tsdbEncodeDFInfo
(
buf
,
&
(
pDFile
->
info
));
tlen
+=
taosEncodeString
(
buf
,
TSDB_FILE_FULL_NAME
(
pDFile
));
return
tlen
;
}
static
void
*
tsdbDecodeSDFileEx
(
void
*
buf
,
SDFile
*
pDFile
)
{
char
*
aname
;
buf
=
tsdbDecodeDFInfo
(
buf
,
&
(
pDFile
->
info
));
buf
=
taosDecodeString
(
buf
,
&
aname
);
strncpy
(
TSDB_FILE_FULL_NAME
(
pDFile
),
aname
,
TSDB_FILENAME_LEN
);
TSDB_FILE_SET_CLOSED
(
pDFile
);
tfree
(
aname
);
return
buf
;
}
int
tsdbCreateDFile
(
SDFile
*
pDFile
,
bool
updateHeader
)
{
ASSERT
(
pDFile
->
info
.
size
==
0
&&
pDFile
->
info
.
magic
==
TSDB_FILE_INIT_MAGIC
);
...
...
@@ -451,6 +493,28 @@ void *tsdbDecodeDFileSet(void *buf, SDFileSet *pSet) {
return
buf
;
}
int
tsdbEncodeDFileSetEx
(
void
**
buf
,
SDFileSet
*
pSet
)
{
int
tlen
=
0
;
tlen
+=
taosEncodeFixedI32
(
buf
,
pSet
->
fid
);
for
(
TSDB_FILE_T
ftype
=
0
;
ftype
<
TSDB_FILE_MAX
;
ftype
++
)
{
tlen
+=
tsdbEncodeSDFileEx
(
buf
,
TSDB_DFILE_IN_SET
(
pSet
,
ftype
));
}
return
tlen
;
}
void
*
tsdbDecodeDFileSetEx
(
void
*
buf
,
SDFileSet
*
pSet
)
{
int32_t
fid
;
buf
=
taosDecodeFixedI32
(
buf
,
&
(
fid
));
pSet
->
fid
=
fid
;
for
(
TSDB_FILE_T
ftype
=
0
;
ftype
<
TSDB_FILE_MAX
;
ftype
++
)
{
buf
=
tsdbDecodeSDFileEx
(
buf
,
TSDB_DFILE_IN_SET
(
pSet
,
ftype
));
}
return
buf
;
}
int
tsdbApplyDFileSetChange
(
SDFileSet
*
from
,
SDFileSet
*
to
)
{
for
(
TSDB_FILE_T
ftype
=
0
;
ftype
<
TSDB_FILE_MAX
;
ftype
++
)
{
SDFile
*
pDFileFrom
=
(
from
)
?
TSDB_DFILE_IN_SET
(
from
,
ftype
)
:
NULL
;
...
...
src/tsdb/src/tsdbSync.c
浏览文件 @
46397968
...
...
@@ -205,7 +205,7 @@ static int tsdbSendMetaInfo(SSyncH *pSynch) {
SMFile
*
pMFile
=
pRepo
->
fs
->
cstatus
->
pmf
;
if
(
pMFile
)
{
tlen
=
tlen
+
tsdbEncodeSMFile
(
NULL
,
pMFile
)
+
sizeof
(
TSCKSUM
);
tlen
=
tlen
+
tsdbEncodeSMFile
Ex
(
NULL
,
pMFile
)
+
sizeof
(
TSCKSUM
);
}
if
(
tsdbMakeRoom
((
void
**
)(
&
SYNC_BUFFER
(
pSynch
)),
tlen
)
<
0
)
{
...
...
@@ -216,7 +216,7 @@ static int tsdbSendMetaInfo(SSyncH *pSynch) {
taosEncodeFixedU32
(
&
ptr
,
tlen
);
void
*
tptr
=
ptr
;
if
(
pMFile
)
{
tsdbEncodeSMFile
(
&
ptr
,
pMFile
);
tsdbEncodeSMFile
Ex
(
&
ptr
,
pMFile
);
taosCalcChecksumAppend
(
0
,
(
uint8_t
*
)
tptr
,
tlen
);
}
...
...
@@ -263,7 +263,7 @@ static int tsdbRecvMetaInfo(SSyncH *pSynch) {
}
pSynch
->
pmf
=
&
(
pSynch
->
mf
);
tsdbDecodeSMFile
(
SYNC_BUFFER
(
pSynch
),
pSynch
->
pmf
);
tsdbDecodeSMFile
Ex
(
SYNC_BUFFER
(
pSynch
),
pSynch
->
pmf
);
return
0
;
}
...
...
@@ -496,7 +496,7 @@ static int tsdbSendDFileSetInfo(SSyncH *pSynch, SDFileSet *pSet) {
uint32_t
tlen
=
0
;
if
(
pSet
)
{
tlen
=
tsdbEncodeDFileSet
(
NULL
,
pSet
)
+
sizeof
(
TSCKSUM
);
tlen
=
tsdbEncodeDFileSet
Ex
(
NULL
,
pSet
)
+
sizeof
(
TSCKSUM
);
}
if
(
tsdbMakeRoom
((
void
**
)(
&
SYNC_BUFFER
(
pSynch
)),
tlen
+
sizeof
(
tlen
))
<
0
)
{
...
...
@@ -507,7 +507,7 @@ static int tsdbSendDFileSetInfo(SSyncH *pSynch, SDFileSet *pSet) {
taosEncodeFixedU32
(
&
ptr
,
tlen
);
void
*
tptr
=
ptr
;
if
(
pSet
)
{
tsdbEncodeDFileSet
(
&
ptr
,
pSet
);
tsdbEncodeDFileSet
Ex
(
&
ptr
,
pSet
);
taosCalcChecksumAppend
(
0
,
(
uint8_t
*
)
tptr
,
tlen
);
}
...
...
@@ -551,7 +551,7 @@ static int tsdbRecvDFileSetInfo(SSyncH *pSynch) {
}
pSynch
->
pdf
=
&
(
pSynch
->
df
);
tsdbDecodeDFileSet
(
SYNC_BUFFER
(
pSynch
),
pSynch
->
pdf
);
tsdbDecodeDFileSet
Ex
(
SYNC_BUFFER
(
pSynch
),
pSynch
->
pdf
);
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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录