aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/managed_state.go
blob: 0fcc1be67dcd2bc9c737c6c0c2d3a3cbe773691e (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
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
}

func ManageState(statedb *StateDB) *ManagedState {
    return &ManagedState{
        StateDB:  statedb,
        accounts: make(map[string]*account),
    }
}

func (ms *ManagedState) SetState(statedb *StateDB) {
    ms.mu.Lock()
    defer ms.mu.Unlock()
    ms.StateDB = statedb
}

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
        }
    }
}

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)
        }
    }
    account.nonces = append(account.nonces, true)
    return uint64(len(account.nonces)) + account.nstart
}

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

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 - 1, nil}
}