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};
|
2016-12-13 14:27:27 +01:00
|
|
|
|
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-12-13 14:27:27 +01:00
|
|
|
|
2016-12-14 20:09:14 +01:00
|
|
|
use jsonrpc_core::Error;
|
|
|
|
use jsonrpc_macros::Trailing;
|
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};
|
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-12-14 20:09:14 +01:00
|
|
|
fn filter(&self, filter: TraceFilter) -> Result<Vec<LocalizedTrace>, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.active()?;
|
2016-12-14 20:09:14 +01:00
|
|
|
let client = take_weak!(self.client);
|
|
|
|
let traces = client.filter_traces(filter.into());
|
|
|
|
let traces = traces.map_or_else(Vec::new, |traces| traces.into_iter().map(LocalizedTrace::from).collect());
|
|
|
|
Ok(traces)
|
2016-05-02 12:17:30 +02:00
|
|
|
}
|
|
|
|
|
2016-12-14 20:09:14 +01:00
|
|
|
fn block_traces(&self, block_number: BlockNumber) -> Result<Vec<LocalizedTrace>, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.active()?;
|
2016-12-14 20:09:14 +01:00
|
|
|
let client = take_weak!(self.client);
|
|
|
|
let traces = client.block_traces(block_number.into());
|
|
|
|
let traces = traces.map_or_else(Vec::new, |traces| traces.into_iter().map(LocalizedTrace::from).collect());
|
|
|
|
Ok(traces)
|
2016-05-02 12:17:30 +02:00
|
|
|
}
|
|
|
|
|
2016-12-14 20:09:14 +01:00
|
|
|
fn transaction_traces(&self, transaction_hash: H256) -> Result<Vec<LocalizedTrace>, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.active()?;
|
2016-12-14 20:09:14 +01:00
|
|
|
let client = take_weak!(self.client);
|
|
|
|
let traces = client.transaction_traces(TransactionId::Hash(transaction_hash.into()));
|
|
|
|
let traces = traces.map_or_else(Vec::new, |traces| traces.into_iter().map(LocalizedTrace::from).collect());
|
|
|
|
Ok(traces)
|
2016-05-02 12:17:30 +02:00
|
|
|
}
|
|
|
|
|
2016-12-14 20:09:14 +01:00
|
|
|
fn trace(&self, transaction_hash: H256, address: Vec<Index>) -> Result<Option<LocalizedTrace>, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.active()?;
|
2016-12-14 20:09:14 +01:00
|
|
|
let client = take_weak!(self.client);
|
|
|
|
let id = TraceId {
|
|
|
|
transaction: TransactionId::Hash(transaction_hash.into()),
|
|
|
|
address: address.into_iter().map(|i| i.value()).collect()
|
|
|
|
};
|
|
|
|
let trace = client.trace(id);
|
|
|
|
let trace = trace.map(LocalizedTrace::from);
|
|
|
|
|
|
|
|
Ok(trace)
|
2016-05-02 12:17:30 +02:00
|
|
|
}
|
2016-06-02 13:14:49 +02:00
|
|
|
|
2016-12-14 20:09:14 +01:00
|
|
|
fn call(&self, request: CallRequest, flags: Vec<String>, block: Trailing<BlockNumber>) -> Result<Option<TraceResults>, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.active()?;
|
2016-12-14 20:09:14 +01:00
|
|
|
let block = block.0;
|
|
|
|
|
|
|
|
let request = CallRequest::into(request);
|
2016-12-27 12:53:56 +01:00
|
|
|
let signed = self.sign_call(request)?;
|
2016-12-14 20:09:14 +01:00
|
|
|
Ok(match take_weak!(self.client).call(&signed, block.into(), to_call_analytics(flags)) {
|
|
|
|
Ok(e) => Some(TraceResults::from(e)),
|
|
|
|
_ => None,
|
|
|
|
})
|
2016-07-26 16:48:50 +02:00
|
|
|
}
|
|
|
|
|
2016-12-14 20:09:14 +01:00
|
|
|
fn raw_transaction(&self, raw_transaction: Bytes, flags: Vec<String>, block: Trailing<BlockNumber>) -> Result<Option<TraceResults>, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.active()?;
|
2016-12-14 20:09:14 +01:00
|
|
|
let block = block.0;
|
|
|
|
|
|
|
|
let raw_transaction = Bytes::to_vec(raw_transaction);
|
|
|
|
match UntrustedRlp::new(&raw_transaction).as_val() {
|
|
|
|
Ok(signed) => Ok(match take_weak!(self.client).call(&signed, block.into(), to_call_analytics(flags)) {
|
|
|
|
Ok(e) => Some(TraceResults::from(e)),
|
|
|
|
_ => None,
|
|
|
|
}),
|
|
|
|
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
|
|
|
|
2016-12-14 20:09:14 +01:00
|
|
|
fn replay_transaction(&self, transaction_hash: H256, flags: Vec<String>) -> Result<Option<TraceResults>, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.active()?;
|
2016-12-14 20:09:14 +01:00
|
|
|
|
|
|
|
Ok(match take_weak!(self.client).replay(TransactionId::Hash(transaction_hash.into()), to_call_analytics(flags)) {
|
|
|
|
Ok(e) => Some(TraceResults::from(e)),
|
|
|
|
_ => None,
|
|
|
|
})
|
2016-07-27 21:34:32 +02:00
|
|
|
}
|
2016-05-02 12:17:30 +02:00
|
|
|
}
|