-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherrorx.go
88 lines (76 loc) · 1.83 KB
/
errorx.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Package errorx provides frequently used error constructs in API development, with context
package errorx
import (
"fmt"
"io"
stderrors "errors"
exterrors "emperror.dev/errors"
"github.com/jinzhu/copier"
)
// E defines common error information for inspecting
// and displaying to various format
type E struct {
e error
Code string `json:"code"`
Message string `json:"message"`
}
// New returns stub error E
func New(msg string) *E {
return &E{
e: stderrors.New(msg),
}
}
func (e E) Error() string {
if e.Message != "" {
return e.Message + ": " + e.e.Error()
}
if e.Code != "" {
return fmt.Sprintf("[%s]: %s", e.Code, e.Message)
}
return e.e.Error()
}
type withFormat interface {
Format(fmt.State, rune)
}
// Format calls wrapped error with Format() of its own
// if wrapped error is not nil
func (e E) Format(s fmt.State, verb rune) {
withFormatError, ok := e.e.(withFormat)
if ok {
withFormatError.Format(s, verb)
} else {
io.WriteString(s, e.e.Error())
}
}
func wrap(err error, e *E) *E {
switch typedE := err.(type) {
case E:
copier.Copy(e, &typedE)
case *E:
copier.Copy(e, typedE)
default:
return e
}
return e
}
// Wrap returns an error annotating err with a stack trace
// at the point Wrap is called, and the supplied message.
// If err is nil, Wrap returns nil.
func Wrap(err error, msg string) *E {
return Wrapf(err, msg)
}
// Wrapf returns an error annotating err with a stack trace
// at the point Wrapf is called, and the format specifier.
// If err is nil, Wrapf returns nil.
func Wrapf(err error, format string, args ...interface{}) *E {
if err == nil {
return nil
}
e := wrap(err, &E{})
e.e = exterrors.Wrapf(err, format, args...)
return e
}
// Unwrap returns underlying error: 1st level of nested errors
func (e E) Unwrap() error {
return stderrors.Unwrap(stderrors.Unwrap(e.e))
}