mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
7abb883d0f
add version cli flag to show binary build info
217 lines
4.3 KiB
Go
217 lines
4.3 KiB
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/mgechev/dots"
|
|
"github.com/mgechev/revive/config"
|
|
"github.com/mgechev/revive/lint"
|
|
"github.com/mitchellh/go-homedir"
|
|
)
|
|
|
|
var (
|
|
version = "dev"
|
|
commit = "none"
|
|
date = "unknown"
|
|
builtBy = "unknown"
|
|
)
|
|
|
|
func fail(err string) {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
func main() {
|
|
conf, err := config.GetConfig(configPath)
|
|
if err != nil {
|
|
fail(err.Error())
|
|
}
|
|
formatter, err := config.GetFormatter(formatterName)
|
|
if err != nil {
|
|
fail(err.Error())
|
|
}
|
|
|
|
if len(excludePaths) == 0 { // if no excludes were set in the command line
|
|
excludePaths = conf.Exclude // use those from the configuration
|
|
}
|
|
|
|
packages, err := getPackages(excludePaths)
|
|
if err != nil {
|
|
fail(err.Error())
|
|
}
|
|
|
|
revive := lint.New(func(file string) ([]byte, error) {
|
|
return ioutil.ReadFile(file)
|
|
})
|
|
|
|
lintingRules, err := config.GetLintingRules(conf)
|
|
if err != nil {
|
|
fail(err.Error())
|
|
}
|
|
|
|
failures, err := revive.Lint(packages, lintingRules, *conf)
|
|
if err != nil {
|
|
fail(err.Error())
|
|
}
|
|
|
|
formatChan := make(chan lint.Failure)
|
|
exitChan := make(chan bool)
|
|
|
|
var output string
|
|
go (func() {
|
|
output, err = formatter.Format(formatChan, *conf)
|
|
if err != nil {
|
|
fail(err.Error())
|
|
}
|
|
exitChan <- true
|
|
})()
|
|
|
|
exitCode := 0
|
|
for f := range failures {
|
|
if f.Confidence < conf.Confidence {
|
|
continue
|
|
}
|
|
if exitCode == 0 {
|
|
exitCode = conf.WarningCode
|
|
}
|
|
if c, ok := conf.Rules[f.RuleName]; ok && c.Severity == lint.SeverityError {
|
|
exitCode = conf.ErrorCode
|
|
}
|
|
if c, ok := conf.Directives[f.RuleName]; ok && c.Severity == lint.SeverityError {
|
|
exitCode = conf.ErrorCode
|
|
}
|
|
|
|
formatChan <- f
|
|
}
|
|
|
|
close(formatChan)
|
|
<-exitChan
|
|
if output != "" {
|
|
fmt.Println(output)
|
|
}
|
|
|
|
os.Exit(exitCode)
|
|
}
|
|
|
|
func normalizeSplit(strs []string) []string {
|
|
res := []string{}
|
|
for _, s := range strs {
|
|
t := strings.Trim(s, " \t")
|
|
if len(t) > 0 {
|
|
res = append(res, t)
|
|
}
|
|
}
|
|
return res
|
|
}
|
|
|
|
func getPackages(excludePaths arrayFlags) ([][]string, error) {
|
|
globs := normalizeSplit(flag.Args())
|
|
if len(globs) == 0 {
|
|
globs = append(globs, ".")
|
|
}
|
|
|
|
packages, err := dots.ResolvePackages(globs, normalizeSplit(excludePaths))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return packages, nil
|
|
}
|
|
|
|
type arrayFlags []string
|
|
|
|
func (i *arrayFlags) String() string {
|
|
return strings.Join([]string(*i), " ")
|
|
}
|
|
|
|
func (i *arrayFlags) Set(value string) error {
|
|
*i = append(*i, value)
|
|
return nil
|
|
}
|
|
|
|
var configPath string
|
|
var excludePaths arrayFlags
|
|
var formatterName string
|
|
var help bool
|
|
var versionFlag bool
|
|
|
|
var originalUsage = flag.Usage
|
|
|
|
func getLogo() string {
|
|
return color.YellowString(` _ __ _____ _(_)__ _____
|
|
| '__/ _ \ \ / / \ \ / / _ \
|
|
| | | __/\ V /| |\ V / __/
|
|
|_| \___| \_/ |_| \_/ \___|`)
|
|
}
|
|
|
|
func getCall() string {
|
|
return color.MagentaString("revive -config c.toml -formatter friendly -exclude a.go -exclude b.go ./...")
|
|
}
|
|
|
|
func getBanner() string {
|
|
return fmt.Sprintf(`
|
|
%s
|
|
|
|
Example:
|
|
%s
|
|
`, getLogo(), getCall())
|
|
}
|
|
|
|
func buildDefaultConfigPath() string {
|
|
var result string
|
|
if homeDir, err := homedir.Dir(); err == nil {
|
|
result = filepath.Join(homeDir, "revive.toml")
|
|
if _, err := os.Stat(result); err != nil {
|
|
result = ""
|
|
}
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
func init() {
|
|
// Force colorizing for no TTY environments
|
|
if os.Getenv("REVIVE_FORCE_COLOR") == "1" {
|
|
color.NoColor = false
|
|
}
|
|
|
|
flag.Usage = func() {
|
|
fmt.Println(getBanner())
|
|
originalUsage()
|
|
}
|
|
|
|
// command line help strings
|
|
const (
|
|
configUsage = "path to the configuration TOML file, defaults to $HOME/revive.toml, if present (i.e. -config myconf.toml)"
|
|
excludeUsage = "list of globs which specify files to be excluded (i.e. -exclude foo/...)"
|
|
formatterUsage = "formatter to be used for the output (i.e. -formatter stylish)"
|
|
versionUsage = "get revive version"
|
|
)
|
|
|
|
defaultConfigPath := buildDefaultConfigPath()
|
|
|
|
flag.StringVar(&configPath, "config", defaultConfigPath, configUsage)
|
|
flag.Var(&excludePaths, "exclude", excludeUsage)
|
|
flag.StringVar(&formatterName, "formatter", "", formatterUsage)
|
|
flag.BoolVar(&versionFlag, "version", false, versionUsage)
|
|
flag.Parse()
|
|
|
|
// Output build info (version, commit, date and builtBy)
|
|
if versionFlag {
|
|
fmt.Printf(
|
|
"Current revive version %v commit %v, built @%v by %v.\n",
|
|
version,
|
|
commit,
|
|
date,
|
|
builtBy,
|
|
)
|
|
os.Exit(0)
|
|
}
|
|
}
|