Home | History | Annotate | Line # | Download | only in uniq
uniq.c revision 1.8
      1  1.8    lukem /*	$NetBSD: uniq.c,v 1.8 1997/10/20 02:27:05 lukem Exp $	*/
      2  1.6      jtc 
      3  1.1      cgd /*
      4  1.6      jtc  * Copyright (c) 1989, 1993
      5  1.6      jtc  *	The Regents of the University of California.  All rights reserved.
      6  1.1      cgd  *
      7  1.1      cgd  * This code is derived from software contributed to Berkeley by
      8  1.1      cgd  * Case Larsen.
      9  1.1      cgd  *
     10  1.1      cgd  * Redistribution and use in source and binary forms, with or without
     11  1.1      cgd  * modification, are permitted provided that the following conditions
     12  1.1      cgd  * are met:
     13  1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     14  1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     15  1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     17  1.1      cgd  *    documentation and/or other materials provided with the distribution.
     18  1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     19  1.1      cgd  *    must display the following acknowledgement:
     20  1.1      cgd  *	This product includes software developed by the University of
     21  1.1      cgd  *	California, Berkeley and its contributors.
     22  1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     23  1.1      cgd  *    may be used to endorse or promote products derived from this software
     24  1.1      cgd  *    without specific prior written permission.
     25  1.1      cgd  *
     26  1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27  1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28  1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29  1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30  1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31  1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32  1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33  1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34  1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35  1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36  1.1      cgd  * SUCH DAMAGE.
     37  1.1      cgd  */
     38  1.1      cgd 
     39  1.8    lukem #include <sys/cdefs.h>
     40  1.1      cgd #ifndef lint
     41  1.8    lukem __COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
     42  1.8    lukem 	The Regents of the University of California.  All rights reserved.\n");
     43  1.1      cgd #endif /* not lint */
     44  1.1      cgd 
     45  1.1      cgd #ifndef lint
     46  1.6      jtc #if 0
     47  1.7      jtc static char sccsid[] = "@(#)uniq.c	8.3 (Berkeley) 5/4/95";
     48  1.6      jtc #endif
     49  1.8    lukem __RCSID("$NetBSD: uniq.c,v 1.8 1997/10/20 02:27:05 lukem Exp $");
     50  1.1      cgd #endif /* not lint */
     51  1.1      cgd 
     52  1.8    lukem #include <err.h>
     53  1.4  mycroft #include <errno.h>
     54  1.1      cgd #include <stdio.h>
     55  1.1      cgd #include <ctype.h>
     56  1.4  mycroft #include <stdlib.h>
     57  1.4  mycroft #include <string.h>
     58  1.7      jtc #include <unistd.h>
     59  1.1      cgd 
     60  1.4  mycroft #define	MAXLINELEN	(8 * 1024)
     61  1.4  mycroft 
     62  1.1      cgd int cflag, dflag, uflag;
     63  1.1      cgd int numchars, numfields, repeats;
     64  1.1      cgd 
     65  1.4  mycroft FILE	*file __P((char *, char *));
     66  1.8    lukem int	 main __P((int, char **));
     67  1.4  mycroft void	 show __P((FILE *, char *));
     68  1.4  mycroft char	*skip __P((char *));
     69  1.4  mycroft void	 obsolete __P((char *[]));
     70  1.4  mycroft void	 usage __P((void));
     71  1.1      cgd 
     72  1.4  mycroft int
     73  1.4  mycroft main (argc, argv)
     74  1.1      cgd 	int argc;
     75  1.4  mycroft 	char *argv[];
     76  1.1      cgd {
     77  1.8    lukem 	char *t1, *t2;
     78  1.4  mycroft 	FILE *ifp, *ofp;
     79  1.1      cgd 	int ch;
     80  1.4  mycroft 	char *prevline, *thisline, *p;
     81  1.1      cgd 
     82  1.8    lukem 	ifp = ofp = NULL;
     83  1.4  mycroft 	obsolete(argv);
     84  1.8    lukem 	while ((ch = getopt(argc, argv, "-cdf:s:u")) != -1)
     85  1.1      cgd 		switch (ch) {
     86  1.1      cgd 		case '-':
     87  1.1      cgd 			--optind;
     88  1.1      cgd 			goto done;
     89  1.1      cgd 		case 'c':
     90  1.1      cgd 			cflag = 1;
     91  1.1      cgd 			break;
     92  1.1      cgd 		case 'd':
     93  1.1      cgd 			dflag = 1;
     94  1.1      cgd 			break;
     95  1.4  mycroft 		case 'f':
     96  1.4  mycroft 			numfields = strtol(optarg, &p, 10);
     97  1.4  mycroft 			if (numfields < 0 || *p)
     98  1.8    lukem 				errx(1, "illegal field skip value: %s", optarg);
     99  1.4  mycroft 			break;
    100  1.4  mycroft 		case 's':
    101  1.4  mycroft 			numchars = strtol(optarg, &p, 10);
    102  1.4  mycroft 			if (numchars < 0 || *p)
    103  1.8    lukem 				errx(1, "illegal character skip value: %s",
    104  1.8    lukem 				    optarg);
    105  1.4  mycroft 			break;
    106  1.1      cgd 		case 'u':
    107  1.1      cgd 			uflag = 1;
    108  1.1      cgd 			break;
    109  1.1      cgd 		case '?':
    110  1.1      cgd 		default:
    111  1.1      cgd 			usage();
    112  1.1      cgd 	}
    113  1.1      cgd 
    114  1.1      cgd done:	argc -= optind;
    115  1.1      cgd 	argv +=optind;
    116  1.1      cgd 
    117  1.4  mycroft 	/* If no flags are set, default is -d -u. */
    118  1.1      cgd 	if (cflag) {
    119  1.1      cgd 		if (dflag || uflag)
    120  1.1      cgd 			usage();
    121  1.1      cgd 	} else if (!dflag && !uflag)
    122  1.1      cgd 		dflag = uflag = 1;
    123  1.1      cgd 
    124  1.1      cgd 	switch(argc) {
    125  1.1      cgd 	case 0:
    126  1.1      cgd 		ifp = stdin;
    127  1.1      cgd 		ofp = stdout;
    128  1.1      cgd 		break;
    129  1.1      cgd 	case 1:
    130  1.1      cgd 		ifp = file(argv[0], "r");
    131  1.1      cgd 		ofp = stdout;
    132  1.1      cgd 		break;
    133  1.1      cgd 	case 2:
    134  1.1      cgd 		ifp = file(argv[0], "r");
    135  1.1      cgd 		ofp = file(argv[1], "w");
    136  1.1      cgd 		break;
    137  1.1      cgd 	default:
    138  1.1      cgd 		usage();
    139  1.1      cgd 	}
    140  1.1      cgd 
    141  1.1      cgd 	prevline = malloc(MAXLINELEN);
    142  1.1      cgd 	thisline = malloc(MAXLINELEN);
    143  1.6      jtc 	if (prevline == NULL || thisline == NULL)
    144  1.8    lukem 		err(1, "malloc");
    145  1.6      jtc 
    146  1.6      jtc 	if (fgets(prevline, MAXLINELEN, ifp) == NULL)
    147  1.3  deraadt 		exit(0);
    148  1.1      cgd 
    149  1.1      cgd 	while (fgets(thisline, MAXLINELEN, ifp)) {
    150  1.4  mycroft 		/* If requested get the chosen fields + character offsets. */
    151  1.1      cgd 		if (numfields || numchars) {
    152  1.1      cgd 			t1 = skip(thisline);
    153  1.1      cgd 			t2 = skip(prevline);
    154  1.1      cgd 		} else {
    155  1.1      cgd 			t1 = thisline;
    156  1.1      cgd 			t2 = prevline;
    157  1.1      cgd 		}
    158  1.1      cgd 
    159  1.4  mycroft 		/* If different, print; set previous to new value. */
    160  1.1      cgd 		if (strcmp(t1, t2)) {
    161  1.1      cgd 			show(ofp, prevline);
    162  1.1      cgd 			t1 = prevline;
    163  1.1      cgd 			prevline = thisline;
    164  1.1      cgd 			thisline = t1;
    165  1.1      cgd 			repeats = 0;
    166  1.4  mycroft 		} else
    167  1.1      cgd 			++repeats;
    168  1.1      cgd 	}
    169  1.1      cgd 	show(ofp, prevline);
    170  1.1      cgd 	exit(0);
    171  1.1      cgd }
    172  1.1      cgd 
    173  1.1      cgd /*
    174  1.1      cgd  * show --
    175  1.4  mycroft  *	Output a line depending on the flags and number of repetitions
    176  1.1      cgd  *	of the line.
    177  1.1      cgd  */
    178  1.4  mycroft void
    179  1.1      cgd show(ofp, str)
    180  1.1      cgd 	FILE *ofp;
    181  1.1      cgd 	char *str;
    182  1.1      cgd {
    183  1.7      jtc 
    184  1.7      jtc 	if (cflag && *str)
    185  1.1      cgd 		(void)fprintf(ofp, "%4d %s", repeats + 1, str);
    186  1.8    lukem 	if ((dflag && repeats) || (uflag && !repeats))
    187  1.1      cgd 		(void)fprintf(ofp, "%s", str);
    188  1.1      cgd }
    189  1.1      cgd 
    190  1.1      cgd char *
    191  1.1      cgd skip(str)
    192  1.8    lukem 	char *str;
    193  1.1      cgd {
    194  1.8    lukem 	int infield, nchars, nfields;
    195  1.1      cgd 
    196  1.1      cgd 	for (nfields = numfields, infield = 0; nfields && *str; ++str)
    197  1.1      cgd 		if (isspace(*str)) {
    198  1.1      cgd 			if (infield) {
    199  1.1      cgd 				infield = 0;
    200  1.1      cgd 				--nfields;
    201  1.1      cgd 			}
    202  1.1      cgd 		} else if (!infield)
    203  1.1      cgd 			infield = 1;
    204  1.1      cgd 	for (nchars = numchars; nchars-- && *str; ++str);
    205  1.1      cgd 	return(str);
    206  1.1      cgd }
    207  1.1      cgd 
    208  1.1      cgd FILE *
    209  1.1      cgd file(name, mode)
    210  1.1      cgd 	char *name, *mode;
    211  1.1      cgd {
    212  1.1      cgd 	FILE *fp;
    213  1.1      cgd 
    214  1.4  mycroft 	if ((fp = fopen(name, mode)) == NULL)
    215  1.8    lukem 		err(1, "%s", name);
    216  1.4  mycroft 	return(fp);
    217  1.4  mycroft }
    218  1.4  mycroft 
    219  1.4  mycroft void
    220  1.4  mycroft obsolete(argv)
    221  1.4  mycroft 	char *argv[];
    222  1.4  mycroft {
    223  1.4  mycroft 	int len;
    224  1.4  mycroft 	char *ap, *p, *start;
    225  1.4  mycroft 
    226  1.8    lukem 	while ((ap = *++argv) != NULL) {
    227  1.4  mycroft 		/* Return if "--" or not an option of any form. */
    228  1.4  mycroft 		if (ap[0] != '-') {
    229  1.4  mycroft 			if (ap[0] != '+')
    230  1.4  mycroft 				return;
    231  1.4  mycroft 		} else if (ap[1] == '-')
    232  1.4  mycroft 			return;
    233  1.4  mycroft 		if (!isdigit(ap[1]))
    234  1.4  mycroft 			continue;
    235  1.4  mycroft 		/*
    236  1.4  mycroft 		 * Digit signifies an old-style option.  Malloc space for dash,
    237  1.4  mycroft 		 * new option and argument.
    238  1.4  mycroft 		 */
    239  1.4  mycroft 		len = strlen(ap);
    240  1.4  mycroft 		if ((start = p = malloc(len + 3)) == NULL)
    241  1.8    lukem 			err(1, "malloc");
    242  1.4  mycroft 		*p++ = '-';
    243  1.4  mycroft 		*p++ = ap[0] == '+' ? 's' : 'f';
    244  1.4  mycroft 		(void)strcpy(p, ap + 1);
    245  1.4  mycroft 		*argv = start;
    246  1.1      cgd 	}
    247  1.1      cgd }
    248  1.1      cgd 
    249  1.4  mycroft void
    250  1.1      cgd usage()
    251  1.1      cgd {
    252  1.1      cgd 	(void)fprintf(stderr,
    253  1.4  mycroft 	    "usage: uniq [-c | -du] [-f fields] [-s chars] [input [output]]\n");
    254  1.4  mycroft 	exit(1);
    255  1.1      cgd }
    256