mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
62 lines
1.2 KiB
Go
62 lines
1.2 KiB
Go
package rule
|
|
|
|
import (
|
|
"fmt"
|
|
"go/ast"
|
|
"strconv"
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
)
|
|
|
|
// ArgumentsLimitRule lints given else constructs.
|
|
type ArgumentsLimitRule struct{}
|
|
|
|
// Apply applies the rule to given file.
|
|
func (r *ArgumentsLimitRule) Apply(file *lint.File, arguments lint.Arguments) []lint.Failure {
|
|
if len(arguments) != 1 {
|
|
panic(`invalid configuration for "argument-limit"`)
|
|
}
|
|
total, err := strconv.ParseInt(arguments[0], 10, 32)
|
|
if err != nil {
|
|
panic(`invalid configuration for "argument-limit"`)
|
|
}
|
|
|
|
var failures []lint.Failure
|
|
|
|
walker := lintArgsNum{
|
|
total: total,
|
|
onFailure: func(failure lint.Failure) {
|
|
failures = append(failures, failure)
|
|
},
|
|
}
|
|
|
|
ast.Walk(walker, file.AST)
|
|
|
|
return failures
|
|
}
|
|
|
|
// Name returns the rule name.
|
|
func (r *ArgumentsLimitRule) Name() string {
|
|
return "argument-limit"
|
|
}
|
|
|
|
type lintArgsNum struct {
|
|
total int64
|
|
onFailure func(lint.Failure)
|
|
}
|
|
|
|
func (w lintArgsNum) Visit(n ast.Node) ast.Visitor {
|
|
node, ok := n.(*ast.FuncDecl)
|
|
if ok {
|
|
num := int64(len(node.Type.Params.List))
|
|
if num > w.total {
|
|
w.onFailure(lint.Failure{
|
|
Failure: fmt.Sprintf("maximum number of arguments per function exceeded; max %d but got %d", w.total, num),
|
|
Node: node.Type,
|
|
})
|
|
return w
|
|
}
|
|
}
|
|
return w
|
|
}
|