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