Files
spdlog/include/spdlog/details/fmt_helper.h

140 lines
3.6 KiB
C
Raw Normal View History

2018-06-15 14:15:35 +03:00
//
// Created by gabi on 6/15/18.
//
#pragma once
2018-07-26 00:20:31 +03:00
#include "chrono"
#include "spdlog/details/log_msg.h"
2018-07-26 00:20:31 +03:00
#include "spdlog/fmt/fmt.h"
2018-06-15 14:15:35 +03:00
// Some fmt helpers to efficiently format and pad ints and strings
namespace spdlog {
namespace details {
namespace fmt_helper {
2018-07-09 21:07:44 +03:00
2018-07-10 23:53:00 +03:00
template<size_t Buffer_Size>
2018-07-09 21:07:44 +03:00
inline void append_str(const std::string &str, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
2018-06-15 14:15:35 +03:00
{
auto *str_ptr = str.data();
2018-06-15 14:15:35 +03:00
dest.append(str_ptr, str_ptr + str.size());
}
2018-07-10 23:53:00 +03:00
template<size_t Buffer_Size>
2018-07-09 21:07:44 +03:00
inline void append_c_str(const char *c_str, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
2018-06-24 01:32:39 +03:00
{
2018-08-25 17:55:31 +03:00
auto len = std::char_traits<char>::length(c_str);
dest.append(c_str, c_str + len);
2018-06-24 01:32:39 +03:00
}
2018-07-09 21:07:44 +03:00
template<size_t Buffer_Size1, size_t Buffer_Size2>
inline void append_buf(const fmt::basic_memory_buffer<char, Buffer_Size1> &buf, fmt::basic_memory_buffer<char, Buffer_Size2> &dest)
2018-06-15 14:15:35 +03:00
{
2018-07-04 00:38:23 +03:00
auto *buf_ptr = buf.data();
2018-06-15 14:15:35 +03:00
dest.append(buf_ptr, buf_ptr + buf.size());
}
2018-07-09 21:07:44 +03:00
template<typename T, size_t Buffer_Size>
inline void append_int(T n, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
2018-06-15 14:15:35 +03:00
{
fmt::format_int i(n);
dest.append(i.data(), i.data() + i.size());
}
template<size_t Buffer_Size>
inline void append_msg(const details::log_msg &msg, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
{
auto *c_buf = msg.c_string.data();
if (c_buf != nullptr) {
dest.append(c_buf, c_buf + msg.c_string.size());
} else {
append_buf(msg.raw, dest);
}
}
2018-07-10 23:53:00 +03:00
template<size_t Buffer_Size>
2018-07-09 21:07:44 +03:00
inline void pad2(int n, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
2018-06-15 14:15:35 +03:00
{
2018-06-26 02:00:33 +03:00
if (n > 99)
2018-06-15 14:15:35 +03:00
{
append_int(n, dest);
return;
}
2018-06-26 02:00:33 +03:00
if (n > 9) // 10-99
{
dest.push_back(static_cast<char>('0' + n / 10));
dest.push_back(static_cast<char>('0' + n % 10));
2018-06-26 02:00:33 +03:00
return;
}
2018-06-15 14:15:35 +03:00
if (n >= 0) // 0-9
{
dest.push_back('0');
dest.push_back(static_cast<char>('0' + n));
2018-06-15 14:15:35 +03:00
return;
}
2018-06-26 02:00:33 +03:00
// negatives (unlikely, but just in case, let fmt deal with it)
2018-06-15 14:15:35 +03:00
fmt::format_to(dest, "{:02}", n);
}
2018-07-10 23:53:00 +03:00
template<size_t Buffer_Size>
2018-07-09 21:07:44 +03:00
inline void pad3(int n, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
2018-06-15 14:15:35 +03:00
{
2018-07-25 23:33:03 +03:00
if (n > 999)
2018-06-15 14:15:35 +03:00
{
append_int(n, dest);
return;
}
2018-07-25 23:33:03 +03:00
if (n > 99) // 100-999
{
2018-09-28 01:27:37 +03:00
dest.push_back(static_cast<char>('0' + n / 100));
2018-07-25 23:33:03 +03:00
pad2(n % 100, dest);
return;
}
2018-06-15 14:15:35 +03:00
if (n > 9) // 10-99
{
dest.push_back('0');
dest.push_back(static_cast<char>('0' + n / 10));
dest.push_back(static_cast<char>('0' + n % 10));
2018-06-15 14:15:35 +03:00
return;
}
2018-06-26 02:00:33 +03:00
if (n >= 0)
2018-06-15 14:15:35 +03:00
{
dest.push_back('0');
dest.push_back('0');
dest.push_back(static_cast<char>('0' + n));
2018-06-15 14:15:35 +03:00
return;
}
2018-06-26 02:00:33 +03:00
// negatives (unlikely, but just in case let fmt deal with it)
fmt::format_to(dest, "{:03}", n);
2018-06-15 14:15:35 +03:00
}
2018-07-10 23:53:00 +03:00
template<size_t Buffer_Size>
2018-07-09 21:07:44 +03:00
inline void pad6(size_t n, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
2018-07-04 01:41:05 +03:00
{
if (n > 99999)
{
append_int(n, dest);
return;
}
2018-07-25 23:33:03 +03:00
pad3(static_cast<int>(n / 1000), dest);
pad3(static_cast<int>(n % 1000), dest);
2018-07-04 01:41:05 +03:00
}
2018-07-26 00:20:31 +03:00
// return fraction of a second of the given time_point.
// e.g.
// fraction<std::milliseconds>(tp) -> will return the millis part of the second
template<typename ToDuration>
2018-07-26 00:23:44 +03:00
inline ToDuration time_fraction(const log_clock::time_point &tp)
2018-07-26 00:20:31 +03:00
{
2018-09-27 00:39:17 +03:00
using std::chrono::duration_cast;
using std::chrono::seconds;
2018-07-26 00:20:31 +03:00
auto duration = tp.time_since_epoch();
auto secs = duration_cast<seconds>(duration);
return duration_cast<ToDuration>(duration) - duration_cast<ToDuration>(secs);
}
2018-06-15 14:15:35 +03:00
} // namespace fmt_helper
} // namespace details
} // namespace spdlog