2016-06-07 23:23:32 +00:00
|
|
|
/*
|
|
|
|
Formatting library for C++
|
|
|
|
|
|
|
|
Copyright (c) 2012 - 2016, Victor Zverovich
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
For the license information refer to format.h.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FMT_PRINTF_H_
|
|
|
|
#define FMT_PRINTF_H_
|
|
|
|
|
|
|
|
#include <algorithm> // std::fill_n
|
|
|
|
#include <limits> // std::numeric_limits
|
|
|
|
|
2016-08-03 15:52:05 +00:00
|
|
|
#include "fmt/ostream.h"
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
namespace fmt {
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
// Checks if a value fits in int - used to avoid warnings about comparing
|
|
|
|
// signed and unsigned integers.
|
|
|
|
template <bool IsSigned>
|
|
|
|
struct IntChecker {
|
|
|
|
template <typename T>
|
|
|
|
static bool fits_in_int(T value) {
|
|
|
|
unsigned max = std::numeric_limits<int>::max();
|
|
|
|
return value <= max;
|
|
|
|
}
|
|
|
|
static bool fits_in_int(bool) { return true; }
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct IntChecker<true> {
|
|
|
|
template <typename T>
|
|
|
|
static bool fits_in_int(T value) {
|
|
|
|
return value >= std::numeric_limits<int>::min() &&
|
|
|
|
value <= std::numeric_limits<int>::max();
|
|
|
|
}
|
|
|
|
static bool fits_in_int(int) { return true; }
|
|
|
|
};
|
|
|
|
|
2016-11-19 17:29:09 +00:00
|
|
|
class PrecisionHandler {
|
2016-06-07 23:23:32 +00:00
|
|
|
public:
|
|
|
|
template <typename T>
|
2016-11-19 17:29:09 +00:00
|
|
|
typename std::enable_if<std::is_integral<T>::value, int>::type
|
|
|
|
operator()(T value) {
|
2016-06-07 23:23:32 +00:00
|
|
|
if (!IntChecker<std::numeric_limits<T>::is_signed>::fits_in_int(value))
|
2016-08-25 15:38:07 +00:00
|
|
|
FMT_THROW(format_error("number is too big"));
|
2016-06-07 23:23:32 +00:00
|
|
|
return static_cast<int>(value);
|
|
|
|
}
|
2016-11-19 17:29:09 +00:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
typename std::enable_if<!std::is_integral<T>::value, int>::type
|
|
|
|
operator()(T) {
|
|
|
|
FMT_THROW(format_error("precision is not integer"));
|
|
|
|
return 0;
|
|
|
|
}
|
2016-06-07 23:23:32 +00:00
|
|
|
};
|
|
|
|
|
2016-11-19 17:29:09 +00:00
|
|
|
// An argument visitor that returns true iff arg is a zero integer.
|
|
|
|
class IsZeroInt {
|
2016-06-07 23:23:32 +00:00
|
|
|
public:
|
|
|
|
template <typename T>
|
2016-11-19 17:29:09 +00:00
|
|
|
typename std::enable_if<std::is_integral<T>::value, bool>::type
|
|
|
|
operator()(T value) { return value == 0; }
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
typename std::enable_if<!std::is_integral<T>::value, bool>::type
|
|
|
|
operator()(T value) { return false; }
|
2016-06-07 23:23:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T, typename U>
|
|
|
|
struct is_same {
|
|
|
|
enum { value = 0 };
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
struct is_same<T, T> {
|
|
|
|
enum { value = 1 };
|
|
|
|
};
|
|
|
|
|
2016-11-19 16:40:24 +00:00
|
|
|
template <typename T>
|
|
|
|
class ArgConverter {
|
2016-06-07 23:23:32 +00:00
|
|
|
private:
|
|
|
|
internal::Arg &arg_;
|
|
|
|
wchar_t type_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ArgConverter(internal::Arg &arg, wchar_t type)
|
|
|
|
: arg_(arg), type_(type) {}
|
|
|
|
|
2016-11-19 16:40:24 +00:00
|
|
|
void operator()(bool value) {
|
2016-06-07 23:23:32 +00:00
|
|
|
if (type_ != 's')
|
2016-11-19 16:40:24 +00:00
|
|
|
operator()<bool>(value);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
2016-11-19 16:40:24 +00:00
|
|
|
typename std::enable_if<std::is_integral<U>::value>::type
|
|
|
|
operator()(U value) {
|
2016-06-07 23:23:32 +00:00
|
|
|
bool is_signed = type_ == 'd' || type_ == 'i';
|
|
|
|
using internal::Arg;
|
|
|
|
typedef typename internal::Conditional<
|
|
|
|
is_same<T, void>::value, U, T>::type TargetType;
|
|
|
|
if (sizeof(TargetType) <= sizeof(int)) {
|
|
|
|
// Extra casts are used to silence warnings.
|
|
|
|
if (is_signed) {
|
|
|
|
arg_.type = Arg::INT;
|
|
|
|
arg_.int_value = static_cast<int>(static_cast<TargetType>(value));
|
|
|
|
} else {
|
|
|
|
arg_.type = Arg::UINT;
|
|
|
|
typedef typename internal::MakeUnsigned<TargetType>::Type Unsigned;
|
|
|
|
arg_.uint_value = static_cast<unsigned>(static_cast<Unsigned>(value));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (is_signed) {
|
|
|
|
arg_.type = Arg::LONG_LONG;
|
|
|
|
// glibc's printf doesn't sign extend arguments of smaller types:
|
|
|
|
// std::printf("%lld", -42); // prints "4294967254"
|
|
|
|
// but we don't have to do the same because it's a UB.
|
|
|
|
arg_.long_long_value = static_cast<LongLong>(value);
|
|
|
|
} else {
|
|
|
|
arg_.type = Arg::ULONG_LONG;
|
|
|
|
arg_.ulong_long_value =
|
|
|
|
static_cast<typename internal::MakeUnsigned<U>::Type>(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-19 16:40:24 +00:00
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
typename std::enable_if<!std::is_integral<U>::value>::type
|
2016-11-19 17:29:09 +00:00
|
|
|
operator()(U value) {
|
2016-11-19 16:40:24 +00:00
|
|
|
// No coversion needed for non-integral types.
|
|
|
|
}
|
2016-06-07 23:23:32 +00:00
|
|
|
};
|
|
|
|
|
2016-11-19 16:40:24 +00:00
|
|
|
// Converts an integer argument to T for printf, if T is an integral type.
|
|
|
|
// If T is void, the argument is converted to corresponding signed or unsigned
|
|
|
|
// type depending on the type specifier: 'd' and 'i' - signed, other -
|
|
|
|
// unsigned).
|
|
|
|
template <typename T>
|
|
|
|
void convert_arg(format_arg &arg, wchar_t type) {
|
|
|
|
visit(ArgConverter<T>(arg, type), arg);
|
|
|
|
}
|
|
|
|
|
2016-06-07 23:23:32 +00:00
|
|
|
// Converts an integer argument to char for printf.
|
2016-11-19 17:29:09 +00:00
|
|
|
class CharConverter {
|
2016-06-07 23:23:32 +00:00
|
|
|
private:
|
|
|
|
internal::Arg &arg_;
|
|
|
|
|
|
|
|
FMT_DISALLOW_COPY_AND_ASSIGN(CharConverter);
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit CharConverter(internal::Arg &arg) : arg_(arg) {}
|
|
|
|
|
|
|
|
template <typename T>
|
2016-11-19 17:29:09 +00:00
|
|
|
typename std::enable_if<std::is_integral<T>::value>::type
|
|
|
|
operator()(T value) {
|
2016-06-07 23:23:32 +00:00
|
|
|
arg_.type = internal::Arg::CHAR;
|
|
|
|
arg_.int_value = static_cast<char>(value);
|
|
|
|
}
|
2016-11-19 17:29:09 +00:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
typename std::enable_if<!std::is_integral<T>::value>::type
|
|
|
|
operator()(T value) {
|
|
|
|
// No coversion needed for non-integral types.
|
|
|
|
}
|
2016-06-07 23:23:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Checks if an argument is a valid printf width specifier and sets
|
|
|
|
// left alignment if it is negative.
|
2016-11-19 17:29:09 +00:00
|
|
|
class WidthHandler {
|
2016-06-07 23:23:32 +00:00
|
|
|
private:
|
|
|
|
FormatSpec &spec_;
|
|
|
|
|
|
|
|
FMT_DISALLOW_COPY_AND_ASSIGN(WidthHandler);
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit WidthHandler(FormatSpec &spec) : spec_(spec) {}
|
|
|
|
|
|
|
|
template <typename T>
|
2016-11-19 17:29:09 +00:00
|
|
|
typename std::enable_if<std::is_integral<T>::value, unsigned>::type
|
|
|
|
operator()(T value) {
|
2016-06-07 23:23:32 +00:00
|
|
|
typedef typename internal::IntTraits<T>::MainType UnsignedType;
|
|
|
|
UnsignedType width = static_cast<UnsignedType>(value);
|
|
|
|
if (internal::is_negative(value)) {
|
|
|
|
spec_.align_ = ALIGN_LEFT;
|
|
|
|
width = 0 - width;
|
|
|
|
}
|
2016-06-15 13:29:47 +00:00
|
|
|
unsigned int_max = std::numeric_limits<int>::max();
|
|
|
|
if (width > int_max)
|
2016-08-25 15:38:07 +00:00
|
|
|
FMT_THROW(format_error("number is too big"));
|
2016-06-07 23:23:32 +00:00
|
|
|
return static_cast<unsigned>(width);
|
|
|
|
}
|
2016-11-19 17:29:09 +00:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
typename std::enable_if<!std::is_integral<T>::value, unsigned>::type
|
|
|
|
operator()(T value) {
|
|
|
|
FMT_THROW(format_error("width is not integer"));
|
|
|
|
return 0;
|
|
|
|
}
|
2016-06-07 23:23:32 +00:00
|
|
|
};
|
2016-07-21 13:59:28 +00:00
|
|
|
} // namespace internal
|
2016-06-07 23:23:32 +00:00
|
|
|
|
2016-07-21 13:59:28 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
A ``printf`` argument formatter based on the `curiously recurring template
|
|
|
|
pattern <http://en.wikipedia.org/wiki/Curiously_recurring_template_pattern>`_.
|
|
|
|
|
|
|
|
To use `~fmt::BasicPrintfArgFormatter` define a subclass that implements some
|
|
|
|
or all of the visit methods with the same signatures as the methods in
|
|
|
|
`~fmt::ArgVisitor`, for example, `~fmt::ArgVisitor::visit_int()`.
|
|
|
|
Pass the subclass as the *Impl* template parameter. When a formatting
|
|
|
|
function processes an argument, it will dispatch to a visit method
|
|
|
|
specific to the argument type. For example, if the argument type is
|
|
|
|
``double`` then the `~fmt::ArgVisitor::visit_double()` method of a subclass
|
|
|
|
will be called. If the subclass doesn't contain a method with this signature,
|
|
|
|
then a corresponding method of `~fmt::BasicPrintfArgFormatter` or its
|
|
|
|
superclass will be called.
|
|
|
|
\endrst
|
|
|
|
*/
|
2016-06-07 23:23:32 +00:00
|
|
|
template <typename Impl, typename Char>
|
2016-07-21 13:59:28 +00:00
|
|
|
class BasicPrintfArgFormatter : public internal::ArgFormatterBase<Impl, Char> {
|
2016-06-07 23:23:32 +00:00
|
|
|
private:
|
|
|
|
void write_null_pointer() {
|
|
|
|
this->spec().type_ = 0;
|
|
|
|
this->write("(nil)");
|
|
|
|
}
|
|
|
|
|
2016-07-21 13:59:28 +00:00
|
|
|
typedef internal::ArgFormatterBase<Impl, Char> Base;
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
public:
|
2016-07-21 13:59:28 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Constructs an argument formatter object.
|
|
|
|
*writer* is a reference to the output writer and *spec* contains format
|
|
|
|
specifier information for standard argument types.
|
|
|
|
\endrst
|
|
|
|
*/
|
|
|
|
BasicPrintfArgFormatter(BasicWriter<Char> &writer, FormatSpec &spec)
|
|
|
|
: internal::ArgFormatterBase<Impl, Char>(writer, spec) {}
|
|
|
|
|
2016-11-19 15:39:07 +00:00
|
|
|
using Base::operator();
|
|
|
|
|
2016-07-21 13:59:28 +00:00
|
|
|
/** Formats an argument of type ``bool``. */
|
2016-11-19 15:39:07 +00:00
|
|
|
void operator()(bool value) {
|
2016-06-07 23:23:32 +00:00
|
|
|
FormatSpec &fmt_spec = this->spec();
|
|
|
|
if (fmt_spec.type_ != 's')
|
|
|
|
return this->visit_any_int(value);
|
|
|
|
fmt_spec.type_ = 0;
|
|
|
|
this->write(value);
|
|
|
|
}
|
|
|
|
|
2016-07-21 13:59:28 +00:00
|
|
|
/** Formats a character. */
|
2016-11-19 15:39:07 +00:00
|
|
|
void operator()(wchar_t value) {
|
2016-06-07 23:23:32 +00:00
|
|
|
const FormatSpec &fmt_spec = this->spec();
|
|
|
|
BasicWriter<Char> &w = this->writer();
|
|
|
|
if (fmt_spec.type_ && fmt_spec.type_ != 'c')
|
|
|
|
w.write_int(value, fmt_spec);
|
|
|
|
typedef typename BasicWriter<Char>::CharPtr CharPtr;
|
|
|
|
CharPtr out = CharPtr();
|
|
|
|
if (fmt_spec.width_ > 1) {
|
|
|
|
Char fill = ' ';
|
|
|
|
out = w.grow_buffer(fmt_spec.width_);
|
|
|
|
if (fmt_spec.align_ != ALIGN_LEFT) {
|
|
|
|
std::fill_n(out, fmt_spec.width_ - 1, fill);
|
|
|
|
out += fmt_spec.width_ - 1;
|
|
|
|
} else {
|
|
|
|
std::fill_n(out + 1, fmt_spec.width_ - 1, fill);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
out = w.grow_buffer(1);
|
|
|
|
}
|
|
|
|
*out = static_cast<Char>(value);
|
|
|
|
}
|
|
|
|
|
2016-07-21 13:59:28 +00:00
|
|
|
/** Formats a null-terminated C string. */
|
2016-11-19 15:39:07 +00:00
|
|
|
void operator()(const char *value) {
|
2016-06-07 23:23:32 +00:00
|
|
|
if (value)
|
2016-11-19 15:39:07 +00:00
|
|
|
Base::operator()(value);
|
2016-06-07 23:23:32 +00:00
|
|
|
else if (this->spec().type_ == 'p')
|
|
|
|
write_null_pointer();
|
|
|
|
else
|
|
|
|
this->write("(null)");
|
|
|
|
}
|
|
|
|
|
2016-07-21 13:59:28 +00:00
|
|
|
/** Formats a pointer. */
|
2016-11-19 15:39:07 +00:00
|
|
|
void operator()(const void *value) {
|
2016-06-07 23:23:32 +00:00
|
|
|
if (value)
|
2016-11-19 15:39:07 +00:00
|
|
|
return Base::operator()(value);
|
2016-06-07 23:23:32 +00:00
|
|
|
this->spec().type_ = 0;
|
|
|
|
write_null_pointer();
|
|
|
|
}
|
|
|
|
|
2016-07-21 13:59:28 +00:00
|
|
|
/** Formats an argument of a custom (user-defined) type. */
|
2016-11-19 15:39:07 +00:00
|
|
|
void operator()(internal::Arg::CustomValue c) {
|
2016-11-07 00:11:24 +00:00
|
|
|
const Char format_str[] = {'}', '\0'};
|
|
|
|
auto args = basic_format_args<basic_format_context<Char>>();
|
|
|
|
basic_format_context<Char> ctx(format_str, args);
|
|
|
|
c.format(&this->writer(), c.value, &ctx);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** The default printf argument formatter. */
|
|
|
|
template <typename Char>
|
|
|
|
class PrintfArgFormatter
|
|
|
|
: public BasicPrintfArgFormatter<PrintfArgFormatter<Char>, Char> {
|
|
|
|
public:
|
|
|
|
/** Constructs an argument formatter object. */
|
|
|
|
PrintfArgFormatter(BasicWriter<Char> &w, FormatSpec &s)
|
|
|
|
: BasicPrintfArgFormatter<PrintfArgFormatter<Char>, Char>(w, s) {}
|
|
|
|
};
|
|
|
|
|
2016-07-20 15:09:14 +00:00
|
|
|
/** This template formats data and writes the output to a writer. */
|
2016-10-22 15:19:19 +00:00
|
|
|
template <typename Char,
|
|
|
|
typename ArgFormatter = PrintfArgFormatter<Char> >
|
2016-11-07 00:11:24 +00:00
|
|
|
class printf_context :
|
|
|
|
private internal::format_context_base<
|
|
|
|
Char, printf_context<Char, ArgFormatter>> {
|
2016-10-21 13:46:21 +00:00
|
|
|
public:
|
|
|
|
/** The character type for the output. */
|
2016-10-22 15:19:19 +00:00
|
|
|
typedef Char char_type;
|
2016-10-21 13:46:21 +00:00
|
|
|
|
2016-06-07 23:23:32 +00:00
|
|
|
private:
|
2016-11-07 00:11:24 +00:00
|
|
|
typedef internal::format_context_base<Char, printf_context> Base;
|
2016-10-07 15:37:06 +00:00
|
|
|
|
2016-06-07 23:23:32 +00:00
|
|
|
void parse_flags(FormatSpec &spec, const Char *&s);
|
|
|
|
|
|
|
|
// Returns the argument with specified index or, if arg_index is equal
|
|
|
|
// to the maximum unsigned value, the next argument.
|
2016-07-20 15:09:14 +00:00
|
|
|
internal::Arg get_arg(
|
|
|
|
const Char *s,
|
2016-06-07 23:23:32 +00:00
|
|
|
unsigned arg_index = (std::numeric_limits<unsigned>::max)());
|
|
|
|
|
|
|
|
// Parses argument index, flags and width and returns the argument index.
|
|
|
|
unsigned parse_header(const Char *&s, FormatSpec &spec);
|
|
|
|
|
|
|
|
public:
|
2016-07-20 15:09:14 +00:00
|
|
|
/**
|
|
|
|
\rst
|
2016-11-07 00:11:24 +00:00
|
|
|
Constructs a ``printf_context`` object. References to the arguments and
|
|
|
|
the writer are stored in the context object so make sure they have
|
2016-07-20 15:21:13 +00:00
|
|
|
appropriate lifetimes.
|
2016-07-20 15:09:14 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2016-11-07 00:11:24 +00:00
|
|
|
explicit printf_context(BasicCStringRef<Char> format_str,
|
|
|
|
basic_format_args<printf_context> args)
|
|
|
|
: Base(format_str.c_str(), args) {}
|
|
|
|
|
2016-07-20 15:26:14 +00:00
|
|
|
/** Formats stored arguments and writes the output to the writer. */
|
2016-11-07 00:11:24 +00:00
|
|
|
FMT_API void format(BasicWriter<Char> &writer);
|
2016-06-07 23:23:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename Char, typename AF>
|
2016-11-07 00:11:24 +00:00
|
|
|
void printf_context<Char, AF>::parse_flags(FormatSpec &spec, const Char *&s) {
|
2016-06-07 23:23:32 +00:00
|
|
|
for (;;) {
|
|
|
|
switch (*s++) {
|
|
|
|
case '-':
|
|
|
|
spec.align_ = ALIGN_LEFT;
|
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
spec.flags_ |= SIGN_FLAG | PLUS_FLAG;
|
|
|
|
break;
|
|
|
|
case '0':
|
|
|
|
spec.fill_ = '0';
|
|
|
|
break;
|
|
|
|
case ' ':
|
|
|
|
spec.flags_ |= SIGN_FLAG;
|
|
|
|
break;
|
|
|
|
case '#':
|
|
|
|
spec.flags_ |= HASH_FLAG;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
--s;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Char, typename AF>
|
2016-11-07 00:11:24 +00:00
|
|
|
internal::Arg printf_context<Char, AF>::get_arg(const Char *s,
|
|
|
|
unsigned arg_index) {
|
2016-06-07 23:23:32 +00:00
|
|
|
(void)s;
|
|
|
|
const char *error = 0;
|
2016-07-20 15:09:14 +00:00
|
|
|
internal::Arg arg = arg_index == std::numeric_limits<unsigned>::max() ?
|
2016-10-07 15:37:06 +00:00
|
|
|
this->next_arg(error) : Base::get_arg(arg_index - 1, error);
|
2016-06-07 23:23:32 +00:00
|
|
|
if (error)
|
2016-08-25 15:38:07 +00:00
|
|
|
FMT_THROW(format_error(!*s ? "invalid format string" : error));
|
2016-06-07 23:23:32 +00:00
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Char, typename AF>
|
2016-11-07 00:11:24 +00:00
|
|
|
unsigned printf_context<Char, AF>::parse_header(
|
2016-06-07 23:23:32 +00:00
|
|
|
const Char *&s, FormatSpec &spec) {
|
|
|
|
unsigned arg_index = std::numeric_limits<unsigned>::max();
|
|
|
|
Char c = *s;
|
|
|
|
if (c >= '0' && c <= '9') {
|
|
|
|
// Parse an argument index (if followed by '$') or a width possibly
|
|
|
|
// preceded with '0' flag(s).
|
2016-07-20 15:09:14 +00:00
|
|
|
unsigned value = internal::parse_nonnegative_int(s);
|
2016-06-07 23:23:32 +00:00
|
|
|
if (*s == '$') { // value is an argument index
|
|
|
|
++s;
|
|
|
|
arg_index = value;
|
|
|
|
} else {
|
|
|
|
if (c == '0')
|
|
|
|
spec.fill_ = '0';
|
|
|
|
if (value != 0) {
|
|
|
|
// Nonzero value means that we parsed width and don't need to
|
|
|
|
// parse it or flags again, so return now.
|
|
|
|
spec.width_ = value;
|
|
|
|
return arg_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parse_flags(spec, s);
|
|
|
|
// Parse width.
|
|
|
|
if (*s >= '0' && *s <= '9') {
|
2016-07-20 15:09:14 +00:00
|
|
|
spec.width_ = internal::parse_nonnegative_int(s);
|
2016-06-07 23:23:32 +00:00
|
|
|
} else if (*s == '*') {
|
|
|
|
++s;
|
2016-11-19 15:59:54 +00:00
|
|
|
spec.width_ = visit(internal::WidthHandler(spec), get_arg(s));
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
return arg_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Char, typename AF>
|
2016-11-07 00:11:24 +00:00
|
|
|
void printf_context<Char, AF>::format(BasicWriter<Char> &writer) {
|
|
|
|
const Char *start = this->ptr();
|
2016-06-07 23:23:32 +00:00
|
|
|
const Char *s = start;
|
|
|
|
while (*s) {
|
|
|
|
Char c = *s++;
|
|
|
|
if (c != '%') continue;
|
|
|
|
if (*s == c) {
|
2016-10-27 00:54:11 +00:00
|
|
|
internal::write(writer, start, s);
|
2016-06-07 23:23:32 +00:00
|
|
|
start = ++s;
|
|
|
|
continue;
|
|
|
|
}
|
2016-10-27 00:54:11 +00:00
|
|
|
internal::write(writer, start, s - 1);
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
FormatSpec spec;
|
|
|
|
spec.align_ = ALIGN_RIGHT;
|
|
|
|
|
|
|
|
// Parse argument index, flags and width.
|
|
|
|
unsigned arg_index = parse_header(s, spec);
|
|
|
|
|
|
|
|
// Parse precision.
|
|
|
|
if (*s == '.') {
|
|
|
|
++s;
|
|
|
|
if ('0' <= *s && *s <= '9') {
|
2016-07-20 15:09:14 +00:00
|
|
|
spec.precision_ = static_cast<int>(internal::parse_nonnegative_int(s));
|
2016-06-07 23:23:32 +00:00
|
|
|
} else if (*s == '*') {
|
|
|
|
++s;
|
2016-11-19 15:59:54 +00:00
|
|
|
spec.precision_ = visit(internal::PrecisionHandler(), get_arg(s));
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-20 15:09:14 +00:00
|
|
|
using internal::Arg;
|
2016-06-07 23:23:32 +00:00
|
|
|
Arg arg = get_arg(s, arg_index);
|
2016-11-19 15:59:54 +00:00
|
|
|
if (spec.flag(HASH_FLAG) && visit(internal::IsZeroInt(), arg))
|
2016-07-20 15:09:14 +00:00
|
|
|
spec.flags_ &= ~internal::to_unsigned<int>(HASH_FLAG);
|
2016-06-07 23:23:32 +00:00
|
|
|
if (spec.fill_ == '0') {
|
|
|
|
if (arg.type <= Arg::LAST_NUMERIC_TYPE)
|
|
|
|
spec.align_ = ALIGN_NUMERIC;
|
|
|
|
else
|
|
|
|
spec.fill_ = ' '; // Ignore '0' flag for non-numeric types.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse length and convert the argument to the required type.
|
2016-11-19 16:40:24 +00:00
|
|
|
using internal::convert_arg;
|
2016-06-07 23:23:32 +00:00
|
|
|
switch (*s++) {
|
|
|
|
case 'h':
|
|
|
|
if (*s == 'h')
|
2016-11-19 16:40:24 +00:00
|
|
|
convert_arg<signed char>(arg, *++s);
|
2016-06-07 23:23:32 +00:00
|
|
|
else
|
2016-11-19 16:40:24 +00:00
|
|
|
convert_arg<short>(arg, *s);
|
2016-06-07 23:23:32 +00:00
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
if (*s == 'l')
|
2016-11-19 16:40:24 +00:00
|
|
|
convert_arg<fmt::LongLong>(arg, *++s);
|
2016-06-07 23:23:32 +00:00
|
|
|
else
|
2016-11-19 16:40:24 +00:00
|
|
|
convert_arg<long>(arg, *s);
|
2016-06-07 23:23:32 +00:00
|
|
|
break;
|
|
|
|
case 'j':
|
2016-11-19 16:40:24 +00:00
|
|
|
convert_arg<intmax_t>(arg, *s);
|
2016-06-07 23:23:32 +00:00
|
|
|
break;
|
|
|
|
case 'z':
|
2016-11-19 16:40:24 +00:00
|
|
|
convert_arg<std::size_t>(arg, *s);
|
2016-06-07 23:23:32 +00:00
|
|
|
break;
|
|
|
|
case 't':
|
2016-11-19 16:40:24 +00:00
|
|
|
convert_arg<std::ptrdiff_t>(arg, *s);
|
2016-06-07 23:23:32 +00:00
|
|
|
break;
|
|
|
|
case 'L':
|
|
|
|
// printf produces garbage when 'L' is omitted for long double, no
|
|
|
|
// need to do the same.
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
--s;
|
2016-11-19 16:40:24 +00:00
|
|
|
convert_arg<void>(arg, *s);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parse type.
|
|
|
|
if (!*s)
|
2016-08-25 15:38:07 +00:00
|
|
|
FMT_THROW(format_error("invalid format string"));
|
2016-06-07 23:23:32 +00:00
|
|
|
spec.type_ = static_cast<char>(*s++);
|
|
|
|
if (arg.type <= Arg::LAST_INTEGER_TYPE) {
|
|
|
|
// Normalize type.
|
|
|
|
switch (spec.type_) {
|
|
|
|
case 'i': case 'u':
|
|
|
|
spec.type_ = 'd';
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
// TODO: handle wchar_t
|
2016-11-19 15:59:54 +00:00
|
|
|
visit(internal::CharConverter(arg), arg);
|
2016-06-07 23:23:32 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
start = s;
|
|
|
|
|
|
|
|
// Format argument.
|
2016-11-19 15:59:54 +00:00
|
|
|
visit(AF(writer, spec), arg);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
2016-10-27 00:54:11 +00:00
|
|
|
internal::write(writer, start, s);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
2016-10-21 13:46:21 +00:00
|
|
|
// Formats a value.
|
|
|
|
template <typename Char, typename T>
|
2016-10-25 13:19:19 +00:00
|
|
|
void format_value(BasicWriter<Char> &w, const T &value,
|
2016-11-07 00:11:24 +00:00
|
|
|
printf_context<Char>& ctx) {
|
2016-10-21 13:46:21 +00:00
|
|
|
internal::MemoryBuffer<Char, internal::INLINE_BUFFER_SIZE> buffer;
|
2016-10-27 00:54:11 +00:00
|
|
|
w << internal::format_value(buffer, value);
|
2016-10-21 13:46:21 +00:00
|
|
|
}
|
|
|
|
|
2016-06-07 23:23:32 +00:00
|
|
|
template <typename Char>
|
2016-08-27 00:23:13 +00:00
|
|
|
void printf(BasicWriter<Char> &w, BasicCStringRef<Char> format,
|
2016-11-07 00:11:24 +00:00
|
|
|
basic_format_args<printf_context<Char>> args) {
|
|
|
|
printf_context<Char>(format, args).format(w);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 15:37:06 +00:00
|
|
|
inline std::string vsprintf(CStringRef format,
|
2016-11-07 00:11:24 +00:00
|
|
|
basic_format_args<printf_context<char>> args) {
|
2016-08-27 00:23:13 +00:00
|
|
|
MemoryWriter w;
|
|
|
|
printf(w, format, args);
|
|
|
|
return w.str();
|
|
|
|
}
|
|
|
|
|
2016-06-07 23:23:32 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Formats arguments and returns the result as a string.
|
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
|
|
|
std::string message = fmt::sprintf("The answer is %d", 42);
|
|
|
|
\endrst
|
|
|
|
*/
|
2016-08-27 00:23:13 +00:00
|
|
|
template <typename... Args>
|
|
|
|
inline std::string sprintf(CStringRef format_str, const Args & ... args) {
|
2016-11-07 03:27:14 +00:00
|
|
|
return vsprintf(format_str, make_xformat_args<printf_context<char>>(args...));
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 15:37:06 +00:00
|
|
|
inline std::wstring vsprintf(WCStringRef format,
|
2016-11-07 00:11:24 +00:00
|
|
|
basic_format_args<printf_context<wchar_t>> args) {
|
2016-06-07 23:23:32 +00:00
|
|
|
WMemoryWriter w;
|
|
|
|
printf(w, format, args);
|
|
|
|
return w.str();
|
|
|
|
}
|
2016-08-27 00:23:13 +00:00
|
|
|
|
|
|
|
template <typename... Args>
|
|
|
|
inline std::wstring sprintf(WCStringRef format_str, const Args & ... args) {
|
2016-11-07 03:27:14 +00:00
|
|
|
auto vargs = make_xformat_args<printf_context<wchar_t>>(args...);
|
2016-08-27 00:23:13 +00:00
|
|
|
return vsprintf(format_str, vargs);
|
|
|
|
}
|
|
|
|
|
2016-10-07 15:37:06 +00:00
|
|
|
FMT_API int vfprintf(std::FILE *f, CStringRef format,
|
2016-11-07 00:11:24 +00:00
|
|
|
basic_format_args<printf_context<char>> args);
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Prints formatted data to the file *f*.
|
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
|
|
|
fmt::fprintf(stderr, "Don't %s!", "panic");
|
|
|
|
\endrst
|
|
|
|
*/
|
2016-08-27 00:23:13 +00:00
|
|
|
template <typename... Args>
|
|
|
|
inline int fprintf(std::FILE *f, CStringRef format_str, const Args & ... args) {
|
2016-11-07 03:27:14 +00:00
|
|
|
auto vargs = make_xformat_args<printf_context<char>>(args...);
|
2016-08-27 00:23:13 +00:00
|
|
|
return vfprintf(f, format_str, vargs);
|
|
|
|
}
|
|
|
|
|
2016-10-07 15:37:06 +00:00
|
|
|
inline int vprintf(CStringRef format,
|
2016-11-07 00:11:24 +00:00
|
|
|
basic_format_args<printf_context<char>> args) {
|
2016-08-27 00:23:13 +00:00
|
|
|
return vfprintf(stdout, format, args);
|
|
|
|
}
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Prints formatted data to ``stdout``.
|
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
|
|
|
fmt::printf("Elapsed time: %.2f seconds", 1.23);
|
|
|
|
\endrst
|
|
|
|
*/
|
2016-08-27 00:23:13 +00:00
|
|
|
template <typename... Args>
|
|
|
|
inline int printf(CStringRef format_str, const Args & ... args) {
|
2016-11-07 03:27:14 +00:00
|
|
|
return vprintf(format_str, make_xformat_args<printf_context<char>>(args...));
|
2016-08-27 00:23:13 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 15:37:06 +00:00
|
|
|
inline int vfprintf(std::ostream &os, CStringRef format_str,
|
2016-11-07 00:11:24 +00:00
|
|
|
basic_format_args<printf_context<char>> args) {
|
2016-08-27 00:23:13 +00:00
|
|
|
MemoryWriter w;
|
|
|
|
printf(w, format_str, args);
|
|
|
|
internal::write(os, w);
|
|
|
|
return static_cast<int>(w.size());
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
2016-08-03 15:52:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Prints formatted data to the stream *os*.
|
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
|
|
|
fprintf(cerr, "Don't %s!", "panic");
|
|
|
|
\endrst
|
|
|
|
*/
|
2016-08-27 00:23:13 +00:00
|
|
|
template <typename... Args>
|
|
|
|
inline int fprintf(std::ostream &os, CStringRef format_str,
|
|
|
|
const Args & ... args) {
|
2016-11-07 03:27:14 +00:00
|
|
|
auto vargs = make_xformat_args<printf_context<char>>(args...);
|
2016-08-27 00:23:13 +00:00
|
|
|
return vfprintf(os, format_str, vargs);
|
2016-08-03 15:52:05 +00:00
|
|
|
}
|
2016-06-07 23:23:32 +00:00
|
|
|
} // namespace fmt
|
|
|
|
|
|
|
|
#endif // FMT_PRINTF_H_
|