2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * @(#) Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved.
33 * @(#)uniq.c 8.3 (Berkeley) 5/4/95
34 * $FreeBSD: head/usr.bin/uniq/uniq.c 263234 2014-03-16 11:04:44Z rwatson $
53 static int cflag
, dflag
, uflag
, iflag
;
54 static int numchars
, numfields
, repeats
;
56 static FILE *file(const char *, const char *);
57 static wchar_t *convert(const char *);
58 static int inlcmp(const char *, const char *);
59 static void show(FILE *, const char *);
60 static wchar_t *skip(wchar_t *);
61 static void obsolete(char *[]);
62 static void usage(void);
65 main(int argc
, char *argv
[])
67 wchar_t *tprev
, *tthis
;
70 size_t prevbuflen
, thisbuflen
, b1
;
71 char *prevline
, *thisline
, *p
;
74 (void) setlocale(LC_ALL
, "");
77 while ((ch
= getopt(argc
, argv
, "cdif:s:u")) != -1)
89 numfields
= strtol(optarg
, &p
, 10);
90 if (numfields
< 0 || *p
)
91 errx(1, "illegal field skip value: %s", optarg
);
94 numchars
= strtol(optarg
, &p
, 10);
95 if (numchars
< 0 || *p
)
96 errx(1, "illegal character skip value: %s", optarg
);
109 /* If no flags are set, default is -d -u. */
113 } else if (!dflag
&& !uflag
)
122 if (argc
> 0 && strcmp(argv
[0], "-") != 0)
123 ifp
= file(ifn
= argv
[0], "r");
125 ofp
= file(argv
[1], "w");
127 prevbuflen
= thisbuflen
= 0;
128 prevline
= thisline
= NULL
;
130 if (getline(&prevline
, &prevbuflen
, ifp
) < 0) {
135 tprev
= convert(prevline
);
137 if (!cflag
&& uflag
&& dflag
)
141 while (getline(&thisline
, &thisbuflen
, ifp
) >= 0) {
144 tthis
= convert(thisline
);
146 if (tthis
== NULL
&& tprev
== NULL
)
147 comp
= inlcmp(thisline
, prevline
);
148 else if (tthis
== NULL
|| tprev
== NULL
)
151 comp
= wcscoll(tthis
, tprev
);
154 /* If different, print; set previous to new value. */
155 if (cflag
|| !dflag
|| !uflag
)
160 prevbuflen
= thisbuflen
;
164 if (!cflag
&& uflag
&& dflag
)
175 if (cflag
|| !dflag
|| !uflag
)
181 convert(const char *str
)
184 wchar_t *buf
, *ret
, *p
;
186 if ((n
= mbstowcs(NULL
, str
, 0)) == (size_t)-1)
188 if (SIZE_MAX
/ sizeof(*buf
) < n
+ 1)
189 errx(1, "conversion buffer length overflow");
190 if ((buf
= malloc((n
+ 1) * sizeof(*buf
))) == NULL
)
192 if (mbstowcs(buf
, str
, n
+ 1) != n
)
193 errx(1, "internal mbstowcs() error");
194 /* The last line may not end with \n. */
195 if (n
> 0 && buf
[n
- 1] == L
'\n')
198 /* If requested get the chosen fields + character offsets. */
199 if (numfields
|| numchars
) {
200 if ((ret
= wcsdup(skip(buf
))) == NULL
)
207 for (p
= ret
; *p
!= L
'\0'; p
++)
215 inlcmp(const char *s1
, const char *s2
)
222 c1
= (unsigned char)*s1
;
223 c2
= (unsigned char)*(s2
- 1);
224 /* The last line may not end with \n. */
234 * Output a line depending on the flags and number of repetitions
238 show(FILE *ofp
, const char *str
)
242 (void)fprintf(ofp
, "%4d %s", repeats
+ 1, str
);
243 if ((dflag
&& repeats
) || (uflag
&& !repeats
))
244 (void)fprintf(ofp
, "%s", str
);
252 for (nfields
= 0; *str
!= L
'\0' && nfields
++ != numfields
; ) {
253 while (iswblank(*str
))
255 while (*str
!= L
'\0' && !iswblank(*str
))
258 for (nchars
= numchars
; nchars
-- && *str
!= L
'\0'; ++str
)
264 file(const char *name
, const char *mode
)
268 if ((fp
= fopen(name
, mode
)) == NULL
)
274 obsolete(char *argv
[])
277 char *ap
, *p
, *start
;
279 while ((ap
= *++argv
)) {
280 /* Return if "--" or not an option of any form. */
284 } else if (ap
[1] == '-')
286 if (!isdigit((unsigned char)ap
[1]))
289 * Digit signifies an old-style option. Malloc space for dash,
290 * new option and argument.
293 if ((start
= p
= malloc(len
+ 3)) == NULL
)
296 *p
++ = ap
[0] == '+' ? 's' : 'f';
297 (void)strcpy(p
, ap
+ 1);
305 (void)fprintf(stderr
,
306 "usage: uniq [-c | -d | -u] [-i] [-f fields] [-s chars] [input [output]]\n");