-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.go
453 lines (383 loc) · 11.5 KB
/
parser.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
package json2ast
import (
"errors"
)
type AstType uint8
const (
Object AstType = iota
Array
Literal
)
type nonTerminal uint8
const (
parser nonTerminal = iota
element
array
elements
object
members
)
var firstSet = map[nonTerminal]map[tokenType]bool {
element: {LeftBrace: true, LeftBracket: true, String: true, Number: true, Boolean: true, Null: true},
array: {LeftBrace: true, LeftBracket: true, RightBracket: true ,String: true, Number: true, Boolean: true, Null: true},
elements: {RightBracket: true, Comma: true},
object: {RightBrace: true, String: true},
members: {RightBrace: true, Comma: true},
}
type literalAst jsonToken
type JsonAst struct {
ObjectAst map[string]JsonAst
ArrayAst []JsonAst
LiteralAst literalAst
Typ AstType
}
var cursor int
var jts []jsonToken
var jerrs []jsonError
func Parser(source string) (JsonAst, []jsonError) {
jts, jerrs = tokenize(source)
if len(jerrs) != 0 || len(jts) == 0 {
return JsonAst{}, jerrs
}
cursor = 0
ast := parseElement(parser)
// expected end of json
if cursor < len(jts) {
jerrs = append(jerrs, jsonError{EndOfJsonExpected, jts[cursor].Loc})
}
if len(jerrs) != 0 {
ast = JsonAst{}
}
return ast, jerrs
}
func getToken() (jsonToken, error) {
var token jsonToken
if cursor < len(jts) {
token = jts[cursor]
cursor++
return token, nil
}
return token, errors.New("overstep")
}
func goPanic(nT nonTerminal, syncTokenTypes ...tokenType) (bool, bool, jsonToken) {
var sync = false
var first = false
var token jsonToken
var err error
for token, err = getToken(); err == nil; token, err = getToken() {
if firstSet[nT][token.Typ] {
first = true
break
}
for _, stt := range syncTokenTypes {
if token.Typ == stt {
sync = true
break // break the closest for
}
}
if sync { break }
}
return sync, first, token
}
func parseElement(caller nonTerminal) JsonAst {
token, err := getToken()
if err != nil {
jerrs = append(jerrs, jsonError{ValueExpected, location{-1, -1}})
return JsonAst{}
}
if firstSet[element][token.Typ] {
return doParseElement(token)
}
if caller == parser {
jerrs = append(jerrs, jsonError{ValueExpected, token.Loc})
_, first, token := goPanic(element)
if first { _ = doParseElement(token) }
return JsonAst{}
}
if caller == elements {
if token.Typ == RightBrace || token.Typ == Colon {
jerrs = append(jerrs, jsonError{ValueExpected, token.Loc})
sync, first, token := goPanic(element, RightBracket, Comma)
if sync { cursor-- } // cursor go back to the Comma or RightBracket
if first { _ = doParseElement(token) }
return JsonAst{}
}
cursor-- // cursor go back to the Comma or RightBracket
if token.Typ == Comma { // Comma
jerrs = append(jerrs, jsonError{ValueExpected, token.Loc})
} else { // RightBracket
jerrs = append(jerrs, jsonError{TrailingComma, jts[cursor-1].Loc}) // Trailing comma
}
return JsonAst{}
}
if caller == object || caller == members {
jerrs = append(jerrs, jsonError{ValueExpected, token.Loc})
if token.Typ == RightBracket || token.Typ == Colon {
sync, first, token := goPanic(element, RightBrace, Comma)
if sync { cursor-- } // cursor go back to the Comma or RightBrace
if first { _ = doParseElement(token) }
return JsonAst{}
}
cursor-- // cursor go back to the Comma or RightBrace
return JsonAst{}
}
return JsonAst{}
}
func doParseElement(token jsonToken) JsonAst {
var ast JsonAst
if token.Typ == LeftBrace {
ast.ObjectAst = parseObject()
ast.Typ = Object
} else if token.Typ == LeftBracket {
ast.ArrayAst = parseArray()
ast.Typ = Array
} else {
ast.LiteralAst = literalAst(token)
ast.Typ = Literal
}
return ast
}
func parseObject() map[string]JsonAst {
token, err := getToken()
if err != nil {
jerrs = append(jerrs, jsonError{PropertyOrClosingBraceExpected, location{-1, -1}})
return nil
}
if token.Typ == RightBrace {
return map[string]JsonAst{}
}
if token.Typ == String {
var objAst = doParseMember(token)
if isNextRightBrace() { return objAst }
return nil
}
jerrs = append(jerrs, jsonError{PropertyOrClosingBraceExpected, token.Loc})
cursor-- // for this token may also be sync tokens Comma or Colon
sync, first, token := goPanic(object, Comma, Colon)
if first {
if token.Typ == String {
_ = doParseMember(token)
_ = isNextRightBrace()
} // else RightBrace
return nil
}
if sync {
if token.Typ == Comma {
cursor-- // cursor go back to the Comma
} else { // Colon
parseElement(object)
}
_ = parseObjMembers()
_ = isNextRightBrace()
return nil
}
return nil
}
func parseObjMembers() map[string]JsonAst {
token, err := getToken()
if err != nil {
jerrs = append(jerrs, jsonError{CommaOrClosingBraceExpected, location{-1, -1}})
return nil
}
if firstSet[members][token.Typ] {
return doParseObjMembers(token)
}
if token.Typ == String {
jerrs = append(jerrs, jsonError{CommaExpected, token.Loc})
_ = doParseMember(token)
return nil
}
jerrs = append(jerrs, jsonError{CommaOrClosingBraceExpected, token.Loc})
sync, first, token := goPanic(members, String)
if first {
_ = doParseObjMembers(token)
return nil
}
if sync {
_ = doParseMember(token)
return nil
}
return nil
}
func doParseObjMembers(token jsonToken) map[string]JsonAst {
if token.Typ == RightBrace {
cursor-- // ɛ
return map[string]JsonAst{}
}
if token.Typ == Comma {
token, err := getToken()
if err != nil {
jerrs = append(jerrs, jsonError{PropertyExpected, location{-1, -1}})
return nil
}
if token.Typ == String {
return doParseMember(token)
}
if token.Typ == Colon {
cursor-- // pretend to insert a String
jerrs = append(jerrs, jsonError{PropertyExpected, token.Loc})
_ = doParseMember(jsonToken{Val: "dummy"})
return nil
}
if token.Typ == Comma {
jerrs = append(jerrs, jsonError{PropertyExpected, token.Loc})
cursor-- // cursor go back to the Comma
_ = parseObjMembers()
return nil
}
if token.Typ == RightBrace {
cursor-- // cursor go back to the RightBrace
jerrs = append(jerrs, jsonError{TrailingComma, jts[cursor-1].Loc}) // Trailing comma
return nil
}
// other cases
jerrs = append(jerrs, jsonError{PropertyExpected, token.Loc})
sync, first, token := goPanic(members, String, Colon)
if first {
cursor-- // cursor go back to the Comma or RightBrace
_ = parseObjMembers()
return nil
}
if sync {
if token.Typ == String {
_ = doParseMember(token)
return nil
} else { // Colon
cursor-- // pretend to insert a string key
_ = doParseMember(jsonToken{Val: "dummy"})
return nil
}
}
return nil
}
return nil
}
func doParseMember(token jsonToken) map[string]JsonAst {
var objAst = make(map[string]JsonAst)
var key = token.Val
token, err := getToken()
if err != nil {
jerrs = append(jerrs, jsonError{ColonExpected, location{-1, -1}})
return nil
}
if token.Typ == Colon {
objAst[key] = parseElement(object)
others := parseObjMembers()
for k, v := range others {
objAst[k] = v
}
return objAst
}
jerrs = append(jerrs, jsonError{ColonExpected, token.Loc})
if token.Typ == Comma {
cursor-- // cursor go back to the Comma
_ = parseObjMembers()
return nil
}
if token.Typ != Colon {
cursor-- // pretend to insert a Colon
parseElement(object)
_ = parseObjMembers()
return nil
}
return nil
}
func isNextRightBrace() bool {
token, err := getToken()
if err != nil || token.Typ != RightBrace {
if err != nil {
jerrs = append(jerrs, jsonError{CommaOrClosingBraceExpected, location{-1, -1}})
} else {
jerrs = append(jerrs, jsonError{CommaOrClosingBraceExpected, token.Loc})
}
return false
}
return true
}
func parseArray() []JsonAst {
token, err := getToken()
if err != nil {
jerrs = append(jerrs, jsonError{CommaOrClosingBracketExpected, location{-1, -1}})
return nil
}
if firstSet[array][token.Typ] {
return doParseArray(token)
}
jerrs = append(jerrs, jsonError{ValueExpected, token.Loc})
cursor-- // for this token may also be sync token Comma
sync, first, token := goPanic(array, Comma)
if first {
_ = doParseArray(token)
return nil
}
if sync {
cursor-- // cursor go back to the Comma
_ = parseAryElements()
_ = isNextRightBracket()
return nil
}
return nil
}
func doParseArray(token jsonToken) []JsonAst {
var arrayAst = make([]JsonAst, 0)
if token.Typ == RightBracket {
return arrayAst
}
cursor-- // cursor back to the "element"
arrayAst = append(arrayAst, parseElement(array))
arrayAst = append(arrayAst, parseAryElements()...)
if isNextRightBracket() {
return arrayAst
}
return nil
}
func isNextRightBracket() bool {
token, err := getToken()
if err != nil || token.Typ != RightBracket {
if err != nil {
jerrs = append(jerrs, jsonError{CommaOrClosingBracketExpected, location{-1, -1}})
} else {
jerrs = append(jerrs, jsonError{CommaOrClosingBracketExpected, token.Loc})
}
return false
}
return true
}
func parseAryElements() []JsonAst {
token, err := getToken()
if err != nil {
jerrs = append(jerrs, jsonError{CommaOrClosingBracketExpected, location{-1, -1}})
return nil
}
if token.Typ == RightBracket {
cursor-- // ɛ
return nil
}
if token.Typ == Comma {
var arrayAst = make([]JsonAst, 0)
arrayAst = append(arrayAst, parseElement(elements))
arrayAst = append(arrayAst, parseAryElements()...)
return arrayAst
}
jerrs = append(jerrs, jsonError{CommaOrClosingBracketExpected, token.Loc})
if firstSet[element][token.Typ] {
cursor-- // cursor back to the "element"
_ = parseElement(elements)
_ = parseAryElements()
return nil
}
if token.Typ == RightBrace || token.Typ == Colon {
_, first, token := goPanic(elements)
if first {
if token.Typ == RightBracket {
cursor-- // cursor back to the RightBracket
return nil
} else { // Comma
_ = parseElement(elements)
_ = parseAryElements()
return nil
}
}
}
return nil
}