Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
20c5c31a
Commit
20c5c31a
authored
Mar 29, 2017
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test pass
parent
ed8f8d65
Pipeline
#30
failed with stages
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
77 additions
and
4 deletions
+77
-4
global.h
global.h
+1
-1
log2.h
log2.h
+66
-0
ping.h
net/ping.h
+3
-3
MyWSAError.h
win32/MyWSAError.h
+7
-0
No files found.
global.h
View file @
20c5c31a
...
...
@@ -2,7 +2,7 @@
#include <string>
#include "utf8.h"
#include "log.h"
#include "log
2
.h"
#include "chrono_wrapper.h"
#include "micro_getter_setter.h"
#include "dp.h"
...
...
log2.h
0 → 100644
View file @
20c5c31a
#pragma once
#include <iostream>
#include "D:/dev_libs/spdlog-0.13.0/include/spdlog/spdlog.h"
#include "D:/dev_libs/spdlog-0.13.0/include/spdlog/sinks/msvc_sink.h"
#include "utf8.h"
namespace
jlib
{
static
const
char
g_logger_name
[]
=
"logger"
;
inline
void
init_logger
(
const
std
::
string
&
file_name
=
""
)
{
try
{
std
::
vector
<
spdlog
::
sink_ptr
>
sinks
;
#ifdef WIN32
sinks
.
push_back
(
std
::
make_shared
<
spdlog
::
sinks
::
msvc_sink_mt
>
());
#endif
sinks
.
push_back
(
std
::
make_shared
<
spdlog
::
sinks
::
stdout_sink_mt
>
());
sinks
.
push_back
(
std
::
make_shared
<
spdlog
::
sinks
::
daily_file_sink_mt
>
(
utf8
::
a2w
(
file_name
+
".log"
),
23
,
59
));
auto
combined_logger
=
std
::
make_shared
<
spdlog
::
logger
>
(
g_logger_name
,
begin
(
sinks
),
end
(
sinks
));
combined_logger
->
set_pattern
(
"[%Y-%m-%d %H:%M:%S.%e] [tid %t] [%L] %v"
);
spdlog
::
register_logger
(
combined_logger
);
}
catch
(
const
spdlog
::
spdlog_ex
&
ex
)
{
std
::
cerr
<<
"Log initialization failed: "
<<
ex
.
what
()
<<
std
::
endl
;
}
}
#define JLOG_INFO spdlog::get(g_logger_name)->info
#define JLOG_WARN spdlog::get(g_logger_name)->warn
#define JLOG_ERRO spdlog::get(g_logger_name)->error
#define JLOG_CRTC spdlog::get(g_logger_name)->critical
//#define JLOG JLOG_INFO
#define JLOGB(b, l) (b, l)
#define JLOGASC(b, l) (b, l)
class
range_log
{
private
:
std
::
string
msg_
;
std
::
chrono
::
steady_clock
::
time_point
begin_
;
public
:
range_log
(
const
std
::
string
&
msg
)
:
msg_
(
msg
)
{
JLOG_INFO
(
msg_
+
" in"
);
begin_
=
std
::
chrono
::
steady_clock
::
now
();
}
range_log
(
const
std
::
wstring
&
msg
)
:
msg_
()
{
msg_
=
utf8
::
w2a
(
msg
);
JLOG_INFO
(
msg_
+
" in"
);
begin_
=
std
::
chrono
::
steady_clock
::
now
();
}
~
range_log
()
{
auto
diff
=
std
::
chrono
::
steady_clock
::
now
()
-
begin_
;
auto
msec
=
std
::
chrono
::
duration_cast
<
std
::
chrono
::
milliseconds
>
(
diff
);
JLOG_INFO
(
"{} out, duration: {}(ms)
\n
"
,
msg_
,
msec
.
count
());
}
};
#define AUTO_LOG_FUNCTION jlib::range_log __log_function_object__(__func__);
}
net/ping.h
View file @
20c5c31a
...
...
@@ -78,7 +78,7 @@ private:
{
if
(
num_replies_
==
0
)
{
total_time_
+=
std
::
chrono
::
milliseconds
(
5000
);
JLOG
A
(
"Request timed out"
);
JLOG
_ERRO
(
"Request timed out"
);
}
if
(
!
quiting_
)
{
...
...
@@ -129,12 +129,12 @@ private:
<<
": icmp_seq="
<<
icmp_hdr
.
sequence_number
()
<<
", ttl="
<<
ipv4_hdr
.
time_to_live
()
<<
", time="
<<
ms
<<
" ms"
;
JLOG
A
(
ss
.
str
().
c_
str
());
JLOG
_INFO
(
ss
.
str
());
total_time_
+=
std
::
chrono
::
milliseconds
(
ms
);
auto
cnt
=
total_time_
.
count
();
ss
.
str
(
""
);
ss
.
clear
();
ss
<<
"total_time_ "
<<
cnt
;
JLOG
A
(
ss
.
str
().
c_
str
());
JLOG
_INFO
(
ss
.
str
());
}
if
(
max_sequence_number_
!=
0
&&
sequence_number_
<
max_sequence_number_
)
...
...
win32/MyWSAError.h
View file @
20c5c31a
#pragma once
namespace
jlib
{
inline
const
wchar_t
*
FormatWSAError
(
int
errornumber
)
...
...
@@ -81,4 +83,9 @@ namespace jlib
}
}
inline
const
char
*
FormatWSAErrorA
(
int
errornumber
)
{
return
utf8
::
w2a
(
FormatWSAError
(
errornumber
)).
c_str
();
}
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment