2020-01-17 14:27:28 +01:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
2019-01-07 11:33:07 +01:00
|
|
|
// This file is part of Parity Ethereum.
|
2017-09-05 17:54:05 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2017-09-05 17:54:05 +02:00
|
|
|
// 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2017-09-05 17:54:05 +02:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2017-09-05 17:54:05 +02:00
|
|
|
|
|
|
|
use std::sync::{Arc, Weak};
|
|
|
|
|
2019-08-15 17:59:22 +02:00
|
|
|
use engine::{Engine, StateDependentProof};
|
2019-02-11 11:33:16 +01:00
|
|
|
use sync::{LightSync, LightNetworkDispatcher};
|
2019-08-15 17:59:22 +02:00
|
|
|
use types::{
|
|
|
|
header::Header,
|
|
|
|
encoded,
|
|
|
|
receipt::Receipt,
|
|
|
|
};
|
2017-09-05 17:54:05 +02:00
|
|
|
|
2017-10-05 12:35:01 +02:00
|
|
|
use futures::{future, Future};
|
|
|
|
use futures::future::Either;
|
2017-09-05 17:54:05 +02:00
|
|
|
|
|
|
|
use light::client::fetch::ChainDataFetcher;
|
2019-03-27 14:46:20 +01:00
|
|
|
use light::on_demand::{request, OnDemand, OnDemandRequester};
|
2017-09-05 17:54:05 +02:00
|
|
|
|
|
|
|
use parking_lot::RwLock;
|
2018-01-10 13:35:18 +01:00
|
|
|
use ethereum_types::H256;
|
2017-09-05 17:54:05 +02:00
|
|
|
|
|
|
|
const ALL_VALID_BACKREFS: &str = "no back-references, therefore all back-references valid; qed";
|
|
|
|
|
2019-08-27 17:29:33 +02:00
|
|
|
type BoxFuture<T, E> = Box<dyn Future<Item = T, Error = E>>;
|
2017-10-05 12:35:01 +02:00
|
|
|
|
2017-09-05 17:54:05 +02:00
|
|
|
/// Allows on-demand fetch of data useful for the light client.
|
|
|
|
pub struct EpochFetch {
|
|
|
|
/// A handle to the sync service.
|
|
|
|
pub sync: Arc<RwLock<Weak<LightSync>>>,
|
|
|
|
/// The on-demand request service.
|
|
|
|
pub on_demand: Arc<OnDemand>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl EpochFetch {
|
|
|
|
fn request<T>(&self, req: T) -> BoxFuture<T::Out, &'static str>
|
|
|
|
where T: Send + request::RequestAdapter + 'static, T::Out: Send + 'static
|
|
|
|
{
|
2017-10-05 12:35:01 +02:00
|
|
|
Box::new(match self.sync.read().upgrade() {
|
2017-09-05 17:54:05 +02:00
|
|
|
Some(sync) => {
|
|
|
|
let on_demand = &self.on_demand;
|
|
|
|
let maybe_future = sync.with_context(move |ctx| {
|
|
|
|
on_demand.request(ctx, req).expect(ALL_VALID_BACKREFS)
|
|
|
|
});
|
|
|
|
|
|
|
|
match maybe_future {
|
2017-10-05 12:35:01 +02:00
|
|
|
Some(x) => Either::A(x.map_err(|_| "Request canceled")),
|
|
|
|
None => Either::B(future::err("Unable to access network.")),
|
2017-09-05 17:54:05 +02:00
|
|
|
}
|
|
|
|
}
|
2017-10-05 12:35:01 +02:00
|
|
|
None => Either::B(future::err("Unable to access network")),
|
|
|
|
})
|
2017-09-05 17:54:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ChainDataFetcher for EpochFetch {
|
|
|
|
type Error = &'static str;
|
|
|
|
|
|
|
|
type Body = BoxFuture<encoded::Block, &'static str>;
|
|
|
|
type Receipts = BoxFuture<Vec<Receipt>, &'static str>;
|
|
|
|
type Transition = BoxFuture<Vec<u8>, &'static str>;
|
|
|
|
|
|
|
|
fn block_body(&self, header: &Header) -> Self::Body {
|
|
|
|
self.request(request::Body(header.encoded().into()))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Fetch block receipts.
|
|
|
|
fn block_receipts(&self, header: &Header) -> Self::Receipts {
|
|
|
|
self.request(request::BlockReceipts(header.encoded().into()))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Fetch epoch transition proof at given header.
|
2019-08-27 17:29:33 +02:00
|
|
|
fn epoch_transition(&self, hash: H256, engine: Arc<dyn Engine>, checker: Arc<dyn StateDependentProof>)
|
2017-09-05 17:54:05 +02:00
|
|
|
-> Self::Transition
|
|
|
|
{
|
|
|
|
self.request(request::Signal {
|
|
|
|
hash: hash,
|
|
|
|
engine: engine,
|
|
|
|
proof_check: checker,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|