2021-01-16 06:36:44 +00:00
|
|
|
package spec
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/fatih/camelcase"
|
|
|
|
"github.com/sunboyy/repogen/internal/code"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ParseRepositoryInterface returns repository spec from declared repository interface
|
|
|
|
func ParseRepositoryInterface(structModel code.Struct, intf code.Interface) (RepositorySpec, error) {
|
|
|
|
parser := repositoryInterfaceParser{
|
|
|
|
StructModel: structModel,
|
|
|
|
Interface: intf,
|
|
|
|
}
|
|
|
|
|
|
|
|
return parser.Parse()
|
|
|
|
}
|
|
|
|
|
|
|
|
type repositoryInterfaceParser struct {
|
|
|
|
StructModel code.Struct
|
|
|
|
Interface code.Interface
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p repositoryInterfaceParser) Parse() (RepositorySpec, error) {
|
|
|
|
repositorySpec := RepositorySpec{
|
|
|
|
InterfaceName: p.Interface.Name,
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, method := range p.Interface.Methods {
|
|
|
|
methodSpec, err := p.parseMethod(method)
|
|
|
|
if err != nil {
|
|
|
|
return RepositorySpec{}, err
|
|
|
|
}
|
|
|
|
repositorySpec.Methods = append(repositorySpec.Methods, methodSpec)
|
|
|
|
}
|
|
|
|
|
|
|
|
return repositorySpec, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p repositoryInterfaceParser) parseMethod(method code.Method) (MethodSpec, error) {
|
|
|
|
methodNameTokens := camelcase.Split(method.Name)
|
|
|
|
switch methodNameTokens[0] {
|
|
|
|
case "Find":
|
|
|
|
return p.parseFindMethod(method, methodNameTokens[1:])
|
|
|
|
}
|
|
|
|
return MethodSpec{}, errors.New("method name not supported")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p repositoryInterfaceParser) parseFindMethod(method code.Method, tokens []string) (MethodSpec, error) {
|
|
|
|
if len(tokens) == 0 {
|
|
|
|
return MethodSpec{}, errors.New("method name not supported")
|
|
|
|
}
|
|
|
|
|
|
|
|
mode, err := p.extractFindReturns(method.Returns)
|
|
|
|
if err != nil {
|
|
|
|
return MethodSpec{}, err
|
|
|
|
}
|
|
|
|
|
2021-01-17 03:29:50 +00:00
|
|
|
querySpec, err := p.parseQuery(tokens)
|
2021-01-16 06:36:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return MethodSpec{}, err
|
|
|
|
}
|
|
|
|
|
2021-01-17 03:29:50 +00:00
|
|
|
if querySpec.NumberOfArguments()+1 != len(method.Params) {
|
2021-01-16 06:36:44 +00:00
|
|
|
return MethodSpec{}, errors.New("method parameter not supported")
|
|
|
|
}
|
|
|
|
|
|
|
|
return MethodSpec{
|
|
|
|
Name: method.Name,
|
|
|
|
Params: method.Params,
|
|
|
|
Returns: method.Returns,
|
|
|
|
Operation: FindOperation{
|
|
|
|
Mode: mode,
|
2021-01-17 03:29:50 +00:00
|
|
|
Query: querySpec,
|
2021-01-16 06:36:44 +00:00
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p repositoryInterfaceParser) extractFindReturns(returns []code.Type) (QueryMode, error) {
|
|
|
|
if len(returns) != 2 {
|
|
|
|
return "", errors.New("method return not supported")
|
|
|
|
}
|
|
|
|
|
|
|
|
if returns[1] != code.SimpleType("error") {
|
|
|
|
return "", errors.New("method return not supported")
|
|
|
|
}
|
|
|
|
|
|
|
|
pointerType, ok := returns[0].(code.PointerType)
|
|
|
|
if ok {
|
|
|
|
simpleType := pointerType.ContainedType
|
|
|
|
if simpleType == code.SimpleType(p.StructModel.Name) {
|
|
|
|
return QueryModeOne, nil
|
|
|
|
}
|
|
|
|
return "", fmt.Errorf("invalid return type %s", pointerType.Code())
|
|
|
|
}
|
|
|
|
|
|
|
|
arrayType, ok := returns[0].(code.ArrayType)
|
|
|
|
if ok {
|
|
|
|
pointerType, ok := arrayType.ContainedType.(code.PointerType)
|
|
|
|
if ok {
|
|
|
|
simpleType := pointerType.ContainedType
|
|
|
|
if simpleType == code.SimpleType(p.StructModel.Name) {
|
|
|
|
return QueryModeMany, nil
|
|
|
|
}
|
|
|
|
return "", fmt.Errorf("invalid return type %s", pointerType.Code())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return "", errors.New("method return not supported")
|
|
|
|
}
|
|
|
|
|
2021-01-17 03:29:50 +00:00
|
|
|
func (p repositoryInterfaceParser) parseQuery(tokens []string) (QuerySpec, error) {
|
2021-01-16 06:36:44 +00:00
|
|
|
if len(tokens) == 0 {
|
2021-01-17 03:29:50 +00:00
|
|
|
return QuerySpec{}, errors.New("method name not supported")
|
2021-01-16 06:36:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(tokens) == 1 && tokens[0] == "All" {
|
2021-01-17 03:29:50 +00:00
|
|
|
return QuerySpec{}, nil
|
2021-01-16 06:36:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if tokens[0] == "One" {
|
|
|
|
tokens = tokens[1:]
|
|
|
|
}
|
|
|
|
if tokens[0] == "By" {
|
|
|
|
tokens = tokens[1:]
|
|
|
|
}
|
|
|
|
|
2021-01-19 12:35:54 +00:00
|
|
|
if tokens[0] == "And" || tokens[0] == "Or" {
|
2021-01-17 03:29:50 +00:00
|
|
|
return QuerySpec{}, errors.New("method name not supported")
|
2021-01-16 06:36:44 +00:00
|
|
|
}
|
2021-01-19 12:26:26 +00:00
|
|
|
|
2021-01-19 12:35:54 +00:00
|
|
|
var operator Operator
|
2021-01-19 12:26:26 +00:00
|
|
|
var predicates []Predicate
|
|
|
|
var aggregatedToken predicateToken
|
2021-01-16 06:36:44 +00:00
|
|
|
for _, token := range tokens {
|
2021-01-19 12:35:54 +00:00
|
|
|
if token != "And" && token != "Or" {
|
2021-01-19 12:26:26 +00:00
|
|
|
aggregatedToken = append(aggregatedToken, token)
|
2021-01-19 12:35:54 +00:00
|
|
|
} else if token == "And" && operator != OperatorOr {
|
|
|
|
operator = OperatorAnd
|
|
|
|
predicates = append(predicates, aggregatedToken.ToPredicate())
|
|
|
|
aggregatedToken = predicateToken{}
|
|
|
|
} else if token == "Or" && operator != OperatorAnd {
|
|
|
|
operator = OperatorOr
|
2021-01-19 12:26:26 +00:00
|
|
|
predicates = append(predicates, aggregatedToken.ToPredicate())
|
|
|
|
aggregatedToken = predicateToken{}
|
2021-01-19 12:35:54 +00:00
|
|
|
} else {
|
|
|
|
return QuerySpec{}, errors.New("method name contains ambiguous query")
|
2021-01-16 06:36:44 +00:00
|
|
|
}
|
|
|
|
}
|
2021-01-19 12:26:26 +00:00
|
|
|
if len(aggregatedToken) == 0 {
|
2021-01-17 03:29:50 +00:00
|
|
|
return QuerySpec{}, errors.New("method name not supported")
|
2021-01-16 06:36:44 +00:00
|
|
|
}
|
2021-01-19 12:26:26 +00:00
|
|
|
predicates = append(predicates, aggregatedToken.ToPredicate())
|
2021-01-16 06:36:44 +00:00
|
|
|
|
2021-01-19 12:35:54 +00:00
|
|
|
return QuerySpec{Operator: operator, Predicates: predicates}, nil
|
2021-01-16 06:36:44 +00:00
|
|
|
}
|