2014-05-03 18:27:38 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2014-03-12 21:06:26 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "std.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "systick.h"
|
|
|
|
#include "mpconfig.h"
|
|
|
|
#include "qstr.h"
|
|
|
|
#include "obj.h"
|
2014-03-31 00:06:50 -04:00
|
|
|
#include "pfenv.h"
|
2014-03-12 21:06:26 -04:00
|
|
|
#if 0
|
|
|
|
#include "lcd.h"
|
|
|
|
#endif
|
2014-04-21 07:03:09 -04:00
|
|
|
#include "uart.h"
|
2014-03-12 21:06:26 -04:00
|
|
|
#include "usb.h"
|
|
|
|
|
2014-06-01 08:32:54 -04:00
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
2014-03-12 21:06:26 -04:00
|
|
|
#include "formatfloat.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void pfenv_prints(const pfenv_t *pfenv, const char *str) {
|
|
|
|
pfenv->print_strn(pfenv->data, str, strlen(str));
|
|
|
|
}
|
|
|
|
|
|
|
|
int pfenv_printf(const pfenv_t *pfenv, const char *fmt, va_list args) {
|
|
|
|
int chrs = 0;
|
|
|
|
for (;;) {
|
|
|
|
{
|
|
|
|
const char *f = fmt;
|
|
|
|
while (*f != '\0' && *f != '%') {
|
|
|
|
++f; // XXX UTF8 advance char
|
|
|
|
}
|
|
|
|
if (f > fmt) {
|
|
|
|
pfenv->print_strn(pfenv->data, fmt, f - fmt);
|
|
|
|
chrs += f - fmt;
|
|
|
|
fmt = f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*fmt == '\0') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// move past % character
|
|
|
|
++fmt;
|
|
|
|
|
|
|
|
// parse flags, if they exist
|
|
|
|
int flags = 0;
|
2014-03-31 00:06:50 -04:00
|
|
|
char fill = ' ';
|
2014-03-12 21:06:26 -04:00
|
|
|
while (*fmt != '\0') {
|
|
|
|
if (*fmt == '-') flags |= PF_FLAG_LEFT_ADJUST;
|
|
|
|
else if (*fmt == '+') flags |= PF_FLAG_SHOW_SIGN;
|
|
|
|
else if (*fmt == ' ') flags |= PF_FLAG_SPACE_SIGN;
|
|
|
|
else if (*fmt == '!') flags |= PF_FLAG_NO_TRAILZ;
|
2014-03-31 00:06:50 -04:00
|
|
|
else if (*fmt == '0') {
|
|
|
|
flags |= PF_FLAG_PAD_AFTER_SIGN;
|
|
|
|
fill = '0';
|
|
|
|
} else break;
|
2014-03-12 21:06:26 -04:00
|
|
|
++fmt;
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse width, if it exists
|
|
|
|
int width = 0;
|
|
|
|
for (; '0' <= *fmt && *fmt <= '9'; ++fmt) {
|
|
|
|
width = width * 10 + *fmt - '0';
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse precision, if it exists
|
|
|
|
int prec = -1;
|
|
|
|
if (*fmt == '.') {
|
|
|
|
++fmt;
|
|
|
|
if (*fmt == '*') {
|
|
|
|
++fmt;
|
|
|
|
prec = va_arg(args, int);
|
|
|
|
} else {
|
|
|
|
prec = 0;
|
|
|
|
for (; '0' <= *fmt && *fmt <= '9'; ++fmt) {
|
|
|
|
prec = prec * 10 + *fmt - '0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (prec < 0) {
|
|
|
|
prec = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse long specifiers (current not used)
|
|
|
|
//bool long_arg = false;
|
|
|
|
if (*fmt == 'l') {
|
|
|
|
++fmt;
|
|
|
|
//long_arg = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*fmt == '\0') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (*fmt) {
|
|
|
|
case 'b':
|
|
|
|
if (va_arg(args, int)) {
|
2014-03-31 00:06:50 -04:00
|
|
|
chrs += pfenv_print_strn(pfenv, "true", 4, flags, fill, width);
|
2014-03-12 21:06:26 -04:00
|
|
|
} else {
|
2014-03-31 00:06:50 -04:00
|
|
|
chrs += pfenv_print_strn(pfenv, "false", 5, flags, fill, width);
|
2014-03-12 21:06:26 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
{
|
|
|
|
char str = va_arg(args, int);
|
2014-03-31 00:06:50 -04:00
|
|
|
chrs += pfenv_print_strn(pfenv, &str, 1, flags, fill, width);
|
2014-03-12 21:06:26 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 's':
|
|
|
|
{
|
|
|
|
const char *str = va_arg(args, const char*);
|
|
|
|
if (str) {
|
|
|
|
if (prec < 0) {
|
|
|
|
prec = strlen(str);
|
|
|
|
}
|
2014-03-31 00:06:50 -04:00
|
|
|
chrs += pfenv_print_strn(pfenv, str, prec, flags, fill, width);
|
2014-03-12 21:06:26 -04:00
|
|
|
} else {
|
2014-03-31 00:06:50 -04:00
|
|
|
chrs += pfenv_print_strn(pfenv, "(null)", 6, flags, fill, width);
|
2014-03-12 21:06:26 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'u':
|
2014-03-31 00:06:50 -04:00
|
|
|
chrs += pfenv_print_int(pfenv, va_arg(args, int), 0, 10, 'a', flags, fill, width);
|
2014-03-12 21:06:26 -04:00
|
|
|
break;
|
|
|
|
case 'd':
|
2014-03-31 00:06:50 -04:00
|
|
|
chrs += pfenv_print_int(pfenv, va_arg(args, int), 1, 10, 'a', flags, fill, width);
|
2014-03-12 21:06:26 -04:00
|
|
|
break;
|
|
|
|
case 'x':
|
|
|
|
case 'p': // ?
|
2014-03-31 00:06:50 -04:00
|
|
|
chrs += pfenv_print_int(pfenv, va_arg(args, int), 0, 16, 'a', flags, fill, width);
|
2014-03-12 21:06:26 -04:00
|
|
|
break;
|
|
|
|
case 'X':
|
|
|
|
case 'P': // ?
|
2014-03-31 00:06:50 -04:00
|
|
|
chrs += pfenv_print_int(pfenv, va_arg(args, int), 0, 16, 'A', flags, fill, width);
|
2014-03-12 21:06:26 -04:00
|
|
|
break;
|
2014-06-01 08:32:54 -04:00
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
2014-03-12 21:06:26 -04:00
|
|
|
case 'e':
|
|
|
|
case 'E':
|
|
|
|
case 'f':
|
|
|
|
case 'F':
|
|
|
|
case 'g':
|
|
|
|
case 'G':
|
|
|
|
{
|
2014-03-31 00:06:50 -04:00
|
|
|
#if MICROPY_FLOAT_IMPL == MICROPY_FLOAT_IMPL_FLOAT
|
|
|
|
mp_float_t f = va_arg(args, double);
|
|
|
|
chrs += pfenv_print_float(pfenv, f, *fmt, flags, fill, width, prec);
|
|
|
|
#elif MICROPY_FLOAT_IMPL == MICROPY_FLOAT_IMPL_DOUBLE
|
|
|
|
// Currently pfenv_print_float uses snprintf, so if you want
|
|
|
|
// to use pfenv_print_float with doubles then you'll need
|
|
|
|
// fix it to not use snprintf first. Otherwise you'll have
|
|
|
|
// inifinite recursion.
|
|
|
|
#error Calling pfenv_print_float with double not supported from within printf
|
|
|
|
#else
|
|
|
|
#error Unknown MICROPY FLOAT IMPL
|
|
|
|
#endif
|
2014-03-12 21:06:26 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
pfenv->print_strn(pfenv->data, fmt, 1);
|
|
|
|
chrs += 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++fmt;
|
|
|
|
}
|
|
|
|
return chrs;
|
|
|
|
}
|
|
|
|
|
2014-06-15 04:10:07 -04:00
|
|
|
STATIC void stdout_print_strn(void *data, const char *str, unsigned int len) {
|
2014-06-14 19:41:47 -04:00
|
|
|
// TODO this needs to be replaced with a proper stdio interface ala CPython
|
|
|
|
// send stdout to UART and USB CDC VCP
|
2014-04-21 07:03:09 -04:00
|
|
|
if (pyb_uart_global_debug != PYB_UART_NONE) {
|
|
|
|
uart_tx_strn_cooked(pyb_uart_global_debug, str, len);
|
2014-03-12 21:06:26 -04:00
|
|
|
}
|
|
|
|
if (usb_vcp_is_enabled()) {
|
|
|
|
usb_vcp_send_strn_cooked(str, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const pfenv_t pfenv_stdout = {0, stdout_print_strn};
|
|
|
|
|
|
|
|
int printf(const char *fmt, ...) {
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
int ret = pfenv_printf(&pfenv_stdout, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int vprintf(const char *fmt, va_list ap) {
|
|
|
|
return pfenv_printf(&pfenv_stdout, fmt, ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if MICROPY_DEBUG_PRINTERS
|
|
|
|
int DEBUG_printf(const char *fmt, ...) {
|
|
|
|
(void)stream;
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
int ret = pfenv_printf(&pfenv_stdout, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// need this because gcc optimises printf("%c", c) -> putchar(c), and printf("a") -> putchar('a')
|
|
|
|
int putchar(int c) {
|
|
|
|
char chr = c;
|
|
|
|
stdout_print_strn(0, &chr, 1);
|
|
|
|
return chr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// need this because gcc optimises printf("string\n") -> puts("string")
|
|
|
|
int puts(const char *s) {
|
|
|
|
stdout_print_strn(0, s, strlen(s));
|
|
|
|
char chr = '\n';
|
|
|
|
stdout_print_strn(0, &chr, 1);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct _strn_pfenv_t {
|
|
|
|
char *cur;
|
|
|
|
size_t remain;
|
|
|
|
} strn_pfenv_t;
|
|
|
|
|
|
|
|
void strn_print_strn(void *data, const char *str, unsigned int len) {
|
|
|
|
strn_pfenv_t *strn_pfenv = data;
|
|
|
|
if (len > strn_pfenv->remain) {
|
|
|
|
len = strn_pfenv->remain;
|
|
|
|
}
|
|
|
|
memcpy(strn_pfenv->cur, str, len);
|
|
|
|
strn_pfenv->cur += len;
|
|
|
|
strn_pfenv->remain -= len;
|
|
|
|
}
|
2014-04-17 13:58:09 -04:00
|
|
|
|
2014-03-12 21:06:26 -04:00
|
|
|
int vsnprintf(char *str, size_t size, const char *fmt, va_list ap) {
|
|
|
|
strn_pfenv_t strn_pfenv;
|
|
|
|
strn_pfenv.cur = str;
|
|
|
|
strn_pfenv.remain = size;
|
|
|
|
pfenv_t pfenv;
|
|
|
|
pfenv.data = &strn_pfenv;
|
|
|
|
pfenv.print_strn = strn_print_strn;
|
|
|
|
int len = pfenv_printf(&pfenv, fmt, ap);
|
|
|
|
// add terminating null byte
|
|
|
|
if (size > 0) {
|
|
|
|
if (strn_pfenv.remain == 0) {
|
|
|
|
strn_pfenv.cur[-1] = 0;
|
|
|
|
} else {
|
|
|
|
strn_pfenv.cur[0] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
int snprintf(char *str, size_t size, const char *fmt, ...) {
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
int ret = vsnprintf(str, size, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
return ret;
|
|
|
|
}
|