mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
90 lines
1.6 KiB
Go
90 lines
1.6 KiB
Go
package rule
|
|
|
|
import (
|
|
"fmt"
|
|
"go/ast"
|
|
"sync"
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
)
|
|
|
|
// ArgumentsLimitRule lints given else constructs.
|
|
type ArgumentsLimitRule struct {
|
|
max int
|
|
sync.Mutex
|
|
}
|
|
|
|
const defaultArgumentsLimit = 8
|
|
|
|
func (r *ArgumentsLimitRule) configure(arguments lint.Arguments) {
|
|
r.Lock()
|
|
defer r.Unlock()
|
|
if r.max != 0 {
|
|
return
|
|
}
|
|
|
|
if len(arguments) < 1 {
|
|
r.max = defaultArgumentsLimit
|
|
return
|
|
}
|
|
|
|
maxArguments, ok := arguments[0].(int64) // Alt. non panicking version
|
|
if !ok {
|
|
panic(`invalid value passed as argument number to the "argument-limit" rule`)
|
|
}
|
|
r.max = int(maxArguments)
|
|
}
|
|
|
|
// Apply applies the rule to given file.
|
|
func (r *ArgumentsLimitRule) Apply(file *lint.File, arguments lint.Arguments) []lint.Failure {
|
|
r.configure(arguments)
|
|
|
|
var failures []lint.Failure
|
|
onFailure := func(failure lint.Failure) {
|
|
failures = append(failures, failure)
|
|
}
|
|
|
|
walker := lintArgsNum{
|
|
max: r.max,
|
|
onFailure: onFailure,
|
|
}
|
|
|
|
ast.Walk(walker, file.AST)
|
|
|
|
return failures
|
|
}
|
|
|
|
// Name returns the rule name.
|
|
func (*ArgumentsLimitRule) Name() string {
|
|
return "argument-limit"
|
|
}
|
|
|
|
type lintArgsNum struct {
|
|
max int
|
|
onFailure func(lint.Failure)
|
|
}
|
|
|
|
func (w lintArgsNum) Visit(n ast.Node) ast.Visitor {
|
|
node, ok := n.(*ast.FuncDecl)
|
|
if !ok {
|
|
return w
|
|
}
|
|
|
|
num := 0
|
|
for _, l := range node.Type.Params.List {
|
|
for range l.Names {
|
|
num++
|
|
}
|
|
}
|
|
|
|
if num > w.max {
|
|
w.onFailure(lint.Failure{
|
|
Confidence: 1,
|
|
Failure: fmt.Sprintf("maximum number of arguments per function exceeded; max %d but got %d", w.max, num),
|
|
Node: node.Type,
|
|
})
|
|
}
|
|
|
|
return nil // skip visiting the body of the function
|
|
}
|