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-12-11 21:22:45 +00:00
|
|
|
class PrintfPrecisionHandler {
|
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
|
2017-08-27 15:16:46 +00:00
|
|
|
operator()(T) { return false; }
|
2016-06-07 23:23:32 +00:00
|
|
|
};
|
|
|
|
|
2017-09-04 18:41:15 +00:00
|
|
|
template <typename T>
|
|
|
|
struct make_unsigned_or_bool : std::make_unsigned<T> {};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct make_unsigned_or_bool<bool> {
|
|
|
|
using type = bool;
|
|
|
|
};
|
|
|
|
|
2016-12-29 17:07:39 +00:00
|
|
|
template <typename T, typename Context>
|
2016-11-19 16:40:24 +00:00
|
|
|
class ArgConverter {
|
2016-06-07 23:23:32 +00:00
|
|
|
private:
|
2016-12-29 17:07:39 +00:00
|
|
|
typedef typename Context::char_type Char;
|
|
|
|
|
2017-02-05 14:09:06 +00:00
|
|
|
basic_arg<Context> &arg_;
|
2016-12-29 17:07:39 +00:00
|
|
|
typename Context::char_type type_;
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
public:
|
2017-02-05 14:09:06 +00:00
|
|
|
ArgConverter(basic_arg<Context> &arg, Char type)
|
2016-06-07 23:23:32 +00:00
|
|
|
: 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';
|
2017-09-04 20:56:14 +00:00
|
|
|
typedef typename std::conditional<
|
2017-08-27 16:16:50 +00:00
|
|
|
std::is_same<T, void>::value, U, T>::type TargetType;
|
2016-06-07 23:23:32 +00:00
|
|
|
if (sizeof(TargetType) <= sizeof(int)) {
|
|
|
|
// Extra casts are used to silence warnings.
|
|
|
|
if (is_signed) {
|
2016-12-29 17:07:39 +00:00
|
|
|
arg_ = internal::make_arg<Context>(
|
2016-12-11 21:22:45 +00:00
|
|
|
static_cast<int>(static_cast<TargetType>(value)));
|
2016-06-07 23:23:32 +00:00
|
|
|
} else {
|
2017-09-04 18:41:15 +00:00
|
|
|
typedef typename make_unsigned_or_bool<TargetType>::type Unsigned;
|
2016-12-29 17:07:39 +00:00
|
|
|
arg_ = internal::make_arg<Context>(
|
2016-12-11 21:22:45 +00:00
|
|
|
static_cast<unsigned>(static_cast<Unsigned>(value)));
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (is_signed) {
|
|
|
|
// 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.
|
2017-08-26 16:09:43 +00:00
|
|
|
arg_ = internal::make_arg<Context>(static_cast<long long>(value));
|
2016-06-07 23:23:32 +00:00
|
|
|
} else {
|
2016-12-29 17:07:39 +00:00
|
|
|
arg_ = internal::make_arg<Context>(
|
2017-09-04 18:41:15 +00:00
|
|
|
static_cast<typename make_unsigned_or_bool<U>::type>(value));
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-19 16:40:24 +00:00
|
|
|
|
|
|
|
template <typename U>
|
2017-08-27 15:16:46 +00:00
|
|
|
typename std::enable_if<!std::is_integral<U>::value>::type operator()(U) {
|
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).
|
2016-12-29 17:07:39 +00:00
|
|
|
template <typename T, typename Context, typename Char>
|
2017-02-05 14:09:06 +00:00
|
|
|
void convert_arg(basic_arg<Context> &arg, Char type) {
|
2016-12-29 17:07:39 +00:00
|
|
|
visit(ArgConverter<T, Context>(arg, type), arg);
|
2016-11-19 16:40:24 +00:00
|
|
|
}
|
|
|
|
|
2016-06-07 23:23:32 +00:00
|
|
|
// Converts an integer argument to char for printf.
|
2016-12-29 17:07:39 +00:00
|
|
|
template <typename Context>
|
2016-11-19 17:29:09 +00:00
|
|
|
class CharConverter {
|
2016-06-07 23:23:32 +00:00
|
|
|
private:
|
2017-02-05 14:09:06 +00:00
|
|
|
basic_arg<Context> &arg_;
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
FMT_DISALLOW_COPY_AND_ASSIGN(CharConverter);
|
|
|
|
|
|
|
|
public:
|
2017-02-05 14:09:06 +00:00
|
|
|
explicit CharConverter(basic_arg<Context> &arg) : arg_(arg) {}
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
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-12-29 17:07:39 +00:00
|
|
|
arg_ = internal::make_arg<Context>(static_cast<char>(value));
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
2016-11-19 17:29:09 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2016-12-29 17:07:39 +00:00
|
|
|
typename std::enable_if<!std::is_integral<T>::value>::type operator()(T) {
|
2016-11-19 17:29:09 +00:00
|
|
|
// 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.
|
2017-01-28 13:17:47 +00:00
|
|
|
template <typename Char>
|
2016-12-11 21:22:45 +00:00
|
|
|
class PrintfWidthHandler {
|
2016-06-07 23:23:32 +00:00
|
|
|
private:
|
2017-01-28 13:17:47 +00:00
|
|
|
typedef basic_format_specs<Char> format_specs;
|
|
|
|
|
2017-01-28 12:51:35 +00:00
|
|
|
format_specs &spec_;
|
2016-06-07 23:23:32 +00:00
|
|
|
|
2016-12-11 21:22:45 +00:00
|
|
|
FMT_DISALLOW_COPY_AND_ASSIGN(PrintfWidthHandler);
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
public:
|
2017-01-28 12:51:35 +00:00
|
|
|
explicit PrintfWidthHandler(format_specs &spec) : spec_(spec) {}
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
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) {
|
2017-02-19 14:46:51 +00:00
|
|
|
typedef typename internal::int_traits<T>::main_type UnsignedType;
|
2016-06-07 23:23:32 +00:00
|
|
|
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
|
2017-08-27 15:16:46 +00:00
|
|
|
operator()(T) {
|
2016-11-19 17:29:09 +00:00
|
|
|
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
|
|
|
|
2017-12-02 17:44:48 +00:00
|
|
|
template <typename Char>
|
|
|
|
class printf_arg_formatter;
|
|
|
|
|
|
|
|
template <typename Char,
|
|
|
|
typename ArgFormatter = printf_arg_formatter<Char> >
|
|
|
|
class printf_context;
|
|
|
|
|
2016-07-21 13:59:28 +00:00
|
|
|
/**
|
|
|
|
\rst
|
2016-11-20 15:42:38 +00:00
|
|
|
The ``printf`` argument formatter.
|
2016-07-21 13:59:28 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2016-11-20 15:42:38 +00:00
|
|
|
template <typename Char>
|
2017-02-19 16:41:38 +00:00
|
|
|
class printf_arg_formatter : public internal::arg_formatter_base<Char> {
|
2016-06-07 23:23:32 +00:00
|
|
|
private:
|
2017-12-02 17:44:48 +00:00
|
|
|
printf_context<Char>& context_;
|
|
|
|
|
2016-06-07 23:23:32 +00:00
|
|
|
void write_null_pointer() {
|
|
|
|
this->spec().type_ = 0;
|
|
|
|
this->write("(nil)");
|
|
|
|
}
|
|
|
|
|
2017-02-19 16:41:38 +00:00
|
|
|
typedef internal::arg_formatter_base<Char> Base;
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
public:
|
2017-01-28 13:17:47 +00:00
|
|
|
typedef typename Base::format_specs format_specs;
|
|
|
|
|
2016-07-21 13:59:28 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Constructs an argument formatter object.
|
2017-02-14 21:29:47 +00:00
|
|
|
*buffer* is a reference to the output buffer and *spec* contains format
|
2016-07-21 13:59:28 +00:00
|
|
|
specifier information for standard argument types.
|
|
|
|
\endrst
|
|
|
|
*/
|
2017-12-02 17:44:48 +00:00
|
|
|
printf_arg_formatter(
|
|
|
|
basic_buffer<Char> &buffer, format_specs &spec, printf_context<Char> &ctx)
|
|
|
|
: internal::arg_formatter_base<Char>(buffer, spec), context_(ctx) {}
|
2016-07-21 13:59:28 +00:00
|
|
|
|
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) {
|
2017-01-28 12:51:35 +00:00
|
|
|
format_specs &fmt_spec = this->spec();
|
2016-06-07 23:23:32 +00:00
|
|
|
if (fmt_spec.type_ != 's')
|
2016-11-20 15:42:38 +00:00
|
|
|
return (*this)(value ? 1 : 0);
|
2016-06-07 23:23:32 +00:00
|
|
|
fmt_spec.type_ = 0;
|
|
|
|
this->write(value);
|
|
|
|
}
|
|
|
|
|
2016-07-21 13:59:28 +00:00
|
|
|
/** Formats a character. */
|
2016-12-11 21:22:45 +00:00
|
|
|
void operator()(Char value) {
|
2017-09-04 19:28:53 +00:00
|
|
|
format_specs &fmt_spec = this->spec();
|
2016-06-07 23:23:32 +00:00
|
|
|
if (fmt_spec.type_ && fmt_spec.type_ != 'c')
|
2017-09-04 19:28:53 +00:00
|
|
|
return (*this)(static_cast<int>(value));
|
|
|
|
fmt_spec.flags_ = 0;
|
|
|
|
fmt_spec.align_ = ALIGN_RIGHT;
|
|
|
|
Base::operator()(value);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
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. */
|
2017-12-02 17:44:48 +00:00
|
|
|
void operator()(typename basic_arg<printf_context<Char>>::handle handle) {
|
|
|
|
handle.format(this->writer().buffer(), context_);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-13 20:09:02 +00:00
|
|
|
template <typename T, typename Char = char>
|
|
|
|
struct printf_formatter {
|
2017-09-17 15:32:57 +00:00
|
|
|
template <typename ParseContext>
|
|
|
|
const Char *parse(ParseContext& ctx) { return ctx.begin(); }
|
2017-08-13 20:09:02 +00:00
|
|
|
|
|
|
|
void format(basic_buffer<Char> &buf, const T &value, printf_context<Char> &) {
|
|
|
|
internal::format_value(buf, value);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** This template formats data and writes the output to a writer. */
|
|
|
|
template <typename Char, typename ArgFormatter>
|
2016-11-07 00:11:24 +00:00
|
|
|
class printf_context :
|
2017-02-05 14:41:39 +00:00
|
|
|
private internal::context_base<
|
2016-11-07 00:11:24 +00:00
|
|
|
Char, printf_context<Char, ArgFormatter>> {
|
2016-10-21 13:46:21 +00:00
|
|
|
public:
|
|
|
|
/** The character type for the output. */
|
2017-08-13 20:09:02 +00:00
|
|
|
using char_type = Char;
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
using formatter_type = printf_formatter<T>;
|
2016-10-21 13:46:21 +00:00
|
|
|
|
2016-06-07 23:23:32 +00:00
|
|
|
private:
|
2017-02-05 14:41:39 +00:00
|
|
|
typedef internal::context_base<Char, printf_context> Base;
|
2016-12-29 17:07:39 +00:00
|
|
|
typedef typename Base::format_arg format_arg;
|
2017-01-28 13:17:47 +00:00
|
|
|
typedef basic_format_specs<Char> format_specs;
|
2017-08-13 20:09:02 +00:00
|
|
|
typedef internal::null_terminating_iterator<Char> iterator;
|
2016-10-07 15:37:06 +00:00
|
|
|
|
2017-07-19 02:40:48 +00:00
|
|
|
void parse_flags(format_specs &spec, iterator &it);
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
// Returns the argument with specified index or, if arg_index is equal
|
|
|
|
// to the maximum unsigned value, the next argument.
|
2016-12-29 17:07:39 +00:00
|
|
|
format_arg get_arg(
|
2017-07-19 02:40:48 +00:00
|
|
|
iterator it,
|
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.
|
2017-07-19 02:40:48 +00:00
|
|
|
unsigned parse_header(iterator &it, format_specs &spec);
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
2017-12-03 15:32:04 +00:00
|
|
|
printf_context(basic_string_view<Char> format_str,
|
|
|
|
basic_format_args<printf_context> args)
|
2017-09-17 15:32:57 +00:00
|
|
|
: Base(format_str, args) {}
|
|
|
|
|
2017-11-19 16:49:58 +00:00
|
|
|
using Base::parse_context;
|
2016-11-07 00:11:24 +00:00
|
|
|
|
2017-02-14 21:29:47 +00:00
|
|
|
/** Formats stored arguments and writes the output to the buffer. */
|
2017-09-17 15:32:57 +00:00
|
|
|
FMT_API void format(basic_buffer<Char> &buffer);
|
2016-06-07 23:23:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename Char, typename AF>
|
2017-07-19 02:40:48 +00:00
|
|
|
void printf_context<Char, AF>::parse_flags(format_specs &spec, iterator &it) {
|
2016-06-07 23:23:32 +00:00
|
|
|
for (;;) {
|
2017-07-19 02:40:48 +00:00
|
|
|
switch (*it++) {
|
2016-06-07 23:23:32 +00:00
|
|
|
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:
|
2017-07-19 02:40:48 +00:00
|
|
|
--it;
|
2016-06-07 23:23:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Char, typename AF>
|
2016-12-29 17:07:39 +00:00
|
|
|
typename printf_context<Char, AF>::format_arg printf_context<Char, AF>::get_arg(
|
2017-07-19 02:40:48 +00:00
|
|
|
iterator it, unsigned arg_index) {
|
|
|
|
(void)it;
|
2017-11-19 15:36:01 +00:00
|
|
|
if (arg_index == std::numeric_limits<unsigned>::max())
|
2017-11-26 17:29:55 +00:00
|
|
|
return this->do_get_arg(this->next_arg_id());
|
2017-11-19 15:36:01 +00:00
|
|
|
return Base::get_arg(arg_index - 1);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Char, typename AF>
|
2016-11-07 00:11:24 +00:00
|
|
|
unsigned printf_context<Char, AF>::parse_header(
|
2017-07-19 02:40:48 +00:00
|
|
|
iterator &it, format_specs &spec) {
|
2016-06-07 23:23:32 +00:00
|
|
|
unsigned arg_index = std::numeric_limits<unsigned>::max();
|
2017-07-19 02:40:48 +00:00
|
|
|
Char c = *it;
|
2016-06-07 23:23:32 +00:00
|
|
|
if (c >= '0' && c <= '9') {
|
|
|
|
// Parse an argument index (if followed by '$') or a width possibly
|
|
|
|
// preceded with '0' flag(s).
|
2017-10-21 15:37:52 +00:00
|
|
|
internal::error_handler eh;
|
|
|
|
unsigned value = parse_nonnegative_int(it, eh);
|
2017-07-19 02:40:48 +00:00
|
|
|
if (*it == '$') { // value is an argument index
|
|
|
|
++it;
|
2016-06-07 23:23:32 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-19 02:40:48 +00:00
|
|
|
parse_flags(spec, it);
|
2016-06-07 23:23:32 +00:00
|
|
|
// Parse width.
|
2017-07-19 02:40:48 +00:00
|
|
|
if (*it >= '0' && *it <= '9') {
|
2017-10-21 15:37:52 +00:00
|
|
|
internal::error_handler eh;
|
|
|
|
spec.width_ = parse_nonnegative_int(it, eh);
|
2017-07-19 02:40:48 +00:00
|
|
|
} else if (*it == '*') {
|
|
|
|
++it;
|
|
|
|
spec.width_ = visit(internal::PrintfWidthHandler<Char>(spec), get_arg(it));
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
return arg_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Char, typename AF>
|
2017-09-17 15:32:57 +00:00
|
|
|
void printf_context<Char, AF>::format(basic_buffer<Char> &buffer) {
|
|
|
|
Base &base = *this;
|
|
|
|
auto start = iterator(base);
|
2017-07-19 02:40:48 +00:00
|
|
|
auto it = start;
|
|
|
|
using internal::pointer_from;
|
|
|
|
while (*it) {
|
|
|
|
Char c = *it++;
|
2016-06-07 23:23:32 +00:00
|
|
|
if (c != '%') continue;
|
2017-07-19 02:40:48 +00:00
|
|
|
if (*it == c) {
|
|
|
|
buffer.append(pointer_from(start), pointer_from(it));
|
|
|
|
start = ++it;
|
2016-06-07 23:23:32 +00:00
|
|
|
continue;
|
|
|
|
}
|
2017-07-19 02:40:48 +00:00
|
|
|
buffer.append(pointer_from(start), pointer_from(it) - 1);
|
2016-06-07 23:23:32 +00:00
|
|
|
|
2017-01-28 12:51:35 +00:00
|
|
|
format_specs spec;
|
2016-06-07 23:23:32 +00:00
|
|
|
spec.align_ = ALIGN_RIGHT;
|
|
|
|
|
|
|
|
// Parse argument index, flags and width.
|
2017-07-19 02:40:48 +00:00
|
|
|
unsigned arg_index = parse_header(it, spec);
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
// Parse precision.
|
2017-07-19 02:40:48 +00:00
|
|
|
if (*it == '.') {
|
|
|
|
++it;
|
|
|
|
if ('0' <= *it && *it <= '9') {
|
2017-10-21 15:37:52 +00:00
|
|
|
internal::error_handler eh;
|
|
|
|
spec.precision_ = static_cast<int>(parse_nonnegative_int(it, eh));
|
2017-07-19 02:40:48 +00:00
|
|
|
} else if (*it == '*') {
|
|
|
|
++it;
|
|
|
|
spec.precision_ =
|
|
|
|
visit(internal::PrintfPrecisionHandler(), get_arg(it));
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-19 02:40:48 +00:00
|
|
|
format_arg arg = get_arg(it, 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') {
|
2017-12-09 14:19:15 +00:00
|
|
|
if (arg.is_arithmetic())
|
2016-06-07 23:23:32 +00:00
|
|
|
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;
|
2017-07-19 02:40:48 +00:00
|
|
|
switch (*it++) {
|
2016-06-07 23:23:32 +00:00
|
|
|
case 'h':
|
2017-07-19 02:40:48 +00:00
|
|
|
if (*it == 'h')
|
|
|
|
convert_arg<signed char>(arg, *++it);
|
2016-06-07 23:23:32 +00:00
|
|
|
else
|
2017-07-19 02:40:48 +00:00
|
|
|
convert_arg<short>(arg, *it);
|
2016-06-07 23:23:32 +00:00
|
|
|
break;
|
|
|
|
case 'l':
|
2017-07-19 02:40:48 +00:00
|
|
|
if (*it == 'l')
|
2017-08-26 16:09:43 +00:00
|
|
|
convert_arg<long long>(arg, *++it);
|
2016-06-07 23:23:32 +00:00
|
|
|
else
|
2017-07-19 02:40:48 +00:00
|
|
|
convert_arg<long>(arg, *it);
|
2016-06-07 23:23:32 +00:00
|
|
|
break;
|
|
|
|
case 'j':
|
2017-07-19 02:40:48 +00:00
|
|
|
convert_arg<intmax_t>(arg, *it);
|
2016-06-07 23:23:32 +00:00
|
|
|
break;
|
|
|
|
case 'z':
|
2017-07-19 02:40:48 +00:00
|
|
|
convert_arg<std::size_t>(arg, *it);
|
2016-06-07 23:23:32 +00:00
|
|
|
break;
|
|
|
|
case 't':
|
2017-07-19 02:40:48 +00:00
|
|
|
convert_arg<std::ptrdiff_t>(arg, *it);
|
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:
|
2017-07-19 02:40:48 +00:00
|
|
|
--it;
|
|
|
|
convert_arg<void>(arg, *it);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parse type.
|
2017-07-19 02:40:48 +00:00
|
|
|
if (!*it)
|
2016-08-25 15:38:07 +00:00
|
|
|
FMT_THROW(format_error("invalid format string"));
|
2017-07-19 02:40:48 +00:00
|
|
|
spec.type_ = static_cast<char>(*it++);
|
2016-12-11 21:22:45 +00:00
|
|
|
if (arg.is_integral()) {
|
2016-06-07 23:23:32 +00:00
|
|
|
// Normalize type.
|
|
|
|
switch (spec.type_) {
|
|
|
|
case 'i': case 'u':
|
|
|
|
spec.type_ = 'd';
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
// TODO: handle wchar_t
|
2016-12-29 17:07:39 +00:00
|
|
|
visit(internal::CharConverter<printf_context<Char, AF>>(arg), arg);
|
2016-06-07 23:23:32 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-19 02:40:48 +00:00
|
|
|
start = it;
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
// Format argument.
|
2017-12-02 17:44:48 +00:00
|
|
|
visit(AF(buffer, spec, *this), arg);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
2017-07-19 02:40:48 +00:00
|
|
|
buffer.append(pointer_from(start), pointer_from(it));
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Char>
|
2017-07-19 02:40:48 +00:00
|
|
|
void printf(basic_buffer<Char> &buf, basic_string_view<Char> format,
|
2017-12-03 15:32:04 +00:00
|
|
|
basic_format_args<printf_context<Char>> args) {
|
2017-09-17 15:32:57 +00:00
|
|
|
printf_context<Char>(format, args).format(buf);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
2017-12-03 15:32:04 +00:00
|
|
|
typedef basic_format_args<printf_context<char>> printf_args;
|
2016-12-11 21:22:45 +00:00
|
|
|
|
2017-07-19 02:40:48 +00:00
|
|
|
inline std::string vsprintf(string_view format, printf_args args) {
|
2017-02-18 17:13:12 +00:00
|
|
|
memory_buffer buffer;
|
2017-02-14 21:29:47 +00:00
|
|
|
printf(buffer, format, args);
|
|
|
|
return to_string(buffer);
|
2016-08-27 00:23:13 +00:00
|
|
|
}
|
|
|
|
|
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>
|
2017-07-19 02:40:48 +00:00
|
|
|
inline std::string sprintf(string_view format_str, const Args & ... args) {
|
2017-02-05 14:41:39 +00:00
|
|
|
return vsprintf(format_str, make_args<printf_context<char>>(args...));
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
2016-12-11 21:22:45 +00:00
|
|
|
inline std::wstring vsprintf(
|
2017-12-03 15:32:04 +00:00
|
|
|
wstring_view format, basic_format_args<printf_context<wchar_t>> args) {
|
2017-02-18 17:13:12 +00:00
|
|
|
wmemory_buffer buffer;
|
2017-02-14 21:29:47 +00:00
|
|
|
printf(buffer, format, args);
|
|
|
|
return to_string(buffer);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
2016-08-27 00:23:13 +00:00
|
|
|
|
|
|
|
template <typename... Args>
|
2017-07-19 02:40:48 +00:00
|
|
|
inline std::wstring sprintf(wstring_view format_str, const Args & ... args) {
|
2017-02-05 14:41:39 +00:00
|
|
|
auto vargs = make_args<printf_context<wchar_t>>(args...);
|
2016-08-27 00:23:13 +00:00
|
|
|
return vsprintf(format_str, vargs);
|
|
|
|
}
|
|
|
|
|
2017-12-17 16:36:19 +00:00
|
|
|
inline int vfprintf(std::FILE *f, string_view format, printf_args args) {
|
|
|
|
memory_buffer buffer;
|
|
|
|
printf(buffer, format, args);
|
|
|
|
std::size_t size = buffer.size();
|
|
|
|
return std::fwrite(
|
|
|
|
buffer.data(), 1, size, f) < size ? -1 : static_cast<int>(size);
|
|
|
|
}
|
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>
|
2017-07-19 02:40:48 +00:00
|
|
|
inline int fprintf(std::FILE *f, string_view format_str, const Args & ... args) {
|
2017-02-05 14:41:39 +00:00
|
|
|
auto vargs = make_args<printf_context<char>>(args...);
|
2016-08-27 00:23:13 +00:00
|
|
|
return vfprintf(f, format_str, vargs);
|
|
|
|
}
|
|
|
|
|
2017-07-19 02:40:48 +00:00
|
|
|
inline int vprintf(string_view format, printf_args 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>
|
2017-07-19 02:40:48 +00:00
|
|
|
inline int printf(string_view format_str, const Args & ... args) {
|
2017-02-05 14:41:39 +00:00
|
|
|
return vprintf(format_str, make_args<printf_context<char>>(args...));
|
2016-08-27 00:23:13 +00:00
|
|
|
}
|
|
|
|
|
2017-07-19 02:40:48 +00:00
|
|
|
inline int vfprintf(std::ostream &os, string_view format_str, printf_args args) {
|
2017-02-18 17:13:12 +00:00
|
|
|
memory_buffer buffer;
|
2017-02-14 21:29:47 +00:00
|
|
|
printf(buffer, format_str, args);
|
|
|
|
internal::write(os, buffer);
|
|
|
|
return static_cast<int>(buffer.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>
|
2017-07-19 02:40:48 +00:00
|
|
|
inline int fprintf(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
|
|
|
auto vargs = make_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_
|