2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-02-05 13:40:41 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-03-08 14:39:44 +01:00
|
|
|
//! Environment information for transaction execution.
|
|
|
|
|
2016-08-03 18:05:17 +02:00
|
|
|
use std::cmp;
|
2016-08-04 08:41:30 +02:00
|
|
|
use std::sync::Arc;
|
2017-08-30 19:18:28 +02:00
|
|
|
use hash::keccak;
|
|
|
|
use util::{U256, Address, H256};
|
2017-07-12 13:09:17 +02:00
|
|
|
use types::BlockNumber;
|
2016-03-24 01:25:59 +01:00
|
|
|
use ethjson;
|
2015-12-20 13:16:12 +01:00
|
|
|
|
|
|
|
/// Simple vector of hashes, should be at most 256 items large, can be smaller if being used
|
|
|
|
/// for a block whose number is less than 257.
|
|
|
|
pub type LastHashes = Vec<H256>;
|
|
|
|
|
|
|
|
/// Information concerning the execution environment for a message-call/contract-creation.
|
2017-03-08 14:39:44 +01:00
|
|
|
#[derive(Debug, Clone)]
|
2015-12-20 13:16:12 +01:00
|
|
|
pub struct EnvInfo {
|
|
|
|
/// The block number.
|
2016-01-11 01:07:58 +01:00
|
|
|
pub number: BlockNumber,
|
2015-12-20 13:16:12 +01:00
|
|
|
/// The block author.
|
|
|
|
pub author: Address,
|
|
|
|
/// The block timestamp.
|
2016-01-10 22:55:07 +01:00
|
|
|
pub timestamp: u64,
|
2015-12-20 13:16:12 +01:00
|
|
|
/// The block difficulty.
|
|
|
|
pub difficulty: U256,
|
|
|
|
/// The block gas limit.
|
|
|
|
pub gas_limit: U256,
|
|
|
|
/// The last 256 block hashes.
|
2016-08-03 22:03:40 +02:00
|
|
|
pub last_hashes: Arc<LastHashes>,
|
2015-12-20 13:16:12 +01:00
|
|
|
/// The gas used.
|
|
|
|
pub gas_used: U256,
|
2016-01-06 17:53:59 +01:00
|
|
|
}
|
|
|
|
|
2016-01-20 17:57:53 +01:00
|
|
|
impl Default for EnvInfo {
|
|
|
|
fn default() -> Self {
|
2016-01-06 17:53:59 +01:00
|
|
|
EnvInfo {
|
2016-01-11 15:23:27 +01:00
|
|
|
number: 0,
|
2016-08-04 08:52:31 +02:00
|
|
|
author: Address::default(),
|
2016-01-11 15:23:27 +01:00
|
|
|
timestamp: 0,
|
2016-05-31 16:59:01 +02:00
|
|
|
difficulty: 0.into(),
|
|
|
|
gas_limit: 0.into(),
|
2016-08-03 22:03:40 +02:00
|
|
|
last_hashes: Arc::new(vec![]),
|
2016-05-31 16:59:01 +02:00
|
|
|
gas_used: 0.into(),
|
2016-01-06 17:53:59 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-14 21:58:37 +01:00
|
|
|
}
|
2016-01-13 01:19:05 +01:00
|
|
|
|
2016-03-24 01:25:59 +01:00
|
|
|
impl From<ethjson::vm::Env> for EnvInfo {
|
|
|
|
fn from(e: ethjson::vm::Env) -> Self {
|
|
|
|
let number = e.number.into();
|
|
|
|
EnvInfo {
|
|
|
|
number: number,
|
|
|
|
author: e.author.into(),
|
|
|
|
difficulty: e.difficulty.into(),
|
|
|
|
gas_limit: e.gas_limit.into(),
|
|
|
|
timestamp: e.timestamp.into(),
|
2017-08-30 19:18:28 +02:00
|
|
|
last_hashes: Arc::new((1..cmp::min(number + 1, 257)).map(|i| keccak(format!("{}", number - i).as_bytes())).collect()),
|
2016-08-04 08:41:30 +02:00
|
|
|
gas_used: U256::default(),
|
2016-03-24 01:25:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-29 17:51:17 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2016-02-01 12:35:13 +01:00
|
|
|
use std::str::FromStr;
|
2016-08-03 18:05:17 +02:00
|
|
|
use super::*;
|
|
|
|
use util::{U256, Address};
|
2016-04-09 19:20:35 +02:00
|
|
|
use ethjson;
|
2016-01-29 17:51:17 +01:00
|
|
|
|
|
|
|
#[test]
|
2017-07-12 13:09:17 +02:00
|
|
|
fn it_serializes_from_json() {
|
2016-04-09 19:20:35 +02:00
|
|
|
let env_info = EnvInfo::from(ethjson::vm::Env {
|
|
|
|
author: ethjson::hash::Address(Address::from_str("000000f00000000f000000000000f00000000f00").unwrap()),
|
|
|
|
number: ethjson::uint::Uint(U256::from(1_112_339)),
|
|
|
|
difficulty: ethjson::uint::Uint(U256::from(50_000)),
|
|
|
|
gas_limit: ethjson::uint::Uint(U256::from(40_000)),
|
|
|
|
timestamp: ethjson::uint::Uint(U256::from(1_100))
|
|
|
|
});
|
2016-01-29 17:51:17 +01:00
|
|
|
|
2016-02-01 12:35:13 +01:00
|
|
|
assert_eq!(env_info.number, 1112339);
|
|
|
|
assert_eq!(env_info.author, Address::from_str("000000f00000000f000000000000f00000000f00").unwrap());
|
2016-05-31 16:59:01 +02:00
|
|
|
assert_eq!(env_info.gas_limit, 40000.into());
|
|
|
|
assert_eq!(env_info.difficulty, 50000.into());
|
|
|
|
assert_eq!(env_info.gas_used, 0.into());
|
2016-01-29 17:51:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn it_can_be_created_as_default() {
|
|
|
|
let default_env_info = EnvInfo::default();
|
|
|
|
|
2016-05-31 16:59:01 +02:00
|
|
|
assert_eq!(default_env_info.difficulty, 0.into());
|
2016-01-29 17:51:17 +01:00
|
|
|
}
|
2016-02-02 23:06:34 +01:00
|
|
|
}
|