mirror of
https://github.com/mgechev/revive.git
synced 2025-03-03 14:52:54 +02:00
139 lines
3.5 KiB
Go
139 lines
3.5 KiB
Go
package formatter
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"sort"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/mgechev/revive/lint"
|
|
"github.com/olekukonko/tablewriter"
|
|
)
|
|
|
|
func getErrorEmoji() string {
|
|
return color.RedString("✘")
|
|
}
|
|
|
|
func getWarningEmoji() string {
|
|
return color.YellowString("⚠")
|
|
}
|
|
|
|
// Friendly is an implementation of the Formatter interface
|
|
// which formats the errors to JSON.
|
|
type Friendly struct {
|
|
Metadata lint.FormatterMetadata
|
|
}
|
|
|
|
// Name returns the name of the formatter
|
|
func (*Friendly) Name() string {
|
|
return "friendly"
|
|
}
|
|
|
|
// Format formats the failures gotten from the lint.
|
|
func (f *Friendly) Format(failures <-chan lint.Failure, config lint.Config) (string, error) {
|
|
var buf bytes.Buffer
|
|
errorMap := map[string]int{}
|
|
warningMap := map[string]int{}
|
|
totalErrors := 0
|
|
totalWarnings := 0
|
|
for failure := range failures {
|
|
sev := severity(config, failure)
|
|
f.printFriendlyFailure(&buf, failure, sev)
|
|
if sev == lint.SeverityWarning {
|
|
warningMap[failure.RuleName]++
|
|
totalWarnings++
|
|
}
|
|
if sev == lint.SeverityError {
|
|
errorMap[failure.RuleName]++
|
|
totalErrors++
|
|
}
|
|
}
|
|
f.printSummary(&buf, totalErrors, totalWarnings)
|
|
f.printStatistics(&buf, color.RedString("Errors:"), errorMap)
|
|
f.printStatistics(&buf, color.YellowString("Warnings:"), warningMap)
|
|
return buf.String(), nil
|
|
}
|
|
|
|
func (f *Friendly) printFriendlyFailure(w io.Writer, failure lint.Failure, severity lint.Severity) {
|
|
f.printHeaderRow(w, failure, severity)
|
|
f.printFilePosition(w, failure)
|
|
fmt.Fprintf(w, "\n\n")
|
|
}
|
|
|
|
func (f *Friendly) printHeaderRow(w io.Writer, failure lint.Failure, severity lint.Severity) {
|
|
emoji := getWarningEmoji()
|
|
if severity == lint.SeverityError {
|
|
emoji = getErrorEmoji()
|
|
}
|
|
fmt.Fprint(w, f.table([][]string{{emoji, ruleDescriptionURL(failure.RuleName), color.GreenString(failure.Failure)}}))
|
|
}
|
|
|
|
func (*Friendly) printFilePosition(w io.Writer, failure lint.Failure) {
|
|
fmt.Fprintf(w, " %s:%d:%d", failure.GetFilename(), failure.Position.Start.Line, failure.Position.Start.Column)
|
|
}
|
|
|
|
type statEntry struct {
|
|
name string
|
|
failures int
|
|
}
|
|
|
|
func (*Friendly) printSummary(w io.Writer, errors, warnings int) {
|
|
emoji := getWarningEmoji()
|
|
if errors > 0 {
|
|
emoji = getErrorEmoji()
|
|
}
|
|
problemsLabel := "problems"
|
|
if errors+warnings == 1 {
|
|
problemsLabel = "problem"
|
|
}
|
|
warningsLabel := "warnings"
|
|
if warnings == 1 {
|
|
warningsLabel = "warning"
|
|
}
|
|
errorsLabel := "errors"
|
|
if errors == 1 {
|
|
errorsLabel = "error"
|
|
}
|
|
str := fmt.Sprintf("%d %s (%d %s, %d %s)", errors+warnings, problemsLabel, errors, errorsLabel, warnings, warningsLabel)
|
|
if errors > 0 {
|
|
fmt.Fprintf(w, "%s %s\n\n", emoji, color.RedString(str))
|
|
return
|
|
}
|
|
if warnings > 0 {
|
|
fmt.Fprintf(w, "%s %s\n\n", emoji, color.YellowString(str))
|
|
return
|
|
}
|
|
}
|
|
|
|
func (f *Friendly) printStatistics(w io.Writer, header string, stats map[string]int) {
|
|
if len(stats) == 0 {
|
|
return
|
|
}
|
|
var data []statEntry
|
|
for name, total := range stats {
|
|
data = append(data, statEntry{name, total})
|
|
}
|
|
sort.Slice(data, func(i, j int) bool {
|
|
return data[i].failures > data[j].failures
|
|
})
|
|
formatted := [][]string{}
|
|
for _, entry := range data {
|
|
formatted = append(formatted, []string{color.GreenString(fmt.Sprintf("%d", entry.failures)), entry.name})
|
|
}
|
|
fmt.Fprintln(w, header)
|
|
fmt.Fprintln(w, f.table(formatted))
|
|
}
|
|
|
|
func (*Friendly) table(rows [][]string) string {
|
|
buf := new(bytes.Buffer)
|
|
table := tablewriter.NewWriter(buf)
|
|
table.SetBorder(false)
|
|
table.SetColumnSeparator("")
|
|
table.SetRowSeparator("")
|
|
table.SetAutoWrapText(false)
|
|
table.AppendBulk(rows)
|
|
table.Render()
|
|
return buf.String()
|
|
}
|