state

package
v1.1.1 Latest Latest
Warning

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

Go to latest
Published: Oct 29, 2019 License: GPL-3.0 Imports: 15 Imported by: 0

Documentation

Overview

Package state provides a caching layer atop the Ethereum state trie.

Index

Constants

This section is empty.

Variables

View Source
var MaxTrieCacheGen = uint16(120)

Trie cache generation limit after which to evic trie nodes from memory.

Functions

func EmptyHash

func EmptyHash(h types.Hash) bool

func NewStateSync

func NewStateSync(root types.Hash, database trie.DatabaseReader) *trie.TrieSync

NewStateSync create a new state trie download scheduler.

Types

type Account

type Account struct {
	Nonce    uint64
	Root     types.Hash // merkle root of the storage trie
	CodeHash []byte

	InterpreterID types.Hash    // interpreter id
	Creator       types.Address // creator address
}

Account is the consensus representation of accounts. These objects are stored in the main account trie.

func (*Account) DecodeMsg

func (z *Account) DecodeMsg(dc *msgp.Reader) (err error)

DecodeMsg implements msgp.Decodable

func (*Account) EncodeMsg

func (z *Account) EncodeMsg(en *msgp.Writer) (err error)

EncodeMsg implements msgp.Encodable

func (*Account) MarshalMsg

func (z *Account) MarshalMsg(b []byte) (o []byte, err error)

MarshalMsg implements msgp.Marshaler

func (*Account) Msgsize

func (z *Account) Msgsize() (s int)

Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message

func (*Account) UnmarshalMsg

func (z *Account) UnmarshalMsg(bts []byte) (o []byte, err error)

UnmarshalMsg implements msgp.Unmarshaler

type Code

type Code []byte

func (*Code) DecodeMsg

func (z *Code) DecodeMsg(dc *msgp.Reader) (err error)

DecodeMsg implements msgp.Decodable

func (Code) EncodeMsg

func (z Code) EncodeMsg(en *msgp.Writer) (err error)

EncodeMsg implements msgp.Encodable

func (Code) MarshalMsg

func (z Code) MarshalMsg(b []byte) (o []byte, err error)

MarshalMsg implements msgp.Marshaler

func (Code) Msgsize

func (z Code) Msgsize() (s int)

Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message

func (Code) String

func (self Code) String() string

func (*Code) UnmarshalMsg

func (z *Code) UnmarshalMsg(bts []byte) (o []byte, err error)

UnmarshalMsg implements msgp.Unmarshaler

type Database

type Database interface {
	// Accessing tries:
	// OpenTrie opens the main account trie.
	// OpenStorageTrie opens the storage trie of an account.
	OpenTrie(root types.Hash) (Trie, error)
	OpenStorageTrie(addrHash, root types.Hash) (Trie, error)
	// Accessing contract code:
	ContractCode(addrHash, codeHash types.Hash) ([]byte, error)
	ContractCodeSize(addrHash, codeHash types.Hash) (int, error)
	// CopyTrie returns an independent copy of the given trie.
	CopyTrie(Trie) Trie
}

Database wraps access to tries and contract code.

func NewDatabase

func NewDatabase(db database.IDatabase) Database

NewDatabase creates a backing store for state. The returned database is safe for concurrent use and retains cached trie nodes in memory.

type Dump

type Dump struct {
	Root     string                 `json:"root"`
	Accounts map[string]DumpAccount `json:"accounts"`
}

type DumpAccount

type DumpAccount struct {
	Nonce    uint64            `json:"nonce"`
	Root     string            `json:"root"`
	CodeHash string            `json:"codeHash"`
	Code     string            `json:"code"`
	Storage  map[string]string `json:"storage"`
}

type ManagedState

type ManagedState struct {
	*StateDB
	// contains filtered or unexported fields
}

func ManageState

func ManageState(statedb *StateDB) *ManagedState

ManagedState returns a new managed state with the statedb as it's backing layer

func (*ManagedState) GetNonce

func (ms *ManagedState) GetNonce(addr types.Address) uint64

GetNonce returns the canonical nonce for the managed or unmanaged account.

Because GetNonce mutates the DB, we must take a write lock.

func (*ManagedState) HasAccount

func (ms *ManagedState) HasAccount(addr types.Address) bool

HasAccount returns whether the given address is managed or not

func (*ManagedState) NewNonce

func (ms *ManagedState) NewNonce(addr types.Address) uint64

