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-11 02:42:02 +01:00
|
|
|
//! Evm input params.
|
2016-02-29 22:21:15 +01:00
|
|
|
use common::*;
|
2016-03-24 01:25:59 +01:00
|
|
|
use ethjson;
|
2016-07-27 17:41:21 +02:00
|
|
|
use types::executed::CallType;
|
2016-01-09 00:51:09 +01:00
|
|
|
|
2016-01-20 17:27:33 +01:00
|
|
|
/// Transaction value
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub enum ActionValue {
|
|
|
|
/// Value that should be transfered
|
|
|
|
Transfer(U256),
|
|
|
|
/// Apparent value for transaction (not transfered)
|
|
|
|
Apparent(U256)
|
|
|
|
}
|
2016-01-11 17:37:22 +01:00
|
|
|
|
2016-04-01 03:08:42 +02:00
|
|
|
impl ActionValue {
|
|
|
|
/// Returns action value as U256.
|
|
|
|
pub fn value(&self) -> U256 {
|
|
|
|
match *self {
|
|
|
|
ActionValue::Transfer(x) | ActionValue::Apparent(x) => x
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-20 17:27:33 +01:00
|
|
|
// TODO: should be a trait, possible to avoid cloning everything from a Transaction(/View).
|
2016-01-11 17:37:22 +01:00
|
|
|
/// Action (call/create) input params. Everything else should be specified in Externalities.
|
2016-01-10 16:21:01 +01:00
|
|
|
#[derive(Clone, Debug)]
|
2016-01-11 16:33:08 +01:00
|
|
|
pub struct ActionParams {
|
2016-01-11 02:42:02 +01:00
|
|
|
/// Address of currently executed code.
|
2016-01-15 15:00:28 +01:00
|
|
|
pub code_address: Address,
|
|
|
|
/// Receive address. Usually equal to code_address,
|
|
|
|
/// except when called using CALLCODE.
|
2016-01-09 00:51:09 +01:00
|
|
|
pub address: Address,
|
2016-01-11 02:42:02 +01:00
|
|
|
/// Sender of current part of the transaction.
|
2016-01-09 00:51:09 +01:00
|
|
|
pub sender: Address,
|
2016-01-11 02:42:02 +01:00
|
|
|
/// Transaction initiator.
|
2016-01-09 00:51:09 +01:00
|
|
|
pub origin: Address,
|
2016-01-11 02:42:02 +01:00
|
|
|
/// Gas paid up front for transaction execution
|
2016-01-09 00:51:09 +01:00
|
|
|
pub gas: U256,
|
2016-01-11 02:42:02 +01:00
|
|
|
/// Gas price.
|
2016-01-09 00:51:09 +01:00
|
|
|
pub gas_price: U256,
|
2016-01-11 02:42:02 +01:00
|
|
|
/// Transaction value.
|
2016-01-20 17:27:33 +01:00
|
|
|
pub value: ActionValue,
|
2016-01-11 02:42:02 +01:00
|
|
|
/// Code being executed.
|
2016-01-15 15:00:28 +01:00
|
|
|
pub code: Option<Bytes>,
|
2016-01-11 02:42:02 +01:00
|
|
|
/// Input data.
|
2016-07-27 17:41:21 +02:00
|
|
|
pub data: Option<Bytes>,
|
|
|
|
/// Type of call
|
|
|
|
pub call_type: CallType,
|
|
|
|
|
2016-01-09 00:51:09 +01:00
|
|
|
}
|
|
|
|
|
2016-01-20 16:52:22 +01:00
|
|
|
impl Default for ActionParams {
|
|
|
|
/// Returns default ActionParams initialized with zeros
|
|
|
|
fn default() -> ActionParams {
|
2016-01-11 16:33:08 +01:00
|
|
|
ActionParams {
|
2016-01-15 15:00:28 +01:00
|
|
|
code_address: Address::new(),
|
2016-01-09 00:51:09 +01:00
|
|
|
address: Address::new(),
|
|
|
|
sender: Address::new(),
|
|
|
|
origin: Address::new(),
|
|
|
|
gas: U256::zero(),
|
|
|
|
gas_price: U256::zero(),
|
2016-01-20 17:27:33 +01:00
|
|
|
value: ActionValue::Transfer(U256::zero()),
|
2016-01-15 15:00:28 +01:00
|
|
|
code: None,
|
2016-07-27 17:41:21 +02:00
|
|
|
data: None,
|
|
|
|
call_type: CallType::None,
|
2016-01-09 00:51:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-24 01:25:59 +01:00
|
|
|
|
|
|
|
impl From<ethjson::vm::Transaction> for ActionParams {
|
|
|
|
fn from(t: ethjson::vm::Transaction) -> Self {
|
2016-07-27 17:41:21 +02:00
|
|
|
let address: Address = t.address.into();
|
2016-03-24 01:25:59 +01:00
|
|
|
ActionParams {
|
|
|
|
code_address: Address::new(),
|
2016-07-27 17:41:21 +02:00
|
|
|
address: address,
|
2016-03-24 01:25:59 +01:00
|
|
|
sender: t.sender.into(),
|
|
|
|
origin: t.origin.into(),
|
|
|
|
code: Some(t.code.into()),
|
|
|
|
data: Some(t.data.into()),
|
|
|
|
gas: t.gas.into(),
|
|
|
|
gas_price: t.gas_price.into(),
|
|
|
|
value: ActionValue::Transfer(t.value.into()),
|
2016-07-27 17:41:21 +02:00
|
|
|
call_type: match address.is_zero() { true => CallType::None, false => CallType::Call }, // TODO @debris is this correct?
|
2016-03-24 01:25:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|