2016-12-11 19:30:54 +01:00
|
|
|
// Copyright 2015, 2016 Parity Technologies (UK) Ltd.
|
2016-05-02 12:17:30 +02: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/>.
|
|
|
|
|
|
|
|
//! Traces api implementation.
|
|
|
|
|
|
|
|
use std::sync::{Weak, Arc};
|
|
|
|
use jsonrpc_core::*;
|
2016-09-01 14:49:12 +02:00
|
|
|
use rlp::{UntrustedRlp, View};
|
2016-12-09 23:01:43 +01:00
|
|
|
use ethcore::client::{BlockChainClient, CallAnalytics, TransactionId, TraceId};
|
2016-06-02 13:14:49 +02:00
|
|
|
use ethcore::miner::MinerService;
|
|
|
|
use ethcore::transaction::{Transaction as EthTransaction, SignedTransaction, Action};
|
2016-05-02 12:17:30 +02:00
|
|
|
use v1::traits::Traces;
|
2016-08-08 17:25:15 +02:00
|
|
|
use v1::helpers::{errors, CallRequest as CRequest};
|
|
|
|
use v1::helpers::params::from_params_default_third;
|
2016-07-26 16:48:50 +02:00
|
|
|
use v1::types::{TraceFilter, LocalizedTrace, BlockNumber, Index, CallRequest, Bytes, TraceResults, H256};
|
2016-05-02 12:17:30 +02:00
|
|
|
|
2016-07-27 21:34:32 +02:00
|
|
|
fn to_call_analytics(flags: Vec<String>) -> CallAnalytics {
|
|
|
|
CallAnalytics {
|
|
|
|
transaction_tracing: flags.contains(&("trace".to_owned())),
|
|
|
|
vm_tracing: flags.contains(&("vmTrace".to_owned())),
|
|
|
|
state_diffing: flags.contains(&("stateDiff".to_owned())),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-02 12:17:30 +02:00
|
|
|
/// Traces api implementation.
|
2016-06-02 13:14:49 +02:00
|
|
|
pub struct TracesClient<C, M> where C: BlockChainClient, M: MinerService {
|
2016-05-02 12:17:30 +02:00
|
|
|
client: Weak<C>,
|
2016-06-02 13:14:49 +02:00
|
|
|
miner: Weak<M>,
|
2016-05-02 12:17:30 +02:00
|
|
|
}
|
|
|
|
|
2016-06-02 13:14:49 +02:00
|
|
|
impl<C, M> TracesClient<C, M> where C: BlockChainClient, M: MinerService {
|
2016-05-02 12:17:30 +02:00
|
|
|
/// Creates new Traces client.
|
2016-06-02 13:14:49 +02:00
|
|
|
pub fn new(client: &Arc<C>, miner: &Arc<M>) -> Self {
|
2016-05-02 12:17:30 +02:00
|
|
|
TracesClient {
|
|
|
|
client: Arc::downgrade(client),
|
2016-06-02 13:14:49 +02:00
|
|
|
miner: Arc::downgrade(miner),
|
2016-05-02 12:17:30 +02:00
|
|
|
}
|
|
|
|
}
|
2016-06-02 13:14:49 +02:00
|
|
|
|
|
|
|
// TODO: share with eth.rs
|
2016-07-06 11:23:29 +02:00
|
|
|
fn sign_call(&self, request: CRequest) -> Result<SignedTransaction, Error> {
|
2016-06-02 13:14:49 +02:00
|
|
|
let client = take_weak!(self.client);
|
|
|
|
let miner = take_weak!(self.miner);
|
|
|
|
let from = request.from.unwrap_or(0.into());
|
|
|
|
Ok(EthTransaction {
|
|
|
|
nonce: request.nonce.unwrap_or_else(|| client.latest_nonce(&from)),
|
|
|
|
action: request.to.map_or(Action::Create, Action::Call),
|
|
|
|
gas: request.gas.unwrap_or(50_000_000.into()),
|
|
|
|
gas_price: request.gas_price.unwrap_or_else(|| miner.sensible_gas_price()),
|
|
|
|
value: request.value.unwrap_or(0.into()),
|
|
|
|
data: request.data.map_or_else(Vec::new, |d| d.to_vec())
|
|
|
|
}.fake_sign(from))
|
|
|
|
}
|
2016-07-05 17:50:46 +02:00
|
|
|
|
|
|
|
fn active(&self) -> Result<(), Error> {
|
|
|
|
// TODO: only call every 30s at most.
|
|
|
|
take_weak!(self.client).keep_alive();
|
|
|
|
Ok(())
|
|
|
|
}
|
2016-06-02 13:14:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<C, M> Traces for TracesClient<C, M> where C: BlockChainClient + 'static, M: MinerService + 'static {
|
2016-05-02 12:17:30 +02:00
|
|
|
fn filter(&self, params: Params) -> Result<Value, Error> {
|
2016-07-05 17:50:46 +02:00
|
|
|
try!(self.active());
|
2016-05-02 12:17:30 +02:00
|
|
|
from_params::<(TraceFilter,)>(params)
|
|
|
|
.and_then(|(filter, )| {
|
|
|
|
let client = take_weak!(self.client);
|
|
|
|
let traces = client.filter_traces(filter.into());
|
2016-06-02 13:50:50 +02:00
|
|
|
let traces = traces.map_or_else(Vec::new, |traces| traces.into_iter().map(LocalizedTrace::from).collect());
|
2016-09-01 12:00:00 +02:00
|
|
|
Ok(to_value(&traces))
|
2016-05-02 12:17:30 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn block_traces(&self, params: Params) -> Result<Value, Error> {
|
2016-07-05 17:50:46 +02:00
|
|
|
try!(self.active());
|
2016-05-02 12:17:30 +02:00
|
|
|
from_params::<(BlockNumber,)>(params)
|
|
|
|
.and_then(|(block_number,)| {
|
|
|
|
let client = take_weak!(self.client);
|
|
|
|
let traces = client.block_traces(block_number.into());
|
2016-06-02 13:50:50 +02:00
|
|
|
let traces = traces.map_or_else(Vec::new, |traces| traces.into_iter().map(LocalizedTrace::from).collect());
|
2016-09-01 12:00:00 +02:00
|
|
|
Ok(to_value(&traces))
|
2016-05-02 12:17:30 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn transaction_traces(&self, params: Params) -> Result<Value, Error> {
|
2016-07-05 17:50:46 +02:00
|
|
|
try!(self.active());
|
2016-05-02 12:17:30 +02:00
|
|
|
from_params::<(H256,)>(params)
|
|
|
|
.and_then(|(transaction_hash,)| {
|
|
|
|
let client = take_weak!(self.client);
|
2016-12-09 23:01:43 +01:00
|
|
|
let traces = client.transaction_traces(TransactionId::Hash(transaction_hash.into()));
|
2016-06-02 13:50:50 +02:00
|
|
|
let traces = traces.map_or_else(Vec::new, |traces| traces.into_iter().map(LocalizedTrace::from).collect());
|
2016-09-01 12:00:00 +02:00
|
|
|
Ok(to_value(&traces))
|
2016-05-02 12:17:30 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trace(&self, params: Params) -> Result<Value, Error> {
|
2016-07-05 17:50:46 +02:00
|
|
|
try!(self.active());
|
2016-05-02 12:17:30 +02:00
|
|
|
from_params::<(H256, Vec<Index>)>(params)
|
|
|
|
.and_then(|(transaction_hash, address)| {
|
|
|
|
let client = take_weak!(self.client);
|
|
|
|
let id = TraceId {
|
2016-12-09 23:01:43 +01:00
|
|
|
transaction: TransactionId::Hash(transaction_hash.into()),
|
2016-05-02 12:17:30 +02:00
|
|
|
address: address.into_iter().map(|i| i.value()).collect()
|
|
|
|
};
|
|
|
|
let trace = client.trace(id);
|
2016-06-02 13:50:50 +02:00
|
|
|
let trace = trace.map(LocalizedTrace::from);
|
2016-09-01 12:00:00 +02:00
|
|
|
Ok(to_value(&trace))
|
2016-05-02 12:17:30 +02:00
|
|
|
})
|
|
|
|
}
|
2016-06-02 13:14:49 +02:00
|
|
|
|
2016-06-02 16:30:28 +02:00
|
|
|
fn call(&self, params: Params) -> Result<Value, Error> {
|
2016-07-05 17:50:46 +02:00
|
|
|
try!(self.active());
|
2016-08-04 18:17:21 +02:00
|
|
|
from_params_default_third(params)
|
|
|
|
.and_then(|(request, flags, block)| {
|
2016-07-06 11:23:29 +02:00
|
|
|
let request = CallRequest::into(request);
|
2016-06-02 13:50:50 +02:00
|
|
|
let signed = try!(self.sign_call(request));
|
2016-08-04 18:17:21 +02:00
|
|
|
match take_weak!(self.client).call(&signed, block.into(), to_call_analytics(flags)) {
|
2016-09-01 12:00:00 +02:00
|
|
|
Ok(e) => Ok(to_value(&TraceResults::from(e))),
|
2016-07-26 16:48:50 +02:00
|
|
|
_ => Ok(Value::Null),
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn raw_transaction(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
try!(self.active());
|
2016-08-04 18:17:21 +02:00
|
|
|
from_params_default_third(params)
|
|
|
|
.and_then(|(raw_transaction, flags, block)| {
|
|
|
|
let raw_transaction = Bytes::to_vec(raw_transaction);
|
2016-07-26 16:48:50 +02:00
|
|
|
match UntrustedRlp::new(&raw_transaction).as_val() {
|
2016-08-04 18:17:21 +02:00
|
|
|
Ok(signed) => match take_weak!(self.client).call(&signed, block.into(), to_call_analytics(flags)) {
|
2016-09-01 12:00:00 +02:00
|
|
|
Ok(e) => Ok(to_value(&TraceResults::from(e))),
|
2016-07-26 16:48:50 +02:00
|
|
|
_ => Ok(Value::Null),
|
|
|
|
},
|
2016-08-08 17:25:15 +02:00
|
|
|
Err(e) => Err(errors::invalid_params("Transaction is not valid RLP", e)),
|
2016-06-02 13:14:49 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2016-07-27 21:34:32 +02:00
|
|
|
|
|
|
|
fn replay_transaction(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
try!(self.active());
|
|
|
|
from_params::<(H256, _)>(params)
|
|
|
|
.and_then(|(transaction_hash, flags)| {
|
2016-12-09 23:01:43 +01:00
|
|
|
match take_weak!(self.client).replay(TransactionId::Hash(transaction_hash.into()), to_call_analytics(flags)) {
|
2016-09-01 12:00:00 +02:00
|
|
|
Ok(e) => Ok(to_value(&TraceResults::from(e))),
|
2016-07-27 21:34:32 +02:00
|
|
|
_ => Ok(Value::Null),
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2016-05-02 12:17:30 +02:00
|
|
|
}
|