]>
git.cameronkatri.com Git - apple_cmds.git/blob - text_cmds/look/look.c
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * David Hitz of Auspex Systems, Inc.
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. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 static const char copyright
[] =
39 "@(#) Copyright (c) 1991, 1993\n\
40 The Regents of the University of California. All rights reserved.\n";
45 static char sccsid
[] = "@(#)look.c 8.2 (Berkeley) 5/4/95";
48 #include <sys/cdefs.h>
49 __FBSDID("$FreeBSD: src/usr.bin/look/look.c,v 1.18.10.2.4.1 2010/06/14 02:09:06 kensmith Exp $");
52 * look -- find lines in a sorted list.
54 * The man page said that TABs and SPACEs participate in -d comparisons.
55 * In fact, they were ignored. This implements historic practice, not
59 #include <sys/types.h>
75 #include "pathnames.h"
77 static char _path_words
[] = _PATH_WORDS
;
85 char *binary_search(wchar_t *, unsigned char *, unsigned char *);
86 int compare(wchar_t *, unsigned char *, unsigned char *);
87 char *linear_search(wchar_t *, unsigned char *, unsigned char *);
88 int look(wchar_t *, unsigned char *, unsigned char *);
89 wchar_t *prepkey(const char *, wchar_t);
90 void print_from(wchar_t *, unsigned char *, unsigned char *);
92 static void usage(void);
95 main(int argc
, char *argv
[])
100 unsigned char *back
, *front
;
101 unsigned const char *file
;
104 (void) setlocale(LC_CTYPE
, "");
108 while ((ch
= getopt(argc
, argv
, "dft:")) != -1)
117 if (mbrtowc(&termchar
, optarg
, MB_LEN_MAX
, NULL
) !=
119 errx(2, "invalid termination character");
135 if (argc
== 1) /* But set -df by default. */
137 key
= prepkey(*argv
++, termchar
);
144 if ((fd
= open(file
, O_RDONLY
, 0)) < 0 || fstat(fd
, &sb
))
146 if (sb
.st_size
> SIZE_T_MAX
)
147 errx(2, "%s: %s", file
, strerror(EFBIG
));
148 if (sb
.st_size
== 0) {
152 if ((front
= mmap(NULL
, (size_t)sb
.st_size
, PROT_READ
, MAP_SHARED
, fd
, (off_t
)0)) == MAP_FAILED
)
154 back
= front
+ sb
.st_size
;
155 match
*= (look(key
, front
, back
));
157 } while (argc
-- > 2 && (file
= *argv
++));
163 prepkey(const char *string
, wchar_t termchar
)
166 wchar_t *key
, *writep
;
171 * Reformat search string and convert to wide character representation
172 * to avoid doing it multiple times later.
174 if ((key
= malloc(sizeof(wchar_t) * (strlen(string
) + 1))) == NULL
)
178 while ((clen
= mbrtowc(&ch
, readp
, MB_LEN_MAX
, NULL
)) != 0) {
179 if (clen
== (size_t)-1 || clen
== (size_t)-2)
180 errc(2, EILSEQ
, NULL
);
183 if (!dflag
|| iswalnum(ch
))
188 if (termchar
!= L
'\0' && (writep
= wcschr(key
, termchar
)) != NULL
)
194 look(wchar_t *string
, unsigned char *front
, unsigned char *back
)
197 front
= binary_search(string
, front
, back
);
198 front
= linear_search(string
, front
, back
);
201 print_from(string
, front
, back
);
202 return (front
? 0 : 1);
207 * Binary search for "string" in memory between "front" and "back".
209 * This routine is expected to return a pointer to the start of a line at
210 * *or before* the first word matching "string". Relaxing the constraint
211 * this way simplifies the algorithm.
214 * front points to the beginning of a line at or before the first
217 * back points to the beginning of a line at or after the first
220 * Base of the Invariants.
224 * Advancing the Invariants:
226 * p = first newline after halfway point from front to back.
228 * If the string at "p" is not greater than the string to match,
229 * p is the new front. Otherwise it is the new back.
233 * The definition of the routine allows it return at any point,
234 * since front is always at or before the line to print.
236 * In fact, it returns when the chosen "p" equals "back". This
237 * implies that there exists a string is least half as long as
238 * (back - front), which in turn implies that a linear search will
239 * be no more expensive than the cost of simply printing a string or two.
241 * Trying to continue with binary search at this point would be
242 * more trouble than it's worth.
244 #define SKIP_PAST_NEWLINE(p, back) \
245 while (p < back && *p++ != '\n');
248 binary_search(wchar_t *string
, unsigned char *front
, unsigned char *back
)
252 p
= front
+ (back
- front
) / 2;
253 SKIP_PAST_NEWLINE(p
, back
);
256 * If the file changes underneath us, make sure we don't
259 while (p
< back
&& back
> front
) {
260 if (compare(string
, p
, back
) == GREATER
)
264 p
= front
+ (back
- front
) / 2;
265 SKIP_PAST_NEWLINE(p
, back
);
271 * Find the first line that starts with string, linearly searching from front
274 * Return NULL for no such line.
276 * This routine assumes:
278 * o front points at the first character in a line.
279 * o front is before or at the first line to be printed.
282 linear_search(wchar_t *string
, unsigned char *front
, unsigned char *back
)
284 while (front
< back
) {
285 switch (compare(string
, front
, back
)) {
286 case EQUAL
: /* Found it. */
288 case LESS
: /* No such string. */
290 case GREATER
: /* Keep going. */
293 SKIP_PAST_NEWLINE(front
, back
);
299 * Print as many lines as match string, starting at front.
302 print_from(wchar_t *string
, unsigned char *front
, unsigned char *back
)
304 for (; front
< back
&& compare(string
, front
, back
) == EQUAL
; ++front
) {
305 for (; front
< back
&& *front
!= '\n'; ++front
)
306 if (putchar(*front
) == EOF
)
308 if (putchar('\n') == EOF
)
314 * Return LESS, GREATER, or EQUAL depending on how the string1 compares with
315 * string2 (s1 ??? s2).
317 * o Matches up to len(s1) are EQUAL.
318 * o Matches up to len(s2) are GREATER.
320 * Compare understands about the -f and -d flags, and treats comparisons
323 * The string "s1" is null terminated. The string s2 is '\n' terminated (or
324 * "back" terminated).
327 compare(wchar_t *s1
, unsigned char *s2
, unsigned char *back
)
332 for (; *s1
&& s2
< back
&& *s2
!= '\n'; ++s1
, s2
+= len2
) {
334 len2
= mbrtowc(&ch2
, s2
, back
- s2
, NULL
);
335 if (len2
== (size_t)-1 || len2
== (size_t)-2) {
341 if (dflag
&& !iswalnum(ch2
)) {
342 /* Ignore character in comparison. */
347 return (ch1
< ch2
? LESS
: GREATER
);
349 return (*s1
? GREATER
: EQUAL
);
355 (void)fprintf(stderr
, "usage: look [-df] [-t char] string [file ...]\n");