quorum/core/state/managed_state.go

114 lines
2.8 KiB
Go
Raw Normal View History

package state
2015-03-16 03:59:52 -07:00
import (
"sync"
"github.com/ethereum/go-ethereum/common"
)
type account struct {
stateObject *StateObject
nstart uint64
nonces []bool
}
type ManagedState struct {
*StateDB
mu sync.RWMutex
accounts map[string]*account
}
// ManagedState returns a new managed state with the statedb as it's backing layer
func ManageState(statedb *StateDB) *ManagedState {
return &ManagedState{
StateDB: statedb,
accounts: make(map[string]*account),
}
}
// SetState sets the backing layer of the managed state
2015-03-13 09:47:00 -07:00
func (ms *ManagedState) SetState(statedb *StateDB) {
ms.mu.Lock()
defer ms.mu.Unlock()
ms.StateDB = statedb
}
// RemoveNonce removed the nonce from the managed state and all future pending nonces
2015-03-16 03:59:52 -07:00
func (ms *ManagedState) RemoveNonce(addr common.Address, n uint64) {
if ms.HasAccount(addr) {
ms.mu.Lock()
defer ms.mu.Unlock()
account := ms.getAccount(addr)
2015-03-13 09:47:00 -07:00
if n-account.nstart <= uint64(len(account.nonces)) {
reslice := make([]bool, n-account.nstart)
copy(reslice, account.nonces[:n-account.nstart])
account.nonces = reslice
}
}
}
// NewNonce returns the new canonical nonce for the managed account
2015-03-16 03:59:52 -07:00
func (ms *ManagedState) NewNonce(addr common.Address) uint64 {
ms.mu.RLock()
defer ms.mu.RUnlock()
account := ms.getAccount(addr)
for i, nonce := range account.nonces {
if !nonce {
return account.nstart + uint64(i)
}
}
2015-03-13 09:47:00 -07:00
account.nonces = append(account.nonces, true)
return uint64(len(account.nonces)-1) + account.nstart
}
// GetNonce returns the canonical nonce for the managed or unmanged account
func (ms *ManagedState) GetNonce(addr common.Address) uint64 {
if ms.HasAccount(addr) {
account := ms.getAccount(addr)
return uint64(len(account.nonces)) + account.nstart
} else {
return ms.StateDB.GetNonce(addr)
}
}
// SetNonce sets the new canonical nonce for the managed state
func (ms *ManagedState) SetNonce(addr common.Address, nonce uint64) {
so := ms.GetOrNewStateObject(addr)
so.SetNonce(nonce)
ms.accounts[addr.Str()] = newAccount(so)
}
// HasAccount returns whether the given address is managed or not
func (ms *ManagedState) HasAccount(addr common.Address) bool {
2015-03-16 03:59:52 -07:00
_, ok := ms.accounts[addr.Str()]
return ok
}
// populate the managed state
2015-03-16 03:59:52 -07:00
func (ms *ManagedState) getAccount(addr common.Address) *account {
straddr := addr.Str()
if account, ok := ms.accounts[straddr]; !ok {
so := ms.GetOrNewStateObject(addr)
2015-03-16 03:59:52 -07:00
ms.accounts[straddr] = newAccount(so)
2015-03-13 09:47:00 -07:00
} else {
// Always make sure the state account nonce isn't actually higher
// than the tracked one.
so := ms.StateDB.GetStateObject(addr)
if so != nil && uint64(len(account.nonces))+account.nstart < so.nonce {
2015-03-16 03:59:52 -07:00
ms.accounts[straddr] = newAccount(so)
2015-03-13 09:47:00 -07:00
}
}
2015-03-16 03:59:52 -07:00
return ms.accounts[straddr]
}
func newAccount(so *StateObject) *account {
return &account{so, so.nonce, nil}
}