Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
7425820c
T
TDengine
项目概览
taosdata
/
TDengine
大约 2 年 前同步成功
通知
1193
Star
22018
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看板
提交
7425820c
编写于
1月 16, 2023
作者:
H
Haojun Liao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor: do some internal refactor.
上级
a9ed671d
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
20 addition
and
6 deletion
+20
-6
include/util/ttrace.h
include/util/ttrace.h
+14
-0
include/util/tutil.h
include/util/tutil.h
+1
-1
source/client/src/clientImpl.c
source/client/src/clientImpl.c
+1
-1
source/dnode/vnode/src/tsdb/tsdbFile.c
source/dnode/vnode/src/tsdb/tsdbFile.c
+3
-3
source/util/src/tutil.c
source/util/src/tutil.c
+1
-1
未找到文件。
include/util/ttrace.h
浏览文件 @
7425820c
...
...
@@ -52,6 +52,20 @@ typedef struct STraceId {
sprintf(buf, "0x%" PRIx64 ":0x%" PRIx64 "", rootId, msgId); \
} while (0)
#define TRACE_TO_STR_(_traceId, _buf) \
do { \
int64_t rootId = (_traceId) != NULL ? (_traceId)->rootId : 0; \
int64_t msgId = (_traceId) != NULL ? (_traceId)->msgId : 0; \
char* _t = _buf; \
_t[0] = '0'; \
_t[1] = 'x'; \
_t += titoa(rootId, 16, &_t[2]); \
_t[0] = ':'; \
_t[1] = '0'; \
_t[2] = 'x'; \
_t += titoa(msgId, 16, &_t[3]); \
} while (0)
#ifdef __cplusplus
}
#endif
...
...
include/util/tutil.h
浏览文件 @
7425820c
...
...
@@ -47,7 +47,7 @@ int32_t taosByteArrayToHexStr(char bytes[], int32_t len, char hexstr[]);
int32_t
taosHexStrToByteArray
(
char
hexstr
[],
char
bytes
[]);
int32_t
tintToHex
(
uint64_t
val
,
char
hex
[]);
int32_t
ti
ntToStr
(
uint64_t
val
,
size_t
radix
,
char
str
[]);
int32_t
ti
toa
(
uint64_t
val
,
size_t
radix
,
char
str
[]);
char
*
taosIpStr
(
uint32_t
ipInt
);
uint32_t
ip2uint
(
const
char
*
const
ip_addr
);
...
...
source/client/src/clientImpl.c
浏览文件 @
7425820c
...
...
@@ -1371,7 +1371,7 @@ int32_t doProcessMsgFromServer(void* param) {
STraceId
*
trace
=
&
pMsg
->
info
.
traceId
;
char
tbuf
[
40
]
=
{
0
};
TRACE_TO_STR
(
trace
,
tbuf
);
TRACE_TO_STR
_
(
trace
,
tbuf
);
tscDebug
(
"processMsgFromServer handle %p, message: %s, size:%d, code: %s, gtid: %s"
,
pMsg
->
info
.
handle
,
TMSG_INFO
(
pMsg
->
msgType
),
pMsg
->
contLen
,
tstrerror
(
pMsg
->
code
),
tbuf
);
...
...
source/dnode/vnode/src/tsdb/tsdbFile.c
浏览文件 @
7425820c
...
...
@@ -108,15 +108,15 @@ void tsdbHeadFileName(STsdb *pTsdb, SDiskID did, int32_t fid, SHeadFile *pHeadF,
*
(
p
++
)
=
TD_DIRSEP
[
0
];
*
(
p
++
)
=
'v'
;
p
+=
ti
ntToStr
(
TD_VID
(
pTsdb
->
pVnode
),
10
,
p
);
p
+=
ti
toa
(
TD_VID
(
pTsdb
->
pVnode
),
10
,
p
);
*
(
p
++
)
=
'f'
;
p
+=
ti
ntToStr
(
fid
,
10
,
p
);
p
+=
ti
toa
(
fid
,
10
,
p
);
memcpy
(
p
,
"ver"
,
3
);
p
+=
3
;
p
+=
ti
ntToStr
(
pHeadF
->
commitID
,
10
,
p
);
p
+=
ti
toa
(
pHeadF
->
commitID
,
10
,
p
);
memcpy
(
p
,
".head"
,
5
);
p
[
5
]
=
0
;
}
...
...
source/util/src/tutil.c
浏览文件 @
7425820c
...
...
@@ -336,7 +336,7 @@ int32_t tintToHex(uint64_t val, char hex[]) {
return
j
;
}
int32_t
ti
ntToStr
(
uint64_t
val
,
size_t
radix
,
char
str
[])
{
int32_t
ti
toa
(
uint64_t
val
,
size_t
radix
,
char
str
[])
{
if
(
radix
<
2
||
radix
>
16
)
{
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录