-
Notifications
You must be signed in to change notification settings - Fork 178
/
contract_reader.go
188 lines (157 loc) · 4.39 KB
/
contract_reader.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package environment
import (
"fmt"
"github.com/onflow/cadence/runtime"
"github.com/onflow/cadence/runtime/ast"
"github.com/onflow/cadence/runtime/common"
"github.com/onflow/flow-go/fvm/errors"
"github.com/onflow/flow-go/fvm/tracing"
"github.com/onflow/flow-go/model/flow"
"github.com/onflow/flow-go/module/trace"
)
// ContractReader provide read access to contracts.
type ContractReader struct {
tracer tracing.TracerSpan
meter Meter
accounts Accounts
}
func NewContractReader(
tracer tracing.TracerSpan,
meter Meter,
accounts Accounts,
) *ContractReader {
return &ContractReader{
tracer: tracer,
meter: meter,
accounts: accounts,
}
}
func (reader *ContractReader) GetAccountContractNames(
runtimeAddress common.Address,
) (
[]string,
error,
) {
defer reader.tracer.StartChildSpan(
trace.FVMEnvGetAccountContractNames).End()
err := reader.meter.MeterComputation(
ComputationKindGetAccountContractNames,
1)
if err != nil {
return nil, fmt.Errorf("get account contract names failed: %w", err)
}
address := flow.ConvertAddress(runtimeAddress)
return reader.accounts.GetContractNames(address)
}
func (reader *ContractReader) ResolveLocation(
identifiers []runtime.Identifier,
location runtime.Location,
) (
[]runtime.ResolvedLocation,
error,
) {
defer reader.tracer.StartExtensiveTracingChildSpan(
trace.FVMEnvResolveLocation).End()
err := reader.meter.MeterComputation(ComputationKindResolveLocation, 1)
if err != nil {
return nil, fmt.Errorf("resolve location failed: %w", err)
}
addressLocation, isAddress := location.(common.AddressLocation)
// if the location is not an address location, e.g. an identifier location
// (`import Crypto`), then return a single resolved location which declares
// all identifiers.
if !isAddress {
return []runtime.ResolvedLocation{
{
Location: location,
Identifiers: identifiers,
},
}, nil
}
// if the location is an address,
// and no specific identifiers where requested in the import statement,
// then fetch all identifiers at this address
if len(identifiers) == 0 {
address := flow.ConvertAddress(addressLocation.Address)
contractNames, err := reader.accounts.GetContractNames(address)
if err != nil {
return nil, fmt.Errorf("resolving location failed: %w", err)
}
// if there are no contractNames deployed,
// then return no resolved locations
if len(contractNames) == 0 {
return nil, nil
}
identifiers = make([]ast.Identifier, len(contractNames))
for i := range identifiers {
identifiers[i] = runtime.Identifier{
Identifier: contractNames[i],
}
}
}
// return one resolved location per identifier.
// each resolved location is an address contract location
resolvedLocations := make([]runtime.ResolvedLocation, len(identifiers))
for i := range resolvedLocations {
identifier := identifiers[i]
resolvedLocations[i] = runtime.ResolvedLocation{
Location: common.AddressLocation{
Address: addressLocation.Address,
Name: identifier.Identifier,
},
Identifiers: []runtime.Identifier{identifier},
}
}
return resolvedLocations, nil
}
func (reader *ContractReader) getCode(
location common.AddressLocation,
) (
[]byte,
error,
) {
defer reader.tracer.StartChildSpan(trace.FVMEnvGetCode).End()
err := reader.meter.MeterComputation(ComputationKindGetCode, 1)
if err != nil {
return nil, fmt.Errorf("get code failed: %w", err)
}
add, err := reader.accounts.GetContract(location.Name, flow.ConvertAddress(location.Address))
if err != nil {
return nil, fmt.Errorf("get code failed: %w", err)
}
return add, nil
}
func (reader *ContractReader) GetCode(
location runtime.Location,
) (
[]byte,
error,
) {
contractLocation, ok := location.(common.AddressLocation)
if !ok {
return nil, errors.NewInvalidLocationErrorf(
location,
"expecting an AddressLocation, but other location types are passed")
}
return reader.getCode(contractLocation)
}
func (reader *ContractReader) GetAccountContractCode(
location common.AddressLocation,
) (
[]byte,
error,
) {
defer reader.tracer.StartChildSpan(
trace.FVMEnvGetAccountContractCode).End()
err := reader.meter.MeterComputation(
ComputationKindGetAccountContractCode,
1)
if err != nil {
return nil, fmt.Errorf("get account contract code failed: %w", err)
}
code, err := reader.getCode(location)
if err != nil {
return nil, fmt.Errorf("get account contract code failed: %w", err)
}
return code, nil
}