Commit 9bd97ff8 authored by captainwong's avatar captainwong

LogFunction show function duration use chrono

parent 318529d8
......@@ -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)
{
......
#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
*/
#pragma once
#include <chrono>
class ScopedTimeDuration
{
public:
ScopedTimeDuration() { _clock = std::chrono::system_clock::now(); }
~ScopedTimeDuration(){}
private:
std::chrono::system_clock::time_point _clock;
};
#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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment