aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/managed_state.go
blob: aa6650d9bff1be1a1c596df9ee76dbedfe2287d6 (plain) (blame)
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
package state

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.Copy(),
        accounts: make(map[string]*account),
    }
}

// SetState sets the backing layer of the managed state
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
func (ms *ManagedState) RemoveNonce(addr common.Address, n uint64) {
    if ms.hasAccount(addr) {
        ms.mu.Lock()
        defer ms.mu.Unlock()

        account := ms.getAccount(addr)
        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
func (ms *ManagedState) NewNonce(addr common.Address) uint64 {
    ms.mu.Lock()
    defer ms.mu.Unlock()

    account := ms.getAccount(addr)
    for i, nonce := range account.nonces {
        if !nonce {
            return account.nstart + uint64(i)
        }
    }
    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 {
    ms.mu.RLock()
    defer ms.mu.RUnlock()

    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) {
    ms.mu.Lock()
    defer ms.mu.Unlock()

    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 {
    ms.mu.RLock()
    defer ms.mu.RUnlock()
    return ms.hasAccount(addr)
}

func (ms *ManagedState) hasAccount(addr common.Address) bool {
    _, ok := ms.accounts[addr.Str()]
    return ok
}

// populate the managed state
func (ms *ManagedState) getAccount(addr common.Address) *account {
    straddr := addr.Str()
    if account, ok := ms.accounts[straddr]; !ok {
        so := ms.GetOrNewStateObject(addr)
        ms.accounts[straddr] = newAccount(so)
    } 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 {
            ms.accounts[straddr] = newAccount(so)
        }

    }

    return ms.accounts[straddr]
}

func newAccount(so *StateObject) *account {
    return &account{so, so.nonce, nil}
}