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