-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcompactmap_extradata.go
245 lines (203 loc) · 6.07 KB
/
compactmap_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
/*
* 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 (
"encoding/binary"
"fmt"
"sort"
"strings"
"github.com/fxamacker/cbor/v2"
)
// 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 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
}
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 (c *compactMapExtraData) isExtraData() bool {
return true
}
func (c *compactMapExtraData) Type() TypeInfo {
return c.mapExtraData.TypeInfo
}
// 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) == 0 {
return encodedTypeInfo
}
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()
}