-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpre_parse_error.go
81 lines (63 loc) · 1.37 KB
/
pre_parse_error.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
package hype
import (
"encoding/json"
"errors"
"fmt"
"path/filepath"
"strings"
)
type PreParseError struct {
Err error
Contents []byte
Filename string
Root string
PreParser any
}
func (e PreParseError) MarshalJSON() ([]byte, error) {
mm := map[string]any{
"contents": string(e.Contents),
"error": errForJSON(e.Err),
"filename": e.Filename,
"pre_parser": toType(e.PreParser),
"root": e.Root,
"type": toType(e),
}
return json.MarshalIndent(mm, "", " ")
}
func (e PreParseError) Error() string {
sb := strings.Builder{}
var lines []string
fp := filepath.Join(e.Root, e.Filename)
if len(fp) > 0 {
lines = append(lines, fmt.Sprintf("filepath: %s", fp))
}
if e.PreParser != nil {
lines = append(lines, fmt.Sprintf("pre parser: %s", toType(e.PreParser)))
}
if e.Err != nil {
lines = append(lines, fmt.Sprintf("pre-parse error: %s", e.Err))
}
sb.WriteString(strings.Join(lines, "\n"))
s := sb.String()
return strings.TrimSpace(s)
}
func (e PreParseError) Unwrap() error {
if _, ok := e.Err.(unwrapper); ok {
return errors.Unwrap(e.Err)
}
return e.Err
}
func (e PreParseError) As(target any) bool {
ex, ok := target.(*PreParseError)
if !ok {
return false
}
(*ex) = e
return true
}
func (e PreParseError) Is(target error) bool {
if _, ok := target.(PreParseError); ok {
return true
}
return false
}