This repository has been archived by the owner on May 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 346
/
state.go
115 lines (96 loc) · 2.94 KB
/
state.go
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
package acmstate
import (
"github.com/hyperledger/burrow/acm"
"github.com/hyperledger/burrow/binary"
"github.com/hyperledger/burrow/crypto"
"github.com/hyperledger/burrow/permission"
)
type AccountGetter interface {
// Get an account by its address return nil if it does not exist (which should not be an error)
GetAccount(address crypto.Address) (*acm.Account, error)
}
type AccountIterable interface {
// Iterates through accounts calling passed function once per account, if the consumer
// returns true the iteration breaks and returns true to indicate it iteration
// was escaped
IterateAccounts(consumer func(*acm.Account) error) (err error)
}
type AccountUpdater interface {
// Updates the fields of updatedAccount by address, creating the account
// if it does not exist
UpdateAccount(updatedAccount *acm.Account) error
// Remove the account at address
RemoveAccount(address crypto.Address) error
}
type StorageGetter interface {
// Retrieve a 32-byte value stored at key for the account at address, return Zero256 if key does not exist but
// error if address does not
GetStorage(address crypto.Address, key binary.Word256) (value binary.Word256, err error)
}
type StorageSetter interface {
// Store a 32-byte value at key for the account at address, setting to Zero256 removes the key
SetStorage(address crypto.Address, key, value binary.Word256) error
}
type StorageIterable interface {
// Iterates through the storage of account ad address calling the passed function once per account,
// if the iterator function returns true the iteration breaks and returns true to indicate it iteration
// was escaped
IterateStorage(address crypto.Address, consumer func(key, value binary.Word256) error) (err error)
}
type AccountStats struct {
AccountsWithCode uint64
AccountsWithoutCode uint64
}
type AccountStatsGetter interface {
GetAccountStats() AccountStats
}
// Compositions
// Read-only account and storage state
type Reader interface {
AccountGetter
StorageGetter
}
type Iterable interface {
AccountIterable
StorageIterable
}
// Read and list account and storage state
type IterableReader interface {
Iterable
Reader
}
type IterableStatsReader interface {
Iterable
Reader
AccountStatsGetter
}
type Writer interface {
AccountUpdater
StorageSetter
}
// Read and write account and storage state
type ReaderWriter interface {
Reader
Writer
}
type IterableReaderWriter interface {
Iterable
Reader
Writer
}
func GlobalPermissionsAccount(getter AccountGetter) *acm.Account {
acc, err := getter.GetAccount(acm.GlobalPermissionsAddress)
if err != nil {
panic("Could not get global permission account, but this must exist")
}
return acc
}
// Get global permissions from the account at GlobalPermissionsAddress
func GlobalAccountPermissions(getter AccountGetter) permission.AccountPermissions {
if getter == nil {
return permission.AccountPermissions{
Roles: []string{},
}
}
return GlobalPermissionsAccount(getter).Permissions
}