0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-01 08:18:20 +02:00
construct/include/ircd/util/pretty.h
2020-12-06 10:36:47 -08:00

55 lines
2.1 KiB
C++

// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
#pragma once
#define HAVE_IRCD_UTIL_PRETTY_H
namespace ircd {
inline namespace util
{
// Human readable space suite
using human_readable_size = std::tuple<uint64_t, long double, const string_view &>;
// Default format strings used for pretty(size).
extern const string_view pretty_fmt[];
// Process the value to be made pretty first with one of the following:
human_readable_size iec(const uint64_t &value);
human_readable_size si(const uint64_t &value);
// Generate a pretty string with a custom fmt string (low-level)
string_view pretty(const mutable_buffer &out, const string_view &fmt, const human_readable_size &);
std::string pretty(const human_readable_size &, const string_view &fmt);
// Generate a pretty string with the pretty_fmt_default implied.
string_view pretty(const mutable_buffer &out, const human_readable_size &, const uint &fmt = 0);
std::string pretty(const human_readable_size &, const uint &fmt = 0);
// Human readable time suite (for timers and counts; otherwise see ircd/time.h)
string_view pretty(const mutable_buffer &out, const nanoseconds &, const uint &fmt = 0);
string_view pretty(const mutable_buffer &out, const microseconds &, const uint &fmt = 0);
string_view pretty(const mutable_buffer &out, const milliseconds &, const uint &fmt = 0);
string_view pretty(const mutable_buffer &out, const seconds &, const uint &fmt = 0);
template<class r, class p> std::string pretty(const duration<r, p> &, const uint &fmt = 0);
}}
template<class rep,
class period>
inline std::string
ircd::util::pretty(const duration<rep, period> &d,
const uint &fmt)
{
return util::string(32, [&d, &fmt]
(const mutable_buffer &out)
{
return pretty(out, d, fmt);
});
}