xref: /netbsd-src/usr.bin/whatis/whatis.c (revision f5d3fbbc6ff4a77159fb268d247bd94cb7d7e332)
1 /*	$NetBSD: whatis.c,v 1.5 1997/10/17 07:08:06 mikel Exp $	*/
2 
3 /*
4  * Copyright (c) 1987, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *	This product includes software developed by the University of
18  *	California, Berkeley and its contributors.
19  * 4. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35 
36 #include <sys/cdefs.h>
37 
38 #ifndef lint
39 __COPYRIGHT("@(#) Copyright (c) 1987, 1993\n\
40 	The Regents of the University of California.  All rights reserved.\n");
41 #endif /* not lint */
42 
43 #ifndef lint
44 #if 0
45 static char sccsid[] = "@(#)whatis.c	8.5 (Berkeley) 1/2/94";
46 #else
47 __RCSID("$NetBSD: whatis.c,v 1.5 1997/10/17 07:08:06 mikel Exp $");
48 #endif
49 #endif /* not lint */
50 
51 #include <sys/param.h>
52 #include <sys/queue.h>
53 
54 #include <ctype.h>
55 #include <err.h>
56 #include <glob.h>
57 #include <stdio.h>
58 #include <stdlib.h>
59 #include <string.h>
60 
61 #include "config.h"
62 #include "pathnames.h"
63 
64 #define	MAXLINELEN	256			/* max line handled */
65 
66 static int *found, foundman;
67 
68 int main __P((int, char **));
69 void dashtrunc __P((char *, char *));
70 int match __P((char *, char *));
71 void usage __P((void));
72 void whatis __P((char **, char *, int));
73 
74 int
75 main(argc, argv)
76 	int argc;
77 	char *argv[];
78 {
79 	ENTRY *ep;
80 	TAG *tp;
81 	int ch, rv;
82 	char *beg, *conffile, **p, *p_augment, *p_path;
83 	glob_t pg;
84 
85 	conffile = NULL;
86 	p_augment = p_path = NULL;
87 	while ((ch = getopt(argc, argv, "C:M:m:P:")) != EOF)
88 		switch (ch) {
89 		case 'C':
90 			conffile = optarg;
91 			break;
92 		case 'M':
93 		case 'P':		/* backward compatible */
94 			p_path = optarg;
95 			break;
96 		case 'm':
97 			p_augment = optarg;
98 			break;
99 		case '?':
100 		default:
101 			usage();
102 		}
103 	argv += optind;
104 	argc -= optind;
105 
106 	if (argc < 1)
107 		usage();
108 
109 	if ((found = malloc((u_int)argc * sizeof(int))) == NULL)
110 		err(1, "malloc");
111 	memset(found, 0, argc * sizeof(int));
112 
113 	for (p = argv; *p; ++p)			/* trim full paths */
114 		if ((beg = strrchr(*p, '/')))
115 			*p = beg + 1;
116 
117 	if (p_augment)
118 		whatis(argv, p_augment, 1);
119 	if (p_path || (p_path = getenv("MANPATH")))
120 		whatis(argv, p_path, 1);
121 	else {
122 		config(conffile);
123 		ep = (tp = getlist("_whatdb")) == NULL ?
124 		   NULL : tp->list.tqh_first;
125 		for (; ep != NULL; ep = ep->q.tqe_next) {
126 			if (glob(ep->s, GLOB_BRACE | GLOB_NOSORT | GLOB_QUOTE,
127 			    NULL, &pg) != 0)
128 				err(1, "glob");
129 			for (p = pg.gl_pathv; *p; p++)
130 				whatis(argv, *p, 0);
131 			globfree(&pg);
132 		}
133 	}
134 
135 	if (!foundman) {
136 		fprintf(stderr, "whatis: no %s file found.\n", _PATH_WHATIS);
137 		exit(1);
138 	}
139 	rv = 1;
140 	for (p = argv; *p; ++p)
141 		if (found[p - argv])
142 			rv = 0;
143 		else
144 			printf("%s: not found\n", *p);
145 	exit(rv);
146 }
147 
148 void
149 whatis(argv, path, buildpath)
150 	char **argv, *path;
151 	int buildpath;
152 {
153 	register char *end, *name, **p;
154 	char buf[MAXLINELEN + 1], wbuf[MAXLINELEN + 1];
155 	char hold[MAXPATHLEN + 1];
156 
157 	for (name = path; name; name = end) {	/* through name list */
158 		if ((end = strchr(name, ':')))
159 			*end++ = '\0';
160 
161 		if (buildpath) {
162 			(void)sprintf(hold, "%s/%s", name, _PATH_WHATIS);
163 			name = hold;
164 		}
165 
166 		if (!freopen(name, "r", stdin))
167 			continue;
168 
169 		foundman = 1;
170 
171 		/* for each file found */
172 		while (fgets(buf, sizeof(buf), stdin)) {
173 			dashtrunc(buf, wbuf);
174 			for (p = argv; *p; ++p)
175 				if (match(wbuf, *p)) {
176 					printf("%s", buf);
177 					found[p - argv] = 1;
178 
179 					/* only print line once */
180 					while (*++p)
181 						if (match(wbuf, *p))
182 							found[p - argv] = 1;
183 					break;
184 				}
185 		}
186 	}
187 }
188 
189 /*
190  * match --
191  *	match a full word
192  */
193 int
194 match(bp, str)
195 	register char *bp, *str;
196 {
197 	register int len;
198 	register char *start;
199 
200 	if (!*str || !*bp)
201 		return(0);
202 	for (len = strlen(str);;) {
203 		for (; *bp && !isdigit(*bp) && !isalpha(*bp); ++bp);
204 		if (!*bp)
205 			break;
206 		for (start = bp++;
207 		    *bp && (*bp == '_' || isdigit(*bp) || isalpha(*bp)); ++bp);
208 		if (bp - start == len && !strncasecmp(start, str, len))
209 			return(1);
210 	}
211 	return(0);
212 }
213 
214 /*
215  * dashtrunc --
216  *	truncate a string at " - "
217  */
218 void
219 dashtrunc(from, to)
220 	register char *from, *to;
221 {
222 	register int ch;
223 
224 	for (; (ch = *from) && ch != '\n' &&
225 	    (ch != ' ' || from[1] != '-' || from[2] != ' '); ++from)
226 		*to++ = ch;
227 	*to = '\0';
228 }
229 
230 /*
231  * usage --
232  *	print usage message and die
233  */
234 void
235 usage()
236 {
237 	(void)fprintf(stderr,
238 	    "usage: whatis [-C file] [-M path] [-m path] command ...\n");
239 	exit(1);
240 }
241