fmt/include/fmt/ostream.h

210 lines
6.4 KiB
C
Raw Normal View History

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_
2023-03-26 18:40:12 +03:00
#include <fstream> // std::filebuf
#if defined(_WIN32) && defined(__GLIBCXX__)
# include <ext/stdio_filebuf.h>
# include <ext/stdio_sync_filebuf.h>
#elif defined(_WIN32) && defined(_LIBCPP_VERSION)
# include <__std_stream>
#endif
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
2020-05-10 17:25:42 +03:00
namespace detail {
2016-05-06 17:37:20 +03:00
// Generate a unique explicit instantion in every translation unit using a tag
// type in an anonymous namespace.
namespace {
struct file_access_tag {};
} // namespace
2023-02-18 21:23:42 +03:00
template <typename Tag, typename BufType, FILE* BufType::*FileMemberPtr>
class file_access {
friend auto get_file(BufType& obj) -> FILE* { return obj.*FileMemberPtr; }
};
#if FMT_MSC_VERSION
template class file_access<file_access_tag, std::filebuf,
&std::filebuf::_Myfile>;
auto get_file(std::filebuf&) -> FILE*;
#elif defined(_WIN32) && defined(_LIBCPP_VERSION)
template class file_access<file_access_tag, std::__stdoutbuf<char>,
&std::__stdoutbuf<char>::__file_>;
auto get_file(std::__stdoutbuf<char>&) -> FILE*;
#endif
inline bool write_ostream_unicode(std::ostream& os, fmt::string_view data) {
#if FMT_MSC_VERSION
if (auto* buf = dynamic_cast<std::filebuf*>(os.rdbuf()))
if (FILE* f = get_file(*buf)) return write_console(f, data);
#elif defined(_WIN32) && defined(__GLIBCXX__)
auto* rdbuf = os.rdbuf();
FILE* c_file;
if (auto* sfbuf = dynamic_cast<__gnu_cxx::stdio_sync_filebuf<char>*>(rdbuf))
c_file = sfbuf->file();
else if (auto* fbuf = dynamic_cast<__gnu_cxx::stdio_filebuf<char>*>(rdbuf))
c_file = fbuf->file();
else
return false;
if (c_file) return write_console(c_file, data);
#elif defined(_WIN32) && defined(_LIBCPP_VERSION)
if (auto* buf = dynamic_cast<std::__stdoutbuf<char>*>(os.rdbuf()))
if (FILE* f = get_file(*buf)) return write_console(f, data);
#else
ignore_unused(os, data);
#endif
return false;
}
inline bool write_ostream_unicode(std::wostream&,
fmt::basic_string_view<wchar_t>) {
return false;
}
// 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) {
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;
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);
}
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()) {
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
output << value;
2020-05-07 03:15:46 +03:00
output.exceptions(std::ios_base::failbit | std::ios_base::badbit);
}
2022-06-24 19:26:24 +03:00
template <typename T> struct streamed_view { const T& value; };
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> {
void set_debug_format() = delete;
2022-02-05 05:33:55 +03:00
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>();
detail::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>;
template <typename T, typename Char>
struct formatter<detail::streamed_view<T>, Char>
: basic_ostream_formatter<Char> {
2022-06-24 19:26:24 +03:00
template <typename OutputIt>
auto format(detail::streamed_view<T> view,
basic_format_context<OutputIt, Char>& ctx) const -> OutputIt {
return basic_ostream_formatter<Char>::format(view.value, ctx);
2022-06-24 19:26:24 +03:00
}
};
2022-06-25 18:33:57 +03:00
/**
\rst
Returns a view that formats `value` via an ostream ``operator<<``.
**Example**::
fmt::print("Current thread id: {}\n",
fmt::streamed(std::this_thread::get_id()));
\endrst
*/
2022-06-24 19:26:24 +03:00
template <typename T>
auto streamed(const T& value) -> detail::streamed_view<T> {
return {value};
}
2022-02-05 05:33:55 +03:00
namespace detail {
inline void vprint_directly(std::ostream& os, string_view format_str,
format_args args) {
auto buffer = memory_buffer();
detail::vformat_to(buffer, format_str, args);
detail::write_buffer(os, buffer);
}
2020-05-10 17:25:42 +03:00
} // namespace detail
2023-05-17 17:37:53 +03:00
FMT_EXPORT template <typename Char>
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);
if (detail::write_ostream_unicode(os, {buffer.data(), buffer.size()})) return;
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**::
fmt::print(cerr, "Don't {}!", "panic");
2016-05-06 17:37:20 +03:00
\endrst
*/
2023-05-17 17:37:53 +03:00
FMT_EXPORT template <typename... T>
void print(std::ostream& os, format_string<T...> fmt, T&&... args) {
const auto& vargs = fmt::make_format_args(args...);
if (detail::is_utf8())
vprint(os, fmt, vargs);
else
detail::vprint_directly(os, fmt, vargs);
}
2023-05-17 17:37:53 +03:00
FMT_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...));
}
2023-05-17 17:37:53 +03:00
FMT_EXPORT template <typename... T>
2023-01-24 23:30:00 +03:00
void println(std::ostream& os, format_string<T...> fmt, T&&... args) {
2023-04-11 16:27:28 +03:00
fmt::print(os, "{}\n", fmt::format(fmt, std::forward<T>(args)...));
2023-01-24 23:30:00 +03:00
}
2023-05-17 17:37:53 +03:00
FMT_EXPORT
2023-01-24 23:30:00 +03:00
template <typename... Args>
void println(std::wostream& os,
basic_format_string<wchar_t, type_identity_t<Args>...> fmt,
Args&&... args) {
print(os, L"{}\n", fmt::format(fmt, std::forward<Args>(args)...));
}
2018-05-12 18:33:51 +03:00
FMT_END_NAMESPACE
2016-05-06 17:37:20 +03:00
#endif // FMT_OSTREAM_H_