-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathentity_store.go
272 lines (235 loc) · 6.58 KB
/
entity_store.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
// Copyright 2024 The Erigon Authors
// This file is part of Erigon.
//
// Erigon is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Erigon is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Erigon. If not, see <http://www.gnu.org/licenses/>.
package heimdall
import (
"context"
"encoding/binary"
"encoding/json"
"sync"
"github.com/erigontech/erigon-lib/common/generics"
"github.com/erigontech/erigon-lib/kv"
"github.com/erigontech/erigon-lib/kv/stream"
"github.com/erigontech/erigon/polygon/polygoncommon"
)
var databaseTablesCfg = kv.TableCfg{
kv.BorCheckpoints: {},
kv.BorMilestones: {},
kv.BorSpans: {},
kv.BorProducerSelections: {},
}
type EntityStore[TEntity Entity] interface {
Prepare(ctx context.Context) error
Close()
LastEntityId(ctx context.Context) (uint64, bool, error)
LastEntity(ctx context.Context) (TEntity, bool, error)
Entity(ctx context.Context, id uint64) (TEntity, bool, error)
PutEntity(ctx context.Context, id uint64, entity TEntity) error
RangeFromBlockNum(ctx context.Context, startBlockNum uint64) ([]TEntity, error)
}
type RangeIndexFactory func(ctx context.Context) (*RangeIndex, error)
type mdbxEntityStore[TEntity Entity] struct {
db *polygoncommon.Database
table string
makeEntity func() TEntity
blockNumToIdIndexFactory RangeIndexFactory
blockNumToIdIndex *RangeIndex
prepareOnce sync.Once
}
func newMdbxEntityStore[TEntity Entity](
db *polygoncommon.Database,
table string,
makeEntity func() TEntity,
blockNumToIdIndexFactory RangeIndexFactory,
) *mdbxEntityStore[TEntity] {
return &mdbxEntityStore[TEntity]{
db: db,
table: table,
makeEntity: makeEntity,
blockNumToIdIndexFactory: blockNumToIdIndexFactory,
}
}
func (s *mdbxEntityStore[TEntity]) Prepare(ctx context.Context) error {
var err error
s.prepareOnce.Do(func() {
err = s.db.OpenOnce(ctx)
if err != nil {
return
}
s.blockNumToIdIndex, err = s.blockNumToIdIndexFactory(ctx)
if err != nil {
return
}
iteratorFactory := func(tx kv.Tx) (stream.KV, error) { return tx.Range(s.table, nil, nil) }
err = buildBlockNumToIdIndex(ctx, s.blockNumToIdIndex, s.db.BeginRo, iteratorFactory, s.entityUnmarshalJSON)
})
return err
}
func (s *mdbxEntityStore[TEntity]) Close() {
s.blockNumToIdIndex.Close()
}
func (s *mdbxEntityStore[TEntity]) LastEntityId(ctx context.Context) (uint64, bool, error) {
tx, err := s.db.BeginRo(ctx)
if err != nil {
return 0, false, err
}
defer tx.Rollback()
cursor, err := tx.Cursor(s.table)
if err != nil {
return 0, false, err
}
defer cursor.Close()
lastKey, _, err := cursor.Last()
if err != nil {
return 0, false, err
}
// not found
if lastKey == nil {
return 0, false, nil
}
return entityStoreKeyParse(lastKey), true, nil
}
func (s *mdbxEntityStore[TEntity]) LastEntity(ctx context.Context) (TEntity, bool, error) {
id, ok, err := s.LastEntityId(ctx)
if err != nil {
return generics.Zero[TEntity](), false, err
}
// not found
if !ok {
return generics.Zero[TEntity](), false, nil
}
return s.Entity(ctx, id)
}
func entityStoreKey(id uint64) [8]byte {
var key [8]byte
binary.BigEndian.PutUint64(key[:], id)
return key
}
func entityStoreKeyParse(key []byte) uint64 {
return binary.BigEndian.Uint64(key)
}
func (s *mdbxEntityStore[TEntity]) entityUnmarshalJSON(jsonBytes []byte) (TEntity, error) {
entity := s.makeEntity()
if err := json.Unmarshal(jsonBytes, entity); err != nil {
return generics.Zero[TEntity](), err
}
return entity, nil
}
func (s *mdbxEntityStore[TEntity]) Entity(ctx context.Context, id uint64) (TEntity, bool, error) {
tx, err := s.db.BeginRo(ctx)
if err != nil {
return generics.Zero[TEntity](), false, err
}
defer tx.Rollback()
key := entityStoreKey(id)
jsonBytes, err := tx.GetOne(s.table, key[:])
if err != nil {
return generics.Zero[TEntity](), false, err
}
// not found
if jsonBytes == nil {
return generics.Zero[TEntity](), false, nil
}
val, err := s.entityUnmarshalJSON(jsonBytes)
return val, true, err
}
func (s *mdbxEntityStore[TEntity]) PutEntity(ctx context.Context, id uint64, entity TEntity) error {
tx, err := s.db.BeginRw(ctx)
if err != nil {
return err
}
defer tx.Rollback()
jsonBytes, err := json.Marshal(entity)
if err != nil {
return err
}
key := entityStoreKey(id)
if err = tx.Put(s.table, key[:], jsonBytes); err != nil {
return err
}
if err = tx.Commit(); err != nil {
return err
}
// update blockNumToIdIndex
return s.blockNumToIdIndex.Put(ctx, entity.BlockNumRange(), id)
}
func (s *mdbxEntityStore[TEntity]) RangeFromId(ctx context.Context, startId uint64) ([]TEntity, error) {
tx, err := s.db.BeginRo(ctx)
if err != nil {
return nil, err
}
defer tx.Rollback()
startKey := entityStoreKey(startId)
it, err := tx.Range(s.table, startKey[:], nil)
if err != nil {
return nil, err
}
var entities []TEntity
for it.HasNext() {
_, jsonBytes, err := it.Next()
if err != nil {
return nil, err
}
entity, err := s.entityUnmarshalJSON(jsonBytes)
if err != nil {
return nil, err
}
entities = append(entities, entity)
}
return entities, nil
}
func (s *mdbxEntityStore[TEntity]) RangeFromBlockNum(ctx context.Context, startBlockNum uint64) ([]TEntity, error) {
id, err := s.blockNumToIdIndex.Lookup(ctx, startBlockNum)
if err != nil {
return nil, err
}
// not found
if id == 0 {
return nil, nil
}
return s.RangeFromId(ctx, id)
}
func buildBlockNumToIdIndex[TEntity Entity](
ctx context.Context,
index *RangeIndex,
txFactory func(context.Context) (kv.Tx, error),
iteratorFactory func(tx kv.Tx) (stream.KV, error),
entityUnmarshalJSON func([]byte) (TEntity, error),
) error {
tx, err := txFactory(ctx)
if err != nil {
return err
}
defer tx.Rollback()
it, err := iteratorFactory(tx)
if err != nil {
return err
}
defer it.Close()
for it.HasNext() {
_, jsonBytes, err := it.Next()
if err != nil {
return err
}
entity, err := entityUnmarshalJSON(jsonBytes)
if err != nil {
return err
}
if err = index.Put(ctx, entity.BlockNumRange(), entity.RawId()); err != nil {
return err
}
}
return nil
}