thriftlint/checks/naming.go

81 lines
2.2 KiB
Go
Raw Normal View History

2017-01-11 04:36:58 +00:00
package checks
import (
"reflect"
"regexp"
"strings"
"github.com/UrbanCompass/thriftlint"
)
type NamingStyle struct {
Name string
Pattern *regexp.Regexp
}
2017-01-11 04:36:58 +00:00
var (
upperCamelCaseStyle = NamingStyle{
Name: "title case",
Pattern: regexp.MustCompile(`^_?([A-Z][0-9a-z]*)*$`),
}
lowerCamelCaseStyle = NamingStyle{
Name: "camel case",
Pattern: regexp.MustCompile(`^_?[a-z][A-Z0-9a-z]*$`),
}
upperSnakeCaseStyle = NamingStyle{
Name: "upper snake case",
Pattern: regexp.MustCompile(`^_?[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$`),
}
2017-01-11 04:36:58 +00:00
// CheckNamesDefaults is a map of Thrift AST node type to a regular expression for
// validating names of that type.
CheckNamesDefaults = map[reflect.Type]NamingStyle{
thriftlint.ServiceType: upperCamelCaseStyle,
thriftlint.EnumType: upperCamelCaseStyle,
thriftlint.StructType: upperCamelCaseStyle,
thriftlint.EnumValueType: upperSnakeCaseStyle,
thriftlint.FieldType: lowerCamelCaseStyle,
thriftlint.MethodType: lowerCamelCaseStyle,
thriftlint.ConstantType: upperSnakeCaseStyle,
2017-01-11 04:36:58 +00:00
}
// CheckNamesDefaultBlacklist is names that should never be used for symbols.
CheckNamesDefaultBlacklist = map[string]bool{
"class": true,
"int": true,
}
)
// CheckNames checks Thrift symbols comply with a set of regular expressions.
//
// If matches or blacklist are nil, global defaults will be used.
func CheckNames(matches map[reflect.Type]NamingStyle, blacklist map[string]bool) thriftlint.Check {
2017-01-11 04:36:58 +00:00
if matches == nil {
matches = CheckNamesDefaults
}
if blacklist == nil {
blacklist = CheckNamesDefaultBlacklist
}
return thriftlint.MakeCheck("naming", func(v interface{}) (messages thriftlint.Messages) {
rv := reflect.Indirect(reflect.ValueOf(v))
nameField := rv.FieldByName("Name")
if !nameField.IsValid() {
return nil
}
name := nameField.Interface().(string)
// Special-case DEPRECATED_ fields.
checker, ok := matches[rv.Type()]
2017-01-11 04:36:58 +00:00
if !ok || strings.HasPrefix(name, "DEPRECATED_") {
return nil
}
if blacklist[name] {
messages.Warning(v, "%q is a disallowed name", name)
}
if ok := checker.Pattern.MatchString(name); !ok {
messages.Warning(v, "name of %s %q should be %s", strings.ToLower(rv.Type().Name()),
name, checker.Name)
2017-01-11 04:36:58 +00:00
}
return
})
}