2018-01-06 17:09:50 +00:00
|
|
|
// Formatting library for C++ - std::ostream support
|
|
|
|
//
|
|
|
|
// Copyright (c) 2012 - 2016, Victor Zverovich
|
|
|
|
// 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_
|
|
|
|
|
2018-01-20 18:28:10 +00:00
|
|
|
#include "format.h"
|
2016-05-06 14:37:20 +00:00
|
|
|
#include <ostream>
|
|
|
|
|
|
|
|
namespace fmt {
|
|
|
|
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
template <class Char>
|
|
|
|
class FormatBuf : public std::basic_streambuf<Char> {
|
|
|
|
private:
|
|
|
|
typedef typename std::basic_streambuf<Char>::int_type int_type;
|
|
|
|
typedef typename std::basic_streambuf<Char>::traits_type traits_type;
|
|
|
|
|
2017-02-14 17:08:37 +00:00
|
|
|
basic_buffer<Char> &buffer_;
|
2016-05-06 14:37:20 +00:00
|
|
|
|
|
|
|
public:
|
2018-01-29 04:08:51 +00:00
|
|
|
FormatBuf(basic_buffer<Char> &buffer) : buffer_(buffer) {}
|
|
|
|
|
|
|
|
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
|
|
|
|
2018-01-28 01:15:14 +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;
|
|
|
|
}
|
|
|
|
|
2018-01-29 04:08:51 +00:00
|
|
|
std::streamsize xsputn(const Char *s, std::streamsize count) FMT_OVERRIDE {
|
|
|
|
buffer_.append(s, s + count);
|
|
|
|
return count;
|
2016-05-06 14:37:20 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-02-17 09:03:43 +00:00
|
|
|
template <typename Char>
|
|
|
|
struct test_stream : std::basic_ostream<Char> {
|
2018-01-23 02:56:53 +00:00
|
|
|
private:
|
|
|
|
struct null;
|
2018-02-17 09:03:43 +00:00
|
|
|
// Hide all operator<< from std::basic_ostream<Char>.
|
2018-01-23 02:56:53 +00:00
|
|
|
void operator<<(null);
|
2018-01-22 02:53:38 +00:00
|
|
|
};
|
|
|
|
|
2018-01-23 02:56:53 +00:00
|
|
|
// Disable conversion to int if T has an overloaded operator<< which is a free
|
|
|
|
// function (not a member of std::ostream).
|
2018-02-17 09:03:43 +00:00
|
|
|
template <typename T, typename Char>
|
|
|
|
class convert_to_int<T, Char, true> {
|
2018-01-23 02:56:53 +00:00
|
|
|
private:
|
|
|
|
template <typename U>
|
|
|
|
static decltype(
|
2018-03-03 22:04:59 +00:00
|
|
|
internal::declval<test_stream<Char>&>()
|
|
|
|
<< internal::declval<U>(), std::true_type()) test(int);
|
2018-01-22 02:53:38 +00:00
|
|
|
|
2018-01-23 02:56:53 +00:00
|
|
|
template <typename>
|
|
|
|
static std::false_type test(...);
|
|
|
|
|
2018-02-28 13:09:24 +00:00
|
|
|
typedef decltype(test<T>(0)) result;
|
|
|
|
|
2018-01-23 02:56:53 +00:00
|
|
|
public:
|
2018-02-28 13:09:24 +00:00
|
|
|
static const bool value = !result::value;
|
2016-05-06 14:37:20 +00:00
|
|
|
};
|
2016-08-03 15:52:05 +00:00
|
|
|
|
2017-02-14 21:29:47 +00:00
|
|
|
// 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, basic_buffer<Char> &buf) {
|
|
|
|
const Char *data = buf.data();
|
|
|
|
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);
|
|
|
|
}
|
2016-10-21 13:46:21 +00:00
|
|
|
|
|
|
|
template <typename Char, typename T>
|
2017-02-14 21:29:47 +00:00
|
|
|
void format_value(basic_buffer<Char> &buffer, const T &value) {
|
2016-10-21 13:46:21 +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);
|
2016-10-21 13:46:21 +00:00
|
|
|
output << value;
|
2018-01-29 04:08:51 +00:00
|
|
|
buffer.resize(buffer.size());
|
2016-10-21 13:46:21 +00:00
|
|
|
}
|
2017-08-13 20:09:02 +00:00
|
|
|
|
|
|
|
// Disable builtin formatting of enums and use operator<< instead.
|
|
|
|
template <typename T>
|
|
|
|
struct format_enum<T,
|
|
|
|
typename std::enable_if<std::is_enum<T>::value>::type> : std::false_type {};
|
2016-05-06 14:37:20 +00:00
|
|
|
} // namespace internal
|
|
|
|
|
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 formatter<T, Char,
|
2018-02-11 17:23:47 +00:00
|
|
|
typename std::enable_if<!internal::format_type<
|
|
|
|
typename buffer_context<Char>::type, T>::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>
|
2018-01-14 19:00:27 +00:00
|
|
|
auto format(const T &value, Context &ctx) -> decltype(ctx.begin()) {
|
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());
|
2018-01-06 17:09:50 +00:00
|
|
|
formatter<basic_string_view<Char>, Char>::format(str, ctx);
|
2018-01-14 19:00:27 +00:00
|
|
|
return ctx.begin();
|
2017-08-13 20:09:02 +00:00
|
|
|
}
|
|
|
|
};
|
2016-05-06 14:37:20 +00:00
|
|
|
|
2017-12-17 17:33:12 +00:00
|
|
|
inline void vprint(std::ostream &os, string_view format_str, format_args args) {
|
|
|
|
memory_buffer buffer;
|
|
|
|
vformat_to(buffer, format_str, args);
|
|
|
|
internal::write(os, buffer);
|
|
|
|
}
|
2016-08-27 00:23:13 +00:00
|
|
|
|
2016-05-06 14:37:20 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Prints formatted data to the stream *os*.
|
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
|
|
|
print(cerr, "Don't {}!", "panic");
|
|
|
|
\endrst
|
|
|
|
*/
|
2016-08-27 00:23:13 +00:00
|
|
|
template <typename... Args>
|
2017-07-19 02:40:48 +00:00
|
|
|
inline void print(std::ostream &os, string_view format_str,
|
2016-08-27 00:23:13 +00:00
|
|
|
const Args & ... args) {
|
2017-02-05 14:41:39 +00:00
|
|
|
vprint(os, format_str, make_args(args...));
|
2016-08-27 00:23:13 +00:00
|
|
|
}
|
2016-05-06 14:37:20 +00:00
|
|
|
} // namespace fmt
|
|
|
|
|
|
|
|
#endif // FMT_OSTREAM_H_
|