-
Notifications
You must be signed in to change notification settings - Fork 3
/
error.go
251 lines (198 loc) · 4.35 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
package binder
import (
"bytes"
"fmt"
"io/ioutil"
"strconv"
"strings"
"github.com/alecthomas/chroma/quick"
"github.com/fatih/color"
lua "github.com/yuin/gopher-lua"
)
const (
// errorLinesBefore lines before problem line
errorLinesBefore = 5
// errorLinesBefore lines after problem line
errorLinesAfter = 5
)
type errSourceHandler func(problem int) *source
type line struct {
number int
problem bool
code string
}
const (
errBgColor = color.BgRed
errFgColor = color.FgWhite
numberFgColor = color.FgHiBlack
numberBgColor = color.BgBlack
)
func (l *line) str(numbers, len int) string {
numberBg := numberBgColor
line := l.codeString(len)
if l.problem {
numberBg = errBgColor
line = color.New(errBgColor, errFgColor).Sprintf("%s", line)
} else {
line = highlight(line)
}
number := color.New(numberBg, numberFgColor).Sprintf("%s ", l.numberString(numbers))
return number + line
}
func (l *line) numberString(pad int) string {
output := fmt.Sprintf("%d", l.number)
pad -= len(output)
if pad <= 0 {
return output
}
return fmt.Sprintf("%s%s", strings.Repeat(" ", pad), output)
}
func (l *line) codeString(pad int) string {
output := l.code
pad -= len(output)
if pad <= 0 {
return output
}
return fmt.Sprintf("%s%s", output, strings.Repeat(" ", pad))
}
type source struct {
lines []*line
}
func (s *source) problem() string {
output := make([]string, len(s.lines))
numbers, len := s.maxLengths()
for i, l := range s.lines {
output[i] = l.str(numbers, len)
}
return strings.Join(output, "\n")
}
func (s *source) maxLengths() (int, int) {
n := 0
l := 0
for _, line := range s.lines {
nl := len(fmt.Sprintf("%d", line.number))
if nl > n {
n = nl
}
ll := len(line.code)
if ll > l {
l = ll
}
}
return n, l
}
func newSource(code string, problem int) *source {
l := strings.Split(code, "\n")
count := len(l)
lines := make([]*line, count)
for i, v := range l {
lines[i] = &line{
number: i + 1,
problem: i+1 == problem,
code: strings.TrimSpace(v),
}
}
length := errorLinesBefore + errorLinesAfter + 1
if length <= count {
before := problem - errorLinesBefore
after := problem + errorLinesAfter
if before < 0 {
before = 0
after = before + length
}
if after > count-1 {
after = count - 1
before = after - length
}
if before > 0 {
lines = lines[before-1 : after]
}
}
return &source{
lines: lines,
}
}
// Error error object
type Error struct {
error string
problem int
source *source
}
// Error returns error string
func (e *Error) Error() string {
if e.problem >= 0 {
return fmt.Sprintf("Line %d: %s", e.problem, e.error)
}
return e.error
}
// Source returns problem source code as string
func (e *Error) Source() string {
return e.source.problem()
}
// Print prints problem source code
func (e *Error) Print() {
color.New(color.FgHiRed).Println(e.Error())
fmt.Println()
fmt.Println(e.Source())
}
func newError(err error, h errSourceHandler) error {
switch err.(type) {
case *lua.ApiError:
e := err.(*lua.ApiError)
var (
problem = -1
text = e.Error()
)
if e.Type == lua.ApiErrorSyntax {
text, problem = parseSyntaxError(e.Object.String())
} else {
p := strings.Split(e.Object.String(), ":")
c := len(p)
if c > 1 {
if v, err := strconv.Atoi(p[1]); err == nil {
problem = v
}
}
if c > 2 {
text = strings.Trim(strings.Join(p[2:], ":"), " ")
}
}
return &Error{
error: text,
problem: problem,
source: h(problem),
}
}
return err
}
func parseSyntaxError(errorText string) (string, int) {
var (
problem = -1
text = errorText
)
if strings.Contains(errorText, " at EOF:") {
problem = 0
text = strings.TrimSpace(strings.Split(errorText, ":")[1]) + " at EOF"
return text, problem
}
parts := strings.Split(errorText, " near ")
if len(parts) == 2 {
text = strings.Join(strings.Fields(strings.TrimSuffix(parts[1], "\n")), " ")
where := strings.Split(strings.TrimSuffix(strings.ReplaceAll(parts[0], "<string> line:", ""), ")"), "(column:")
if v, err := strconv.Atoi(where[0]); err == nil {
problem = v
}
}
return text, problem
}
func highlight(s string) string {
var buf bytes.Buffer
if err := quick.Highlight(&buf, s, "lua", "terminal", "solarized-dark"); err != nil {
return s
}
b, err := ioutil.ReadAll(&buf)
if err != nil {
return s
}
return string(b)
}