2017-02-17 21:43:15 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
|
|
// 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/>.
|
|
|
|
|
|
|
|
//! Parity-specific rpc interface for operations altering the settings.
|
|
|
|
//! Implementation for light client.
|
|
|
|
|
|
|
|
use std::io;
|
2017-02-17 22:21:43 +01:00
|
|
|
use std::sync::Arc;
|
2017-02-17 21:43:15 +01:00
|
|
|
|
|
|
|
use ethsync::ManageNetwork;
|
2018-03-14 13:40:54 +01:00
|
|
|
use fetch::{self, Fetch};
|
|
|
|
use futures_cpupool::CpuPool;
|
2017-08-31 11:35:41 +02:00
|
|
|
use hash::keccak_buffer;
|
2017-02-17 21:43:15 +01:00
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
use jsonrpc_core::{Result, BoxFuture};
|
2017-10-05 12:35:01 +02:00
|
|
|
use jsonrpc_core::futures::Future;
|
2017-05-24 12:24:07 +02:00
|
|
|
use v1::helpers::dapps::DappsService;
|
2017-02-17 21:43:15 +01:00
|
|
|
use v1::helpers::errors;
|
|
|
|
use v1::traits::ParitySet;
|
2017-05-24 12:24:07 +02:00
|
|
|
use v1::types::{Bytes, H160, H256, U256, ReleaseInfo, Transaction, LocalDapp};
|
2017-02-17 21:43:15 +01:00
|
|
|
|
|
|
|
/// Parity-specific rpc interface for operations altering the settings.
|
|
|
|
pub struct ParitySetClient<F> {
|
|
|
|
net: Arc<ManageNetwork>,
|
2017-05-24 12:24:07 +02:00
|
|
|
dapps: Option<Arc<DappsService>>,
|
2017-02-17 21:43:15 +01:00
|
|
|
fetch: F,
|
2018-03-14 13:40:54 +01:00
|
|
|
pool: CpuPool,
|
2017-02-17 21:43:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<F: Fetch> ParitySetClient<F> {
|
|
|
|
/// Creates new `ParitySetClient` with given `Fetch`.
|
2018-03-14 13:40:54 +01:00
|
|
|
pub fn new(net: Arc<ManageNetwork>, dapps: Option<Arc<DappsService>>, fetch: F, p: CpuPool) -> Self {
|
2017-02-17 21:43:15 +01:00
|
|
|
ParitySetClient {
|
|
|
|
net: net,
|
2017-05-24 12:24:07 +02:00
|
|
|
dapps: dapps,
|
2017-02-17 21:43:15 +01:00
|
|
|
fetch: fetch,
|
2018-03-14 13:40:54 +01:00
|
|
|
pool: p,
|
2017-02-17 21:43:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<F: Fetch> ParitySet for ParitySetClient<F> {
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_min_gas_price(&self, _gas_price: U256) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_gas_floor_target(&self, _target: U256) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_gas_ceil_target(&self, _target: U256) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_extra_data(&self, _extra_data: Bytes) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_author(&self, _author: H160) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_engine_signer(&self, _address: H160, _password: String) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_transactions_limit(&self, _limit: usize) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_tx_gas_limit(&self, _limit: U256) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn add_reserved_peer(&self, peer: String) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
match self.net.add_reserved_peer(peer) {
|
|
|
|
Ok(()) => Ok(true),
|
|
|
|
Err(e) => Err(errors::invalid_params("Peer address", e)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn remove_reserved_peer(&self, peer: String) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
match self.net.remove_reserved_peer(peer) {
|
|
|
|
Ok(()) => Ok(true),
|
|
|
|
Err(e) => Err(errors::invalid_params("Peer address", e)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn drop_non_reserved_peers(&self) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
self.net.deny_unreserved_peers();
|
|
|
|
Ok(true)
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn accept_non_reserved_peers(&self) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
self.net.accept_unreserved_peers();
|
|
|
|
Ok(true)
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn start_network(&self) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
self.net.start_network();
|
|
|
|
Ok(true)
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn stop_network(&self) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
self.net.stop_network();
|
|
|
|
Ok(true)
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_mode(&self, _mode: String) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_spec_name(&self, _spec_name: String) -> Result<bool> {
|
2017-03-13 12:10:53 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn hash_content(&self, url: String) -> BoxFuture<H256> {
|
2018-03-14 13:40:54 +01:00
|
|
|
let future = self.fetch.fetch(&url, Default::default()).then(move |result| {
|
2017-02-17 21:43:15 +01:00
|
|
|
result
|
2017-07-04 17:01:06 +02:00
|
|
|
.map_err(errors::fetch)
|
2018-03-14 13:40:54 +01:00
|
|
|
.and_then(move |response| {
|
|
|
|
let mut reader = io::BufReader::new(fetch::BodyReader::new(response));
|
|
|
|
keccak_buffer(&mut reader).map_err(errors::fetch)
|
2017-02-17 21:43:15 +01:00
|
|
|
})
|
|
|
|
.map(Into::into)
|
2018-03-14 13:40:54 +01:00
|
|
|
});
|
|
|
|
Box::new(self.pool.spawn(future))
|
2017-02-17 21:43:15 +01:00
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn dapps_refresh(&self) -> Result<bool> {
|
2017-08-09 19:06:40 +02:00
|
|
|
self.dapps.as_ref().map(|dapps| dapps.refresh_local_dapps()).ok_or_else(errors::dapps_disabled)
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn dapps_list(&self) -> Result<Vec<LocalDapp>> {
|
2017-05-24 12:24:07 +02:00
|
|
|
self.dapps.as_ref().map(|dapps| dapps.list_dapps()).ok_or_else(errors::dapps_disabled)
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn upgrade_ready(&self) -> Result<Option<ReleaseInfo>> {
|
2017-02-17 21:43:15 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn execute_upgrade(&self) -> Result<bool> {
|
2017-02-17 21:43:15 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
2017-03-19 08:46:51 +01:00
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn remove_transaction(&self, _hash: H256) -> Result<Option<Transaction>> {
|
2017-03-19 08:46:51 +01:00
|
|
|
Err(errors::light_unimplemented(None))
|
|
|
|
}
|
2017-02-17 21:43:15 +01:00
|
|
|
}
|