Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
VisualDL
提交
b8929df3
V
VisualDL
项目概览
PaddlePaddle
/
VisualDL
大约 1 年 前同步成功
通知
88
Star
4655
Fork
642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
5
Wiki
分析
仓库
DevOps
项目成员
Pages
V
VisualDL
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
5
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b8929df3
编写于
1月 09, 2018
作者:
S
superjom
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add a primary solution
上级
f0852f1a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
40 addition
and
18 deletion
+40
-18
visualdl/utils/logging.h
visualdl/utils/logging.h
+33
-16
visualdl/utils/test_logging.cc
visualdl/utils/test_logging.cc
+7
-2
未找到文件。
visualdl/utils/logging.h
浏览文件 @
b8929df3
#ifndef VISUALDL_UTILS_LOGGING_H
#define VISUALDL_UTILS_LOGGING_H
#include <csignal>
#include <iostream>
#include <sstream>
#include <stdexcept>
#include <string>
#include <csignal>
#if defined(VISUALDL_WITH_GLOG)
#include <glog/logging.h>
...
...
@@ -51,21 +51,43 @@ struct Error : public std::runtime_error {
};
// With exception.
struct
LogStreamFatal
{
struct
LogStreamFatal
:
public
std
::
basic_ostream
<
char
,
std
::
char_traits
<
char
>>
{
LogStreamFatal
(
const
char
*
file
,
int
line
)
{
ss
<<
"["
<<
file
<<
":"
<<
line
<<
"] "
;
throw
Error
(
ss
.
str
());
}
LogStreamFatal
&
operator
<<
(
std
::
basic_streambuf
<
char
,
std
::
char_traits
<
char
>>*
sb
)
{
*
this
<<
sb
;
if
(
sb
->
sgetc
()
==
'\n'
)
{
std
::
cout
<<
"end get"
;
}
return
*
this
;
}
friend
LogStreamFatal
&
operator
<<
(
LogStreamFatal
&
os
,
const
char
*
msg
)
{
std
::
cout
<<
"msg: '"
<<
msg
<<
"'"
<<
std
::
endl
;
os
.
stream
()
<<
msg
;
if
(
msg
==
"
\n
"
)
{
os
.
has_throw_
=
true
;
throw
Error
(
os
.
stream
().
str
());
}
return
os
;
}
std
::
stringstream
&
stream
()
{
return
ss
;
}
~
LogStreamFatal
()
{
std
::
cerr
<<
"throw exception"
<<
std
::
endl
;
//throw Error(ss.str());
throw
std
::
exception
();
if
(
!
has_throw_
)
{
std
::
cerr
<<
"throw exception"
<<
std
::
endl
;
throw
Error
(
ss
.
str
());
}
}
private:
std
::
stringstream
ss
;
bool
has_throw_
{
false
};
mutable
std
::
stringstream
ss
;
};
#endif // VISUALDL_FATAL_ABORT
...
...
@@ -77,13 +99,13 @@ private:
#define LOG_INFO visualdl::logging::LogStream(__FILE__, __LINE__).stream()
#define LOG_WARNING LOG_INFO
#define LOG_ERROR LOG_INFO
#define LOG_FATAL visualdl::logging::LogStreamFatal(__FILE__, __LINE__)
.stream()
#define LOG_FATAL visualdl::logging::LogStreamFatal(__FILE__, __LINE__)
// basic version without support for debug level.
#define VLOG(x) LOG_INFO
#define CHECK(cond)
\
if (!(cond))
\
visualdl::logging::LogStreamFatal(__FILE__, __LINE__)
.stream()
\
#define CHECK(cond) \
if (!(cond)) \
visualdl::logging::LogStreamFatal(__FILE__, __LINE__) \
<< "Check failed: " << #cond << " "
#define CHECK_EQ(v0, v1) CHECK_BINARY(v0, v1, ==)
#define CHECK_GE(v0, v1) CHECK_BINARY(v0, v1, >=)
...
...
@@ -113,14 +135,9 @@ static void SignalHandler(int sig) {
}
struct
__once_caller__
{
__once_caller__
()
{
std
::
signal
(
SIGINT
,
SignalHandler
);
}
__once_caller__
()
{
std
::
signal
(
SIGINT
,
SignalHandler
);
}
};
}
// namespace log
}
// namespace visualdl
...
...
visualdl/utils/test_logging.cc
浏览文件 @
b8929df3
...
...
@@ -10,8 +10,13 @@ TEST(Log, LOG) { LOG(INFO) << "hello world"; }
TEST
(
Log
,
CHECK
)
{
CHECK_EQ
(
1
,
1
)
<<
"yes this works"
;
}
TEST
(
Log
,
CHECK_FAIL
)
{
try
{
CHECK_LE
(
3
,
2
)
<<
"this is wrong"
;
{
CHECK_LE
(
3
,
2
)
<<
"this is wrong"
<<
"
\n
"
;
}
// throw std::runtime_error("some error");
}
catch
(
const
visualdl
::
logging
::
Error
&
e
)
{
LOG
(
INFO
)
<<
"in exception"
;
}
catch
(...)
{}
}
catch
(...)
{
LOG
(
INFO
)
<<
"catch something"
;
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录