-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathextradata.go
404 lines (325 loc) · 10.8 KB
/
extradata.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
/*
* 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"
"fmt"
"sort"
"sync"
"github.com/fxamacker/cbor/v2"
)
type ExtraData interface {
isExtraData() bool
Type() TypeInfo
Encode(enc *Encoder, encodeTypeInfo encodeTypeInfo) error
}
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
}
type compactMapTypeInfo struct {
index int
keys []ComparableStorable
}
type extraDataAndEncodedTypeInfo struct {
extraData ExtraData
encodedTypeInfo string // cached encoded type info
}
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
}
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
}
// 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
}
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() any {
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)
}