-
Notifications
You must be signed in to change notification settings - Fork 14
/
matcher.go
430 lines (366 loc) · 8.29 KB
/
matcher.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
// (c) 2011-2014 Alexander Solovyov
// under terms of ISC license
package main
import (
"bufio"
"bytes"
"fmt"
"os"
"path/filepath"
"regexp"
"strings"
)
type Matcher interface {
Match(fn string, isdir bool) bool
Append(pats []string)
}
func dirExists(path string) bool {
fi, err := os.Stat(path)
if err != nil {
return false
}
return fi.IsDir()
}
func NewMatcher(wd string, noIgnores bool) Matcher {
path := wd
if !filepath.IsAbs(path) {
panic("Given path should be absolute")
}
for !noIgnores {
if filepath.Dir(path) == path { // top directory
break
}
if dirExists(filepath.Join(path, ".hg")) {
return NewHgMatcher(wd, filepath.Join(path, ".hgignore"))
}
if dirExists(filepath.Join(path, ".git")) {
return NewGitMatcher(wd, filepath.Join(path, ".gitignore"))
}
path = filepath.Clean(filepath.Join(path, ".."))
}
return NewGeneralMatcher(generalDirs, generalPats)
}
// Ignore common patterns
type GeneralMatcher struct {
dirs []string
res []*regexp.Regexp
both []*regexp.Regexp
}
var generalDirs = []string{"autom4te.cache", "blib", "_build", ".bzr", ".cdv",
"cover_db", "CVS", "_darcs", "~.dep", "~.dot", ".git", ".hg", "~.nib",
".pc", "~.plst", "RCS", "SCCS", "_sgbak", ".svn", "_obj"}
var generalPats = []string{`~$`, `#.+#$`, `[._].*\.swp$`,
`core\.[0-9]+$`, `\.pyc$`, `\.o$`, `\.6$`}
func NewGeneralMatcher(dirs []string, filePats []string) *GeneralMatcher {
res := make([]*regexp.Regexp, len(filePats))
for i, pat := range filePats {
res[i] = regexp.MustCompile(pat)
}
return &GeneralMatcher{dirs, res, []*regexp.Regexp{}}
}
func (i *GeneralMatcher) Match(fn string, isdir bool) bool {
if isdir {
base := filepath.Base(fn)
for _, x := range i.dirs {
if base == x {
return true
}
}
}
for _, x := range i.res {
if x.Match([]byte(fn)) {
return true
}
}
return false
}
func (i *GeneralMatcher) Append(pats []string) {
for _, pat := range pats {
re, err := regexp.Compile(pat)
if err != nil {
errhandle(fmt.Errorf("can't compile pattern %s\n", pat), false)
continue
}
i.res = append(i.res, re)
}
}
func (i *GeneralMatcher) String() string {
return "General ignorer"
}
// read .hgignore and ignore patterns from there
type HgMatcher struct {
prefix string
fp string
res []*regexp.Regexp
globs []string
}
var hgSyntaxes = map[string]bool{
"re": true,
"regexp": true,
"glob": false,
}
func NewHgMatcher(wd string, fp string) *HgMatcher {
var prefix string
basepath := filepath.Clean(filepath.Join(fp, ".."))
if strings.HasPrefix(wd, basepath) {
prefix = wd[len(basepath):]
if len(prefix) > 0 && prefix[0] == '/' {
prefix = prefix[1:]
}
} else {
prefix = ""
}
res := []*regexp.Regexp{}
globs := []string{}
f, err := os.Open(fp)
if err != nil {
return &HgMatcher{prefix, fp, res, globs}
}
reader := bufio.NewReader(f)
isRe := true
for {
line, _, err := reader.ReadLine()
if err != nil {
break
}
// strip comments
comment := bytes.IndexByte(line, '#')
switch comment {
case 0:
continue
case -1:
default:
line = line[:comment]
}
line = bytes.TrimRight(line, " \t")
if len(line) == 0 {
continue
}
// if it's a syntax changer
if bytes.HasPrefix(line, []byte("syntax:")) {
s := bytes.TrimSpace(line[7:])
if isre, ok := hgSyntaxes[string(s)]; ok {
isRe = isre
}
continue
}
// actually append line
pat := string(line)
if isRe {
re, err := regexp.Compile(pat)
if err != nil {
errhandle(fmt.Errorf("can't compile pattern %s\n", pat), false)
continue
}
res = append(res, re)
} else {
globs = append(globs, pat)
}
}
return &HgMatcher{prefix, fp, res, globs}
}
func (i *HgMatcher) Match(fn string, isdir bool) bool {
if len(i.prefix) > 0 {
fn = filepath.Join(i.prefix, fn)
}
base := filepath.Base(fn)
if isdir && base == ".hg" {
return true
}
for _, x := range i.res {
if x.Match([]byte(fn)) {
return true
}
}
for _, x := range i.globs {
if m, _ := filepath.Match(x, base); m {
return true
}
}
return false
}
func (i *HgMatcher) Append(pats []string) {
for _, pat := range pats {
re, err := regexp.Compile(pat)
if err != nil {
errhandle(fmt.Errorf("can't compile pattern %s\n", pat), false)
continue
}
i.res = append(i.res, re)
}
}
func (i *HgMatcher) String() string {
desc := fmt.Sprintf("Ignoring patterns from %s:", i.fp)
if len(i.res) > 0 {
desc += "\n\tregular expressions: "
for _, x := range i.res {
desc += x.String() + " "
}
}
if len(i.globs) > 0 {
desc += "\n\tglobs: " + strings.Join(i.globs, " ")
}
return desc
}
// read .gitignore and ignore patterns from there
type GitMatcher struct {
basepath string
prefix string
fp string
globs []string // will be used for showing help only
globres []*regexp.Regexp
res []*regexp.Regexp
}
// many thanks to Steve Losh for this algorithm
// https://github.com/sjl/friendly-find/blob/master/ffind#L167-216
func gitGlobRe(s string) *regexp.Regexp {
var pat bytes.Buffer
if strings.Contains(s, "/") {
// Patterns with a slash have to match against the entire pathname, so
// they need to be rooted at the beginning
pat.WriteString("^./")
} else {
// Patterns without a slash match against basename, which is simulated
// by including last path divider in the pattern
pat.WriteString("/")
}
s = strings.TrimLeft(s, "/")
i := 0
n := len(s)
for i < n {
c := s[i]
i += 1
switch c {
case '?':
pat.WriteByte('.')
case '*':
if i == n {
pat.WriteString(".*")
} else {
pat.WriteString("[^/]*")
}
case '[':
j := i
if j < n && (s[j] == '!' || s[j] == ']') {
j += 1
}
for j < n && s[j] != ']' {
j += 1
}
if j >= n {
pat.WriteString("\\[")
} else {
stuff := strings.Replace(s[i:j], "\\", "\\\\", -1)
i = j + 1
if stuff[0] == '!' {
stuff = "^" + stuff[1:]
} else if stuff[0] == '^' {
stuff = "\\" + stuff
}
pat.WriteString("[")
pat.WriteString(stuff)
pat.WriteString("]")
}
default:
pat.WriteString(regexp.QuoteMeta(string(c)))
}
if i == n && c != '/' {
pat.WriteByte('$')
}
}
re, err := regexp.Compile(pat.String())
if err != nil {
errhandle(fmt.Errorf("can't parse pattern '%s': %s", s, err), false)
}
return re
}
func NewGitMatcher(wd string, fp string) *GitMatcher {
var prefix string
basepath := filepath.Clean(filepath.Join(fp, ".."))
if strings.HasPrefix(wd, basepath) {
prefix = wd[len(basepath):]
if len(prefix) > 0 && prefix[0] == '/' {
prefix = prefix[1:]
}
} else {
prefix = ""
}
globs := []string{}
globres := []*regexp.Regexp{}
f, err := os.Open(fp)
if err != nil {
return &GitMatcher{basepath, prefix, fp, globs, globres, []*regexp.Regexp{}}
}
reader := bufio.NewReader(f)
for {
line, _, err := reader.ReadLine()
if err != nil {
break
}
line = bytes.TrimRight(line, " \t")
if len(line) == 0 {
continue
}
if line[0] == '#' {
continue
}
globs = append(globs, string(line))
globres = append(globres, gitGlobRe(string(line)))
}
return &GitMatcher{basepath, prefix, fp, globs, globres, []*regexp.Regexp{}}
}
func (i *GitMatcher) Match(fn string, isdir bool) bool {
// no point in ignore whole current directory
if fn == "." {
return false
}
path := fmt.Sprintf(".%c", filepath.Separator) + filepath.Join(i.prefix, fn)
base := filepath.Base(path)
if filepath.Separator != '/' {
path = strings.Replace(path, string(filepath.Separator), "/", -1)
}
if isdir && base == ".git" {
return true
}
for _, pat := range i.globres {
if pat.MatchString(path) {
return true
}
}
for _, pat := range i.res {
if pat.MatchString(path) {
return true
}
}
return false
}
func (i *GitMatcher) Append(pats []string) {
for _, pat := range pats {
re, err := regexp.Compile(pat)
if err != nil {
errhandle(fmt.Errorf("can't compile pattern %s\n", pat), false)
continue
}
i.res = append(i.res, re)
}
}
func (i *GitMatcher) String() string {
desc := fmt.Sprintf("Ignoring patterns from %s:", i.fp)
if len(i.globs) > 0 {
desc += "\n\tglobs: "
for _, x := range i.globs {
if strings.HasPrefix(x, i.basepath) {
desc += x[len(i.basepath):] + " "
} else {
desc += x + " "
}
}
}
if len(i.res) > 0 {
desc += "\n\tregular expressions: "
for _, x := range i.res {
desc += x.String() + " "
}
}
return desc
}