fmt/format.cc

362 lines
9.2 KiB
C++
Raw Normal View History

2012-12-07 16:31:09 +00:00
/*
Small, safe and fast printf-like formatting library for C++
Author: Victor Zverovich
*/
#include "format.h"
2012-12-10 19:08:16 +00:00
#include <stdint.h>
2012-12-07 16:31:09 +00:00
#include <cassert>
#include <climits>
2012-12-07 16:31:09 +00:00
#include <cstring>
#include <algorithm>
using std::size_t;
2012-12-09 02:45:35 +00:00
namespace {
2012-12-10 19:08:16 +00:00
// Flags.
enum { PLUS_FLAG = 1, ZERO_FLAG = 2, HEX_PREFIX_FLAG = 4 };
2012-12-09 02:45:35 +00:00
// Throws Exception(message) if format contains '}', otherwise throws
// FormatError reporting unmatched '{'. The idea is that unmatched '{'
// should override other errors.
2012-12-10 19:08:16 +00:00
void ReportError(const char *s, const std::string &message) {
while (*s && *s != '}')
++s;
2012-12-10 19:08:16 +00:00
throw fmt::FormatError(*s ? message : std::string("unmatched '{' in format"));
}
void ReportUnknownType(char code, const char *type) {
if (std::isprint(code)) {
throw fmt::FormatError(
str(fmt::Format("unknown format code '{0}' for {1}") << code << type));
}
throw fmt::FormatError(
str(fmt::Format("unknown format code '\\x{0:02x}' for {1}")
<< static_cast<unsigned>(code) << type));
}
2012-12-09 02:45:35 +00:00
// Parses an unsigned integer advancing s to the end of the parsed input.
// This function assumes that the first character of s is a digit.
unsigned ParseUInt(const char *&s) {
assert('0' <= *s && *s <= '9');
unsigned value = 0;
do {
unsigned new_value = value * 10 + (*s++ - '0');
if (new_value < value) // Check if value wrapped around.
2012-12-10 19:08:16 +00:00
ReportError(s, "number is too big in format");
2012-12-09 02:45:35 +00:00
value = new_value;
} while ('0' <= *s && *s <= '9');
return value;
}
2012-12-10 19:08:16 +00:00
// Maps an integer type T to its unsigned counterpart.
template <typename T>
struct GetUnsigned;
template <>
struct GetUnsigned<int> {
typedef unsigned Type;
};
template <>
struct GetUnsigned<unsigned> {
typedef unsigned Type;
};
template <>
struct GetUnsigned<long> {
typedef unsigned long Type;
};
template <>
struct GetUnsigned<unsigned long> {
typedef unsigned long Type;
};
template <typename T>
struct IsLongDouble { enum {VALUE = 0}; };
template <>
struct IsLongDouble<long double> { enum {VALUE = 1}; };
}
template <typename T>
void fmt::Formatter::FormatInt(T value, unsigned flags, int width, char type) {
int size = 0;
char sign = 0;
typedef typename GetUnsigned<T>::Type UnsignedType;
UnsignedType abs_value = value;
if (value < 0) {
sign = '-';
++size;
abs_value = -value;
} else if ((flags & PLUS_FLAG) != 0) {
sign = '+';
++size;
}
char fill = (flags & ZERO_FLAG) != 0 ? '0' : ' ';
size_t start = buffer_.size();
char *p = 0;
switch (type) {
case 0: case 'd': {
UnsignedType n = abs_value;
do {
++size;
} while ((n /= 10) != 0);
width = std::max(width, size);
buffer_.resize(buffer_.size() + width, fill);
p = &buffer_.back();
n = abs_value;
do {
*p-- = '0' + (n % 10);
} while ((n /= 10) != 0);
break;
}
case 'x': case 'X': {
UnsignedType n = abs_value;
bool print_prefix = (flags & HEX_PREFIX_FLAG) != 0;
if (print_prefix) size += 2;
do {
++size;
} while ((n >>= 4) != 0);
width = std::max(width, size);
buffer_.resize(buffer_.size() + width, fill);
p = &buffer_.back();
n = abs_value;
const char *digits = type == 'x' ? "0123456789abcdef" : "0123456789ABCDEF";
do {
*p-- = digits[n & 0xf];
} while ((n >>= 4) != 0);
if (print_prefix) {
*p-- = type;
*p-- = '0';
}
break;
}
case 'o': {
UnsignedType n = abs_value;
do {
++size;
} while ((n >>= 3) != 0);
width = std::max(width, size);
buffer_.resize(buffer_.size() + width, fill);
p = &buffer_.back();
n = abs_value;
do {
*p-- = '0' + (n & 7);
} while ((n >>= 3) != 0);
break;
}
default:
ReportUnknownType(type, "integer");
break;
2012-12-10 19:08:16 +00:00
}
if (sign) {
if ((flags & ZERO_FLAG) != 0)
buffer_[start] = sign;
else
*p = sign;
}
2012-12-09 02:45:35 +00:00
}
2012-12-07 16:31:09 +00:00
template <typename T>
2012-12-10 19:08:16 +00:00
void fmt::Formatter::FormatDouble(
T value, unsigned flags, int width, int precision, char type) {
// Check type.
switch (type) {
2012-12-10 20:16:02 +00:00
case 0:
type = 'g';
break;
2012-12-10 19:08:16 +00:00
case 'e': case 'E': case 'f': case 'F': case 'g': case 'G':
break;
default:
ReportUnknownType(type, "double");
break;
2012-12-10 19:08:16 +00:00
}
// Build format string.
enum { MAX_FORMAT_SIZE = 9}; // longest format: %+0*.*Lg
char format[MAX_FORMAT_SIZE];
char *format_ptr = format;
*format_ptr++ = '%';
if ((flags & PLUS_FLAG) != 0)
*format_ptr++ = '+';
if ((flags & ZERO_FLAG) != 0)
*format_ptr++ = '0';
if (width > 0)
*format_ptr++ = '*';
if (precision >= 0) {
*format_ptr++ = '.';
*format_ptr++ = '*';
}
if (IsLongDouble<T>::VALUE)
*format_ptr++ = 'L';
2012-12-10 20:16:02 +00:00
*format_ptr++ = type;
2012-12-10 19:08:16 +00:00
*format_ptr = '\0';
// Format using snprintf.
2012-12-07 16:31:09 +00:00
size_t offset = buffer_.size();
buffer_.resize(buffer_.capacity());
for (;;) {
size_t size = buffer_.size() - offset;
int n = 0;
2012-12-10 19:08:16 +00:00
if (width <= 0) {
2012-12-07 16:31:09 +00:00
n = precision < 0 ?
2012-12-10 19:08:16 +00:00
snprintf(&buffer_[offset], size, format, value) :
snprintf(&buffer_[offset], size, format, precision, value);
2012-12-07 16:31:09 +00:00
} else {
n = precision < 0 ?
2012-12-10 19:08:16 +00:00
snprintf(&buffer_[offset], size, format, width, value) :
snprintf(&buffer_[offset], size, format, width, precision, value);
2012-12-07 16:31:09 +00:00
}
if (n >= 0 && offset + n < buffer_.size()) {
buffer_.resize(offset + n);
return;
}
buffer_.resize(n >= 0 ? offset + n + 1 : 2 * buffer_.size());
}
}
void fmt::Formatter::Format() {
buffer_.reserve(500);
const char *start = format_;
const char *s = start;
while (*s) {
if (*s++ != '{') continue;
2012-12-09 22:13:23 +00:00
// TODO: handle escape sequence
buffer_.insert(buffer_.end(), start, s - 1);
2012-12-07 16:31:09 +00:00
// Parse argument index.
2012-12-09 02:45:35 +00:00
if (*s < '0' || *s > '9')
2012-12-10 19:08:16 +00:00
ReportError(s, "missing argument index in format string");
2012-12-09 02:45:35 +00:00
unsigned arg_index = ParseUInt(s);
if (arg_index >= args_.size())
2012-12-10 19:08:16 +00:00
ReportError(s, "argument index is out of range in format");
Arg &arg = args_[arg_index];
2012-12-07 16:31:09 +00:00
2012-12-10 19:08:16 +00:00
unsigned flags = 0;
int width = 0;
2012-12-07 16:31:09 +00:00
int precision = -1;
2012-12-09 02:45:35 +00:00
char type = 0;
2012-12-07 16:31:09 +00:00
if (*s == ':') {
++s;
2012-12-09 02:45:35 +00:00
if (*s == '+') {
2012-12-10 19:08:16 +00:00
++s;
if (arg.type > LAST_NUMERIC_TYPE)
ReportError(s, "format specifier '+' requires numeric argument");
2012-12-09 22:13:23 +00:00
if (arg.type == UINT || arg.type == ULONG) {
2012-12-10 19:08:16 +00:00
ReportError(s,
2012-12-09 22:13:23 +00:00
"format specifier '+' requires signed argument");
}
2012-12-10 19:08:16 +00:00
flags |= PLUS_FLAG;
2012-12-09 02:45:35 +00:00
}
if (*s == '0') {
2012-12-10 19:08:16 +00:00
++s;
if (arg.type > LAST_NUMERIC_TYPE)
ReportError(s, "format specifier '0' requires numeric argument");
flags |= ZERO_FLAG;
2012-12-09 02:45:35 +00:00
}
2012-12-07 16:31:09 +00:00
// Parse width.
if ('0' <= *s && *s <= '9') {
unsigned value = ParseUInt(s);
if (value > INT_MAX)
2012-12-10 19:08:16 +00:00
ReportError(s, "number is too big in format");
width = value;
2012-12-07 16:31:09 +00:00
}
// Parse precision.
if (*s == '.') {
++s;
precision = 0;
if ('0' <= *s && *s <= '9') {
unsigned value = ParseUInt(s);
if (value > INT_MAX)
2012-12-10 19:08:16 +00:00
ReportError(s, "number is too big in format");
precision = value;
2012-12-07 16:31:09 +00:00
} else {
2012-12-10 19:08:16 +00:00
ReportError(s, "missing precision in format");
2012-12-09 22:13:23 +00:00
}
2012-12-10 19:08:16 +00:00
if (arg.type != DOUBLE && arg.type != LONG_DOUBLE) {
ReportError(s,
"precision specifier requires floating-point argument");
2012-12-07 16:31:09 +00:00
}
}
// Parse type.
2012-12-10 19:08:16 +00:00
if (*s != '}' && *s)
2012-12-09 22:13:23 +00:00
type = *s++;
2012-12-07 16:31:09 +00:00
}
if (*s++ != '}')
2012-12-09 02:45:35 +00:00
throw FormatError("unmatched '{' in format");
2012-12-07 16:31:09 +00:00
start = s;
// Format argument.
switch (arg.type) {
case INT:
2012-12-10 19:08:16 +00:00
FormatInt(arg.int_value, flags, width, type);
2012-12-07 16:31:09 +00:00
break;
case UINT:
2012-12-10 19:08:16 +00:00
FormatInt(arg.uint_value, flags, width, type);
2012-12-07 16:31:09 +00:00
break;
case LONG:
2012-12-10 19:08:16 +00:00
FormatInt(arg.long_value, flags, width, type);
2012-12-07 16:31:09 +00:00
break;
case ULONG:
2012-12-10 19:08:16 +00:00
FormatInt(arg.ulong_value, flags, width, type);
2012-12-07 16:31:09 +00:00
break;
case DOUBLE:
2012-12-10 19:08:16 +00:00
FormatDouble(arg.double_value, flags, width, precision, type);
2012-12-07 16:31:09 +00:00
break;
case LONG_DOUBLE:
2012-12-10 19:08:16 +00:00
FormatDouble(arg.long_double_value, flags, width, precision, type);
2012-12-09 22:13:23 +00:00
break;
case CHAR:
if (type && type != 'c')
ReportUnknownType(type, "char");
2012-12-10 19:08:16 +00:00
buffer_.reserve(std::max(width, 1));
buffer_.push_back(arg.int_value);
if (width > 1)
buffer_.resize(buffer_.size() + width - 1, ' ');
2012-12-09 22:13:23 +00:00
break;
2012-12-10 19:08:16 +00:00
case STRING: {
if (type && type != 's')
ReportUnknownType(type, "string");
2012-12-10 19:08:16 +00:00
const char *str = arg.string_value;
size_t size = arg.size;
if (size == 0 && *str)
size = std::strlen(str);
buffer_.reserve(buffer_.size() + std::max<size_t>(width, size));
buffer_.insert(buffer_.end(), str, str + size);
if (width > size)
buffer_.resize(buffer_.size() + width - size, ' ');
2012-12-07 16:31:09 +00:00
break;
2012-12-10 19:08:16 +00:00
}
case POINTER:
if (type && type != 'p')
ReportUnknownType(type, "pointer");
2012-12-10 19:08:16 +00:00
FormatInt(reinterpret_cast<uintptr_t>(
arg.pointer_value), HEX_PREFIX_FLAG, width, 'x');
2012-12-07 16:31:09 +00:00
break;
2012-12-09 17:03:47 +00:00
case CUSTOM:
if (type)
ReportUnknownType(type, "object");
(this->*arg.format)(arg.custom_value, width);
break;
2012-12-07 16:31:09 +00:00
default:
assert(false);
break;
}
}
buffer_.insert(buffer_.end(), start, s + 1);
}
fmt::ArgFormatter::~ArgFormatter() {
if (!formatter_) return;
FinishFormatting();
}