-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathsource_code.go
47 lines (37 loc) · 1.05 KB
/
source_code.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
package processors
import (
"github.com/golangci/golangci-lint/pkg/fsutils"
"github.com/golangci/golangci-lint/pkg/logutils"
"github.com/golangci/golangci-lint/pkg/result"
)
type SourceCode struct {
lineCache *fsutils.LineCache
log logutils.Log
}
var _ Processor = SourceCode{}
func NewSourceCode(lc *fsutils.LineCache, log logutils.Log) *SourceCode {
return &SourceCode{
lineCache: lc,
log: log,
}
}
func (p SourceCode) Name() string {
return "source_code"
}
func (p SourceCode) Process(issues []result.Issue) ([]result.Issue, error) {
return transformIssues(issues, func(i *result.Issue) *result.Issue {
newI := *i
lineRange := i.GetLineRange()
for lineNumber := lineRange.From; lineNumber <= lineRange.To; lineNumber++ {
line, err := p.lineCache.GetLine(i.FilePath(), lineNumber)
if err != nil {
p.log.Warnf("Failed to get line %d for file %s: %s",
lineNumber, i.FilePath(), err)
return i
}
newI.SourceLines = append(newI.SourceLines, line)
}
return &newI
}), nil
}
func (p SourceCode) Finish() {}