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
9bd97ff8
Commit
9bd97ff8
authored
Nov 19, 2015
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LogFunction show function duration use chrono
parent
318529d8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
5 deletions
+27
-5
FileOper.h
FileOper.h
+1
-1
MtVerify.h
MtVerify.h
+3
-1
ScopedTimeDuration.h
ScopedTimeDuration.h
+13
-0
global.h
global.h
+10
-3
No files found.
FileOper.h
View file @
9bd97ff8
...
...
@@ -12,7 +12,7 @@
#include <stdio.h>
#include <shellapi.h>
#include <Shlobj.h>
#include "MtVerify.h"
static
int
CALLBACK
BrowseCallbackProc
(
HWND
hwnd
,
UINT
uMsg
,
LPARAM
lParam
,
LPARAM
lpData
)
{
...
...
MtVerify.h
View file @
9bd97ff8
#pragma once
#pragma comment(lib, "USER32" )
#include <crtdbg.h>
#include <tchar.h>
...
...
@@ -228,6 +229,7 @@ __forceinline wchar_t* Utf8ToUtf16(PCSTR ansiSrc)
return
pWide
;
}
__inline
const
char
*
Utf16ToUtf8
(
const
wchar_t
*
utf16
,
int
&
out_len
)
{
out_len
=
::
WideCharToMultiByte
(
CP_UTF8
,
0
,
utf16
,
-
1
,
NULL
,
0
,
0
,
0
);
...
...
@@ -271,4 +273,4 @@ delete pBuf;
}
return asVer;
}
*/
\ No newline at end of file
*/
ScopedTimeDuration.h
0 → 100644
View file @
9bd97ff8
#pragma once
#include <chrono>
class
ScopedTimeDuration
{
public
:
ScopedTimeDuration
()
{
_clock
=
std
::
chrono
::
system_clock
::
now
();
}
~
ScopedTimeDuration
(){}
private
:
std
::
chrono
::
system_clock
::
time_point
_clock
;
};
global.h
View file @
9bd97ff8
#pragma once
#include <chrono>
#include "utf8.h"
#include "LocalLock.h"
#include "mtverify.h"
...
...
@@ -19,9 +19,16 @@ namespace jlib {
class
LogFunction
{
private
:
const
char
*
_func_name
;
std
::
chrono
::
system_clock
::
time_point
_begin
;
public
:
LogFunction
(
const
char
*
func_name
)
:
_func_name
(
func_name
)
{
JLOGA
(
"%s in
\n
"
,
_func_name
);
}
~
LogFunction
()
{
JLOGA
(
"%s out
\n
"
,
_func_name
);
}
LogFunction
(
const
char
*
func_name
)
:
_func_name
(
func_name
)
{
JLOGA
(
"%s in
\n
"
,
_func_name
);
_begin
=
std
::
chrono
::
system_clock
::
now
();
}
~
LogFunction
()
{
auto
diff
=
std
::
chrono
::
system_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);
...
...
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