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