blah, forgot to save last time to fix whitespacing
[oweals/busybox.git] / coreutils / printf.c
index d579a9b4e49069fd5e915588058e7db36cf62ec6..da5e46a58829d0ed0994bc7619482cb8ae238ca5 100644 (file)
 #include <stdlib.h>
 #include <fcntl.h>
 #include <ctype.h>
+#include <assert.h>
 #include "busybox.h"
 
-
-#ifndef S_IFMT
-static const int S_IFMT = 0170000;
-#endif
-#if !defined(S_ISBLK) && defined(S_IFBLK)
-# define       S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
-#endif
-#if !defined(S_ISCHR) && defined(S_IFCHR)
-# define       S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
-#endif
-#if !defined(S_ISDIR) && defined(S_IFDIR)
-# define       S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
-#endif
-#if !defined(S_ISREG) && defined(S_IFREG)
-# define       S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
-#endif
-#if !defined(S_ISFIFO) && defined(S_IFIFO)
-# define       S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
-#endif
-#if !defined(S_ISLNK) && defined(S_IFLNK)
-# define       S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
-#endif
-#if !defined(S_ISSOCK) && defined(S_IFSOCK)
-# define       S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
-#endif
-#if !defined(S_ISMPB) && defined(S_IFMPB)      /* V7 */
-# define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
-# define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
-#endif
-#if !defined(S_ISNWK) && defined(S_IFNWK)      /* HP/UX */
-# define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
-#endif
-
-#define IN_CTYPE_DOMAIN(c) 1
-
-#define ISXDIGIT(c) (IN_CTYPE_DOMAIN (c) && isxdigit (c))
-#define ISDIGIT_LOCALE(c) (IN_CTYPE_DOMAIN (c) && isdigit (c))
-#define ISDIGIT(c) (((unsigned char) (c)) - '0' <= 9)
-
-#define isodigit(c) ((c) >= '0' && (c) <= '7')
-#define hextobin(c) ((c)>='a'&&(c)<='f' ? (c)-'a'+10 : (c)>='A'&&(c)<='F' ? (c)-'A'+10 : (c)-'0')
-#define octtobin(c) ((c) - '0')
-
 static double xstrtod __P((char *s));
-static int print_esc __P((char *escstart));
-static int print_formatted __P((char *format, int argc, char **argv));
 static long xstrtol __P((char *s));
 static unsigned long xstrtoul __P((char *s));
-static void print_direc
-__P(
-
-       (char *start, size_t length, int field_width, int precision,
-        char *argument));
-static void print_esc_char __P((int c));
 static void print_esc_string __P((char *str));
-static void verify __P((char *s, char *end));
-
-/* The value to return to the calling program.  */
-static int exit_status;
+static int print_formatted __P((char *format, int argc, char **argv));
+static void print_direc __P( (char *start, size_t length,
+                       int field_width, int precision, char *argument));
 
 int printf_main(int argc, char **argv)
 {
        char *format;
        int args_used;
 
-       exit_status = 0;
        if (argc <= 1 || **(argv + 1) == '-') {
-               show_usage();
+               bb_show_usage();
        }
 
        format = argv[1];
@@ -143,7 +91,7 @@ int printf_main(int argc, char **argv)
     fprintf(stderr, "excess args ignored");
 */
 
-       return(exit_status);
+       return EXIT_SUCCESS;
 }
 
 /* Print the text in FORMAT, using ARGV (with ARGC elements) for
@@ -191,7 +139,7 @@ static int print_formatted(char *format, int argc, char **argv)
                                } else
                                        field_width = 0;
                        } else
-                               while (ISDIGIT(*f)) {
+                               while (isdigit(*f)) {
                                        ++f;
                                        ++direc_length;
                                }
@@ -208,7 +156,7 @@ static int print_formatted(char *format, int argc, char **argv)
                                        } else
                                                precision = 0;
                                } else
-                                       while (ISDIGIT(*f)) {
+                                       while (isdigit(*f)) {
                                                ++f;
                                                ++direc_length;
                                        }
@@ -217,7 +165,7 @@ static int print_formatted(char *format, int argc, char **argv)
                                ++f;
                                ++direc_length;
                        }
-                       /*  
+                       /*
                           if (!strchr ("diouxXfeEgGcs", *f))
                           fprintf(stderr, "%%%c: invalid directive", *f);
                         */
@@ -233,7 +181,10 @@ static int print_formatted(char *format, int argc, char **argv)
                        break;
 
                case '\\':
-                       f += print_esc(f);
+                       if (*++f == 'c')
+                               exit(0);
+                       putchar(bb_process_escape_sequence((const char **)&f));
+                       f--;
                        break;
 
                default:
