mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
50 lines
1.3 KiB
Go
50 lines
1.3 KiB
Go
|
package core
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"github.com/pkg/errors"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ErrMissedArgument = errors.New("missed argument")
|
||
|
ErrInvalidArgument = errors.New("invalid argument")
|
||
|
ErrInvalidType = errors.New("invalid type")
|
||
|
ErrInvalidOperation = errors.New("invalid operation")
|
||
|
ErrNotFound = errors.New("not found")
|
||
|
ErrNotUnique = errors.New("not unique")
|
||
|
ErrTerminated = errors.New("operation is terminated")
|
||
|
ErrUnexpected = errors.New("unexpected error")
|
||
|
ErrNotImplemented = errors.New("not implemented")
|
||
|
)
|
||
|
|
||
|
const typeErrorTemplate = "expected %s, but got %s"
|
||
|
|
||
|
func SourceError(src SourceMap, err error) error {
|
||
|
return errors.Errorf("%s %s", err.Error(), src.String())
|
||
|
}
|
||
|
|
||
|
func TypeError(actual Type, expected ...Type) error {
|
||
|
if len(expected) == 0 {
|
||
|
return Error(ErrInvalidType, actual.String())
|
||
|
}
|
||
|
|
||
|
if len(expected) == 1 {
|
||
|
return Error(ErrInvalidType, fmt.Sprintf(typeErrorTemplate, expected, actual))
|
||
|
}
|
||
|
|
||
|
strs := make([]string, len(expected))
|
||
|
|
||
|
for idx, t := range expected {
|
||
|
strs[idx] = t.String()
|
||
|
}
|
||
|
|
||
|
expectedStr := strings.Join(strs, " or ")
|
||
|
|
||
|
return Error(ErrInvalidType, fmt.Sprintf(typeErrorTemplate, expectedStr, actual))
|
||
|
}
|
||
|
|
||
|
func Error(err error, msg string) error {
|
||
|
return errors.Errorf("%s: %s", err.Error(), msg)
|
||
|
}
|