Commit 3363aa77 authored by captainwong's avatar captainwong

refactored log

parent d765bdaa
This diff is collapsed.
#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);
}
};
......@@ -7,48 +7,11 @@
#include "utf8.h"
#include "mtverify.h"
#include "FileOper.h"
#include "Log.h"
#include "log.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 };
......
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