-
Notifications
You must be signed in to change notification settings - Fork 1
/
errors.go
92 lines (79 loc) · 1.69 KB
/
errors.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
// SPDX-FileCopyrightText: 2024 Christoph Mewes
// SPDX-License-Identifier: MIT
package rudi
import (
"errors"
"strings"
"go.xrstf.de/rudi/pkg/lang/parser"
)
// ParseErrors can occur while parsing a Rudi program.
type ParseError struct {
script string
err error
}
var _ error = ParseError{}
// Error returns the underlying parse error.
func (p ParseError) Error() string {
return p.err.Error()
}
// Snippet is the line of the program where the error occurred, marked with a
// caret and the error message in a second line below that.
func (p ParseError) Snippet() string {
var lister parser.ErrorLister
if errors.As(p.err, &lister) {
var buffer strings.Builder
for _, e := range lister.Errors() {
var parserErr parser.ParserError
if !errors.As(e, &parserErr) {
return ""
}
_, col, off := parserErr.Pos()
line := extractLine(p.script, off)
if col >= len(line) {
col = len(line) - 1
} else if col > 0 {
col--
}
if col < 0 {
col = 0
}
pos := col
for _, chr := range line[:col] {
if chr == '\t' {
pos += 7
}
}
buffer.WriteString(line + "\n")
buffer.WriteString(strings.Repeat(" ", pos) + "^")
}
return buffer.String()
}
return ""
}
func extractLine(input string, initPos int) string {
if initPos < 0 {
initPos = 0
}
if initPos >= len(input) && len(input) > 0 {
initPos = len(input) - 1
}
startPos := initPos
endPos := initPos
for ; startPos > 0; startPos-- {
if input[startPos] == '\n' {
if startPos != initPos {
startPos++
break
}
}
}
for ; endPos < len(input); endPos++ {
if input[endPos] == '\n' {
if endPos == initPos {
endPos++
}
break
}
}
return input[startPos:endPos]
}