#ifndef _LOCATE_STATISTIC_
#define _LOCATE_STATISTIC_
void
statistic (FILE *fp, char *path_fcodes)
{
int lines, chars, size, big, zwerg;
u_char *p, *s;
int c;
int count, umlaut;
u_char bigram1[NBG], bigram2[NBG], path[PATH_MAX];
for (c = 0, p = bigram1, s = bigram2; c < NBG; c++) {
p[c] = check_bigram_char(getc(fp));
s[c] = check_bigram_char(getc(fp));
}
lines = chars = big = zwerg = umlaut = 0;
size = NBG + NBG;
for (c = getc(fp), count = 0; c != EOF; size++) {
if (c == SWITCH) {
count += getwf(fp) - OFFSET;
size += sizeof(int);
zwerg++;
} else
count += c - OFFSET;
sane_count(count);
for (p = path + count; (c = getc(fp)) > SWITCH; size++)
if (c < PARITY) {
if (c == UMLAUT) {
c = getc(fp);
size++;
umlaut++;
}
p++;
} else {
big++;
p += 2;
}
p++;
lines++;
chars += (p - path);
}
(void)printf("\nDatabase: %s\n", path_fcodes);
(void)printf("Compression: Front: %2.2f%%, ",
(float)(100 * (size + big - (2 * NBG))) / chars);
(void)printf("Bigram: %2.2f%%, ", (float)(100 * (size - big)) / size);
(void)printf("Total: %2.2f%%\n",
(float)(100 * (size - (2 * NBG))) / chars);
(void)printf("Filenames: %d, ", lines);
(void)printf("Characters: %d, ", chars);
(void)printf("Database size: %d\n", size);
(void)printf("Bigram characters: %d, ", big);
(void)printf("Integers: %d, ", zwerg);
(void)printf("8-Bit characters: %d\n", umlaut);
}
#endif
void
#ifdef FF_ICASE
fastfind_mmap_icase
#else
fastfind_mmap
#endif
(char *pathpart, caddr_t paddr, int len, char *database)
{
u_char *p, *s, *patend, *q, *foundchar;
int c, cc;
int count, found, globflag;
u_char *cutoff;
u_char bigram1[NBG], bigram2[NBG], path[PATH_MAX];
#ifdef FF_ICASE
for (p = pathpart; *p != '\0'; p++)
*p = tolower(*p);
#endif
if (len < (2*NBG)) {
(void)fprintf(stderr, "database too small: %s\n", database);
exit(1);
}
for (c = 0, p = bigram1, s = bigram2; c < NBG; c++, len-= 2) {
p[c] = check_bigram_char(*paddr++);
s[c] = check_bigram_char(*paddr++);
}
for (p = pathpart; *p != '\0'; p++)
if (strchr(LOCATE_REG, *p) != NULL)
break;
if (*p == '\0')
globflag = 0;
else
globflag = 1;
p = pathpart;
patend = patprep(p);
cc = *patend;
#ifdef FF_ICASE
cc = tolower(cc);
#endif
found = count = 0;
foundchar = 0;
c = (u_char)*paddr++; len--;
for (; len > 0; ) {
if (c == SWITCH) {
if (len < sizeof(int))
break;
count += getwm(paddr) - OFFSET;
len -= sizeof(int);
paddr += sizeof(int);
} else {
count += c - OFFSET;
}
sane_count(count);
p = path + count;
foundchar = p - 1;
for (; len > 0; ) {
c = (u_char)*paddr++;
len--;
if (c < PARITY) {
if (c <= UMLAUT) {
if (c == UMLAUT && len > 0) {
c = (u_char)*paddr++;
len--;
} else
break;
}
#ifdef FF_ICASE
if (tolower(c) == cc)
#else
if (c == cc)
#endif
foundchar = p;
*p++ = c;
} else {
c &= ASCII_MAX;
#ifdef FF_ICASE
if (tolower(bigram1[c]) == cc ||
tolower(bigram2[c]) == cc)
#else
if (bigram1[c] == cc ||
bigram2[c] == cc)
#endif
foundchar = p + 1;
*p++ = bigram1[c];
*p++ = bigram2[c];
}
}
if (found) {
cutoff = path;
*p-- = '\0';
foundchar = p;
} else if (foundchar >= path + count) {
*p-- = '\0';
cutoff = path + count;
} else
continue;
found = 0;
for (s = foundchar; s >= cutoff; s--) {
if (*s == cc
#ifdef FF_ICASE
|| tolower(*s) == cc
#endif
) {
for (p = patend - 1, q = s - 1; *p != '\0';
p--, q--)
if (*q != *p
#ifdef FF_ICASE
&& tolower(*q) != *p
#endif
)
break;
if (*p == '\0') {
char *shortpath;
found = 1;
shortpath = path;
if (f_basename)
shortpath = basename(path);
if ((!f_basename && (!globflag ||
#ifdef FF_ICASE
!fnmatch(pathpart, shortpath,
FNM_CASEFOLD)))
#else
!fnmatch(pathpart, shortpath, 0)))
#endif
|| (strstr(shortpath, pathpart) !=
NULL)) {
if (f_silent)
counter++;
else if (f_limit) {
counter++;
if (f_limit >= counter)
(void)puts(path);
else {
fprintf(stderr, "[show only %u lines]\n", counter - 1);
exit(0);
}
} else
(void)puts(path);
}
break;
}
}
}
}
}