mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
60e1ae4a01
* adds checks for protobuf struct tags * use actual tag numbers as key instead of strings removes debug println
347 lines
7.8 KiB
Go
347 lines
7.8 KiB
Go
package rule
|
|
|
|
import (
|
|
"fmt"
|
|
"go/ast"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/fatih/structtag"
|
|
"github.com/mgechev/revive/lint"
|
|
)
|
|
|
|
// StructTagRule lints struct tags.
|
|
type StructTagRule struct{}
|
|
|
|
// Apply applies the rule to given file.
|
|
func (*StructTagRule) Apply(file *lint.File, _ lint.Arguments) []lint.Failure {
|
|
var failures []lint.Failure
|
|
|
|
onFailure := func(failure lint.Failure) {
|
|
failures = append(failures, failure)
|
|
}
|
|
|
|
w := lintStructTagRule{onFailure: onFailure}
|
|
|
|
ast.Walk(w, file.AST)
|
|
|
|
return failures
|
|
}
|
|
|
|
// Name returns the rule name.
|
|
func (*StructTagRule) Name() string {
|
|
return "struct-tag"
|
|
}
|
|
|
|
type lintStructTagRule struct {
|
|
onFailure func(lint.Failure)
|
|
usedTagNbr map[int]bool // list of used tag numbers
|
|
usedTagName map[string]bool // list of used tag keys
|
|
}
|
|
|
|
func (w lintStructTagRule) Visit(node ast.Node) ast.Visitor {
|
|
switch n := node.(type) {
|
|
case *ast.StructType:
|
|
if n.Fields == nil || n.Fields.NumFields() < 1 {
|
|
return nil // skip empty structs
|
|
}
|
|
w.usedTagNbr = map[int]bool{} // init
|
|
w.usedTagName = map[string]bool{} // init
|
|
for _, f := range n.Fields.List {
|
|
if f.Tag != nil {
|
|
w.checkTaggedField(f)
|
|
}
|
|
}
|
|
}
|
|
|
|
return w
|
|
}
|
|
|
|
func (w lintStructTagRule) checkTagNameIfNeed(tag *structtag.Tag) (string, bool) {
|
|
isUnnamedTag := tag.Name == "" || tag.Name == "-"
|
|
if isUnnamedTag {
|
|
return "", true
|
|
}
|
|
|
|
needsToCheckTagName := tag.Key == "bson" ||
|
|
tag.Key == "json" ||
|
|
tag.Key == "xml" ||
|
|
tag.Key == "yaml" ||
|
|
tag.Key == "protobuf"
|
|
|
|
if !needsToCheckTagName {
|
|
return "", true
|
|
}
|
|
|
|
tagName := w.getTagName(tag)
|
|
if tagName == "" {
|
|
return "", true // No tag name found
|
|
}
|
|
|
|
// We concat the key and name as the mapping key here
|
|
// to allow the same tag name in different tag type.
|
|
key := tag.Key + ":" + tagName
|
|
if _, ok := w.usedTagName[key]; ok {
|
|
return fmt.Sprintf("duplicate tag name: '%s'", tagName), false
|
|
}
|
|
|
|
w.usedTagName[key] = true
|
|
|
|
return "", true
|
|
}
|
|
|
|
func (lintStructTagRule) getTagName(tag *structtag.Tag) string {
|
|
switch tag.Key {
|
|
case "protobuf":
|
|
for _, option := range tag.Options {
|
|
if strings.HasPrefix(option, "name=") {
|
|
return strings.TrimLeft(option, "name=")
|
|
}
|
|
}
|
|
return "" //protobuf tag lacks 'name' option
|
|
default:
|
|
return tag.Name
|
|
}
|
|
}
|
|
|
|
// checkTaggedField checks the tag of the given field.
|
|
// precondition: the field has a tag
|
|
func (w lintStructTagRule) checkTaggedField(f *ast.Field) {
|
|
if len(f.Names) > 0 && !f.Names[0].IsExported() {
|
|
w.addFailure(f, "tag on not-exported field "+f.Names[0].Name)
|
|
}
|
|
|
|
tags, err := structtag.Parse(strings.Trim(f.Tag.Value, "`"))
|
|
if err != nil || tags == nil {
|
|
w.addFailure(f.Tag, "malformed tag")
|
|
return
|
|
}
|
|
|
|
for _, tag := range tags.Tags() {
|
|
if msg, ok := w.checkTagNameIfNeed(tag); !ok {
|
|
w.addFailure(f.Tag, msg)
|
|
}
|
|
|
|
switch key := tag.Key; key {
|
|
case "asn1":
|
|
msg, ok := w.checkASN1Tag(f.Type, tag)
|
|
if !ok {
|
|
w.addFailure(f.Tag, msg)
|
|
}
|
|
case "bson":
|
|
msg, ok := w.checkBSONTag(tag.Options)
|
|
if !ok {
|
|
w.addFailure(f.Tag, msg)
|
|
}
|
|
case "default":
|
|
if !w.typeValueMatch(f.Type, tag.Name) {
|
|
w.addFailure(f.Tag, "field's type and default value's type mismatch")
|
|
}
|
|
case "json":
|
|
msg, ok := w.checkJSONTag(tag.Name, tag.Options)
|
|
if !ok {
|
|
w.addFailure(f.Tag, msg)
|
|
}
|
|
case "protobuf":
|
|
msg, ok := w.checkProtobufTag(tag)
|
|
if !ok {
|
|
w.addFailure(f.Tag, msg)
|
|
}
|
|
case "required":
|
|
if tag.Name != "true" && tag.Name != "false" {
|
|
w.addFailure(f.Tag, "required should be 'true' or 'false'")
|
|
}
|
|
case "xml":
|
|
msg, ok := w.checkXMLTag(tag.Options)
|
|
if !ok {
|
|
w.addFailure(f.Tag, msg)
|
|
}
|
|
case "yaml":
|
|
msg, ok := w.checkYAMLTag(tag.Options)
|
|
if !ok {
|
|
w.addFailure(f.Tag, msg)
|
|
}
|
|
default:
|
|
// unknown key
|
|
}
|
|
}
|
|
}
|
|
|
|
func (w lintStructTagRule) checkASN1Tag(t ast.Expr, tag *structtag.Tag) (string, bool) {
|
|
checkList := append(tag.Options, tag.Name)
|
|
for _, opt := range checkList {
|
|
switch opt {
|
|
case "application", "explicit", "generalized", "ia5", "omitempty", "optional", "set", "utf8":
|
|
|
|
default:
|
|
if strings.HasPrefix(opt, "tag:") {
|
|
parts := strings.Split(opt, ":")
|
|
tagNumber := parts[1]
|
|
number, err := strconv.Atoi(tagNumber)
|
|
if err != nil {
|
|
return fmt.Sprintf("ASN1 tag must be a number, got '%s'", tagNumber), false
|
|
}
|
|
if w.usedTagNbr[number] {
|
|
return fmt.Sprintf("duplicated tag number %v", number), false
|
|
}
|
|
w.usedTagNbr[number] = true
|
|
|
|
continue
|
|
}
|
|
|
|
if strings.HasPrefix(opt, "default:") {
|
|
parts := strings.Split(opt, ":")
|
|
if len(parts) < 2 {
|
|
return "malformed default for ASN1 tag", false
|
|
}
|
|
if !w.typeValueMatch(t, parts[1]) {
|
|
return "field's type and default value's type mismatch", false
|
|
}
|
|
|
|
continue
|
|
}
|
|
|
|
return fmt.Sprintf("unknown option '%s' in ASN1 tag", opt), false
|
|
}
|
|
}
|
|
|
|
return "", true
|
|
}
|
|
|
|
func (lintStructTagRule) checkBSONTag(options []string) (string, bool) {
|
|
for _, opt := range options {
|
|
switch opt {
|
|
case "inline", "minsize", "omitempty":
|
|
default:
|
|
return fmt.Sprintf("unknown option '%s' in BSON tag", opt), false
|
|
}
|
|
}
|
|
|
|
return "", true
|
|
}
|
|
|
|
func (lintStructTagRule) checkJSONTag(name string, options []string) (string, bool) {
|
|
for _, opt := range options {
|
|
switch opt {
|
|
case "omitempty", "string":
|
|
case "":
|
|
// special case for JSON key "-"
|
|
if name != "-" {
|
|
return "option can not be empty in JSON tag", false
|
|
}
|
|
default:
|
|
return fmt.Sprintf("unknown option '%s' in JSON tag", opt), false
|
|
}
|
|
}
|
|
|
|
return "", true
|
|
}
|
|
|
|
func (lintStructTagRule) checkXMLTag(options []string) (string, bool) {
|
|
for _, opt := range options {
|
|
switch opt {
|
|
case "any", "attr", "cdata", "chardata", "comment", "innerxml", "omitempty", "typeattr":
|
|
default:
|
|
return fmt.Sprintf("unknown option '%s' in XML tag", opt), false
|
|
}
|
|
}
|
|
|
|
return "", true
|
|
}
|
|
|
|
func (lintStructTagRule) checkYAMLTag(options []string) (string, bool) {
|
|
for _, opt := range options {
|
|
switch opt {
|
|
case "flow", "inline", "omitempty":
|
|
default:
|
|
return fmt.Sprintf("unknown option '%s' in YAML tag", opt), false
|
|
}
|
|
}
|
|
|
|
return "", true
|
|
}
|
|
|
|
func (lintStructTagRule) typeValueMatch(t ast.Expr, val string) bool {
|
|
tID, ok := t.(*ast.Ident)
|
|
if !ok {
|
|
return true
|
|
}
|
|
|
|
typeMatches := true
|
|
switch tID.Name {
|
|
case "bool":
|
|
typeMatches = val == "true" || val == "false"
|
|
case "float64":
|
|
_, err := strconv.ParseFloat(val, 64)
|
|
typeMatches = err == nil
|
|
case "int":
|
|
_, err := strconv.ParseInt(val, 10, 64)
|
|
typeMatches = err == nil
|
|
case "string":
|
|
case "nil":
|
|
default:
|
|
// unchecked type
|
|
}
|
|
|
|
return typeMatches
|
|
}
|
|
|
|
func (w lintStructTagRule) checkProtobufTag(tag *structtag.Tag) (string, bool) {
|
|
// check name
|
|
switch tag.Name {
|
|
case "bytes", "fixed32", "fixed64", "group", "varint", "zigzag32", "zigzag64":
|
|
// do nothing
|
|
default:
|
|
return fmt.Sprintf("invalid protobuf tag name '%s'", tag.Name), false
|
|
}
|
|
|
|
// check options
|
|
seenOptions := map[string]bool{}
|
|
for _, opt := range tag.Options {
|
|
if number, err := strconv.Atoi(opt); err == nil {
|
|
_, alreadySeen := w.usedTagNbr[number]
|
|
if alreadySeen {
|
|
return fmt.Sprintf("duplicated tag number %v", number), false
|
|
}
|
|
w.usedTagNbr[number] = true
|
|
continue // option is an integer
|
|
}
|
|
|
|
switch {
|
|
case opt == "opt" || opt == "proto3" || opt == "rep" || opt == "req":
|
|
// do nothing
|
|
case strings.Contains(opt, "="):
|
|
o := strings.Split(opt, "=")[0]
|
|
_, alreadySeen := seenOptions[o]
|
|
if alreadySeen {
|
|
return fmt.Sprintf("protobuf tag has duplicated option '%s'", o), false
|
|
}
|
|
seenOptions[o] = true
|
|
continue
|
|
}
|
|
}
|
|
_, hasName := seenOptions["name"]
|
|
if !hasName {
|
|
return "protobuf tag lacks mandatory option 'name'", false
|
|
}
|
|
|
|
for k := range seenOptions {
|
|
switch k {
|
|
case "name", "json":
|
|
// do nothing
|
|
default:
|
|
return fmt.Sprintf("unknown option '%s' in protobuf tag", k), false
|
|
}
|
|
}
|
|
|
|
return "", true
|
|
}
|
|
|
|
func (w lintStructTagRule) addFailure(n ast.Node, msg string) {
|
|
w.onFailure(lint.Failure{
|
|
Node: n,
|
|
Failure: msg,
|
|
Confidence: 1,
|
|
})
|
|
}
|