-
Notifications
You must be signed in to change notification settings - Fork 16
/
typeinfo.go
682 lines (550 loc) · 17.8 KB
/
typeinfo.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
/*
* Atree - Scalable Arrays and Ordered Maps
*
* Copyright Flow Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package atree
import (
"bytes"
"encoding/binary"
"fmt"
"sort"
"strings"
"sync"
"github.com/fxamacker/cbor/v2"
)
type TypeInfo interface {
Encode(*cbor.StreamEncoder) error
IsComposite() bool
Copy() TypeInfo
}
type TypeInfoDecoder func(
decoder *cbor.StreamDecoder,
) (
TypeInfo,
error,
)
// encodeTypeInfo encodes TypeInfo either:
// - as is (for TypeInfo in root slab extra data section), or
// - as index of inlined TypeInfos (for TypeInfo in inlined slab extra data section)
type encodeTypeInfo func(*Encoder, TypeInfo) error
// defaultEncodeTypeInfo encodes TypeInfo as is.
func defaultEncodeTypeInfo(enc *Encoder, typeInfo TypeInfo) error {
return typeInfo.Encode(enc.CBOR)
}
func decodeTypeInfoRefIfNeeded(inlinedTypeInfo []TypeInfo, defaultTypeInfoDecoder TypeInfoDecoder) TypeInfoDecoder {
if len(inlinedTypeInfo) == 0 {
return defaultTypeInfoDecoder
}
return func(decoder *cbor.StreamDecoder) (TypeInfo, error) {
rawTypeInfo, err := decoder.DecodeRawBytes()
if err != nil {
return nil, NewDecodingError(fmt.Errorf("failed to decode raw type info: %w", err))
}
if len(rawTypeInfo) > len(typeInfoRefTagHeadAndTagNumber) &&
bytes.Equal(
rawTypeInfo[:len(typeInfoRefTagHeadAndTagNumber)],
typeInfoRefTagHeadAndTagNumber) {
// Type info is encoded as type info ref.
var index uint64
err = cbor.Unmarshal(rawTypeInfo[len(typeInfoRefTagHeadAndTagNumber):], &index)
if err != nil {
return nil, NewDecodingError(err)
}
if index >= uint64(len(inlinedTypeInfo)) {
return nil, NewDecodingError(fmt.Errorf("failed to decode type info ref: expect index < %d, got %d", len(inlinedTypeInfo), index))
}
return inlinedTypeInfo[int(index)], nil
}
// Decode type info as is.
dec := cbor.NewByteStreamDecoder(rawTypeInfo)
return defaultTypeInfoDecoder(dec)
}
}
type ExtraData interface {
isExtraData() bool
Type() TypeInfo
Encode(enc *Encoder, encodeTypeInfo encodeTypeInfo) error
}
// compactMapExtraData is used for inlining compact values.
// compactMapExtraData includes hkeys and keys with map extra data
// because hkeys and keys are the same in order and content for
// all values with the same compact type and map seed.
type compactMapExtraData struct {
mapExtraData *MapExtraData
hkeys []Digest // hkeys is ordered by mapExtraData.Seed
keys []ComparableStorable // keys is ordered by mapExtraData.Seed
}
var _ ExtraData = &compactMapExtraData{}
const compactMapExtraDataLength = 3
func (c *compactMapExtraData) isExtraData() bool {
return true
}
func (c *compactMapExtraData) Type() TypeInfo {
return c.mapExtraData.TypeInfo
}
func (c *compactMapExtraData) Encode(enc *Encoder, encodeTypeInfo encodeTypeInfo) error {
err := enc.CBOR.EncodeArrayHead(compactMapExtraDataLength)
if err != nil {
return NewEncodingError(err)
}
// element 0: map extra data
err = c.mapExtraData.Encode(enc, encodeTypeInfo)
if err != nil {
// err is already categorized by MapExtraData.Encode().
return err
}
// element 1: digests
totalDigestSize := len(c.hkeys) * digestSize
var digests []byte
if totalDigestSize <= len(enc.Scratch) {
digests = enc.Scratch[:totalDigestSize]
} else {
digests = make([]byte, totalDigestSize)
}
for i := 0; i < len(c.hkeys); i++ {
binary.BigEndian.PutUint64(digests[i*digestSize:], uint64(c.hkeys[i]))
}
err = enc.CBOR.EncodeBytes(digests)
if err != nil {
return NewEncodingError(err)
}
// element 2: field names
err = enc.CBOR.EncodeArrayHead(uint64(len(c.keys)))
if err != nil {
return NewEncodingError(err)
}
for _, key := range c.keys {
err = key.Encode(enc)
if err != nil {
// Wrap err as external error (if needed) because err is returned by ComparableStorable.Encode().
return wrapErrorfAsExternalErrorIfNeeded(err, "failed to encode key's storable")
}
}
err = enc.CBOR.Flush()
if err != nil {
return NewEncodingError(err)
}
return nil
}
func newCompactMapExtraData(
dec *cbor.StreamDecoder,
decodeTypeInfo TypeInfoDecoder,
decodeStorable StorableDecoder,
) (*compactMapExtraData, error) {
length, err := dec.DecodeArrayHead()
if err != nil {
return nil, NewDecodingError(err)
}
if length != compactMapExtraDataLength {
return nil, NewDecodingError(
fmt.Errorf(
"compact extra data has invalid length %d, want %d",
length,
arrayExtraDataLength,
))
}
// element 0: map extra data
mapExtraData, err := newMapExtraData(dec, decodeTypeInfo)
if err != nil {
// err is already categorized by newMapExtraData().
return nil, err
}
// element 1: digests
digestBytes, err := dec.DecodeBytes()
if err != nil {
return nil, NewDecodingError(err)
}
if len(digestBytes)%digestSize != 0 {
return nil, NewDecodingError(
fmt.Errorf(
"decoding digests failed: number of bytes %d is not multiple of %d",
len(digestBytes),
digestSize))
}
digestCount := len(digestBytes) / digestSize
// element 2: keys
keyCount, err := dec.DecodeArrayHead()
if err != nil {
return nil, NewDecodingError(err)
}
if keyCount != uint64(digestCount) {
return nil, NewDecodingError(
fmt.Errorf(
"decoding compact map key failed: number of keys %d is different from number of digests %d",
keyCount,
digestCount))
}
hkeys := make([]Digest, digestCount)
for i := 0; i < digestCount; i++ {
hkeys[i] = Digest(binary.BigEndian.Uint64(digestBytes[i*digestSize:]))
}
keys := make([]ComparableStorable, keyCount)
for i := uint64(0); i < keyCount; i++ {
// Decode compact map key
key, err := decodeStorable(dec, SlabIDUndefined, nil)
if err != nil {
// Wrap err as external error (if needed) because err is returned by StorableDecoder callback.
return nil, wrapErrorfAsExternalErrorIfNeeded(err, "failed to decode key's storable")
}
compactMapKey, ok := key.(ComparableStorable)
if !ok {
return nil, NewDecodingError(fmt.Errorf("failed to decode key's storable: got %T, expect ComparableStorable", key))
}
keys[i] = compactMapKey
}
return &compactMapExtraData{mapExtraData: mapExtraData, hkeys: hkeys, keys: keys}, nil
}
type compactMapTypeInfo struct {
index int
keys []ComparableStorable
}
type extraDataAndEncodedTypeInfo struct {
extraData ExtraData
encodedTypeInfo string // cached encoded type info
}
type InlinedExtraData struct {
extraData []extraDataAndEncodedTypeInfo // Used to encode deduplicated ExtraData in order
compactMapTypeSet map[string]compactMapTypeInfo // Used to deduplicate compactMapExtraData by encoded TypeInfo + sorted field names
arrayExtraDataSet map[string]int // Used to deduplicate arrayExtraData by encoded TypeInfo
}
func newInlinedExtraData() *InlinedExtraData {
// Maps used for deduplication are initialized lazily.
return &InlinedExtraData{}
}
const inlinedExtraDataArrayCount = 2
var typeInfoRefTagHeadAndTagNumber = []byte{0xd8, CBORTagTypeInfoRef}
// Encode encodes inlined extra data as 2-element array:
//
// +-----------------------+------------------------+
// | [+ inlined type info] | [+ inlined extra data] |
// +-----------------------+------------------------+
func (ied *InlinedExtraData) Encode(enc *Encoder) error {
typeInfos, typeInfoIndexes := ied.findDuplicateTypeInfo()
var err error
err = enc.CBOR.EncodeArrayHead(inlinedExtraDataArrayCount)
if err != nil {
return NewEncodingError(err)
}
// element 0: array of duplicate type info
err = enc.CBOR.EncodeArrayHead(uint64(len(typeInfos)))
if err != nil {
return NewEncodingError(err)
}
// Encode type info
for _, typeInfo := range typeInfos {
// Encode cached type info as is.
err = enc.CBOR.EncodeRawBytes([]byte(typeInfo))
if err != nil {
return NewEncodingError(err)
}
}
// element 1: deduplicated array of extra data
err = enc.CBOR.EncodeArrayHead(uint64(len(ied.extraData)))
if err != nil {
return NewEncodingError(err)
}
// Encode inlined extra data
for _, extraDataInfo := range ied.extraData {
var tagNum uint64
switch extraDataInfo.extraData.(type) {
case *ArrayExtraData:
tagNum = CBORTagInlinedArrayExtraData
case *MapExtraData:
tagNum = CBORTagInlinedMapExtraData
case *compactMapExtraData:
tagNum = CBORTagInlinedCompactMapExtraData
default:
return NewEncodingError(fmt.Errorf("failed to encode unsupported extra data type %T", extraDataInfo.extraData))
}
err = enc.CBOR.EncodeTagHead(tagNum)
if err != nil {
return NewEncodingError(err)
}
err = extraDataInfo.extraData.Encode(enc, func(enc *Encoder, _ TypeInfo) error {
encodedTypeInfo := extraDataInfo.encodedTypeInfo
index, exist := typeInfoIndexes[encodedTypeInfo]
if !exist {
// typeInfo is not encoded separately, so encode typeInfo as is here.
err = enc.CBOR.EncodeRawBytes([]byte(encodedTypeInfo))
if err != nil {
return NewEncodingError(err)
}
return nil
}
err = enc.CBOR.EncodeRawBytes(typeInfoRefTagHeadAndTagNumber)
if err != nil {
return NewEncodingError(err)
}
err = enc.CBOR.EncodeUint64(uint64(index))
if err != nil {
return NewEncodingError(err)
}
return nil
})
if err != nil {
// err is already categorized by ExtraData.Encode().
return err
}
}
err = enc.CBOR.Flush()
if err != nil {
return NewEncodingError(err)
}
return nil
}
func (ied *InlinedExtraData) findDuplicateTypeInfo() ([]string, map[string]int) {
if len(ied.extraData) < 2 {
// No duplicate type info
return nil, nil
}
// Make a copy of encoded type info to sort
encodedTypeInfo := make([]string, len(ied.extraData))
for i, info := range ied.extraData {
encodedTypeInfo[i] = info.encodedTypeInfo
}
sort.Strings(encodedTypeInfo)
// Find duplicate type info
var duplicateTypeInfo []string
var duplicateTypeInfoIndexes map[string]int
for currentIndex := 1; currentIndex < len(encodedTypeInfo); {
if encodedTypeInfo[currentIndex-1] != encodedTypeInfo[currentIndex] {
currentIndex++
continue
}
// Found duplicate type info at currentIndex
duplicate := encodedTypeInfo[currentIndex]
// Insert duplicate into duplicate type info list and map
duplicateTypeInfo = append(duplicateTypeInfo, duplicate)
if duplicateTypeInfoIndexes == nil {
duplicateTypeInfoIndexes = make(map[string]int)
}
duplicateTypeInfoIndexes[duplicate] = len(duplicateTypeInfo) - 1
// Skip same duplicate from sorted list
currentIndex++
for currentIndex < len(encodedTypeInfo) && encodedTypeInfo[currentIndex] == duplicate {
currentIndex++
}
}
return duplicateTypeInfo, duplicateTypeInfoIndexes
}
func newInlinedExtraDataFromData(
data []byte,
decMode cbor.DecMode,
decodeStorable StorableDecoder,
defaultDecodeTypeInfo TypeInfoDecoder,
) ([]ExtraData, []byte, error) {
dec := decMode.NewByteStreamDecoder(data)
count, err := dec.DecodeArrayHead()
if err != nil {
return nil, nil, NewDecodingError(err)
}
if count != inlinedExtraDataArrayCount {
return nil, nil, NewDecodingError(fmt.Errorf("failed to decode inlined extra data: expect %d elements, got %d elements", inlinedExtraDataArrayCount, count))
}
// element 0: array of duplicate type info
typeInfoCount, err := dec.DecodeArrayHead()
if err != nil {
return nil, nil, NewDecodingError(err)
}
inlinedTypeInfo := make([]TypeInfo, int(typeInfoCount))
for i := uint64(0); i < typeInfoCount; i++ {
inlinedTypeInfo[i], err = defaultDecodeTypeInfo(dec)
if err != nil {
return nil, nil, wrapErrorfAsExternalErrorIfNeeded(err, "failed to decode typeInfo")
}
}
decodeTypeInfo := decodeTypeInfoRefIfNeeded(inlinedTypeInfo, defaultDecodeTypeInfo)
// element 1: array of deduplicated extra data info
extraDataCount, err := dec.DecodeArrayHead()
if err != nil {
return nil, nil, NewDecodingError(err)
}
if extraDataCount == 0 {
return nil, nil, NewDecodingError(fmt.Errorf("failed to decode inlined extra data: expect at least one inlined extra data"))
}
inlinedExtraData := make([]ExtraData, extraDataCount)
for i := uint64(0); i < extraDataCount; i++ {
tagNum, err := dec.DecodeTagNumber()
if err != nil {
return nil, nil, NewDecodingError(err)
}
switch tagNum {
case CBORTagInlinedArrayExtraData:
inlinedExtraData[i], err = newArrayExtraData(dec, decodeTypeInfo)
if err != nil {
// err is already categorized by newArrayExtraData().
return nil, nil, err
}
case CBORTagInlinedMapExtraData:
inlinedExtraData[i], err = newMapExtraData(dec, decodeTypeInfo)
if err != nil {
// err is already categorized by newMapExtraData().
return nil, nil, err
}
case CBORTagInlinedCompactMapExtraData:
inlinedExtraData[i], err = newCompactMapExtraData(dec, decodeTypeInfo, decodeStorable)
if err != nil {
// err is already categorized by newCompactMapExtraData().
return nil, nil, err
}
default:
return nil, nil, NewDecodingError(fmt.Errorf("failed to decode inlined extra data: unsupported tag number %d", tagNum))
}
}
return inlinedExtraData, data[dec.NumBytesDecoded():], nil
}
// addArrayExtraData returns index of deduplicated array extra data.
// Array extra data is deduplicated by array type info ID because array
// extra data only contains type info.
func (ied *InlinedExtraData) addArrayExtraData(data *ArrayExtraData) (int, error) {
encodedTypeInfo, err := getEncodedTypeInfo(data.TypeInfo)
if err != nil {
// err is already categorized by getEncodedTypeInfo().
return 0, err
}
if ied.arrayExtraDataSet == nil {
ied.arrayExtraDataSet = make(map[string]int)
}
index, exist := ied.arrayExtraDataSet[encodedTypeInfo]
if exist {
return index, nil
}
index = len(ied.extraData)
ied.extraData = append(ied.extraData, extraDataAndEncodedTypeInfo{data, encodedTypeInfo})
ied.arrayExtraDataSet[encodedTypeInfo] = index
return index, nil
}
// addMapExtraData returns index of map extra data.
// Map extra data is not deduplicated because it also contains count and seed.
func (ied *InlinedExtraData) addMapExtraData(data *MapExtraData) (int, error) {
encodedTypeInfo, err := getEncodedTypeInfo(data.TypeInfo)
if err != nil {
// err is already categorized by getEncodedTypeInfo().
return 0, err
}
index := len(ied.extraData)
ied.extraData = append(ied.extraData, extraDataAndEncodedTypeInfo{data, encodedTypeInfo})
return index, nil
}
// addCompactMapExtraData returns index of deduplicated compact map extra data.
// Compact map extra data is deduplicated by TypeInfo.ID() with sorted field names.
func (ied *InlinedExtraData) addCompactMapExtraData(
data *MapExtraData,
digests []Digest,
keys []ComparableStorable,
) (int, []ComparableStorable, error) {
encodedTypeInfo, err := getEncodedTypeInfo(data.TypeInfo)
if err != nil {
// err is already categorized by getEncodedTypeInfo().
return 0, nil, err
}
if ied.compactMapTypeSet == nil {
ied.compactMapTypeSet = make(map[string]compactMapTypeInfo)
}
compactMapTypeID := makeCompactMapTypeID(encodedTypeInfo, keys)
info, exist := ied.compactMapTypeSet[compactMapTypeID]
if exist {
return info.index, info.keys, nil
}
compactMapData := &compactMapExtraData{
mapExtraData: data,
hkeys: digests,
keys: keys,
}
index := len(ied.extraData)
ied.extraData = append(ied.extraData, extraDataAndEncodedTypeInfo{compactMapData, encodedTypeInfo})
ied.compactMapTypeSet[compactMapTypeID] = compactMapTypeInfo{
keys: keys,
index: index,
}
return index, keys, nil
}
func (ied *InlinedExtraData) empty() bool {
return len(ied.extraData) == 0
}
// makeCompactMapTypeID returns id of concatenated t.ID() with sorted names with "," as separator.
func makeCompactMapTypeID(encodedTypeInfo string, names []ComparableStorable) string {
const separator = ","
if len(names) == 1 {
return encodedTypeInfo + separator + names[0].ID()
}
sorter := newFieldNameSorter(names)
sort.Sort(sorter)
return encodedTypeInfo + separator + sorter.join(separator)
}
// fieldNameSorter sorts names by index (not in place sort).
type fieldNameSorter struct {
names []ComparableStorable
index []int
}
func newFieldNameSorter(names []ComparableStorable) *fieldNameSorter {
index := make([]int, len(names))
for i := 0; i < len(names); i++ {
index[i] = i
}
return &fieldNameSorter{
names: names,
index: index,
}
}
func (fn *fieldNameSorter) Len() int {
return len(fn.names)
}
func (fn *fieldNameSorter) Less(i, j int) bool {
i = fn.index[i]
j = fn.index[j]
return fn.names[i].Less(fn.names[j])
}
func (fn *fieldNameSorter) Swap(i, j int) {
fn.index[i], fn.index[j] = fn.index[j], fn.index[i]
}
func (fn *fieldNameSorter) join(sep string) string {
var sb strings.Builder
for i, index := range fn.index {
if i > 0 {
sb.WriteString(sep)
}
sb.WriteString(fn.names[index].ID())
}
return sb.String()
}
func getEncodedTypeInfo(ti TypeInfo) (string, error) {
b := getTypeIDBuffer()
defer putTypeIDBuffer(b)
enc := cbor.NewStreamEncoder(b)
err := ti.Encode(enc)
if err != nil {
// Wrap err as external error (if needed) because err is returned by TypeInfo.Encode().
return "", wrapErrorfAsExternalErrorIfNeeded(err, "failed to encode type info")
}
enc.Flush()
return b.String(), nil
}
const defaultTypeIDBufferSize = 256
var typeIDBufferPool = sync.Pool{
New: func() interface{} {
e := new(bytes.Buffer)
e.Grow(defaultTypeIDBufferSize)
return e
},
}
func getTypeIDBuffer() *bytes.Buffer {
return typeIDBufferPool.Get().(*bytes.Buffer)
}
func putTypeIDBuffer(e *bytes.Buffer) {
e.Reset()
typeIDBufferPool.Put(e)
}