ext-fmt/include/fmt/ostream.h

149 lines
4.6 KiB
C
Raw Normal View History

2018-01-06 17:09:50 +00:00
// Formatting library for C++ - std::ostream support
//
2018-11-14 17:39:37 +00:00
// Copyright (c) 2012 - present, Victor Zverovich
2018-01-06 17:09:50 +00:00
// All rights reserved.
//
// For the license information refer to format.h.
2016-05-06 14:37:20 +00:00
#ifndef FMT_OSTREAM_H_
#define FMT_OSTREAM_H_
#include <ostream>
2019-01-13 02:27:38 +00:00
#include "format.h"
2016-05-06 14:37:20 +00:00
2018-05-12 15:33:51 +00:00
FMT_BEGIN_NAMESPACE
2016-05-06 14:37:20 +00:00
namespace internal {
2019-01-13 02:27:38 +00:00
template <class Char> class formatbuf : public std::basic_streambuf<Char> {
2016-05-06 14:37:20 +00:00
private:
typedef typename std::basic_streambuf<Char>::int_type int_type;
typedef typename std::basic_streambuf<Char>::traits_type traits_type;
buffer<Char>& buffer_;
2016-05-06 14:37:20 +00:00
public:
formatbuf(buffer<Char>& buffer) : buffer_(buffer) {}
2018-01-29 04:08:51 +00:00
protected:
// The put-area is actually always empty. This makes the implementation
// simpler and has the advantage that the streambuf and the buffer are always
// in sync and sputc never writes into uninitialized memory. The obvious
// disadvantage is that each call to sputc always results in a (virtual) call
// to overflow. There is no disadvantage here for sputn since this always
// results in a call to xsputn.
2016-05-06 14:37:20 +00:00
int_type overflow(int_type ch = traits_type::eof()) FMT_OVERRIDE {
2018-01-29 04:08:51 +00:00
if (!traits_type::eq_int_type(ch, traits_type::eof()))
buffer_.push_back(static_cast<Char>(ch));
2016-05-06 14:37:20 +00:00
return ch;
}
2019-01-13 02:27:38 +00:00
std::streamsize xsputn(const Char* s, std::streamsize count) FMT_OVERRIDE {
2018-01-29 04:08:51 +00:00
buffer_.append(s, s + count);
return count;
2016-05-06 14:37:20 +00:00
}
};
2019-01-13 02:27:38 +00:00
template <typename Char> struct test_stream : std::basic_ostream<Char> {
private:
struct null;
// Hide all operator<< from std::basic_ostream<Char>.
void operator<<(null);
};
2019-01-13 02:27:38 +00:00
// Checks if T has a user-defined operator<< (e.g. not a member of
// std::ostream).
template <typename T, typename Char> class is_streamable {
private:
template <typename U>
static decltype((void)(internal::declval<test_stream<Char>&>()
<< internal::declval<U>()),
2019-01-13 02:27:38 +00:00
std::true_type())
test(int);
2019-01-13 02:27:38 +00:00
template <typename> static std::false_type test(...);
2018-02-28 13:09:24 +00:00
typedef decltype(test<T>(0)) result;
public:
static const bool value = result::value;
};
// Write the content of buf to os.
2017-12-17 17:33:12 +00:00
template <typename Char>
void write(std::basic_ostream<Char>& os, buffer<Char>& buf) {
2019-01-13 02:27:38 +00:00
const Char* data = buf.data();
2017-12-17 17:33:12 +00:00
typedef std::make_unsigned<std::streamsize>::type UnsignedStreamSize;
UnsignedStreamSize size = buf.size();
UnsignedStreamSize max_size =
internal::to_unsigned((std::numeric_limits<std::streamsize>::max)());
do {
UnsignedStreamSize n = size <= max_size ? size : max_size;
os.write(data, static_cast<std::streamsize>(n));
data += n;
size -= n;
} while (size != 0);
}
template <typename Char, typename T>
void format_value(buffer<Char>& buffer, const T& value) {
2018-05-19 15:57:31 +00:00
internal::formatbuf<Char> format_buf(buffer);
std::basic_ostream<Char> output(&format_buf);
2018-02-07 15:36:15 +00:00
output.exceptions(std::ios_base::failbit | std::ios_base::badbit);
output << value;
2018-01-29 04:08:51 +00:00
buffer.resize(buffer.size());
}
2018-08-22 14:40:06 +00:00
2017-08-13 20:09:02 +00:00
// Formats an object of type T that has an overloaded ostream operator<<.
template <typename T, typename Char>
struct fallback_formatter<
T, Char,
typename std::enable_if<internal::is_streamable<T, Char>::value>::type>
2017-08-13 20:09:02 +00:00
: formatter<basic_string_view<Char>, Char> {
2018-01-06 17:09:50 +00:00
template <typename Context>
2019-01-13 02:27:38 +00:00
auto format(const T& value, Context& ctx) -> decltype(ctx.out()) {
2017-08-13 20:09:02 +00:00
basic_memory_buffer<Char> buffer;
internal::format_value(buffer, value);
basic_string_view<Char> str(buffer.data(), buffer.size());
return formatter<basic_string_view<Char>, Char>::format(str, ctx);
2017-08-13 20:09:02 +00:00
}
};
} // namespace internal
// Disable conversion to int if T has an overloaded operator<< which is a free
// function (not a member of std::ostream).
2019-04-20 00:02:31 +00:00
template <typename T, typename Char>
struct convert_to_int<
T, Char,
typename std::enable_if<internal::is_streamable<T, Char>::value>::type> {
static const bool value = false;
};
2016-05-06 14:37:20 +00:00
template <typename Char>
2019-01-13 02:27:38 +00:00
inline void vprint(
std::basic_ostream<Char>& os, basic_string_view<Char> format_str,
basic_format_args<typename buffer_context<Char>::type> args) {
basic_memory_buffer<Char> buffer;
internal::vformat_to(buffer, format_str, args);
2017-12-17 17:33:12 +00:00
internal::write(os, buffer);
}
2016-05-06 14:37:20 +00:00
/**
\rst
Prints formatted data to the stream *os*.
**Example**::
fmt::print(cerr, "Don't {}!", "panic");
2016-05-06 14:37:20 +00:00
\endrst
*/
2019-03-16 19:58:18 +00:00
template <typename S, typename... Args,
FMT_ENABLE_IF(internal::is_string<S>::value)>
inline void print(std::basic_ostream<FMT_CHAR(S)>& os, const S& format_str,
const Args&... args) {
2019-02-11 00:59:58 +00:00
vprint(os, to_string_view(format_str),
{internal::make_args_checked(format_str, args...)});
}
2018-05-12 15:33:51 +00:00
FMT_END_NAMESPACE
2016-05-06 14:37:20 +00:00
#endif // FMT_OSTREAM_H_