forked from hound-search/hound
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgrep.go
252 lines (218 loc) · 4.59 KB
/
grep.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
package index
import (
"bytes"
"compress/gzip"
"io"
"os"
"github.com/gitgrep-com/gitgrep/codesearch/regexp"
)
var nl = []byte{'\n'}
type grepper struct {
buf []byte
}
func countLines(b []byte) int {
n := 0
for {
i := bytes.IndexByte(b, '\n')
if i < 0 {
break
}
n++
b = b[i+1:]
}
return n
}
func (g *grepper) grepFile(filename string, re *regexp.Regexp,
fn func(line []byte, lineno int) (bool, error)) error {
r, err := os.Open(filename)
if err != nil {
return err
}
defer r.Close()
c, err := gzip.NewReader(r)
if err != nil {
return err
}
defer c.Close()
return g.grep(c, re, fn)
}
func (g *grepper) grep2File(filename string, re *regexp.Regexp, nctx int,
fn func(line []byte, lineno int, before [][]byte, after [][]byte) (bool, error)) error {
r, err := os.Open(filename)
if err != nil {
return err
}
defer r.Close()
c, err := gzip.NewReader(r)
if err != nil {
return err
}
defer c.Close()
return g.grep2(c, re, nctx, fn)
}
func (g *grepper) fillFrom(r io.Reader) ([]byte, error) {
if g.buf == nil {
g.buf = make([]byte, 1<<20)
}
off := 0
for {
n, err := io.ReadFull(r, g.buf[off:])
if err == io.ErrUnexpectedEOF || err == io.EOF {
return g.buf[:off+n], nil
} else if err != nil {
return nil, err
}
// grow the storage
buf := make([]byte, len(g.buf)*2)
copy(buf, g.buf)
g.buf = buf
off += n
}
}
func lastNLines(buf []byte, n int) [][]byte {
if len(buf) == 0 || n == 0 {
return nil
}
r := make([][]byte, n)
for i := 0; i < n; i++ {
m := bytes.LastIndex(buf, nl)
if m < 0 {
if len(buf) == 0 {
return r[n-i:]
}
r[n-i-1] = buf
return r[n-i-1:]
}
r[n-i-1] = buf[m+1:]
buf = buf[:m]
}
return r
}
func firstNLines(buf []byte, n int) [][]byte {
if len(buf) == 0 || n == 0 {
return nil
}
r := make([][]byte, n)
for i := 0; i < n; i++ {
m := bytes.Index(buf, nl)
if m < 0 {
if len(buf) == 0 {
return r[:i]
}
r[i] = buf
return r[:i+1]
}
r[i] = buf[:m]
buf = buf[m+1:]
}
return r
}
// TODO(knorton): This is still being tested. This is a grep that supports context lines. Unlike the version
// in codesearch, this one does not operate on chunks. The downside is that we have to have the whole file
// in memory to do the grep. Fortunately, we limit the size of files that get indexed anyway. 10M files tend
// to not be source code.
func (g *grepper) grep2(
r io.Reader,
re *regexp.Regexp,
nctx int,
fn func(line []byte, lineno int, before [][]byte, after [][]byte) (bool, error)) error {
buf, err := g.fillFrom(r)
if err != nil {
return err
}
lineno := 0
for {
if len(buf) == 0 {
return nil
}
m := re.Match(buf, true, true)
if m < 0 {
return nil
}
// start of matched line.
str := bytes.LastIndex(buf[:m], nl) + 1
//end of previous line
endl := str - 1
if endl < 0 {
endl = 0
}
//end of current line
end := m + 1
if end > len(buf) {
end = len(buf)
}
lineno += countLines(buf[:str])
more, err := fn(
bytes.TrimRight(buf[str:end], "\n"),
lineno+1,
lastNLines(buf[:endl], nctx),
firstNLines(buf[end:], nctx))
if err != nil {
return err
}
if !more {
return nil
}
lineno++
buf = buf[end:]
}
}
// This nonsense is adapted from https://code.google.com/p/codesearch/source/browse/regexp/match.go#399
// and I assume it is a mess to make it faster, but I would like to try a much simpler cleaner version.
func (g *grepper) grep(r io.Reader, re *regexp.Regexp, fn func(line []byte, lineno int) (bool, error)) error {
if g.buf == nil {
g.buf = make([]byte, 1<<20)
}
var (
buf = g.buf[:0]
lineno = 1
beginText = true
endText = false
)
for {
n, err := io.ReadFull(r, buf[len(buf):cap(buf)])
buf = buf[:len(buf)+n]
end := len(buf)
if err == nil {
end = bytes.LastIndex(buf, nl) + 1
} else {
endText = true
}
chunkStart := 0
for chunkStart < end {
m1 := re.Match(buf[chunkStart:end], beginText, endText) + chunkStart
beginText = false
if m1 < chunkStart {
break
}
lineStart := bytes.LastIndex(buf[chunkStart:m1], nl) + 1 + chunkStart
lineEnd := m1 + 1
if lineEnd > end {
lineEnd = end
}
lineno += countLines(buf[chunkStart:lineStart])
line := buf[lineStart:lineEnd]
more, err := fn(line, lineno)
if err != nil {
return err
}
if !more {
return nil
}
lineno++
chunkStart = lineEnd
}
if err == nil {
lineno += countLines(buf[chunkStart:end])
}
n = copy(buf, buf[end:])
buf = buf[:n]
if len(buf) == 0 && err != nil {
if err != io.EOF && err != io.ErrUnexpectedEOF {
return err
}
return nil
}
}
return nil
}