forked from karminski/streaming-json-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lexer.go
1167 lines (1019 loc) · 33.2 KB
/
lexer.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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package streamingjsongo
import (
"fmt"
"strings"
)
type Lexer struct {
JSONContent strings.Builder // input JSON content
PaddingContent strings.Builder // padding content for ignored characters and escape characters, etc.
JSONSegment string // appended JSON segment by the AppendString() method.
TokenStack []int // token stack for input JSON
MirrorTokenStack []int // token stack for auto-completed tokens
}
// new lexer for streaming JSON input
func NewLexer() *Lexer {
return &Lexer{}
}
// get token on the stack top
func (lexer *Lexer) getTopTokenOnStack() int {
tokenStackLen := len(lexer.TokenStack)
if tokenStackLen == 0 {
return TOKEN_EOF
}
return lexer.TokenStack[tokenStackLen-1]
}
// get token on the mirror stack top
func (lexer *Lexer) getTopTokenOnMirrorStack() int {
mirrotTokenStackLen := len(lexer.MirrorTokenStack)
if mirrotTokenStackLen == 0 {
return TOKEN_EOF
}
return lexer.MirrorTokenStack[mirrotTokenStackLen-1]
}
// pop token on the stack top
func (lexer *Lexer) popTokenStack() int {
tokenStackLen := len(lexer.TokenStack)
if tokenStackLen == 0 {
return TOKEN_EOF
}
token := lexer.TokenStack[tokenStackLen-1]
lexer.TokenStack = lexer.TokenStack[:tokenStackLen-1]
return token
}
// pop token on the mirror stack top
func (lexer *Lexer) popMirrorTokenStack() int {
mirrorTokenStackLen := len(lexer.MirrorTokenStack)
if mirrorTokenStackLen == 0 {
return TOKEN_EOF
}
token := lexer.MirrorTokenStack[mirrorTokenStackLen-1]
lexer.MirrorTokenStack = lexer.MirrorTokenStack[:mirrorTokenStackLen-1]
return token
}
// push token into the stack
func (lexer *Lexer) pushTokenStack(token int) {
lexer.TokenStack = append(lexer.TokenStack, token)
}
// push token into the mirror stack
func (lexer *Lexer) pushMirrorTokenStack(token int) {
lexer.MirrorTokenStack = append(lexer.MirrorTokenStack, token)
}
// convert mirror stack token into string
func (lexer *Lexer) dumpMirrorTokenStackToString() string {
var stackInString strings.Builder
for i := len(lexer.MirrorTokenStack) - 1; i >= 0; i-- {
stackInString.WriteString(tokenSymbolMap[lexer.MirrorTokenStack[i]])
}
return stackInString.String()
}
// skip JSON segment by length n
func (lexer *Lexer) skipJSONSegment(n int) {
lexer.JSONSegment = lexer.JSONSegment[n:]
}
// push negative symbol `-` into JSON content
func (lexer *Lexer) pushNegativeIntoJSONContent() {
lexer.JSONContent.WriteByte(TOKEN_NEGATIVE_SYMBOL)
}
// push byte into JSON content by given
func (lexer *Lexer) pushByteIntoPaddingContent(b byte) {
lexer.PaddingContent.WriteByte(b)
}
// append padding content into JSON content
func (lexer *Lexer) appendPaddingContentToJSONContent() {
lexer.JSONContent.WriteString(lexer.PaddingContent.String())
}
// check if padding content is empty
func (lexer *Lexer) havePaddingContent() bool {
return lexer.PaddingContent.Len() > 0
}
// set padding content to empty
func (lexer *Lexer) cleanPaddingContent() {
lexer.PaddingContent.Reset()
}
// lexer match JSON token method, convert JSON segment to JSON token
func (lexer *Lexer) matchToken() (int, byte) {
// segment end
if len(lexer.JSONSegment) == 0 {
return TOKEN_EOF, byte(0)
}
tokenSymbol := lexer.JSONSegment[0]
// check if ignored token
if isIgnoreToken(tokenSymbol) {
lexer.skipJSONSegment(1)
return TOKEN_IGNORED, tokenSymbol
}
// match token
switch tokenSymbol {
case TOKEN_LEFT_BRACKET_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_LEFT_BRACKET, tokenSymbol
case TOKEN_RIGHT_BRACKET_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_RIGHT_BRACKET, tokenSymbol
case TOKEN_LEFT_BRACE_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_LEFT_BRACE, tokenSymbol
case TOKEN_RIGHT_BRACE_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_RIGHT_BRACE, tokenSymbol
case TOKEN_COLON_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_COLON, tokenSymbol
case TOKEN_DOT_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_DOT, tokenSymbol
case TOKEN_COMMA_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_COMMA, tokenSymbol
case TOKEN_QUOTE_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_QUOTE, tokenSymbol
case TOKEN_ESCAPE_CHARACTER_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ESCAPE_CHARACTER, tokenSymbol
case TOKEN_SLASH_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_SLASH, tokenSymbol
case TOKEN_NEGATIVE_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_NEGATIVE, tokenSymbol
case TOKEN_ALPHABET_LOWERCASE_A_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_LOWERCASE_A, tokenSymbol
case TOKEN_ALPHABET_LOWERCASE_B_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_LOWERCASE_B, tokenSymbol
case TOKEN_ALPHABET_LOWERCASE_C_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_LOWERCASE_C, tokenSymbol
case TOKEN_ALPHABET_LOWERCASE_D_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_LOWERCASE_D, tokenSymbol
case TOKEN_ALPHABET_LOWERCASE_E_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_LOWERCASE_E, tokenSymbol
case TOKEN_ALPHABET_LOWERCASE_F_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_LOWERCASE_F, tokenSymbol
case TOKEN_ALPHABET_LOWERCASE_L_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_LOWERCASE_L, tokenSymbol
case TOKEN_ALPHABET_LOWERCASE_N_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_LOWERCASE_N, tokenSymbol
case TOKEN_ALPHABET_LOWERCASE_R_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_LOWERCASE_R, tokenSymbol
case TOKEN_ALPHABET_LOWERCASE_S_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_LOWERCASE_S, tokenSymbol
case TOKEN_ALPHABET_LOWERCASE_T_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_LOWERCASE_T, tokenSymbol
case TOKEN_ALPHABET_LOWERCASE_U_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_LOWERCASE_U, tokenSymbol
case TOKEN_ALPHABET_UPPERCASE_A_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_UPPERCASE_A, tokenSymbol
case TOKEN_ALPHABET_UPPERCASE_B_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_UPPERCASE_B, tokenSymbol
case TOKEN_ALPHABET_UPPERCASE_C_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_UPPERCASE_C, tokenSymbol
case TOKEN_ALPHABET_UPPERCASE_D_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_UPPERCASE_D, tokenSymbol
case TOKEN_ALPHABET_UPPERCASE_E_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_UPPERCASE_E, tokenSymbol
case TOKEN_ALPHABET_UPPERCASE_F_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_ALPHABET_UPPERCASE_F, tokenSymbol
case TOKEN_NUMBER_0_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_NUMBER_0, tokenSymbol
case TOKEN_NUMBER_1_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_NUMBER_1, tokenSymbol
case TOKEN_NUMBER_2_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_NUMBER_2, tokenSymbol
case TOKEN_NUMBER_3_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_NUMBER_3, tokenSymbol
case TOKEN_NUMBER_4_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_NUMBER_4, tokenSymbol
case TOKEN_NUMBER_5_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_NUMBER_5, tokenSymbol
case TOKEN_NUMBER_6_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_NUMBER_6, tokenSymbol
case TOKEN_NUMBER_7_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_NUMBER_7, tokenSymbol
case TOKEN_NUMBER_8_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_NUMBER_8, tokenSymbol
case TOKEN_NUMBER_9_SYMBOL:
lexer.skipJSONSegment(1)
return TOKEN_NUMBER_9, tokenSymbol
default:
lexer.skipJSONSegment(1)
return TOKEN_OTHERS, tokenSymbol
}
}
// append JSON string to current JSON stream content
func (lexer *Lexer) AppendString(str string) error {
return lexer.appendString(str)
}
// append JSON string to current JSON stream content
// this method will traversal all token and generate mirror token for complete full JSON
func (lexer *Lexer) appendString(str string) error {
lexer.JSONSegment = str
for {
token, tokenSymbol := lexer.matchToken()
switch token {
case TOKEN_EOF:
// nothing to do with TOKEN_EOF
case TOKEN_IGNORED:
if lexer.streamStoppedInAString() {
lexer.JSONContent.WriteByte(tokenSymbol)
continue
}
lexer.pushByteIntoPaddingContent(tokenSymbol)
case TOKEN_OTHERS:
// check if json stream stopped with padding content
if lexer.havePaddingContent() {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
case TOKEN_LEFT_BRACKET:
// check if json stream stopped with padding content
if lexer.havePaddingContent() {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
}
lexer.JSONContent.WriteByte(tokenSymbol)
if lexer.streamStoppedInAString() {
continue
}
lexer.pushTokenStack(token)
if lexer.streamStoppedInAnObjectArrayValueStart() {
// pop `n`, `u`, `l`, `l` from mirror stack
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
}
// push `]` into mirror stack
lexer.pushMirrorTokenStack(TOKEN_RIGHT_BRACKET)
case TOKEN_RIGHT_BRACKET:
if lexer.streamStoppedInAString() {
lexer.JSONContent.WriteByte(tokenSymbol)
continue
}
// check if json stream stopped with padding content
if lexer.havePaddingContent() {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// push `]` into stack
lexer.pushTokenStack(token)
// pop `]` from mirror stack
lexer.popMirrorTokenStack()
case TOKEN_LEFT_BRACE:
// check if json stream stopped with padding content
if lexer.havePaddingContent() {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
if lexer.streamStoppedInAString() {
continue
}
lexer.pushTokenStack(token)
if lexer.streamStoppedInAnObjectObjectValueStart() {
// pop `n`, `u`, `l`, `l` from mirror stack
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
}
// push `}` into mirror stack
lexer.pushMirrorTokenStack(TOKEN_RIGHT_BRACE)
case TOKEN_RIGHT_BRACE:
if lexer.streamStoppedInAString() {
lexer.JSONContent.WriteByte(tokenSymbol)
continue
}
// check if json stream stopped with padding content
if lexer.havePaddingContent() {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
}
lexer.JSONContent.WriteByte(tokenSymbol)
// push `}` into stack
lexer.pushTokenStack(token)
// pop `}` from mirror stack
lexer.popMirrorTokenStack()
case TOKEN_QUOTE:
// check if escape quote `\"`
if lexer.streamStoppedWithLeadingEscapeCharacter() {
// push padding escape character `\` into JSON content
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// pop `\` from stack
lexer.popTokenStack()
continue
}
// check if json stream stopped with padding content
if lexer.havePaddingContent() {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
lexer.pushTokenStack(token)
if lexer.streamStoppedInAnArray() {
// push `"` into mirror stack
lexer.pushMirrorTokenStack(TOKEN_QUOTE)
} else if lexer.streamStoppedInAnArrayStringValueEnd() {
// pop `"` from mirror stack
lexer.popMirrorTokenStack()
} else if lexer.streamStoppedInAnObjectKeyStart() {
// check if stopped in key of object's properity or value of object's properity
// push `"`, `:`, `n`, `u`, `l`, `l` into mirror stack
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_L)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_L)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_U)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_N)
lexer.pushMirrorTokenStack(TOKEN_COLON)
lexer.pushMirrorTokenStack(TOKEN_QUOTE)
} else if lexer.streamStoppedInAnObjectKeyEnd() {
// check if stopped in key of object's properity or value of object's properity
// pop `"` from mirror stack
lexer.popMirrorTokenStack()
} else if lexer.streamStoppedInAnObjectStringValueStart() {
// pop `n`, `u`, `l`, `l` from mirror stack
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
// push `"` into mirror stack
lexer.pushMirrorTokenStack(TOKEN_QUOTE)
} else if lexer.streamStoppedInAnObjectValueEnd() {
// pop `"` from mirror stack
lexer.popMirrorTokenStack()
} else {
return fmt.Errorf("invalied quote token in json stream")
}
case TOKEN_COLON:
if lexer.streamStoppedInAString() {
lexer.JSONContent.WriteByte(tokenSymbol)
continue
}
// check if json stream stopped with padding content
if lexer.havePaddingContent() {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
lexer.pushTokenStack(token)
// pop `:` from mirror stack
lexer.popMirrorTokenStack()
case TOKEN_ALPHABET_LOWERCASE_A:
// as hex in unicode
if lexer.streamStoppedInAnStringUnicodeEscape() {
lexer.pushByteIntoPaddingContent(tokenSymbol)
// check if unicode escape is full length
if lexer.PaddingContent.Len() == 6 {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
// pop `\`, `u` from stack
lexer.popTokenStack()
lexer.popTokenStack()
}
continue
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// in a string, just skip token
if lexer.streamStoppedInAString() {
continue
}
// check if `f` in token stack and `a`, `l`, `s`, `e in mirror stack
itIsPartOfTokenFalse := func() bool {
left := []int{
TOKEN_ALPHABET_LOWERCASE_F,
}
right := []int{
TOKEN_ALPHABET_LOWERCASE_E,
TOKEN_ALPHABET_LOWERCASE_S,
TOKEN_ALPHABET_LOWERCASE_L,
TOKEN_ALPHABET_LOWERCASE_A,
}
return matchStack(lexer.TokenStack, left) && matchStack(lexer.MirrorTokenStack, right)
}
if !itIsPartOfTokenFalse() {
continue
}
lexer.pushTokenStack(token)
lexer.popMirrorTokenStack()
case TOKEN_ALPHABET_LOWERCASE_B:
// as hex in unicode
if lexer.streamStoppedInAnStringUnicodeEscape() {
lexer.pushByteIntoPaddingContent(tokenSymbol)
// check if unicode escape is full length
if lexer.PaddingContent.Len() == 6 {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
// pop `\`, `u` from stack
lexer.popTokenStack()
lexer.popTokenStack()
}
continue
}
// \b escape `\`, `b`
if lexer.streamStoppedWithLeadingEscapeCharacter() {
// push padding escape character `\` into JSON content
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// pop `\` from stack
lexer.popTokenStack()
continue
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// in a string, just skip token
if lexer.streamStoppedInAString() {
continue
}
case TOKEN_ALPHABET_LOWERCASE_E:
// as hex in unicode
if lexer.streamStoppedInAnStringUnicodeEscape() {
lexer.pushByteIntoPaddingContent(tokenSymbol)
// check if unicode escape is full length
if lexer.PaddingContent.Len() == 6 {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
// pop `\`, `u` from stack
lexer.popTokenStack()
lexer.popTokenStack()
}
continue
}
// check if in a number, as `e` (exponent) in scientific notation
if lexer.streamStoppedInANumberDecimalPartMiddle() {
lexer.pushByteIntoPaddingContent(tokenSymbol)
continue
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// in a string, just skip token
if lexer.streamStoppedInAString() {
continue
}
// check if `f`, `a`, `l`, `s` in token stack and `e` in mirror stack
itIsPartOfTokenFalse := func() bool {
left := []int{
TOKEN_ALPHABET_LOWERCASE_F,
TOKEN_ALPHABET_LOWERCASE_A,
TOKEN_ALPHABET_LOWERCASE_L,
TOKEN_ALPHABET_LOWERCASE_S,
}
right := []int{
TOKEN_ALPHABET_LOWERCASE_E,
}
return matchStack(lexer.TokenStack, left) && matchStack(lexer.MirrorTokenStack, right)
}
// check if `t`, `r`, `u` in token stack and `e` in mirror stack
itIsPartOfTokenTrue := func() bool {
left := []int{
TOKEN_ALPHABET_LOWERCASE_T,
TOKEN_ALPHABET_LOWERCASE_R,
TOKEN_ALPHABET_LOWERCASE_U,
}
right := []int{
TOKEN_ALPHABET_LOWERCASE_E,
}
return matchStack(lexer.TokenStack, left) && matchStack(lexer.MirrorTokenStack, right)
}
if !itIsPartOfTokenFalse() && !itIsPartOfTokenTrue() {
continue
}
lexer.pushTokenStack(token)
lexer.popMirrorTokenStack()
case TOKEN_ALPHABET_LOWERCASE_F:
// as hex in unicode
if lexer.streamStoppedInAnStringUnicodeEscape() {
lexer.pushByteIntoPaddingContent(tokenSymbol)
// check if unicode escape is full length
if lexer.PaddingContent.Len() == 6 {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
// pop `\`, `u` from stack
lexer.popTokenStack()
lexer.popTokenStack()
}
continue
}
// \f escape `\`, `f`
if lexer.streamStoppedWithLeadingEscapeCharacter() {
// push padding escape character `\` into JSON content
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// pop `\` from stack
lexer.popTokenStack()
continue
}
// check if json stream stopped with padding content, like case `[true , f`
if lexer.havePaddingContent() {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// in a string, just skip token
if lexer.streamStoppedInAString() {
continue
}
// push `f` into stack
lexer.pushTokenStack(token)
if lexer.streamStoppedInAnArray() {
// in array
// push `a`, `l`, `s`, `e`
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_E)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_S)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_L)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_A)
} else {
// in object
// pop `n`, `u`, `l`, `l`
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
// push `a`, `l`, `s`, `e`
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_E)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_S)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_L)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_A)
}
case TOKEN_ALPHABET_LOWERCASE_L:
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// in a string, just skip token
if lexer.streamStoppedInAString() {
continue
}
// check if `f`, `a` in token stack and, `l`, `s`, `e` in mirror stack
itIsPartOfTokenFalse := func() bool {
left := []int{
TOKEN_ALPHABET_LOWERCASE_F,
TOKEN_ALPHABET_LOWERCASE_A,
}
right := []int{
TOKEN_ALPHABET_LOWERCASE_E,
TOKEN_ALPHABET_LOWERCASE_S,
TOKEN_ALPHABET_LOWERCASE_L,
}
return matchStack(lexer.TokenStack, left) && matchStack(lexer.MirrorTokenStack, right)
}
// check if `n`, `u` in token stack and `l`, `l` in mirror stack
itIsPartOfTokenNull1 := func() bool {
left := []int{
TOKEN_ALPHABET_LOWERCASE_N,
TOKEN_ALPHABET_LOWERCASE_U,
}
right := []int{
TOKEN_ALPHABET_LOWERCASE_L,
TOKEN_ALPHABET_LOWERCASE_L,
}
return matchStack(lexer.TokenStack, left) && matchStack(lexer.MirrorTokenStack, right)
}
// check if `n`, `u`, `l` in token stack and `l` in mirror stack
itIsPartOfTokenNull2 := func() bool {
left := []int{
TOKEN_ALPHABET_LOWERCASE_N,
TOKEN_ALPHABET_LOWERCASE_U,
TOKEN_ALPHABET_LOWERCASE_L,
}
right := []int{
TOKEN_ALPHABET_LOWERCASE_L,
}
return matchStack(lexer.TokenStack, left) && matchStack(lexer.MirrorTokenStack, right)
}
if !itIsPartOfTokenFalse() && !itIsPartOfTokenNull1() && !itIsPartOfTokenNull2() {
continue
}
lexer.pushTokenStack(token)
lexer.popMirrorTokenStack()
case TOKEN_ALPHABET_LOWERCASE_N:
// \n escape `\`, `n`
if lexer.streamStoppedWithLeadingEscapeCharacter() {
// push padding escape character `\` into JSON content
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// pop `\` from stack
lexer.popTokenStack()
continue
}
// check if json stream stopped with padding content, like case `[true , n`
if lexer.havePaddingContent() {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// in a string, just skip token
if lexer.streamStoppedInAString() {
continue
}
// push `n`
lexer.pushTokenStack(token)
if lexer.streamStoppedInAnArray() {
// in array, push `u`, `l`, `l`
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_L)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_L)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_U)
} else {
// in object, pop `n`
lexer.popMirrorTokenStack()
}
case TOKEN_ALPHABET_LOWERCASE_R:
// \r escape `\`, `r`
if lexer.streamStoppedWithLeadingEscapeCharacter() {
// push padding escape character `\` into JSON content
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// pop `\` from stack
lexer.popTokenStack()
continue
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// in a string, just skip token
if lexer.streamStoppedInAString() {
continue
}
// check if `t` in token stack and `r`, `u`, `e in mirror stack
itIsPartOfTokenTrue := func() bool {
left := []int{
TOKEN_ALPHABET_LOWERCASE_T,
}
right := []int{
TOKEN_ALPHABET_LOWERCASE_E,
TOKEN_ALPHABET_LOWERCASE_U,
TOKEN_ALPHABET_LOWERCASE_R,
}
return matchStack(lexer.TokenStack, left) && matchStack(lexer.MirrorTokenStack, right)
}
if !itIsPartOfTokenTrue() {
continue
}
lexer.pushTokenStack(token)
lexer.popMirrorTokenStack()
case TOKEN_ALPHABET_LOWERCASE_S:
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// in a string, just skip token
if lexer.streamStoppedInAString() {
continue
}
// check if `f`, `a`, `l` in token stack and `s`, `e in mirror stack
itIsPartOfTokenFalse := func() bool {
left := []int{
TOKEN_ALPHABET_LOWERCASE_F,
TOKEN_ALPHABET_LOWERCASE_A,
TOKEN_ALPHABET_LOWERCASE_L,
}
right := []int{
TOKEN_ALPHABET_LOWERCASE_E,
TOKEN_ALPHABET_LOWERCASE_S,
}
return matchStack(lexer.TokenStack, left) && matchStack(lexer.MirrorTokenStack, right)
}
if !itIsPartOfTokenFalse() {
continue
}
lexer.pushTokenStack(token)
lexer.popMirrorTokenStack()
case TOKEN_ALPHABET_LOWERCASE_T:
// \t escape `\`, `t`
if lexer.streamStoppedWithLeadingEscapeCharacter() {
// push padding escape character `\` into JSON content
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// pop `\` from stack
lexer.popTokenStack()
continue
}
// check if json stream stopped with padding content, like case `[true , t`
if lexer.havePaddingContent() {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// in a string, just skip token
if lexer.streamStoppedInAString() {
continue
}
// push `t` to stack
lexer.pushTokenStack(token)
if lexer.streamStoppedInAnArray() {
// in array
// push `r`, `u`, `e`
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_E)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_U)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_R)
} else {
// in object
// pop `n`, `u`, `l`, `l`
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
lexer.popMirrorTokenStack()
// push `r`, `u`, `e`
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_E)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_U)
lexer.pushMirrorTokenStack(TOKEN_ALPHABET_LOWERCASE_R)
}
case TOKEN_ALPHABET_LOWERCASE_U:
// unicode escape `\`, `u`
if lexer.streamStoppedWithLeadingEscapeCharacter() {
lexer.pushTokenStack(token)
lexer.PaddingContent.WriteByte(tokenSymbol)
continue
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// in a string, just skip token
if lexer.streamStoppedInAString() {
continue
}
// check if `t`, `r` in token stack and, `u`, `e` in mirror stack
itIsPartOfTokenTrue := func() bool {
left := []int{
TOKEN_ALPHABET_LOWERCASE_T,
TOKEN_ALPHABET_LOWERCASE_R,
}
right := []int{
TOKEN_ALPHABET_LOWERCASE_E,
TOKEN_ALPHABET_LOWERCASE_U,
}
return matchStack(lexer.TokenStack, left) && matchStack(lexer.MirrorTokenStack, right)
}
// check if `n` in token stack and `u`, `l`, `l` in mirror stack
itIsPartOfTokenNull := func() bool {
left := []int{
TOKEN_ALPHABET_LOWERCASE_N,
}
right := []int{
TOKEN_ALPHABET_LOWERCASE_L,
TOKEN_ALPHABET_LOWERCASE_L,
TOKEN_ALPHABET_LOWERCASE_U,
}
return matchStack(lexer.TokenStack, left) && matchStack(lexer.MirrorTokenStack, right)
}
if !itIsPartOfTokenTrue() && !itIsPartOfTokenNull() {
continue
}
lexer.pushTokenStack(token)
lexer.popMirrorTokenStack()
case TOKEN_ALPHABET_UPPERCASE_A:
fallthrough
case TOKEN_ALPHABET_UPPERCASE_B:
fallthrough
case TOKEN_ALPHABET_UPPERCASE_C:
fallthrough
case TOKEN_ALPHABET_UPPERCASE_D:
fallthrough
case TOKEN_ALPHABET_LOWERCASE_C:
fallthrough
case TOKEN_ALPHABET_LOWERCASE_D:
fallthrough
case TOKEN_ALPHABET_UPPERCASE_F:
// as hex in unicode
if lexer.streamStoppedInAnStringUnicodeEscape() {
lexer.pushByteIntoPaddingContent(tokenSymbol)
// check if unicode escape is full length
if lexer.PaddingContent.Len() == 6 {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
// pop `\`, `u` from stack
lexer.popTokenStack()
lexer.popTokenStack()
}
continue
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// in a string, just skip token
if lexer.streamStoppedInAString() {
continue
}
case TOKEN_ALPHABET_UPPERCASE_E:
// as hex in unicode
if lexer.streamStoppedInAnStringUnicodeEscape() {
lexer.pushByteIntoPaddingContent(tokenSymbol)
// check if unicode escape is full length
if lexer.PaddingContent.Len() == 6 {
lexer.appendPaddingContentToJSONContent()
lexer.cleanPaddingContent()
// pop `\`, `u` from stack
lexer.popTokenStack()
lexer.popTokenStack()
}
continue
}
// check if in a number, as `E` (exponent) in scientific notation
if lexer.streamStoppedInANumberDecimalPartMiddle() {
lexer.pushByteIntoPaddingContent(tokenSymbol)
continue
}
// write current token symbol to JSON content
lexer.JSONContent.WriteByte(tokenSymbol)
// in a string, just skip token
if lexer.streamStoppedInAString() {
continue
}
case TOKEN_NUMBER_0:
fallthrough
case TOKEN_NUMBER_1:
fallthrough
case TOKEN_NUMBER_2:
fallthrough
case TOKEN_NUMBER_3:
fallthrough
case TOKEN_NUMBER_4:
fallthrough
case TOKEN_NUMBER_5:
fallthrough
case TOKEN_NUMBER_6:
fallthrough
case TOKEN_NUMBER_7:
fallthrough
case TOKEN_NUMBER_8: