main.c revision 1.14 1 1.14 agc /* $NetBSD: main.c,v 1.14 2003/08/07 11:15:49 agc Exp $ */
2 1.9 tls
3 1.1 alm /*-
4 1.5 cgd * Copyright (c) 1992, 1993
5 1.5 cgd * The Regents of the University of California. All rights reserved.
6 1.1 alm *
7 1.1 alm * This code is derived from software contributed to Berkeley by
8 1.1 alm * Diomidis Spinellis of Imperial College, University of London.
9 1.1 alm *
10 1.1 alm * Redistribution and use in source and binary forms, with or without
11 1.1 alm * modification, are permitted provided that the following conditions
12 1.1 alm * are met:
13 1.1 alm * 1. Redistributions of source code must retain the above copyright
14 1.1 alm * notice, this list of conditions and the following disclaimer.
15 1.1 alm * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 alm * notice, this list of conditions and the following disclaimer in the
17 1.1 alm * documentation and/or other materials provided with the distribution.
18 1.14 agc * 3. Neither the name of the University nor the names of its contributors
19 1.14 agc * may be used to endorse or promote products derived from this software
20 1.14 agc * without specific prior written permission.
21 1.14 agc *
22 1.14 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.14 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.14 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.14 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.14 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.14 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.14 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.14 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.14 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.14 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.14 agc * SUCH DAMAGE.
33 1.14 agc */
34 1.14 agc
35 1.14 agc /*-
36 1.14 agc * Copyright (c) 1992 Diomidis Spinellis.
37 1.14 agc *
38 1.14 agc * This code is derived from software contributed to Berkeley by
39 1.14 agc * Diomidis Spinellis of Imperial College, University of London.
40 1.14 agc *
41 1.14 agc * Redistribution and use in source and binary forms, with or without
42 1.14 agc * modification, are permitted provided that the following conditions
43 1.14 agc * are met:
44 1.14 agc * 1. Redistributions of source code must retain the above copyright
45 1.14 agc * notice, this list of conditions and the following disclaimer.
46 1.14 agc * 2. Redistributions in binary form must reproduce the above copyright
47 1.14 agc * notice, this list of conditions and the following disclaimer in the
48 1.14 agc * documentation and/or other materials provided with the distribution.
49 1.1 alm * 3. All advertising materials mentioning features or use of this software
50 1.1 alm * must display the following acknowledgement:
51 1.1 alm * This product includes software developed by the University of
52 1.1 alm * California, Berkeley and its contributors.
53 1.1 alm * 4. Neither the name of the University nor the names of its contributors
54 1.1 alm * may be used to endorse or promote products derived from this software
55 1.1 alm * without specific prior written permission.
56 1.1 alm *
57 1.1 alm * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
58 1.1 alm * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
59 1.1 alm * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
60 1.1 alm * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
61 1.1 alm * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
62 1.1 alm * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
63 1.1 alm * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
64 1.1 alm * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
65 1.1 alm * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
66 1.1 alm * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
67 1.1 alm * SUCH DAMAGE.
68 1.1 alm */
69 1.1 alm
70 1.10 lukem #include <sys/cdefs.h>
71 1.1 alm #ifndef lint
72 1.10 lukem __COPYRIGHT("@(#) Copyright (c) 1992, 1993\n\
73 1.10 lukem The Regents of the University of California. All rights reserved.\n");
74 1.1 alm #endif /* not lint */
75 1.1 alm
76 1.1 alm #ifndef lint
77 1.10 lukem #if 0
78 1.10 lukem static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 1/3/94";
79 1.10 lukem #else
80 1.14 agc __RCSID("$NetBSD: main.c,v 1.14 2003/08/07 11:15:49 agc Exp $");
81 1.10 lukem #endif
82 1.1 alm #endif /* not lint */
83 1.1 alm
84 1.1 alm #include <sys/types.h>
85 1.1 alm
86 1.1 alm #include <ctype.h>
87 1.1 alm #include <errno.h>
88 1.1 alm #include <fcntl.h>
89 1.1 alm #include <regex.h>
90 1.1 alm #include <stddef.h>
91 1.1 alm #include <stdio.h>
92 1.1 alm #include <stdlib.h>
93 1.1 alm #include <string.h>
94 1.1 alm #include <unistd.h>
95 1.1 alm
96 1.1 alm #include "defs.h"
97 1.1 alm #include "extern.h"
98 1.1 alm
99 1.1 alm /*
100 1.1 alm * Linked list of units (strings and files) to be compiled
101 1.1 alm */
102 1.1 alm struct s_compunit {
103 1.1 alm struct s_compunit *next;
104 1.1 alm enum e_cut {CU_FILE, CU_STRING} type;
105 1.1 alm char *s; /* Pointer to string or fname */
106 1.1 alm };
107 1.1 alm
108 1.1 alm /*
109 1.1 alm * Linked list pointer to compilation units and pointer to current
110 1.1 alm * next pointer.
111 1.1 alm */
112 1.1 alm static struct s_compunit *script, **cu_nextp = &script;
113 1.1 alm
114 1.1 alm /*
115 1.1 alm * Linked list of files to be processed
116 1.1 alm */
117 1.1 alm struct s_flist {
118 1.1 alm char *fname;
119 1.1 alm struct s_flist *next;
120 1.1 alm };
121 1.1 alm
122 1.1 alm /*
123 1.1 alm * Linked list pointer to files and pointer to current
124 1.1 alm * next pointer.
125 1.1 alm */
126 1.1 alm static struct s_flist *files, **fl_nextp = &files;
127 1.1 alm
128 1.11 atatat int aflag, eflag, nflag, ere;
129 1.1 alm
130 1.1 alm /*
131 1.1 alm * Current file and line number; line numbers restart across compilation
132 1.1 alm * units, but span across input files.
133 1.1 alm */
134 1.1 alm char *fname; /* File name. */
135 1.1 alm u_long linenum;
136 1.1 alm int lastline; /* TRUE on the last line of the last file */
137 1.1 alm
138 1.13 wiz static void add_compunit(enum e_cut, char *);
139 1.13 wiz static void add_file(char *);
140 1.13 wiz int main(int, char **);
141 1.1 alm
142 1.1 alm int
143 1.13 wiz main(int argc, char *argv[])
144 1.1 alm {
145 1.1 alm int c, fflag;
146 1.1 alm
147 1.1 alm fflag = 0;
148 1.11 atatat while ((c = getopt(argc, argv, "ae:f:nE")) != -1)
149 1.1 alm switch (c) {
150 1.1 alm case 'a':
151 1.1 alm aflag = 1;
152 1.1 alm break;
153 1.1 alm case 'e':
154 1.1 alm eflag = 1;
155 1.1 alm add_compunit(CU_STRING, optarg);
156 1.1 alm break;
157 1.1 alm case 'f':
158 1.1 alm fflag = 1;
159 1.1 alm add_compunit(CU_FILE, optarg);
160 1.1 alm break;
161 1.1 alm case 'n':
162 1.1 alm nflag = 1;
163 1.1 alm break;
164 1.11 atatat case 'E':
165 1.11 atatat ere = REG_EXTENDED;
166 1.11 atatat break;
167 1.1 alm default:
168 1.1 alm case '?':
169 1.1 alm (void)fprintf(stderr,
170 1.12 wiz "usage:\t%s script [-anE] [file ...]\n\tsed [-an] [-e script] ... [-f script_file] ... [file ...]\n",
171 1.11 atatat getprogname());
172 1.1 alm exit(1);
173 1.1 alm }
174 1.1 alm argc -= optind;
175 1.1 alm argv += optind;
176 1.1 alm
177 1.1 alm /* First usage case; script is the first arg */
178 1.1 alm if (!eflag && !fflag && *argv) {
179 1.1 alm add_compunit(CU_STRING, *argv);
180 1.1 alm argv++;
181 1.1 alm }
182 1.1 alm
183 1.1 alm compile();
184 1.1 alm
185 1.1 alm /* Continue with first and start second usage */
186 1.1 alm if (*argv)
187 1.1 alm for (; *argv; argv++)
188 1.1 alm add_file(*argv);
189 1.1 alm else
190 1.1 alm add_file(NULL);
191 1.1 alm process();
192 1.1 alm cfclose(prog, NULL);
193 1.1 alm if (fclose(stdout))
194 1.1 alm err(FATAL, "stdout: %s", strerror(errno));
195 1.1 alm exit (0);
196 1.1 alm }
197 1.1 alm
198 1.1 alm /*
199 1.1 alm * Like fgets, but go through the chain of compilation units chaining them
200 1.1 alm * together. Empty strings and files are ignored.
201 1.1 alm */
202 1.1 alm char *
203 1.13 wiz cu_fgets(char *buf, int n)
204 1.1 alm {
205 1.1 alm static enum {ST_EOF, ST_FILE, ST_STRING} state = ST_EOF;
206 1.1 alm static FILE *f; /* Current open file */
207 1.1 alm static char *s; /* Current pointer inside string */
208 1.1 alm static char string_ident[30];
209 1.1 alm char *p;
210 1.1 alm
211 1.1 alm again:
212 1.1 alm switch (state) {
213 1.1 alm case ST_EOF:
214 1.1 alm if (script == NULL)
215 1.1 alm return (NULL);
216 1.1 alm linenum = 0;
217 1.1 alm switch (script->type) {
218 1.1 alm case CU_FILE:
219 1.1 alm if ((f = fopen(script->s, "r")) == NULL)
220 1.1 alm err(FATAL,
221 1.1 alm "%s: %s", script->s, strerror(errno));
222 1.1 alm fname = script->s;
223 1.1 alm state = ST_FILE;
224 1.1 alm goto again;
225 1.1 alm case CU_STRING:
226 1.1 alm if ((snprintf(string_ident,
227 1.1 alm sizeof(string_ident), "\"%s\"", script->s)) >=
228 1.1 alm sizeof(string_ident) - 1)
229 1.1 alm (void)strcpy(string_ident +
230 1.1 alm sizeof(string_ident) - 6, " ...\"");
231 1.1 alm fname = string_ident;
232 1.1 alm s = script->s;
233 1.1 alm state = ST_STRING;
234 1.1 alm goto again;
235 1.1 alm }
236 1.1 alm case ST_FILE:
237 1.1 alm if ((p = fgets(buf, n, f)) != NULL) {
238 1.1 alm linenum++;
239 1.1 alm if (linenum == 1 && buf[0] == '#' && buf[1] == 'n')
240 1.1 alm nflag = 1;
241 1.1 alm return (p);
242 1.1 alm }
243 1.1 alm script = script->next;
244 1.1 alm (void)fclose(f);
245 1.1 alm state = ST_EOF;
246 1.1 alm goto again;
247 1.1 alm case ST_STRING:
248 1.1 alm if (linenum == 0 && s[0] == '#' && s[1] == 'n')
249 1.1 alm nflag = 1;
250 1.1 alm p = buf;
251 1.1 alm for (;;) {
252 1.1 alm if (n-- <= 1) {
253 1.1 alm *p = '\0';
254 1.1 alm linenum++;
255 1.1 alm return (buf);
256 1.1 alm }
257 1.1 alm switch (*s) {
258 1.1 alm case '\0':
259 1.1 alm state = ST_EOF;
260 1.1 alm if (s == script->s) {
261 1.1 alm script = script->next;
262 1.1 alm goto again;
263 1.1 alm } else {
264 1.1 alm script = script->next;
265 1.1 alm *p = '\0';
266 1.1 alm linenum++;
267 1.1 alm return (buf);
268 1.1 alm }
269 1.1 alm case '\n':
270 1.1 alm *p++ = '\n';
271 1.1 alm *p = '\0';
272 1.1 alm s++;
273 1.1 alm linenum++;
274 1.1 alm return (buf);
275 1.1 alm default:
276 1.1 alm *p++ = *s++;
277 1.1 alm }
278 1.1 alm }
279 1.1 alm }
280 1.1 alm /* NOTREACHED */
281 1.10 lukem return (NULL);
282 1.1 alm }
283 1.1 alm
284 1.1 alm /*
285 1.1 alm * Like fgets, but go through the list of files chaining them together.
286 1.1 alm * Set len to the length of the line.
287 1.1 alm */
288 1.1 alm int
289 1.13 wiz mf_fgets(SPACE *sp, enum e_spflag spflag)
290 1.1 alm {
291 1.1 alm static FILE *f; /* Current open file */
292 1.1 alm size_t len;
293 1.8 mark char *p;
294 1.8 mark int c;
295 1.1 alm
296 1.1 alm if (f == NULL)
297 1.1 alm /* Advance to first non-empty file */
298 1.1 alm for (;;) {
299 1.1 alm if (files == NULL) {
300 1.1 alm lastline = 1;
301 1.1 alm return (0);
302 1.1 alm }
303 1.1 alm if (files->fname == NULL) {
304 1.1 alm f = stdin;
305 1.1 alm fname = "stdin";
306 1.1 alm } else {
307 1.1 alm fname = files->fname;
308 1.1 alm if ((f = fopen(fname, "r")) == NULL)
309 1.1 alm err(FATAL, "%s: %s",
310 1.1 alm fname, strerror(errno));
311 1.1 alm }
312 1.1 alm if ((c = getc(f)) != EOF) {
313 1.1 alm (void)ungetc(c, f);
314 1.1 alm break;
315 1.1 alm }
316 1.1 alm (void)fclose(f);
317 1.1 alm files = files->next;
318 1.1 alm }
319 1.1 alm
320 1.1 alm if (lastline) {
321 1.1 alm sp->len = 0;
322 1.1 alm return (0);
323 1.1 alm }
324 1.1 alm
325 1.1 alm /*
326 1.5 cgd * Use fgetln so that we can handle essentially infinite input data.
327 1.5 cgd * Can't use the pointer into the stdio buffer as the process space
328 1.5 cgd * because the ungetc() can cause it to move.
329 1.1 alm */
330 1.4 cgd p = fgetln(f, &len);
331 1.1 alm if (ferror(f))
332 1.1 alm err(FATAL, "%s: %s", fname, strerror(errno ? errno : EIO));
333 1.1 alm cspace(sp, p, len, spflag);
334 1.1 alm
335 1.1 alm linenum++;
336 1.1 alm /* Advance to next non-empty file */
337 1.1 alm while ((c = getc(f)) == EOF) {
338 1.1 alm (void)fclose(f);
339 1.1 alm files = files->next;
340 1.1 alm if (files == NULL) {
341 1.1 alm lastline = 1;
342 1.1 alm return (1);
343 1.1 alm }
344 1.1 alm if (files->fname == NULL) {
345 1.1 alm f = stdin;
346 1.1 alm fname = "stdin";
347 1.1 alm } else {
348 1.1 alm fname = files->fname;
349 1.1 alm if ((f = fopen(fname, "r")) == NULL)
350 1.1 alm err(FATAL, "%s: %s", fname, strerror(errno));
351 1.1 alm }
352 1.1 alm }
353 1.1 alm (void)ungetc(c, f);
354 1.1 alm return (1);
355 1.1 alm }
356 1.1 alm
357 1.1 alm /*
358 1.1 alm * Add a compilation unit to the linked list
359 1.1 alm */
360 1.1 alm static void
361 1.13 wiz add_compunit(enum e_cut type, char *s)
362 1.1 alm {
363 1.1 alm struct s_compunit *cu;
364 1.1 alm
365 1.1 alm cu = xmalloc(sizeof(struct s_compunit));
366 1.1 alm cu->type = type;
367 1.1 alm cu->s = s;
368 1.1 alm cu->next = NULL;
369 1.1 alm *cu_nextp = cu;
370 1.1 alm cu_nextp = &cu->next;
371 1.1 alm }
372 1.1 alm
373 1.1 alm /*
374 1.1 alm * Add a file to the linked list
375 1.1 alm */
376 1.1 alm static void
377 1.13 wiz add_file(char *s)
378 1.1 alm {
379 1.1 alm struct s_flist *fp;
380 1.1 alm
381 1.1 alm fp = xmalloc(sizeof(struct s_flist));
382 1.1 alm fp->next = NULL;
383 1.1 alm *fl_nextp = fp;
384 1.1 alm fp->fname = s;
385 1.1 alm fl_nextp = &fp->next;
386 1.1 alm }
387