-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecode.go
915 lines (839 loc) · 16 KB
/
decode.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
package sfv
import (
"bytes"
"encoding/base64"
"errors"
"fmt"
"strings"
"time"
"unicode/utf8"
)
const endOfInput = -1
var validKeyChars = [256]bool{
'_': true,
'-': true,
'.': true,
'*': true,
// DIGIT from RFC 7230
'0': true,
'1': true,
'2': true,
'3': true,
'4': true,
'5': true,
'6': true,
'7': true,
'8': true,
'9': true,
// lcalpha
'a': true,
'b': true,
'c': true,
'd': true,
'e': true,
'f': true,
'g': true,
'h': true,
'i': true,
'j': true,
'k': true,
'l': true,
'm': true,
'n': true,
'o': true,
'p': true,
'q': true,
'r': true,
's': true,
't': true,
'u': true,
'v': true,
'w': true,
'x': true,
'y': true,
'z': true,
}
// valid character for Token except the first character.
var validTokenChars = [256]bool{
':': true,
'/': true,
// tchar from RFC 7230
'!': true,
'#': true,
'$': true,
'%': true,
'&': true,
'\'': true,
'*': true,
'+': true,
'-': true,
'.': true,
'^': true,
'_': true,
'`': true,
'|': true,
'~': true,
// and DIGIT and ALPHA
// DIGIT from RFC 7230
'0': true,
'1': true,
'2': true,
'3': true,
'4': true,
'5': true,
'6': true,
'7': true,
'8': true,
'9': true,
// ALPHA from RFC 7230
'A': true,
'B': true,
'C': true,
'D': true,
'E': true,
'F': true,
'G': true,
'H': true,
'I': true,
'J': true,
'K': true,
'L': true,
'M': true,
'N': true,
'O': true,
'P': true,
'Q': true,
'R': true,
'S': true,
'T': true,
'U': true,
'V': true,
'W': true,
'X': true,
'Y': true,
'Z': true,
'a': true,
'b': true,
'c': true,
'd': true,
'e': true,
'f': true,
'g': true,
'h': true,
'i': true,
'j': true,
'k': true,
'l': true,
'm': true,
'n': true,
'o': true,
'p': true,
'q': true,
'r': true,
's': true,
't': true,
'u': true,
'v': true,
'w': true,
'x': true,
'y': true,
'z': true,
}
// character for base64-decoding
var validBase64Chars = [256]bool{
'+': true,
'/': true,
'=': true,
// DIGIT from RFC 7230
'0': true,
'1': true,
'2': true,
'3': true,
'4': true,
'5': true,
'6': true,
'7': true,
'8': true,
'9': true,
// ALPHA from RFC 7230
'A': true,
'B': true,
'C': true,
'D': true,
'E': true,
'F': true,
'G': true,
'H': true,
'I': true,
'J': true,
'K': true,
'L': true,
'M': true,
'N': true,
'O': true,
'P': true,
'Q': true,
'R': true,
'S': true,
'T': true,
'U': true,
'V': true,
'W': true,
'X': true,
'Y': true,
'Z': true,
'a': true,
'b': true,
'c': true,
'd': true,
'e': true,
'f': true,
'g': true,
'h': true,
'i': true,
'j': true,
'k': true,
'l': true,
'm': true,
'n': true,
'o': true,
'p': true,
'q': true,
'r': true,
's': true,
't': true,
'u': true,
'v': true,
'w': true,
'x': true,
'y': true,
'z': true,
}
// isDigit reports whether ch is a decimal digit.
func isDigit(ch int) bool {
return ch >= '0' && ch <= '9'
}
// lower(c) is a lower-case letter if and only if
// c is either that lower-case letter or the equivalent upper-case letter.
// Instead of writing c == 'x' || c == 'X' one can write lower(c) == 'x'.
// Note that lower of non-letters can produce other non-letters.
func lower(c int) int {
return c | ('x' - 'X')
}
// isHexDigit reports whether ch is a hexadecimal digit.
func isHexDigit(ch int) bool {
return isDigit(ch) || (ch >= 'a' && ch <= 'f')
}
// hex returns the value of the hexadecimal digit.
// isHexDigit(ch) must be true.
func hex(ch int) byte {
if ch >= '0' && ch <= '9' {
return byte(ch - '0')
}
return byte(ch - 'a' + 10)
}
type decodeState struct {
fields []string
line, col int
endOfField bool
buf bytes.Buffer
}
func (s *decodeState) peek() int {
if s.line >= len(s.fields) {
return endOfInput
}
if s.endOfField {
// insert commas between fields.
return ','
}
f := s.fields[s.line]
if s.col >= len(f) {
return endOfInput
}
return int(f[s.col])
}
func (s *decodeState) next() {
if s.line >= len(s.fields) {
// no more inputs.
return
}
if s.endOfField {
s.endOfField = false
return
}
f := s.fields[s.line]
s.col++
if s.col >= len(f) {
// goto next the field.
s.col = 0
s.line++
s.endOfField = true
}
}
func (s *decodeState) skipSPs() {
for s.peek() == ' ' {
s.next()
}
}
// skip OWS in RFC 7230
func (s *decodeState) skipOWS() {
for ch := s.peek(); ch == ' ' || ch == '\t'; ch = s.peek() {
s.next()
}
}
// errUnexpectedCharacter returns an error for unexpected character.
func (s *decodeState) errUnexpectedCharacter() error {
ch := s.peek()
if ch == endOfInput {
return errors.New("sfv: unexpected the end of the input")
}
return fmt.Errorf("sfv: unexpected character: %q", ch)
}
// decodeItem parses an Item according to RFC 9651 Section 4.2.3.
func (s *decodeState) decodeItem() (Item, error) {
v, err := s.decodeBareItem()
if err != nil {
return Item{}, err
}
param, err := s.decodeParameters()
if err != nil {
return Item{}, err
}
return Item{
Value: v,
Parameters: param,
}, nil
}
// decodeBareItem parses a bare item according to RFC 9651 Section 4.2.3.1.
func (s *decodeState) decodeBareItem() (Value, error) {
ch := s.peek()
switch {
case ch == '-' || isDigit(ch):
// an Integer or Decimal
return s.decodeIntegerOrDecimal()
case ch == '"':
// a String
return s.decodeString()
case ch == '*' || (lower(ch) >= 'a' && lower(ch) <= 'z'):
// a Token
return s.decodeToken()
case ch == ':':
// a Byte Sequence
return s.decodeByteSequence()
case ch == '?':
// a Boolean
return s.decodeBoolean()
case ch == '@':
// a Date
return s.decodeDate()
case ch == '%':
// a Display String
return s.decodeDisplayString()
}
return nil, s.errUnexpectedCharacter()
}
// decodeIntegerOrDecimal parses an Integer or Decimal according to RFC 9651 Section 4.2.4.
func (s *decodeState) decodeIntegerOrDecimal() (Value, error) {
ch := s.peek()
neg := false
if ch == '-' {
neg = true
s.next()
if !isDigit(s.peek()) {
return nil, s.errUnexpectedCharacter()
}
}
num := int64(0)
cnt := 0
for {
ch := s.peek()
if !isDigit(ch) {
break
}
s.next()
num = num*10 + int64(ch-'0')
cnt++
if cnt > 15 {
return nil, errors.New("sfv: integer overflow")
}
}
if s.peek() != '.' {
// it is an Integer
if neg {
num *= -1
}
return num, nil
}
// current character is '.'
s.next() // skip '.'
// it might be a Decimal
if cnt > 12 {
return nil, errors.New("sfv: decimal overflow")
}
frac := 0
ch = s.peek()
if !isDigit(ch) {
// fractional part MUST NOT be empty.
return nil, s.errUnexpectedCharacter()
}
s.next()
frac = frac*10 + int(ch-'0')
ch = s.peek()
if !isDigit(ch) {
ret := float64(num) + float64(frac)/10
if neg {
ret *= -1
}
return ret, nil
}
s.next()
frac = frac*10 + int(ch-'0')
ch = s.peek()
if !isDigit(ch) {
ret := float64(num) + float64(frac)/100
if neg {
ret *= -1
}
return ret, nil
}
s.next()
frac = frac*10 + int(ch-'0')
ch = s.peek()
if !isDigit(ch) {
ret := float64(num) + float64(frac)/1000
if neg {
ret *= -1
}
return ret, nil
}
return nil, errors.New("sfv: decimal has too long fractional part")
}
// decodeString parses a String according to RFC 9651 Section 4.2.5.
func (s *decodeState) decodeString() (Value, error) {
if ch := s.peek(); ch != '"' {
return nil, s.errUnexpectedCharacter()
}
s.next() // skip '"'
var buf strings.Builder
for {
ch := s.peek()
switch {
case ch == '\\':
s.next() // skip '\\'
switch s.peek() {
case '\\':
s.next() // skip '\\'
buf.WriteByte('\\')
case '"':
s.next() // skip '"'
buf.WriteByte('"')
default:
return nil, s.errUnexpectedCharacter()
}
case ch == '"':
// the end of a String
s.next() // skip '"'
return buf.String(), nil
case ch >= 0x20 && ch < 0x7f:
s.next()
buf.WriteByte(byte(ch))
default:
return nil, s.errUnexpectedCharacter()
}
}
}
// decodeToken parses a Token according to RFC 9651 Section 4.2.6.
func (s *decodeState) decodeToken() (Value, error) {
var buf strings.Builder
for {
ch := s.peek()
switch {
case ch == endOfInput:
return Token(buf.String()), nil
case validTokenChars[ch]:
s.next()
buf.WriteByte(byte(ch))
default:
return Token(buf.String()), nil
}
}
}
// decodeBytesSequence parses a Byte Sequence according to RFC 9651 Section 4.2.7.
func (s *decodeState) decodeByteSequence() (Value, error) {
if ch := s.peek(); ch != ':' {
return nil, s.errUnexpectedCharacter()
}
s.next() // skip ':'
s.buf.Reset()
for {
ch := s.peek()
switch {
case ch == endOfInput:
return nil, s.errUnexpectedCharacter()
case ch == ':':
// the end of a Binary
s.next() // skip ':'
// add missing "=" padding
// RFC 9651 says that parsers SHOULD NOT fail when "=" padding is not present.
switch s.buf.Len() % 4 {
case 0:
case 1:
s.buf.WriteByte('=')
fallthrough
case 2:
s.buf.WriteByte('=')
fallthrough
case 3:
s.buf.WriteByte('=')
}
enc := base64.StdEncoding
ret := make([]byte, enc.DecodedLen(s.buf.Len()))
n, err := enc.Decode(ret, s.buf.Bytes())
if err != nil {
return nil, err
}
return ret[:n], nil
case validBase64Chars[ch]:
s.next()
s.buf.WriteByte(byte(ch))
default:
return nil, s.errUnexpectedCharacter()
}
}
}
// decodeBoolean parses a Boolean according to RFC 9651 Section 4.2.8.
func (s *decodeState) decodeBoolean() (Value, error) {
if ch := s.peek(); ch != '?' {
return nil, s.errUnexpectedCharacter()
}
s.next() // skip '?'
switch s.peek() {
case '0':
s.next() // skip '0'
return false, nil
case '1':
s.next() // skip '1'
return true, nil
default:
return nil, s.errUnexpectedCharacter()
}
}
// decodeDate parses a Date according to RFC 9651 Section 4.2.9.
func (s *decodeState) decodeDate() (Value, error) {
if ch := s.peek(); ch != '@' {
return nil, s.errUnexpectedCharacter()
}
s.next() // skip '@'
// check sign
neg := false
if ch := s.peek(); ch == '-' {
neg = true
s.next() // skip '-'
}
if !isDigit(s.peek()) {
return nil, s.errUnexpectedCharacter()
}
num := int64(0)
cnt := 0
for {
ch := s.peek()
if !isDigit(ch) {
break
}
s.next()
num = num*10 + int64(ch-'0')
cnt++
if cnt > 15 {
return nil, errors.New("sfv: integer overflow")
}
}
if s.peek() == '.' {
// a Date must not a Decimal.
return nil, s.errUnexpectedCharacter()
}
if neg {
num *= -1
}
return time.Unix(num, 0), nil
}
// decodeDisplayString parses a Date according to RFC 9651 Section 4.2.10.
func (s *decodeState) decodeDisplayString() (Value, error) {
if ch := s.peek(); ch != '%' {
return nil, s.errUnexpectedCharacter()
}
s.next() // skip '%'
// next character must be DQUOTE.
if ch := s.peek(); ch != '"' {
return nil, s.errUnexpectedCharacter()
}
s.next() // skip '"'
var buf strings.Builder
for {
ch := s.peek()
if ch <= 0x1f || ch >= 0x7f {
return nil, s.errUnexpectedCharacter()
}
s.next()
if ch == '%' {
// %-encoded character
digit1 := s.peek()
if !isHexDigit(digit1) {
return nil, s.errUnexpectedCharacter()
}
s.next()
digit2 := s.peek()
if !isHexDigit(digit2) {
return nil, s.errUnexpectedCharacter()
}
s.next()
buf.WriteByte(hex(digit1)<<4 | hex(digit2))
} else if ch == '"' {
// the end of a Display String
str := buf.String()
if !utf8.ValidString(str) {
return nil, errors.New("sfv: invalid UTF-8 sequence")
}
return DisplayString(str), nil
} else {
buf.WriteByte(byte(ch))
}
}
}
func (s *decodeState) decodeParameters() (Parameters, error) {
var params Parameters
seenKeys := map[string]int{}
for {
if s.peek() != ';' {
break
}
s.next() // skip ';'
s.skipSPs()
key, err := s.decodeKey()
if err != nil {
return nil, err
}
var value Value
if s.peek() == '=' {
s.next() // skip '='
value, err = s.decodeBareItem()
if err != nil {
return nil, err
}
} else {
value = true
}
if i, ok := seenKeys[key]; ok {
// parameters already contains a key,
// overwrite its value
params[i] = Parameter{
Key: key,
Value: value,
}
} else {
seenKeys[key] = len(params)
params = append(params, Parameter{
Key: key,
Value: value,
})
}
}
return params, nil
}
func (s *decodeState) decodeKey() (string, error) {
ch := s.peek()
if (ch < 'a' || ch > 'z') && ch != '*' {
return "", s.errUnexpectedCharacter()
}
s.next()
var buf strings.Builder
buf.WriteByte(byte(ch))
for {
ch := s.peek()
if ch == endOfInput {
break
}
if !validKeyChars[ch] {
break
}
s.next()
buf.WriteByte(byte(ch))
}
return buf.String(), nil
}
func (s *decodeState) decodeItemOrInnerItem() (Item, error) {
if s.peek() != '(' {
// It might be an Item
return s.decodeItem()
}
s.next() // skip '('
// parse as an Inner List
list := InnerList{}
for {
s.skipSPs()
ch := s.peek()
if ch == ')' {
s.next() // skip ')'
break
}
item, err := s.decodeItem()
if err != nil {
return Item{}, err
}
list = append(list, item)
ch = s.peek()
if ch != ' ' && ch != ')' {
return Item{}, s.errUnexpectedCharacter()
}
}
params, err := s.decodeParameters()
if err != nil {
return Item{}, err
}
return Item{
Value: list,
Parameters: params,
}, nil
}
func (s *decodeState) decodeList() (List, error) {
var list List
if s.peek() == endOfInput {
// it is an empty list
return nil, nil
}
for {
item, err := s.decodeItemOrInnerItem()
if err != nil {
return nil, err
}
list = append(list, item)
s.skipOWS()
ch := s.peek()
if ch == endOfInput {
break
}
if ch != ',' {
return nil, s.errUnexpectedCharacter()
}
s.next() // skip ','
s.skipOWS()
if s.peek() == endOfInput {
// it is trailing comma.
return nil, errors.New("sfv: trailing comma is not allowed")
}
}
return list, nil
}
func (s *decodeState) decodeDictionary() (Dictionary, error) {
if s.peek() == endOfInput {
// it is an empty dictionary
return nil, nil
}
var dict Dictionary
seenKeys := map[string]int{}
for {
// decode keys
key, err := s.decodeKey()
if err != nil {
return nil, err
}
// decode items
var item Item
if s.peek() == '=' {
s.next() // skip '='
item, err = s.decodeItemOrInnerItem()
if err != nil {
return nil, err
}
} else {
params, err := s.decodeParameters()
if err != nil {
return nil, err
}
item = Item{
Value: true,
Parameters: params,
}
}
if i, ok := seenKeys[key]; ok {
// parameters already contains a key,
// overwrite its value
dict[i] = DictMember{
Key: key,
Item: item,
}
} else {
seenKeys[key] = len(dict)
dict = append(dict, DictMember{
Key: key,
Item: item,
})
}
// skip commas
s.skipOWS()
ch := s.peek()
if ch == endOfInput {
break
}
if ch != ',' {
return nil, s.errUnexpectedCharacter()
}
s.next() // skip ','
s.skipOWS()
if s.peek() == endOfInput {
// it is trailing comma.
return nil, errors.New("sfv: trailing comma is not allowed")
}
}
return dict, nil
}
// DecodeList decodes fields as Structured Field Values,
// and returns the result as an Item.
func DecodeItem(fields []string) (Item, error) {
state := &decodeState{
fields: fields,
}
state.skipSPs()
ret, err := state.decodeItem()
if err != nil {
return Item{}, err
}
state.skipSPs()
if state.peek() != endOfInput {
return Item{}, state.errUnexpectedCharacter()
}
return ret, nil
}
// DecodeList decodes fields as Structured Field Values,
// and returns the result as a List.
func DecodeList(fields []string) (List, error) {
state := &decodeState{
fields: fields,
}
state.skipSPs()
ret, err := state.decodeList()
if err != nil {
return nil, err
}
state.skipSPs()
if state.peek() != endOfInput {
return nil, state.errUnexpectedCharacter()
}
return ret, nil
}
// DecodeDictionary decodes fields as Structured Field Values,
// and returns the result as a Dictionary.
func DecodeDictionary(fields []string) (Dictionary, error) {
state := &decodeState{
fields: fields,
}
state.skipSPs()
ret, err := state.decodeDictionary()
if err != nil {
return nil, err
}
state.skipSPs()
if state.peek() != endOfInput {
return nil, state.errUnexpectedCharacter()
}
return ret, nil
}