|
| 1 | +package pack |
| 2 | + |
| 3 | +import ( |
| 4 | + "bufio" |
| 5 | + "bytes" |
| 6 | + "fmt" |
| 7 | + "io/fs" |
| 8 | + "os" |
| 9 | + "path/filepath" |
| 10 | + "regexp" |
| 11 | + "slices" |
| 12 | + "strings" |
| 13 | +) |
| 14 | + |
| 15 | +type ignorePattern struct { |
| 16 | + re *regexp.Regexp |
| 17 | + dirOnly bool |
| 18 | + isNegate bool |
| 19 | +} |
| 20 | + |
| 21 | +func createIgnorePattern(pattern string, basepath string) (ignorePattern, error) { |
| 22 | + var p ignorePattern |
| 23 | + var err error |
| 24 | + |
| 25 | + turnEscapedToHexCode := func(s string, c rune) string { |
| 26 | + return strings.ReplaceAll(s, `\`+string(c), fmt.Sprintf(`\x%x`, c)) |
| 27 | + } |
| 28 | + escapeUnescaped := func(s string, c rune) string { |
| 29 | + cs := string(c) |
| 30 | + // Do unescape first to avoid double escaping of the ones that are already escaped |
| 31 | + s = strings.ReplaceAll(s, "\\"+cs, cs) |
| 32 | + s = strings.ReplaceAll(s, cs, "\\"+cs) |
| 33 | + return s |
| 34 | + } |
| 35 | + |
| 36 | + // First, get rid of `\\` to simplify further handling of escaped sequences. |
| 37 | + // From now on any `\c` always means escaped 'c' (previously it might also |
| 38 | + // occur as a part of `\\c` sequence which denotes '\' followed by <c>) |
| 39 | + pattern = turnEscapedToHexCode(pattern, '\\') |
| 40 | + |
| 41 | + // Remove trailing spaces (unless escaped one) |
| 42 | + pattern = turnEscapedToHexCode(pattern, ' ') |
| 43 | + pattern = strings.TrimRight(pattern, " ") |
| 44 | + |
| 45 | + // Check negate prefix. |
| 46 | + pattern, p.isNegate = strings.CutPrefix(pattern, "!") |
| 47 | + if !p.isNegate && (strings.HasPrefix(pattern, "\\!") || strings.HasPrefix(pattern, "\\#")) { |
| 48 | + pattern = pattern[1:] |
| 49 | + } |
| 50 | + // Check directory suffix. |
| 51 | + pattern, p.dirOnly = strings.CutSuffix(pattern, "/") |
| 52 | + |
| 53 | + // Translate pattern to regex expression. |
| 54 | + expr := pattern |
| 55 | + // Turn escaped '*' and '?' to their hex representation to simplify the translation. |
| 56 | + expr = turnEscapedToHexCode(expr, '*') |
| 57 | + expr = turnEscapedToHexCode(expr, '?') |
| 58 | + // Escape symbols that designate themselves in pattern, but have |
| 59 | + // special meaning in regex. |
| 60 | + for _, c := range []rune{'(', ')', '{', '}', '+'} { |
| 61 | + expr = escapeUnescaped(expr, c) |
| 62 | + } |
| 63 | + // Replace wildcards with the corresponding regex representation. |
| 64 | + // Note that '{0,}' (not '*') is used while replacing '**' to avoid confusing |
| 65 | + // in the subsequent replacement of a single '*'. |
| 66 | + expr = strings.ReplaceAll(expr, "/**/", "/([^/]+/){0,}") |
| 67 | + expr, found := strings.CutPrefix(expr, "**/") |
| 68 | + if found || !strings.Contains(pattern, "/") { |
| 69 | + expr = "([^/]+/){0,}" + expr |
| 70 | + } |
| 71 | + expr, found = strings.CutSuffix(expr, "/**") |
| 72 | + if found { |
| 73 | + expr = expr + "(/[^/]+){0,}" |
| 74 | + } |
| 75 | + expr = strings.ReplaceAll(expr, "*", "[^/]*") |
| 76 | + expr = strings.ReplaceAll(expr, "?", "[^/]") |
| 77 | + |
| 78 | + expr = basepath + expr |
| 79 | + |
| 80 | + p.re, err = regexp.Compile("^" + expr + "$") |
| 81 | + if err != nil { |
| 82 | + return ignorePattern{}, fmt.Errorf("failed to compile expression: %w", err) |
| 83 | + } |
| 84 | + |
| 85 | + return p, nil |
| 86 | +} |
| 87 | + |
| 88 | +// loadIgnorePatterns reads ignore patterns from the patternsFile. |
| 89 | +func loadIgnorePatterns(fsys fs.FS, patternsFile string) ([]ignorePattern, error) { |
| 90 | + contents, err := fs.ReadFile(fsys, patternsFile) |
| 91 | + if err != nil { |
| 92 | + return nil, err |
| 93 | + } |
| 94 | + |
| 95 | + basepath, _ := filepath.Split(ignoreFile) |
| 96 | + |
| 97 | + var patterns []ignorePattern |
| 98 | + s := bufio.NewScanner(bytes.NewReader(contents)) |
| 99 | + for s.Scan() { |
| 100 | + pattern := s.Text() |
| 101 | + if pattern == "" || strings.HasPrefix(pattern, "#") { |
| 102 | + continue |
| 103 | + } |
| 104 | + |
| 105 | + p, err := createIgnorePattern(pattern, basepath) |
| 106 | + if err != nil { |
| 107 | + return nil, err |
| 108 | + } |
| 109 | + |
| 110 | + patterns = append(patterns, p) |
| 111 | + } |
| 112 | + return patterns, nil |
| 113 | +} |
| 114 | + |
| 115 | +// ignoreFilter returns filter function that implements .gitignore approach of filtering files. |
| 116 | +func ignoreFilter(fsys fs.FS, patternsFile string) (skipFilter, error) { |
| 117 | + patterns, err := loadIgnorePatterns(fsys, patternsFile) |
| 118 | + if err != nil { |
| 119 | + return nil, err |
| 120 | + } |
| 121 | + |
| 122 | + // According to .gitignore documentation "the last matching pattern decides the outcome" |
| 123 | + // so we need to iterate in reverse order until the first match. |
| 124 | + slices.Reverse(patterns) |
| 125 | + |
| 126 | + return func(srcInfo os.FileInfo, src string) bool { |
| 127 | + // Skip ignore file itself. |
| 128 | + if src == patternsFile { |
| 129 | + return true |
| 130 | + } |
| 131 | + for _, p := range patterns { |
| 132 | + isApplicable := srcInfo.IsDir() || !p.dirOnly |
| 133 | + if isApplicable && p.re.MatchString(src) { |
| 134 | + return !p.isNegate |
| 135 | + } |
| 136 | + } |
| 137 | + return false |
| 138 | + }, nil |
| 139 | +} |
0 commit comments