|
|
|
@@ -8,26 +8,27 @@ import (
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type Error struct {
|
|
|
|
|
msg string
|
|
|
|
|
code int64
|
|
|
|
|
Code int64
|
|
|
|
|
Msg string
|
|
|
|
|
StackTrace string
|
|
|
|
|
|
|
|
|
|
collection string
|
|
|
|
|
index string
|
|
|
|
|
stackTrace string
|
|
|
|
|
err error // Wrapped error
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewErr(code int64, msg string) *Error {
|
|
|
|
|
return &Error{
|
|
|
|
|
msg: msg,
|
|
|
|
|
code: code,
|
|
|
|
|
Code: code,
|
|
|
|
|
Msg: msg,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Error) Error() string {
|
|
|
|
|
if e.collection != "" || e.index != "" {
|
|
|
|
|
return fmt.Sprintf(`[%d] (%s/%s) %s`, e.code, e.collection, e.index, e.msg)
|
|
|
|
|
return fmt.Sprintf(`[%d] (%s/%s) %s`, e.Code, e.collection, e.index, e.Msg)
|
|
|
|
|
} else {
|
|
|
|
|
return fmt.Sprintf("[%d] %s", e.code, e.msg)
|
|
|
|
|
return fmt.Sprintf("[%d] %s", e.Code, e.Msg)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -36,11 +37,15 @@ func (e *Error) Is(rhs error) bool {
|
|
|
|
|
if !ok {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
return e.code == e2.code
|
|
|
|
|
return e.Code == e2.Code
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Error) Unwrap() error {
|
|
|
|
|
return e.err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Error) WithErr(err error) *Error {
|
|
|
|
|
if e2, ok := err.(*Error); ok && e2.code == e.code {
|
|
|
|
|
if e2, ok := err.(*Error); ok && e2.Code == e.Code {
|
|
|
|
|
return e2
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -49,18 +54,11 @@ func (e *Error) WithErr(err error) *Error {
|
|
|
|
|
return e2
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Error) Unwrap() error {
|
|
|
|
|
if e.err != nil {
|
|
|
|
|
return e.err
|
|
|
|
|
}
|
|
|
|
|
return e
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Error) WithMsg(msg string, args ...any) *Error {
|
|
|
|
|
err := *e
|
|
|
|
|
err.msg += ": " + fmt.Sprintf(msg, args...)
|
|
|
|
|
if len(err.stackTrace) == 0 {
|
|
|
|
|
err.stackTrace = string(debug.Stack())
|
|
|
|
|
err.Msg += ": " + fmt.Sprintf(msg, args...)
|
|
|
|
|
if len(err.StackTrace) == 0 {
|
|
|
|
|
err.StackTrace = string(debug.Stack())
|
|
|
|
|
}
|
|
|
|
|
return &err
|
|
|
|
|
}
|
|
|
|
@@ -78,16 +76,16 @@ func (e *Error) WithIndex(s string) *Error {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Error) msgTruncacted() string {
|
|
|
|
|
if len(e.msg) > 255 {
|
|
|
|
|
return e.msg[:255]
|
|
|
|
|
if len(e.Msg) > 255 {
|
|
|
|
|
return e.Msg[:255]
|
|
|
|
|
}
|
|
|
|
|
return e.msg
|
|
|
|
|
return e.Msg
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Error) Write(w io.Writer) error {
|
|
|
|
|
msg := e.msgTruncacted()
|
|
|
|
|
|
|
|
|
|
if err := binary.Write(w, binary.LittleEndian, e.code); err != nil {
|
|
|
|
|
if err := binary.Write(w, binary.LittleEndian, e.Code); err != nil {
|
|
|
|
|
return IO.WithErr(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -103,7 +101,7 @@ func (e *Error) Read(r io.Reader) error {
|
|
|
|
|
size uint8
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
if err := binary.Read(r, binary.LittleEndian, &e.code); err != nil {
|
|
|
|
|
if err := binary.Read(r, binary.LittleEndian, &e.Code); err != nil {
|
|
|
|
|
return IO.WithErr(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -116,6 +114,6 @@ func (e *Error) Read(r io.Reader) error {
|
|
|
|
|
return IO.WithErr(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
e.msg = string(msgBuf)
|
|
|
|
|
e.Msg = string(msgBuf)
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|