NewNonce returns the new canonical nonce for the managed account

func (*ManagedState) RemoveNonce

func (ms *ManagedState) RemoveNonce(addr types.Address, n uint64)

RemoveNonce removed the nonce from the managed state and all future pending nonces

func (*ManagedState) SetNonce

func (ms *ManagedState) SetNonce(addr types.Address, nonce uint64)

SetNonce sets the new canonical nonce for the managed state

func (*ManagedState) SetState

func (ms *ManagedState) SetState(statedb *StateDB)

SetState sets the backing layer of the managed state

type NodeIterator

type NodeIterator struct {
	Hash   types.Hash // Hash of the current entry being iterated (nil if not standalone)
	Parent types.Hash // Hash of the first full ancestor node (nil if current is the root)

	Error error // Failure set in case of an internal error in the iterator
	// contains filtered or unexported fields
}

NodeIterator is an iterator to traverse the entire state trie post-order, including all of the contract code and contract state tries.

func NewNodeIterator

func NewNodeIterator(state *StateDB) *NodeIterator

NewNodeIterator creates an post-order state node iterator.

func (*NodeIterator) Next

func (it *NodeIterator) Next() bool

Next moves the iterator to the next node, returning whether there are any further nodes. In case of an internal error this method returns false and sets the Error field to the encountered failure.

type StatInfo

type StatInfo struct {
	TnewsoNormal   int // total new normal state object amount
	TnewsoContract int // total new contract state object amount
	TnewState      int // total new state in all state object
}

type StateDB

type StateDB struct {
	// contains filtered or unexported fields
}

StateDBs within the ethereum protocol are used to store anything within the merkle trie. StateDBs take care of caching and storing nested states. It's the general query interface to retrieve: * Contracts * Accounts

func New

func New(root types.Hash, db Database) (*StateDB, error)

Create a new state from a given trie

func (*StateDB) AddLog

func (self *StateDB) AddLog(log *transaction.Log)

func (*StateDB) AddPreimage

func (self *StateDB) AddPreimage(hash types.Hash, preimage []byte)

AddPreimage records a SHA3 preimage seen by the VM.

func (*StateDB) AddRefund

func (self *StateDB) AddRefund(value uint64)

func (*StateDB) CommitTo

func (s *StateDB) CommitTo(dbw trie.DatabaseWriter, deleteEmptyObjects bool) (root types.Hash, si *StatInfo, err error)

CommitTo writes the state to the given database.

func (*StateDB) Copy

func (self *StateDB) Copy() *StateDB

Copy creates a deep, independent copy of the state. Snapshots of the copied state cannot be applied to the copy.

func (*StateDB) CreateAccount

func (self *StateDB) CreateAccount(addr types.Address)

CreateAccount explicitly creates a state object. If a state object with the address already exists the balance is carried over to the new account.

CreateAccount is called during the VM CREATE operation. The situation might arise that a contract does the following:

  1. sends funds to sha(account ++ (nonce + 1))
  2. tx_create(sha(account ++ nonce)) (note that this gets the address of 1)

Carrying over the balance ensures that Bchain doesn't disappear.

func (*StateDB) DeleteSuicides

func (s *StateDB) DeleteSuicides()

DeleteSuicides flags the suicided objects for deletion so that it won't be referenced again when called / queried up on.

DeleteSuicides should not be used for consensus related updates under any circumstances.

func (*StateDB) Dump

func (self *StateDB) Dump() []byte

func (*StateDB) Empty

func (self *StateDB) Empty(addr types.Address) bool

Empty returns whether the state object is either non-existent or empty according to the MIP161 specification (balance = nonce = code = 0)

func (*StateDB) Error

func (self *StateDB) Error() error

func (*StateDB) Exist

func (self *StateDB) Exist(addr types.Address) bool

Exist reports whether the given account address exists in the state. Notably this also returns true for suicided accounts.

func (*StateDB) Finalise

func (s *StateDB) Finalise(deleteEmptyObjects bool)

Finalise finalises the state by removing the self destructed objects and clears the journal as well as the refunds.

func (*StateDB) ForEachStorage

func (db *StateDB) ForEachStorage(addr types.Address, cb func(key, value types.Hash) bool)

func (*StateDB) GetCode

func (self *StateDB) GetCode(addr types.Address) []byte

func (*StateDB) GetCodeHash

func (self *StateDB) GetCodeHash(addr types.Address) types.Hash

