-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathlex.go
229 lines (194 loc) · 4.19 KB
/
lex.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
package crossplane
import (
"bufio"
"io"
"strings"
)
type ngxToken struct {
Value string
Line int
IsQuoted bool
Error error
}
type charLine struct {
char string
line int
}
func lex(reader io.Reader) chan ngxToken {
return balanceBraces(tokenize(reader))
}
func balanceBraces(tokens chan ngxToken) chan ngxToken {
c := make(chan ngxToken)
go func() {
depth := 0
line := 0
for t := range tokens {
line = t.Line
if t.Value == "}" && !t.IsQuoted {
depth--
} else if t.Value == "{" && !t.IsQuoted {
depth++
}
// raise error if we ever have more right braces than left
if depth < 0 {
c <- ngxToken{
Error: ParseError{
what: `unexpected "}"`,
line: &line,
},
}
close(c)
return
}
c <- t
}
// raise error if we have less right braces than left at EOF
if depth > 0 {
c <- ngxToken{
Error: ParseError{
what: `unexpected end of file, expecting "}"`,
line: &line,
},
}
}
close(c)
}()
return c
}
func tokenize(reader io.Reader) chan ngxToken {
c := make(chan ngxToken)
go func() {
var ok bool
var token string
var tokenLine int
it := lineCount(escapeChars(readChars(reader)))
for cl := range it {
// handle whitespace
if isSpace(cl.char) {
// if token complete yield it and reset token buffer
if len(token) > 0 {
c <- ngxToken{Value: token, Line: tokenLine, IsQuoted: false}
token = ""
}
// disregard until char isn't a whitespace character
for isSpace(cl.char) {
if cl, ok = <-it; !ok {
break
}
}
}
// if starting comment
if len(token) == 0 && cl.char == "#" {
lineAtStart := cl.line
for !strings.HasSuffix(cl.char, "\n") {
token += cl.char
if cl, ok = <-it; !ok {
break
}
}
c <- ngxToken{Value: token, Line: lineAtStart, IsQuoted: false}
token = ""
continue
}
if len(token) == 0 {
tokenLine = cl.line
}
// handle parameter expansion syntax (ex: "${var[@]}")
if len(token) > 0 && strings.HasSuffix(token, "$") && cl.char == "{" {
for !strings.HasSuffix(token, "}") && !isSpace(cl.char) {
token += cl.char
if cl, ok = <-it; !ok {
break
}
}
}
// if a quote is found, add the whole string to the token buffer
if cl.char == `"` || cl.char == "'" {
// if a quote is inside a token, treat it like any other char
if len(token) > 0 {
token += cl.char
continue
}
quote := cl.char
if cl, ok = <-it; !ok {
break
}
for cl.char != quote {
if cl.char == "\\"+quote {
token += quote
} else {
token += cl.char
}
if cl, ok = <-it; !ok {
break
}
}
// True because this is in quotes
c <- ngxToken{Value: token, Line: tokenLine, IsQuoted: true}
token = ""
continue
}
// handle special characters that are treated like full tokens
if cl.char == "{" || cl.char == "}" || cl.char == ";" {
// if token complete yield it and reset token buffer
if len(token) > 0 {
c <- ngxToken{Value: token, Line: tokenLine, IsQuoted: false}
token = ""
}
// this character is a full token so yield it now
c <- ngxToken{Value: cl.char, Line: cl.line, IsQuoted: false}
continue
}
// append char to the token buffer
token += cl.char
}
if token != "" {
c <- ngxToken{Value: token, Line: tokenLine, IsQuoted: false}
}
close(c)
}()
return c
}
func readChars(reader io.Reader) chan string {
c := make(chan string)
go func() {
scanner := bufio.NewScanner(reader)
scanner.Split(bufio.ScanRunes)
for scanner.Scan() {
c <- scanner.Text()
}
close(c)
}()
return c
}
func lineCount(chars chan string) chan charLine {
c := make(chan charLine)
go func() {
line := 1
for char := range chars {
if strings.HasSuffix(char, "\n") {
line++
}
c <- charLine{char: char, line: line}
}
close(c)
}()
return c
}
func escapeChars(chars chan string) chan string {
c := make(chan string)
go func() {
for char := range chars {
if char == "\\" {
char += <-chars
}
// Skip carriage return characters.
if char == "\r" || char == "\\\r" {
continue
}
c <- char
}
close(c)
}()
return c
}