spdlog/include/spdlog/details/fmt_helper.h

112 lines
2.8 KiB
C
Raw Normal View History

2019-06-03 17:09:16 -04:00
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
2019-05-11 13:06:17 -04:00
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
2018-06-15 07:15:35 -04:00
#pragma once
2018-11-16 05:55:19 -05:00
#include <chrono>
#include <type_traits>
2018-07-25 17:20:31 -04:00
#include "spdlog/fmt/fmt.h"
2019-04-05 09:44:17 -04:00
#include "spdlog/common.h"
2018-07-25 17:20:31 -04:00
2018-06-15 07:15:35 -04:00
// Some fmt helpers to efficiently format and pad ints and strings
namespace spdlog {
namespace details {
namespace fmt_helper {
2018-07-09 14:07:44 -04:00
inline spdlog::string_view_t to_string_view(const memory_buf_t &buf) SPDLOG_NOEXCEPT
{
2019-08-28 12:00:35 -04:00
return spdlog::string_view_t{buf.data(), buf.size()};
}
2018-11-19 11:15:39 -05:00
inline void append_string_view(spdlog::string_view_t view, memory_buf_t &dest)
{
auto *buf_ptr = view.data();
2018-10-19 10:12:35 -04:00
if (buf_ptr != nullptr)
{
dest.append(buf_ptr, buf_ptr + view.size());
}
}
template<typename T>
inline void append_int(T n, memory_buf_t &dest)
2018-06-15 07:15:35 -04:00
{
fmt::format_int i(n);
dest.append(i.data(), i.data() + i.size());
}
2018-11-19 11:15:39 -05:00
template<typename T>
inline unsigned count_digits(T n)
{
2018-11-25 03:54:06 -05:00
using count_type = typename std::conditional<(sizeof(T) > sizeof(uint32_t)), uint64_t, uint32_t>::type;
2019-01-08 10:31:46 -05:00
return static_cast<unsigned>(fmt::internal::count_digits(static_cast<count_type>(n)));
2018-11-19 11:15:39 -05:00
}
inline void pad2(int n, memory_buf_t &dest)
2018-06-15 07:15:35 -04:00
{
2018-11-16 05:55:19 -05:00
if (n > 99)
2018-06-15 07:15:35 -04:00
{
append_int(n, dest);
2018-07-25 16:33:03 -04:00
}
2018-11-16 05:55:19 -05:00
else if (n > 9) // 10-99
2018-06-15 07:15:35 -04:00
{
dest.push_back(static_cast<char>('0' + n / 10));
dest.push_back(static_cast<char>('0' + n % 10));
2018-06-15 07:15:35 -04:00
}
2018-11-16 05:55:19 -05:00
else if (n >= 0) // 0-9
2018-06-15 07:15:35 -04:00
{
dest.push_back('0');
dest.push_back(static_cast<char>('0' + n));
2018-06-15 07:15:35 -04:00
}
2018-11-18 20:29:36 -05:00
else // negatives (unlikely, but just in case, let fmt deal with it)
2018-11-16 05:55:19 -05:00
{
fmt::format_to(dest, "{:02}", n);
}
2018-06-15 07:15:35 -04:00
}
template<typename T>
inline void pad_uint(T n, unsigned int width, memory_buf_t &dest)
2018-11-16 06:28:34 -05:00
{
2018-11-27 04:37:09 -05:00
static_assert(std::is_unsigned<T>::value, "pad_uint must get unsigned T");
2018-11-19 11:15:39 -05:00
auto digits = count_digits(n);
2018-11-18 20:29:36 -05:00
if (width > digits)
2018-11-16 06:28:34 -05:00
{
2018-11-18 20:29:36 -05:00
const char *zeroes = "0000000000000000000";
dest.append(zeroes, zeroes + width - digits);
2018-11-16 06:28:34 -05:00
}
append_int(n, dest);
}
template<typename T>
inline void pad3(T n, memory_buf_t &dest)
2018-07-03 18:41:05 -04:00
{
2018-11-16 06:28:34 -05:00
pad_uint(n, 3, dest);
2018-07-03 18:41:05 -04:00
}
template<typename T>
inline void pad6(T n, memory_buf_t &dest)
2018-11-12 09:44:34 -05:00
{
2018-11-16 06:28:34 -05:00
pad_uint(n, 6, dest);
2018-11-16 05:55:19 -05:00
}
template<typename T>
inline void pad9(T n, memory_buf_t &dest)
2018-11-16 05:55:19 -05:00
{
2018-11-16 06:28:34 -05:00
pad_uint(n, 9, dest);
2018-11-12 09:44:34 -05:00
}
2018-07-25 17:20:31 -04: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>
inline ToDuration time_fraction(log_clock::time_point tp)
2018-07-25 17:20:31 -04:00
{
2018-09-26 17:39:17 -04:00
using std::chrono::duration_cast;
using std::chrono::seconds;
2018-07-25 17:20:31 -04: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 07:15:35 -04:00
} // namespace fmt_helper
} // namespace details
} // namespace spdlog