-
Notifications
You must be signed in to change notification settings - Fork 40
/
accumulator.go
218 lines (200 loc) · 4.83 KB
/
accumulator.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
/*
* Copyright 2021 ICON 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 hexary
import (
"github.com/icon-project/goloop/common/db"
"github.com/icon-project/goloop/common/errors"
"github.com/icon-project/goloop/common/log"
)
const (
defaultAccumulatorKey = "accumulator"
)
type Accumulator interface {
Add(hash []byte) error
// Len returns number of added hashes.
Len() int64
// SetLen sets length and rewinds an accumulator. Error if l is larger
// than Len() of the accumulator.
SetLen(l int64) error
GetMerkleHeader() *MerkleHeader
// Finalize finalizes node data
Finalize() (header *MerkleHeader, err error)
}
type accumulatorData struct {
Len int64
Roots []*node
}
type accumulator struct {
data accumulatorData
treeBucket db.Bucket
accumulatorBucket *db.CodedBucket
accumulatorDataKey []byte
}
func (ba *accumulator) GetMerkleHeader() *MerkleHeader {
var carry []byte
for i, r := range ba.data.Roots {
var restore bool
if carry != nil {
r.Add(carry)
restore = true
}
if i == len(ba.data.Roots)-1 && r.Len() == 1 {
carry = r.GetCopy(0)
} else {
carry = r.Hash()
}
if restore {
r.RemoveBack()
}
}
return &MerkleHeader{carry, ba.data.Len }
}
func powerOf16(n uint64) bool {
for n > 0xf {
if n&0xf != 0 {
return false
}
n = n >> 4
}
return n == 1
}
func (ba *accumulator) SetLen(l int64) error {
if l > ba.data.Len {
return errors.IllegalArgumentError.Errorf(
"l(=%d) > Len(=%d)", l, ba.data.Len,
)
}
if l == 0 {
ba.data = accumulatorData{ 0, nil }
return nil
}
if l == ba.data.Len {
return nil
}
hd, err := ba.Finalize()
if err != nil {
return err
}
mt, err := NewMerkleTree(ba.treeBucket, hd, 0)
if err != nil {
return err
}
proof, err := mt.Prove(l-1, 0)
if err != nil {
return err
}
lvl := LevelFromLen(l)
if powerOf16(uint64(l)) {
lvl++
}
if len(proof) < lvl {
if len(proof) + 1 != lvl {
log.Panicf("invalid proof length %d for SetLen(%d)", len(proof), l)
}
tmp := append([][]byte(nil), hd.RootHash)
proof = append(tmp, proof...)
} else {
over := len(proof) - lvl
proof = proof[over:]
}
roots := make([]*node, lvl)
d := l
for i := range roots {
copied := append([]byte(nil), proof[len(proof)-1-i]...)
roots[i], err = newNodeFromBytes(copied)
if err != nil {
return err
}
roots[i].SetLen(int(d%16))
d = d/16
}
ba.data = accumulatorData{ l, roots }
return ba.accumulatorBucket.Set(db.Raw(ba.accumulatorDataKey), &ba.data)
}
func (ba *accumulator) add(i int, hash []byte) error {
if i >= len(ba.data.Roots) {
ba.data.Roots = append(ba.data.Roots, newNode())
}
rb := ba.data.Roots[i]
rb.Add(hash)
if rb.Full() {
if err := ba.treeBucket.Set(rb.Hash(), rb.Bytes()); err != nil {
return err
}
hash := rb.Hash()
rb.Clear()
if err := ba.add(i+1, hash); err != nil {
return err
}
}
return nil
}
func (ba *accumulator) Add(hash []byte) error {
if err := ba.add(0, hash); err != nil {
return err
}
ba.data.Len++
return ba.accumulatorBucket.Set(db.Raw(ba.accumulatorDataKey), &ba.data)
}
func (ba *accumulator) Len() int64 {
return ba.data.Len
}
func (ba *accumulator) Finalize() (header *MerkleHeader, err error) {
var carry []byte
for i, r := range ba.data.Roots {
var restore bool
if carry != nil {
r.Add(carry)
restore = true
}
if i == len(ba.data.Roots)-1 && r.Len() == 1 {
carry = r.GetCopy(0)
} else {
hash := r.Hash()
if hash != nil {
if err = ba.treeBucket.Set(hash, r.Bytes()); err != nil {
return nil, err
}
}
carry = hash
}
if restore {
r.RemoveBack()
}
}
return &MerkleHeader{ carry, ba.data.Len }, nil
}
// NewAccumulator creates a new accumulator. Merkle node is written in tree
// bucket, accumulator is written on accumulator data key in accumulator bucket.
func NewAccumulator(
treeBucket db.Bucket,
accumulatorBucket db.Bucket,
accumulatorDataKey string,
) (Accumulator, error) {
if len(accumulatorDataKey) == 0 {
accumulatorDataKey = defaultAccumulatorKey
}
ba := &accumulator{
treeBucket: treeBucket,
accumulatorBucket: db.NewCodedBucketFromBucket(accumulatorBucket, nil, nil),
accumulatorDataKey: []byte(accumulatorDataKey),
}
err := ba.accumulatorBucket.Get(db.Raw(accumulatorDataKey), &ba.data)
if err != nil && !errors.NotFoundError.Equals(err) {
return nil, err
}
return ba, nil
}