-
Notifications
You must be signed in to change notification settings - Fork 3
/
error.go
119 lines (101 loc) · 2.65 KB
/
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
* Copyright 2021 National Library of Norway.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package gowarc
import (
"fmt"
"strings"
)
// HeaderFieldError is used for violations of WARC header specification
type HeaderFieldError struct {
fieldName string
msg string
}
func newHeaderFieldError(fieldName string, msg string) *HeaderFieldError {
return &HeaderFieldError{fieldName: fieldName, msg: msg}
}
func newHeaderFieldErrorf(fieldName string, msg string, param ...interface{}) *HeaderFieldError {
return &HeaderFieldError{fieldName: fieldName, msg: fmt.Sprintf(msg, param...)}
}
func (e *HeaderFieldError) Error() string {
if e.fieldName != "" {
return fmt.Sprintf("gowarc: %s at header %s", e.msg, e.fieldName)
} else {
return fmt.Sprintf("gowarc: %s", e.msg)
}
}
// SyntaxError is used for syntactical errors like wrong line endings
type SyntaxError struct {
msg string
line int
wrapped error
}
func newSyntaxError(msg string, pos *position) *SyntaxError {
return &SyntaxError{msg: msg, line: pos.lineNumber}
}
func newWrappedSyntaxError(msg string, pos *position, wrapped error) *SyntaxError {
e := &SyntaxError{msg: msg, wrapped: wrapped}
if pos == nil && wrapped != nil && wrapped.(*SyntaxError).line > 0 {
e.line = wrapped.(*SyntaxError).line
} else {
e.line = pos.lineNumber
}
return e
}
func (e *SyntaxError) Error() string {
s := "gowarc: " + e.msg
if e.line > 0 {
s += fmt.Sprintf(" at line %d", e.line)
}
if e.wrapped != nil {
if v, ok := e.wrapped.(*SyntaxError); ok {
s += ": " + v.msg
} else {
s += ": " + e.wrapped.Error()
}
}
return s
}
func (e *SyntaxError) Unwrap() error {
return e.wrapped
}
type multiErr []error
func (e multiErr) Error() string {
switch len(e) {
case 0:
return ""
case 1:
return e[0].Error()
}
const (
start = "["
sep = ", "
end = "]"
)
n := len(start) + len(end) + (len(sep) * (len(e) - 1))
for i := 0; i < len(e); i++ {
n += len(e[i].Error())
}
var b strings.Builder
b.Grow(n)
b.WriteString(start)
b.WriteString(e[0].Error())
for _, s := range e[1:] {
b.WriteString(sep)
b.WriteString(s.Error())
}
b.WriteString(end)
return b.String()
}