forked from xvandish/zoekt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
matchiter.go
185 lines (154 loc) · 4.32 KB
/
matchiter.go
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
// Copyright 2016 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package zoekt
import (
"bytes"
"fmt"
)
// candidateMatch is a candidate match for a substring.
type candidateMatch struct {
caseSensitive bool
fileName bool
symbol bool
symbolIdx uint32
substrBytes []byte
substrLowered []byte
file uint32
// Offsets are relative to the start of the filename or file contents.
runeOffset uint32
byteOffset uint32
byteMatchSz uint32
}
// Matches content against the substring, and populates byteMatchSz on success
func (m *candidateMatch) matchContent(content []byte) bool {
if m.caseSensitive {
comp := bytes.Equal(m.substrBytes, content[m.byteOffset:m.byteOffset+uint32(len(m.substrBytes))])
m.byteMatchSz = uint32(len(m.substrBytes))
return comp
} else {
// It is tempting to try a simple ASCII based
// comparison if possible, but we need more
// information. Simple ASCII chars have unicode upper
// case variants (the ASCII 'k' has the Kelvin symbol
// as upper case variant). We can only degrade to
// ASCII if we are sure that both the corpus and the
// query is ASCII only
sz, ok := caseFoldingEqualsRunes(m.substrLowered, content[m.byteOffset:])
m.byteMatchSz = uint32(sz)
return ok
}
}
// matchIterator is a docIterator that produces candidateMatches for a given document
type matchIterator interface {
docIterator
candidates() []*candidateMatch
updateStats(*Stats)
}
// noMatchTree is both matchIterator and matchTree that matches nothing.
type noMatchTree struct {
Why string
}
func (t *noMatchTree) String() string {
return fmt.Sprintf("not(%q)", t.Why)
}
func (t *noMatchTree) candidates() []*candidateMatch {
return nil
}
func (t *noMatchTree) nextDoc() uint32 {
return maxUInt32
}
func (t *noMatchTree) prepare(uint32) {}
func (t *noMatchTree) matches(cp *contentProvider, cost int, known map[matchTree]bool) (bool, bool) {
return false, true
}
func (t *noMatchTree) updateStats(*Stats) {}
func (m *candidateMatch) String() string {
return fmt.Sprintf("%d:%d", m.file, m.runeOffset)
}
type ngramDocIterator struct {
leftPad uint32
rightPad uint32
iter hitIterator
ends []uint32
// mutable
fileIdx uint32
matchCount int
}
// nextFileIndex returns the smallest index j of ends such that
// ends[j] > offset, assuming ends[f] <= offset.
func nextFileIndex(offset, f uint32, ends []uint32) uint32 {
d := uint32(1)
for f < uint32(len(ends)) && ends[f] <= offset {
if f+d < uint32(len(ends)) && ends[f+d] <= offset {
f += d
d *= 2
} else if d > 1 {
d = d/4 + 1
} else {
f++
}
}
return f
}
func (i *ngramDocIterator) nextDoc() uint32 {
i.fileIdx = nextFileIndex(i.iter.first(), i.fileIdx, i.ends)
if i.fileIdx >= uint32(len(i.ends)) {
return maxUInt32
}
return i.fileIdx
}
func (i *ngramDocIterator) String() string {
return fmt.Sprintf("ngram(L=%d,R=%d,%v)", i.leftPad, i.rightPad, i.iter)
}
func (i *ngramDocIterator) prepare(nextDoc uint32) {
var start uint32
if nextDoc > 0 {
start = i.ends[nextDoc-1]
}
if start > 0 {
i.iter.next(start + i.leftPad - 1)
}
i.fileIdx = nextDoc
}
func (i *ngramDocIterator) updateStats(s *Stats) {
i.iter.updateStats(s)
s.NgramMatches += i.matchCount
}
func (i *ngramDocIterator) candidates() []*candidateMatch {
if i.fileIdx >= uint32(len(i.ends)) {
return nil
}
var fileStart uint32
if i.fileIdx > 0 {
fileStart = i.ends[i.fileIdx-1]
}
fileEnd := i.ends[i.fileIdx]
var candidates []*candidateMatch
for {
p1 := i.iter.first()
if p1 == maxUInt32 || p1 >= i.ends[i.fileIdx] {
break
}
i.iter.next(p1)
if p1 < i.leftPad+fileStart || p1+i.rightPad > fileEnd {
continue
}
candidates = append(candidates, &candidateMatch{
file: uint32(i.fileIdx),
runeOffset: p1 - fileStart - i.leftPad,
})
}
i.matchCount += len(candidates)
return candidates
}