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
|
// Package parser parses conf language.
package parser
// This file is part of conf library.
// Copyright (C) 2026 Alexander NeonXP Kiryukhin <i@neonxp.ru>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
import (
"bytes"
"errors"
"fmt"
"strings"
)
type ErrorLister interface {
Errors() []error
}
func (e errList) Errors() []error {
return e
}
// ParserError is the public interface to errors of type parserError
type ParserError interface {
Error() string
InnerError() error
Pos() (int, int, int)
Expected() []string
}
func (p *parserError) InnerError() error {
return p.Inner
}
func (p *parserError) Pos() (line, col, offset int) {
return p.pos.line, p.pos.col, p.pos.offset
}
func (p *parserError) Expected() []string {
return p.expected
}
func CaretErrors(err error, input string) error {
if el, ok := err.(ErrorLister); ok {
var buffer bytes.Buffer
for _, e := range el.Errors() {
if err := caretError(e, input); err != nil {
buffer.WriteString(err.Error())
}
}
return errors.New(buffer.String())
}
return err
}
func caretError(err error, input string) error {
if parserErr, ok := err.(ParserError); ok {
_, col, off := parserErr.Pos()
line := extractLine(input, 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
}
}
return fmt.Errorf("%s\n%s\n%w", line, strings.Repeat(" ", pos)+"^", err)
}
return err
}
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]
}
|