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
3363aa77
Commit
3363aa77
authored
May 13, 2016
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactored log
parent
d765bdaa
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
304 additions
and
527 deletions
+304
-527
Log.h
Log.h
+262
-489
chrono_wrapper.h
chrono_wrapper.h
+41
-0
global.h
global.h
+1
-38
No files found.
Log.h
View file @
3363aa77
This diff is collapsed.
Click to expand it.
chrono_wrapper.h
0 → 100644
View file @
3363aa77
#
pragma
once
#include <chrono>
#include <string>
#include <ctime>
#include <sstream>
#include <iomanip>
namespace
jlib
{
std
::
string
time_point_to_string
(
const
std
::
chrono
::
system_clock
::
time_point
&
tp
,
bool
with_milliseconds
=
false
)
{
std
::
stringstream
ss
;
auto
t
=
std
::
chrono
::
system_clock
::
to_time_t
(
tp
);
std
::
tm
*
tm
=
std
::
localtime
(
&
t
);
ss
<<
std
::
put_time
(
tm
,
"%Y-%m-%d %H:%M:%S"
);
if
(
with_milliseconds
)
{
auto
ms
=
std
::
chrono
::
duration_cast
<
std
::
chrono
::
milliseconds
>
(
tp
.
time_since_epoch
());
auto
millis
=
ms
.
count
()
%
1000
;
ss
<<
'.'
<<
std
::
setw
(
3
)
<<
std
::
setfill
(
'0'
)
<<
millis
;
}
return
ss
.
str
();
}
std
::
chrono
::
system_clock
::
time_point
string_to_time_point
(
const
std
::
string
&
s
)
{
std
::
tm
tm
=
{
0
};
std
::
istringstream
ss
(
s
);
ss
>>
std
::
get_time
(
&
tm
,
"%Y-%m-%d %H:%M:%S"
);
return
std
::
chrono
::
system_clock
::
from_time_t
(
std
::
mktime
(
&
tm
));
}
std
::
string
now_to_string
(
bool
with_milliseconds
=
false
)
{
return
time_point_to_string
(
std
::
chrono
::
system_clock
::
now
(),
with_milliseconds
);
}
};
global.h
View file @
3363aa77
...
...
@@ -7,48 +7,11 @@
#include "utf8.h"
#include "mtverify.h"
#include "FileOper.h"
#include "
L
og.h"
#include "
l
og.h"
#include "MyWSAError.h"
#include "observer_macro.h"
namespace
jlib
{
#define JLOG CLog::WriteLogW
#define JLOGA CLog::WriteLogA
#define JLOGW CLog::WriteLogW
#define JLOGB(b, l) CLog::Dump(b, l)
#define JLOGASC(b, l) CLog::DumpAsc(b, l)
class
LogFunction
{
private
:
const
char
*
_func_name
;
std
::
chrono
::
steady_clock
::
time_point
_begin
;
public
:
LogFunction
(
const
char
*
func_name
)
:
_func_name
(
func_name
)
{
JLOGA
(
"%s in
\n
"
,
_func_name
);
_begin
=
std
::
chrono
::
steady_clock
::
now
();
}
~
LogFunction
()
{
auto
diff
=
std
::
chrono
::
steady_clock
::
now
()
-
_begin
;
auto
msec
=
std
::
chrono
::
duration_cast
<
std
::
chrono
::
milliseconds
>
(
diff
);
JLOGA
(
"%s out, duration: %d(ms)
\n
"
,
_func_name
,
msec
.
count
());
}
};
#define LOG_FUNCTION(func_name) LogFunction _log_function_object(func_name);
#define AUTO_LOG_FUNCTION LOG_FUNCTION(__FUNCTION__)
class
range_log
{
private
:
std
::
wstring
_msg
;
std
::
chrono
::
steady_clock
::
time_point
_begin
;
public
:
range_log
(
const
std
::
wstring
&
msg
)
:
_msg
(
msg
)
{
JLOG
((
_msg
+
L" in"
).
c_str
());
_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
(
L"%s out, duration: %d(ms)
\n
"
,
_msg
.
c_str
(),
msec
.
count
());
}
};
#define NAMESPACE_END };
...
...
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