Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
bed68741
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
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看板
提交
bed68741
编写于
12月 07, 2022
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
enh: add tassert
上级
dbb90c21
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
41 addition
and
1 deletion
+41
-1
include/util/tlog.h
include/util/tlog.h
+5
-0
source/common/src/tglobal.c
source/common/src/tglobal.c
+6
-1
source/util/src/tlog.c
source/util/src/tlog.c
+30
-0
未找到文件。
include/util/tlog.h
浏览文件 @
bed68741
...
...
@@ -38,6 +38,7 @@ typedef void (*LogFp)(int64_t ts, ELogLevel level, const char *content);
extern
bool
tsLogEmbedded
;
extern
bool
tsAsyncLog
;
extern
bool
tsAssert
;
extern
int32_t
tsNumOfLogLines
;
extern
int32_t
tsLogKeepDays
;
extern
LogFp
tsLogFp
;
...
...
@@ -82,6 +83,10 @@ void taosPrintLongString(const char *flags, ELogLevel level, int32_t dflag, cons
#endif
;
bool
taosAssertLog
(
bool
condition
,
const
char
*
file
,
int32_t
line
,
const
char
*
format
,
...);
#define tAssert(...) (void)taosAssertLog(condition, __FILE__, __LINE__, __VA_ARGS__);
#define tAssertR(...) taosAssertLog(condition, __FILE__, __LINE__, __VA_ARGS__)
// clang-format off
#define uFatal(...) { if (uDebugFlag & DEBUG_FATAL) { taosPrintLog("UTL FATAL", DEBUG_FATAL, tsLogEmbedded ? 255 : uDebugFlag, __VA_ARGS__); }}
#define uError(...) { if (uDebugFlag & DEBUG_ERROR) { taosPrintLog("UTL ERROR ", DEBUG_ERROR, tsLogEmbedded ? 255 : uDebugFlag, __VA_ARGS__); }}
...
...
source/common/src/tglobal.c
浏览文件 @
bed68741
...
...
@@ -334,6 +334,7 @@ static int32_t taosAddSystemCfg(SConfig *pCfg) {
if
(
cfgAddLocale
(
pCfg
,
"locale"
,
tsLocale
)
!=
0
)
return
-
1
;
if
(
cfgAddCharset
(
pCfg
,
"charset"
,
tsCharset
)
!=
0
)
return
-
1
;
if
(
cfgAddBool
(
pCfg
,
"enableCoreFile"
,
1
,
1
)
!=
0
)
return
-
1
;
if
(
cfgAddBool
(
pCfg
,
"assert"
,
1
,
1
)
!=
0
)
return
-
1
;
if
(
cfgAddFloat
(
pCfg
,
"numOfCores"
,
tsNumOfCores
,
1
,
100000
,
1
)
!=
0
)
return
-
1
;
if
(
cfgAddBool
(
pCfg
,
"SSE42"
,
tsSSE42Enable
,
0
)
!=
0
)
return
-
1
;
...
...
@@ -693,6 +694,8 @@ static void taosSetSystemCfg(SConfig *pCfg) {
bool
enableCore
=
cfgGetItem
(
pCfg
,
"enableCoreFile"
)
->
bval
;
taosSetCoreDump
(
enableCore
);
tsAssert
=
cfgGetItem
(
pCfg
,
"assert"
)
->
bval
;
// todo
tsVersion
=
30000000
;
}
...
...
@@ -788,7 +791,9 @@ int32_t taosSetCfg(SConfig *pCfg, char *name) {
case
'a'
:
{
if
(
strcasecmp
(
"asyncLog"
,
name
)
==
0
)
{
tsAsyncLog
=
cfgGetItem
(
pCfg
,
"asyncLog"
)
->
bval
;
}
}
else
if
(
strcasecmp
(
"assert"
,
name
)
==
0
)
{
tsAssert
=
cfgGetItem
(
pCfg
,
"assert"
)
->
bval
;
}
break
;
}
case
'c'
:
{
...
...
source/util/src/tlog.c
浏览文件 @
bed68741
...
...
@@ -72,6 +72,7 @@ static int32_t tsDaylightActive; /* Currently in daylight saving time. */
bool
tsLogEmbedded
=
0
;
bool
tsAsyncLog
=
true
;
bool
tsAssert
=
true
;
int32_t
tsNumOfLogLines
=
10000000
;
int32_t
tsLogKeepDays
=
0
;
LogFp
tsLogFp
=
NULL
;
...
...
@@ -778,3 +779,32 @@ cmp_end:
return
ret
;
}
bool
taosAssertLog
(
bool
condition
,
const
char
*
file
,
int32_t
line
,
const
char
*
format
,
...)
{
if
(
!
condition
)
return
false
;
char
buffer
[
LOG_MAX_LINE_BUFFER_SIZE
];
int32_t
len
=
taosBuildLogHead
(
buffer
,
"UTL FATAL"
);
va_list
argpointer
;
va_start
(
argpointer
,
format
);
int32_t
writeLen
=
len
+
vsnprintf
(
buffer
+
len
,
LOG_MAX_LINE_BUFFER_SIZE
-
len
,
format
,
argpointer
);
va_end
(
argpointer
);
char
fullBuf
[
LOG_MAX_LINE_BUFFER_SIZE
];
int32_t
fullLen
=
snprintf
(
fullBuf
,
sizeof
(
fullBuf
),
"ASSERT at file:%s:%d, %s"
,
file
,
line
,
buffer
);
taosPrintLogImp
(
1
,
255
,
fullBuf
,
fullLen
);
if
(
tsAssert
)
{
taosCloseLog
();
taosMsleep
(
300
);
#if NDEBUG
abort
();
#else
ASSERT
(
1
);
#endif
}
return
true
;
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录