mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-03 23:26:29 +00:00
c28f7cb29f
Initial part of #435
50 lines
794 B
Go
50 lines
794 B
Go
package printer
|
|
|
|
import (
|
|
"sort"
|
|
|
|
"github.com/golangci/dupl/syntax"
|
|
)
|
|
|
|
type Clone clone
|
|
|
|
func (c Clone) Filename() string {
|
|
return c.filename
|
|
}
|
|
|
|
func (c Clone) LineStart() int {
|
|
return c.lineStart
|
|
}
|
|
|
|
func (c Clone) LineEnd() int {
|
|
return c.lineEnd
|
|
}
|
|
|
|
type Issue struct {
|
|
From, To Clone
|
|
}
|
|
|
|
type Plumbing struct {
|
|
ReadFile
|
|
}
|
|
|
|
func NewPlumbing(fread ReadFile) *Plumbing {
|
|
return &Plumbing{fread}
|
|
}
|
|
|
|
func (p *Plumbing) MakeIssues(dups [][]*syntax.Node) ([]Issue, error) {
|
|
clones, err := prepareClonesInfo(p.ReadFile, dups)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
sort.Sort(byNameAndLine(clones))
|
|
var issues []Issue
|
|
for i, cl := range clones {
|
|
nextCl := clones[(i+1)%len(clones)]
|
|
issues = append(issues, Issue{
|
|
From: Clone(cl),
|
|
To: Clone(nextCl),
|
|
})
|
|
}
|
|
return issues, nil
|
|
}
|