Newer
Older
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use super::{
hashing,
Account,
EnvInstance,
};
use crate::env::{
call::{
CallData,
CallParams,
InstantiateParams,
ReturnType,
},
Env,
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
EnvTypes,
Result,
Topics,
TypedEnv,
};
use ink_primitives::Key;
impl EnvInstance {
/// Returns the callee account.
fn callee_account(&self) -> &Account {
let callee = self
.exec_context()
.expect("uninitialized execution context")
.callee
.clone();
self.accounts
.get_account_off(&callee)
.expect("callee account does not exist")
}
/// Returns the callee account as mutable reference.
fn callee_account_mut(&mut self) -> &mut Account {
let callee = self
.exec_context()
.expect("uninitialized execution context")
.callee
.clone();
self.accounts
.get_account_off_mut(&callee)
.expect("callee account does not exist")
}
}
impl Env for EnvInstance {
fn set_contract_storage<V>(&mut self, key: Key, value: &V)
where
V: scale::Encode,
{
self.callee_account_mut()
.set_storage(key, value)
.expect("callee account is not a smart contract");
}
fn get_contract_storage<R>(&mut self, key: Key) -> Option<Result<R>>
where
R: scale::Decode,
{
self.callee_account()
.get_storage::<R>(key)
.map(|result| result.map_err(Into::into))
}
fn clear_contract_storage(&mut self, key: Key) {
self.callee_account_mut()
.clear_storage(key)
.expect("callee account is not a smart contract");
}
fn get_runtime_storage<R>(&mut self, runtime_key: &[u8]) -> Option<Result<R>>
where
R: scale::Decode,
{
self.runtime_storage.load::<R>(runtime_key)
}
fn input(&mut self) -> Result<CallData> {
self.exec_context()
.map(|exec_ctx| &exec_ctx.call_data)
.map(Clone::clone)
.map_err(|_| scale::Error::from("could not decode input call data"))
.map_err(Into::into)
}
fn output<R>(&mut self, return_value: &R)
where
R: scale::Encode,
{
let ctx = self
.exec_context_mut()
.expect("uninitialized execution context");
ctx.output = Some(return_value.encode());
}
fn println(&mut self, content: &str) {
self.console.println(content)
}
fn hash_keccak_256(input: &[u8], output: &mut [u8; 32]) {
hashing::keccak_256(input, output)
}
fn hash_blake2_256(input: &[u8], output: &mut [u8; 32]) {
hashing::blake2b_256(input, output)
}
fn hash_blake2_128(input: &[u8], output: &mut [u8; 16]) {
hashing::blake2b_128(input, output)
}
fn hash_sha2_256(input: &[u8], output: &mut [u8; 32]) {
hashing::sha2_256(input, output)
}
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
232
233
}
impl TypedEnv for EnvInstance {
fn caller<T: EnvTypes>(&mut self) -> Result<T::AccountId> {
self.exec_context()
.expect("uninitialized execution context")
.caller::<T>()
.map_err(|_| scale::Error::from("could not decode caller"))
.map_err(Into::into)
}
fn transferred_balance<T: EnvTypes>(&mut self) -> Result<T::Balance> {
self.exec_context()
.expect("uninitialized execution context")
.transferred_value::<T>()
.map_err(|_| scale::Error::from("could not decode transferred balance"))
.map_err(Into::into)
}
fn gas_price<T: EnvTypes>(&mut self) -> Result<T::Balance> {
self.chain_spec
.gas_price::<T>()
.map_err(|_| scale::Error::from("could not decode gas price"))
.map_err(Into::into)
}
fn gas_left<T: EnvTypes>(&mut self) -> Result<T::Balance> {
self.exec_context()
.expect("uninitialized execution context")
.gas::<T>()
.map_err(|_| scale::Error::from("could not decode gas left"))
.map_err(Into::into)
}
fn block_timestamp<T: EnvTypes>(&mut self) -> Result<T::Timestamp> {
self.current_block()
.expect("uninitialized execution context")
.timestamp::<T>()
.map_err(|_| scale::Error::from("could not decode block time"))
.map_err(Into::into)
}
fn account_id<T: EnvTypes>(&mut self) -> Result<T::AccountId> {
self.exec_context()
.expect("uninitialized execution context")
.callee::<T>()
.map_err(|_| scale::Error::from("could not decode callee"))
.map_err(Into::into)
}
fn balance<T: EnvTypes>(&mut self) -> Result<T::Balance> {
self.callee_account()
.balance::<T>()
.map_err(|_| scale::Error::from("could not decode callee balance"))
.map_err(Into::into)
}
fn rent_allowance<T: EnvTypes>(&mut self) -> Result<T::Balance> {
self.callee_account()
.rent_allowance::<T>()
.map_err(|_| scale::Error::from("could not decode callee rent allowance"))
.map_err(Into::into)
}
fn block_number<T: EnvTypes>(&mut self) -> Result<T::BlockNumber> {
self.current_block()
.expect("uninitialized execution context")
.number::<T>()
.map_err(|_| scale::Error::from("could not decode block number"))
.map_err(Into::into)
}
fn minimum_balance<T: EnvTypes>(&mut self) -> Result<T::Balance> {
self.chain_spec
.minimum_balance::<T>()
.map_err(|_| scale::Error::from("could not decode minimum balance"))
.map_err(Into::into)
}
fn tombstone_deposit<T: EnvTypes>(&mut self) -> Result<T::Balance> {
self.chain_spec
.tombstone_deposit::<T>()
.map_err(|_| scale::Error::from("could not decode tombstone deposit"))
.map_err(Into::into)
}
fn emit_event<T, Event>(&mut self, new_event: Event)
where
T: EnvTypes,
Event: Topics<T> + scale::Encode,
{
self.emitted_events.record::<T, Event>(new_event)
}
fn set_rent_allowance<T>(&mut self, new_rent_allowance: T::Balance)
where
T: EnvTypes,
{
self.callee_account_mut()
.set_rent_allowance::<T>(new_rent_allowance)
.expect("could not encode rent allowance")
}
Hero Bird
committed
fn invoke_contract<T, Args>(
&mut self,
_call_params: &CallParams<T, Args, ()>,
) -> Result<()>
Hero Bird
committed
Args: scale::Encode,
{
unimplemented!("off-chain environment does not support contract invokation")
}
fn invoke_runtime<T>(&mut self, params: &T::Call) -> Result<()>
where
T: EnvTypes,
{
self.runtime_call_handler.invoke::<T>(params)
}
Hero Bird
committed
fn eval_contract<T, Args, R>(
Hero Bird
committed
_call_params: &CallParams<T, Args, ReturnType<R>>,
) -> Result<R>
where
T: EnvTypes,
Hero Bird
committed
Args: scale::Encode,
R: scale::Decode,
{
unimplemented!("off-chain environment does not support contract evaluation")
}
Hero Bird
committed
fn instantiate_contract<T, Args, C>(
Hero Bird
committed
_params: &InstantiateParams<T, Args, C>,
) -> Result<T::AccountId>
where
T: EnvTypes,
Hero Bird
committed
Args: scale::Encode,
{
unimplemented!("off-chain environment does not support contract instantiation")
}
fn terminate_contract<T>(&mut self, _beneficiary: T::AccountId) -> !
where
T: EnvTypes,
{
unimplemented!("off-chain environment does not support contract termination")
}
fn restore_contract<T>(
&mut self,
_account_id: T::AccountId,
_code_hash: T::Hash,
_rent_allowance: T::Balance,
_filtered_keys: &[Key],
) where
T: EnvTypes,
{
unimplemented!("off-chain environment does not support contract restoration")
}
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
fn transfer<T>(&mut self, destination: T::AccountId, value: T::Balance) -> Result<()>
where
T: EnvTypes,
{
let src_id = self.account_id::<T>()?;
let src_value = self
.accounts
.get_account::<T>(&src_id)
.expect("account of executed contract must exist")
.balance::<T>()?;
if src_value < value {
return Err(EnvError::TransferCallFailed)
}
let dst_value = self
.accounts
.get_or_create_account::<T>(&destination)
.balance::<T>()?;
self.accounts
.get_account_mut::<T>(&src_id)
.expect("account of executed contract must exist")
.set_balance::<T>(src_value - value)?;
self.accounts
.get_account_mut::<T>(&destination)
.expect("the account must exist already or has just been created")
.set_balance::<T>(dst_value + value)?;
Ok(())
}