merge fixes
This commit is contained in:
parent
6676c6cf7e
commit
c370bcaded
@ -20,7 +20,7 @@ use std::sync::Arc;
|
|||||||
|
|
||||||
use die::*;
|
use die::*;
|
||||||
use ethsync::EthSync;
|
use ethsync::EthSync;
|
||||||
use ethminer::{Miner, ExternalMiner};
|
use ethcore::miner::{Miner, ExternalMiner};
|
||||||
use ethcore::client::Client;
|
use ethcore::client::Client;
|
||||||
use util::RotatingLogger;
|
use util::RotatingLogger;
|
||||||
use util::keys::store::AccountService;
|
use util::keys::store::AccountService;
|
||||||
|
@ -544,186 +544,3 @@ impl<C, S, A, M, EM> Eth for EthClient<C, S, A, M, EM> where
|
|||||||
rpc_unimplemented!()
|
rpc_unimplemented!()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Eth filter rpc implementation.
|
|
||||||
pub struct EthFilterClient<C, M> where
|
|
||||||
C: MiningBlockChainClient,
|
|
||||||
M: MinerService {
|
|
||||||
|
|
||||||
client: Weak<C>,
|
|
||||||
miner: Weak<M>,
|
|
||||||
polls: Mutex<PollManager<PollFilter>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<C, M> EthFilterClient<C, M> where
|
|
||||||
C: MiningBlockChainClient,
|
|
||||||
M: MinerService {
|
|
||||||
|
|
||||||
/// Creates new Eth filter client.
|
|
||||||
pub fn new(client: &Arc<C>, miner: &Arc<M>) -> Self {
|
|
||||||
EthFilterClient {
|
|
||||||
client: Arc::downgrade(client),
|
|
||||||
miner: Arc::downgrade(miner),
|
|
||||||
polls: Mutex::new(PollManager::new()),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<C, M> EthFilter for EthFilterClient<C, M> where
|
|
||||||
C: MiningBlockChainClient + 'static,
|
|
||||||
M: MinerService + 'static {
|
|
||||||
|
|
||||||
fn new_filter(&self, params: Params) -> Result<Value, Error> {
|
|
||||||
from_params::<(Filter,)>(params)
|
|
||||||
.and_then(|(filter,)| {
|
|
||||||
let mut polls = self.polls.lock().unwrap();
|
|
||||||
let block_number = take_weak!(self.client).chain_info().best_block_number;
|
|
||||||
let id = polls.create_poll(PollFilter::Logs(block_number, Default::default(), filter));
|
|
||||||
to_value(&U256::from(id))
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
fn new_block_filter(&self, params: Params) -> Result<Value, Error> {
|
|
||||||
match params {
|
|
||||||
Params::None => {
|
|
||||||
let mut polls = self.polls.lock().unwrap();
|
|
||||||
let id = polls.create_poll(PollFilter::Block(take_weak!(self.client).chain_info().best_block_number));
|
|
||||||
to_value(&U256::from(id))
|
|
||||||
},
|
|
||||||
_ => Err(Error::invalid_params())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn new_pending_transaction_filter(&self, params: Params) -> Result<Value, Error> {
|
|
||||||
match params {
|
|
||||||
Params::None => {
|
|
||||||
let mut polls = self.polls.lock().unwrap();
|
|
||||||
let pending_transactions = take_weak!(self.miner).pending_transactions_hashes();
|
|
||||||
let id = polls.create_poll(PollFilter::PendingTransaction(pending_transactions));
|
|
||||||
|
|
||||||
to_value(&U256::from(id))
|
|
||||||
},
|
|
||||||
_ => Err(Error::invalid_params())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn filter_changes(&self, params: Params) -> Result<Value, Error> {
|
|
||||||
let client = take_weak!(self.client);
|
|
||||||
from_params::<(Index,)>(params)
|
|
||||||
.and_then(|(index,)| {
|
|
||||||
let mut polls = self.polls.lock().unwrap();
|
|
||||||
match polls.poll_mut(&index.value()) {
|
|
||||||
None => Ok(Value::Array(vec![] as Vec<Value>)),
|
|
||||||
Some(filter) => match *filter {
|
|
||||||
PollFilter::Block(ref mut block_number) => {
|
|
||||||
// + 1, cause we want to return hashes including current block hash.
|
|
||||||
let current_number = client.chain_info().best_block_number + 1;
|
|
||||||
let hashes = (*block_number..current_number).into_iter()
|
|
||||||
.map(BlockID::Number)
|
|
||||||
.filter_map(|id| client.block_hash(id))
|
|
||||||
.collect::<Vec<H256>>();
|
|
||||||
|
|
||||||
*block_number = current_number;
|
|
||||||
|
|
||||||
to_value(&hashes)
|
|
||||||
},
|
|
||||||
PollFilter::PendingTransaction(ref mut previous_hashes) => {
|
|
||||||
// get hashes of pending transactions
|
|
||||||
let current_hashes = take_weak!(self.miner).pending_transactions_hashes();
|
|
||||||
|
|
||||||
let new_hashes =
|
|
||||||
{
|
|
||||||
let previous_hashes_set = previous_hashes.iter().collect::<HashSet<_>>();
|
|
||||||
|
|
||||||
// find all new hashes
|
|
||||||
current_hashes
|
|
||||||
.iter()
|
|
||||||
.filter(|hash| !previous_hashes_set.contains(hash))
|
|
||||||
.cloned()
|
|
||||||
.collect::<Vec<H256>>()
|
|
||||||
};
|
|
||||||
|
|
||||||
// save all hashes of pending transactions
|
|
||||||
*previous_hashes = current_hashes;
|
|
||||||
|
|
||||||
// return new hashes
|
|
||||||
to_value(&new_hashes)
|
|
||||||
},
|
|
||||||
PollFilter::Logs(ref mut block_number, ref mut previous_logs, ref filter) => {
|
|
||||||
// retrive the current block number
|
|
||||||
let current_number = client.chain_info().best_block_number;
|
|
||||||
|
|
||||||
// check if we need to check pending hashes
|
|
||||||
let include_pending = filter.to_block == Some(BlockNumber::Pending);
|
|
||||||
|
|
||||||
// build appropriate filter
|
|
||||||
let mut filter: EthcoreFilter = filter.clone().into();
|
|
||||||
filter.from_block = BlockID::Number(*block_number);
|
|
||||||
filter.to_block = BlockID::Latest;
|
|
||||||
|
|
||||||
// retrieve logs in range from_block..min(BlockID::Latest..to_block)
|
|
||||||
let mut logs = client.logs(filter.clone())
|
|
||||||
.into_iter()
|
|
||||||
.map(From::from)
|
|
||||||
.collect::<Vec<Log>>();
|
|
||||||
|
|
||||||
// additionally retrieve pending logs
|
|
||||||
if include_pending {
|
|
||||||
let pending_logs = pending_logs(take_weak!(self.miner).deref(), &filter);
|
|
||||||
|
|
||||||
// remove logs about which client was already notified about
|
|
||||||
let new_pending_logs: Vec<_> = pending_logs.iter()
|
|
||||||
.filter(|p| !previous_logs.contains(p))
|
|
||||||
.cloned()
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
// save all logs retrieved by client
|
|
||||||
*previous_logs = pending_logs.into_iter().collect();
|
|
||||||
|
|
||||||
// append logs array with new pending logs
|
|
||||||
logs.extend(new_pending_logs);
|
|
||||||
}
|
|
||||||
|
|
||||||
// save current block number as next from block number
|
|
||||||
*block_number = current_number;
|
|
||||||
|
|
||||||
to_value(&logs)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
fn filter_logs(&self, params: Params) -> Result<Value, Error> {
|
|
||||||
from_params::<(Index,)>(params)
|
|
||||||
.and_then(|(index,)| {
|
|
||||||
let mut polls = self.polls.lock().unwrap();
|
|
||||||
match polls.poll(&index.value()) {
|
|
||||||
Some(&PollFilter::Logs(ref _block_number, ref _previous_log, ref filter)) => {
|
|
||||||
let include_pending = filter.to_block == Some(BlockNumber::Pending);
|
|
||||||
let filter: EthcoreFilter = filter.clone().into();
|
|
||||||
let mut logs = take_weak!(self.client).logs(filter.clone())
|
|
||||||
.into_iter()
|
|
||||||
.map(From::from)
|
|
||||||
.collect::<Vec<Log>>();
|
|
||||||
|
|
||||||
if include_pending {
|
|
||||||
logs.extend(pending_logs(take_weak!(self.miner).deref(), &filter));
|
|
||||||
}
|
|
||||||
|
|
||||||
to_value(&logs)
|
|
||||||
},
|
|
||||||
// just empty array
|
|
||||||
_ => Ok(Value::Array(vec![] as Vec<Value>)),
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
fn uninstall_filter(&self, params: Params) -> Result<Value, Error> {
|
|
||||||
from_params::<(Index,)>(params)
|
|
||||||
.and_then(|(index,)| {
|
|
||||||
self.polls.lock().unwrap().remove_poll(&index.value());
|
|
||||||
to_value(&true)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -21,7 +21,7 @@ use std::sync::{Arc, Weak, Mutex};
|
|||||||
use std::collections::HashSet;
|
use std::collections::HashSet;
|
||||||
use jsonrpc_core::*;
|
use jsonrpc_core::*;
|
||||||
use util::numbers::*;
|
use util::numbers::*;
|
||||||
use ethminer::MinerService;
|
use ethcore::miner::MinerService;
|
||||||
use ethcore::filter::Filter as EthcoreFilter;
|
use ethcore::filter::Filter as EthcoreFilter;
|
||||||
use ethcore::client::{BlockChainClient, BlockID};
|
use ethcore::client::{BlockChainClient, BlockID};
|
||||||
use v1::traits::EthFilter;
|
use v1::traits::EthFilter;
|
||||||
|
@ -18,8 +18,8 @@
|
|||||||
|
|
||||||
use std::sync::{Arc, Weak};
|
use std::sync::{Arc, Weak};
|
||||||
use jsonrpc_core::*;
|
use jsonrpc_core::*;
|
||||||
use ethminer::MinerService;
|
use ethcore::miner::MinerService;
|
||||||
use ethcore::client::BlockChainClient;
|
use ethcore::client::MiningBlockChainClient;
|
||||||
use util::numbers::*;
|
use util::numbers::*;
|
||||||
use util::keys::store::AccountProvider;
|
use util::keys::store::AccountProvider;
|
||||||
use v1::helpers::{SigningQueue, ConfirmationsQueue};
|
use v1::helpers::{SigningQueue, ConfirmationsQueue};
|
||||||
@ -62,7 +62,7 @@ impl EthSigning for EthSigningQueueClient {
|
|||||||
|
|
||||||
/// Implementation of functions that require signing when no trusted signer is used.
|
/// Implementation of functions that require signing when no trusted signer is used.
|
||||||
pub struct EthSigningUnsafeClient<C, A, M> where
|
pub struct EthSigningUnsafeClient<C, A, M> where
|
||||||
C: BlockChainClient,
|
C: MiningBlockChainClient,
|
||||||
A: AccountProvider,
|
A: AccountProvider,
|
||||||
M: MinerService {
|
M: MinerService {
|
||||||
client: Weak<C>,
|
client: Weak<C>,
|
||||||
@ -71,7 +71,7 @@ pub struct EthSigningUnsafeClient<C, A, M> where
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<C, A, M> EthSigningUnsafeClient<C, A, M> where
|
impl<C, A, M> EthSigningUnsafeClient<C, A, M> where
|
||||||
C: BlockChainClient,
|
C: MiningBlockChainClient,
|
||||||
A: AccountProvider,
|
A: AccountProvider,
|
||||||
M: MinerService {
|
M: MinerService {
|
||||||
|
|
||||||
@ -87,7 +87,7 @@ impl<C, A, M> EthSigningUnsafeClient<C, A, M> where
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<C, A, M> EthSigning for EthSigningUnsafeClient<C, A, M> where
|
impl<C, A, M> EthSigning for EthSigningUnsafeClient<C, A, M> where
|
||||||
C: BlockChainClient + 'static,
|
C: MiningBlockChainClient + 'static,
|
||||||
A: AccountProvider + 'static,
|
A: AccountProvider + 'static,
|
||||||
M: MinerService + 'static {
|
M: MinerService + 'static {
|
||||||
|
|
||||||
|
@ -24,12 +24,12 @@ use v1::impls::sign_and_dispatch;
|
|||||||
use v1::helpers::{SigningQueue, ConfirmationsQueue};
|
use v1::helpers::{SigningQueue, ConfirmationsQueue};
|
||||||
use util::keys::store::AccountProvider;
|
use util::keys::store::AccountProvider;
|
||||||
use util::numbers::*;
|
use util::numbers::*;
|
||||||
use ethcore::client::BlockChainClient;
|
use ethcore::client::MiningBlockChainClient;
|
||||||
use ethminer::MinerService;
|
use ethcore::miner::MinerService;
|
||||||
|
|
||||||
/// Transactions confirmation (personal) rpc implementation.
|
/// Transactions confirmation (personal) rpc implementation.
|
||||||
pub struct SignerClient<A, C, M>
|
pub struct SignerClient<A, C, M>
|
||||||
where A: AccountProvider, C: BlockChainClient, M: MinerService {
|
where A: AccountProvider, C: MiningBlockChainClient, M: MinerService {
|
||||||
queue: Weak<ConfirmationsQueue>,
|
queue: Weak<ConfirmationsQueue>,
|
||||||
accounts: Weak<A>,
|
accounts: Weak<A>,
|
||||||
client: Weak<C>,
|
client: Weak<C>,
|
||||||
@ -37,7 +37,7 @@ pub struct SignerClient<A, C, M>
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<A: 'static, C: 'static, M: 'static> SignerClient<A, C, M>
|
impl<A: 'static, C: 'static, M: 'static> SignerClient<A, C, M>
|
||||||
where A: AccountProvider, C: BlockChainClient, M: MinerService {
|
where A: AccountProvider, C: MiningBlockChainClient, M: MinerService {
|
||||||
|
|
||||||
/// Create new instance of signer client.
|
/// Create new instance of signer client.
|
||||||
pub fn new(store: &Arc<A>, client: &Arc<C>, miner: &Arc<M>, queue: &Arc<ConfirmationsQueue>) -> Self {
|
pub fn new(store: &Arc<A>, client: &Arc<C>, miner: &Arc<M>, queue: &Arc<ConfirmationsQueue>) -> Self {
|
||||||
@ -51,7 +51,7 @@ impl<A: 'static, C: 'static, M: 'static> SignerClient<A, C, M>
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<A: 'static, C: 'static, M: 'static> PersonalSigner for SignerClient<A, C, M>
|
impl<A: 'static, C: 'static, M: 'static> PersonalSigner for SignerClient<A, C, M>
|
||||||
where A: AccountProvider, C: BlockChainClient, M: MinerService {
|
where A: AccountProvider, C: MiningBlockChainClient, M: MinerService {
|
||||||
|
|
||||||
fn transactions_to_confirm(&self, _params: Params) -> Result<Value, Error> {
|
fn transactions_to_confirm(&self, _params: Params) -> Result<Value, Error> {
|
||||||
let queue = take_weak!(self.queue);
|
let queue = take_weak!(self.queue);
|
||||||
|
Loading…
Reference in New Issue
Block a user