-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliterals.go
288 lines (249 loc) · 6.17 KB
/
literals.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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
package pars
import (
"fmt"
"strconv"
"github.com/go-ascii/ascii"
)
func convertInt(state *State) (int, error) {
p, _ := Trail(state)
return strconv.Atoi(string(p))
}
func convertNumber(state *State) (float64, error) {
p, _ := Trail(state)
return strconv.ParseFloat(string(p), 64)
}
// Int will match an integer string and return its numerical representation.
// An integer is defined to be as follows in EBNF:
//
// zero = `0`
// non-zero = `1` | `2` | `3` | `4` | `5` | `6` | `7` | `8` | `9`
// digit = zero | non-zero
// integer = [ ( `-` | `+` ) ], zero | digit, { digit }
//
// This implementation is optimized so the parser will first scan as far as
// possible to match a valid integer and then retrieve a block of bytes and
// convert it to an `int` via strconv.Atoi.
func Int(state *State, result *Result) error {
// Scan forwards from the current position.
state.Push()
c, err := Next(state)
if err != nil {
return NewNestedError("Int", err)
}
// Test the first byte for a possible sign.
if c == '-' || c == '+' {
state.Advance()
c, err = Next(state)
if err != nil {
return NewNestedError("Int", err)
}
}
// The byte is not a digit so return an error.
if !ascii.IsDigit(c) {
state.Pop()
return NewError("expected an integer", state.Position())
}
// The byte is a `0` so immediately return a 0.
if c == '0' {
state.Advance()
state.Drop()
result.SetValue(0)
return nil
}
// Continually match digits.
for err == nil && ascii.IsDigit(c) {
state.Advance()
c, err = Next(state)
}
n, err := convertInt(state)
if err != nil {
return err
}
result.SetValue(n)
return nil
}
// Number will match a floating point number.
// A number is defined to be as follows in EBNF:
//
// zero = `0`
// non-zero = `1` | `2` | `3` | `4` | `5` | `6` | `7` | `8` | `9`
// digit = zero | non-zero
// integer = [ ( `-` | `+` ) ], zero | digit, { digit }
// fraction = `.`, digit, { digit }
// exponent = ( `e` | `E` ), [ ( `-` | `+` ) ], integer
// number = [ ( `-` | `+` ) ], integer, [ fraction ], [ exponent ]
//
// This implementation is optimized so the parser will first scan as far as
// possible to match a valid number and then retrieve a block of bytes and
// convert it to a `float64` via strconv.ParseFloat.
func Number(state *State, result *Result) error {
// Scan forwards from the current position.
state.Push()
c, err := Next(state)
if err != nil {
return NewNestedError("Number", err)
}
// Test the first byte for a possible sign.
if c == '-' || c == '+' {
state.Advance()
c, err = Next(state)
if err != nil {
state.Pop()
return NewNestedError("Number", err)
}
}
// Test the byte for a digit.
if !ascii.IsDigit(c) {
state.Pop()
return NewError("expected a number", state.Position())
}
// Process the integer part.
// Advance more than once if the first digit is not zero.
if c == '0' {
state.Advance()
c, err = Next(state)
} else {
state.Advance()
c, err = Next(state)
// Continually match digits.
for err == nil && ascii.IsDigit(c) {
state.Advance()
c, err = Next(state)
}
}
// Process the fraction part.
if err == nil && c == '.' {
// The parser may need to backtrack to this position.
state.Push()
state.Advance()
c, err = Next(state)
if err != nil {
state.Pop()
n, err := convertNumber(state)
if err != nil {
return err
}
result.SetValue(n)
return nil
}
if !ascii.IsDigit(c) {
state.Pop()
n, err := convertNumber(state)
if err != nil {
return err
}
result.SetValue(n)
return nil
}
state.Advance()
c, err = Next(state)
// Continually match digits.
for err == nil && ascii.IsDigit(c) {
state.Advance()
c, err = Next(state)
}
// Reached the full extent of the fraction.
state.Drop()
}
// Process the exponent part.
if err == nil && (c == 'e' || c == 'E') {
// The parser may need to backtrack to this position.
state.Push()
state.Advance()
c, err = Next(state)
if err != nil {
state.Pop()
n, err := convertNumber(state)
if err != nil {
return err
}
result.SetValue(n)
return nil
}
// Test the byte for a possible positive or negative sign.
if c == '-' || c == '+' {
state.Advance()
c, err = Next(state)
if err != nil {
state.Pop()
n, err := convertNumber(state)
if err != nil {
return err
}
result.SetValue(n)
return nil
}
}
// There are no digits so backtrack and return.
if !ascii.IsDigit(c) {
state.Pop()
n, err := convertNumber(state)
if err != nil {
return err
}
result.SetValue(n)
return nil
}
state.Advance()
c, err = Next(state)
// Continually match digits.
for err == nil && ascii.IsDigit(c) {
state.Advance()
c, err = Next(state)
}
// Reached the full extent of the exponent.
state.Drop()
}
n, err := convertNumber(state)
if err != nil {
return err
}
result.SetValue(n)
return nil
}
// Between creates a Parser which will attempt to match a sequence of bytes
// between the given bytes. If a backslash appears in the middle of the string,
// the byte immediately following will be skipped.
func Between(l, r byte) Parser {
name := fmt.Sprintf("Between(%s, %s)", ascii.Rep(l), ascii.Rep(r))
whatL := fmt.Sprintf("expected opening `%c`", l)
whatR := fmt.Sprintf("expected closing `%c`", r)
return func(state *State, result *Result) error {
state.Push()
c, err := Next(state)
if err != nil {
state.Pop()
return NewNestedError(name, err)
}
if c != l {
state.Pop()
return NewError(whatL, state.Position())
}
state.Advance()
c, err = Next(state)
for err == nil && c != r {
if c == '\\' {
state.Advance()
_, err = Next(state)
if err != nil {
state.Pop()
return NewError(whatR, state.Position())
}
}
state.Advance()
c, err = Next(state)
}
if err != nil {
state.Pop()
return NewError(whatR, state.Position())
}
p, _ := Trail(state)
Skip(state, 1)
result.SetToken(p[1:])
return nil
}
}
// Quoted creates a Parser which will attempt to match a sequence of bytes
// flanked by the given byte. This Parser is equivalent to the following:
// Between(c, c)
func Quoted(c byte) Parser { return Between(c, c) }