2016-02-05 13:40:41 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// 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/>.
|
|
|
|
|
2016-01-09 12:30:41 +01:00
|
|
|
use util::*;
|
2016-01-11 01:07:58 +01:00
|
|
|
use header::BlockNumber;
|
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.
|
2016-01-13 01:19:05 +01:00
|
|
|
#[derive(Debug)]
|
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.
|
|
|
|
pub last_hashes: LastHashes,
|
|
|
|
/// 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-01-06 17:53:59 +01:00
|
|
|
author: Address::new(),
|
2016-01-11 15:23:27 +01:00
|
|
|
timestamp: 0,
|
2016-01-14 13:54:29 +01:00
|
|
|
difficulty: x!(0),
|
|
|
|
gas_limit: x!(0),
|
2016-01-06 17:53:59 +01:00
|
|
|
last_hashes: vec![],
|
2016-01-14 13:54:29 +01:00
|
|
|
gas_used: x!(0),
|
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-01-14 21:58:37 +01:00
|
|
|
impl FromJson for EnvInfo {
|
|
|
|
fn from_json(json: &Json) -> EnvInfo {
|
|
|
|
let current_number: u64 = xjson!(&json["currentNumber"]);
|
2016-01-14 23:02:59 +01:00
|
|
|
EnvInfo {
|
2016-01-14 13:54:29 +01:00
|
|
|
number: current_number,
|
2016-01-14 21:58:37 +01:00
|
|
|
author: xjson!(&json["currentCoinbase"]),
|
2016-01-14 21:23:46 +01:00
|
|
|
difficulty: xjson!(&json["currentDifficulty"]),
|
|
|
|
gas_limit: xjson!(&json["currentGasLimit"]),
|
2016-01-14 21:58:37 +01:00
|
|
|
timestamp: xjson!(&json["currentTimestamp"]),
|
2016-01-14 23:18:45 +01:00
|
|
|
last_hashes: (1..cmp::min(current_number + 1, 257)).map(|i| format!("{}", current_number - i).as_bytes().sha3()).collect(),
|
2016-01-14 13:54:29 +01:00
|
|
|
gas_used: x!(0),
|
2016-01-14 23:02:59 +01:00
|
|
|
}
|
2016-01-13 01:19:05 +01:00
|
|
|
}
|
2016-01-06 17:53:59 +01:00
|
|
|
}
|
2016-01-29 17:51:17 +01:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
extern crate rustc_serialize;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
use rustc_serialize::*;
|
|
|
|
use util::from_json::FromJson;
|
2016-02-01 12:35:13 +01:00
|
|
|
use util::hash::*;
|
|
|
|
use std::str::FromStr;
|
2016-01-29 17:51:17 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn it_serializes_form_json() {
|
|
|
|
let env_info = EnvInfo::from_json(&json::Json::from_str(
|
|
|
|
r#"
|
|
|
|
{
|
2016-02-01 12:35:13 +01:00
|
|
|
"currentCoinbase": "0x000000f00000000f000000000000f00000000f00",
|
|
|
|
"currentNumber": 1112339,
|
|
|
|
"currentDifficulty": 50000,
|
|
|
|
"currentGasLimit" : 40000,
|
|
|
|
"currentTimestamp" : 1100
|
2016-01-29 17:51:17 +01:00
|
|
|
}
|
|
|
|
"#
|
|
|
|
).unwrap());
|
|
|
|
|
2016-02-01 12:35:13 +01:00
|
|
|
assert_eq!(env_info.number, 1112339);
|
|
|
|
assert_eq!(env_info.author, Address::from_str("000000f00000000f000000000000f00000000f00").unwrap());
|
|
|
|
assert_eq!(env_info.gas_limit, x!(40000));
|
|
|
|
assert_eq!(env_info.difficulty, x!(50000));
|
|
|
|
assert_eq!(env_info.gas_used, x!(0));
|
2016-01-29 17:51:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn it_can_be_created_as_default() {
|
|
|
|
let default_env_info = EnvInfo::default();
|
|
|
|
|
|
|
|
assert_eq!(default_env_info.difficulty, x!(0));
|
|
|
|
}
|
2016-02-02 23:06:34 +01:00
|
|
|
}
|