use new error-less on_demand

This commit is contained in:
Robert Habermeier 2017-02-07 23:25:17 +01:00
parent 1fa5b07321
commit 4bb45c4f64
2 changed files with 17 additions and 22 deletions

View File

@ -309,11 +309,3 @@ pub fn unknown_block() -> Error {
data: None, data: None,
} }
} }
pub fn from_on_demand_error(error: ::light::on_demand::Error) -> Error {
Error {
code: ErrorCode::ServerError(codes::ON_DEMAND_ERROR),
message: "Failed to fetch on-demand data".into(),
data: Some(Value::String(format!("{:?}", error)))
}
}

View File

@ -23,7 +23,7 @@ use jsonrpc_macros::Trailing;
use light::client::Client as LightClient; use light::client::Client as LightClient;
use light::cht; use light::cht;
use light::on_demand::{request, OnDemand, Error as OnDemandError}; use light::on_demand::{request, OnDemand};
use ethcore::account_provider::{AccountProvider, DappId}; use ethcore::account_provider::{AccountProvider, DappId};
use ethcore::basic_account::BasicAccount; use ethcore::basic_account::BasicAccount;
@ -34,6 +34,7 @@ use util::sha3::{SHA3_NULL_RLP, SHA3_EMPTY_LIST_RLP};
use util::U256; use util::U256;
use futures::{future, Future, BoxFuture}; use futures::{future, Future, BoxFuture};
use futures::sync::oneshot;
use v1::helpers::{CallRequest as CRequest, errors, limit_logs}; use v1::helpers::{CallRequest as CRequest, errors, limit_logs};
use v1::helpers::dispatch::{dispatch_transaction, default_gas_price}; use v1::helpers::dispatch::{dispatch_transaction, default_gas_price};
@ -56,11 +57,16 @@ pub struct EthClient {
accounts: Arc<AccountProvider>, accounts: Arc<AccountProvider>,
} }
// helper for a specific kind of internal error. // helper for internal error: no network context.
fn err_no_context() -> Error { fn err_no_context() -> Error {
errors::internal("network service detached", "") errors::internal("network service detached", "")
} }
// helper for internal error: on demand sender cancelled.
fn err_premature_cancel(_cancel: oneshot::Canceled) -> Error {
errors::internal("on-demand sender prematurely cancelled", "")
}
impl EthClient { impl EthClient {
/// Create a new `EthClient` with a handle to the light sync instance, client, /// Create a new `EthClient` with a handle to the light sync instance, client,
/// and on-demand request service, which is assumed to be attached as a handler. /// and on-demand request service, which is assumed to be attached as a handler.
@ -90,15 +96,13 @@ impl EthClient {
match cht_root { match cht_root {
None => return future::ok(None).boxed(), None => return future::ok(None).boxed(),
Some(root) => { Some(root) => {
let req = request::HeaderByNumber { let req = request::HeaderByNumber::new(n, root)
num: n, .expect("only fails for 0; client always stores genesis; client already queried; qed");
cht_root: root,
};
self.sync.with_context(|ctx| self.sync.with_context(|ctx|
self.on_demand.header_by_number(ctx, req) self.on_demand.header_by_number(ctx, req)
.map(|(h, _)| Some(h)) .map(|(h, _)| Some(h))
.map_err(errors::from_on_demand_error) .map_err(err_premature_cancel)
.boxed() .boxed()
) )
} }
@ -109,8 +113,7 @@ impl EthClient {
self.on_demand.header_by_hash(ctx, request::HeaderByHash(h)) self.on_demand.header_by_hash(ctx, request::HeaderByHash(h))
.then(|res| future::done(match res { .then(|res| future::done(match res {
Ok(h) => Ok(Some(h)), Ok(h) => Ok(Some(h)),
Err(OnDemandError::TimedOut) => Ok(None), Err(e) => Err(err_premature_cancel(e)),
Err(e) => Err(errors::from_on_demand_error(e)),
})) }))
.boxed() .boxed()
) )
@ -139,7 +142,7 @@ impl EthClient {
header: header, header: header,
address: address, address: address,
}).map(Some)) }).map(Some))
.map(|x| x.map_err(errors::from_on_demand_error).boxed()) .map(|x| x.map_err(err_premature_cancel).boxed())
.unwrap_or_else(|| future::err(err_no_context()).boxed()) .unwrap_or_else(|| future::err(err_no_context()).boxed())
}).boxed() }).boxed()
} }
@ -224,7 +227,7 @@ impl Eth for EthClient {
} else { } else {
sync.with_context(|ctx| on_demand.block(ctx, request::Body::new(hdr))) sync.with_context(|ctx| on_demand.block(ctx, request::Body::new(hdr)))
.map(|x| x.map(|b| Some(U256::from(b.transactions_count()).into()))) .map(|x| x.map(|b| Some(U256::from(b.transactions_count()).into())))
.map(|x| x.map_err(errors::from_on_demand_error).boxed()) .map(|x| x.map_err(err_premature_cancel).boxed())
.unwrap_or_else(|| future::err(err_no_context()).boxed()) .unwrap_or_else(|| future::err(err_no_context()).boxed())
} }
}).boxed() }).boxed()
@ -244,7 +247,7 @@ impl Eth for EthClient {
} else { } else {
sync.with_context(|ctx| on_demand.block(ctx, request::Body::new(hdr))) sync.with_context(|ctx| on_demand.block(ctx, request::Body::new(hdr)))
.map(|x| x.map(|b| Some(U256::from(b.transactions_count()).into()))) .map(|x| x.map(|b| Some(U256::from(b.transactions_count()).into())))
.map(|x| x.map_err(errors::from_on_demand_error).boxed()) .map(|x| x.map_err(err_premature_cancel).boxed())
.unwrap_or_else(|| future::err(err_no_context()).boxed()) .unwrap_or_else(|| future::err(err_no_context()).boxed())
} }
}).boxed() }).boxed()
@ -264,7 +267,7 @@ impl Eth for EthClient {
} else { } else {
sync.with_context(|ctx| on_demand.block(ctx, request::Body::new(hdr))) sync.with_context(|ctx| on_demand.block(ctx, request::Body::new(hdr)))
.map(|x| x.map(|b| Some(U256::from(b.uncles_count()).into()))) .map(|x| x.map(|b| Some(U256::from(b.uncles_count()).into())))
.map(|x| x.map_err(errors::from_on_demand_error).boxed()) .map(|x| x.map_err(err_premature_cancel).boxed())
.unwrap_or_else(|| future::err(err_no_context()).boxed()) .unwrap_or_else(|| future::err(err_no_context()).boxed())
} }
}).boxed() }).boxed()
@ -284,7 +287,7 @@ impl Eth for EthClient {
} else { } else {
sync.with_context(|ctx| on_demand.block(ctx, request::Body::new(hdr))) sync.with_context(|ctx| on_demand.block(ctx, request::Body::new(hdr)))
.map(|x| x.map(|b| Some(U256::from(b.uncles_count()).into()))) .map(|x| x.map(|b| Some(U256::from(b.uncles_count()).into())))
.map(|x| x.map_err(errors::from_on_demand_error).boxed()) .map(|x| x.map_err(err_premature_cancel).boxed())
.unwrap_or_else(|| future::err(err_no_context()).boxed()) .unwrap_or_else(|| future::err(err_no_context()).boxed())
} }
}).boxed() }).boxed()