2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 16:24:54 +00:00
|
|
|
/* printf - format and print data
|
|
|
|
|
2006-01-06 20:28:05 +00:00
|
|
|
Copyright 1999 Dave Cinege
|
|
|
|
Portions copyright (C) 1990-1996 Free Software Foundation, Inc.
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2006-01-06 20:28:05 +00:00
|
|
|
Licensed under GPL v2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
|
|
/* Usage: printf format [argument...]
|
|
|
|
|
|
|
|
A front end to the printf function that lets it be used from the shell.
|
|
|
|
|
|
|
|
Backslash escapes:
|
|
|
|
|
|
|
|
\" = double quote
|
|
|
|
\\ = backslash
|
|
|
|
\a = alert (bell)
|
|
|
|
\b = backspace
|
|
|
|
\c = produce no further output
|
|
|
|
\f = form feed
|
|
|
|
\n = new line
|
|
|
|
\r = carriage return
|
|
|
|
\t = horizontal tab
|
|
|
|
\v = vertical tab
|
|
|
|
\0ooo = octal number (ooo is 0 to 3 digits)
|
|
|
|
\xhhh = hexadecimal number (hhh is 1 to 3 digits)
|
|
|
|
|
|
|
|
Additional directive:
|
|
|
|
|
|
|
|
%b = print an argument string, interpreting backslash escapes
|
|
|
|
|
2006-10-08 12:49:22 +00:00
|
|
|
The 'format' argument is re-used as many times as necessary
|
1999-10-05 16:24:54 +00:00
|
|
|
to convert all of the given arguments.
|
|
|
|
|
|
|
|
David MacKenzie <djm@gnu.ai.mit.edu> */
|
2000-02-08 19:58:47 +00:00
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
|
|
// 19990508 Busy Boxed! Dave Cinege
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2007-01-29 22:51:00 +00:00
|
|
|
typedef void (*converter)(const char *arg, void *result);
|
2006-09-23 16:01:09 +00:00
|
|
|
|
2007-01-29 22:51:00 +00:00
|
|
|
static void multiconvert(const char *arg, void *result, converter convert)
|
2006-01-06 20:28:05 +00:00
|
|
|
{
|
2007-03-09 16:43:01 +00:00
|
|
|
char s[sizeof(int)*3 + 2];
|
|
|
|
|
2006-01-06 20:28:05 +00:00
|
|
|
if (*arg == '"' || *arg == '\'') {
|
2006-11-27 14:43:21 +00:00
|
|
|
sprintf(s, "%d", (unsigned char)arg[1]);
|
2006-09-23 16:01:09 +00:00
|
|
|
arg = s;
|
2006-01-06 20:28:05 +00:00
|
|
|
}
|
2006-11-27 14:43:21 +00:00
|
|
|
convert(arg, result);
|
2007-03-09 16:43:01 +00:00
|
|
|
/* if there was conversion error, print unconverted string */
|
|
|
|
if (errno)
|
2006-09-23 16:01:09 +00:00
|
|
|
fputs(arg, stderr);
|
2006-01-06 20:28:05 +00:00
|
|
|
}
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2007-01-29 22:51:00 +00:00
|
|
|
static void conv_strtoul(const char *arg, void *result)
|
2006-11-27 14:43:21 +00:00
|
|
|
{
|
2007-03-09 16:43:01 +00:00
|
|
|
*(unsigned long*)result = bb_strtoul(arg, NULL, 0);
|
2006-11-27 14:43:21 +00:00
|
|
|
}
|
2007-01-29 22:51:00 +00:00
|
|
|
static void conv_strtol(const char *arg, void *result)
|
2006-11-27 14:43:21 +00:00
|
|
|
{
|
2007-03-09 16:43:01 +00:00
|
|
|
*(long*)result = bb_strtol(arg, NULL, 0);
|
2006-11-27 14:43:21 +00:00
|
|
|
}
|
2007-01-29 22:51:00 +00:00
|
|
|
static void conv_strtod(const char *arg, void *result)
|
2006-11-27 14:43:21 +00:00
|
|
|
{
|
|
|
|
char *end;
|
|
|
|
/* Well, this one allows leading whitespace... so what */
|
|
|
|
/* What I like much less is that "-" is accepted too! :( */
|
|
|
|
*(double*)result = strtod(arg, &end);
|
|
|
|
if (end[0]) errno = ERANGE;
|
|
|
|
}
|
|
|
|
|
2007-01-29 22:51:00 +00:00
|
|
|
static unsigned long my_xstrtoul(const char *arg)
|
2006-01-06 20:28:05 +00:00
|
|
|
{
|
|
|
|
unsigned long result;
|
2006-11-27 14:43:21 +00:00
|
|
|
multiconvert(arg, &result, conv_strtoul);
|
2006-01-06 20:28:05 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2007-01-29 22:51:00 +00:00
|
|
|
static long my_xstrtol(const char *arg)
|
2006-01-06 20:28:05 +00:00
|
|
|
{
|
|
|
|
long result;
|
2006-11-27 14:43:21 +00:00
|
|
|
multiconvert(arg, &result, conv_strtol);
|
2006-01-06 20:28:05 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2007-01-29 22:51:00 +00:00
|
|
|
static double my_xstrtod(const char *arg)
|
2006-01-06 20:28:05 +00:00
|
|
|
{
|
|
|
|
double result;
|
2006-11-27 14:43:21 +00:00
|
|
|
multiconvert(arg, &result, conv_strtod);
|
2006-01-06 20:28:05 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_esc_string(char *str)
|
|
|
|
{
|
|
|
|
for (; *str; str++) {
|
|
|
|
if (*str == '\\') {
|
|
|
|
str++;
|
2007-09-27 10:20:47 +00:00
|
|
|
bb_putchar(bb_process_escape_sequence((const char **)&str));
|
2006-01-06 20:28:05 +00:00
|
|
|
} else {
|
2007-09-27 10:20:47 +00:00
|
|
|
bb_putchar(*str);
|
2006-01-06 20:28:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-31 11:41:50 +00:00
|
|
|
static void print_direc(char *format, unsigned fmt_length,
|
|
|
|
int field_width, int precision,
|
2007-03-09 16:43:01 +00:00
|
|
|
const char *argument)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2008-05-31 11:41:50 +00:00
|
|
|
char saved;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2008-05-31 11:41:50 +00:00
|
|
|
saved = format[fmt_length];
|
|
|
|
format[fmt_length] = '\0';
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2008-05-31 18:32:56 +00:00
|
|
|
switch (format[fmt_length - 1]) {
|
2007-03-09 16:43:01 +00:00
|
|
|
case 'd':
|
|
|
|
case 'i':
|
|
|
|
if (field_width < 0) {
|
|
|
|
if (precision < 0)
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, my_xstrtol(argument));
|
2007-03-09 16:43:01 +00:00
|
|
|
else
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, precision, my_xstrtol(argument));
|
2007-03-09 16:43:01 +00:00
|
|
|
} else {
|
|
|
|
if (precision < 0)
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, field_width, my_xstrtol(argument));
|
2007-03-09 16:43:01 +00:00
|
|
|
else
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, field_width, precision, my_xstrtol(argument));
|
2007-03-09 16:43:01 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
case 'u':
|
|
|
|
case 'x':
|
|
|
|
case 'X':
|
|
|
|
if (field_width < 0) {
|
|
|
|
if (precision < 0)
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, my_xstrtoul(argument));
|
2007-03-09 16:43:01 +00:00
|
|
|
else
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, precision, my_xstrtoul(argument));
|
2007-03-09 16:43:01 +00:00
|
|
|
} else {
|
|
|
|
if (precision < 0)
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, field_width, my_xstrtoul(argument));
|
2007-03-09 16:43:01 +00:00
|
|
|
else
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, field_width, precision, my_xstrtoul(argument));
|
2007-03-09 16:43:01 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
case 'e':
|
|
|
|
case 'E':
|
|
|
|
case 'g':
|
|
|
|
case 'G':
|
|
|
|
if (field_width < 0) {
|
|
|
|
if (precision < 0)
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, my_xstrtod(argument));
|
2007-03-09 16:43:01 +00:00
|
|
|
else
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, precision, my_xstrtod(argument));
|
2007-03-09 16:43:01 +00:00
|
|
|
} else {
|
|
|
|
if (precision < 0)
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, field_width, my_xstrtod(argument));
|
2007-03-09 16:43:01 +00:00
|
|
|
else
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, field_width, precision, my_xstrtod(argument));
|
2007-03-09 16:43:01 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'c':
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, *argument);
|
2007-03-09 16:43:01 +00:00
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
if (field_width < 0) {
|
|
|
|
if (precision < 0)
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, argument);
|
2007-03-09 16:43:01 +00:00
|
|
|
else
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, precision, argument);
|
2007-03-09 16:43:01 +00:00
|
|
|
} else {
|
|
|
|
if (precision < 0)
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, field_width, argument);
|
2007-03-09 16:43:01 +00:00
|
|
|
else
|
2008-05-31 11:41:50 +00:00
|
|
|
printf(format, field_width, precision, argument);
|
2007-03-09 16:43:01 +00:00
|
|
|
}
|
|
|
|
break;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2008-05-31 11:41:50 +00:00
|
|
|
format[fmt_length] = saved;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2008-05-18 14:28:40 +00:00
|
|
|
/* Print the text in FORMAT, using ARGV for arguments to any '%' directives.
|
|
|
|
Return advanced ARGV. */
|
2008-05-31 11:41:50 +00:00
|
|
|
static char **print_formatted(char *f, char **argv)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2007-03-09 16:43:01 +00:00
|
|
|
char *direc_start; /* Start of % directive. */
|
2008-05-31 11:41:50 +00:00
|
|
|
unsigned direc_length; /* Length of % directive. */
|
2007-03-09 16:43:01 +00:00
|
|
|
int field_width; /* Arg to first '*', or -1 if none. */
|
|
|
|
int precision; /* Arg to second '*', or -1 if none. */
|
2008-06-01 22:36:39 +00:00
|
|
|
char **saved_argv = argv;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2008-05-31 11:41:50 +00:00
|
|
|
for (; *f; ++f) {
|
2000-02-08 19:58:47 +00:00
|
|
|
switch (*f) {
|
|
|
|
case '%':
|
|
|
|
direc_start = f++;
|
|
|
|
direc_length = 1;
|
|
|
|
field_width = precision = -1;
|
|
|
|
if (*f == '%') {
|
2007-09-27 10:20:47 +00:00
|
|
|
bb_putchar('%');
|
2000-02-08 19:58:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (*f == 'b') {
|
2008-05-18 14:28:40 +00:00
|
|
|
if (*argv) {
|
2000-02-08 19:58:47 +00:00
|
|
|
print_esc_string(*argv);
|
|
|
|
++argv;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (strchr("-+ #", *f)) {
|
|
|
|
++f;
|
|
|
|
++direc_length;
|
|
|
|
}
|
|
|
|
if (*f == '*') {
|
|
|
|
++f;
|
|
|
|
++direc_length;
|
2008-05-18 14:28:40 +00:00
|
|
|
if (*argv) {
|
2006-10-08 12:49:22 +00:00
|
|
|
field_width = my_xstrtoul(*argv);
|
2000-02-08 19:58:47 +00:00
|
|
|
++argv;
|
|
|
|
} else
|
|
|
|
field_width = 0;
|
2007-03-09 16:43:01 +00:00
|
|
|
} else {
|
2004-09-15 02:05:23 +00:00
|
|
|
while (isdigit(*f)) {
|
2000-02-08 19:58:47 +00:00
|
|
|
++f;
|
|
|
|
++direc_length;
|
|
|
|
}
|
2007-03-09 16:43:01 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
if (*f == '.') {
|
|
|
|
++f;
|
|
|
|
++direc_length;
|
|
|
|
if (*f == '*') {
|
|
|
|
++f;
|
|
|
|
++direc_length;
|
2008-05-18 14:28:40 +00:00
|
|
|
if (*argv) {
|
2006-10-08 12:49:22 +00:00
|
|
|
precision = my_xstrtoul(*argv);
|
2000-02-08 19:58:47 +00:00
|
|
|
++argv;
|
|
|
|
} else
|
|
|
|
precision = 0;
|
|
|
|
} else
|
2004-09-15 02:05:23 +00:00
|
|
|
while (isdigit(*f)) {
|
2000-02-08 19:58:47 +00:00
|
|
|
++f;
|
|
|
|
++direc_length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (*f == 'l' || *f == 'L' || *f == 'h') {
|
|
|
|
++f;
|
|
|
|
++direc_length;
|
|
|
|
}
|
2004-03-15 08:29:22 +00:00
|
|
|
/*
|
2006-09-23 16:01:09 +00:00
|
|
|
if (!strchr ("diouxXfeEgGcs", *f))
|
|
|
|
fprintf(stderr, "%%%c: invalid directive", *f);
|
|
|
|
*/
|
2000-02-08 19:58:47 +00:00
|
|
|
++direc_length;
|
2008-05-18 14:28:40 +00:00
|
|
|
if (*argv) {
|
2000-02-08 19:58:47 +00:00
|
|
|
print_direc(direc_start, direc_length, field_width,
|
|
|
|
precision, *argv);
|
|
|
|
++argv;
|
|
|
|
} else
|
|
|
|
print_direc(direc_start, direc_length, field_width,
|
|
|
|
precision, "");
|
|
|
|
break;
|
|
|
|
case '\\':
|
2008-06-01 22:36:39 +00:00
|
|
|
if (*++f == 'c') {
|
|
|
|
return saved_argv; /* causes main() to exit */
|
|
|
|
}
|
2007-09-27 10:20:47 +00:00
|
|
|
bb_putchar(bb_process_escape_sequence((const char **)&f));
|
2004-09-15 02:05:23 +00:00
|
|
|
f--;
|
2000-02-08 19:58:47 +00:00
|
|
|
break;
|
|
|
|
default:
|
2007-09-27 10:20:47 +00:00
|
|
|
bb_putchar(*f);
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-18 14:28:40 +00:00
|
|
|
return argv;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2008-05-18 14:28:40 +00:00
|
|
|
int printf_main(int argc ATTRIBUTE_UNUSED, char **argv)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2007-03-09 16:43:01 +00:00
|
|
|
char *format;
|
2008-05-18 14:28:40 +00:00
|
|
|
char **argv2;
|
|
|
|
|
2008-06-01 22:36:39 +00:00
|
|
|
/* We must check that stdout is not closed.
|
|
|
|
* The reason for this is highly non-obvious. printf_main is used from shell.
|
|
|
|
* Shell must correctly handle 'printf "%s" foo'
|
|
|
|
* if stdout is closed. With stdio, output gets shoveled into
|
|
|
|
* stdout buffer, and even fflush cannot clear it out. It seems that
|
|
|
|
* even if libc receives EBADF on write attempts, it feels determined
|
|
|
|
* to output data no matter what. So it will try later,
|
|
|
|
* and possibly will clobber future output. Not good. */
|
|
|
|
if (dup2(1, 1) != 1)
|
|
|
|
return -1;
|
|
|
|
|
2008-05-18 14:28:40 +00:00
|
|
|
/* bash builtin errors out on "printf '-%s-\n' foo",
|
|
|
|
* coreutils-6.9 works. Both work with "printf -- '-%s-\n' foo".
|
|
|
|
* We will mimic coreutils. */
|
|
|
|
if (argv[1] && argv[1][0] == '-' && argv[1][1] == '-' && argv[1][2] == '\0')
|
|
|
|
argv++;
|
|
|
|
if (!argv[1])
|
2007-03-09 16:43:01 +00:00
|
|
|
bb_show_usage();
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2007-03-09 16:43:01 +00:00
|
|
|
format = argv[1];
|
2008-05-18 14:28:40 +00:00
|
|
|
argv2 = argv + 2;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2007-03-09 16:43:01 +00:00
|
|
|
do {
|
2008-05-18 14:28:40 +00:00
|
|
|
argv = argv2;
|
|
|
|
argv2 = print_formatted(format, argv);
|
|
|
|
} while (argv2 != argv && *argv2);
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2008-05-18 14:28:40 +00:00
|
|
|
/* coreutils compat (bash doesn't do this):
|
|
|
|
if (*argv)
|
2007-03-09 16:43:01 +00:00
|
|
|
fprintf(stderr, "excess args ignored");
|
2008-05-18 14:28:40 +00:00
|
|
|
*/
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2007-03-09 16:43:01 +00:00
|
|
|
return EXIT_SUCCESS;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|