1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-04-01 02:42:41 +08:00
spdlog/src/formatters.cpp

41 lines
1.2 KiB
C++
Raw Normal View History

2014-01-25 17:09:04 +08:00
#include "stdafx.h"
#include "c11log/formatters/formatters.h"
#include "c11log/level.h"
void c11log::formatters::format_time(const c11log::formatters::timepoint& tp, std::ostream &dest)
{
2014-01-28 01:35:18 +08:00
2014-01-25 17:09:04 +08:00
std::tm tm = details::os::localtime(std::chrono::system_clock::to_time_t(tp));
//get ms
2014-01-28 01:35:18 +08:00
//auto duration = tp.time_since_epoch();
//int millis = static_cast<int>(std::chrono::duration_cast<std::chrono::milliseconds>(duration).count() % 1000);
2014-01-25 17:09:04 +08:00
char buf[64];
2014-01-28 01:35:18 +08:00
auto size = sprintf(buf, "[%d-%02d-%02d %02d:%02d:%02d]",
2014-01-25 17:09:04 +08:00
tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
2014-01-28 01:35:18 +08:00
tm.tm_hour, tm.tm_min, tm.tm_sec);
dest.write(buf, size);
2014-01-25 17:09:04 +08:00
}
void c11log::formatters::format_time(std::ostream& dest)
{
return format_time(std::chrono::system_clock::now(), dest);
}
static const char _hex_chars[17] = "0123456789ABCDEF";
std::string c11log::formatters::to_hex(const unsigned char* buf, std::size_t size)
{
std::ostringstream oss;
for (std::size_t i = 0; i < size; i++) {
oss << _hex_chars[buf[i] >> 4];
oss << _hex_chars[buf[i] & 0x0F];
}
return oss.str();
2014-01-27 17:44:10 +08:00
}