forked from hound-search/hound
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.go
489 lines (405 loc) · 9.52 KB
/
index.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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
package index
import (
"compress/gzip"
"encoding/gob"
"encoding/json"
"fmt"
"io"
"os"
"path/filepath"
"sync"
"time"
"unicode/utf8"
"github.com/gitgrep-com/gitgrep/codesearch/index"
"github.com/gitgrep-com/gitgrep/codesearch/regexp"
)
const (
matchLimit = 5000
manifestFilename = "metadata.gob"
excludedFileJsonFilename = "excluded_files.json"
filePeekSize = 2048
)
const (
reasonDotFile = "Dot files are excluded."
reasonInvalidMode = "Invalid file mode."
reasonNotText = "Not a text file."
)
type Index struct {
Ref *IndexRef
idx *index.Index
lck sync.RWMutex
}
type IndexOptions struct {
ExcludeDotFiles bool
SpecialFiles []string
}
type SearchOptions struct {
IgnoreCase bool
LinesOfContext uint
FileRegexp string
Offset int
Limit int
}
type Match struct {
Line string
LineNumber int
Before []string
After []string
}
type SearchResponse struct {
Matches []*FileMatch
FilesWithMatch int
FilesOpened int `json:"-"`
Duration time.Duration `json:"-"`
Revision string
}
type FileMatch struct {
Filename string
Matches []*Match
}
type ExcludedFile struct {
Filename string
Reason string
}
type IndexRef struct {
Url string
Rev string
Time time.Time
dir string
}
func (r *IndexRef) Dir() string {
return r.dir
}
func (r *IndexRef) writeManifest() error {
w, err := os.Create(filepath.Join(r.dir, manifestFilename))
if err != nil {
return err
}
defer w.Close()
return gob.NewEncoder(w).Encode(r)
}
func (r *IndexRef) Open() (*Index, error) {
return &Index{
Ref: r,
idx: index.Open(filepath.Join(r.dir, "tri")),
}, nil
}
func (r *IndexRef) Remove() error {
return os.RemoveAll(r.dir)
}
func (n *Index) Close() error {
n.lck.Lock()
defer n.lck.Unlock()
return n.idx.Close()
}
func (n *Index) Destroy() error {
n.lck.Lock()
defer n.lck.Unlock()
if err := n.idx.Close(); err != nil {
return err
}
return n.Ref.Remove()
}
func (n *Index) GetDir() string {
return n.Ref.dir
}
func toStrings(lines [][]byte) []string {
strs := make([]string, len(lines))
for i, n := 0, len(lines); i < n; i++ {
strs[i] = string(lines[i])
}
return strs
}
func GetRegexpPattern(pat string, ignoreCase bool) string {
if ignoreCase {
return "(?i)(?m)" + pat
}
return "(?m)" + pat
}
func (n *Index) Search(pat string, opt *SearchOptions) (*SearchResponse, error) {
startedAt := time.Now()
n.lck.RLock()
defer n.lck.RUnlock()
re, err := regexp.Compile(GetRegexpPattern(pat, opt.IgnoreCase))
if err != nil {
return nil, err
}
var (
g grepper
results []*FileMatch
filesOpened int
filesFound int
filesCollected int
matchesCollected int
)
var fre *regexp.Regexp
if opt.FileRegexp != "" {
fre, err = regexp.Compile(opt.FileRegexp)
if err != nil {
return nil, err
}
}
files := n.idx.PostingQuery(index.RegexpQuery(re.Syntax))
for _, file := range files {
var matches []*Match
name := n.idx.Name(file)
hasMatch := false
// reject files that do not match the file pattern
if fre != nil && fre.MatchString(name, true, true) < 0 {
continue
}
filesOpened++
if err := g.grep2File(filepath.Join(n.Ref.dir, "raw", name), re, int(opt.LinesOfContext),
func(line []byte, lineno int, before [][]byte, after [][]byte) (bool, error) {
hasMatch = true
if filesFound < opt.Offset || (opt.Limit > 0 && filesCollected >= opt.Limit) {
return false, nil
}
matchesCollected++
matches = append(matches, &Match{
Line: string(line),
LineNumber: lineno,
Before: toStrings(before),
After: toStrings(after),
})
if matchesCollected > matchLimit {
return false, fmt.Errorf("search exceeds limit on matches: %d", matchLimit)
}
return true, nil
}); err != nil {
return nil, err
}
if !hasMatch {
continue
}
filesFound++
if len(matches) > 0 {
filesCollected++
results = append(results, &FileMatch{
Filename: name,
Matches: matches,
})
}
}
return &SearchResponse{
Matches: results,
FilesWithMatch: filesFound,
FilesOpened: filesOpened,
Duration: time.Now().Sub(startedAt),
Revision: n.Ref.Rev,
}, nil
}
func isTextFile(filename string) (bool, error) {
buf := make([]byte, filePeekSize)
r, err := os.Open(filename)
if err != nil {
return false, err
}
defer r.Close()
n, err := io.ReadFull(r, buf)
if err != nil && err != io.ErrUnexpectedEOF && err != io.EOF {
return false, err
}
buf = buf[:n]
if n < filePeekSize {
// read the whole file, must be valid.
return utf8.Valid(buf), nil
}
// read a prefix, allow trailing partial runes.
return validUTF8IgnoringPartialTrailingRune(buf), nil
}
// Determines if the buffer contains valid UTF8 encoded string data. The buffer is assumed
// to be a prefix of a larger buffer so if the buffer ends with the start of a rune, it
// is still considered valid.
//
// Basic logic copied from https://golang.org/pkg/unicode/utf8/#Valid
func validUTF8IgnoringPartialTrailingRune(p []byte) bool {
i := 0
n := len(p)
for i < n {
if p[i] < utf8.RuneSelf {
i++
} else {
_, size := utf8.DecodeRune(p[i:])
if size == 1 {
// All valid runes of size 1 (those below RuneSelf) were handled above. This must be a RuneError.
// If we're encountering this error within UTFMax of the end and the current byte could be a
// valid start, we'll just ignore the assumed partial rune.
return n-i < utf8.UTFMax && utf8.RuneStart(p[i])
}
i += size
}
}
return true
}
func addFileToIndex(ix *index.IndexWriter, dst, src, path string) (string, error) {
rel, err := filepath.Rel(src, path)
if err != nil {
return "", err
}
r, err := os.Open(path)
if err != nil {
return "", err
}
defer r.Close()
dup := filepath.Join(dst, "raw", rel)
w, err := os.Create(dup)
if err != nil {
return "", err
}
defer w.Close()
g := gzip.NewWriter(w)
defer g.Close()
return ix.Add(rel, io.TeeReader(r, g)), nil
}
func addDirToIndex(dst, src, path string) error {
rel, err := filepath.Rel(src, path)
if err != nil {
return err
}
if rel == "." {
return nil
}
dup := filepath.Join(dst, "raw", rel)
return os.Mkdir(dup, os.ModePerm)
}
// write the list of excluded files to the given filename.
func writeExcludedFilesJson(filename string, files []*ExcludedFile) error {
w, err := os.Create(filename)
if err != nil {
return err
}
defer w.Close()
return json.NewEncoder(w).Encode(files)
}
func containsString(haystack []string, needle string) bool {
for i, n := 0, len(haystack); i < n; i++ {
if haystack[i] == needle {
return true
}
}
return false
}
func indexAllFiles(opt *IndexOptions, dst, src string) error {
ix := index.Create(filepath.Join(dst, "tri"))
defer ix.Close()
excluded := []*ExcludedFile{}
// Make a file to store the excluded files for this repo
fileHandle, err := os.Create(filepath.Join(dst, "excluded_files.json"))
if err != nil {
return err
}
defer fileHandle.Close()
if err := filepath.Walk(src, func(path string, info os.FileInfo, err error) error {
name := info.Name()
rel, err := filepath.Rel(src, path)
if err != nil {
return err
}
// Is this file considered "special", this means it's not even a part
// of the source repository (like .git or .svn).
if containsString(opt.SpecialFiles, name) {
if info.IsDir() {
return filepath.SkipDir
}
return nil
}
if opt.ExcludeDotFiles && name[0] == '.' {
if info.IsDir() {
return filepath.SkipDir
}
excluded = append(excluded, &ExcludedFile{
rel,
reasonDotFile,
})
return nil
}
if info.IsDir() {
return addDirToIndex(dst, src, path)
}
if info.Mode()&os.ModeType != 0 {
excluded = append(excluded, &ExcludedFile{
rel,
reasonInvalidMode,
})
return nil
}
txt, err := isTextFile(path)
if err != nil {
return err
}
if !txt {
excluded = append(excluded, &ExcludedFile{
rel,
reasonNotText,
})
return nil
}
reasonForExclusion, err := addFileToIndex(ix, dst, src, path)
if err != nil {
return err
}
if reasonForExclusion != "" {
excluded = append(excluded, &ExcludedFile{rel, reasonForExclusion})
}
return nil
}); err != nil {
return err
}
if err := writeExcludedFilesJson(
filepath.Join(dst, excludedFileJsonFilename),
excluded); err != nil {
return err
}
ix.Flush()
return nil
}
// Read the metadata for the index directory. Note that even if this
// returns a non-nil error, a Metadata object will be returned with
// all the information that is known about the index (this might
// include only the path)
func Read(dir string) (*IndexRef, error) {
m := &IndexRef{
dir: dir,
}
r, err := os.Open(filepath.Join(dir, manifestFilename))
if err != nil {
return m, err
}
defer r.Close()
if err := gob.NewDecoder(r).Decode(m); err != nil {
return m, err
}
return m, nil
}
func Build(opt *IndexOptions, dst, src, url, rev string) (*IndexRef, error) {
if _, err := os.Stat(dst); err != nil {
if err := os.MkdirAll(dst, os.ModePerm); err != nil {
return nil, err
}
}
if err := os.Mkdir(filepath.Join(dst, "raw"), os.ModePerm); err != nil {
return nil, err
}
if err := indexAllFiles(opt, dst, src); err != nil {
return nil, err
}
r := &IndexRef{
Url: url,
Rev: rev,
Time: time.Now(),
dir: dst,
}
if err := r.writeManifest(); err != nil {
return nil, err
}
return r, nil
}
// Open the index in dir for searching.
func Open(dir string) (*Index, error) {
r, err := Read(dir)
if err != nil {
return nil, err
}
return r.Open()
}