Expand PMF_FN_* macros.
[netbsd-mini2440.git] / dist / ntp / util / ansi2knr.c
blob575105dee7d40ef92dd87590bdb4d36168dd2e4d
1 /* $NetBSD: ansi2knr.c,v 1.2 2003/12/04 16:23:38 drochner Exp $ */
3 /* Copyright (C) 1989, 2000 Aladdin Enterprises. All rights reserved. */
5 /*Id: ansi2knr.c,v 1.3 2000/04/13 03:41:48 lpd Exp*/
6 /* Convert ANSI C function definitions to K&R ("traditional C") syntax */
8 /*
9 ansi2knr is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY. No author or distributor accepts responsibility to anyone for the
11 consequences of using it or for whether it serves any particular purpose or
12 works at all, unless he says so in writing. Refer to the GNU General Public
13 License (the "GPL") for full details.
15 Everyone is granted permission to copy, modify and redistribute ansi2knr,
16 but only under the conditions described in the GPL. A copy of this license
17 is supposed to have been given to you along with ansi2knr so you can know
18 your rights and responsibilities. It should be in a file named COPYLEFT,
19 or, if there is no file named COPYLEFT, a file named COPYING. Among other
20 things, the copyright notice and this notice must be preserved on all
21 copies.
23 We explicitly state here what we believe is already implied by the GPL: if
24 the ansi2knr program is distributed as a separate set of sources and a
25 separate executable file which are aggregated on a storage medium together
26 with another program, this in itself does not bring the other program under
27 the GPL, nor does the mere fact that such a program or the procedures for
28 constructing it invoke the ansi2knr executable bring any other part of the
29 program under the GPL.
33 * Usage:
34 ansi2knr [--filename FILENAME] [INPUT_FILE [OUTPUT_FILE]]
35 * --filename provides the file name for the #line directive in the output,
36 * overriding input_file (if present).
37 * If no input_file is supplied, input is read from stdin.
38 * If no output_file is supplied, output goes to stdout.
39 * There are no error messages.
41 * ansi2knr recognizes function definitions by seeing a non-keyword
42 * identifier at the left margin, followed by a left parenthesis, with a
43 * right parenthesis as the last character on the line, and with a left
44 * brace as the first token on the following line (ignoring possible
45 * intervening comments and/or preprocessor directives), except that a line
46 * consisting of only
47 * identifier1(identifier2)
48 * will not be considered a function definition unless identifier2 is
49 * the word "void", and a line consisting of
50 * identifier1(identifier2, <<arbitrary>>)
51 * will not be considered a function definition.
52 * ansi2knr will recognize a multi-line header provided that no intervening
53 * line ends with a left or right brace or a semicolon. These algorithms
54 * ignore whitespace, comments, and preprocessor directives, except that
55 * the function name must be the first thing on the line. The following
56 * constructs will confuse it:
57 * - Any other construct that starts at the left margin and
58 * follows the above syntax (such as a macro or function call).
59 * - Some macros that tinker with the syntax of function headers.
63 * The original and principal author of ansi2knr is L. Peter Deutsch
64 * <ghost@aladdin.com>. Other authors are noted in the change history
65 * that follows (in reverse chronological order):
67 lpd 2000-04-12 backs out Eggert's changes because of bugs:
68 - concatlits didn't declare the type of its bufend argument;
69 - concatlits didn't recognize when it was inside a comment;
70 - scanstring could scan backward past the beginning of the string; when
71 - the check for \ + newline in scanstring was unnecessary.
73 2000-03-05 Paul Eggert <eggert@twinsun.com>
75 Add support for concatenated string literals.
76 * ansi2knr.c (concatlits): New decl.
77 (main): Invoke concatlits to concatenate string literals.
78 (scanstring): Handle backslash-newline correctly. Work with
79 character constants. Fix bug when scanning backwards through
80 backslash-quote. Check for unterminated strings.
81 (convert1): Parse character constants, too.
82 (appendline, concatlits): New functions.
83 * ansi2knr.1: Document this.
85 lpd 1999-08-17 added code to allow preprocessor directives
86 wherever comments are allowed
87 lpd 1999-04-12 added minor fixes from Pavel Roskin
88 <pavel_roskin@geocities.com> for clean compilation with
89 gcc -W -Wall
90 lpd 1999-03-22 added hack to recognize lines consisting of
91 identifier1(identifier2, xxx) as *not* being procedures
92 lpd 1999-02-03 made indentation of preprocessor commands consistent
93 lpd 1999-01-28 fixed two bugs: a '/' in an argument list caused an
94 endless loop; quoted strings within an argument list
95 confused the parser
96 lpd 1999-01-24 added a check for write errors on the output,
97 suggested by Jim Meyering <meyering@ascend.com>
98 lpd 1998-11-09 added further hack to recognize identifier(void)
99 as being a procedure
100 lpd 1998-10-23 added hack to recognize lines consisting of
101 identifier1(identifier2) as *not* being procedures
102 lpd 1997-12-08 made input_file optional; only closes input and/or
103 output file if not stdin or stdout respectively; prints
104 usage message on stderr rather than stdout; adds
105 --filename switch (changes suggested by
106 <ceder@lysator.liu.se>)
107 lpd 1996-01-21 added code to cope with not HAVE_CONFIG_H and with
108 compilers that don't understand void, as suggested by
109 Tom Lane
110 lpd 1996-01-15 changed to require that the first non-comment token
111 on the line following a function header be a left brace,
112 to reduce sensitivity to macros, as suggested by Tom Lane
113 <tgl@sss.pgh.pa.us>
114 lpd 1995-06-22 removed #ifndefs whose sole purpose was to define
115 undefined preprocessor symbols as 0; changed all #ifdefs
116 for configuration symbols to #ifs
117 lpd 1995-04-05 changed copyright notice to make it clear that
118 including ansi2knr in a program does not bring the entire
119 program under the GPL
120 lpd 1994-12-18 added conditionals for systems where ctype macros
121 don't handle 8-bit characters properly, suggested by
122 Francois Pinard <pinard@iro.umontreal.ca>;
123 removed --varargs switch (this is now the default)
124 lpd 1994-10-10 removed CONFIG_BROKETS conditional
125 lpd 1994-07-16 added some conditionals to help GNU `configure',
126 suggested by Francois Pinard <pinard@iro.umontreal.ca>;
127 properly erase prototype args in function parameters,
128 contributed by Jim Avera <jima@netcom.com>;
129 correct error in writeblanks (it shouldn't erase EOLs)
130 lpd 1989-xx-xx original version
133 /* Most of the conditionals here are to make ansi2knr work with */
134 /* or without the GNU configure machinery. */
136 #if HAVE_CONFIG_H
137 # include <config.h>
138 #endif
140 #include <stdio.h>
141 #include <ctype.h>
143 #if HAVE_CONFIG_H
146 For properly autoconfiguring ansi2knr, use AC_CONFIG_HEADER(config.h).
147 This will define HAVE_CONFIG_H and so, activate the following lines.
150 # if STDC_HEADERS || HAVE_STRING_H
151 # include <string.h>
152 # else
153 # include <strings.h>
154 # endif
156 #else /* not HAVE_CONFIG_H */
158 /* Otherwise do it the hard way */
160 # ifdef BSD
161 # include <strings.h>
162 # else
163 # ifdef VMS
164 extern int strlen(), strncmp();
165 # else
166 # include <string.h>
167 # endif
168 # endif
170 #endif /* not HAVE_CONFIG_H */
172 #if STDC_HEADERS
173 # include <stdlib.h>
174 #else
176 malloc and free should be declared in stdlib.h,
177 but if you've got a K&R compiler, they probably aren't.
179 # ifdef MSDOS
180 # include <malloc.h>
181 # else
182 # ifdef VMS
183 extern char *malloc();
184 extern void free();
185 # else
186 extern char *malloc();
187 extern int free();
188 # endif
189 # endif
191 #endif
193 /* Define NULL (for *very* old compilers). */
194 #ifndef NULL
195 # define NULL (0)
196 #endif
199 * The ctype macros don't always handle 8-bit characters correctly.
200 * Compensate for this here.
202 #ifdef isascii
203 # undef HAVE_ISASCII /* just in case */
204 # define HAVE_ISASCII 1
205 #else
206 #endif
207 #if STDC_HEADERS || !HAVE_ISASCII
208 # define is_ascii(c) 1
209 #else
210 # define is_ascii(c) isascii(c)
211 #endif
213 #define is_space(c) (is_ascii(c) && isspace(c))
214 #define is_alpha(c) (is_ascii(c) && isalpha(c))
215 #define is_alnum(c) (is_ascii(c) && isalnum(c))
217 /* Scanning macros */
218 #define isidchar(ch) (is_alnum(ch) || (ch) == '_')
219 #define isidfirstchar(ch) (is_alpha(ch) || (ch) == '_')
221 /* Forward references */
222 char *ppdirforward();
223 char *ppdirbackward();
224 char *skipspace();
225 char *scanstring();
226 int writeblanks();
227 int test1();
228 int convert1();
230 /* The main program */
232 main(argc, argv)
233 int argc;
234 char *argv[];
235 { FILE *in = stdin;
236 FILE *out = stdout;
237 char *filename = 0;
238 char *program_name = argv[0];
239 char *output_name = 0;
240 #define bufsize 5000 /* arbitrary size */
241 char *buf;
242 char *line;
243 char *more;
244 char *usage =
245 "Usage: ansi2knr [--filename FILENAME] [INPUT_FILE [OUTPUT_FILE]]\n";
247 * In previous versions, ansi2knr recognized a --varargs switch.
248 * If this switch was supplied, ansi2knr would attempt to convert
249 * a ... argument to va_alist and va_dcl; if this switch was not
250 * supplied, ansi2knr would simply drop any such arguments.
251 * Now, ansi2knr always does this conversion, and we only
252 * check for this switch for backward compatibility.
254 int convert_varargs = 1;
255 int output_error;
257 while ( argc > 1 && argv[1][0] == '-' ) {
258 if ( !strcmp(argv[1], "--varargs") ) {
259 convert_varargs = 1;
260 argc--;
261 argv++;
262 continue;
264 if ( !strcmp(argv[1], "--filename") && argc > 2 ) {
265 filename = argv[2];
266 argc -= 2;
267 argv += 2;
268 continue;
270 fprintf(stderr, "%s: Unrecognized switch: %s\n", program_name,
271 argv[1]);
272 fprintf(stderr, usage);
273 exit(1);
275 switch ( argc )
277 default:
278 fprintf(stderr, usage);
279 exit(0);
280 case 3:
281 output_name = argv[2];
282 out = fopen(output_name, "w");
283 if ( out == NULL ) {
284 fprintf(stderr, "%s: Cannot open output file %s\n",
285 program_name, output_name);
286 exit(1);
288 /* falls through */
289 case 2:
290 in = fopen(argv[1], "r");
291 if ( in == NULL ) {
292 fprintf(stderr, "%s: Cannot open input file %s\n",
293 program_name, argv[1]);
294 exit(1);
296 if ( filename == 0 )
297 filename = argv[1];
298 /* falls through */
299 case 1:
300 break;
302 if ( filename )
303 fprintf(out, "#line 1 \"%s\"\n", filename);
304 buf = malloc(bufsize);
305 if ( buf == NULL )
307 fprintf(stderr, "Unable to allocate read buffer!\n");
308 exit(1);
310 line = buf;
311 while ( fgets(line, (unsigned)(buf + bufsize - line), in) != NULL )
313 test: line += strlen(line);
314 switch ( test1(buf) )
316 case 2: /* a function header */
317 convert1(buf, out, 1, convert_varargs);
318 break;
319 case 1: /* a function */
320 /* Check for a { at the start of the next line. */
321 more = ++line;
322 f: if ( line >= buf + (bufsize - 1) ) /* overflow check */
323 goto wl;
324 if ( fgets(line, (unsigned)(buf + bufsize - line), in) == NULL )
325 goto wl;
326 switch ( *skipspace(ppdirforward(more), 1) )
328 case '{':
329 /* Definitely a function header. */
330 convert1(buf, out, 0, convert_varargs);
331 fputs(more, out);
332 break;
333 case 0:
334 /* The next line was blank or a comment: */
335 /* keep scanning for a non-comment. */
336 line += strlen(line);
337 goto f;
338 default:
339 /* buf isn't a function header, but */
340 /* more might be. */
341 fputs(buf, out);
342 strcpy(buf, more);
343 line = buf;
344 goto test;
346 break;
347 case -1: /* maybe the start of a function */
348 if ( line != buf + (bufsize - 1) ) /* overflow check */
349 continue;
350 /* falls through */
351 default: /* not a function */
352 wl: fputs(buf, out);
353 break;
355 line = buf;
357 if ( line != buf )
358 fputs(buf, out);
359 free(buf);
360 if ( output_name ) {
361 output_error = ferror(out);
362 output_error |= fclose(out);
363 } else { /* out == stdout */
364 fflush(out);
365 output_error = ferror(out);
367 if ( output_error ) {
368 fprintf(stderr, "%s: error writing to %s\n", program_name,
369 (output_name ? output_name : "stdout"));
370 exit(1);
372 if ( in != stdin )
373 fclose(in);
374 return 0;
378 * Skip forward or backward over one or more preprocessor directives.
380 char *
381 ppdirforward(p)
382 char *p;
384 for (; *p == '#'; ++p) {
385 for (; *p != '\r' && *p != '\n'; ++p)
386 if (*p == 0)
387 return p;
388 if (*p == '\r' && p[1] == '\n')
389 ++p;
391 return p;
393 char *
394 ppdirbackward(p, limit)
395 char *p;
396 char *limit;
398 char *np = p;
400 for (;; p = --np) {
401 if (*np == '\n' && np[-1] == '\r')
402 --np;
403 for (; np > limit && np[-1] != '\r' && np[-1] != '\n'; --np)
404 if (np[-1] == 0)
405 return np;
406 if (*np != '#')
407 return p;
412 * Skip over whitespace, comments, and preprocessor directives,
413 * in either direction.
415 char *
416 skipspace(p, dir)
417 char *p;
418 int dir; /* 1 for forward, -1 for backward */
420 for ( ; ; ) {
421 while ( is_space(*p) )
422 p += dir;
423 if ( !(*p == '/' && p[dir] == '*') )
424 break;
425 p += dir; p += dir;
426 while ( !(*p == '*' && p[dir] == '/') ) {
427 if ( *p == 0 )
428 return p; /* multi-line comment?? */
429 p += dir;
431 p += dir; p += dir;
433 return p;
436 /* Scan over a quoted string, in either direction. */
437 char *
438 scanstring(p, dir)
439 char *p;
440 int dir;
442 for (p += dir; ; p += dir)
443 if (*p == '"' && p[-dir] != '\\')
444 return p + dir;
448 * Write blanks over part of a string.
449 * Don't overwrite end-of-line characters.
452 writeblanks(start, end)
453 char *start;
454 char *end;
455 { char *p;
456 for ( p = start; p < end; p++ )
457 if ( *p != '\r' && *p != '\n' )
458 *p = ' ';
459 return 0;
463 * Test whether the string in buf is a function definition.
464 * The string may contain and/or end with a newline.
465 * Return as follows:
466 * 0 - definitely not a function definition;
467 * 1 - definitely a function definition;
468 * 2 - definitely a function prototype (NOT USED);
469 * -1 - may be the beginning of a function definition,
470 * append another line and look again.
471 * The reason we don't attempt to convert function prototypes is that
472 * Ghostscript's declaration-generating macros look too much like
473 * prototypes, and confuse the algorithms.
476 test1(buf)
477 char *buf;
478 { char *p = buf;
479 char *bend;
480 char *endfn;
481 int contin;
483 if ( !isidfirstchar(*p) )
484 return 0; /* no name at left margin */
485 bend = skipspace(ppdirbackward(buf + strlen(buf) - 1, buf), -1);
486 switch ( *bend )
488 case ';': contin = 0 /*2*/; break;
489 case ')': contin = 1; break;
490 case '{': return 0; /* not a function */
491 case '}': return 0; /* not a function */
492 default: contin = -1;
494 while ( isidchar(*p) )
495 p++;
496 endfn = p;
497 p = skipspace(p, 1);
498 if ( *p++ != '(' )
499 return 0; /* not a function */
500 p = skipspace(p, 1);
501 if ( *p == ')' )
502 return 0; /* no parameters */
503 /* Check that the apparent function name isn't a keyword. */
504 /* We only need to check for keywords that could be followed */
505 /* by a left parenthesis (which, unfortunately, is most of them). */
506 { static char *words[] =
507 { "asm", "auto", "case", "char", "const", "double",
508 "extern", "float", "for", "if", "int", "long",
509 "register", "return", "short", "signed", "sizeof",
510 "static", "switch", "typedef", "unsigned",
511 "void", "volatile", "while", 0
513 char **key = words;
514 char *kp;
515 unsigned len = endfn - buf;
517 while ( (kp = *key) != 0 )
518 { if ( strlen(kp) == len && !strncmp(kp, buf, len) )
519 return 0; /* name is a keyword */
520 key++;
524 char *id = p;
525 int len;
527 * Check for identifier1(identifier2) and not
528 * identifier1(void), or identifier1(identifier2, xxxx).
531 while ( isidchar(*p) )
532 p++;
533 len = p - id;
534 p = skipspace(p, 1);
535 if (*p == ',' ||
536 (*p == ')' && (len != 4 || strncmp(id, "void", 4)))
538 return 0; /* not a function */
541 * If the last significant character was a ), we need to count
542 * parentheses, because it might be part of a formal parameter
543 * that is a procedure.
545 if (contin > 0) {
546 int level = 0;
548 for (p = skipspace(buf, 1); *p; p = skipspace(p + 1, 1))
549 level += (*p == '(' ? 1 : *p == ')' ? -1 : 0);
550 if (level > 0)
551 contin = -1;
553 return contin;
556 /* Convert a recognized function definition or header to K&R syntax. */
558 convert1(buf, out, header, convert_varargs)
559 char *buf;
560 FILE *out;
561 int header; /* Boolean */
562 int convert_varargs; /* Boolean */
563 { char *endfn;
564 char *p;
566 * The breaks table contains pointers to the beginning and end
567 * of each argument.
569 char **breaks;
570 unsigned num_breaks = 2; /* for testing */
571 char **btop;
572 char **bp;
573 char **ap;
574 char *vararg = 0;
576 /* Pre-ANSI implementations don't agree on whether strchr */
577 /* is called strchr or index, so we open-code it here. */
578 for ( endfn = buf; *(endfn++) != '('; )
580 top: p = endfn;
581 breaks = (char **)malloc(sizeof(char *) * num_breaks * 2);
582 if ( breaks == NULL )
583 { /* Couldn't allocate break table, give up */
584 fprintf(stderr, "Unable to allocate break table!\n");
585 fputs(buf, out);
586 return -1;
588 btop = breaks + num_breaks * 2 - 2;
589 bp = breaks;
590 /* Parse the argument list */
592 { int level = 0;
593 char *lp = NULL;
594 char *rp = NULL;
595 char *end = NULL;
597 if ( bp >= btop )
598 { /* Filled up break table. */
599 /* Allocate a bigger one and start over. */
600 free((char *)breaks);
601 num_breaks <<= 1;
602 goto top;
604 *bp++ = p;
605 /* Find the end of the argument */
606 for ( ; end == NULL; p++ )
607 { switch(*p)
609 case ',':
610 if ( !level ) end = p;
611 break;
612 case '(':
613 if ( !level ) lp = p;
614 level++;
615 break;
616 case ')':
617 if ( --level < 0 ) end = p;
618 else rp = p;
619 break;
620 case '/':
621 if (p[1] == '*')
622 p = skipspace(p, 1) - 1;
623 break;
624 case '"':
625 p = scanstring(p, 1) - 1;
626 break;
627 default:
631 /* Erase any embedded prototype parameters. */
632 if ( lp && rp )
633 writeblanks(lp + 1, rp);
634 p--; /* back up over terminator */
635 /* Find the name being declared. */
636 /* This is complicated because of procedure and */
637 /* array modifiers. */
638 for ( ; ; )
639 { p = skipspace(p - 1, -1);
640 switch ( *p )
642 case ']': /* skip array dimension(s) */
643 case ')': /* skip procedure args OR name */
644 { int level = 1;
645 while ( level )
646 switch ( *--p )
648 case ']': case ')':
649 level++;
650 break;
651 case '[': case '(':
652 level--;
653 break;
654 case '/':
655 if (p > buf && p[-1] == '*')
656 p = skipspace(p, -1) + 1;
657 break;
658 case '"':
659 p = scanstring(p, -1) + 1;
660 break;
661 default: ;
664 if ( *p == '(' && *skipspace(p + 1, 1) == '*' )
665 { /* We found the name being declared */
666 while ( !isidfirstchar(*p) )
667 p = skipspace(p, 1) + 1;
668 goto found;
670 break;
671 default:
672 goto found;
675 found: if ( *p == '.' && p[-1] == '.' && p[-2] == '.' )
676 { if ( convert_varargs )
677 { *bp++ = "va_alist";
678 vararg = p-2;
680 else
681 { p++;
682 if ( bp == breaks + 1 ) /* sole argument */
683 writeblanks(breaks[0], p);
684 else
685 writeblanks(bp[-1] - 1, p);
686 bp--;
689 else
690 { while ( isidchar(*p) ) p--;
691 *bp++ = p+1;
693 p = end;
695 while ( *p++ == ',' );
696 *bp = p;
697 /* Make a special check for 'void' arglist */
698 if ( bp == breaks+2 )
699 { p = skipspace(breaks[0], 1);
700 if ( !strncmp(p, "void", 4) )
701 { p = skipspace(p+4, 1);
702 if ( p == breaks[2] - 1 )
703 { bp = breaks; /* yup, pretend arglist is empty */
704 writeblanks(breaks[0], p + 1);
708 /* Put out the function name and left parenthesis. */
709 p = buf;
710 while ( p != endfn ) putc(*p, out), p++;
711 /* Put out the declaration. */
712 if ( header )
713 { fputs(");", out);
714 for ( p = breaks[0]; *p; p++ )
715 if ( *p == '\r' || *p == '\n' )
716 putc(*p, out);
718 else
719 { for ( ap = breaks+1; ap < bp; ap += 2 )
720 { p = *ap;
721 while ( isidchar(*p) )
722 putc(*p, out), p++;
723 if ( ap < bp - 1 )
724 fputs(", ", out);
726 fputs(") ", out);
727 /* Put out the argument declarations */
728 for ( ap = breaks+2; ap <= bp; ap += 2 )
729 (*ap)[-1] = ';';
730 if ( vararg != 0 )
731 { *vararg = 0;
732 fputs(breaks[0], out); /* any prior args */
733 fputs("va_dcl", out); /* the final arg */
734 fputs(bp[0], out);
736 else
737 fputs(breaks[0], out);
739 free((char *)breaks);
740 return 0;