historyv2

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 20, 2023 License: Apache-2.0 Imports: 12 Imported by: 10

README

#Changesets encoding

Storage changeset encoding

Storage encoding contains several blocks: Address hashes, Incarnations, Length of values, Values. AccountChangeSet is serialized in the following manner in order to facilitate binary search

Address hashes

There are a lot of address hashes duplication in storage changeset when we have multiple changes in one contract. To avoid it we can store only unique address hashes. First 4 bytes contains number or unique contract hashes in one changeset. Then we store address hashes with sum of key hashes from first element.

For example: for addrHash1Inc1Key1, addrHash1Inc1Key2, addrHash2Inc1Key1, addrHash2Inc1Key3 it stores 2,addrHash1,2,addrHash2,4

Incarnations

Currently, there are a few not default incarnations(!=1) in current state. That was the reason why we store incarnation only if it's not equal to fffffffe(inverted 1). First part is 4 byte that contains number of not default incarnations Then we store array of id of address hash(4 byte) plus incarnation(8 byte) For example: for addrHash1fffffffe..., addrHash1fffffffd... it stores 1,1,fffffffd

Values lengths

The default value length is 32(common.Hash), but if we remove leading 0 then average size became ~7. Because a length of value could be from 0 to 32 we need this section to be able to find quite fast value by key. It is contiguous array of accumulating value indexes like len(val0), len(val0)+len(val1), ..., len(val0)+len(val1)+...+len(val_{N-1}) To reduce cost of it we have three numbers: numOfUint8, numOfUint16, numOfUint32. They can answer to the question: How many lengths of values we can put to uint8, uint16, uint32. This number could be huge if one of the contracts was suicided during block execution. Then we could have thousands of empty values, and we are able to store them in uint8(but it depends). For example for values: "ffa","","faa" it stores 3,0,0,3,3,6

Values

Contiguous array of values.

Finally

Value Type Comment
numOfUniqueElements uint32
Address hashes [numOfUniqueElements]{[32]byte+[4]byte} [numOfUniqueElements](common.Hash + uint32)
numOfNotDefaultIncarnations uint32 mostly - 0
Incarnations [numOfNotDefaultIncarnations]{[4]byte + [8]byte} []{idOfAddrHash(uint32) + incarnation(uint64)}
Keys [][32]byte []common.Hash
numOfUint8 uint32
numOfUint16 uint32
numOfUint32 uint32
Values lengths in uint8 [numOfUint8]uint8
Values lengths in uint16 [numOfUint16]uint16
Values lengths in uint32 [numOfUint32]uint32
Values [][]byte

Account changeset encoding

AccountChangeSet is serialized in the following manner in order to facilitate binary search. Account changeset encoding contains several blocks: Keys, Length of values, Values. Key is address hash of account. Value is CBOR encoded account without storage root and code hash.

Keys

The number of keys N (uint32, 4 bytes) Contiguous array of keys (N*32 bytes)

Values lengthes

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).

Values

Contiguous array of values.

Finally

Value Type Comment
num of keys uint32
address hashes [num of keys][32]byte [num of keys]common.Hash
values lengthes [num of keys]uint32
values [num of keys][]byte

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrNotFound = errors.New("not found")
)
View Source
var Mapper = map[string]CSMapper{
	kv.AccountChangeSet: {
		IndexBucket:   kv.E2AccountsHistory,
		IndexChunkKey: AccountIndexChunkKey,
		New:           NewAccountChangeSet,
		Find:          FindAccount,
		Encode:        EncodeAccounts,
		Decode:        DecodeAccounts,
	},
	kv.StorageChangeSet: {
		IndexBucket:   kv.E2StorageHistory,
		IndexChunkKey: StorageIndexChunkKey,
		Find:          FindStorage,
		New:           NewStorageChangeSet,
		Encode:        EncodeStorage,
		Decode:        DecodeStorage,
	},
}

Functions

func AccountIndexChunkKey

func AccountIndexChunkKey(key []byte, blockNumber uint64) []byte

func AvailableFrom

func AvailableFrom(tx kv.Tx) (uint64, error)

func AvailableStorageFrom

func AvailableStorageFrom(tx kv.Tx) (uint64, error)

func DecodeAccounts

func DecodeAccounts(dbKey, dbValue []byte) (uint64, []byte, []byte, error)

func DecodeStorage

func DecodeStorage(dbKey, dbValue []byte) (uint64, []byte, []byte, error)

func EncodeAccounts

func EncodeAccounts(blockN uint64, s *ChangeSet, f func(k, v []byte) error) error

func EncodeStorage

func EncodeStorage(blockN uint64, s *ChangeSet, f func(k, v []byte) error) error

func FindAccount

func FindAccount(c kv.CursorDupSort, blockNumber uint64, key []byte) ([]byte, error)

func FindByHistory

func FindByHistory(indexC kv.Cursor, changesC kv.CursorDupSort, storage bool, key []byte, timestamp uint64) ([]byte, bool, error)

func FindStorage

func FindStorage(c kv.CursorDupSort, blockNumber uint64, k []byte) ([]byte, error)

func ForEach

func ForEach(db kv.Tx, bucket string, startkey []byte, walker func(blockN uint64, k, v []byte) error) error

func ForPrefix

func ForPrefix(db kv.Tx, bucket string, startkey []byte, walker func(blockN uint64, k, v []byte) error) error

func FromDBFormat

func FromDBFormat(dbKey, dbValue []byte) (uint64, []byte, []byte, error)

Encoded Method

func StorageIndexChunkKey

func StorageIndexChunkKey(key []byte, blockNumber uint64) []byte

func Truncate

func Truncate(tx kv.RwTx, from uint64) error

Types

type CSMapper

type CSMapper struct {
	IndexBucket   string
	IndexChunkKey func([]byte, uint64) []byte
	Find          func(cursor kv.CursorDupSort, blockNumber uint64, key []byte) ([]byte, error)
	New           func() *ChangeSet
	Encode        Encoder
	Decode        Decoder
}

type Change

type Change struct {
	Key   []byte
	Value []byte
}

type ChangeSet

type ChangeSet struct {
	// Invariant: all keys are of the same size.
	Changes []Change
	// contains filtered or unexported fields
}

ChangeSet is a map with keys of the same size. Both keys and values are byte strings.

func NewAccountChangeSet

func NewAccountChangeSet() *ChangeSet

func NewChangeSet

func NewChangeSet() *ChangeSet

func NewStorageChangeSet

func NewStorageChangeSet() *ChangeSet

func (*ChangeSet) Add

func (s *ChangeSet) Add(key []byte, value []byte) error

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 (*ChangeSet) ChangedKeys

func (s *ChangeSet) ChangedKeys() map[string]struct{}

func (*ChangeSet) Equals

func (s *ChangeSet) Equals(s2 *ChangeSet) bool

func (*ChangeSet) KeySize

func (s *ChangeSet) KeySize() int

END sort.Interface

func (*ChangeSet) Len

func (s *ChangeSet) Len() int

func (*ChangeSet) Less

func (s *ChangeSet) Less(i, j int) bool

func (*ChangeSet) Swap

func (s *ChangeSet) Swap(i, j int)

type Decoder

type Decoder func(dbKey, dbValue []byte) (blockN uint64, k, v []byte, err error)

type Encoder

type Encoder func(blockN uint64, s *ChangeSet, f func(k, v []byte) error) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL