main1.c revision 1.13 1 1.13 christos /* $NetBSD: main1.c,v 1.13 2002/10/21 21:14:53 christos Exp $ */
2 1.2 cgd
3 1.1 cgd /*
4 1.1 cgd * Copyright (c) 1994, 1995 Jochen Pohl
5 1.1 cgd * All Rights Reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by Jochen Pohl for
18 1.1 cgd * The NetBSD Project.
19 1.1 cgd * 4. The name of the author may not be used to endorse or promote products
20 1.1 cgd * derived from this software without specific prior written permission.
21 1.1 cgd *
22 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 cgd * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 cgd * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 cgd * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 cgd * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 cgd * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 cgd * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 cgd * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 cgd * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 cgd * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 cgd */
33 1.1 cgd
34 1.4 christos #include <sys/cdefs.h>
35 1.12 tv #if defined(__RCSID) && !defined(lint)
36 1.13 christos __RCSID("$NetBSD: main1.c,v 1.13 2002/10/21 21:14:53 christos Exp $");
37 1.1 cgd #endif
38 1.1 cgd
39 1.5 christos #include <sys/types.h>
40 1.1 cgd #include <stdio.h>
41 1.5 christos #include <string.h>
42 1.1 cgd #include <stdlib.h>
43 1.1 cgd #include <unistd.h>
44 1.5 christos #include <errno.h>
45 1.5 christos #include <limits.h>
46 1.1 cgd
47 1.1 cgd #include "lint1.h"
48 1.1 cgd
49 1.1 cgd /* set yydebug to 1*/
50 1.1 cgd int yflag;
51 1.1 cgd
52 1.1 cgd /*
53 1.1 cgd * Print warnings if an assignment of an integertype to another integertype
54 1.1 cgd * causes an implizit narrowing conversion. If aflag is 1, these warnings
55 1.1 cgd * are printed only if the source type is at least as wide as long. If aflag
56 1.9 wiz * is greater than 1, they are always printed.
57 1.1 cgd */
58 1.1 cgd int aflag;
59 1.1 cgd
60 1.1 cgd /* Print a warning if a break statement cannot be reached. */
61 1.1 cgd int bflag;
62 1.1 cgd
63 1.1 cgd /* Print warnings for pointer casts. */
64 1.1 cgd int cflag;
65 1.1 cgd
66 1.1 cgd /* Print various debug information. */
67 1.1 cgd int dflag;
68 1.1 cgd
69 1.1 cgd /* Perform stricter checking of enum types and operations on enum types. */
70 1.1 cgd int eflag;
71 1.1 cgd
72 1.1 cgd /* Print complete pathnames, not only the basename. */
73 1.1 cgd int Fflag;
74 1.1 cgd
75 1.1 cgd /* Enable some extensions of gcc */
76 1.1 cgd int gflag;
77 1.1 cgd
78 1.5 christos /* Treat warnings as errors */
79 1.5 christos int wflag;
80 1.5 christos
81 1.1 cgd /*
82 1.1 cgd * Apply a number of heuristic tests to attempt to intuit bugs, improve
83 1.1 cgd * style, and reduce waste.
84 1.1 cgd */
85 1.1 cgd int hflag;
86 1.1 cgd
87 1.1 cgd /* Attempt to check portability to other dialects of C. */
88 1.1 cgd int pflag;
89 1.1 cgd
90 1.1 cgd /*
91 1.1 cgd * In case of redeclarations/redefinitions print the location of the
92 1.1 cgd * previous declaration/definition.
93 1.1 cgd */
94 1.1 cgd int rflag;
95 1.1 cgd
96 1.1 cgd /* Strict ANSI C mode. */
97 1.1 cgd int sflag;
98 1.1 cgd
99 1.1 cgd /* Traditional C mode. */
100 1.1 cgd int tflag;
101 1.1 cgd
102 1.13 christos /* Enable C9X extensions */
103 1.13 christos int Sflag;
104 1.1 cgd /*
105 1.1 cgd * Complain about functions and external variables used and not defined,
106 1.1 cgd * or defined and not used.
107 1.1 cgd */
108 1.1 cgd int uflag = 1;
109 1.1 cgd
110 1.1 cgd /* Complain about unused function arguments. */
111 1.1 cgd int vflag = 1;
112 1.1 cgd
113 1.1 cgd /* Complain about structures which are never defined. */
114 1.1 cgd int zflag = 1;
115 1.1 cgd
116 1.10 augustss err_set msgset;
117 1.5 christos
118 1.8 lukem static void usage(void);
119 1.4 christos
120 1.8 lukem int main(int, char *[]);
121 1.1 cgd
122 1.1 cgd int
123 1.8 lukem main(int argc, char *argv[])
124 1.1 cgd {
125 1.1 cgd int c;
126 1.5 christos char *ptr;
127 1.1 cgd
128 1.12 tv setprogname(argv[0]);
129 1.12 tv
130 1.10 augustss ERR_ZERO(&msgset);
131 1.13 christos while ((c = getopt(argc, argv, "abcdeghmprstuvwyzFSX:")) != -1) {
132 1.1 cgd switch (c) {
133 1.1 cgd case 'a': aflag++; break;
134 1.1 cgd case 'b': bflag = 1; break;
135 1.1 cgd case 'c': cflag = 1; break;
136 1.1 cgd case 'd': dflag = 1; break;
137 1.1 cgd case 'e': eflag = 1; break;
138 1.1 cgd case 'F': Fflag = 1; break;
139 1.1 cgd case 'g': gflag = 1; break;
140 1.1 cgd case 'h': hflag = 1; break;
141 1.1 cgd case 'p': pflag = 1; break;
142 1.1 cgd case 'r': rflag = 1; break;
143 1.1 cgd case 's': sflag = 1; break;
144 1.13 christos case 'S': Sflag = 1; break;
145 1.1 cgd case 't': tflag = 1; break;
146 1.1 cgd case 'u': uflag = 0; break;
147 1.5 christos case 'w': wflag = 1; break;
148 1.1 cgd case 'v': vflag = 0; break;
149 1.1 cgd case 'y': yflag = 1; break;
150 1.1 cgd case 'z': zflag = 0; break;
151 1.5 christos
152 1.5 christos case 'm':
153 1.5 christos msglist();
154 1.5 christos return(0);
155 1.5 christos
156 1.5 christos case 'X':
157 1.5 christos for (ptr = strtok(optarg, ","); ptr;
158 1.5 christos ptr = strtok(NULL, ",")) {
159 1.5 christos char *eptr;
160 1.5 christos long msg = strtol(ptr, &eptr, 0);
161 1.5 christos if ((msg == LONG_MIN || msg == LONG_MAX) &&
162 1.5 christos errno == ERANGE)
163 1.5 christos err(1, "invalid error message id '%s'",
164 1.5 christos ptr);
165 1.5 christos if (*eptr || ptr == eptr || msg < 0 ||
166 1.10 augustss msg >= ERR_SETSIZE)
167 1.5 christos errx(1, "invalid error message id '%s'",
168 1.5 christos ptr);
169 1.10 augustss ERR_SET(msg, &msgset);
170 1.5 christos }
171 1.5 christos break;
172 1.5 christos case '?':
173 1.5 christos default:
174 1.5 christos usage();
175 1.5 christos break;
176 1.1 cgd }
177 1.1 cgd }
178 1.1 cgd argc -= optind;
179 1.1 cgd argv += optind;
180 1.1 cgd
181 1.1 cgd if (argc != 2)
182 1.1 cgd usage();
183 1.1 cgd
184 1.1 cgd /* open the input file */
185 1.1 cgd if ((yyin = fopen(argv[0], "r")) == NULL)
186 1.1 cgd err(1, "cannot open '%s'", argv[0]);
187 1.1 cgd
188 1.1 cgd /* initialize output */
189 1.1 cgd outopen(argv[1]);
190 1.1 cgd
191 1.1 cgd if (yflag)
192 1.1 cgd yydebug = 1;
193 1.1 cgd
194 1.1 cgd initmem();
195 1.1 cgd initdecl();
196 1.1 cgd initscan();
197 1.1 cgd initmtab();
198 1.1 cgd
199 1.1 cgd yyparse();
200 1.1 cgd
201 1.1 cgd /* Following warnings cannot be suppressed by LINTED */
202 1.3 jpo nowarn = 0;
203 1.1 cgd
204 1.1 cgd chkglsyms();
205 1.1 cgd
206 1.1 cgd outclose();
207 1.1 cgd
208 1.1 cgd return (nerr != 0);
209 1.1 cgd }
210 1.1 cgd
211 1.1 cgd static void
212 1.8 lukem usage(void)
213 1.1 cgd {
214 1.5 christos (void)fprintf(stderr,
215 1.13 christos "Usage: %s [-abcdeghmprstuvwyzFS] [-X <id>[,<id>]... src dest\n",
216 1.6 cgd getprogname());
217 1.1 cgd exit(1);
218 1.1 cgd }
219 1.8 lukem
220 1.1 cgd void
221 1.8 lukem norecover(void)
222 1.1 cgd {
223 1.1 cgd /* cannot recover from previous errors */
224 1.1 cgd error(224);
225 1.1 cgd exit(1);
226 1.1 cgd }
227