cosmopolitan/libc/fmt/stoa.c

220 lines
7.1 KiB
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi
Copyright 2020 Justine Alexandra Roberts Tunney
2020-12-28 01:18:44 +00:00
Permission to use, copy, modify, and/or distribute this software for
any purpose with or without fee is hereby granted, provided that the
above copyright notice and this permission notice appear in all copies.
2020-06-15 14:18:57 +00:00
2020-12-28 01:18:44 +00:00
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
2020-06-15 14:18:57 +00:00
*/
#include "libc/bits/weaken.h"
2020-06-15 14:18:57 +00:00
#include "libc/fmt/paland.inc"
#include "libc/fmt/palandprintf.internal.h"
#include "libc/nexgen32e/tinystrlen.internal.h"
2020-06-15 14:18:57 +00:00
#include "libc/str/str.h"
#include "libc/str/thompike.h"
#include "libc/str/tpenc.h"
#include "libc/str/utf16.h"
2020-06-15 14:18:57 +00:00
#include "libc/unicode/unicode.h"
typedef int (*emit_f)(int (*)(long, void *), void *, wint_t);
static noinstrument int StoaEmitByte(int f(long, void *), void *a, wint_t c) {
return f(c, a);
2020-06-15 14:18:57 +00:00
}
static noinstrument int StoaEmitWordEncodedString(int f(long, void *), void *a,
uint64_t w) {
do {
if (f(w & 0xff, a) == -1) {
return -1;
2020-06-15 14:18:57 +00:00
}
} while ((w >>= 8));
return 0;
}
static noinstrument int StoaEmitUnicode(int f(long, void *), void *a,
wint_t c) {
if (isascii(c)) {
return f(c, a);
2020-06-15 14:18:57 +00:00
} else {
return StoaEmitWordEncodedString(f, a, tpenc(c));
2020-06-15 14:18:57 +00:00
}
}
static noinstrument int StoaEmitQuoted(int f(long, void *), void *a, wint_t c) {
if (isascii(c)) {
return StoaEmitWordEncodedString(f, a, cescapec(c));
} else {
return StoaEmitWordEncodedString(f, a, tpenc(c));
}
}
static noinstrument int StoaEmitVisualized(int f(long, void *), void *a,
wint_t c) {
return StoaEmitUnicode(f, a, (*weaken(kCp437))[c]);
}
static noinstrument int StoaEmitQuote(int out(long, void *), void *arg,
unsigned flags, char ch,
unsigned char signbit) {
2020-06-15 14:18:57 +00:00
if (flags & FLAGS_REPR) {
if (signbit == 63) {
if (out('L', arg) == -1) return -1;
} else if (signbit == 15) {
if (out('u', arg) == -1) return -1;
}
if (out(ch, arg) == -1) return -1;
}
return 0;
}
/**
* Converts string to array.
*
* This function is used by palandprintf() to implement the %s and %c
* directives. The content outputted to the array is always UTF-8, but
* the input may be UTF-16 or UTF-32.
*
* @see palandprintf()
2020-06-15 14:18:57 +00:00
*/
int stoa(int out(long, void *), void *arg, void *data, unsigned long flags,
2020-06-15 14:18:57 +00:00
unsigned long precision, unsigned long width, unsigned char signbit,
unsigned char qchar) {
char *p;
wint_t wc;
unsigned n;
emit_f emit;
unsigned w, c, pad;
bool justdobytes, ignorenul;
2020-06-15 14:18:57 +00:00
p = data;
if (!p) {
p = ((flags & FLAGS_REPR) ? "NULL" : "(null)");
flags &= ~FLAGS_PRECISION;
flags |= FLAGS_NOQUOTE;
signbit = 0;
} else {
if (StoaEmitQuote(out, arg, flags, qchar, signbit) == -1) return -1;
}
ignorenul = false;
justdobytes = false;
if (signbit == 15 || signbit == 63) {
if (flags & FLAGS_QUOTE) {
emit = StoaEmitQuoted;
ignorenul = flags & FLAGS_PRECISION;
} else {
emit = StoaEmitUnicode;
}
} else if ((flags & FLAGS_HASH) && weaken(kCp437)) {
justdobytes = true;
emit = StoaEmitVisualized;
ignorenul = flags & FLAGS_PRECISION;
} else if (flags & FLAGS_QUOTE) {
emit = StoaEmitQuoted;
ignorenul = flags & FLAGS_PRECISION;
} else {
justdobytes = true;
emit = StoaEmitByte;
}
if (!(flags & FLAGS_PRECISION)) precision = -1;
if (!(flags & FLAGS_PRECISION) || !ignorenul) {
if (signbit == 63) {
precision = tinywcsnlen((const wchar_t *)p, precision);
} else if (signbit == 15) {
precision = tinystrnlen16((const char16_t *)p, precision);
} else {
precision = strnlen(p, precision);
}
2020-06-15 14:18:57 +00:00
}
pad = 0;
2020-06-15 14:18:57 +00:00
if (width) {
w = precision;
2020-06-15 14:18:57 +00:00
if (signbit == 63) {
if (weaken(wcsnwidth)) {
w = weaken(wcsnwidth)((const wchar_t *)p, precision);
2020-06-15 14:18:57 +00:00
}
} else if (signbit == 15) {
if (weaken(strnwidth16)) {
w = weaken(strnwidth16)((const char16_t *)p, precision);
2020-06-15 14:18:57 +00:00
}
} else if (weaken(strnwidth)) {
w = weaken(strnwidth)(p, precision);
}
if (w < width) {
pad = width - w;
2020-06-15 14:18:57 +00:00
}
}
if (pad && !(flags & FLAGS_LEFT)) {
if (spacepad(out, arg, pad) == -1) return -1;
2020-06-15 14:18:57 +00:00
}
if (justdobytes) {
while (precision--) {
wc = *p++ & 0xff;
if (!wc && !ignorenul) break;
if (emit(out, arg, wc) == -1) return -1;
}
} else {
while (precision--) {
if (signbit == 15) {
wc = *(const char16_t *)p;
if (!wc && !ignorenul) break;
if (IsUcs2(wc)) {
2020-06-15 14:18:57 +00:00
p += sizeof(char16_t);
} else if (IsUtf16Cont(wc)) {
2020-06-15 14:18:57 +00:00
p += sizeof(char16_t);
continue;
} else if (!precision) {
break;
2020-06-15 14:18:57 +00:00
} else {
--precision;
wc = MergeUtf16(wc, *(const char16_t *)p);
2020-06-15 14:18:57 +00:00
}
} else if (signbit == 63) {
wc = *(const wint_t *)p;
if (!wc && !ignorenul) break;
p += sizeof(wint_t);
if (!wc) break;
2020-06-15 14:18:57 +00:00
} else {
wc = *p++ & 0xff;
if (!wc && !ignorenul) break;
if (!isascii(wc)) {
if (ThomPikeCont(wc)) continue;
n = ThomPikeLen(wc) - 1;
wc = ThomPikeByte(wc);
if (n > precision) break;
precision -= n;
while (n--) {
wc = ThomPikeMerge(wc, *p++);
}
2020-06-15 14:18:57 +00:00
}
}
if (emit(out, arg, wc) == -1) return -1;
2020-06-15 14:18:57 +00:00
}
}
if (pad && (flags & FLAGS_LEFT)) {
if (spacepad(out, arg, pad) == -1) return -1;
2020-06-15 14:18:57 +00:00
}
2020-06-15 14:18:57 +00:00
if (!(flags & FLAGS_NOQUOTE) && (flags & FLAGS_REPR)) {
if (out(qchar, arg) == -1) return -1;
}
return 0;
}