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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
use super::{
super::{
CallData,
Result,
TypedEncoded,
},
OffAccountId,
OffBalance,
};
use crate::Environment;
use ink_prelude::vec::Vec;
pub type Bytes = Vec<u8>;
pub struct ExecContext {
pub caller: OffAccountId,
pub callee: OffAccountId,
pub transferred_value: OffBalance,
pub gas: OffBalance,
pub call_data: CallData,
pub output: Option<Bytes>,
}
impl ExecContext {
pub fn build<T>() -> ExecContextBuilder<T>
where
T: Environment,
{
ExecContextBuilder::new()
}
pub fn caller<T>(&self) -> Result<T::AccountId>
where
T: Environment,
{
self.caller.decode().map_err(Into::into)
}
pub fn callee<T>(&self) -> Result<T::AccountId>
where
T: Environment,
{
self.callee.decode().map_err(Into::into)
}
pub fn transferred_value<T>(&self) -> Result<T::Balance>
where
T: Environment,
{
self.transferred_value.decode().map_err(Into::into)
}
pub fn gas<T>(&self) -> Result<T::Balance>
where
T: Environment,
{
self.gas.decode().map_err(Into::into)
}
#[allow(
dead_code,
)]
pub fn call_data(&self) -> &CallData {
&self.call_data
}
#[allow(
dead_code,
)]
pub fn output(&self) -> Option<&Bytes> {
self.output.as_ref()
}
}
pub struct ExecContextBuilder<T>
where
T: Environment,
{
caller: Option<T::AccountId>,
callee: Option<T::AccountId>,
transferred_value: Option<T::Balance>,
gas: Option<T::Balance>,
call_data: Option<CallData>,
}
impl<T> ExecContextBuilder<T>
where
T: Environment,
{
pub fn new() -> Self {
Self {
caller: None,
callee: None,
transferred_value: None,
gas: None,
call_data: None,
}
}
pub fn caller(mut self, caller: T::AccountId) -> Self {
if self.caller.is_some() {
panic!("already has a caller");
}
self.caller = Some(caller);
self
}
pub fn callee(mut self, callee: T::AccountId) -> Self {
if self.callee.is_some() {
panic!("already has a callee");
}
self.callee = Some(callee);
self
}
pub fn gas(mut self, gas: T::Balance) -> Self {
if self.gas.is_some() {
panic!("already has provided gas");
}
self.gas = Some(gas);
self
}
pub fn transferred_value(mut self, transferred_value: T::Balance) -> Self {
if self.transferred_value.is_some() {
panic!("already has set transferred value (endowment)");
}
self.transferred_value = Some(transferred_value);
self
}
pub fn call_data(mut self, call_data: CallData) -> Self {
if self.call_data.is_some() {
panic!("already has set call data");
}
self.call_data = Some(call_data);
self
}
pub fn finish(self) -> ExecContext {
let caller = self.caller.expect("need a valid caller at this point");
let callee = self.callee.expect("need a valid callee at this point");
let transferred_value = self
.transferred_value
.expect("need a valid transferred value (endowment) at this point");
let gas = self.gas.expect("need valid provided gas at this point");
ExecContext {
caller: TypedEncoded::new(&caller),
callee: TypedEncoded::new(&callee),
transferred_value: TypedEncoded::new(&transferred_value),
gas: TypedEncoded::new(&gas),
call_data: self.call_data.unwrap(),
output: None,
}
}
}