2016-06-07 22:52:48 +02:00
|
|
|
// Copyright 2015, 2016 Ethcore (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/>.
|
|
|
|
|
|
|
|
/// Ethcore-specific rpc interface for operations altering the settings.
|
|
|
|
use util::{U256, Address};
|
2016-06-21 13:56:33 +02:00
|
|
|
use util::network::{NetworkService, NonReservedPeerMode};
|
2016-06-07 22:52:48 +02:00
|
|
|
use std::sync::{Arc, Weak};
|
|
|
|
use jsonrpc_core::*;
|
|
|
|
use ethcore::miner::MinerService;
|
2016-06-21 13:56:33 +02:00
|
|
|
use ethcore::service::SyncMessage;
|
2016-06-07 22:52:48 +02:00
|
|
|
use v1::traits::EthcoreSet;
|
2016-06-28 10:21:29 +02:00
|
|
|
use v1::types::Bytes;
|
2016-06-07 22:52:48 +02:00
|
|
|
|
|
|
|
/// Ethcore-specific rpc interface for operations altering the settings.
|
|
|
|
pub struct EthcoreSetClient<M> where
|
|
|
|
M: MinerService {
|
|
|
|
|
|
|
|
miner: Weak<M>,
|
2016-06-21 13:56:33 +02:00
|
|
|
net: Weak<NetworkService<SyncMessage>>,
|
2016-06-07 22:52:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<M> EthcoreSetClient<M> where M: MinerService {
|
|
|
|
/// Creates new `EthcoreSetClient`.
|
2016-06-21 13:56:33 +02:00
|
|
|
pub fn new(miner: &Arc<M>, net: &Arc<NetworkService<SyncMessage>>) -> Self {
|
2016-06-07 22:52:48 +02:00
|
|
|
EthcoreSetClient {
|
|
|
|
miner: Arc::downgrade(miner),
|
2016-06-21 13:56:33 +02:00
|
|
|
net: Arc::downgrade(net),
|
2016-06-07 22:52:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<M> EthcoreSet for EthcoreSetClient<M> where M: MinerService + 'static {
|
|
|
|
|
|
|
|
fn set_min_gas_price(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(U256,)>(params).and_then(|(gas_price,)| {
|
|
|
|
take_weak!(self.miner).set_minimal_gas_price(gas_price);
|
|
|
|
to_value(&true)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_gas_floor_target(&self, params: Params) -> Result<Value, Error> {
|
2016-06-23 14:29:16 +02:00
|
|
|
from_params::<(U256,)>(params).and_then(|(target,)| {
|
|
|
|
take_weak!(self.miner).set_gas_floor_target(target);
|
|
|
|
to_value(&true)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_gas_ceil_target(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(U256,)>(params).and_then(|(target,)| {
|
|
|
|
take_weak!(self.miner).set_gas_ceil_target(target);
|
2016-06-07 22:52:48 +02:00
|
|
|
to_value(&true)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_extra_data(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(Bytes,)>(params).and_then(|(extra_data,)| {
|
|
|
|
take_weak!(self.miner).set_extra_data(extra_data.to_vec());
|
|
|
|
to_value(&true)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_author(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(Address,)>(params).and_then(|(author,)| {
|
|
|
|
take_weak!(self.miner).set_author(author);
|
|
|
|
to_value(&true)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_transactions_limit(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(usize,)>(params).and_then(|(limit,)| {
|
|
|
|
take_weak!(self.miner).set_transactions_limit(limit);
|
|
|
|
to_value(&true)
|
|
|
|
})
|
|
|
|
}
|
2016-06-21 13:56:33 +02:00
|
|
|
|
2016-06-27 20:19:01 +02:00
|
|
|
fn set_tx_gas_limit(&self, params: Params) -> Result<Value, Error> {
|
2016-06-28 10:21:29 +02:00
|
|
|
from_params::<(U256,)>(params).and_then(|(limit,)| {
|
2016-06-27 20:19:01 +02:00
|
|
|
take_weak!(self.miner).set_tx_gas_limit(limit.into());
|
|
|
|
to_value(&true)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-06-21 13:56:33 +02:00
|
|
|
fn add_reserved_peer(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(String,)>(params).and_then(|(peer,)| {
|
|
|
|
match take_weak!(self.net).add_reserved_peer(&peer) {
|
|
|
|
Ok(()) => to_value(&true),
|
|
|
|
Err(_) => Err(Error::invalid_params()),
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn remove_reserved_peer(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(String,)>(params).and_then(|(peer,)| {
|
|
|
|
match take_weak!(self.net).remove_reserved_peer(&peer) {
|
|
|
|
Ok(()) => to_value(&true),
|
|
|
|
Err(_) => Err(Error::invalid_params()),
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn drop_non_reserved_peers(&self, _: Params) -> Result<Value, Error> {
|
|
|
|
take_weak!(self.net).set_non_reserved_mode(NonReservedPeerMode::Deny);
|
|
|
|
to_value(&true)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn accept_non_reserved_peers(&self, _: Params) -> Result<Value, Error> {
|
|
|
|
take_weak!(self.net).set_non_reserved_mode(NonReservedPeerMode::Accept);
|
|
|
|
to_value(&true)
|
|
|
|
}
|
2016-06-07 22:52:48 +02:00
|
|
|
}
|