locate(1): Staticize.
[dragonfly.git] / usr.bin / locate / code / locate.code.c
blob97537b6dbfc77ef966f129d905b072f37490857f
1 /*
2 * Copyright (c) 1995 Wolfram Schneider <wosch@FreeBSD.org>. Berlin.
3 * Copyright (c) 1989, 1993
4 * The Regents of the University of California. All rights reserved.
6 * This code is derived from software contributed to Berkeley by
7 * James A. Woods.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by the University of
20 * California, Berkeley and its contributors.
21 * 4. Neither the name of the University nor the names of its contributors
22 * may be used to endorse or promote products derived from this software
23 * without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
37 * $FreeBSD: src/usr.bin/locate/code/locate.code.c,v 1.11.2.1 2001/03/04 08:46:46 kris Exp $
39 * @(#) Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved.
40 * @(#)locate.code.c 8.1 (Berkeley) 6/6/93
44 * PURPOSE: sorted list compressor (works with a modified 'find'
45 * to encode/decode a filename database)
47 * USAGE: bigram < list > bigrams
48 * process bigrams (see updatedb) > common_bigrams
49 * code common_bigrams < list > squozen_list
51 * METHOD: Uses 'front compression' (see ";login:", Volume 8, Number 1
52 * February/March 1983, p. 8). Output format is, per line, an
53 * offset differential count byte followed by a partially bigram-
54 * encoded ascii residue. A bigram is a two-character sequence,
55 * the first 128 most common of which are encoded in one byte.
57 * EXAMPLE: For simple front compression with no bigram encoding,
58 * if the input is... then the output is...
60 * /usr/src 0 /usr/src
61 * /usr/src/cmd/aardvark.c 8 /cmd/aardvark.c
62 * /usr/src/cmd/armadillo.c 14 armadillo.c
63 * /usr/tmp/zoo 5 tmp/zoo
65 * The codes are:
67 * 0-28 likeliest differential counts + offset to make nonnegative
68 * 30 switch code for out-of-range count to follow in next word
69 * 31 an 8 bit char followed
70 * 128-255 bigram codes (128 most common, as determined by 'updatedb')
71 * 32-127 single character (printable) ascii residue (ie, literal)
73 * The locate database store any character except newline ('\n')
74 * and NUL ('\0'). The 8-bit character support don't wast extra
75 * space until you have characters in file names less than 32
76 * or greather than 127.
79 * SEE ALSO: updatedb.sh, ../bigram/locate.bigram.c
81 * AUTHOR: James A. Woods, Informatics General Corp.,
82 * NASA Ames Research Center, 10/82
83 * 8-bit file names characters:
84 * Wolfram Schneider, Berlin September 1996
87 #include <sys/param.h>
88 #include <err.h>
89 #include <errno.h>
90 #include <stdlib.h>
91 #include <string.h>
92 #include <stdio.h>
93 #include <unistd.h>
94 #include "locate.h"
96 #define BGBUFSIZE (NBG * 2) /* size of bigram buffer */
98 static u_char buf1[MAXPATHLEN] = " ";
99 static u_char buf2[MAXPATHLEN];
100 static u_char bigrams[BGBUFSIZE + 1] = { 0 };
102 #define LOOKUP 1 /* use a lookup array instead a function, 3x faster */
104 #ifdef LOOKUP
105 #define BGINDEX(x) (big[(u_char)*x][(u_char)*(x + 1)])
106 typedef short bg_t;
107 static bg_t big[UCHAR_MAX + 1][UCHAR_MAX + 1];
108 #else
109 #define BGINDEX(x) bgindex(x)
110 typedef int bg_t;
111 static int bgindex(char *);
112 #endif /* LOOKUP */
115 static void usage(void);
118 main(int argc, char *argv[])
120 u_char *cp, *oldpath, *path;
121 int ch, code, count, diffcount, oldcount;
122 FILE *fp;
123 int i, j;
125 while ((ch = getopt(argc, argv, "")) != -1)
126 switch(ch) {
127 default:
128 usage();
130 argc -= optind;
131 argv += optind;
133 if (argc != 1)
134 usage();
136 if ((fp = fopen(argv[0], "r")) == NULL)
137 err(1, "%s", argv[0]);
139 /* First copy bigram array to stdout. */
140 (void)fgets(bigrams, BGBUFSIZE + 1, fp);
142 if (fwrite(bigrams, 1, BGBUFSIZE, stdout) != BGBUFSIZE)
143 err(1, "stdout");
144 (void)fclose(fp);
146 #ifdef LOOKUP
147 /* init lookup table */
148 for (i = 0; i < UCHAR_MAX + 1; i++)
149 for (j = 0; j < UCHAR_MAX + 1; j++)
150 big[i][j] = (bg_t)-1;
152 for (cp = bigrams, i = 0; *cp != '\0'; i += 2, cp += 2)
153 big[(u_char)*cp][(u_char)*(cp + 1)] = (bg_t)i;
155 #endif /* LOOKUP */
157 oldpath = buf1;
158 path = buf2;
159 oldcount = 0;
161 while (fgets(path, sizeof(buf2), stdin) != NULL) {
163 /* skip empty lines */
164 if (*path == '\n')
165 continue;
167 /* remove newline */
168 for (cp = path; *cp != '\0'; cp++) {
169 #ifndef LOCATE_CHAR30
170 /* old locate implementations core'd for char 30 */
171 if (*cp == SWITCH)
172 *cp = '?';
173 else
174 #endif /* !LOCATE_CHAR30 */
176 /* chop newline */
177 if (*cp == '\n')
178 *cp = '\0';
181 /* Skip longest common prefix. */
182 for (cp = path; *cp == *oldpath; cp++, oldpath++)
183 if (*cp == '\0')
184 break;
186 count = cp - path;
187 diffcount = count - oldcount + OFFSET;
188 oldcount = count;
189 if (diffcount < 0 || diffcount > 2 * OFFSET) {
190 if (putchar(SWITCH) == EOF ||
191 putw(diffcount, stdout) == EOF)
192 err(1, "stdout");
193 } else
194 if (putchar(diffcount) == EOF)
195 err(1, "stdout");
197 while (*cp != '\0') {
198 /* print *two* characters */
200 if ((code = BGINDEX(cp)) != (bg_t)-1) {
202 * print *one* as bigram
203 * Found, so mark byte with
204 * parity bit.
206 if (putchar((code / 2) | PARITY) == EOF)
207 err(1, "stdout");
208 cp += 2;
211 else {
212 for (i = 0; i < 2; i++) {
213 if (*cp == '\0')
214 break;
216 /* print umlauts in file names */
217 if (*cp < ASCII_MIN ||
218 *cp > ASCII_MAX) {
219 if (putchar(UMLAUT) == EOF ||
220 putchar(*cp++) == EOF)
221 err(1, "stdout");
224 else {
225 /* normal character */
226 if(putchar(*cp++) == EOF)
227 err(1, "stdout");
234 if (path == buf1) { /* swap pointers */
235 path = buf2;
236 oldpath = buf1;
237 } else {
238 path = buf1;
239 oldpath = buf2;
242 /* Non-zero status if there were errors */
243 if (fflush(stdout) != 0 || ferror(stdout))
244 exit(1);
245 exit(0);
248 #ifndef LOOKUP
249 static int
250 bgindex(bg) /* Return location of bg in bigrams or -1. */
251 char *bg;
253 char bg0, bg1, *p;
255 bg0 = bg[0];
256 bg1 = bg[1];
257 for (p = bigrams; *p != NULL; p++)
258 if (*p++ == bg0 && *p == bg1)
259 break;
260 return (*p == NULL ? -1 : (--p - bigrams));
262 #endif /* !LOOKUP */
264 static void
265 usage(void)
267 (void)fprintf(stderr,
268 "usage: locate.code common_bigrams < list > squozen_list\n");
269 exit(1);