1 /* fix-header.c - Make C header file suitable for C++.
2 Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the
6 Free Software Foundation; either version 2, or (at your option) any
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* This program massages a system include file (such as stdio.h),
19 into a form more conforming with ANSI/POSIX, and more suitable for C++:
21 * extern "C" { ... } braces are added (inside #ifndef __cplusplus),
22 if they seem to be needed. These prevent C++ compilers from name
23 mangling the functions inside the braces.
25 * If an old-style incomplete function declaration is seen (without
26 an argument list), and it is a "standard" function listed in
27 the file sys-protos.h (and with a non-empty argument list), then
28 the declaration is converted to a complete prototype by replacing
29 the empty parameter list with the argument lust from sys-protos.h.
31 * The program can be given a list of (names of) required standard
32 functions (such as fclose for stdio.h). If a required function
33 is not seen in the input, then a prototype for it will be
34 written to the output.
36 * If all of the non-comment code of the original file is protected
37 against multiple inclusion:
40 <body of include file>
42 then extra matter added to the include file is placed inside the <body>.
44 * If the input file is OK (nothing needs to be done);
45 the output file is not written (nor removed if it exists).
47 There are also some special actions that are done for certain
48 well-known standard include files:
50 * If argv[1] is "sys/stat.h", the Posix.1 macros
51 S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISREG are added if
52 they were missing, and the corresponding "traditional" S_IFxxx
55 * If argv[1] is "errno.h", errno is declared if it was missing.
57 * TODO: The input file should be read complete into memory, because:
58 a) it needs to be scanned twice anyway, and
59 b) it would be nice to allow update in place.
62 fix-header FOO.H INFILE.H OUTFILE.H [OPTIONS]
64 * FOO.H is the relative file name of the include file,
65 as it would be #include'd by a C file. (E.g. stdio.h)
66 * INFILE.H is a full pathname for the input file (e.g. /usr/include/stdio.h)
67 * OUTFILE.H is the full pathname for where to write the output file,
68 if anything needs to be done. (e.g. ./include/stdio.h)
69 * OPTIONS are such as you would pass to cpp.
71 Written by Per Bothner <bothner@cygnus.com>, July 1993. */
84 #define const /* nothing */
90 int partial_count
= 0;
93 /* We no longer need to add extern "C", because cpp implicitly
94 forces the standard include files to be treated as C. */
95 /*#define ADD_MISSING_EXTERN_C 1 */
97 #if ADD_MISSING_EXTERN_C
98 int missing_extern_C_count
= 0;
101 #include "xsys-protos.h"
103 #ifdef FIXPROTO_IGNORE_LIST
104 /* This is a currently unused feature. */
106 /* List of files and directories to ignore.
107 A directory name (ending in '/') means ignore anything in that
108 directory. (It might be more efficient to do directory pruning
109 earlier in fixproto, but this is simpler and easier to customize.) */
111 static char *files_to_ignore
[] = {
122 /* Certain standard files get extra treatment */
133 /* A NAMELIST is a sequence of names, separated by '\0', and terminated
134 by an empty name (i.e. by "\0\0"). */
136 typedef const char* namelist
;
138 /* The following macros provide the bits for symbol_flags. */
139 typedef int symbol_flags
;
141 /* Used to mark names defined in the ANSI/ISO C standard. */
142 #define ANSI_SYMBOL 1
144 /* Used to mark names defined in the Posix.1 or Posix.2 standard. */
145 #define POSIX1_SYMBOL 2
146 #define POSIX2_SYMBOL 4
148 /* Used to mark names defined in X/Open Portability Guide. */
149 #define XOPEN_SYMBOL 8
150 /* Used to mark names defined in X/Open UNIX Extensions. */
151 #define XOPEN_EXTENDED_SYMBOL 16
153 /* Used to indicate names that are not functions */
154 #define MACRO_SYMBOL 512
161 #define SYMBOL_TABLE_SIZE 10
162 struct symbol_list symbol_table
[SYMBOL_TABLE_SIZE
];
163 int cur_symbol_table_size
;
166 add_symbols (flags
, names
)
170 symbol_table
[cur_symbol_table_size
].flags
= flags
;
171 symbol_table
[cur_symbol_table_size
].names
= names
;
172 cur_symbol_table_size
++;
173 if (cur_symbol_table_size
>= SYMBOL_TABLE_SIZE
)
174 fatal ("too many calls to add_symbols");
175 symbol_table
[cur_symbol_table_size
].names
= NULL
; /* Termination. */
178 struct std_include_entry
{
184 const char NONE
[] = ""; /* The empty namelist. */
186 /* Special name to indicate a continuation line in std_include_table. */
187 const char CONTINUED
[] = "";
189 struct std_include_entry
*include_entry
;
191 struct std_include_entry std_include_table
[] = {
192 { "ctype.h", ANSI_SYMBOL
,
193 "isalnum\0isalpha\0iscntrl\0isdigit\0isgraph\0islower\0\
194 isprint\0ispunct\0isspace\0isupper\0isxdigit\0tolower\0toupper\0" },
196 { "dirent.h", POSIX1_SYMBOL
, "closedir\0opendir\0readdir\0rewinddir\0"},
198 { "errno.h", ANSI_SYMBOL
|MACRO_SYMBOL
, "errno\0" },
200 /* ANSI_SYMBOL is wrong, but ... */
201 { "curses.h", ANSI_SYMBOL
, "box\0delwin\0endwin\0getcurx\0getcury\0initscr\0\
202 mvcur\0mvwprintw\0mvwscanw\0newwin\0overlay\0overwrite\0\
203 scroll\0subwin\0touchwin\0waddstr\0wclear\0wclrtobot\0wclrtoeol\0\
204 waddch\0wdelch\0wdeleteln\0werase\0wgetch\0wgetstr\0winsch\0winsertln\0\
205 wmove\0wprintw\0wrefresh\0wscanw\0wstandend\0wstandout\0" },
207 { "fcntl.h", POSIX1_SYMBOL
, "creat\0fcntl\0open\0" },
209 /* Maybe also "getgrent fgetgrent setgrent endgrent" */
210 { "grp.h", POSIX1_SYMBOL
, "getgrgid\0getgrnam\0" },
212 /*{ "limit.h", ... provided by gcc }, */
214 { "locale.h", ANSI_SYMBOL
, "localeconv\0setlocale\0" },
216 { "math.h", ANSI_SYMBOL
,
217 "acos\0asin\0atan\0atan2\0ceil\0cos\0cosh\0exp\0\
218 fabs\0floor\0fmod\0frexp\0ldexp\0log10\0log\0modf\0pow\0sin\0sinh\0sqrt\0\
221 { CONTINUED
, ANSI_SYMBOL
|MACRO_SYMBOL
, "HUGE_VAL\0" },
223 { "pwd.h", POSIX1_SYMBOL
, "getpwnam\0getpwuid\0" },
225 /* Left out siglongjmp sigsetjmp - these depend on sigjmp_buf. */
226 { "setjmp.h", ANSI_SYMBOL
, "longjmp\0setjmp\0" },
228 /* Left out signal() - its prototype is too complex for us!
229 Also left out "sigaction sigaddset sigdelset sigemptyset
230 sigfillset sigismember sigpending sigprocmask sigsuspend"
231 because these need sigset_t or struct sigaction.
232 Most systems that provide them will also declare them. */
233 { "signal.h", ANSI_SYMBOL
, "kill\0raise\0" },
235 { "stdio.h", ANSI_SYMBOL
,
236 "clearerr\0fclose\0feof\0ferror\0fflush\0fgetc\0fgetpos\0\
237 fgets\0fopen\0fprintf\0fputc\0fputs\0fread\0freopen\0fscanf\0fseek\0\
238 fsetpos\0ftell\0fwrite\0getc\0getchar\0gets\00perror\0popen\0\
239 printf\0putc\0putchar\0puts\0remove\0rename\0rewind\0scanf\0setbuf\0\
240 setvbuf\0sprintf\0sscanf\0vprintf\0vsprintf\0vfprintf\0tmpfile\0\
242 { CONTINUED
, POSIX1_SYMBOL
, "fdopen\0fileno\0" },
243 { CONTINUED
, POSIX2_SYMBOL
, "pclose\0popen\0" }, /* I think ... */
244 /* Should perhaps also handle NULL, EOF, ... ? */
246 /* "div ldiv", - ignored because these depend on div_t, ldiv_t
247 ignore these: "mblen mbstowcs mbstowc wcstombs wctomb"
248 Left out getgroups, because SunOS4 has incompatible BSD and SVR4 versions.
249 Should perhaps also add NULL */
250 { "stdlib.h", ANSI_SYMBOL
,
251 "abort\0abs\0atexit\0atof\0atoi\0atol\0bsearch\0calloc\0\
252 exit\0free\0getenv\0labs\0malloc\0putenv\0qsort\0rand\0realloc\0\
253 srand\0strtod\0strtol\0strtoul\0system\0" },
254 { CONTINUED
, ANSI_SYMBOL
|MACRO_SYMBOL
, "EXIT_FAILURE\0EXIT_SUCCESS\0" },
256 { "string.h", ANSI_SYMBOL
, "memchr\0memcmp\0memcpy\0memmove\0memset\0\
257 strcat\0strchr\0strcmp\0strcoll\0strcpy\0strcspn\0strerror\0\
258 strlen\0strncat\0strncmp\0strncpy\0strpbrk\0strrchr\0strspn\0strstr\0\
259 strtok\0strxfrm\0" },
260 /* Should perhaps also add NULL and size_t */
262 { "strings.h", XOPEN_EXTENDED_SYMBOL
,
263 "bcmp\0bcopy\0bzero\0ffs\0index\0rindex\0strcasecmp\0strncasecmp\0" },
265 { "strops.h", XOPEN_EXTENDED_SYMBOL
, "ioctl\0" },
267 /* Actually, XPG4 does not seem to have <sys/ioctl.h>, but defines
268 ioctl in <strops.h>. However, many systems have it is sys/ioctl.h,
269 and many systems do have <sys/ioctl.h> but not <strops.h>. */
270 { "sys/ioctl.h", XOPEN_EXTENDED_SYMBOL
, "ioctl\0" },
272 { "sys/socket.h", XOPEN_EXTENDED_SYMBOL
, "socket\0" },
274 { "sys/stat.h", POSIX1_SYMBOL
,
275 "chmod\0fstat\0mkdir\0mkfifo\0stat\0lstat\0umask\0" },
276 { CONTINUED
, POSIX1_SYMBOL
|MACRO_SYMBOL
,
277 "S_ISDIR\0S_ISBLK\0S_ISCHR\0S_ISFIFO\0S_ISREG\0S_ISLNK\0S_IFDIR\0\
278 S_IFBLK\0S_IFCHR\0S_IFIFO\0S_IFREG\0S_IFLNK\0" },
279 { CONTINUED
, XOPEN_EXTENDED_SYMBOL
, "fchmod\0" },
282 /* How do we handle fd_set? */
283 { "sys/time.h", XOPEN_EXTENDED_SYMBOL
, "select\0" },
284 { "sys/select.h", XOPEN_EXTENDED_SYMBOL
/* fake */, "select\0" },
287 { "sys/times.h", POSIX1_SYMBOL
, "times\0" },
288 /* "sys/types.h" add types (not in old g++-include) */
290 { "sys/utsname.h", POSIX1_SYMBOL
, "uname\0" },
292 { "sys/wait.h", POSIX1_SYMBOL
, "wait\0waitpid\0" },
293 { CONTINUED
, POSIX1_SYMBOL
|MACRO_SYMBOL
,
294 "WEXITSTATUS\0WIFEXITED\0WIFSIGNALED\0WIFSTOPPED\0WSTOPSIG\0\
295 WTERMSIG\0WNOHANG\0WNOTRACED\0" },
297 { "tar.h", POSIX1_SYMBOL
, NONE
},
299 { "termios.h", POSIX1_SYMBOL
,
300 "cfgetispeed\0cfgetospeed\0cfsetispeed\0cfsetospeed\0tcdrain\0tcflow\0tcflush\0tcgetattr\0tcsendbreak\0tcsetattr\0" },
302 { "time.h", ANSI_SYMBOL
,
303 "asctime\0clock\0ctime\0difftime\0gmtime\0localtime\0mktime\0strftime\0time\0tzset\0" },
305 { "unistd.h", POSIX1_SYMBOL
,
306 "_exit\0access\0alarm\0chdir\0chown\0close\0ctermid\0cuserid\0\
307 dup\0dup2\0execl\0execle\0execlp\0execv\0execve\0execvp\0fork\0fpathconf\0\
308 getcwd\0getegid\0geteuid\0getgid\0getlogin\0getpgrp\0getpid\0\
309 getppid\0getuid\0isatty\0link\0lseek\0pathconf\0pause\0pipe\0read\0rmdir\0\
310 setgid\0setpgid\0setsid\0setuid\0sleep\0sysconf\0tcgetpgrp\0tcsetpgrp\0\
311 ttyname\0unlink\0write\0" },
312 { CONTINUED
, POSIX2_SYMBOL
, "getopt\0" },
313 { CONTINUED
, XOPEN_EXTENDED_SYMBOL
,
314 "lockf\0gethostid\0gethostname\0readlink\0" },
316 { "utime.h", POSIX1_SYMBOL
, "utime\0" },
321 enum special_file special_file_handling
= no_special
;
323 /* They are set if the corresponding macro has been seen. */
324 /* The following are only used when handling sys/stat.h */
325 int seen_S_IFBLK
= 0, seen_S_ISBLK
= 0;
326 int seen_S_IFCHR
= 0, seen_S_ISCHR
= 0;
327 int seen_S_IFDIR
= 0, seen_S_ISDIR
= 0;
328 int seen_S_IFIFO
= 0, seen_S_ISFIFO
= 0;
329 int seen_S_IFLNK
= 0, seen_S_ISLNK
= 0;
330 int seen_S_IFREG
= 0, seen_S_ISREG
= 0;
331 /* The following are only used when handling errno.h */
333 /* The following are only used when handling stdlib.h */
334 int seen_EXIT_FAILURE
= 0, seen_EXIT_SUCCESS
= 0;
336 /* Wrapper around free, to avoid prototype clashes. */
345 /* Avoid error if config defines abort as fancy_abort.
346 It's not worth "really" implementing this because ordinary
347 compiler users never run fix-header. */
355 #define obstack_chunk_alloc xmalloc
356 #define obstack_chunk_free xfree
357 struct obstack scan_file_obstack
;
359 /* NOTE: If you edit this, also edit gen-protos.c !! */
361 lookup_std_proto (name
, name_length
)
365 int i
= hashf (name
, name_length
, HASH_SIZE
);
370 if (hash_tab
[i
] == 0)
372 fn
= &std_protos
[hash_tab
[i
]];
373 if (strlen (fn
->fname
) == name_length
374 && strncmp (fn
->fname
, name
, name_length
) == 0)
376 i
= (i
+1) % HASH_SIZE
;
383 int inc_filename_length
;
384 char *progname
= "fix-header";
388 int lbrac_line
, rbrac_line
;
390 int required_unseen_count
= 0;
391 int required_other
= 0;
397 #if ADD_MISSING_EXTERN_C
398 if (missing_extern_C_count
+ required_unseen_count
> 0)
399 fprintf (outf
, "#ifdef __cplusplus\nextern \"C\" {\n#endif\n");
404 fprintf (outf
, "#ifndef _PARAMS\n");
405 fprintf (outf
, "#if defined(__STDC__) || defined(__cplusplus)\n");
406 fprintf (outf
, "#define _PARAMS(ARGS) ARGS\n");
407 fprintf (outf
, "#else\n");
408 fprintf (outf
, "#define _PARAMS(ARGS) ()\n");
409 fprintf (outf
, "#endif\n#endif /* _PARAMS */\n");
415 struct partial_proto
*next
;
416 char *fname
; /* name of function */
417 char *rtype
; /* return type */
422 struct partial_proto
*partial_proto_list
= NULL
;
424 struct partial_proto required_dummy_proto
, seen_dummy_proto
;
425 #define REQUIRED(FN) ((FN)->partial == &required_dummy_proto)
426 #define SET_REQUIRED(FN) ((FN)->partial = &required_dummy_proto)
427 #define SET_SEEN(FN) ((FN)->partial = &seen_dummy_proto)
428 #define SEEN(FN) ((FN)->partial == &seen_dummy_proto)
431 recognized_macro (fname
)
434 /* The original include file defines fname as a macro. */
435 struct fn_decl
*fn
= lookup_std_proto (fname
, strlen (fname
));
437 /* Since fname is a macro, don't require a prototype for it. */
441 required_unseen_count
--;
445 switch (special_file_handling
)
448 if (strcmp (fname
, "errno") == 0 && !seen_errno
)
449 seen_errno
= 1, required_other
--;
452 if (strcmp (fname
, "EXIT_FAILURE") == 0 && !seen_EXIT_FAILURE
)
453 seen_EXIT_FAILURE
= 1, required_other
--;
454 if (strcmp (fname
, "EXIT_SUCCESS") == 0 && !seen_EXIT_SUCCESS
)
455 seen_EXIT_SUCCESS
= 1, required_other
--;
458 if (fname
[0] == 'S' && fname
[1] == '_')
460 if (strcmp (fname
, "S_IFBLK") == 0) seen_S_IFBLK
++;
461 else if (strcmp (fname
, "S_ISBLK") == 0) seen_S_ISBLK
++;
462 else if (strcmp (fname
, "S_IFCHR") == 0) seen_S_IFCHR
++;
463 else if (strcmp (fname
, "S_ISCHR") == 0) seen_S_ISCHR
++;
464 else if (strcmp (fname
, "S_IFDIR") == 0) seen_S_IFDIR
++;
465 else if (strcmp (fname
, "S_ISDIR") == 0) seen_S_ISDIR
++;
466 else if (strcmp (fname
, "S_IFIFO") == 0) seen_S_IFIFO
++;
467 else if (strcmp (fname
, "S_ISFIFO") == 0) seen_S_ISFIFO
++;
468 else if (strcmp (fname
, "S_IFLNK") == 0) seen_S_IFLNK
++;
469 else if (strcmp (fname
, "S_ISLNK") == 0) seen_S_ISLNK
++;
470 else if (strcmp (fname
, "S_IFREG") == 0) seen_S_IFREG
++;
471 else if (strcmp (fname
, "S_ISREG") == 0) seen_S_ISREG
++;
477 recognized_extern (name
, name_length
, type
, type_length
)
480 int name_length
, type_length
;
482 switch (special_file_handling
)
485 if (strcmp (name
, "errno") == 0 && !seen_errno
)
486 seen_errno
= 1, required_other
--;
491 /* Called by scan_decls if it saw a function definition for a function
492 named FNAME, with return type RTYPE, and argument list ARGS,
493 in source file FILE_SEEN on line LINE_SEEN.
494 KIND is 'I' for an inline function;
495 'F' if a normal function declaration preceded by 'extern "C"'
496 (or nested inside 'extern "C"' braces); or
497 'f' for other function declarations. */
500 recognized_function (fname
, fname_length
,
501 kind
, rtype
, rtype_length
,
502 have_arg_list
, file_seen
, line_seen
)
505 int kind
; /* One of 'f' 'F' or 'I' */
512 struct partial_proto
*partial
;
515 #if ADD_MISSING_EXTERN_C
517 missing_extern_C_count
++;
520 fn
= lookup_std_proto (fname
, fname_length
);
522 /* Remove the function from the list of required function. */
526 required_unseen_count
--;
530 /* If we have a full prototype, we're done. */
534 if (kind
== 'I') /* don't edit inline function */
537 /* If the partial prototype was included from some other file,
538 we don't need to patch it up (in this run). */
539 i
= strlen (file_seen
);
540 if (i
< inc_filename_length
541 || strcmp (inc_filename
, file_seen
+ (i
- inc_filename_length
)) != 0)
546 if (fn
->params
[0] == '\0' || strcmp (fn
->params
, "void") == 0)
549 /* We only have a partial function declaration,
550 so remember that we have to add a complete prototype. */
552 partial
= (struct partial_proto
*)
553 obstack_alloc (&scan_file_obstack
, sizeof (struct partial_proto
));
554 partial
->fname
= obstack_alloc (&scan_file_obstack
, fname_length
+ 1);
555 bcopy (fname
, partial
->fname
, fname_length
);
556 partial
->fname
[fname_length
] = 0;
557 partial
->rtype
= obstack_alloc (&scan_file_obstack
, rtype_length
+ 1);
558 sprintf (partial
->rtype
, "%.*s", rtype_length
, rtype
);
559 partial
->line_seen
= line_seen
;
561 fn
->partial
= partial
;
562 partial
->next
= partial_proto_list
;
563 partial_proto_list
= partial
;
566 fprintf (stderr
, "(%s: %s non-prototype function declaration.)\n",
567 inc_filename
, partial
->fname
);
571 /* For any name in NAMES that is defined as a macro,
572 call recognized_macro on it. */
575 check_macro_names (pfile
, names
)
576 struct parse_file
*pfile
;
581 if (cpp_lookup (pfile
, names
, -1, -1))
582 recognized_macro (names
);
583 names
+= strlen (names
) + 1;
588 read_scan_file (in_fname
, argc
, argv
)
594 cpp_options scan_options
;
597 register struct symbol_list
*cur_symbols
;
599 obstack_init (&scan_file_obstack
);
601 init_parse_file (&scan_in
);
602 scan_in
.data
= &scan_options
;
603 init_parse_options (&scan_options
);
604 i
= cpp_handle_options (&scan_in
, argc
, argv
);
606 fatal ("Invalid option `%s'", argv
[i
]);
607 push_parse_file (&scan_in
, in_fname
);
608 CPP_OPTIONS (&scan_in
)->no_line_commands
= 1;
610 scan_decls (&scan_in
, argc
, argv
);
611 for (cur_symbols
= &symbol_table
[0]; cur_symbols
->names
; cur_symbols
++)
612 check_macro_names (&scan_in
, cur_symbols
->names
);
614 if (verbose
&& (scan_in
.errors
+ warnings
) > 0)
615 fprintf (stderr
, "(%s: %d errors and %d warnings from cpp)\n",
616 inc_filename
, scan_in
.errors
, warnings
);
620 /* Traditionally, getc and putc are defined in terms of _filbuf and _flsbuf.
621 If so, those functions are also required. */
622 if (special_file_handling
== stdio_h
623 && (fn
= lookup_std_proto ("_filbuf", 7)) != NULL
)
625 static char getchar_call
[] = "getchar();";
627 cpp_push_buffer (&scan_in
, getchar_call
, sizeof(getchar_call
) - 1);
628 int old_written
= CPP_WRITTEN (&scan_in
);
631 /* Scan the macro expansion of "getchar();". */
634 enum cpp_token token
= cpp_get_token (&scan_in
);
635 int length
= CPP_WRITTEN (&scan_in
) - old_written
;
636 CPP_SET_WRITTEN (&scan_in
, old_written
);
637 if (token
== CPP_EOF
) /* Should not happen ... */
639 if (token
== CPP_POP
&& CPP_BUFFER (&scan_in
) == buf
)
641 cpp_pop_buffer (&scan_in
);
644 if (token
== CPP_NAME
&& length
== 7
645 && strcmp ("_filbuf", scan_in
.token_buffer
+ old_written
) == 0)
650 int need_filbuf
= !SEEN (fn
) && !REQUIRED (fn
);
651 struct fn_decl
*flsbuf_fn
= lookup_std_proto ("_flsbuf", 7);
653 = flsbuf_fn
&& !SEEN (flsbuf_fn
) && !REQUIRED (flsbuf_fn
);
655 /* Append "_filbuf" and/or "_flsbuf" to the required functions. */
656 if (need_filbuf
+ need_flsbuf
)
662 SET_REQUIRED (flsbuf_fn
);
663 if (need_flsbuf
+ need_filbuf
== 2)
664 new_list
= "_filbuf\0_flsbuf\0";
665 else if (need_flsbuf
)
666 new_list
= "_flsbuf\0";
667 else /* if (need_flsbuf) */
668 new_list
= "_filbuf\0";
669 add_symbols (ANSI_SYMBOL
, new_list
);
670 required_unseen_count
+= need_filbuf
+ need_flsbuf
;
675 if (required_unseen_count
+ partial_count
+ required_other
676 #if ADD_MISSING_EXTERN_C
677 + missing_extern_C_count
682 fprintf (stderr
, "%s: OK, nothing needs to be done.\n", inc_filename
);
686 fprintf (stderr
, "%s: fixing %s\n", progname
, inc_filename
);
689 if (required_unseen_count
)
690 fprintf (stderr
, "%s: %d missing function declarations.\n",
691 inc_filename
, required_unseen_count
);
693 fprintf (stderr
, "%s: %d non-prototype function declarations.\n",
694 inc_filename
, partial_count
);
695 #if ADD_MISSING_EXTERN_C
696 if (missing_extern_C_count
)
698 "%s: %d declarations not protected by extern \"C\".\n",
699 inc_filename
, missing_extern_C_count
);
709 register struct symbol_list
*cur_symbols
;
711 if (required_unseen_count
)
713 #ifdef NO_IMPLICIT_EXTERN_C
714 fprintf (outf
, "#ifdef __cplusplus\nextern \"C\" {\n#endif\n");
718 /* Now we print out prototypes for those functions that we haven't seen. */
719 for (cur_symbols
= &symbol_table
[0]; cur_symbols
->names
; cur_symbols
++)
721 int if_was_emitted
= 0;
723 cptr
= cur_symbols
->names
;
724 for ( ; (name_len
= strlen (cptr
)) != 0; cptr
+= name_len
+ 1)
726 int macro_protect
= 0;
728 if (cur_symbols
->flags
& MACRO_SYMBOL
)
731 fn
= lookup_std_proto (cptr
, name_len
);
732 if (fn
== NULL
|| !REQUIRED (fn
))
737 /* what about curses. ??? or _flsbuf/_filbuf ??? */
738 if (cur_symbols
->flags
& ANSI_SYMBOL
)
740 "#if defined(__USE_FIXED_PROTOTYPES__) || defined(__cplusplus) || defined (__STRICT_ANSI__)\n");
741 else if (cur_symbols
->flags
& (POSIX1_SYMBOL
|POSIX2_SYMBOL
))
743 "#if defined(__USE_FIXED_PROTOTYPES__) || (defined(__cplusplus) \\\n\
744 ? (!defined(__STRICT_ANSI__) || defined(_POSIX_SOURCE)) \\\n\
745 : (defined(__STRICT_ANSI__) && defined(_POSIX_SOURCE)))\n");
746 else if (cur_symbols
->flags
& XOPEN_SYMBOL
)
749 "#if defined(__USE_FIXED_PROTOTYPES__) \\\n\
750 || (defined(__STRICT_ANSI__) && defined(_XOPEN_SOURCE))\n");
752 else if (cur_symbols
->flags
& XOPEN_EXTENDED_SYMBOL
)
755 "#if defined(__USE_FIXED_PROTOTYPES__) \\\n\
756 || (defined(__STRICT_ANSI__) && defined(_XOPEN_EXTENDED_SOURCE))\n");
760 fatal ("internal error for function %s", fn
->fname
);
765 /* In the case of memmove, protect in case the application
766 defines it as a macro before including the header. */
767 if (!strcmp (fn
->fname
, "memmove")
768 || !strcmp (fn
->fname
, "vprintf")
769 || !strcmp (fn
->fname
, "vfprintf")
770 || !strcmp (fn
->fname
, "vsprintf")
771 || !strcmp (fn
->fname
, "rewinddir"))
775 fprintf (outf
, "#ifndef %s\n", fn
->fname
);
776 fprintf (outf
, "extern %s %s (%s);\n",
777 fn
->rtype
, fn
->fname
, fn
->params
);
779 fprintf (outf
, "#endif\n");
783 "#endif /* defined(__USE_FIXED_PROTOTYPES__) || ... */\n");
785 if (required_unseen_count
)
787 #ifdef NO_IMPLICIT_EXTERN_C
788 fprintf (outf
, "#ifdef __cplusplus\n}\n#endif\n");
792 switch (special_file_handling
)
796 fprintf (outf
, "extern int errno;\n");
799 if (!seen_EXIT_FAILURE
)
800 fprintf (outf
, "#define EXIT_FAILURE 1\n");
801 if (!seen_EXIT_SUCCESS
)
802 fprintf (outf
, "#define EXIT_SUCCESS 0\n");
805 if (!seen_S_ISBLK
&& seen_S_IFBLK
)
807 "#define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)\n");
808 if (!seen_S_ISCHR
&& seen_S_IFCHR
)
810 "#define S_ISCHR(mode) (((mode) & S_IFMT) == S_IFCHR)\n");
811 if (!seen_S_ISDIR
&& seen_S_IFDIR
)
813 "#define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)\n");
814 if (!seen_S_ISFIFO
&& seen_S_IFIFO
)
816 "#define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO)\n");
817 if (!seen_S_ISLNK
&& seen_S_IFLNK
)
819 "#define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)\n");
820 if (!seen_S_ISREG
&& seen_S_IFREG
)
822 "#define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)\n");
827 #if ADD_MISSING_EXTERN_C
828 if (missing_extern_C_count
+ required_unseen_count
> 0)
829 fprintf (outf
, "#ifdef __cplusplus\n}\n#endif\n");
837 char *copy
= (char *) xmalloc (strlen (str
) + 1);
842 /* Returns 1 iff the file is properly protected from multiple inclusion:
849 #define INF_GET() (inf_ptr < inf_limit ? *(unsigned char*)inf_ptr++ : EOF)
850 #define INF_UNGET(c) ((c)!=EOF && inf_ptr--)
858 if (c
== ' ' || c
== '\t')
876 source_lineno
++, lineno
++;
879 else if ((c
= INF_GET ()) == '/')
889 /* Read into STR from inf_buffer upto DELIM. */
892 inf_read_upto (str
, delim
)
900 if (ch
== EOF
|| ch
== delim
)
902 SSTRING_PUT (str
, ch
);
904 MAKE_SSTRING_SPACE (str
, 1);
910 inf_scan_ident (s
, c
)
915 if (isalpha (c
) || c
== '_')
921 if (c
== EOF
|| !(isalnum (c
) || c
== '_'))
925 MAKE_SSTRING_SPACE (s
, 1);
930 /* Returns 1 if the file is correctly protected against multiple
931 inclusion, setting *ifndef_line to the line number of the initial #ifndef
932 and setting *endif_line to the final #endif.
933 Otherwise return 0. */
936 check_protection (ifndef_line
, endif_line
)
937 int *ifndef_line
, *endif_line
;
940 int if_nesting
= 1; /* Level of nesting of #if's */
941 char *protect_name
= NULL
; /* Identifier following initial #ifndef */
944 /* Skip initial white space (including comments). */
947 c
= inf_skip_spaces (' ');
955 c
= inf_scan_ident (&buf
, inf_skip_spaces (' '));
956 if (SSTRING_LENGTH (&buf
) == 0 || strcmp (buf
.base
, "ifndef") != 0)
959 /* So far so good: We've seen an initial #ifndef. */
960 *ifndef_line
= lineno
;
961 c
= inf_scan_ident (&buf
, inf_skip_spaces (c
));
962 if (SSTRING_LENGTH (&buf
) == 0 || c
== EOF
)
964 protect_name
= xstrdup (buf
.base
);
967 c
= inf_read_upto (&buf
, '\n');
974 c
= inf_skip_spaces (' ');
984 c
= inf_scan_ident (&buf
, inf_skip_spaces (' '));
985 if (SSTRING_LENGTH (&buf
) == 0)
987 else if (!strcmp (buf
.base
, "ifndef")
988 || !strcmp (buf
.base
, "ifdef") || !strcmp (buf
.base
, "if"))
992 else if (!strcmp (buf
.base
, "endif"))
998 else if (!strcmp (buf
.base
, "else"))
1000 if (if_nesting
== 1)
1003 else if (!strcmp (buf
.base
, "define"))
1005 if (if_nesting
!= 1)
1007 c
= inf_skip_spaces (c
);
1008 c
= inf_scan_ident (&buf
, c
);
1009 if (buf
.base
[0] > 0 && strcmp (buf
.base
, protect_name
) == 0)
1015 if (c
== '\n' || c
== EOF
)
1026 *endif_line
= lineno
;
1027 /* Skip final white space (including comments). */
1030 c
= inf_skip_spaces (' ');
1049 const char *cptr
, **pptr
;
1054 register struct symbol_list
*cur_symbols
;
1056 if (argv
[0] && argv
[0][0])
1061 for (p
= argv
[0]; *p
; p
++)
1064 progname
= progname
? progname
+1 : argv
[0];
1069 fprintf (stderr
, "%s: Usage: foo.h infile.h outfile.h options\n",
1074 inc_filename
= argv
[1];
1075 inc_filename_length
= strlen (inc_filename
);
1077 #ifdef FIXPROTO_IGNORE_LIST
1078 for (i
= 0; files_to_ignore
[i
] != NULL
; i
++)
1080 char *ignore_name
= files_to_ignore
[i
];
1081 int ignore_len
= strlen (ignore_name
);
1082 if (strncmp (inc_filename
, ignore_name
, ignore_len
) == 0)
1084 if (ignore_name
[ignore_len
-1] == '/'
1085 || inc_filename
[ignore_len
] == '\0')
1088 fprintf (stderr
, "%s: ignoring %s\n", progname
, inc_filename
);
1096 if (strcmp (inc_filename
, "sys/stat.h") == 0)
1097 special_file_handling
= sys_stat_h
;
1098 else if (strcmp (inc_filename
, "errno.h") == 0)
1099 special_file_handling
= errno_h
, required_other
++;
1100 else if (strcmp (inc_filename
, "stdlib.h") == 0)
1101 special_file_handling
= stdlib_h
, required_other
+=2;
1102 else if (strcmp (inc_filename
, "stdio.h") == 0)
1103 special_file_handling
= stdio_h
;
1104 include_entry
= std_include_table
;
1105 while (include_entry
->name
!= NULL
1106 && (include_entry
->name
== CONTINUED
1107 || strcmp (inc_filename
, include_entry
->name
) != 0))
1110 if (include_entry
->name
!= NULL
)
1112 struct std_include_entry
*entry
;
1113 cur_symbol_table_size
= 0;
1114 for (entry
= include_entry
; ;)
1116 add_symbols (entry
->flags
, entry
->names
);
1118 if (entry
->name
!= CONTINUED
)
1123 symbol_table
[0].names
= NULL
;
1125 /* Count and mark the prototypes required for this include file. */
1126 for (cur_symbols
= &symbol_table
[0]; cur_symbols
->names
; cur_symbols
++)
1129 if (cur_symbols
->flags
& MACRO_SYMBOL
)
1131 cptr
= cur_symbols
->names
;
1132 for ( ; (name_len
= strlen (cptr
)) != 0; cptr
+= name_len
+ 1)
1134 struct fn_decl
*fn
= lookup_std_proto (cptr
, name_len
);
1135 required_unseen_count
++;
1137 fprintf (stderr
, "Internal error: No prototype for %s\n", cptr
);
1143 read_scan_file (argv
[2], argc
- 4, argv
+ 4);
1145 inf_fd
= open (argv
[2], O_RDONLY
, 0666);
1148 fprintf (stderr
, "%s: Cannot open '%s' for reading -",
1153 if (fstat (inf_fd
, &sbuf
) < 0)
1155 fprintf (stderr
, "%s: Cannot get size of '%s' -", progname
, argv
[2]);
1159 inf_size
= sbuf
.st_size
;
1160 inf_buffer
= (char*) xmalloc (inf_size
+ 2);
1161 inf_buffer
[inf_size
] = '\n';
1162 inf_buffer
[inf_size
+ 1] = '\0';
1163 inf_limit
= inf_buffer
+ inf_size
;
1164 inf_ptr
= inf_buffer
;
1169 long i
= read (inf_fd
, inf_buffer
+ inf_size
- to_read
, to_read
);
1172 fprintf (stderr
, "%s: Failed to read '%s' -", progname
, argv
[2]);
1178 inf_size
-= to_read
;
1186 /* If file doesn't end with '\n', add one. */
1187 if (inf_limit
> inf_buffer
&& inf_limit
[-1] != '\n')
1191 outf
= fopen (argv
[3], "w");
1194 fprintf (stderr
, "%s: Cannot open '%s' for writing -",
1202 if (check_protection (&ifndef_line
, &endif_line
))
1204 lbrac_line
= ifndef_line
+1;
1205 rbrac_line
= endif_line
;
1213 /* Reset input file. */
1214 inf_ptr
= inf_buffer
;
1219 if (lineno
== lbrac_line
)
1221 if (lineno
== rbrac_line
)
1229 if (isalpha (c
) || c
== '_')
1231 c
= inf_scan_ident (&buf
, c
);
1233 fputs (buf
.base
, outf
);
1234 fn
= lookup_std_proto (buf
.base
, strlen (buf
.base
));
1235 /* We only want to edit the declaration matching the one
1236 seen by scan-decls, as there can be multiple
1237 declarations, selected by #ifdef __STDC__ or whatever. */
1238 if (fn
&& fn
->partial
&& fn
->partial
->line_seen
== lineno
)
1240 c
= inf_skip_spaces (' ');
1245 c
= inf_skip_spaces (' ');
1248 fprintf (outf
, " _PARAMS((%s))", fn
->params
);
1257 fprintf (outf
, " %c", c
);
1279 /* Stub error functions. These replace cpperror.c,
1280 because we want to suppress error messages. */
1283 cpp_file_line_for_message (pfile
, filename
, line
, column
)
1291 fprintf (stderr
, "%s:%d:%d: ", filename
, line
, column
);
1293 fprintf (stderr
, "%s:%d: ", filename
, line
);
1297 cpp_print_containing_files (pfile
)
1302 /* IS_ERROR is 1 for error, 0 for warning */
1303 void cpp_message (pfile
, is_error
, msg
, arg1
, arg2
, arg3
)
1307 char *arg1
, *arg2
, *arg3
;
1314 fprintf (stderr
, "warning: ");
1315 fprintf (stderr
, msg
, arg1
, arg2
, arg3
);
1316 fprintf (stderr
, "\n");
1323 fprintf (stderr
, "%s: %s: ", progname
, inc_filename
);
1324 fprintf (stderr
, str
, arg
);
1325 fprintf (stderr
, "\n");
1326 exit (FATAL_EXIT_CODE
);
1330 cpp_pfatal_with_name (pfile
, name
)
1334 cpp_perror_with_name (pfile
, name
);
1335 exit (FATAL_EXIT_CODE
);