libostd/ostd/format.hh

943 lines
30 KiB
C++
Raw Normal View History

2015-07-04 20:19:49 +02:00
/* Format strings for OctaSTD. Inspired by D's std.format module.
2015-07-01 03:22:42 +02:00
*
* This file is part of OctaSTD. See COPYING.md for futher information.
*/
2015-07-13 21:08:55 +02:00
#ifndef OSTD_FORMAT_HH
#define OSTD_FORMAT_HH
2015-07-01 03:22:42 +02:00
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <assert.h>
2015-07-13 21:08:55 +02:00
#include "ostd/algorithm.hh"
#include "ostd/string.hh"
#include "ostd/utility.hh"
#include "ostd/internal/tuple.hh"
2015-07-01 03:22:42 +02:00
2015-07-13 21:07:14 +02:00
namespace ostd {
2015-07-01 03:22:42 +02:00
enum FormatFlags {
FMT_FLAG_DASH = 1 << 0,
FMT_FLAG_ZERO = 1 << 1,
FMT_FLAG_SPACE = 1 << 2,
FMT_FLAG_PLUS = 1 << 3,
FMT_FLAG_HASH = 1 << 4
};
2015-07-01 03:29:42 +02:00
namespace detail {
inline int parse_fmt_flags(const char *&fmt, int ret) {
while (*fmt) {
switch (*fmt) {
case '-': ret |= FMT_FLAG_DASH; ++fmt; break;
case '+': ret |= FMT_FLAG_PLUS; ++fmt; break;
case '#': ret |= FMT_FLAG_HASH; ++fmt; break;
case '0': ret |= FMT_FLAG_ZERO; ++fmt; break;
case ' ': ret |= FMT_FLAG_SPACE; ++fmt; break;
default: goto retflags;
}
}
retflags:
return ret;
}
inline Size read_digits(const char *&fmt, char *buf) {
Size ret = 0;
for (; isdigit(*fmt); ++ret)
*buf++ = *fmt++;
*buf = '\0';
return ret;
}
/* 0 .. not allowed
* 1 .. floating point
* 2 .. character
* 3 .. binary
* 4 .. octal
* 5 .. decimal
* 6 .. hexadecimal
* 7 .. string
* 8 .. custom object
*/
static constexpr const byte fmt_specs[] = {
/* uppercase spec set */
1, 3, 8, 8, /* A B C D */
1, 1, 1, 8, /* E F G H */
8, 8, 8, 8, /* I J K L */
8, 8, 8, 8, /* M N O P */
8, 8, 8, 8, /* Q R S T */
8, 8, 8, 6, /* U V W X */
8, 8, /* Y Z */
/* ascii filler */
0, 0, 0, 0, 0, 0,
/* lowercase spec set */
1, 3, 2, 5, /* a b c d */
1, 1, 1, 8, /* e f g h */
8, 8, 8, 8, /* i j k l */
8, 8, 4, 8, /* m n o p */
8, 8, 7, 8, /* q r s t */
8, 8, 8, 6, /* u v w x */
8, 8, /* y z */
/* ascii filler */
0, 0, 0, 0, 0
};
static constexpr const int fmt_bases[] = {
0, 0, 0, 2, 8, 10, 16, 0
};
static constexpr const char fmt_digits[2][16] = {
{
'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
},
{
'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
}
};
static constexpr const char *fmt_intpfx[2][4] = {
{ "0B", "0", "", "0X" },
{ "0b", "0", "", "0x" }
};
2015-07-04 20:19:49 +02:00
/* retrieve width/precision */
template<typename T>
bool convert_arg_param(const T &val, int &param, EnableIf<
IsIntegral<T>::value, bool
2015-07-04 20:19:49 +02:00
> = true) {
param = int(val);
return true;
}
2015-07-04 20:19:49 +02:00
template<typename T>
bool convert_arg_param(const T &, int &, EnableIf<
!IsIntegral<T>::value, bool
2015-07-04 20:19:49 +02:00
> = true) {
assert(false && "invalid argument for width/precision");
return false;
}
2015-07-04 02:04:09 +02:00
2015-07-04 20:19:49 +02:00
template<typename T>
bool get_arg_param(Size idx, int &param, const T &val) {
2015-07-04 20:19:49 +02:00
if (idx) {
assert(false && "not enough format args");
return false;
}
return convert_arg_param(val, param);
}
template<typename T, typename ...A>
bool get_arg_param(Size idx, int &param, const T &val,
2015-07-04 20:19:49 +02:00
const A &...args) {
if (idx) return get_arg_param(idx - 1, param, args...);
return convert_arg_param(val, param);
}
}
2015-07-04 02:04:09 +02:00
2015-07-04 20:19:49 +02:00
struct FormatSpec {
2015-07-05 22:12:41 +02:00
FormatSpec(): p_nested_escape(false), p_fmt(nullptr) {}
2015-07-04 20:19:49 +02:00
FormatSpec(const char *fmt, bool escape = false):
p_nested_escape(escape), p_fmt(fmt) {}
template<typename R>
bool read_until_spec(R &writer, Size *wret) {
Size written = 0;
if (!p_fmt) return false;
while (*p_fmt) {
if (*p_fmt == '%') {
++p_fmt;
if (*p_fmt == '%') goto plain;
bool r = read_spec();
if (wret) *wret = written;
return r;
}
plain:
++written;
writer.put(*p_fmt++);
}
if (wret) *wret = written;
return false;
}
template<typename R>
Size write_spaces(R &writer, Size n, bool left, char c = ' ') const {
2015-07-04 20:19:49 +02:00
if (left == bool(p_flags & FMT_FLAG_DASH)) return 0;
int r = p_width - int(n);
for (int w = p_width - int(n); --w >= 0; writer.put(c));
if (r < 0) return 0;
return r;
}
const char *rest() const {
return p_fmt;
}
void build_spec(char *buf, const char *spec, Size specn) {
*buf++ = '%';
2015-07-04 20:19:49 +02:00
if (p_flags & FMT_FLAG_DASH ) *buf++ = '-';
if (p_flags & FMT_FLAG_ZERO ) *buf++ = '0';
if (p_flags & FMT_FLAG_SPACE) *buf++ = ' ';
if (p_flags & FMT_FLAG_PLUS ) *buf++ = '+';
if (p_flags & FMT_FLAG_HASH ) *buf++ = '#';
memcpy(buf, "*.*", 3);
memcpy(buf + 3, spec, specn);
*(buf += specn + 3) = '\0';
}
2015-07-04 20:19:49 +02:00
int width() const { return p_width; }
int precision() const { return p_precision; }
bool has_width() const { return p_has_width; }
bool has_precision() const { return p_has_precision; }
bool arg_width() const { return p_arg_width; }
bool arg_precision() const { return p_arg_precision; }
template<typename ...A>
bool set_width(Size idx, const A &...args) {
return detail::get_arg_param(idx, p_width, args...);
2015-07-04 20:19:49 +02:00
}
template<typename ...A>
bool set_precision(Size idx, const A &...args) {
return detail::get_arg_param(idx, p_precision, args...);
2015-07-04 20:19:49 +02:00
}
int flags() const { return p_flags; }
char spec() const { return p_spec; }
byte index() const { return p_index; }
2015-07-04 20:19:49 +02:00
const char *nested() const { return p_nested; }
Size nested_len() const { return p_nested_len; }
2015-07-04 20:19:49 +02:00
const char *nested_sep() const { return p_nested_sep; }
Size nested_sep_len() const { return p_nested_sep_len; }
2015-07-04 20:19:49 +02:00
bool is_nested() const { return p_is_nested; }
bool nested_escape() const { return p_nested_escape; }
protected:
const char *p_nested = nullptr;
Size p_nested_len = 0;
2015-07-04 20:19:49 +02:00
const char *p_nested_sep = nullptr;
Size p_nested_sep_len = 0;
2015-07-04 20:19:49 +02:00
int p_flags = 0;
int p_width = 0;
int p_precision = 0;
bool p_has_width = false;
bool p_has_precision = false;
bool p_arg_width = false;
bool p_arg_precision = false;
char p_spec = '\0';
byte p_index = 0;
2015-07-04 20:19:49 +02:00
bool p_is_nested = false;
bool p_nested_escape = false;
2015-07-04 02:04:09 +02:00
bool read_until_dummy() {
while (*p_fmt) {
if (*p_fmt == '%') {
++p_fmt;
if (*p_fmt == '%') goto plain;
return read_spec();
}
plain:
++p_fmt;
}
return false;
}
bool read_spec_range() {
int sflags = p_flags;
p_nested_escape = !(sflags & FMT_FLAG_DASH);
++p_fmt;
2015-07-04 02:04:09 +02:00
const char *begin_inner = p_fmt;
if (!read_until_dummy()) {
2015-07-04 20:19:49 +02:00
p_is_nested = false;
return false;
}
/* skip to the last spec in case multiple specs are present */
const char *curfmt = p_fmt;
while (read_until_dummy()) {
curfmt = p_fmt;
}
p_fmt = curfmt;
p_flags = sflags;
2015-07-04 02:04:09 +02:00
/* find delimiter or ending */
const char *begin_delim = p_fmt;
const char *p = strchr(begin_delim, '%');
for (; p; p = strchr(p, '%')) {
++p;
/* escape, skip */
2015-07-04 02:04:09 +02:00
if (*p == '%') {
++p;
continue;
}
/* found end, in that case delimiter is after spec */
if (*p == ')') {
2015-07-04 20:19:49 +02:00
p_nested = begin_inner;
p_nested_len = begin_delim - begin_inner;
p_nested_sep = begin_delim;
p_nested_sep_len = p - p_nested_sep - 1;
2015-07-04 02:04:09 +02:00
p_fmt = ++p;
2015-07-04 20:19:49 +02:00
p_is_nested = true;
2015-07-04 02:04:09 +02:00
return true;
}
/* found actual delimiter start... */
2015-07-04 02:04:09 +02:00
if (*p == '|') {
2015-07-04 20:19:49 +02:00
p_nested = begin_inner;
p_nested_len = p - begin_inner - 1;
2015-07-04 02:04:09 +02:00
++p;
2015-07-04 20:19:49 +02:00
p_nested_sep = p;
2015-07-04 02:04:09 +02:00
for (p = strchr(p, '%'); p; p = strchr(p, '%')) {
++p;
if (*p == ')') {
2015-07-04 20:19:49 +02:00
p_nested_sep_len = p - p_nested_sep - 1;
2015-07-04 02:04:09 +02:00
p_fmt = ++p;
2015-07-04 20:19:49 +02:00
p_is_nested = true;
2015-07-04 02:04:09 +02:00
return true;
}
}
2015-07-04 20:19:49 +02:00
p_is_nested = false;
2015-07-04 02:04:09 +02:00
return false;
}
}
2015-07-04 20:19:49 +02:00
p_is_nested = false;
2015-07-04 02:04:09 +02:00
return false;
}
bool read_spec() {
Size ndig = detail::read_digits(p_fmt, p_buf);
bool havepos = false;
2015-07-04 20:19:49 +02:00
p_index = 0;
/* parse index */
if (*p_fmt == '$') {
if (ndig <= 0) return false; /* no pos given */
int idx = atoi(p_buf);
if (idx <= 0 || idx > 255) return false; /* bad index */
p_index = byte(idx);
++p_fmt;
havepos = true;
}
/* parse flags */
2015-07-04 20:19:49 +02:00
p_flags = 0;
Size skipd = 0;
if (havepos || !ndig) {
p_flags = detail::parse_fmt_flags(p_fmt, 0);
} else {
for (Size i = 0; i < ndig; ++i) {
if (p_buf[i] != '0') break;
++skipd;
}
2015-07-04 20:19:49 +02:00
if (skipd) p_flags = FMT_FLAG_ZERO;
if (skipd == ndig)
p_flags = detail::parse_fmt_flags(p_fmt, p_flags);
}
2015-07-10 01:24:47 +02:00
/* range/array formatting */
if ((*p_fmt == '(') && (havepos || !(ndig - skipd))) {
return read_spec_range();
}
/* parse width */
2015-07-04 20:19:49 +02:00
p_width = 0;
p_has_width = false;
p_arg_width = false;
if (!havepos && ndig && (ndig - skipd)) {
2015-07-04 20:19:49 +02:00
p_width = atoi(p_buf + skipd);
p_has_width = true;
} else if (detail::read_digits(p_fmt, p_buf)) {
2015-07-04 20:19:49 +02:00
p_width = atoi(p_buf);
p_has_width = true;
} else if (*p_fmt == '*') {
2015-07-04 20:19:49 +02:00
p_arg_width = p_has_width = true;
++p_fmt;
}
/* parse precision */
2015-07-04 20:19:49 +02:00
p_precision = 0;
p_has_precision = false;
p_arg_precision = false;
if (*p_fmt != '.') goto fmtchar;
++p_fmt;
if (detail::read_digits(p_fmt, p_buf)) {
2015-07-04 20:19:49 +02:00
p_precision = atoi(p_buf);
p_has_precision = true;
} else if (*p_fmt == '*') {
2015-07-04 20:19:49 +02:00
p_arg_precision = p_has_precision = true;
++p_fmt;
} else return false;
fmtchar:
2015-07-04 20:19:49 +02:00
p_spec = *p_fmt++;
/* make sure we're testing on a signed byte - our mapping only
* tests values up to 127 */
sbyte sp = p_spec;
return (sp >= 65) && (detail::fmt_specs[sp - 65] != 0);
}
const char *p_fmt;
char p_buf[32];
};
2015-07-11 20:44:58 +02:00
/* for custom container formatting */
2015-07-11 20:14:12 +02:00
template<typename T, typename R, typename = EnableIf<
IsSame<decltype(declval<T>().to_format(declval<R &>(),
declval<const FormatSpec &>())),
bool
>::value
2015-07-11 20:14:12 +02:00
>> inline bool to_format(const T &v, R &writer, const FormatSpec &fs) {
return v.to_format(writer, fs);
}
namespace detail {
template<typename R, typename T>
inline Ptrdiff write_u(R &writer, const FormatSpec *fl, bool neg, T val) {
char buf[20];
Ptrdiff r = 0;
Size n = 0;
2015-07-04 20:19:49 +02:00
char spec = fl->spec();
if (spec == 's') spec = 'd';
byte specn = detail::fmt_specs[spec - 65];
if (specn <= 2 || specn > 7) {
assert(false && "cannot format integers with the given spec");
return -1;
}
int base = detail::fmt_bases[specn];
2015-07-04 03:18:21 +02:00
if (!val) buf[n++] = '0';
for (; val; val /= base)
buf[n++] = detail::fmt_digits[spec >= 'a'][val % base];
r = n;
2015-07-04 20:19:49 +02:00
int flags = fl->flags();
bool lsgn = flags & FMT_FLAG_PLUS;
bool lsp = flags & FMT_FLAG_SPACE;
bool zero = flags & FMT_FLAG_ZERO;
bool sign = neg + lsgn + lsp;
r += sign;
const char *pfx = nullptr;
int pfxlen = 0;
2015-07-04 20:19:49 +02:00
if (flags & FMT_FLAG_HASH && spec != 'd') {
pfx = detail::fmt_intpfx[spec >= 'a'][specn - 3];
2015-07-03 22:19:50 +02:00
pfxlen = !!pfx[1] + 1;
r += pfxlen;
}
2015-07-04 20:19:49 +02:00
if (!zero)
r += fl->write_spaces(writer, n + pfxlen + sign, true, ' ');
if (sign) writer.put(neg ? '-' : *((" \0+") + lsgn * 2));
writer.put_n(pfx, pfxlen);
2015-07-04 20:19:49 +02:00
if (zero)
r += fl->write_spaces(writer, n + pfxlen + sign, true, '0');
for (int i = int(n - 1); i >= 0; --i) {
writer.put(buf[i]);
}
2015-07-04 20:19:49 +02:00
r += fl->write_spaces(writer, n + sign + pfxlen, false);
return r;
}
2015-07-04 03:18:21 +02:00
template<typename R, typename ...A>
static Ptrdiff format_impl(R &writer, Size &fmtn, bool escape,
const char *fmt, const A &...args);
2015-07-04 03:18:21 +02:00
template<typename T, typename = RangeOf<T>>
static True test_fmt_range(int);
2015-07-04 21:43:03 +02:00
template<typename>
static False test_fmt_range(...);
2015-07-04 03:18:21 +02:00
template<typename T>
using FmtRangeTest = decltype(test_fmt_range<T>(0));
template<Size I>
struct FmtTupleUnpacker {
template<typename R, typename T, typename ...A>
static inline Ptrdiff unpack(R &writer, Size &fmtn, bool esc,
const char *fmt, const T &item,
const A &...args) {
return FmtTupleUnpacker<I - 1>::unpack(writer, fmtn, esc, fmt,
item, get<I - 1>(item), args...);
}
};
template<>
struct FmtTupleUnpacker<0> {
template<typename R, typename T, typename ...A>
static inline Ptrdiff unpack(R &writer, Size &fmtn, bool esc,
const char *fmt, const T &,
const A &...args) {
return format_impl(writer, fmtn, esc, fmt, args...);
}
};
2015-07-04 16:23:54 +02:00
template<typename R, typename T>
inline Ptrdiff format_ritem(R &writer, Size &fmtn, bool esc, bool,
const char *fmt, const T &item,
EnableIf<!IsTupleLike<T>::value, bool>
= true) {
return format_impl(writer, fmtn, esc, fmt, item);
2015-07-04 15:52:02 +02:00
}
template<typename R, typename T>
inline Ptrdiff format_ritem(R &writer, Size &fmtn, bool esc,
bool expandval, const char *fmt,
const T &item,
EnableIf<IsTupleLike<T>::value, bool>
= true) {
if (expandval) {
return FmtTupleUnpacker<TupleSize<T>::value>::unpack(writer,
fmtn, esc, fmt, item);
}
return format_impl(writer, fmtn, esc, fmt, item);
2015-07-04 15:52:02 +02:00
}
2015-07-04 03:18:21 +02:00
template<typename R, typename T>
inline Ptrdiff write_range(R &writer, const FormatSpec *fl,
bool escape, bool expandval,
const char *sep, Size seplen,
const T &val,
EnableIf<FmtRangeTest<T>::value, bool>
= true) {
2015-07-13 21:07:14 +02:00
auto range = ostd::iter(val);
2015-07-04 03:18:21 +02:00
if (range.empty()) return 0;
Ptrdiff ret = 0;
Size fmtn = 0;
2015-07-04 03:18:21 +02:00
/* test first item */
Ptrdiff fret = format_ritem(writer, fmtn, escape, expandval,
fl->rest(), range.front());
2015-07-04 03:18:21 +02:00
if (fret < 0) return fret;
ret += fret;
range.pop_front();
/* write the rest (if any) */
for (; !range.empty(); range.pop_front()) {
auto v = writer.put_n(sep, seplen);
if (v != seplen)
return -1;
ret += seplen;
fret = format_ritem(writer, fmtn, escape, expandval,
fl->rest(), range.front());
2015-07-04 03:18:21 +02:00
if (fret < 0) return fret;
ret += fret;
}
return ret;
}
template<typename R, typename T>
inline Ptrdiff write_range(R &, const FormatSpec *, bool, bool,
const char *, Size, const T &,
EnableIf<!FmtRangeTest<T>::value, bool>
= true) {
2015-07-04 03:18:21 +02:00
assert(false && "invalid value for ranged format");
return -1;
}
template<typename T>
2015-07-13 21:07:14 +02:00
static True test_fmt_tostr(decltype(ostd::to_string(declval<T>())) *);
template<typename> static False test_fmt_tostr(...);
2015-07-04 15:52:02 +02:00
template<typename T>
using FmtTostrTest = decltype(test_fmt_tostr<T>(0));
/* non-printable escapes up to 0x20 (space) */
static constexpr const char *fmt_escapes[] = {
"\\0" , "\\x01", "\\x02", "\\x03", "\\x04", "\\x05",
"\\x06", "\\a" , "\\b" , "\\t" , "\\n" , "\\v" ,
"\\f" , "\\r" , "\\x0E", "\\x0F", "\\x10", "\\x11",
"\\x12", "\\x13", "\\x14", "\\x15", "\\x16", "\\x17",
"\\x18", "\\x19", "\\x1A", "\\x1B", "\\x1C", "\\x1D",
"\\x1E", "\\x1F",
/* we want to escape double quotes... */
nullptr, nullptr, "\\\"", nullptr, nullptr, nullptr,
nullptr, "\\\'"
};
inline const char *escape_fmt_char(char v, char quote) {
if ((v >= 0 && v < 0x20) || (v == quote)) {
return fmt_escapes[Size(v)];
} else if (v == 0x7F) {
return "\\x7F";
}
return nullptr;
}
inline String escape_fmt_str(const char *val) {
String ret;
ret.push('"');
while (*val) {
const char *esc = escape_fmt_char(*val, '"');
if (esc)
ret.append(esc);
else
ret.push(*val);
++val;
}
ret.push('"');
return ret;
}
template<typename R>
struct FmtWriteRange: OutputRange<FmtWriteRange<R>, char> {
FmtWriteRange() = delete;
FmtWriteRange(R &out): p_out(out), p_written(0) {}
bool put(char v) {
bool ret = p_out.put(v);
p_written += ret;
return ret;
}
Size put_n(const char *v, Size n) {
Size ret = p_out.put_n(v, n);
p_written += ret;
return ret;
}
Size get_written() const { return p_written; }
private:
R &p_out;
Size p_written;
};
2015-07-11 20:14:12 +02:00
template<typename T, typename R>
static True test_tofmt(decltype(to_format(declval<const T &>(),
declval<R &>(),
declval<const FormatSpec &>())) *);
template<typename, typename>
static False test_tofmt(...);
template<typename T, typename R>
using FmtTofmtTest = decltype(test_tofmt<T, R>(0));
struct WriteSpec: FormatSpec {
WriteSpec(): FormatSpec() {}
WriteSpec(const char *fmt, bool esc): FormatSpec(fmt, esc) {}
/* C string */
template<typename R>
Ptrdiff write(R &writer, bool escape, const char *val, Size n) {
2015-07-04 20:19:49 +02:00
if (escape) {
String esc = escape_fmt_str(val);
2015-07-04 20:19:49 +02:00
return write(writer, false, (const char *)esc.data(),
esc.size());
}
2015-07-04 20:19:49 +02:00
if (this->precision()) n = this->precision();
Ptrdiff r = n;
2015-07-04 20:19:49 +02:00
r += this->write_spaces(writer, n, true);
writer.put_n(val, n);
2015-07-04 20:19:49 +02:00
r += this->write_spaces(writer, n, false);
return r;
}
2015-07-03 22:50:02 +02:00
template<typename R>
Ptrdiff write(R &writer, bool escape, const char *val) {
2015-07-04 20:19:49 +02:00
if (this->spec() != 's') {
assert(false && "cannot print strings with the given spec");
return -1;
}
2015-07-04 20:19:49 +02:00
return write(writer, escape, val, strlen(val));
2015-07-03 22:50:02 +02:00
}
/* OctaSTD string */
template<typename R, typename A>
Ptrdiff write(R &writer, bool escape, const AnyString<A> &val) {
2015-07-04 20:19:49 +02:00
if (this->spec() != 's') {
assert(false && "cannot print strings with the given spec");
return -1;
}
2015-07-04 20:19:49 +02:00
return write(writer, escape, val.data(), val.size());
}
/* character */
template<typename R>
Ptrdiff write(R &writer, bool escape, char val) {
2015-07-04 20:19:49 +02:00
if (this->spec() != 's' && this->spec() != 'c') {
assert(false && "cannot print chars with the given spec");
return -1;
}
2015-07-04 20:19:49 +02:00
if (escape) {
const char *esc = escape_fmt_char(val, '\'');
if (esc) {
char buf[6];
buf[0] = '\'';
Size elen = strlen(esc);
memcpy(buf + 1, esc, elen);
buf[elen + 1] = '\'';
2015-07-04 20:19:49 +02:00
return write(writer, false, (const char *)buf, elen + 2);
}
}
Ptrdiff r = 1 + escape * 2;
2015-07-04 20:19:49 +02:00
r += this->write_spaces(writer, 1 + escape * 2, true);
if (escape) {
writer.put('\'');
writer.put(val);
writer.put('\'');
} else writer.put(val);
2015-07-04 20:19:49 +02:00
r += this->write_spaces(writer, 1 + escape * 2, false);
return r;
}
/* bool */
template<typename R>
Ptrdiff write(R &writer, bool, bool val) {
2015-07-04 20:19:49 +02:00
if (this->spec() == 's')
return write(writer, ("false\0true") + (6 * val));
else
return write(writer, int(val));
}
2015-07-01 03:22:42 +02:00
/* signed integers */
template<typename R, typename T>
Ptrdiff write(R &writer, bool, T val, EnableIf<
IsIntegral<T>::value && IsSigned<T>::value, bool
> = true) {
using UT = MakeUnsigned<T>;
return detail::write_u(writer, this, val < 0,
(val < 0) ? (UT)(-val) : (UT)(val));
}
/* unsigned integers */
template<typename R, typename T>
Ptrdiff write(R &writer, bool, T val, EnableIf<
IsIntegral<T>::value && IsUnsigned<T>::value, bool
> = true) {
return detail::write_u(writer, this, false, val);
}
template<typename R, typename T,
bool Long = IsSame<T, ldouble>::value
> Ptrdiff write(R &writer, bool, T val, EnableIf<
IsFloatingPoint<T>::value, bool
> = true) {
char buf[16], rbuf[128];
char fmtspec[Long + 1];
2015-07-04 20:19:49 +02:00
fmtspec[Long] = this->spec();
byte specn = detail::fmt_specs[this->spec() - 65];
if (specn != 1 && specn != 7) {
2015-07-03 22:55:35 +02:00
assert(false && "cannot format floats with the given spec");
return -1;
}
if (specn == 7) fmtspec[Long] = 'g';
if (Long) fmtspec[0] = 'L';
this->build_spec(buf, fmtspec, sizeof(fmtspec));
Ptrdiff ret = snprintf(rbuf, sizeof(rbuf), buf,
2015-07-04 20:19:49 +02:00
this->width(),
this->has_precision() ? this->precision() : 6, val);
char *dbuf = nullptr;
if (Size(ret) >= sizeof(rbuf)) {
/* this should typically never happen */
dbuf = (char *)malloc(ret + 1);
2015-07-04 20:19:49 +02:00
ret = snprintf(dbuf, ret + 1, buf, this->width(),
this->has_precision() ? this->precision() : 6, val);
writer.put_n(dbuf, ret);
free(dbuf);
} else writer.put_n(rbuf, ret);
return ret;
}
2015-07-03 22:19:50 +02:00
/* pointer value */
template<typename R, typename T>
Ptrdiff write(R &writer, bool, T *val) {
2015-07-04 20:19:49 +02:00
if (this->p_spec == 's') {
this->p_spec = 'x';
this->p_flags |= FMT_FLAG_HASH;
2015-07-03 22:19:50 +02:00
}
return write(writer, false, Size(val));
2015-07-03 22:19:50 +02:00
}
/* generic value */
template<typename R, typename T>
Ptrdiff write(R &writer, bool, const T &val, EnableIf<
!IsArithmetic<T>::value && FmtTostrTest<T>::value &&
!FmtTofmtTest<T, FmtWriteRange<R>>::value, bool
> = true) {
2015-07-04 20:19:49 +02:00
if (this->spec() != 's') {
2015-07-03 22:55:35 +02:00
assert(false && "custom objects need '%s' format");
return -1;
}
2015-07-13 21:07:14 +02:00
return write(writer, false, ostd::to_string(val));
}
/* custom format case */
template<typename R, typename T>
Ptrdiff write(R &writer, bool, const T &val,
EnableIf<FmtTofmtTest<T, FmtWriteRange<R>>::value, bool
> = true) {
FmtWriteRange<R> sink(writer);
2015-07-11 20:14:12 +02:00
if (!to_format(val, sink, *this)) return -1;
return sink.get_written();
}
2015-07-04 15:52:02 +02:00
/* generic failure case */
template<typename R, typename T>
Ptrdiff write(R &, bool, const T &, EnableIf<
!IsArithmetic<T>::value && !FmtTostrTest<T>::value &&
!FmtTofmtTest<T, FmtWriteRange<R>>::value, bool
2015-07-04 15:52:02 +02:00
> = true) {
assert(false && "value cannot be formatted");
return -1;
}
/* actual writer */
template<typename R, typename T>
Ptrdiff write_arg(R &writer, Size idx, const T &val) {
if (idx) {
assert(false && "not enough format args");
return -1;
}
2015-07-04 20:19:49 +02:00
return write(writer, this->p_nested_escape, val);
}
template<typename R, typename T, typename ...A>
Ptrdiff write_arg(R &writer, Size idx, const T &val,
const A &...args) {
if (idx) return write_arg(writer, idx - 1, args...);
2015-07-04 20:19:49 +02:00
return write(writer, this->p_nested_escape, val);
}
2015-07-04 03:18:21 +02:00
/* range writer */
template<typename R, typename T>
Ptrdiff write_range(R &writer, Size idx, bool expandval,
const char *sep, Size seplen, const T &val) {
2015-07-04 03:18:21 +02:00
if (idx) {
assert(false && "not enough format args");
return -1;
}
return detail::write_range(writer, this, this->p_nested_escape,
expandval, sep, seplen, val);
2015-07-04 03:18:21 +02:00
}
template<typename R, typename T, typename ...A>
Ptrdiff write_range(R &writer, Size idx, bool expandval,
const char *sep, Size seplen, const T &val,
const A &...args) {
if (idx) {
return write_range(writer, idx - 1, expandval, sep,
seplen, args...);
}
return detail::write_range(writer, this,
this->p_nested_escape, expandval, sep, seplen, val);
2015-07-04 03:18:21 +02:00
}
};
2015-07-04 02:18:14 +02:00
template<typename R, typename ...A>
inline Ptrdiff format_impl(R &writer, Size &fmtn, bool escape,
const char *fmt, const A &...args) {
Size argidx = 1, retn = 0, twr = 0;
Ptrdiff written = 0;
detail::WriteSpec spec(fmt, escape);
2015-07-04 02:18:14 +02:00
while (spec.read_until_spec(writer, &twr)) {
written += twr;
Size argpos = spec.index();
2015-07-04 20:19:49 +02:00
if (spec.is_nested()) {
2015-07-04 03:18:21 +02:00
if (!argpos) argpos = argidx++;
/* FIXME: figure out a better way */
char new_fmt[256];
2015-07-04 20:19:49 +02:00
memcpy(new_fmt, spec.nested(), spec.nested_len());
new_fmt[spec.nested_len()] = '\0';
detail::WriteSpec nspec(new_fmt, spec.nested_escape());
Ptrdiff sw = nspec.write_range(writer, argpos - 1,
(spec.flags() & FMT_FLAG_HASH),
2015-07-04 20:19:49 +02:00
spec.nested_sep(), spec.nested_sep_len(), args...);
2015-07-04 03:18:21 +02:00
if (sw < 0) return sw;
written += sw;
continue;
}
2015-07-04 02:18:14 +02:00
if (!argpos) {
argpos = argidx++;
2015-07-04 20:19:49 +02:00
if (spec.arg_width()) {
if (!spec.set_width(argpos - 1, args...))
2015-07-04 02:18:14 +02:00
return -1;
argpos = argidx++;
}
2015-07-04 20:19:49 +02:00
if (spec.arg_precision()) {
if (!spec.set_precision(argpos - 1, args...))
2015-07-04 02:18:14 +02:00
return -1;
argpos = argidx++;
}
} else {
2015-07-04 20:19:49 +02:00
bool argprec = spec.arg_precision();
2015-07-04 02:18:14 +02:00
if (argprec) {
if (argpos <= 1) {
assert(false && "argument precision not given");
return -1;
}
2015-07-04 20:19:49 +02:00
if (!spec.set_precision(argpos - 2, args...))
2015-07-04 02:18:14 +02:00
return -1;
}
2015-07-04 20:19:49 +02:00
if (spec.arg_width()) {
2015-07-16 19:55:21 +02:00
if (argpos <= (Size(argprec) + 1)) {
2015-07-04 02:18:14 +02:00
assert(false && "argument width not given");
return -1;
}
2015-07-04 20:19:49 +02:00
if (!spec.set_width(argpos - 2 - argprec, args...))
2015-07-04 02:18:14 +02:00
return -1;
}
}
Ptrdiff sw = spec.write_arg(writer, argpos - 1, args...);
2015-07-04 02:18:14 +02:00
if (sw < 0) return sw;
written += sw;
}
2015-07-04 02:18:14 +02:00
written += twr;
fmtn = retn;
return written;
2015-07-01 03:22:42 +02:00
}
2015-07-04 02:18:14 +02:00
template<typename R, typename ...A>
inline Ptrdiff format_impl(R &writer, Size &fmtn, bool, const char *fmt) {
Size written = 0;
detail::WriteSpec spec(fmt, false);
2015-07-04 02:18:14 +02:00
if (spec.read_until_spec(writer, &written)) return -1;
fmtn = 0;
return written;
}
} /* namespace detail */
template<typename R, typename ...A>
inline Ptrdiff format(R &&writer, Size &fmtn, const char *fmt,
const A &...args) {
return detail::format_impl(writer, fmtn, false, fmt, args...);
}
template<typename R, typename AL, typename ...A>
Ptrdiff format(R &&writer, Size &fmtn, const AnyString<AL> &fmt,
const A &...args) {
2015-07-03 23:43:54 +02:00
return format(writer, fmtn, fmt.data(), args...);
}
template<typename R, typename ...A>
Ptrdiff format(R &&writer, const char *fmt, const A &...args) {
Size fmtn = 0;
2015-07-03 23:43:54 +02:00
return format(writer, fmtn, fmt, args...);
2015-07-01 03:22:42 +02:00
}
template<typename R, typename AL, typename ...A>
Ptrdiff format(R &&writer, const AnyString<AL> &fmt, const A &...args) {
Size fmtn = 0;
2015-07-03 23:43:54 +02:00
return format(writer, fmtn, fmt.data(), args...);
2015-07-01 03:22:42 +02:00
}
2015-07-13 21:07:14 +02:00
} /* namespace ostd */
2015-07-01 03:22:42 +02:00
#endif