2018-01-06 20:09:50 +03:00
|
|
|
// Formatting library for C++ - std::ostream support
|
|
|
|
|
//
|
2018-11-14 20:39:37 +03:00
|
|
|
// Copyright (c) 2012 - present, Victor Zverovich
|
2018-01-06 20:09:50 +03:00
|
|
|
// All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// For the license information refer to format.h.
|
2016-05-06 17:37:20 +03:00
|
|
|
|
|
|
|
|
#ifndef FMT_OSTREAM_H_
|
|
|
|
|
#define FMT_OSTREAM_H_
|
|
|
|
|
|
2022-04-10 19:32:44 +03:00
|
|
|
#include <fstream>
|
2016-05-06 17:37:20 +03:00
|
|
|
#include <ostream>
|
2020-04-12 17:38:54 +03:00
|
|
|
|
2019-01-13 05:27:38 +03:00
|
|
|
#include "format.h"
|
2016-05-06 17:37:20 +03:00
|
|
|
|
2018-05-12 18:33:51 +03:00
|
|
|
FMT_BEGIN_NAMESPACE
|
2020-04-12 17:38:54 +03:00
|
|
|
|
|
|
|
|
template <typename OutputIt, typename Char> class basic_printf_context;
|
|
|
|
|
|
2020-05-10 17:25:42 +03:00
|
|
|
namespace detail {
|
2016-05-06 17:37:20 +03:00
|
|
|
|
2021-09-03 19:33:24 +03:00
|
|
|
// Checks if T has a user-defined operator<<.
|
|
|
|
|
template <typename T, typename Char, typename Enable = void>
|
|
|
|
|
class is_streamable {
|
2018-01-23 05:56:53 +03:00
|
|
|
private:
|
|
|
|
|
template <typename U>
|
2021-09-03 19:33:24 +03:00
|
|
|
static auto test(int)
|
|
|
|
|
-> bool_constant<sizeof(std::declval<std::basic_ostream<Char>&>()
|
|
|
|
|
<< std::declval<U>()) != 0>;
|
2018-01-22 05:53:38 +03:00
|
|
|
|
2021-09-03 19:33:24 +03:00
|
|
|
template <typename> static auto test(...) -> std::false_type;
|
2018-01-23 05:56:53 +03:00
|
|
|
|
2019-07-07 17:21:20 +03:00
|
|
|
using result = decltype(test<T>(0));
|
2018-02-28 16:09:24 +03:00
|
|
|
|
2018-01-23 05:56:53 +03:00
|
|
|
public:
|
2020-12-09 17:55:17 +03:00
|
|
|
is_streamable() = default;
|
|
|
|
|
|
2018-08-11 19:13:54 +03:00
|
|
|
static const bool value = result::value;
|
2018-05-22 06:21:06 +03:00
|
|
|
};
|
|
|
|
|
|
2021-09-03 19:33:24 +03:00
|
|
|
// Formatting of built-in types and arrays is intentionally disabled because
|
|
|
|
|
// it's handled by standard (non-ostream) formatters.
|
|
|
|
|
template <typename T, typename Char>
|
|
|
|
|
struct is_streamable<
|
|
|
|
|
T, Char,
|
2021-08-08 19:36:56 +03:00
|
|
|
enable_if_t<
|
|
|
|
|
std::is_arithmetic<T>::value || std::is_array<T>::value ||
|
|
|
|
|
std::is_pointer<T>::value || std::is_same<T, char8_type>::value ||
|
2022-02-04 22:00:00 +03:00
|
|
|
std::is_convertible<T, fmt::basic_string_view<Char>>::value ||
|
2021-12-09 20:48:55 +03:00
|
|
|
std::is_same<T, std_string_view<Char>>::value ||
|
2021-08-08 19:36:56 +03:00
|
|
|
(std::is_convertible<T, int>::value && !std::is_enum<T>::value)>>
|
|
|
|
|
: std::false_type {};
|
2021-09-03 18:35:13 +03:00
|
|
|
|
2022-04-10 19:32:44 +03:00
|
|
|
template <typename Char> FILE* get_file(std::basic_filebuf<Char>&) {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-11 22:16:05 +03:00
|
|
|
struct dummy_filebuf {
|
|
|
|
|
FILE* _Myfile;
|
|
|
|
|
};
|
|
|
|
|
template <typename T, typename U = int> struct ms_filebuf {
|
|
|
|
|
using type = dummy_filebuf;
|
|
|
|
|
};
|
|
|
|
|
template <typename T> struct ms_filebuf<T, decltype(T::_Myfile, 0)> {
|
|
|
|
|
using type = T;
|
|
|
|
|
};
|
|
|
|
|
using filebuf_type = ms_filebuf<std::filebuf>::type;
|
|
|
|
|
|
|
|
|
|
FILE* get_file(filebuf_type& buf);
|
2022-04-10 19:32:44 +03:00
|
|
|
|
|
|
|
|
// Generate a unique explicit instantion in every translation unit using a tag
|
|
|
|
|
// type in an anonymous namespace.
|
|
|
|
|
namespace {
|
|
|
|
|
struct filebuf_access_tag {};
|
|
|
|
|
} // namespace
|
|
|
|
|
template <typename Tag, typename FileMemberPtr, FileMemberPtr file>
|
|
|
|
|
class filebuf_access {
|
2022-04-11 22:16:05 +03:00
|
|
|
friend FILE* get_file(filebuf_type& buf) { return buf.*file; }
|
2022-04-10 19:32:44 +03:00
|
|
|
};
|
|
|
|
|
template class filebuf_access<filebuf_access_tag,
|
2022-04-11 22:16:05 +03:00
|
|
|
decltype(&filebuf_type::_Myfile),
|
|
|
|
|
&filebuf_type::_Myfile>;
|
2022-04-10 19:32:44 +03:00
|
|
|
|
|
|
|
|
inline bool write(std::filebuf& buf, fmt::string_view data) {
|
2022-06-17 00:56:45 +03:00
|
|
|
FILE* f = get_file(buf);
|
|
|
|
|
if (!f) return false;
|
|
|
|
|
print(f, data);
|
2022-04-10 19:32:44 +03:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
inline bool write(std::wfilebuf&, fmt::basic_string_view<wchar_t>) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-15 00:29:47 +03:00
|
|
|
// Write the content of buf to os.
|
2021-09-03 22:47:33 +03:00
|
|
|
// It is a separate function rather than a part of vprint to simplify testing.
|
2017-12-17 20:33:12 +03:00
|
|
|
template <typename Char>
|
2020-06-08 17:23:18 +03:00
|
|
|
void write_buffer(std::basic_ostream<Char>& os, buffer<Char>& buf) {
|
2022-05-30 01:01:43 +03:00
|
|
|
if (const_check(FMT_MSC_VERSION)) {
|
2022-04-12 02:52:34 +03:00
|
|
|
auto filebuf = dynamic_cast<std::basic_filebuf<Char>*>(os.rdbuf());
|
|
|
|
|
if (filebuf && write(*filebuf, {buf.data(), buf.size()})) return;
|
2022-04-10 19:32:44 +03:00
|
|
|
}
|
2019-05-03 17:03:14 +03:00
|
|
|
const Char* buf_data = buf.data();
|
2019-07-07 17:21:20 +03:00
|
|
|
using unsigned_streamsize = std::make_unsigned<std::streamsize>::type;
|
|
|
|
|
unsigned_streamsize size = buf.size();
|
2019-09-08 19:04:09 +03:00
|
|
|
unsigned_streamsize max_size = to_unsigned(max_value<std::streamsize>());
|
2017-12-17 20:33:12 +03:00
|
|
|
do {
|
2019-07-07 17:21:20 +03:00
|
|
|
unsigned_streamsize n = size <= max_size ? size : max_size;
|
2019-05-03 17:03:14 +03:00
|
|
|
os.write(buf_data, static_cast<std::streamsize>(n));
|
|
|
|
|
buf_data += n;
|
2017-12-17 20:33:12 +03:00
|
|
|
size -= n;
|
|
|
|
|
} while (size != 0);
|
|
|
|
|
}
|
2016-10-21 16:46:21 +03:00
|
|
|
|
|
|
|
|
template <typename Char, typename T>
|
2019-11-13 15:08:47 +03:00
|
|
|
void format_value(buffer<Char>& buf, const T& value,
|
|
|
|
|
locale_ref loc = locale_ref()) {
|
2021-12-04 22:02:31 +03:00
|
|
|
auto&& format_buf = formatbuf<std::basic_streambuf<Char>>(buf);
|
2021-09-03 22:47:33 +03:00
|
|
|
auto&& output = std::basic_ostream<Char>(&format_buf);
|
2020-04-12 17:38:54 +03:00
|
|
|
#if !defined(FMT_STATIC_THOUSANDS_SEPARATOR)
|
2019-11-13 15:08:47 +03:00
|
|
|
if (loc) output.imbue(loc.get<std::locale>());
|
2020-04-12 17:38:54 +03:00
|
|
|
#endif
|
2016-10-21 16:46:21 +03:00
|
|
|
output << value;
|
2020-05-07 03:15:46 +03:00
|
|
|
output.exceptions(std::ios_base::failbit | std::ios_base::badbit);
|
2016-10-21 16:46:21 +03:00
|
|
|
}
|
2022-02-05 05:33:55 +03:00
|
|
|
} // namespace detail
|
2018-08-22 17:40:06 +03:00
|
|
|
|
2017-08-13 23:09:02 +03:00
|
|
|
// Formats an object of type T that has an overloaded ostream operator<<.
|
2022-02-05 05:33:55 +03:00
|
|
|
template <typename Char>
|
|
|
|
|
struct basic_ostream_formatter : formatter<basic_string_view<Char>, Char> {
|
|
|
|
|
template <typename T, typename OutputIt>
|
2022-01-14 20:58:49 +03:00
|
|
|
auto format(const T& value, basic_format_context<OutputIt, Char>& ctx) const
|
2020-04-12 17:38:54 +03:00
|
|
|
-> OutputIt {
|
2021-09-03 22:47:33 +03:00
|
|
|
auto buffer = basic_memory_buffer<Char>();
|
2019-11-13 15:08:47 +03:00
|
|
|
format_value(buffer, value, ctx.locale());
|
2021-09-03 22:47:33 +03:00
|
|
|
return formatter<basic_string_view<Char>, Char>::format(
|
|
|
|
|
{buffer.data(), buffer.size()}, ctx);
|
2017-08-13 23:09:02 +03:00
|
|
|
}
|
2022-02-05 05:33:55 +03:00
|
|
|
};
|
2021-09-03 19:33:24 +03:00
|
|
|
|
2022-02-05 05:33:55 +03:00
|
|
|
using ostream_formatter = basic_ostream_formatter<char>;
|
|
|
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
|
|
// Formats an object of type T that has an overloaded ostream operator<<.
|
|
|
|
|
template <typename T, typename Char>
|
|
|
|
|
struct fallback_formatter<T, Char, enable_if_t<is_streamable<T, Char>::value>>
|
|
|
|
|
: basic_ostream_formatter<Char> {
|
|
|
|
|
using basic_ostream_formatter<Char>::format;
|
2017-08-13 23:09:02 +03:00
|
|
|
};
|
2022-05-22 05:57:38 +03:00
|
|
|
|
2020-05-10 17:25:42 +03:00
|
|
|
} // namespace detail
|
2019-01-21 18:11:49 +03:00
|
|
|
|
2021-04-16 21:04:55 +03:00
|
|
|
FMT_MODULE_EXPORT
|
2018-04-26 21:32:14 +03:00
|
|
|
template <typename Char>
|
2022-03-18 07:55:32 +03:00
|
|
|
void vprint(std::basic_ostream<Char>& os,
|
|
|
|
|
basic_string_view<type_identity_t<Char>> format_str,
|
2020-01-15 22:42:59 +03:00
|
|
|
basic_format_args<buffer_context<type_identity_t<Char>>> args) {
|
2021-09-03 19:33:24 +03:00
|
|
|
auto buffer = basic_memory_buffer<Char>();
|
2020-05-10 17:25:42 +03:00
|
|
|
detail::vformat_to(buffer, format_str, args);
|
2020-06-08 17:23:18 +03:00
|
|
|
detail::write_buffer(os, buffer);
|
2017-12-17 20:33:12 +03:00
|
|
|
}
|
2019-06-01 22:32:24 +03:00
|
|
|
|
2016-05-06 17:37:20 +03:00
|
|
|
/**
|
|
|
|
|
\rst
|
|
|
|
|
Prints formatted data to the stream *os*.
|
|
|
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
|
2018-03-04 19:13:08 +03:00
|
|
|
fmt::print(cerr, "Don't {}!", "panic");
|
2016-05-06 17:37:20 +03:00
|
|
|
\endrst
|
|
|
|
|
*/
|
2021-04-16 21:04:55 +03:00
|
|
|
FMT_MODULE_EXPORT
|
2022-03-23 02:05:30 +03:00
|
|
|
template <typename... T>
|
|
|
|
|
void print(std::ostream& os, format_string<T...> fmt, T&&... args) {
|
2022-03-18 07:55:32 +03:00
|
|
|
vprint(os, fmt, fmt::make_format_args(args...));
|
2018-04-26 21:32:14 +03:00
|
|
|
}
|
2022-03-18 07:55:32 +03:00
|
|
|
|
|
|
|
|
FMT_MODULE_EXPORT
|
|
|
|
|
template <typename... Args>
|
2022-03-18 20:46:50 +03:00
|
|
|
void print(std::wostream& os,
|
|
|
|
|
basic_format_string<wchar_t, type_identity_t<Args>...> fmt,
|
|
|
|
|
Args&&... args) {
|
|
|
|
|
vprint(os, fmt, fmt::make_format_args<buffer_context<wchar_t>>(args...));
|
2022-03-18 07:55:32 +03:00
|
|
|
}
|
|
|
|
|
|
2018-05-12 18:33:51 +03:00
|
|
|
FMT_END_NAMESPACE
|
2016-05-06 17:37:20 +03:00
|
|
|
|
|
|
|
|
#endif // FMT_OSTREAM_H_
|