-
Notifications
You must be signed in to change notification settings - Fork 4
/
gitglob.go
146 lines (126 loc) · 4.54 KB
/
gitglob.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
package main
import (
"log"
"os"
"path"
"path/filepath"
"strings"
)
const dblAsterisks = "**"
func globMatch(pattern, value string) bool {
// A blank line matches no files, so it can serve as a separator for readability.
if pattern == "" {
return false
}
// A line starting with # serves as a comment. Put a backslash ("\") in front of the first hash for patterns that begin with a hash.
if strings.HasPrefix(pattern, "#") {
return false
}
// Trailing spaces are ignored unless they are quoted with backslash ("\").
pattern = strings.TrimSuffix(pattern, " ")
// An optional prefix "!" which negates the pattern; any matching file
// excluded by a previous pattern will become included again. It is not
// possible to re-include a file if a parent directory of that file is excluded.
// Git doesn’t list excluded directories for performance reasons, so any patterns
// on contained files have no effect, no matter where they are defined.
// Put a backslash ("\") in front of the first "!" for patterns that begin
// with a literal "!", for example, "\!important!.txt".
negate := strings.HasPrefix(pattern, "!")
if negate {
pattern = strings.TrimPrefix(pattern, "!")
}
// If the pattern ends with a slash, it is removed for the purpose of the
// following description, but it would only find a match with a directory.
// In other words, foo/ will match a directory foo and paths underneath it,
// but will not match a regular file or a symbolic link foo (this is consistent
// with the way how pathspec works in general in Git).
pattern = strings.TrimSuffix(pattern, string(os.PathSeparator))
// Two consecutive asterisks ("**") in patterns matched
// against full pathname may have special meaning:
if strings.Contains(pattern, dblAsterisks) {
result := evalDblAsterisk(pattern, value)
if negate {
result = !result
}
return result
}
// If the pattern does not contain a slash /, Git treats it as a shell glob
// pattern and checks for a match against the pathname relative to the location
// of the .gitignore file (relative to the toplevel of the work tree if not from
// a .gitignore file).
if !strings.Contains(pattern, string(os.PathSeparator)) {
m, err := filepath.Glob(pattern)
if err != nil {
// maybe log this?
log.Printf("ERROR %s\n", err)
return false
}
var found bool
for _, v := range m {
if v == value {
found = true
break
}
}
if negate {
return !found
}
return found
}
// Otherwise, Git treats the pattern as a shell glob suitable for consumption by
// fnmatch(3) with the FNM_PATHNAME flag: wildcards in the pattern will not match
// a / in the pathname. For example, "Documentation/*.html" matches
// "Documentation/git.html" but not "Documentation/ppc/ppc.html" or
// "tools/perf/Documentation/perf.html".
// A leading slash matches the beginning of the pathname. For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c".
matched, err := path.Match(pattern, value)
if err != nil {
// maybe log?
return false
}
if negate {
return !matched
}
return matched
}
func evalDblAsterisk(pattern, value string) bool {
// A leading "**" followed by a slash means match in all directories.
// For example, "**/foo" matches file or directory "foo" anywhere,
// the same as pattern "foo". "**/foo/bar" matches file or directory
// "bar" anywhere that is directly under directory "foo".
if strings.HasPrefix(pattern, dblAsterisks) {
pattern = strings.TrimPrefix(pattern, dblAsterisks)
return strings.HasSuffix(value, pattern)
}
// A trailing "/**" matches everything inside. For example, "abc/**"
// matches all files inside directory "abc", relative to the location
// of the .gitignore file, with infinite depth.
if strings.HasSuffix(pattern, dblAsterisks) {
pattern = strings.TrimSuffix(pattern, dblAsterisks)
return strings.HasPrefix(value, pattern)
}
// A slash followed by two consecutive asterisks then a slash matches
// zero or more directories. For example, "a/**/b" matches "a/b",
// /"a/x/b", "a/x/y/b" and so on.
parts := strings.Split(pattern, dblAsterisks)
for i, part := range parts {
switch i {
case 0:
if !strings.HasPrefix(value, part) {
return false
}
case len(parts) - 1: // last part
part = strings.TrimPrefix(part, string(os.PathSeparator))
return strings.HasSuffix(value, part)
default:
if !strings.Contains(value, part) {
return false
}
}
// trim evaluated text
index := strings.Index(value, part) + len(part)
value = value[index:]
}
// Other consecutive asterisks are considered invalid.
return false
}