mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +00:00
83e65fdd81
fix build add storage mode check add intermitiate migration state&snapshot migrations
287 lines
6.5 KiB
Go
287 lines
6.5 KiB
Go
package changeset
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/binary"
|
|
"errors"
|
|
"fmt"
|
|
"github.com/ledgerwatch/turbo-geth/common"
|
|
"reflect"
|
|
"sort"
|
|
)
|
|
|
|
func NewChangeSet() *ChangeSet {
|
|
return &ChangeSet{
|
|
Changes: make([]Change, 0),
|
|
}
|
|
}
|
|
|
|
type Change struct {
|
|
Key []byte
|
|
Value []byte
|
|
}
|
|
|
|
// ChangeSet is a map with keys of the same size.
|
|
// Both keys and values are byte strings.
|
|
type ChangeSet struct {
|
|
// Invariant: all keys are of the same size.
|
|
Changes []Change
|
|
keyLen int
|
|
}
|
|
|
|
// BEGIN sort.Interface
|
|
|
|
func (s *ChangeSet) Len() int {
|
|
return len(s.Changes)
|
|
}
|
|
|
|
func (s *ChangeSet) Swap(i, j int) {
|
|
s.Changes[i], s.Changes[j] = s.Changes[j], s.Changes[i]
|
|
}
|
|
|
|
func (s *ChangeSet) Less(i, j int) bool {
|
|
cmp := bytes.Compare(s.Changes[i].Key, s.Changes[j].Key)
|
|
return cmp < 0
|
|
}
|
|
|
|
// END sort.Interface
|
|
|
|
/*
|
|
ChangeSet is serialized in the following manner in order to facilitate binary search:
|
|
1. The number of keys N (uint32, 4 bytes).
|
|
2. The key size M (uint32, 4 bytes).
|
|
3. Contiguous array of keys (N*M bytes).
|
|
4. Contiguous array of accumulating value indexes:
|
|
len(val0), len(val0)+len(val1), ..., len(val0)+len(val1)+...+len(val_{N-1})
|
|
(4*N bytes since the lengths are treated as uint32).
|
|
5. Contiguous array of values.
|
|
|
|
uint32 integers are serialized as big-endian.
|
|
*/
|
|
func EncodeChangeSet(s *ChangeSet) ([]byte, error) {
|
|
sort.Sort(s)
|
|
buf := new(bytes.Buffer)
|
|
intArr := make([]byte, 4)
|
|
n := s.Len()
|
|
binary.BigEndian.PutUint32(intArr, uint32(n))
|
|
_, err := buf.Write(intArr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
m := s.KeySize()
|
|
binary.BigEndian.PutUint32(intArr, uint32(m))
|
|
_, err = buf.Write(intArr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for i := 0; i < n; i++ {
|
|
_, err = buf.Write(s.Changes[i].Key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
var l int
|
|
for i := 0; i < n; i++ {
|
|
l += len(s.Changes[i].Value)
|
|
binary.BigEndian.PutUint32(intArr, uint32(l))
|
|
_, err = buf.Write(intArr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
for i := 0; i < n; i++ {
|
|
_, err = buf.Write(s.Changes[i].Value)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return buf.Bytes(), nil
|
|
}
|
|
|
|
func (s *ChangeSet) KeySize() int {
|
|
if s.keyLen != 0 {
|
|
return s.keyLen
|
|
}
|
|
for _, c := range s.Changes {
|
|
return len(c.Key)
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (s *ChangeSet) checkKeySize(key []byte) error {
|
|
if (s.Len() == 0 && s.KeySize() == 0) || (len(key) == s.KeySize() && len(key) > 0) {
|
|
return nil
|
|
}
|
|
|
|
return fmt.Errorf("wrong key size in AccountChangeSet: expected %d, actual %d", s.KeySize(), len(key))
|
|
}
|
|
|
|
// Add adds a new entry to the AccountChangeSet.
|
|
// One must not add an existing key
|
|
// and may add keys only of the same size.
|
|
func (s *ChangeSet) Add(key []byte, value []byte) error {
|
|
if err := s.checkKeySize(key); err != nil {
|
|
return err
|
|
}
|
|
|
|
s.Changes = append(s.Changes, Change{
|
|
Key: key,
|
|
Value: value,
|
|
})
|
|
return nil
|
|
}
|
|
|
|
func (s *ChangeSet) ChangedKeys() map[string]struct{} {
|
|
m := make(map[string]struct{}, len(s.Changes))
|
|
for i := range s.Changes {
|
|
m[string(s.Changes[i].Key)] = struct{}{}
|
|
}
|
|
return m
|
|
}
|
|
|
|
func (s *ChangeSet) Equals(s2 *ChangeSet) bool {
|
|
return reflect.DeepEqual(s.Changes, s2.Changes)
|
|
}
|
|
|
|
// Encoded Method
|
|
|
|
func Len(b []byte) int {
|
|
return int(binary.BigEndian.Uint32(b[0:4]))
|
|
}
|
|
|
|
func Walk(b []byte, f func(k, v []byte) error) error {
|
|
if len(b) == 0 {
|
|
return nil
|
|
}
|
|
if len(b) < 8 {
|
|
return fmt.Errorf("decode: input too short (%d bytes)", len(b))
|
|
}
|
|
|
|
n := binary.BigEndian.Uint32(b[0:4])
|
|
m := binary.BigEndian.Uint32(b[4:8])
|
|
|
|
if n == 0 {
|
|
return nil
|
|
}
|
|
valOffset := 8 + n*m + 4*n
|
|
if uint32(len(b)) < valOffset {
|
|
return fmt.Errorf("decode: input too short (%d bytes, expected at least %d bytes)", len(b), valOffset)
|
|
}
|
|
|
|
totalValLength := binary.BigEndian.Uint32(b[valOffset-4 : valOffset])
|
|
if uint32(len(b)) < valOffset+totalValLength {
|
|
return fmt.Errorf("decode: input too short (%d bytes, expected at least %d bytes)", len(b), valOffset+totalValLength)
|
|
}
|
|
|
|
for i := uint32(0); i < n; i++ {
|
|
key := b[8+i*m : 8+(i+1)*m]
|
|
idx0 := uint32(0)
|
|
if i > 0 {
|
|
idx0 = binary.BigEndian.Uint32(b[8+n*m+4*(i-1) : 8+n*m+4*i])
|
|
}
|
|
idx1 := binary.BigEndian.Uint32(b[8+n*m+4*i : 8+n*m+4*(i+1)])
|
|
val := b[valOffset+idx0 : valOffset+idx1]
|
|
|
|
err := f(key, val)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func FindLast(b []byte, k []byte) ([]byte, error) {
|
|
if len(b) == 0 {
|
|
return nil, nil
|
|
}
|
|
|
|
if len(b) < 8 {
|
|
return nil, fmt.Errorf("decode: input too short (%d bytes)", len(b))
|
|
}
|
|
|
|
n := binary.BigEndian.Uint32(b[0:4])
|
|
m := binary.BigEndian.Uint32(b[4:8])
|
|
|
|
if n == 0 {
|
|
return nil, nil
|
|
}
|
|
|
|
valOffset := 8 + n*m + 4*n
|
|
if uint32(len(b)) < valOffset {
|
|
return nil, fmt.Errorf("decode: input too short (%d bytes, expected at least %d bytes)", len(b), valOffset)
|
|
}
|
|
|
|
totalValLength := binary.BigEndian.Uint32(b[valOffset-4 : valOffset])
|
|
if uint32(len(b)) < valOffset+totalValLength {
|
|
return nil, fmt.Errorf("decode: input too short (%d bytes, expected at least %d bytes)", len(b), valOffset+totalValLength)
|
|
}
|
|
|
|
for i := n - 1; int(i) >= 0; i-- {
|
|
key := b[8+i*m : 8+(i+1)*m]
|
|
idx0 := uint32(0)
|
|
if i > 0 {
|
|
idx0 = binary.BigEndian.Uint32(b[8+n*m+4*(i-1) : 8+n*m+4*i])
|
|
}
|
|
idx1 := binary.BigEndian.Uint32(b[8+n*m+4*i : 8+n*m+4*(i+1)])
|
|
val := b[valOffset+idx0 : valOffset+idx1]
|
|
|
|
if bytes.Equal(key, k) {
|
|
return val, nil
|
|
}
|
|
}
|
|
return nil, errors.New("not found")
|
|
}
|
|
|
|
//DecodeChangeSet - decodes bytes to changeset
|
|
//NOTE. Don't use it in real code. It's need for debug purposes
|
|
func DecodeChangeSet(b []byte) (*ChangeSet, error) {
|
|
h := new(ChangeSet)
|
|
h.Changes = make([]Change, 0)
|
|
if len(b) == 0 {
|
|
return h, nil
|
|
}
|
|
|
|
if len(b) < 8 {
|
|
return h, fmt.Errorf("decode: input too short (%d bytes)", len(b))
|
|
}
|
|
|
|
n := binary.BigEndian.Uint32(b[0:4])
|
|
m := binary.BigEndian.Uint32(b[4:8])
|
|
|
|
if n == 0 {
|
|
return h, nil
|
|
}
|
|
|
|
h.Changes = make([]Change, n)
|
|
|
|
valOffset := 8 + n*m + 4*n
|
|
if uint32(len(b)) < valOffset {
|
|
return h, fmt.Errorf("decode: input too short (%d bytes, expected at least %d bytes)", len(b), valOffset)
|
|
}
|
|
|
|
totalValLength := binary.BigEndian.Uint32(b[valOffset-4 : valOffset])
|
|
if uint32(len(b)) < valOffset+totalValLength {
|
|
return h, fmt.Errorf("decode: input too short (%d bytes, expected at least %d bytes)", len(b), valOffset+totalValLength)
|
|
}
|
|
|
|
for i := uint32(0); i < n; i++ {
|
|
key := b[8+i*m : 8+(i+1)*m]
|
|
idx0 := uint32(0)
|
|
if i > 0 {
|
|
idx0 = binary.BigEndian.Uint32(b[8+n*m+4*(i-1) : 8+n*m+4*i])
|
|
}
|
|
idx1 := binary.BigEndian.Uint32(b[8+n*m+4*i : 8+n*m+4*(i+1)])
|
|
val := b[valOffset+idx0 : valOffset+idx1]
|
|
|
|
h.Changes[i].Key = common.CopyBytes(key)
|
|
h.Changes[i].Value = common.CopyBytes(val)
|
|
}
|
|
|
|
return h, nil
|
|
}
|