1 /* vi: set sw=4 ts=4: */
2 /* printf - format and print data
3 Copyright (C) 90, 91, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19 /* Usage: printf format [argument...]
21 A front end to the printf function that lets it be used from the shell.
29 \c = produce no further output
35 \0ooo = octal number (ooo is 0 to 3 digits)
36 \xhhh = hexadecimal number (hhh is 1 to 3 digits)
40 %b = print an argument string, interpreting backslash escapes
42 The `format' argument is re-used as many times as necessary
43 to convert all of the given arguments.
45 David MacKenzie <djm@gnu.ai.mit.edu> */
48 // 19990508 Busy Boxed! Dave Cinege
53 #include <sys/types.h>
62 # define S_IFMT 0170000
64 #if !defined(S_ISBLK) && defined(S_IFBLK)
65 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
67 #if !defined(S_ISCHR) && defined(S_IFCHR)
68 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
70 #if !defined(S_ISDIR) && defined(S_IFDIR)
71 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
73 #if !defined(S_ISREG) && defined(S_IFREG)
74 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
76 #if !defined(S_ISFIFO) && defined(S_IFIFO)
77 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
79 #if !defined(S_ISLNK) && defined(S_IFLNK)
80 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
82 #if !defined(S_ISSOCK) && defined(S_IFSOCK)
83 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
85 #if !defined(S_ISMPB) && defined(S_IFMPB) /* V7 */
86 # define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
87 # define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
89 #if !defined(S_ISNWK) && defined(S_IFNWK) /* HP/UX */
90 # define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
93 #define IN_CTYPE_DOMAIN(c) 1
96 # define ISBLANK(c) (IN_CTYPE_DOMAIN (c) && isblank (c))
98 # define ISBLANK(c) ((c) == ' ' || (c) == '\t')
101 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isgraph (c))
103 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (c) && !isspace (c))
106 #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (c))
107 #define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (c))
108 #define ISALPHA(c) (IN_CTYPE_DOMAIN (c) && isalpha (c))
109 #define ISCNTRL(c) (IN_CTYPE_DOMAIN (c) && iscntrl (c))
110 #define ISLOWER(c) (IN_CTYPE_DOMAIN (c) && islower (c))
111 #define ISPUNCT(c) (IN_CTYPE_DOMAIN (c) && ispunct (c))
112 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
113 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))
114 #define ISXDIGIT(c) (IN_CTYPE_DOMAIN (c) && isxdigit (c))
115 #define ISDIGIT_LOCALE(c) (IN_CTYPE_DOMAIN (c) && isdigit (c))
116 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
118 #define isodigit(c) ((c) >= '0' && (c) <= '7')
119 #define hextobin(c) ((c)>='a'&&(c)<='f' ? (c)-'a'+10 : (c)>='A'&&(c)<='F' ? (c)-'A'+10 : (c)-'0')
120 #define octtobin(c) ((c) - '0')
122 static double xstrtod __P((char *s));
123 static int print_esc __P((char *escstart));
124 static int print_formatted __P((char *format, int argc, char **argv));
125 static long xstrtol __P((char *s));
126 static unsigned long xstrtoul __P((char *s));
127 static void print_direc
130 (char *start, size_t length, int field_width, int precision,
132 static void print_esc_char __P((int c));
133 static void print_esc_string __P((char *str));
134 static void verify __P((char *s, char *end));
136 /* The value to return to the calling program. */
137 static int exit_status;
139 int printf_main(int argc, char **argv)
145 if (argc <= 1 || **(argv + 1) == '-') {
154 args_used = print_formatted(format, argc, argv);
158 while (args_used > 0 && argc > 0);
162 fprintf(stderr, "excess args ignored");
168 /* Print the text in FORMAT, using ARGV (with ARGC elements) for
169 arguments to any `%' directives.
170 Return the number of elements of ARGV used. */
172 static int print_formatted(char *format, int argc, char **argv)
174 int save_argc = argc; /* Preserve original value. */
175 char *f; /* Pointer into `format'. */
176 char *direc_start; /* Start of % directive. */
177 size_t direc_length; /* Length of % directive. */
178 int field_width; /* Arg to first '*', or -1 if none. */
179 int precision; /* Arg to second '*', or -1 if none. */
181 for (f = format; *f; ++f) {
186 field_width = precision = -1;
193 print_esc_string(*argv);
199 if (strchr("-+ #", *f)) {
207 field_width = xstrtoul(*argv);
213 while (ISDIGIT(*f)) {
224 precision = xstrtoul(*argv);
230 while (ISDIGIT(*f)) {
235 if (*f == 'l' || *f == 'L' || *f == 'h') {
240 if (!strchr ("diouxXfeEgGcs", *f))
241 fprintf(stderr, "%%%c: invalid directive", *f);
245 print_direc(direc_start, direc_length, field_width,
250 print_direc(direc_start, direc_length, field_width,
263 return save_argc - argc;
266 /* Print a \ escape sequence starting at ESCSTART.
267 Return the number of characters in the escape sequence
268 besides the backslash. */
270 static int print_esc(char *escstart)
272 register char *p = escstart + 1;
273 int esc_value = 0; /* Value of \nnn escape. */
274 int esc_length; /* Length of \nnn escape. */
276 /* \0ooo and \xhhh escapes have maximum length of 3 chars. */
278 for (esc_length = 0, ++p;
279 esc_length < 3 && ISXDIGIT(*p); ++esc_length, ++p)
280 esc_value = esc_value * 16 + hextobin(*p);
281 /* if (esc_length == 0)
282 fprintf(stderr, "missing hex in esc");
285 } else if (*p == '0') {
286 for (esc_length = 0, ++p;
287 esc_length < 3 && isodigit(*p); ++esc_length, ++p)
288 esc_value = esc_value * 8 + octtobin(*p);
290 } else if (strchr("\"\\abcfnrtv", *p))
291 print_esc_char(*p++);
293 fprintf(stderr, "\\%c: invalid esc", *p);
295 return p - escstart - 1;
298 /* Output a single-character \ escape. */
300 static void print_esc_char(int c)
303 case 'a': /* Alert. */
306 case 'b': /* Backspace. */
309 case 'c': /* Cancel the rest of the output. */
312 case 'f': /* Form feed. */
315 case 'n': /* New line. */
318 case 'r': /* Carriage return. */
321 case 't': /* Horizontal tab. */
324 case 'v': /* Vertical tab. */
333 /* Print string STR, evaluating \ escapes. */
335 static void print_esc_string(char *str)
339 str += print_esc(str);
345 print_direc(char *start, size_t length, int field_width, int precision,
348 char *p; /* Null-terminated copy of % directive. */
350 p = xmalloc((unsigned) (length + 1));
351 strncpy(p, start, length);
354 switch (p[length - 1]) {
357 if (field_width < 0) {
359 printf(p, xstrtol(argument));
361 printf(p, precision, xstrtol(argument));
364 printf(p, field_width, xstrtol(argument));
366 printf(p, field_width, precision, xstrtol(argument));
374 if (field_width < 0) {
376 printf(p, xstrtoul(argument));
378 printf(p, precision, xstrtoul(argument));
381 printf(p, field_width, xstrtoul(argument));
383 printf(p, field_width, precision, xstrtoul(argument));
392 if (field_width < 0) {
394 printf(p, xstrtod(argument));
396 printf(p, precision, xstrtod(argument));
399 printf(p, field_width, xstrtod(argument));
401 printf(p, field_width, precision, xstrtod(argument));
406 printf(p, *argument);
410 if (field_width < 0) {
414 printf(p, precision, argument);
417 printf(p, field_width, argument);
419 printf(p, field_width, precision, argument);
427 static unsigned long xstrtoul(char *s)
433 val = strtoul(s, &end, 0);
438 static long xstrtol(char *s)
444 val = strtol(s, &end, 0);
449 static double xstrtod(char *s)
455 val = strtod(s, &end);
460 static void verify(char *s, char *end)
463 fprintf(stderr, "%s", s);
468 fprintf(stderr, "%s: expected numeric", s);
470 fprintf(stderr, "%s: not completely converted", s);