Updated cppformat to fix issue #110
This commit is contained in:
parent
83d47aa645
commit
1c13f5d7ff
@ -35,11 +35,18 @@
|
|||||||
#include <cmath>
|
#include <cmath>
|
||||||
#include <cstdarg>
|
#include <cstdarg>
|
||||||
|
|
||||||
#ifdef _WIN32
|
#if defined(_WIN32) && defined(__MINGW32__)
|
||||||
# ifdef __MINGW32__
|
|
||||||
# include <cstring>
|
# include <cstring>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if FMT_USE_WINDOWS_H
|
||||||
|
# if defined(NOMINMAX) || defined(FMT_WIN_MINMAX)
|
||||||
# include <windows.h>
|
# include <windows.h>
|
||||||
|
# else
|
||||||
|
# define NOMINMAX
|
||||||
|
# include <windows.h>
|
||||||
|
# undef NOMINMAX
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
using fmt::internal::Arg;
|
using fmt::internal::Arg;
|
||||||
@ -88,13 +95,14 @@ using fmt::internal::Arg;
|
|||||||
|
|
||||||
// Dummy implementations of strerror_r and strerror_s called if corresponding
|
// Dummy implementations of strerror_r and strerror_s called if corresponding
|
||||||
// system functions are not available.
|
// system functions are not available.
|
||||||
static inline fmt::internal::None<> strerror_r(int, char *, ...) {
|
static inline fmt::internal::Null<> strerror_r(int, char *, ...) {
|
||||||
return fmt::internal::None<>();
|
return fmt::internal::Null<>();
|
||||||
}
|
}
|
||||||
static inline fmt::internal::None<> strerror_s(char *, std::size_t, ...) {
|
static inline fmt::internal::Null<> strerror_s(char *, std::size_t, ...) {
|
||||||
return fmt::internal::None<>();
|
return fmt::internal::Null<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace fmt {
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
#ifndef _MSC_VER
|
#ifndef _MSC_VER
|
||||||
@ -125,6 +133,9 @@ struct IntChecker {
|
|||||||
unsigned max = INT_MAX;
|
unsigned max = INT_MAX;
|
||||||
return value <= max;
|
return value <= max;
|
||||||
}
|
}
|
||||||
|
static bool fits_in_int(bool) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
@ -150,7 +161,7 @@ typedef void (*FormatFunc)(fmt::Writer &, int, fmt::StringRef);
|
|||||||
// Buffer should be at least of size 1.
|
// Buffer should be at least of size 1.
|
||||||
int safe_strerror(
|
int safe_strerror(
|
||||||
int error_code, char *&buffer, std::size_t buffer_size) FMT_NOEXCEPT{
|
int error_code, char *&buffer, std::size_t buffer_size) FMT_NOEXCEPT{
|
||||||
assert(buffer != 0 && buffer_size != 0);
|
FMT_ASSERT(buffer != 0 && buffer_size != 0, "invalid buffer");
|
||||||
|
|
||||||
class StrError {
|
class StrError {
|
||||||
private:
|
private:
|
||||||
@ -177,7 +188,7 @@ int safe_strerror(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Handle the case when strerror_r is not available.
|
// Handle the case when strerror_r is not available.
|
||||||
int handle(fmt::internal::None<>) {
|
int handle(fmt::internal::Null<>) {
|
||||||
return fallback(strerror_s(buffer_, buffer_size_, error_code_));
|
return fallback(strerror_s(buffer_, buffer_size_, error_code_));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -189,7 +200,7 @@ int safe_strerror(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Fallback to strerror if strerror_r and strerror_s are not available.
|
// Fallback to strerror if strerror_r and strerror_s are not available.
|
||||||
int fallback(fmt::internal::None<>) {
|
int fallback(fmt::internal::Null<>) {
|
||||||
errno = 0;
|
errno = 0;
|
||||||
buffer_ = strerror(error_code_);
|
buffer_ = strerror(error_code_);
|
||||||
return errno;
|
return errno;
|
||||||
@ -199,7 +210,10 @@ int safe_strerror(
|
|||||||
StrError(int error_code, char *&buffer, std::size_t buffer_size)
|
StrError(int error_code, char *&buffer, std::size_t buffer_size)
|
||||||
: error_code_(error_code), buffer_(buffer), buffer_size_(buffer_size) {}
|
: error_code_(error_code), buffer_(buffer), buffer_size_(buffer_size) {}
|
||||||
|
|
||||||
int run() { return handle(strerror_r(error_code_, buffer_, buffer_size_)); }
|
int run() {
|
||||||
|
strerror_r(0, 0, ""); // Suppress a warning about unused strerror_r.
|
||||||
|
return handle(strerror_r(error_code_, buffer_, buffer_size_));
|
||||||
|
}
|
||||||
};
|
};
|
||||||
return StrError(error_code, buffer, buffer_size).run();
|
return StrError(error_code, buffer, buffer_size).run();
|
||||||
}
|
}
|
||||||
@ -236,7 +250,9 @@ void report_error(FormatFunc func,
|
|||||||
class IsZeroInt : public fmt::internal::ArgVisitor<IsZeroInt, bool> {
|
class IsZeroInt : public fmt::internal::ArgVisitor<IsZeroInt, bool> {
|
||||||
public:
|
public:
|
||||||
template <typename T>
|
template <typename T>
|
||||||
bool visit_any_int(T value) { return value == 0; }
|
bool visit_any_int(T value) {
|
||||||
|
return value == 0;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// Parses an unsigned integer advancing s to the end of the parsed input.
|
// Parses an unsigned integer advancing s to the end of the parsed input.
|
||||||
@ -259,6 +275,11 @@ int parse_nonnegative_int(const Char *&s) {
|
|||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename Char>
|
||||||
|
inline bool is_name_start(Char c) {
|
||||||
|
return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || '_' == c;
|
||||||
|
}
|
||||||
|
|
||||||
inline void require_numeric_argument(const Arg &arg, char spec) {
|
inline void require_numeric_argument(const Arg &arg, char spec) {
|
||||||
if (arg.type > Arg::LAST_NUMERIC_TYPE) {
|
if (arg.type > Arg::LAST_NUMERIC_TYPE) {
|
||||||
std::string message =
|
std::string message =
|
||||||
@ -344,17 +365,20 @@ class ArgConverter : public fmt::internal::ArgVisitor<ArgConverter<T>, void> {
|
|||||||
if (is_signed) {
|
if (is_signed) {
|
||||||
arg_.type = Arg::INT;
|
arg_.type = Arg::INT;
|
||||||
arg_.int_value = static_cast<int>(static_cast<T>(value));
|
arg_.int_value = static_cast<int>(static_cast<T>(value));
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
arg_.type = Arg::UINT;
|
arg_.type = Arg::UINT;
|
||||||
arg_.uint_value = static_cast<unsigned>(
|
arg_.uint_value = static_cast<unsigned>(
|
||||||
static_cast<typename fmt::internal::MakeUnsigned<T>::Type>(value));
|
static_cast<typename fmt::internal::MakeUnsigned<T>::Type>(value));
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
if (is_signed) {
|
if (is_signed) {
|
||||||
arg_.type = Arg::LONG_LONG;
|
arg_.type = Arg::LONG_LONG;
|
||||||
arg_.long_long_value =
|
arg_.long_long_value =
|
||||||
static_cast<typename fmt::internal::MakeUnsigned<U>::Type>(value);
|
static_cast<typename fmt::internal::MakeUnsigned<U>::Type>(value);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
arg_.type = Arg::ULONG_LONG;
|
arg_.type = Arg::ULONG_LONG;
|
||||||
arg_.ulong_long_value =
|
arg_.ulong_long_value =
|
||||||
static_cast<typename fmt::internal::MakeUnsigned<U>::Type>(value);
|
static_cast<typename fmt::internal::MakeUnsigned<U>::Type>(value);
|
||||||
@ -379,24 +403,152 @@ class CharConverter : public fmt::internal::ArgVisitor<CharConverter, void> {
|
|||||||
arg_.int_value = static_cast<char>(value);
|
arg_.int_value = static_cast<char>(value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// This function template is used to prevent compile errors when handling
|
|
||||||
// incompatible string arguments, e.g. handling a wide string in a narrow
|
|
||||||
// string formatter.
|
|
||||||
template <typename Char>
|
|
||||||
Arg::StringValue<Char> ignore_incompatible_str(Arg::StringValue<wchar_t>);
|
|
||||||
|
|
||||||
template <>
|
|
||||||
inline Arg::StringValue<char> ignore_incompatible_str(
|
|
||||||
Arg::StringValue<wchar_t>) { return Arg::StringValue<char>(); }
|
|
||||||
|
|
||||||
template <>
|
|
||||||
inline Arg::StringValue<wchar_t> ignore_incompatible_str(
|
|
||||||
Arg::StringValue<wchar_t> s) { return s; }
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
namespace internal {
|
||||||
|
|
||||||
|
template <typename Impl, typename Char>
|
||||||
|
class BasicArgFormatter : public ArgVisitor<Impl, void> {
|
||||||
|
private:
|
||||||
|
BasicWriter<Char> &writer_;
|
||||||
|
FormatSpec &spec_;
|
||||||
|
|
||||||
|
FMT_DISALLOW_COPY_AND_ASSIGN(BasicArgFormatter);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
BasicWriter<Char> &writer() {
|
||||||
|
return writer_;
|
||||||
|
}
|
||||||
|
const FormatSpec &spec() const {
|
||||||
|
return spec_;
|
||||||
|
}
|
||||||
|
|
||||||
|
public:
|
||||||
|
BasicArgFormatter(BasicWriter<Char> &w, FormatSpec &s)
|
||||||
|
: writer_(w), spec_(s) {}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
void visit_any_int(T value) {
|
||||||
|
writer_.write_int(value, spec_);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
void visit_any_double(T value) {
|
||||||
|
writer_.write_double(value, spec_);
|
||||||
|
}
|
||||||
|
|
||||||
|
void visit_bool(bool value) {
|
||||||
|
if (spec_.type_) {
|
||||||
|
writer_.write_int(value, spec_);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const char *str_value = value ? "true" : "false";
|
||||||
|
Arg::StringValue<char> str = { str_value, strlen(str_value) };
|
||||||
|
writer_.write_str(str, spec_);
|
||||||
|
}
|
||||||
|
|
||||||
|
void visit_char(int value) {
|
||||||
|
if (spec_.type_ && spec_.type_ != 'c') {
|
||||||
|
spec_.flags_ |= CHAR_FLAG;
|
||||||
|
writer_.write_int(value, spec_);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (spec_.align_ == ALIGN_NUMERIC || spec_.flags_ != 0)
|
||||||
|
FMT_THROW(FormatError("invalid format specifier for char"));
|
||||||
|
typedef typename BasicWriter<Char>::CharPtr CharPtr;
|
||||||
|
Char fill = internal::CharTraits<Char>::cast(spec_.fill());
|
||||||
|
CharPtr out = CharPtr();
|
||||||
|
if (spec_.width_ > 1) {
|
||||||
|
out = writer_.grow_buffer(spec_.width_);
|
||||||
|
if (spec_.align_ == ALIGN_RIGHT) {
|
||||||
|
std::fill_n(out, spec_.width_ - 1, fill);
|
||||||
|
out += spec_.width_ - 1;
|
||||||
|
}
|
||||||
|
else if (spec_.align_ == ALIGN_CENTER) {
|
||||||
|
out = writer_.fill_padding(out, spec_.width_, 1, fill);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
std::fill_n(out + 1, spec_.width_ - 1, fill);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
out = writer_.grow_buffer(1);
|
||||||
|
}
|
||||||
|
*out = internal::CharTraits<Char>::cast(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
void visit_string(Arg::StringValue<char> value) {
|
||||||
|
writer_.write_str(value, spec_);
|
||||||
|
}
|
||||||
|
|
||||||
|
using ArgVisitor<Impl, void>::visit_wstring;
|
||||||
|
|
||||||
|
void visit_wstring(Arg::StringValue<Char> value) {
|
||||||
|
writer_.write_str(value, spec_);
|
||||||
|
}
|
||||||
|
|
||||||
|
void visit_pointer(const void *value) {
|
||||||
|
if (spec_.type_ && spec_.type_ != 'p')
|
||||||
|
report_unknown_type(spec_.type_, "pointer");
|
||||||
|
spec_.flags_ = HASH_FLAG;
|
||||||
|
spec_.type_ = 'x';
|
||||||
|
writer_.write_int(reinterpret_cast<uintptr_t>(value), spec_);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// An argument formatter.
|
||||||
|
template <typename Char>
|
||||||
|
class ArgFormatter : public BasicArgFormatter<ArgFormatter<Char>, Char> {
|
||||||
|
private:
|
||||||
|
BasicFormatter<Char> &formatter_;
|
||||||
|
const Char *format_;
|
||||||
|
|
||||||
|
public:
|
||||||
|
ArgFormatter(BasicFormatter<Char> &f, FormatSpec &s, const Char *fmt)
|
||||||
|
: BasicArgFormatter<ArgFormatter<Char>, Char>(f.writer(), s),
|
||||||
|
formatter_(f), format_(fmt) {}
|
||||||
|
|
||||||
|
void visit_custom(Arg::CustomValue c) {
|
||||||
|
c.format(&formatter_, c.value, &format_);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename Char>
|
||||||
|
class PrintfArgFormatter :
|
||||||
|
public BasicArgFormatter<PrintfArgFormatter<Char>, Char> {
|
||||||
|
public:
|
||||||
|
PrintfArgFormatter(BasicWriter<Char> &w, FormatSpec &s)
|
||||||
|
: BasicArgFormatter<PrintfArgFormatter<Char>, Char>(w, s) {}
|
||||||
|
|
||||||
|
void visit_char(int value) {
|
||||||
|
const FormatSpec &spec = this->spec();
|
||||||
|
BasicWriter<Char> &writer = this->writer();
|
||||||
|
if (spec.type_ && spec.type_ != 'c')
|
||||||
|
writer.write_int(value, spec);
|
||||||
|
typedef typename BasicWriter<Char>::CharPtr CharPtr;
|
||||||
|
CharPtr out = CharPtr();
|
||||||
|
if (spec.width_ > 1) {
|
||||||
|
Char fill = ' ';
|
||||||
|
out = writer.grow_buffer(spec.width_);
|
||||||
|
if (spec.align_ != ALIGN_LEFT) {
|
||||||
|
std::fill_n(out, spec.width_ - 1, fill);
|
||||||
|
out += spec.width_ - 1;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
std::fill_n(out + 1, spec.width_ - 1, fill);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
out = writer.grow_buffer(1);
|
||||||
|
}
|
||||||
|
*out = static_cast<Char>(value);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
} // namespace internal
|
||||||
|
} // namespace fmt
|
||||||
|
|
||||||
FMT_FUNC void fmt::SystemError::init(
|
FMT_FUNC void fmt::SystemError::init(
|
||||||
int err_code, StringRef format_str, ArgList args) {
|
int err_code, CStringRef format_str, ArgList args) {
|
||||||
error_code_ = err_code;
|
error_code_ = err_code;
|
||||||
MemoryWriter w;
|
MemoryWriter w;
|
||||||
internal::format_system_error(w, err_code, format(format_str, args));
|
internal::format_system_error(w, err_code, format(format_str, args));
|
||||||
@ -477,19 +629,20 @@ FMT_FUNC void fmt::internal::report_unknown_type(char code, const char *type) {
|
|||||||
static_cast<unsigned>(code), type)));
|
static_cast<unsigned>(code), type)));
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _WIN32
|
#if FMT_USE_WINDOWS_H
|
||||||
|
|
||||||
FMT_FUNC fmt::internal::UTF8ToUTF16::UTF8ToUTF16(fmt::StringRef s) {
|
FMT_FUNC fmt::internal::UTF8ToUTF16::UTF8ToUTF16(fmt::StringRef s) {
|
||||||
int length = MultiByteToWideChar(
|
int length = MultiByteToWideChar(
|
||||||
CP_UTF8, MB_ERR_INVALID_CHARS, s.c_str(), -1, 0, 0);
|
CP_UTF8, MB_ERR_INVALID_CHARS, s.data(), s.size(), 0, 0);
|
||||||
static const char ERROR_MSG[] = "cannot convert string from UTF-8 to UTF-16";
|
static const char ERROR_MSG[] = "cannot convert string from UTF-8 to UTF-16";
|
||||||
if (length == 0)
|
if (length == 0)
|
||||||
FMT_THROW(WindowsError(GetLastError(), ERROR_MSG));
|
FMT_THROW(WindowsError(GetLastError(), ERROR_MSG));
|
||||||
buffer_.resize(length);
|
buffer_.resize(length + 1);
|
||||||
length = MultiByteToWideChar(
|
length = MultiByteToWideChar(
|
||||||
CP_UTF8, MB_ERR_INVALID_CHARS, s.c_str(), -1, &buffer_[0], length);
|
CP_UTF8, MB_ERR_INVALID_CHARS, s.data(), s.size(), &buffer_[0], length);
|
||||||
if (length == 0)
|
if (length == 0)
|
||||||
FMT_THROW(WindowsError(GetLastError(), ERROR_MSG));
|
FMT_THROW(WindowsError(GetLastError(), ERROR_MSG));
|
||||||
|
buffer_[length] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
FMT_FUNC fmt::internal::UTF16ToUTF8::UTF16ToUTF8(fmt::WStringRef s) {
|
FMT_FUNC fmt::internal::UTF16ToUTF8::UTF16ToUTF8(fmt::WStringRef s) {
|
||||||
@ -500,19 +653,20 @@ FMT_FUNC fmt::internal::UTF16ToUTF8::UTF16ToUTF8(fmt::WStringRef s) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
FMT_FUNC int fmt::internal::UTF16ToUTF8::convert(fmt::WStringRef s) {
|
FMT_FUNC int fmt::internal::UTF16ToUTF8::convert(fmt::WStringRef s) {
|
||||||
int length = WideCharToMultiByte(CP_UTF8, 0, s.c_str(), -1, 0, 0, 0, 0);
|
int length = WideCharToMultiByte(CP_UTF8, 0, s.data(), s.size(), 0, 0, 0, 0);
|
||||||
if (length == 0)
|
if (length == 0)
|
||||||
return GetLastError();
|
return GetLastError();
|
||||||
buffer_.resize(length);
|
buffer_.resize(length + 1);
|
||||||
length = WideCharToMultiByte(
|
length = WideCharToMultiByte(
|
||||||
CP_UTF8, 0, s.c_str(), -1, &buffer_[0], length, 0, 0);
|
CP_UTF8, 0, s.data(), s.size(), &buffer_[0], length, 0, 0);
|
||||||
if (length == 0)
|
if (length == 0)
|
||||||
return GetLastError();
|
return GetLastError();
|
||||||
|
buffer_[length] = 0;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
FMT_FUNC void fmt::WindowsError::init(
|
FMT_FUNC void fmt::WindowsError::init(
|
||||||
int err_code, StringRef format_str, ArgList args) {
|
int err_code, CStringRef format_str, ArgList args) {
|
||||||
error_code_ = err_code;
|
error_code_ = err_code;
|
||||||
MemoryWriter w;
|
MemoryWriter w;
|
||||||
internal::format_windows_error(w, err_code, format(format_str, args));
|
internal::format_windows_error(w, err_code, format(format_str, args));
|
||||||
@ -520,7 +674,40 @@ FMT_FUNC void fmt::WindowsError::init(
|
|||||||
base = std::runtime_error(w.str());
|
base = std::runtime_error(w.str());
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
FMT_FUNC void fmt::internal::format_windows_error(
|
||||||
|
fmt::Writer &out, int error_code,
|
||||||
|
fmt::StringRef message) FMT_NOEXCEPT{
|
||||||
|
class String {
|
||||||
|
private:
|
||||||
|
LPWSTR str_;
|
||||||
|
|
||||||
|
public:
|
||||||
|
String() : str_() {}
|
||||||
|
~String() {
|
||||||
|
LocalFree(str_);
|
||||||
|
}
|
||||||
|
LPWSTR *ptr() {
|
||||||
|
return &str_;
|
||||||
|
}
|
||||||
|
LPCWSTR c_str() const { return str_; }
|
||||||
|
};
|
||||||
|
FMT_TRY{
|
||||||
|
String system_message;
|
||||||
|
if (FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
||||||
|
FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, 0,
|
||||||
|
error_code, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
|
||||||
|
reinterpret_cast<LPWSTR>(system_message.ptr()), 0, 0)) {
|
||||||
|
UTF16ToUTF8 utf8_message;
|
||||||
|
if (utf8_message.convert(system_message.c_str()) == ERROR_SUCCESS) {
|
||||||
|
out << message << ": " << utf8_message;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} FMT_CATCH(...) {}
|
||||||
|
format_error_code(out, error_code, message);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // FMT_USE_WINDOWS_H
|
||||||
|
|
||||||
FMT_FUNC void fmt::internal::format_system_error(
|
FMT_FUNC void fmt::internal::format_system_error(
|
||||||
fmt::Writer &out, int error_code,
|
fmt::Writer &out, int error_code,
|
||||||
@ -543,110 +730,52 @@ FMT_FUNC void fmt::internal::format_system_error(
|
|||||||
format_error_code(out, error_code, message);
|
format_error_code(out, error_code, message);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
FMT_FUNC void fmt::internal::format_windows_error(
|
|
||||||
fmt::Writer &out, int error_code,
|
|
||||||
fmt::StringRef message) FMT_NOEXCEPT {
|
|
||||||
class String {
|
|
||||||
private:
|
|
||||||
LPWSTR str_;
|
|
||||||
|
|
||||||
public:
|
|
||||||
String() : str_() {}
|
|
||||||
~String() { LocalFree(str_); }
|
|
||||||
LPWSTR *ptr() { return &str_; }
|
|
||||||
LPCWSTR c_str() const { return str_; }
|
|
||||||
};
|
|
||||||
FMT_TRY {
|
|
||||||
String system_message;
|
|
||||||
if (FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
|
||||||
FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, 0,
|
|
||||||
error_code, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
|
|
||||||
reinterpret_cast<LPWSTR>(system_message.ptr()), 0, 0)) {
|
|
||||||
UTF16ToUTF8 utf8_message;
|
|
||||||
if (utf8_message.convert(system_message.c_str()) == ERROR_SUCCESS) {
|
|
||||||
out << message << ": " << utf8_message;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} FMT_CATCH(...) {}
|
|
||||||
format_error_code(out, error_code, message);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// An argument formatter.
|
|
||||||
template <typename Char>
|
template <typename Char>
|
||||||
class fmt::internal::ArgFormatter :
|
void fmt::internal::ArgMap<Char>::init(const ArgList &args) {
|
||||||
public fmt::internal::ArgVisitor<fmt::internal::ArgFormatter<Char>, void> {
|
if (!map_.empty())
|
||||||
private:
|
return;
|
||||||
fmt::BasicFormatter<Char> &formatter_;
|
typedef internal::NamedArg<Char> NamedArg;
|
||||||
fmt::BasicWriter<Char> &writer_;
|
const NamedArg *named_arg = 0;
|
||||||
fmt::FormatSpec &spec_;
|
bool use_values =
|
||||||
const Char *format_;
|
args.type(ArgList::MAX_PACKED_ARGS - 1) == internal::Arg::NONE;
|
||||||
|
if (use_values) {
|
||||||
FMT_DISALLOW_COPY_AND_ASSIGN(ArgFormatter);
|
for (unsigned i = 0;/*nothing*/; ++i) {
|
||||||
|
internal::Arg::Type arg_type = args.type(i);
|
||||||
public:
|
switch (arg_type) {
|
||||||
ArgFormatter(
|
case internal::Arg::NONE:
|
||||||
fmt::BasicFormatter<Char> &f,fmt::FormatSpec &s, const Char *fmt)
|
return;
|
||||||
: formatter_(f), writer_(f.writer()), spec_(s), format_(fmt) {}
|
case internal::Arg::NAMED_ARG:
|
||||||
|
named_arg = static_cast<const NamedArg*>(args.values_[i].pointer);
|
||||||
template <typename T>
|
map_.insert(Pair(named_arg->name, *named_arg));
|
||||||
void visit_any_int(T value) { writer_.write_int(value, spec_); }
|
break;
|
||||||
|
default:
|
||||||
template <typename T>
|
/*nothing*/
|
||||||
void visit_any_double(T value) { writer_.write_double(value, spec_); }
|
;
|
||||||
|
}
|
||||||
void visit_char(int value) {
|
}
|
||||||
if (spec_.type_ && spec_.type_ != 'c') {
|
|
||||||
spec_.flags_ |= CHAR_FLAG;
|
|
||||||
writer_.write_int(value, spec_);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (spec_.align_ == ALIGN_NUMERIC || spec_.flags_ != 0)
|
for (unsigned i = 0; i != ArgList::MAX_PACKED_ARGS; ++i) {
|
||||||
FMT_THROW(FormatError("invalid format specifier for char"));
|
internal::Arg::Type arg_type = args.type(i);
|
||||||
typedef typename fmt::BasicWriter<Char>::CharPtr CharPtr;
|
if (arg_type == internal::Arg::NAMED_ARG) {
|
||||||
Char fill = static_cast<Char>(spec_.fill());
|
named_arg = static_cast<const NamedArg*>(args.args_[i].pointer);
|
||||||
if (spec_.precision_ == 0) {
|
map_.insert(Pair(named_arg->name, *named_arg));
|
||||||
std::fill_n(writer_.grow_buffer(spec_.width_), spec_.width_, fill);
|
}
|
||||||
|
}
|
||||||
|
for (unsigned i = ArgList::MAX_PACKED_ARGS;/*nothing*/; ++i) {
|
||||||
|
switch (args.args_[i].type) {
|
||||||
|
case internal::Arg::NONE:
|
||||||
return;
|
return;
|
||||||
|
case internal::Arg::NAMED_ARG:
|
||||||
|
named_arg = static_cast<const NamedArg*>(args.args_[i].pointer);
|
||||||
|
map_.insert(Pair(named_arg->name, *named_arg));
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
/*nothing*/
|
||||||
|
;
|
||||||
}
|
}
|
||||||
CharPtr out = CharPtr();
|
|
||||||
if (spec_.width_ > 1) {
|
|
||||||
out = writer_.grow_buffer(spec_.width_);
|
|
||||||
if (spec_.align_ == fmt::ALIGN_RIGHT) {
|
|
||||||
std::fill_n(out, spec_.width_ - 1, fill);
|
|
||||||
out += spec_.width_ - 1;
|
|
||||||
} else if (spec_.align_ == fmt::ALIGN_CENTER) {
|
|
||||||
out = writer_.fill_padding(out, spec_.width_, 1, fill);
|
|
||||||
} else {
|
|
||||||
std::fill_n(out + 1, spec_.width_ - 1, fill);
|
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
out = writer_.grow_buffer(1);
|
|
||||||
}
|
}
|
||||||
*out = static_cast<Char>(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
void visit_string(Arg::StringValue<char> value) {
|
|
||||||
writer_.write_str(value, spec_);
|
|
||||||
}
|
|
||||||
void visit_wstring(Arg::StringValue<wchar_t> value) {
|
|
||||||
writer_.write_str(ignore_incompatible_str<Char>(value), spec_);
|
|
||||||
}
|
|
||||||
|
|
||||||
void visit_pointer(const void *value) {
|
|
||||||
if (spec_.type_ && spec_.type_ != 'p')
|
|
||||||
fmt::internal::report_unknown_type(spec_.type_, "pointer");
|
|
||||||
spec_.flags_ = fmt::HASH_FLAG;
|
|
||||||
spec_.type_ = 'x';
|
|
||||||
writer_.write_int(reinterpret_cast<uintptr_t>(value), spec_);
|
|
||||||
}
|
|
||||||
|
|
||||||
void visit_custom(Arg::CustomValue c) {
|
|
||||||
c.format(&formatter_, c.value, &format_);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template <typename Char>
|
template <typename Char>
|
||||||
void fmt::internal::FixedBuffer<Char>::grow(std::size_t) {
|
void fmt::internal::FixedBuffer<Char>::grow(std::size_t) {
|
||||||
@ -675,6 +804,19 @@ void fmt::BasicWriter<Char>::write_str(
|
|||||||
write_str(str_value, str_size, spec);
|
write_str(str_value, str_size, spec);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename Char>
|
||||||
|
inline Arg fmt::BasicFormatter<Char>::get_arg(
|
||||||
|
BasicStringRef<Char> arg_name, const char *&error) {
|
||||||
|
if (check_no_auto_index(error)) {
|
||||||
|
map_.init(args());
|
||||||
|
const Arg *arg = map_.find(arg_name);
|
||||||
|
if (arg)
|
||||||
|
return *arg;
|
||||||
|
error = "argument not found";
|
||||||
|
}
|
||||||
|
return Arg();
|
||||||
|
}
|
||||||
|
|
||||||
template <typename Char>
|
template <typename Char>
|
||||||
inline Arg fmt::BasicFormatter<Char>::parse_arg_index(const Char *&s) {
|
inline Arg fmt::BasicFormatter<Char>::parse_arg_index(const Char *&s) {
|
||||||
const char *error = 0;
|
const char *error = 0;
|
||||||
@ -687,11 +829,34 @@ inline Arg fmt::BasicFormatter<Char>::parse_arg_index(const Char *&s) {
|
|||||||
return arg;
|
return arg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename Char>
|
||||||
|
inline Arg fmt::BasicFormatter<Char>::parse_arg_name(const Char *&s) {
|
||||||
|
assert(is_name_start(*s));
|
||||||
|
const Char *start = s;
|
||||||
|
Char c;
|
||||||
|
do {
|
||||||
|
c = *++s;
|
||||||
|
} while (is_name_start(c) || ('0' <= c && c <= '9'));
|
||||||
|
const char *error = 0;
|
||||||
|
Arg arg = get_arg(fmt::BasicStringRef<Char>(start, s - start), error);
|
||||||
|
if (error)
|
||||||
|
FMT_THROW(fmt::FormatError(error));
|
||||||
|
return arg;
|
||||||
|
}
|
||||||
|
|
||||||
FMT_FUNC Arg fmt::internal::FormatterBase::do_get_arg(
|
FMT_FUNC Arg fmt::internal::FormatterBase::do_get_arg(
|
||||||
unsigned arg_index, const char *&error) {
|
unsigned arg_index, const char *&error) {
|
||||||
Arg arg = args_[arg_index];
|
Arg arg = args_[arg_index];
|
||||||
if (arg.type == Arg::NONE)
|
switch (arg.type) {
|
||||||
|
case Arg::NONE:
|
||||||
error = "argument index out of range";
|
error = "argument index out of range";
|
||||||
|
break;
|
||||||
|
case Arg::NAMED_ARG:
|
||||||
|
arg = *static_cast<const internal::Arg*>(arg.pointer);
|
||||||
|
default:
|
||||||
|
/*nothing*/
|
||||||
|
;
|
||||||
|
}
|
||||||
return arg;
|
return arg;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -702,14 +867,19 @@ inline Arg fmt::internal::FormatterBase::next_arg(const char *&error) {
|
|||||||
return Arg();
|
return Arg();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline bool fmt::internal::FormatterBase::check_no_auto_index(
|
||||||
|
const char *&error) {
|
||||||
|
if (next_arg_index_ > 0) {
|
||||||
|
error = "cannot switch from automatic to manual argument indexing";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
next_arg_index_ = -1;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
inline Arg fmt::internal::FormatterBase::get_arg(
|
inline Arg fmt::internal::FormatterBase::get_arg(
|
||||||
unsigned arg_index, const char *&error) {
|
unsigned arg_index, const char *&error) {
|
||||||
if (next_arg_index_ <= 0) {
|
return check_no_auto_index(error) ? do_get_arg(arg_index, error) : Arg();
|
||||||
next_arg_index_ = -1;
|
|
||||||
return do_get_arg(arg_index, error);
|
|
||||||
}
|
|
||||||
error = "cannot switch from automatic to manual argument indexing";
|
|
||||||
return Arg();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Char>
|
template <typename Char>
|
||||||
@ -763,7 +933,8 @@ unsigned fmt::internal::PrintfFormatter<Char>::parse_header(
|
|||||||
if (*s == '$') { // value is an argument index
|
if (*s == '$') { // value is an argument index
|
||||||
++s;
|
++s;
|
||||||
arg_index = value;
|
arg_index = value;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
if (c == '0')
|
if (c == '0')
|
||||||
spec.fill_ = '0';
|
spec.fill_ = '0';
|
||||||
if (value != 0) {
|
if (value != 0) {
|
||||||
@ -778,7 +949,8 @@ unsigned fmt::internal::PrintfFormatter<Char>::parse_header(
|
|||||||
// Parse width.
|
// Parse width.
|
||||||
if (*s >= '0' && *s <= '9') {
|
if (*s >= '0' && *s <= '9') {
|
||||||
spec.width_ = parse_nonnegative_int(s);
|
spec.width_ = parse_nonnegative_int(s);
|
||||||
} else if (*s == '*') {
|
}
|
||||||
|
else if (*s == '*') {
|
||||||
++s;
|
++s;
|
||||||
spec.width_ = WidthHandler(spec).visit(get_arg(s));
|
spec.width_ = WidthHandler(spec).visit(get_arg(s));
|
||||||
}
|
}
|
||||||
@ -787,7 +959,7 @@ unsigned fmt::internal::PrintfFormatter<Char>::parse_header(
|
|||||||
|
|
||||||
template <typename Char>
|
template <typename Char>
|
||||||
void fmt::internal::PrintfFormatter<Char>::format(
|
void fmt::internal::PrintfFormatter<Char>::format(
|
||||||
BasicWriter<Char> &writer, BasicStringRef<Char> format_str,
|
BasicWriter<Char> &writer, BasicCStringRef<Char> format_str,
|
||||||
const ArgList &args) {
|
const ArgList &args) {
|
||||||
const Char *start = format_str.c_str();
|
const Char *start = format_str.c_str();
|
||||||
set_args(args);
|
set_args(args);
|
||||||
@ -813,7 +985,8 @@ void fmt::internal::PrintfFormatter<Char>::format(
|
|||||||
++s;
|
++s;
|
||||||
if ('0' <= *s && *s <= '9') {
|
if ('0' <= *s && *s <= '9') {
|
||||||
spec.precision_ = parse_nonnegative_int(s);
|
spec.precision_ = parse_nonnegative_int(s);
|
||||||
} else if (*s == '*') {
|
}
|
||||||
|
else if (*s == '*') {
|
||||||
++s;
|
++s;
|
||||||
spec.precision_ = PrecisionHandler().visit(get_arg(s));
|
spec.precision_ = PrecisionHandler().visit(get_arg(s));
|
||||||
}
|
}
|
||||||
@ -868,7 +1041,8 @@ void fmt::internal::PrintfFormatter<Char>::format(
|
|||||||
if (arg.type <= Arg::LAST_INTEGER_TYPE) {
|
if (arg.type <= Arg::LAST_INTEGER_TYPE) {
|
||||||
// Normalize type.
|
// Normalize type.
|
||||||
switch (spec.type_) {
|
switch (spec.type_) {
|
||||||
case 'i': case 'u':
|
case 'i':
|
||||||
|
case 'u':
|
||||||
spec.type_ = 'd';
|
spec.type_ = 'd';
|
||||||
break;
|
break;
|
||||||
case 'c':
|
case 'c':
|
||||||
@ -881,73 +1055,7 @@ void fmt::internal::PrintfFormatter<Char>::format(
|
|||||||
start = s;
|
start = s;
|
||||||
|
|
||||||
// Format argument.
|
// Format argument.
|
||||||
switch (arg.type) {
|
internal::PrintfArgFormatter<Char>(writer, spec).visit(arg);
|
||||||
case Arg::INT:
|
|
||||||
writer.write_int(arg.int_value, spec);
|
|
||||||
break;
|
|
||||||
case Arg::UINT:
|
|
||||||
writer.write_int(arg.uint_value, spec);
|
|
||||||
break;
|
|
||||||
case Arg::LONG_LONG:
|
|
||||||
writer.write_int(arg.long_long_value, spec);
|
|
||||||
break;
|
|
||||||
case Arg::ULONG_LONG:
|
|
||||||
writer.write_int(arg.ulong_long_value, spec);
|
|
||||||
break;
|
|
||||||
case Arg::CHAR: {
|
|
||||||
if (spec.type_ && spec.type_ != 'c')
|
|
||||||
writer.write_int(arg.int_value, spec);
|
|
||||||
typedef typename BasicWriter<Char>::CharPtr CharPtr;
|
|
||||||
CharPtr out = CharPtr();
|
|
||||||
if (spec.width_ > 1) {
|
|
||||||
Char fill = ' ';
|
|
||||||
out = writer.grow_buffer(spec.width_);
|
|
||||||
if (spec.align_ != ALIGN_LEFT) {
|
|
||||||
std::fill_n(out, spec.width_ - 1, fill);
|
|
||||||
out += spec.width_ - 1;
|
|
||||||
} else {
|
|
||||||
std::fill_n(out + 1, spec.width_ - 1, fill);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
out = writer.grow_buffer(1);
|
|
||||||
}
|
|
||||||
*out = static_cast<Char>(arg.int_value);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case Arg::DOUBLE:
|
|
||||||
writer.write_double(arg.double_value, spec);
|
|
||||||
break;
|
|
||||||
case Arg::LONG_DOUBLE:
|
|
||||||
writer.write_double(arg.long_double_value, spec);
|
|
||||||
break;
|
|
||||||
case Arg::CSTRING:
|
|
||||||
arg.string.size = 0;
|
|
||||||
writer.write_str(arg.string, spec);
|
|
||||||
break;
|
|
||||||
case Arg::STRING:
|
|
||||||
writer.write_str(arg.string, spec);
|
|
||||||
break;
|
|
||||||
case Arg::WSTRING:
|
|
||||||
writer.write_str(ignore_incompatible_str<Char>(arg.wstring), spec);
|
|
||||||
break;
|
|
||||||
case Arg::POINTER:
|
|
||||||
if (spec.type_ && spec.type_ != 'p')
|
|
||||||
internal::report_unknown_type(spec.type_, "pointer");
|
|
||||||
spec.flags_= HASH_FLAG;
|
|
||||||
spec.type_ = 'x';
|
|
||||||
writer.write_int(reinterpret_cast<uintptr_t>(arg.pointer), spec);
|
|
||||||
break;
|
|
||||||
case Arg::CUSTOM: {
|
|
||||||
if (spec.type_)
|
|
||||||
internal::report_unknown_type(spec.type_, "object");
|
|
||||||
const void *str_format = "s";
|
|
||||||
arg.custom.format(&writer, arg.custom.value, &str_format);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
assert(false);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
write(writer, start, s);
|
write(writer, start, s);
|
||||||
}
|
}
|
||||||
@ -989,7 +1097,8 @@ const Char *fmt::BasicFormatter<Char>::format(
|
|||||||
FMT_THROW(FormatError("invalid fill character '{'"));
|
FMT_THROW(FormatError("invalid fill character '{'"));
|
||||||
s += 2;
|
s += 2;
|
||||||
spec.fill_ = c;
|
spec.fill_ = c;
|
||||||
} else ++s;
|
}
|
||||||
|
else ++s;
|
||||||
if (spec.align_ == ALIGN_NUMERIC)
|
if (spec.align_ == ALIGN_NUMERIC)
|
||||||
require_numeric_argument(arg, '=');
|
require_numeric_argument(arg, '=');
|
||||||
break;
|
break;
|
||||||
@ -1019,17 +1128,49 @@ const Char *fmt::BasicFormatter<Char>::format(
|
|||||||
++s;
|
++s;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse width and zero flag.
|
// Parse zero flag.
|
||||||
if ('0' <= *s && *s <= '9') {
|
|
||||||
if (*s == '0') {
|
if (*s == '0') {
|
||||||
require_numeric_argument(arg, '0');
|
require_numeric_argument(arg, '0');
|
||||||
spec.align_ = ALIGN_NUMERIC;
|
spec.align_ = ALIGN_NUMERIC;
|
||||||
spec.fill_ = '0';
|
spec.fill_ = '0';
|
||||||
|
++s;
|
||||||
}
|
}
|
||||||
// Zero may be parsed again as a part of the width, but it is simpler
|
|
||||||
// and more efficient than checking if the next char is a digit.
|
// Parse width.
|
||||||
|
if ('0' <= *s && *s <= '9') {
|
||||||
spec.width_ = parse_nonnegative_int(s);
|
spec.width_ = parse_nonnegative_int(s);
|
||||||
}
|
}
|
||||||
|
else if (*s == '{') {
|
||||||
|
++s;
|
||||||
|
Arg width_arg = is_name_start(*s) ?
|
||||||
|
parse_arg_name(s) : parse_arg_index(s);
|
||||||
|
if (*s++ != '}')
|
||||||
|
FMT_THROW(FormatError("invalid format string"));
|
||||||
|
ULongLong value = 0;
|
||||||
|
switch (width_arg.type) {
|
||||||
|
case Arg::INT:
|
||||||
|
if (width_arg.int_value < 0)
|
||||||
|
FMT_THROW(FormatError("negative width"));
|
||||||
|
value = width_arg.int_value;
|
||||||
|
break;
|
||||||
|
case Arg::UINT:
|
||||||
|
value = width_arg.uint_value;
|
||||||
|
break;
|
||||||
|
case Arg::LONG_LONG:
|
||||||
|
if (width_arg.long_long_value < 0)
|
||||||
|
FMT_THROW(FormatError("negative width"));
|
||||||
|
value = width_arg.long_long_value;
|
||||||
|
break;
|
||||||
|
case Arg::ULONG_LONG:
|
||||||
|
value = width_arg.ulong_long_value;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
FMT_THROW(FormatError("width is not integer"));
|
||||||
|
}
|
||||||
|
if (value > INT_MAX)
|
||||||
|
FMT_THROW(FormatError("number is too big"));
|
||||||
|
spec.width_ = static_cast<int>(value);
|
||||||
|
}
|
||||||
|
|
||||||
// Parse precision.
|
// Parse precision.
|
||||||
if (*s == '.') {
|
if (*s == '.') {
|
||||||
@ -1037,9 +1178,11 @@ const Char *fmt::BasicFormatter<Char>::format(
|
|||||||
spec.precision_ = 0;
|
spec.precision_ = 0;
|
||||||
if ('0' <= *s && *s <= '9') {
|
if ('0' <= *s && *s <= '9') {
|
||||||
spec.precision_ = parse_nonnegative_int(s);
|
spec.precision_ = parse_nonnegative_int(s);
|
||||||
} else if (*s == '{') {
|
}
|
||||||
|
else if (*s == '{') {
|
||||||
++s;
|
++s;
|
||||||
const Arg &precision_arg = parse_arg_index(s);
|
Arg precision_arg =
|
||||||
|
is_name_start(*s) ? parse_arg_name(s) : parse_arg_index(s);
|
||||||
if (*s++ != '}')
|
if (*s++ != '}')
|
||||||
FMT_THROW(FormatError("invalid format string"));
|
FMT_THROW(FormatError("invalid format string"));
|
||||||
ULongLong value = 0;
|
ULongLong value = 0;
|
||||||
@ -1066,10 +1209,11 @@ const Char *fmt::BasicFormatter<Char>::format(
|
|||||||
if (value > INT_MAX)
|
if (value > INT_MAX)
|
||||||
FMT_THROW(FormatError("number is too big"));
|
FMT_THROW(FormatError("number is too big"));
|
||||||
spec.precision_ = static_cast<int>(value);
|
spec.precision_ = static_cast<int>(value);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
FMT_THROW(FormatError("missing precision specifier"));
|
FMT_THROW(FormatError("missing precision specifier"));
|
||||||
}
|
}
|
||||||
if (arg.type < Arg::LAST_INTEGER_TYPE || arg.type == Arg::POINTER) {
|
if (arg.type <= Arg::LAST_INTEGER_TYPE || arg.type == Arg::POINTER) {
|
||||||
FMT_THROW(FormatError(
|
FMT_THROW(FormatError(
|
||||||
fmt::format("precision not allowed in {} format specifier",
|
fmt::format("precision not allowed in {} format specifier",
|
||||||
arg.type == Arg::POINTER ? "pointer" : "integer")));
|
arg.type == Arg::POINTER ? "pointer" : "integer")));
|
||||||
@ -1092,7 +1236,7 @@ const Char *fmt::BasicFormatter<Char>::format(
|
|||||||
|
|
||||||
template <typename Char>
|
template <typename Char>
|
||||||
void fmt::BasicFormatter<Char>::format(
|
void fmt::BasicFormatter<Char>::format(
|
||||||
BasicStringRef<Char> format_str, const ArgList &args) {
|
BasicCStringRef<Char> format_str, const ArgList &args) {
|
||||||
const Char *s = start_ = format_str.c_str();
|
const Char *s = start_ = format_str.c_str();
|
||||||
set_args(args);
|
set_args(args);
|
||||||
while (*s) {
|
while (*s) {
|
||||||
@ -1106,7 +1250,7 @@ void fmt::BasicFormatter<Char>::format(
|
|||||||
if (c == '}')
|
if (c == '}')
|
||||||
FMT_THROW(FormatError("unmatched '}' in format string"));
|
FMT_THROW(FormatError("unmatched '}' in format string"));
|
||||||
write(writer_, start_, s - 1);
|
write(writer_, start_, s - 1);
|
||||||
Arg arg = parse_arg_index(s);
|
Arg arg = is_name_start(*s) ? parse_arg_name(s) : parse_arg_index(s);
|
||||||
s = format(s, arg);
|
s = format(s, arg);
|
||||||
}
|
}
|
||||||
write(writer_, start_, s);
|
write(writer_, start_, s);
|
||||||
@ -1117,30 +1261,30 @@ FMT_FUNC void fmt::report_system_error(
|
|||||||
report_error(internal::format_system_error, error_code, message);
|
report_error(internal::format_system_error, error_code, message);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _WIN32
|
#if FMT_USE_WINDOWS_H
|
||||||
FMT_FUNC void fmt::report_windows_error(
|
FMT_FUNC void fmt::report_windows_error(
|
||||||
int error_code, fmt::StringRef message) FMT_NOEXCEPT{
|
int error_code, fmt::StringRef message) FMT_NOEXCEPT{
|
||||||
report_error(internal::format_windows_error, error_code, message);
|
report_error(internal::format_windows_error, error_code, message);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
FMT_FUNC void fmt::print(std::FILE *f, StringRef format_str, ArgList args) {
|
FMT_FUNC void fmt::print(std::FILE *f, CStringRef format_str, ArgList args) {
|
||||||
MemoryWriter w;
|
MemoryWriter w;
|
||||||
w.write(format_str, args);
|
w.write(format_str, args);
|
||||||
std::fwrite(w.data(), 1, w.size(), f);
|
std::fwrite(w.data(), 1, w.size(), f);
|
||||||
}
|
}
|
||||||
|
|
||||||
FMT_FUNC void fmt::print(StringRef format_str, ArgList args) {
|
FMT_FUNC void fmt::print(CStringRef format_str, ArgList args) {
|
||||||
print(stdout, format_str, args);
|
print(stdout, format_str, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
FMT_FUNC void fmt::print(std::ostream &os, StringRef format_str, ArgList args) {
|
FMT_FUNC void fmt::print(std::ostream &os, CStringRef format_str, ArgList args) {
|
||||||
MemoryWriter w;
|
MemoryWriter w;
|
||||||
w.write(format_str, args);
|
w.write(format_str, args);
|
||||||
os.write(w.data(), w.size());
|
os.write(w.data(), w.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
FMT_FUNC void fmt::print_colored(Color c, StringRef format, ArgList args) {
|
FMT_FUNC void fmt::print_colored(Color c, CStringRef format, ArgList args) {
|
||||||
char escape[] = "\x1b[30m";
|
char escape[] = "\x1b[30m";
|
||||||
escape[3] = '0' + static_cast<char>(c);
|
escape[3] = '0' + static_cast<char>(c);
|
||||||
std::fputs(escape, stdout);
|
std::fputs(escape, stdout);
|
||||||
@ -1148,7 +1292,7 @@ FMT_FUNC void fmt::print_colored(Color c, StringRef format, ArgList args) {
|
|||||||
std::fputs(RESET_COLOR, stdout);
|
std::fputs(RESET_COLOR, stdout);
|
||||||
}
|
}
|
||||||
|
|
||||||
FMT_FUNC int fmt::fprintf(std::FILE *f, StringRef format, ArgList args) {
|
FMT_FUNC int fmt::fprintf(std::FILE *f, CStringRef format, ArgList args) {
|
||||||
MemoryWriter w;
|
MemoryWriter w;
|
||||||
printf(w, format, args);
|
printf(w, format, args);
|
||||||
std::size_t size = w.size();
|
std::size_t size = w.size();
|
||||||
@ -1157,6 +1301,8 @@ FMT_FUNC int fmt::fprintf(std::FILE *f, StringRef format, ArgList args) {
|
|||||||
|
|
||||||
#ifndef FMT_HEADER_ONLY
|
#ifndef FMT_HEADER_ONLY
|
||||||
|
|
||||||
|
template struct fmt::internal::BasicData<void>;
|
||||||
|
|
||||||
// Explicit instantiations for char.
|
// Explicit instantiations for char.
|
||||||
|
|
||||||
template void fmt::internal::FixedBuffer<char>::grow(std::size_t);
|
template void fmt::internal::FixedBuffer<char>::grow(std::size_t);
|
||||||
@ -1165,10 +1311,10 @@ template const char *fmt::BasicFormatter<char>::format(
|
|||||||
const char *&format_str, const fmt::internal::Arg &arg);
|
const char *&format_str, const fmt::internal::Arg &arg);
|
||||||
|
|
||||||
template void fmt::BasicFormatter<char>::format(
|
template void fmt::BasicFormatter<char>::format(
|
||||||
BasicStringRef<char> format, const ArgList &args);
|
CStringRef format, const ArgList &args);
|
||||||
|
|
||||||
template void fmt::internal::PrintfFormatter<char>::format(
|
template void fmt::internal::PrintfFormatter<char>::format(
|
||||||
BasicWriter<char> &writer, BasicStringRef<char> format, const ArgList &args);
|
BasicWriter<char> &writer, CStringRef format, const ArgList &args);
|
||||||
|
|
||||||
template int fmt::internal::CharTraits<char>::format_float(
|
template int fmt::internal::CharTraits<char>::format_float(
|
||||||
char *buffer, std::size_t size, const char *format,
|
char *buffer, std::size_t size, const char *format,
|
||||||
@ -1186,10 +1332,10 @@ template const wchar_t *fmt::BasicFormatter<wchar_t>::format(
|
|||||||
const wchar_t *&format_str, const fmt::internal::Arg &arg);
|
const wchar_t *&format_str, const fmt::internal::Arg &arg);
|
||||||
|
|
||||||
template void fmt::BasicFormatter<wchar_t>::format(
|
template void fmt::BasicFormatter<wchar_t>::format(
|
||||||
BasicStringRef<wchar_t> format, const ArgList &args);
|
BasicCStringRef<wchar_t> format, const ArgList &args);
|
||||||
|
|
||||||
template void fmt::internal::PrintfFormatter<wchar_t>::format(
|
template void fmt::internal::PrintfFormatter<wchar_t>::format(
|
||||||
BasicWriter<wchar_t> &writer, BasicStringRef<wchar_t> format,
|
BasicWriter<wchar_t> &writer, WCStringRef format,
|
||||||
const ArgList &args);
|
const ArgList &args);
|
||||||
|
|
||||||
template int fmt::internal::CharTraits<wchar_t>::format_float(
|
template int fmt::internal::CharTraits<wchar_t>::format_float(
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user