#include <stdarg.h>
#include <stddef.h>
#include <rtapi_ctype.h>
#include <rtapi_math.h>
#include <rtapi_string.h>
static int strn_len(const char *s, int count)
{
const char *sc;
for (sc = s; count-- && *sc != '\0'; ++sc);
return sc - s;
}
static int skip_atoi(const char **s)
{
int i = 0;
while (isdigit(**s))
i = i * 10 + *((*s)++) - '0';
return i;
}
#define ZEROPAD 1
#define SIGN 2
#define PLUS 4
#define SPACE 8
#define LEFT 16
#define SPECIAL 32
#define LARGE 64
static const char small_digits[] = "0123456789abcdefghijklmnopqrstuvwxyz";
static const char large_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
static char *ch(char *buf, char *end, char ch)
{
if(buf <= end) *buf = ch;
return buf+1;
}
static char *st(char *buf, char *end, const char *add)
{
while(*add)
buf = ch(buf, end, *add++);
return buf;
}
static char *number(char *buf, char *end, long long numll, int base,
int size, int precision, int type)
{
unsigned long num;
char c, sign, tmp[66];
const char *digits;
int i;
digits = (type & LARGE) ? large_digits : small_digits;
if (type & LEFT) {
type &= ~ZEROPAD;
}
if (base < 2 || base > 36) {
return 0;
}
c = (type & ZEROPAD) ? '0' : ' ';
sign = 0;
num = (unsigned long) numll;
if (type & SIGN) {
if (numll < 0) {
sign = '-';
num = -numll;
size--;
} else if (type & PLUS) {
sign = '+';
size--;
} else if (type & SPACE) {
sign = ' ';
size--;
}
}
if (type & SPECIAL) {
if (base == 16) {
size -= 2;
} else if (base == 8) {
size--;
}
}
i = 0;
if (num == 0) {
tmp[i++] = '0';
} else
while (num != 0) {
tmp[i++] = digits[num % base];
num /= base;
}
if (i > precision) {
precision = i;
}
size -= precision;
if (!(type & (ZEROPAD + LEFT))) {
while (size-- > 0) buf = ch(buf, end, ' ');
}
if (sign) buf = ch(buf, end, sign);
if (type & SPECIAL) {
if (base == 8) {
buf = ch(buf, end, '0');
} else if (base == 16) {
buf = ch(buf, end, '0');
buf = ch(buf, end, digits[33]);
}
}
if (!(type & LEFT)) {
while (size-- > 0) buf = ch(buf, end, c);
}
while (i < precision--) {
buf = ch(buf, end, '0');
}
while (i-- > 0) {
buf = ch(buf, end, tmp[i]);
}
while (size-- > 0) {
buf = ch(buf, end, ' ');
}
return buf;
}
#if defined(__i386__) || defined(__amd64__) || defined(__arm__)
#define IS_IEEE754
#endif
#if defined(IS_IEEE754)
static int next_digit(unsigned long long *mantissa)
{
int result = ((*mantissa) >> 52) & 0xf;
*mantissa = ((*mantissa) << 4) & ((1ull<<56)-1);
return result;
}
#endif
static char *fnumber(char *buf, char *end, double num)
{
#if defined(IS_IEEE754)
union ieee754_double du;
int exponent, i;
unsigned long long mantissa;
du.d = num;
if(du.ieee.negative) buf = ch(buf, end, '-');
if(du.ieee.exponent == 0x7ff) {
if(du.ieee.mantissa0 == 0 && du.ieee.mantissa1 == 0) {
buf = st(buf, end, "Inf"); return buf;
} else {
buf = st(buf, end, "NaN"); return buf;
}
} else if(du.ieee.exponent == 0) {
exponent = du.ieee.exponent - IEEE754_DOUBLE_BIAS;
mantissa = ((unsigned long long)du.ieee.mantissa0 << 32) + du.ieee.mantissa1;
if(mantissa == 0) {
exponent = 0;
} else {
while(!(mantissa & (1ull<<52))) {
exponent--;
mantissa <<= 1;
}
}
} else {
exponent = du.ieee.exponent - IEEE754_DOUBLE_BIAS;
mantissa = ((unsigned long long)du.ieee.mantissa0 << 32) + du.ieee.mantissa1 + (1ull<<52);
}
buf = st(buf, end, "0x");
i = next_digit(&mantissa);
buf = ch(buf, end, large_digits[i]);
if(mantissa) { buf = ch(buf, end, '.'); }
while(mantissa) {
i = next_digit(&mantissa);
buf = ch(buf, end, large_digits[i]);
}
buf = ch(buf, end, 'P');
buf = number(buf, end, exponent, 10, 0, 0, PLUS|SIGN);
#else
int exp;
double mantissa = frexp(fabs(num), &exp);
int i;
if(signbit(num)) buf = ch(buf, end, '-');
if(isnan(num)) { buf = st(buf, end, "NaN"); return buf; }
if(isinf(num)) { buf = st(buf, end, "Inf"); return buf; }
buf = st(buf, end, "0x");
while(mantissa != 0 && mantissa < 1) { mantissa *= 2; exp -= 1; }
i = (int)floor(mantissa);
buf = ch(buf, end, large_digits[i]);
mantissa = 16 * (mantissa - i);
if(mantissa) { buf = ch(buf, end, '.'); }
while(mantissa) {
i = (int)floor(mantissa);
buf = ch(buf, end, large_digits[i]);
mantissa = 16 * (mantissa - i);
}
buf = ch(buf, end, 'P');
buf = number(buf, end, exp, 10, 0, 0, PLUS|SIGN);
#endif
return buf;
}
int rtapi_vsnprintf(char *buf, unsigned long size, const char *fmt, va_list args)
{
int len;
unsigned long long num;
int i, base;
char *str, *end, c;
const char *s;
int flags;
int field_width;
int precision;
int qualifier;
str = buf;
end = buf + size - 1;
if (end <= buf) {
return -1;
}
for (; *fmt; ++fmt) {
if (*fmt != '%') {
if (str <= end) {
*str = *fmt;
}
++str;
continue;
}
flags = 0;
repeat:
++fmt;
switch (*fmt) {
case '-':
flags |= LEFT;
goto repeat;
case '+':
flags |= PLUS;
goto repeat;
case ' ':
flags |= SPACE;
goto repeat;
case '#':
flags |= SPECIAL;
goto repeat;
case '0':
flags |= ZEROPAD;
goto repeat;
}
field_width = -1;
if (isdigit(*fmt)) {
field_width = skip_atoi(&fmt);
} else if (*fmt == '*') {
++fmt;
field_width = va_arg(args, int);
if (field_width < 0) {
field_width = -field_width;
flags |= LEFT;
}
}
precision = -1;
if (*fmt == '.') {
++fmt;
if (isdigit(*fmt)) {
precision = skip_atoi(&fmt);
} else if (*fmt == '*') {
++fmt;
precision = va_arg(args, int);
}
if (precision < 0) {
precision = 0;
}
}
qualifier = -1;
if (*fmt == 'h' || *fmt == 'l' || *fmt == 'z') {
qualifier = *fmt;
++fmt;
}
base = 10;
switch (*fmt) {
case 'c':
if (!(flags & LEFT)) {
while (--field_width > 0) {
if (str <= end) {
*str = ' ';
}
++str;
}
}
c = (unsigned char) va_arg(args, int);
if (str <= end) {
*str = c;
}
++str;
while (--field_width > 0) {
if (str <= end) {
*str = ' ';
}
++str;
}
continue;
case 's':
s = va_arg(args, char *);
if (!s) {
s = "<NULL>";
}
len = strn_len(s, precision);
if (!(flags & LEFT)) {
while (len < field_width--) {
if (str <= end) {
*str = ' ';
}
++str;
}
}
for (i = 0; i < len; ++i) {
str = ch(str, end, *s);
++s;
}
while (len < field_width--) {
str = ch(str, end, ' ');
}
continue;
case 'p':
if (field_width == -1) {
field_width = 2 * sizeof(void *);
flags |= ZEROPAD;
}
str = number(str, end, (unsigned long) va_arg(args, void *),
16, field_width, precision, flags);
continue;
case 'e': case 'E':
case 'f': case 'F':
case 'g': case 'G':
case 'a': case 'A':
{
double d = va_arg(args, double);
str = fnumber(str, end, d);
continue;
}
case '%':
str = ch(str, end, '%');
continue;
case 'o':
base = 8;
break;
case 'X':
flags |= LARGE;
case 'x':
base = 16;
break;
case 'd':
case 'i':
flags |= SIGN;
case 'u':
break;
default:
str = ch(str, end, '%');
if (*fmt) {
str = ch(str, end, *fmt);
} else {
--fmt;
}
continue;
}
if (qualifier == 'l' || (qualifier == 'z' && sizeof(size_t) == sizeof(long))) {
num = va_arg(args, unsigned long);
if (flags & SIGN) {
num = (signed long) num;
}
} else if (qualifier == 'h') {
num = (unsigned short) va_arg(args, int);
if (flags & SIGN) {
num = (signed short) num;
}
} else {
num = va_arg(args, unsigned int);
if (flags & SIGN) {
num = (signed int) num;
}
}
str = number(str, end, num, base, field_width, precision, flags);
}
if (str <= end) {
*str = '\0';
} else if (size > 0) {
*end = '\0';
}
return str - buf;
}
char *strsep(char **s, const char *ct)
{
char *sbegin = *s, *end;
if (!sbegin)
return (char*)0;
end = strpbrk(sbegin, ct);
if (end)
*end++ = '\0';
*s = end;
return sbegin;
}