Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
43a2bcdc
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,发现更多精彩内容 >>
提交
43a2bcdc
编写于
12月 14, 2021
作者:
L
Liu Jicong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix wal read handle
上级
e70989dd
变更
6
显示空白变更内容
内联
并排
Showing
6 changed file
with
118 addition
and
75 deletion
+118
-75
include/libs/wal/wal.h
include/libs/wal/wal.h
+26
-32
source/libs/wal/inc/walInt.h
source/libs/wal/inc/walInt.h
+4
-2
source/libs/wal/src/walMgmt.c
source/libs/wal/src/walMgmt.c
+1
-2
source/libs/wal/src/walRead.c
source/libs/wal/src/walRead.c
+34
-18
source/libs/wal/src/walWrite.c
source/libs/wal/src/walWrite.c
+4
-3
source/libs/wal/test/walMetaTest.cpp
source/libs/wal/test/walMetaTest.cpp
+49
-18
未找到文件。
include/libs/wal/wal.h
浏览文件 @
43a2bcdc
...
...
@@ -32,6 +32,23 @@ extern int32_t wDebugFlag;
#define wDebug(...) { if (wDebugFlag & DEBUG_DEBUG) { taosPrintLog("WAL ", wDebugFlag, __VA_ARGS__); }}
#define wTrace(...) { if (wDebugFlag & DEBUG_TRACE) { taosPrintLog("WAL ", wDebugFlag, __VA_ARGS__); }}
#define WAL_PREFIX "wal"
#define WAL_PREFIX_LEN 3
#define WAL_NOSUFFIX_LEN 20
#define WAL_SUFFIX_AT (WAL_NOSUFFIX_LEN+1)
#define WAL_LOG_SUFFIX "log"
#define WAL_INDEX_SUFFIX "idx"
#define WAL_REFRESH_MS 1000
#define WAL_MAX_SIZE (TSDB_MAX_WAL_SIZE + sizeof(SWalHead) + 16)
#define WAL_PATH_LEN (TSDB_FILENAME_LEN + 12)
#define WAL_FILE_LEN (WAL_PATH_LEN + 32)
#define WAL_IDX_ENTRY_SIZE (sizeof(int64_t)*2)
#define WAL_CUR_POS_WRITABLE 1
#define WAL_CUR_FILE_WRITABLE 2
#define WAL_CUR_FAILED 4
#pragma pack(push,1)
typedef
enum
{
TAOS_WAL_NOLOG
=
0
,
TAOS_WAL_WRITE
=
1
,
...
...
@@ -43,6 +60,7 @@ typedef struct SWalReadHead {
uint8_t
msgType
;
int8_t
reserved
[
2
];
int32_t
len
;
//int64_t ingestTs; //not implemented
int64_t
version
;
char
body
[];
}
SWalReadHead
;
...
...
@@ -71,25 +89,6 @@ typedef struct {
SWalReadHead
head
;
}
SWalHead
;
#define WAL_PREFIX "wal"
#define WAL_PREFIX_LEN 3
#define WAL_NOSUFFIX_LEN 20
#define WAL_SUFFIX_AT (WAL_NOSUFFIX_LEN+1)
#define WAL_LOG_SUFFIX "log"
#define WAL_INDEX_SUFFIX "idx"
#define WAL_REFRESH_MS 1000
#define WAL_MAX_SIZE (TSDB_MAX_WAL_SIZE + sizeof(SWalHead) + 16)
#define WAL_SIGNATURE ((uint32_t)(0xFAFBFDFEUL))
#define WAL_PATH_LEN (TSDB_FILENAME_LEN + 12)
#define WAL_FILE_LEN (WAL_PATH_LEN + 32)
//#define WAL_FILE_NUM 1 // 3
#define WAL_FILESET_MAX 128
#define WAL_IDX_ENTRY_SIZE (sizeof(int64_t)*2)
#define WAL_CUR_POS_WRITABLE 1
#define WAL_CUR_FILE_WRITABLE 2
#define WAL_CUR_FAILED 4
typedef
struct
SWalVer
{
int64_t
firstVer
;
int64_t
verInSnapshotting
;
...
...
@@ -101,24 +100,18 @@ typedef struct SWalVer {
typedef
struct
SWal
{
// cfg
SWalCfg
cfg
;
//total size
int64_t
totSize
;
//fsync seq
int32_t
fsyncSeq
;
//reference
int64_t
refId
;
//write tfd
int64_t
writeLogTfd
;
int64_t
writeIdxTfd
;
//wal lifecycle
SWalVer
vers
;
//roll status
int64_t
lastRollSeq
;
//file set
int32_t
writeCur
;
int64_t
writeLogTfd
;
int64_t
writeIdxTfd
;
SArray
*
fileInfoSet
;
//ctl
int32_t
curStatus
;
int32_t
fsyncSeq
;
int64_t
totSize
;
int64_t
refId
;
int64_t
lastRollSeq
;
pthread_mutex_t
mutex
;
//path
char
path
[
WAL_PATH_LEN
];
...
...
@@ -134,8 +127,9 @@ typedef struct SWalReadHandle {
int64_t
curVersion
;
int64_t
capacity
;
int64_t
status
;
//if cursor valid
SWalHead
h
ead
;
SWalHead
*
pH
ead
;
}
SWalReadHandle
;
#pragma pack(pop)
typedef
int32_t
(
*
FWalWrite
)(
void
*
ahandle
,
void
*
pHead
);
...
...
source/libs/wal/inc/walInt.h
浏览文件 @
43a2bcdc
...
...
@@ -33,10 +33,12 @@ typedef struct WalFileInfo {
int64_t
fileSize
;
}
WalFileInfo
;
#pragma pack(push,1)
typedef
struct
WalIdxEntry
{
int64_t
ver
;
int64_t
offset
;
}
WalIdxEntry
;
#pragma pack(pop)
static
inline
int32_t
compareWalFileInfo
(
const
void
*
pLeft
,
const
void
*
pRight
)
{
WalFileInfo
*
pInfoLeft
=
(
WalFileInfo
*
)
pLeft
;
...
...
@@ -78,11 +80,11 @@ static inline WalFileInfo* walGetCurFileInfo(SWal* pWal) {
}
static
inline
int
walBuildLogName
(
SWal
*
pWal
,
int64_t
fileFirstVer
,
char
*
buf
)
{
return
sprintf
(
buf
,
"%s/%"
PRId64
"."
WAL_LOG_SUFFIX
,
pWal
->
path
,
fileFirstVer
);
return
sprintf
(
buf
,
"%s/%
020
"
PRId64
"."
WAL_LOG_SUFFIX
,
pWal
->
path
,
fileFirstVer
);
}
static
inline
int
walBuildIdxName
(
SWal
*
pWal
,
int64_t
fileFirstVer
,
char
*
buf
)
{
return
sprintf
(
buf
,
"%s/%"
PRId64
"."
WAL_INDEX_SUFFIX
,
pWal
->
path
,
fileFirstVer
);
return
sprintf
(
buf
,
"%s/%
020
"
PRId64
"."
WAL_INDEX_SUFFIX
,
pWal
->
path
,
fileFirstVer
);
}
static
inline
int
walValidHeadCksum
(
SWalHead
*
pHead
)
{
...
...
source/libs/wal/src/walMgmt.c
浏览文件 @
43a2bcdc
...
...
@@ -255,9 +255,8 @@ static int32_t walCreateThread() {
static
void
walStopThread
()
{
atomic_store_8
(
&
tsWal
.
stop
,
1
);
if
(
t
sWal
.
thread
!=
NULL
&&
t
aosCheckPthreadValid
(
tsWal
.
thread
))
{
if
(
taosCheckPthreadValid
(
tsWal
.
thread
))
{
pthread_join
(
tsWal
.
thread
,
NULL
);
tsWal
.
thread
=
NULL
;
}
wDebug
(
"wal thread is stopped"
);
...
...
source/libs/wal/src/walRead.c
浏览文件 @
43a2bcdc
...
...
@@ -21,16 +21,25 @@ SWalReadHandle* walOpenReadHandle(SWal* pWal) {
if
(
pRead
==
NULL
)
{
return
NULL
;
}
memset
(
pRead
,
0
,
sizeof
(
SWalReadHandle
));
pRead
->
pWal
=
pWal
;
pRead
->
readIdxTfd
=
-
1
;
pRead
->
readLogTfd
=
-
1
;
pRead
->
curVersion
=
-
1
;
pRead
->
curFileFirstVer
=
-
1
;
pRead
->
capacity
=
0
;
pRead
->
status
=
0
;
pRead
->
pHead
=
malloc
(
sizeof
(
SWalHead
));
if
(
pRead
->
pHead
==
NULL
)
{
free
(
pRead
);
return
NULL
;
}
return
pRead
;
}
void
walCloseReadHandle
(
SWalReadHandle
*
pRead
)
{
tfClose
(
pRead
->
readIdxTfd
);
tfClose
(
pRead
->
readLogTfd
);
tfree
(
pRead
->
pHead
);
free
(
pRead
);
}
...
...
@@ -47,18 +56,17 @@ static int32_t walReadSeekFilePos(SWalReadHandle *pRead, int64_t fileFirstVer, i
//seek position
int64_t
offset
=
(
ver
-
fileFirstVer
)
*
WAL_IDX_ENTRY_SIZE
;
code
=
tfLseek
(
idxTfd
,
offset
,
SEEK_SET
);
if
(
code
!=
0
)
{
if
(
code
<
0
)
{
return
-
1
;
}
WalIdxEntry
entry
;
code
=
tfRead
(
idxTfd
,
&
entry
,
sizeof
(
WalIdxEntry
));
if
(
code
!=
0
)
{
if
(
tfRead
(
idxTfd
,
&
entry
,
sizeof
(
WalIdxEntry
))
!=
sizeof
(
WalIdxEntry
))
{
return
-
1
;
}
//TODO:deserialize
ASSERT
(
entry
.
ver
==
ver
);
code
=
tfLseek
(
logTfd
,
entry
.
offset
,
SEEK_SET
);
if
(
code
!=
0
)
{
if
(
code
<
0
)
{
return
-
1
;
}
return
code
;
...
...
@@ -71,13 +79,13 @@ static int32_t walReadChangeFile(SWalReadHandle *pRead, int64_t fileFirstVer) {
tfClose
(
pRead
->
readLogTfd
);
walBuildLogName
(
pRead
->
pWal
,
fileFirstVer
,
fnameStr
);
int
logTfd
=
tfOpenRead
(
fnameStr
);
int
64_t
logTfd
=
tfOpenRead
(
fnameStr
);
if
(
logTfd
<
0
)
{
return
-
1
;
}
walBuildIdxName
(
pRead
->
pWal
,
fileFirstVer
,
fnameStr
);
int
idxTfd
=
tfOpenRead
(
fnameStr
);
int
64_t
idxTfd
=
tfOpenRead
(
fnameStr
);
if
(
idxTfd
<
0
)
{
return
-
1
;
}
...
...
@@ -90,7 +98,7 @@ static int32_t walReadChangeFile(SWalReadHandle *pRead, int64_t fileFirstVer) {
static
int32_t
walReadSeekVer
(
SWalReadHandle
*
pRead
,
int64_t
ver
)
{
int
code
;
SWal
*
pWal
=
pRead
->
pWal
;
if
(
ver
==
p
Wal
->
vers
.
lastVer
)
{
if
(
ver
==
p
Read
->
curVersion
)
{
return
0
;
}
if
(
ver
>
pWal
->
vers
.
lastVer
||
ver
<
pWal
->
vers
.
firstVer
)
{
...
...
@@ -126,33 +134,41 @@ int32_t walReadWithHandle(SWalReadHandle *pRead, int64_t ver) {
int
code
;
//TODO: check wal life
if
(
pRead
->
curVersion
!=
ver
)
{
walReadSeekVer
(
pRead
,
ver
);
code
=
walReadSeekVer
(
pRead
,
ver
);
if
(
code
!=
0
)
{
return
-
1
;
}
}
if
(
!
tfValid
(
pRead
->
readLogTfd
))
return
-
1
;
if
(
sizeof
(
SWalHead
)
!=
tfRead
(
pRead
->
readLogTfd
,
&
pRead
->
head
,
sizeof
(
SWalHead
)))
{
code
=
tfRead
(
pRead
->
readLogTfd
,
pRead
->
pHead
,
sizeof
(
SWalHead
));
if
(
code
!=
sizeof
(
SWalHead
))
{
return
-
1
;
}
code
=
walValidHeadCksum
(
&
pRead
->
h
ead
);
code
=
walValidHeadCksum
(
pRead
->
pH
ead
);
if
(
code
!=
0
)
{
return
-
1
;
}
if
(
pRead
->
capacity
<
pRead
->
head
.
head
.
len
)
{
void
*
ptr
=
realloc
(
pRead
,
pRead
->
head
.
head
.
len
);
if
(
pRead
->
capacity
<
pRead
->
pHead
->
head
.
len
)
{
void
*
ptr
=
realloc
(
pRead
->
pHead
,
sizeof
(
SWalHead
)
+
pRead
->
pHead
->
head
.
len
);
if
(
ptr
==
NULL
)
{
return
-
1
;
}
pRead
=
ptr
;
pRead
->
capacity
=
pRead
->
head
.
head
.
len
;
pRead
->
pHead
=
ptr
;
pRead
->
capacity
=
pRead
->
pHead
->
head
.
len
;
}
if
(
pRead
->
head
.
head
.
len
!=
tfRead
(
pRead
->
readLogTfd
,
&
pRead
->
head
.
head
.
body
,
pRead
->
head
.
head
.
len
))
{
if
(
pRead
->
pHead
->
head
.
len
!=
tfRead
(
pRead
->
readLogTfd
,
pRead
->
pHead
->
head
.
body
,
pRead
->
pHead
->
head
.
len
))
{
return
-
1
;
}
code
=
walValidBodyCksum
(
&
pRead
->
head
);
/*code = walValidBodyCksum(pRead->pHead);*/
ASSERT
(
pRead
->
pHead
->
head
.
version
==
ver
);
if
(
code
!=
0
)
{
return
-
1
;
}
pRead
->
curVersion
++
;
return
0
;
}
...
...
source/libs/wal/src/walWrite.c
浏览文件 @
43a2bcdc
...
...
@@ -377,11 +377,12 @@ int64_t walWrite(SWal *pWal, int64_t index, uint8_t msgType, const void *body, i
//must truncate explicitly first
return
-
1
;
}
/*if (!tfValid(pWal->
curLogTfd)) return 0
;*/
/*if (!tfValid(pWal->
writeLogTfd)) return -1
;*/
pthread_mutex_lock
(
&
pWal
->
mutex
);
pWal
->
writeHead
.
head
.
version
=
index
;
int64_t
offset
=
walGetCurFileOffset
(
pWal
);
pWal
->
writeHead
.
head
.
len
=
bodyLen
;
pWal
->
writeHead
.
head
.
msgType
=
msgType
;
pWal
->
writeHead
.
cksumHead
=
walCalcHeadCksum
(
&
pWal
->
writeHead
);
...
...
@@ -393,12 +394,12 @@ int64_t walWrite(SWal *pWal, int64_t index, uint8_t msgType, const void *body, i
wError
(
"vgId:%d, file:%"
PRId64
".log, failed to write since %s"
,
pWal
->
cfg
.
vgId
,
walGetLastFileFirstVer
(
pWal
),
strerror
(
errno
));
}
if
(
tfWrite
(
pWal
->
writeLogTfd
,
&
body
,
bodyLen
)
!=
bodyLen
)
{
if
(
tfWrite
(
pWal
->
writeLogTfd
,
(
char
*
)
body
,
bodyLen
)
!=
bodyLen
)
{
//ftruncate
code
=
TAOS_SYSTEM_ERROR
(
errno
);
wError
(
"vgId:%d, file:%"
PRId64
".log, failed to write since %s"
,
pWal
->
cfg
.
vgId
,
walGetLastFileFirstVer
(
pWal
),
strerror
(
errno
));
}
code
=
walWriteIndex
(
pWal
,
index
,
walGetCurFileOffset
(
pWal
)
);
code
=
walWriteIndex
(
pWal
,
index
,
offset
);
if
(
code
!=
0
)
{
//TODO
return
-
1
;
...
...
source/libs/wal/test/walMetaTest.cpp
浏览文件 @
43a2bcdc
...
...
@@ -5,6 +5,9 @@
#include "walInt.h"
const
char
*
ranStr
=
"tvapq02tcp"
;
const
int
ranStrLen
=
strlen
(
ranStr
);
class
WalCleanEnv
:
public
::
testing
::
Test
{
protected:
static
void
SetUpTestCase
()
{
...
...
@@ -157,15 +160,13 @@ TEST_F(WalCleanEnv, removeOldMeta) {
TEST_F
(
WalKeepEnv
,
readOldMeta
)
{
walResetEnv
();
const
char
*
ranStr
=
"tvapq02tcp"
;
int
len
=
strlen
(
ranStr
);
int
code
;
for
(
int
i
=
0
;
i
<
10
;
i
++
)
{
code
=
walWrite
(
pWal
,
i
,
i
+
1
,
(
void
*
)
ranStr
,
l
en
);
code
=
walWrite
(
pWal
,
i
,
i
+
1
,
(
void
*
)
ranStr
,
ranStrL
en
);
ASSERT_EQ
(
code
,
0
);
ASSERT_EQ
(
pWal
->
vers
.
lastVer
,
i
);
code
=
walWrite
(
pWal
,
i
+
2
,
i
,
(
void
*
)
ranStr
,
l
en
);
code
=
walWrite
(
pWal
,
i
+
2
,
i
,
(
void
*
)
ranStr
,
ranStrL
en
);
ASSERT_EQ
(
code
,
-
1
);
ASSERT_EQ
(
pWal
->
vers
.
lastVer
,
i
);
}
...
...
@@ -179,7 +180,7 @@ TEST_F(WalKeepEnv, readOldMeta) {
char
*
newss
=
walMetaSerialize
(
pWal
);
len
=
strlen
(
oldss
);
int
len
=
strlen
(
oldss
);
ASSERT_EQ
(
len
,
strlen
(
newss
));
for
(
int
i
=
0
;
i
<
len
;
i
++
)
{
EXPECT_EQ
(
oldss
[
i
],
newss
[
i
]);
...
...
@@ -189,14 +190,12 @@ TEST_F(WalKeepEnv, readOldMeta) {
}
TEST_F
(
WalCleanEnv
,
write
)
{
const
char
*
ranStr
=
"tvapq02tcp"
;
const
int
len
=
strlen
(
ranStr
);
int
code
;
for
(
int
i
=
0
;
i
<
10
;
i
++
)
{
code
=
walWrite
(
pWal
,
i
,
i
+
1
,
(
void
*
)
ranStr
,
l
en
);
code
=
walWrite
(
pWal
,
i
,
i
+
1
,
(
void
*
)
ranStr
,
ranStrL
en
);
ASSERT_EQ
(
code
,
0
);
ASSERT_EQ
(
pWal
->
vers
.
lastVer
,
i
);
code
=
walWrite
(
pWal
,
i
+
2
,
i
,
(
void
*
)
ranStr
,
l
en
);
code
=
walWrite
(
pWal
,
i
+
2
,
i
,
(
void
*
)
ranStr
,
ranStrL
en
);
ASSERT_EQ
(
code
,
-
1
);
ASSERT_EQ
(
pWal
->
vers
.
lastVer
,
i
);
}
...
...
@@ -205,11 +204,9 @@ TEST_F(WalCleanEnv, write) {
}
TEST_F
(
WalCleanEnv
,
rollback
)
{
const
char
*
ranStr
=
"tvapq02tcp"
;
const
int
len
=
strlen
(
ranStr
);
int
code
;
for
(
int
i
=
0
;
i
<
10
;
i
++
)
{
code
=
walWrite
(
pWal
,
i
,
i
+
1
,
(
void
*
)
ranStr
,
l
en
);
code
=
walWrite
(
pWal
,
i
,
i
+
1
,
(
void
*
)
ranStr
,
ranStrL
en
);
ASSERT_EQ
(
code
,
0
);
ASSERT_EQ
(
pWal
->
vers
.
lastVer
,
i
);
}
...
...
@@ -224,12 +221,10 @@ TEST_F(WalCleanEnv, rollback) {
}
TEST_F
(
WalCleanDeleteEnv
,
roll
)
{
const
char
*
ranStr
=
"tvapq02tcp"
;
const
int
len
=
strlen
(
ranStr
);
int
code
;
int
i
;
for
(
i
=
0
;
i
<
100
;
i
++
)
{
code
=
walWrite
(
pWal
,
i
,
0
,
(
void
*
)
ranStr
,
l
en
);
code
=
walWrite
(
pWal
,
i
,
0
,
(
void
*
)
ranStr
,
ranStrL
en
);
ASSERT_EQ
(
code
,
0
);
ASSERT_EQ
(
pWal
->
vers
.
lastVer
,
i
);
code
=
walCommit
(
pWal
,
i
);
...
...
@@ -242,19 +237,55 @@ TEST_F(WalCleanDeleteEnv, roll) {
ASSERT_EQ
(
pWal
->
vers
.
snapshotVer
,
i
-
1
);
ASSERT_EQ
(
pWal
->
vers
.
verInSnapshotting
,
-
1
);
code
=
walWrite
(
pWal
,
5
,
0
,
(
void
*
)
ranStr
,
l
en
);
code
=
walWrite
(
pWal
,
5
,
0
,
(
void
*
)
ranStr
,
ranStrL
en
);
ASSERT_NE
(
code
,
0
);
for
(;
i
<
200
;
i
++
)
{
code
=
walWrite
(
pWal
,
i
,
0
,
(
void
*
)
ranStr
,
l
en
);
code
=
walWrite
(
pWal
,
i
,
0
,
(
void
*
)
ranStr
,
ranStrL
en
);
ASSERT_EQ
(
code
,
0
);
code
=
walCommit
(
pWal
,
i
);
ASSERT_EQ
(
pWal
->
vers
.
commitVer
,
i
);
}
//code = walWriteMeta(pWal);
code
=
walBeginTakeSnapshot
(
pWal
,
i
-
1
);
ASSERT_EQ
(
code
,
0
);
code
=
walEndTakeSnapshot
(
pWal
);
ASSERT_EQ
(
code
,
0
);
}
TEST_F
(
WalKeepEnv
,
readHandleRead
)
{
walResetEnv
();
int
code
;
SWalReadHandle
*
pRead
=
walOpenReadHandle
(
pWal
);
ASSERT
(
pRead
!=
NULL
);
int
i
;
for
(
i
=
0
;
i
<
100
;
i
++
)
{
char
newStr
[
100
];
sprintf
(
newStr
,
"%s-%d"
,
ranStr
,
i
);
int
len
=
strlen
(
newStr
);
code
=
walWrite
(
pWal
,
i
,
0
,
newStr
,
len
);
ASSERT_EQ
(
code
,
0
);
}
for
(
int
i
=
0
;
i
<
1000
;
i
++
)
{
int
ver
=
rand
()
%
100
;
code
=
walReadWithHandle
(
pRead
,
ver
);
ASSERT_EQ
(
code
,
0
);
//printf("rrbody: \n");
//for(int i = 0; i < pRead->pHead->head.len; i++) {
//printf("%d ", pRead->pHead->head.body[i]);
//}
//printf("\n");
ASSERT_EQ
(
pRead
->
pHead
->
head
.
version
,
ver
);
ASSERT_EQ
(
pRead
->
curVersion
,
ver
+
1
);
char
newStr
[
100
];
sprintf
(
newStr
,
"%s-%d"
,
ranStr
,
ver
);
int
len
=
strlen
(
newStr
);
ASSERT_EQ
(
pRead
->
pHead
->
head
.
len
,
len
);
for
(
int
j
=
0
;
j
<
len
;
j
++
)
{
EXPECT_EQ
(
newStr
[
j
],
pRead
->
pHead
->
head
.
body
[
j
]);
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录