File: search.c

package info (click to toggle)
wine 0.0.20000109-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 22,652 kB
  • ctags: 59,973
  • sloc: ansic: 342,054; perl: 3,697; yacc: 3,059; tcl: 2,647; makefile: 2,466; lex: 1,494; sh: 394
file content (56 lines) | stat: -rw-r--r-- 1,259 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
 *  Notepad (search.c)
 *  Copyright (C) 1999 by Marcel Baur
 *  To be distributed under the Wine license
 *
 *  This file features Heuristic Boyer-Moore Text Search
 *
 *  Always:   - Buf is the Buffer containing the whole text
 *  =======   - SP is the Search Pattern, which has to be found in Buf.
 *
 */

 #include <win.h>
 
 #define CHARSETSIZE 255
  
 int delta[CHARSETSIZE];
 
 /* rightmostpos: return rightmost position of ch in szSP (or -1) */
 int rightmostpos(char ch, LPSTR szSP, int nSPLen) {
    int i = nSPLen;
    while ((i>0) & (szSP[i]!=ch)) i--;
    return(i);
 }
 
 /* setup_delta: setup delta1 cache */
 void setup_delta(LPSTR szSP, int nSPLen) {
    int i;
    
    for (i=0; i<CHARSETSIZE; i++) {
       delta[i] = nSPLen;
    }

    for (i=0; i<nSPLen; i++) {
       delta[szSP[i]] = (nSPLen - rightmostpos(szSP[i], szSP, nSPLen));
    }
 }

 int bm_search(LPSTR szBuf, int nBufLen, LPSTR szSP, int nSPLen) {
    int i = nSPLen;
    int j = nSPLen;
    
    do {
       if (szBuf[i] = szSP[j]) {
         i--; j--;
       } else {
         if ((nSPLen-j+1) > delta[szBuf[i]]) {
           i+= (nSPLen-j+1);
         } else {
           i+= delta[szBuf[i]];
         }
       }
    } while (j>0 && i<=nBufLen);
    return(i+1);
 }