120 lines
2.5 KiB
Go
120 lines
2.5 KiB
Go
package dynamic
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
|
|
"git.xdrm.io/go/aicra/api"
|
|
"git.xdrm.io/go/aicra/internal/config"
|
|
)
|
|
|
|
// builds a spec from the configuration service
|
|
func makeSpec(service config.Service) spec {
|
|
spec := spec{
|
|
Input: make(map[string]reflect.Type),
|
|
Output: make(map[string]reflect.Type),
|
|
}
|
|
|
|
for _, param := range service.Input {
|
|
// make a pointer if optional
|
|
if param.Optional {
|
|
spec.Input[param.Rename] = reflect.PtrTo(param.ExtractType)
|
|
continue
|
|
}
|
|
spec.Input[param.Rename] = param.ExtractType
|
|
}
|
|
|
|
for _, param := range service.Output {
|
|
spec.Output[param.Rename] = param.ExtractType
|
|
}
|
|
|
|
return spec
|
|
}
|
|
|
|
// checks for HandlerFn input arguments
|
|
func (s spec) checkInput(fnv reflect.Value) error {
|
|
fnt := fnv.Type()
|
|
|
|
// no input -> ok
|
|
if len(s.Input) == 0 {
|
|
return nil
|
|
}
|
|
|
|
if fnt.NumIn() != 1 {
|
|
return ErrMissingHandlerArgumentParam
|
|
}
|
|
|
|
// arg must be a struct
|
|
structArg := fnt.In(0)
|
|
if structArg.Kind() != reflect.Struct {
|
|
return ErrMissingParamArgument
|
|
}
|
|
|
|
// check for invlaid param
|
|
for name, ptype := range s.Input {
|
|
field, exists := structArg.FieldByName(name)
|
|
if !exists {
|
|
return fmt.Errorf("%s: %w", name, ErrMissingParamFromConfig)
|
|
}
|
|
|
|
if !ptype.AssignableTo(field.Type) {
|
|
return fmt.Errorf("%s: %w (%s instead of %s)", name, ErrWrongParamTypeFromConfig, field.Type, ptype)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// checks for HandlerFn output arguments
|
|
func (s spec) checkOutput(fnv reflect.Value) error {
|
|
fnt := fnv.Type()
|
|
if fnt.NumOut() < 1 {
|
|
return ErrMissingHandlerOutput
|
|
}
|
|
|
|
// last output must be api.Error
|
|
errOutput := fnt.Out(fnt.NumOut() - 1)
|
|
if !errOutput.AssignableTo(reflect.TypeOf(api.ErrorUnknown)) {
|
|
return ErrMissingHandlerErrorOutput
|
|
}
|
|
|
|
// no output -> ok
|
|
if len(s.Output) == 0 {
|
|
return nil
|
|
}
|
|
|
|
if fnt.NumOut() != 2 {
|
|
return ErrMissingParamOutput
|
|
}
|
|
|
|
// fail if first output is not a pointer to struct
|
|
structOutputPtr := fnt.Out(0)
|
|
if structOutputPtr.Kind() != reflect.Ptr {
|
|
return ErrMissingParamOutput
|
|
}
|
|
|
|
structOutput := structOutputPtr.Elem()
|
|
if structOutput.Kind() != reflect.Struct {
|
|
return ErrMissingParamOutput
|
|
}
|
|
|
|
// fail on invalid output
|
|
for name, ptype := range s.Output {
|
|
field, exists := structOutput.FieldByName(name)
|
|
if !exists {
|
|
return fmt.Errorf("%s: %w", name, ErrMissingOutputFromConfig)
|
|
}
|
|
|
|
// ignore types evalutating to nil
|
|
if ptype == nil {
|
|
continue
|
|
}
|
|
|
|
if !ptype.ConvertibleTo(field.Type) {
|
|
return fmt.Errorf("%s: %w (%s instead of %s)", name, ErrWrongOutputTypeFromConfig, field.Type, ptype)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|