func (*StateDB) GetCodeSize

func (self *StateDB) GetCodeSize(addr types.Address) int

func (*StateDB) GetCreator

func (self *StateDB) GetCreator(addr types.Address) types.Address

func (*StateDB) GetInterpreterID

func (self *StateDB) GetInterpreterID(addr types.Address) types.Hash

func (*StateDB) GetLogs

func (self *StateDB) GetLogs(hash types.Hash) []*transaction.Log

func (*StateDB) GetNonce

func (self *StateDB) GetNonce(addr types.Address) uint64

func (*StateDB) GetOrNewStateObject

func (self *StateDB) GetOrNewStateObject(addr types.Address) *stateObject

Retrieve a state object or create a new state object if nil

func (*StateDB) GetPreimage

func (self *StateDB) GetPreimage(hash types.Hash) []byte

GetPreimage called by Vm

func (*StateDB) GetRefund

func (self *StateDB) GetRefund() uint64

GetRefund returns the current value of the refund counter.

func (*StateDB) GetState

func (self *StateDB) GetState(a types.Address, b types.Hash) types.Hash

func (*StateDB) HasSuicided

func (self *StateDB) HasSuicided(addr types.Address) bool

func (*StateDB) IntermediateRoot

func (s *StateDB) IntermediateRoot() types.Hash

IntermediateRoot computes the current root hash of the state trie. It is called in between transactions to get the root hash that goes into transaction receipts.

func (*StateDB) Logs

func (self *StateDB) Logs() []*transaction.Log

func (*StateDB) MarkStateObjectDirty

func (self *StateDB) MarkStateObjectDirty(addr types.Address)

MarkStateObjectDirty adds the specified object to the dirty map to avoid costly state object cache iteration to find a handful of modified ones.

func (*StateDB) Preimages

func (self *StateDB) Preimages() map[types.Hash][]byte

Preimages returns a list of SHA3 preimages that have been submitted.

func (*StateDB) Prepare

func (self *StateDB) Prepare(thash, bhash types.Hash, ti int)

Prepare sets the current transaction hash and index and block hash which is used when the VM emits new state logs.

func (*StateDB) RawDump

func (self *StateDB) RawDump() Dump

func (*StateDB) Reset

func (self *StateDB) Reset(root types.Hash) error

Reset clears out all emphemeral state objects from the state db, but keeps the underlying state trie to avoid reloading data for the next operations.

func (*StateDB) RevertToSnapshot

func (self *StateDB) RevertToSnapshot(revid int)

RevertToSnapshot reverts all state changes made since the given revision.

func (*StateDB) SetCode

func (self *StateDB) SetCode(addr types.Address, code []byte)

func (*StateDB) SetCreator

func (self *StateDB) SetCreator(addr types.Address, creator types.Address)

func (*StateDB) SetInterpreterID

func (self *StateDB) SetInterpreterID(addr types.Address, iid types.Hash)

func (*StateDB) SetNonce

func (self *StateDB) SetNonce(addr types.Address, nonce uint64)

* SETTERS

func (*StateDB) SetState

func (self *StateDB) SetState(addr types.Address, key types.Hash, value types.Hash)

func (*StateDB) Snapshot

func (self *StateDB) Snapshot() int

Snapshot returns an identifier for the current revision of the state.

func (*StateDB) StorageTrie

func (self *StateDB) StorageTrie(a types.Address) Trie

StorageTrie returns the storage trie of an account. The return value is a copy and is nil for non-existent accounts.

func (*StateDB) Suicide

func (self *StateDB) Suicide(addr types.Address) bool

Suicide marks the given account as suicided. This clears the account balance.

The account's state object is still available until the state is committed, getStateObject will return a non-nil account after Suicide.

type Storage

type Storage map[types.Hash]types.Hash

func (Storage) Copy

func (self Storage) Copy() Storage

func (Storage) String

func (self Storage) String() (str string)

type Trie

type Trie interface {
	TryGet(key []byte) ([]byte, error)
	TryUpdate(key, value []byte) error
	TryDelete(key []byte) error
	CommitTo(trie.DatabaseWriter) (types.Hash, error)
	Hash() types.Hash
	NodeIterator(startKey []byte) trie.NodeIterator
	GetKey([]byte) []byte // TODO(fjl): remove this when SecureTrie is removed
}

Trie is a bchain Merkle Trie.

Jump to

Keyboard shortcuts

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