@@ -244,84 +195,6 @@ static int print_formatted(char *format, int argc, char **argv)
        return save_argc - argc;
 }
 
-/* Print a \ escape sequence starting at ESCSTART.
-   Return the number of characters in the escape sequence
-   besides the backslash. */
-
-static int print_esc(char *escstart)
-{
-       register char *p = escstart + 1;
-       int esc_value = 0;                      /* Value of \nnn escape. */
-       int esc_length;                         /* Length of \nnn escape. */
-
-       /* \0ooo and \xhhh escapes have maximum length of 3 chars. */
-       if (*p == 'x') {
-               for (esc_length = 0, ++p;
-                        esc_length < 3 && ISXDIGIT(*p); ++esc_length, ++p)
-                       esc_value = esc_value * 16 + hextobin(*p);
-/*      if (esc_length == 0)
-       fprintf(stderr, "missing hex in esc");
-*/
-               putchar(esc_value);
-       } else if (*p == '0') {
-               for (esc_length = 0, ++p;
-                        esc_length < 3 && isodigit(*p); ++esc_length, ++p)
-                       esc_value = esc_value * 8 + octtobin(*p);
-               putchar(esc_value);
-       } else if (strchr("\"\\abcfnrtv", *p))
-               print_esc_char(*p++);
-/*  else
-    fprintf(stderr, "\\%c: invalid esc", *p);
-*/
-       return p - escstart - 1;
-}
-
-/* Output a single-character \ escape.  */
-
-static void print_esc_char(int c)
-{
-       switch (c) {
-       case 'a':                                       /* Alert. */
-               putchar(7);
-               break;
-       case 'b':                                       /* Backspace. */
-               putchar(8);
-               break;
-       case 'c':                                       /* Cancel the rest of the output. */
-               exit(0);
-               break;
-       case 'f':                                       /* Form feed. */
-               putchar(12);
-               break;
-       case 'n':                                       /* New line. */
-               putchar(10);
-               break;
-       case 'r':                                       /* Carriage return. */
-               putchar(13);
-               break;
-       case 't':                                       /* Horizontal tab. */
-               putchar(9);
-               break;
-       case 'v':                                       /* Vertical tab. */
-               putchar(11);
-               break;
-       default:
-               putchar(c);
-               break;
-       }
-}
-
-/* Print string STR, evaluating \ escapes. */
-
-static void print_esc_string(char *str)
-{
-       for (; *str; str++)
-               if (*str == '\\')
-                       str += print_esc(str);
-               else
-                       putchar(*str);
-}
-
 static void
 print_direc(char *start, size_t length, int field_width, int precision,
                        char *argument)
@@ -405,51 +278,39 @@ print_direc(char *start, size_t length, int field_width, int precision,
        free(p);
 }
 
-static unsigned long xstrtoul(char *s)
+static unsigned long xstrtoul(char *arg)
 {
-       char *end;
-       unsigned long val;
-
-       errno = 0;
-       val = strtoul(s, &end, 0);
-       verify(s, end);
-       return val;
+       unsigned long result;
+       if (safe_strtoul(arg, &result))
+               fprintf(stderr, "%s", arg);
+       return result;
 }
 
-static long xstrtol(char *s)
+static long xstrtol(char *arg)
 {
-       char *end;
-       long val;
-
-       errno = 0;
-       val = strtol(s, &end, 0);
-       verify(s, end);
-       return val;
+       long result;
+       if (safe_strtol(arg, &result))
+               fprintf(stderr, "%s", arg);
+       return result;
 }
 
-static double xstrtod(char *s)
+static double xstrtod(char *arg)
 {
-       char *end;
-       double val;
-
-       errno = 0;
-       val = strtod(s, &end);
-       verify(s, end);
-       return val;
+       double result;
+       if (safe_strtod(arg, &result))
+               fprintf(stderr, "%s", arg);
+       return result;
 }
 
-static void verify(char *s, char *end)
+static void print_esc_string(char *str)
 {
-       if (errno) {
-               fprintf(stderr, "%s", s);
-               exit_status = 1;
-       } else if (*end) {
-               /*
-                  if (s == end)
-                  fprintf(stderr, "%s: expected numeric", s);
-                  else
-                  fprintf(stderr, "%s: not completely converted", s);
-                */
-               exit_status = 1;
+       for (; *str; str++) {
+               if (*str == '\\') {
+                       str++;
+                       putchar(bb_process_escape_sequence((const char **)&str));
+               } else {
+                       putchar(*str);
+               }
+
        }
 }