forked from golangci/golangci-lint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase_rule.go
107 lines (86 loc) · 2.56 KB
/
base_rule.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
package processors
import (
"regexp"
"github.com/golangci/golangci-lint/pkg/config"
"github.com/golangci/golangci-lint/pkg/fsutils"
"github.com/golangci/golangci-lint/pkg/logutils"
"github.com/golangci/golangci-lint/pkg/result"
)
type baseRule struct {
text *regexp.Regexp
source *regexp.Regexp
path *regexp.Regexp
pathExcept *regexp.Regexp
linters []string
}
// The usage of `regexp.MustCompile()` is safe here,
// because the regular expressions are checked before inside [config.BaseRule.Validate].
func newBaseRule(rule *config.BaseRule, prefix string) baseRule {
base := baseRule{
linters: rule.Linters,
}
if rule.Text != "" {
base.text = regexp.MustCompile(prefix + rule.Text)
}
if rule.Source != "" {
base.source = regexp.MustCompile(prefix + rule.Source)
}
if rule.Path != "" {
base.path = regexp.MustCompile(fsutils.NormalizePathInRegex(rule.Path))
}
if rule.PathExcept != "" {
base.pathExcept = regexp.MustCompile(fsutils.NormalizePathInRegex(rule.PathExcept))
}
return base
}
func (r *baseRule) isEmpty() bool {
return r.text == nil && r.source == nil && r.path == nil && r.pathExcept == nil && len(r.linters) == 0
}
func (r *baseRule) match(issue *result.Issue, lines *fsutils.LineCache, log logutils.Log) bool {
if r.isEmpty() {
return false
}
if r.text != nil && !r.text.MatchString(issue.Text) {
return false
}
if r.path != nil && !r.path.MatchString(issue.RelativePath) {
return false
}
if r.pathExcept != nil && r.pathExcept.MatchString(issue.RelativePath) {
return false
}
if len(r.linters) != 0 && !r.matchLinter(issue) {
return false
}
// the most heavyweight checking last
if r.source != nil && !r.matchSource(issue, lines, log) {
return false
}
return true
}
func (r *baseRule) matchLinter(issue *result.Issue) bool {
for _, linter := range r.linters {
if linter == issue.FromLinter {
return true
}
}
return false
}
func (r *baseRule) matchSource(issue *result.Issue, lineCache *fsutils.LineCache, log logutils.Log) bool {
sourceLine, errSourceLine := lineCache.GetLine(issue.RelativePath, issue.Line())
if errSourceLine != nil {
log.Warnf("Failed to get line %s:%d from line cache: %s", issue.RelativePath, issue.Line(), errSourceLine)
return false // can't properly match
}
return r.source.MatchString(sourceLine)
}
func parseRules[T, V any](rules []T, prefix string, newFn func(*T, string) V) []V {
if len(rules) == 0 {
return nil
}
parsedRules := make([]V, 0, len(rules))
for _, r := range rules {
parsedRules = append(parsedRules, newFn(&r, prefix))
}
return parsedRules
}