mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-20 05:05:38 +00:00
70 lines
2.4 KiB
C++
70 lines
2.4 KiB
C++
#pragma once
|
|
|
|
#include <chrono>
|
|
#include <string>
|
|
#include <sstream>
|
|
#include <cctz/time_zone.h>
|
|
#include <fmt/core.h>
|
|
|
|
|
|
inline std::string to_string(const std::time_t & time)
|
|
{
|
|
return cctz::format("%Y-%m-%d %H:%M:%S", std::chrono::system_clock::from_time_t(time), cctz::local_time_zone());
|
|
}
|
|
|
|
template <typename Rep, typename Period = std::ratio<1>>
|
|
std::string to_string(const std::chrono::duration<Rep, Period> & duration)
|
|
{
|
|
auto seconds_as_int = std::chrono::duration_cast<std::chrono::seconds>(duration);
|
|
if (seconds_as_int == duration)
|
|
return std::to_string(seconds_as_int.count()) + "s";
|
|
auto seconds_as_double = std::chrono::duration_cast<std::chrono::duration<double>>(duration);
|
|
return std::to_string(seconds_as_double.count()) + "s";
|
|
}
|
|
|
|
template <typename Clock, typename Duration = typename Clock::duration>
|
|
std::string to_string(const std::chrono::time_point<Clock, Duration> & tp)
|
|
{
|
|
// Don't use DateLUT because it shows weird characters for
|
|
// TimePoint::max(). I wish we could use C++20 format, but it's not
|
|
// there yet.
|
|
// return DateLUT::instance().timeToString(std::chrono::system_clock::to_time_t(tp));
|
|
|
|
if constexpr (std::is_same_v<Clock, std::chrono::system_clock>)
|
|
return to_string(std::chrono::system_clock::to_time_t(tp));
|
|
else
|
|
return to_string(tp.time_since_epoch());
|
|
}
|
|
|
|
template <typename Clock, typename Duration = typename Clock::duration>
|
|
std::ostream & operator<<(std::ostream & o, const std::chrono::time_point<Clock, Duration> & tp)
|
|
{
|
|
return o << to_string(tp);
|
|
}
|
|
|
|
template <typename Rep, typename Period = std::ratio<1>>
|
|
std::ostream & operator<<(std::ostream & o, const std::chrono::duration<Rep, Period> & duration)
|
|
{
|
|
return o << to_string(duration);
|
|
}
|
|
|
|
template <typename Clock, typename Duration>
|
|
struct fmt::formatter<std::chrono::time_point<Clock, Duration>> : fmt::formatter<std::string>
|
|
{
|
|
template <typename FormatCtx>
|
|
auto format(const std::chrono::time_point<Clock, Duration> & tp, FormatCtx & ctx) const
|
|
{
|
|
return fmt::formatter<std::string>::format(::to_string(tp), ctx);
|
|
}
|
|
};
|
|
|
|
template <typename Rep, typename Period>
|
|
struct fmt::formatter<std::chrono::duration<Rep, Period>> : fmt::formatter<std::string>
|
|
{
|
|
template <typename FormatCtx>
|
|
auto format(const std::chrono::duration<Rep, Period> & duration, FormatCtx & ctx) const
|
|
{
|
|
return fmt::formatter<std::string>::format(::to_string(duration), ctx);
|
|
}
|
|
};
|