2016-04-11 21:06:32 +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 implementation.
|
2016-04-19 09:58:26 +02:00
|
|
|
use util::{U256, Address, RotatingLogger};
|
2016-04-21 19:19:42 +02:00
|
|
|
use util::network_settings::NetworkSettings;
|
2016-05-02 16:12:01 +02:00
|
|
|
use util::misc::version_data;
|
2016-04-11 21:06:32 +02:00
|
|
|
use std::sync::{Arc, Weak};
|
2016-04-19 09:58:26 +02:00
|
|
|
use std::ops::Deref;
|
2016-04-21 19:19:42 +02:00
|
|
|
use std::collections::BTreeMap;
|
2016-04-11 21:06:32 +02:00
|
|
|
use jsonrpc_core::*;
|
|
|
|
use ethminer::{MinerService};
|
|
|
|
use v1::traits::Ethcore;
|
|
|
|
use v1::types::Bytes;
|
|
|
|
|
|
|
|
/// Ethcore implementation.
|
|
|
|
pub struct EthcoreClient<M>
|
|
|
|
where M: MinerService {
|
|
|
|
miner: Weak<M>,
|
2016-04-19 09:58:26 +02:00
|
|
|
logger: Arc<RotatingLogger>,
|
2016-04-21 19:19:42 +02:00
|
|
|
settings: Arc<NetworkSettings>,
|
2016-04-11 21:06:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<M> EthcoreClient<M> where M: MinerService {
|
|
|
|
/// Creates new `EthcoreClient`.
|
2016-04-21 19:19:42 +02:00
|
|
|
pub fn new(miner: &Arc<M>, logger: Arc<RotatingLogger>, settings: Arc<NetworkSettings>) -> Self {
|
2016-04-11 21:06:32 +02:00
|
|
|
EthcoreClient {
|
2016-04-19 09:58:26 +02:00
|
|
|
miner: Arc::downgrade(miner),
|
|
|
|
logger: logger,
|
2016-04-21 19:19:42 +02:00
|
|
|
settings: settings,
|
2016-04-11 21:06:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<M> Ethcore for EthcoreClient<M> where M: MinerService + 'static {
|
2016-04-13 00:04:40 +02:00
|
|
|
|
|
|
|
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> {
|
|
|
|
from_params::<(U256,)>(params).and_then(|(gas_floor_target,)| {
|
|
|
|
take_weak!(self.miner).set_gas_floor_target(gas_floor_target);
|
|
|
|
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)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-04-18 23:13:38 +02:00
|
|
|
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)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn transactions_limit(&self, _: Params) -> Result<Value, Error> {
|
|
|
|
to_value(&take_weak!(self.miner).transactions_limit())
|
|
|
|
}
|
|
|
|
|
2016-04-13 00:04:40 +02:00
|
|
|
fn min_gas_price(&self, _: Params) -> Result<Value, Error> {
|
|
|
|
to_value(&take_weak!(self.miner).minimal_gas_price())
|
|
|
|
}
|
|
|
|
|
2016-04-11 21:06:32 +02:00
|
|
|
fn extra_data(&self, _: Params) -> Result<Value, Error> {
|
|
|
|
to_value(&Bytes::new(take_weak!(self.miner).extra_data()))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn gas_floor_target(&self, _: Params) -> Result<Value, Error> {
|
|
|
|
to_value(&take_weak!(self.miner).gas_floor_target())
|
|
|
|
}
|
2016-04-19 09:58:26 +02:00
|
|
|
|
|
|
|
fn dev_logs(&self, _params: Params) -> Result<Value, Error> {
|
|
|
|
let logs = self.logger.logs();
|
2016-04-19 19:08:13 +02:00
|
|
|
to_value(&logs.deref().as_slice())
|
2016-04-19 09:58:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn dev_logs_levels(&self, _params: Params) -> Result<Value, Error> {
|
|
|
|
to_value(&self.logger.levels())
|
|
|
|
}
|
|
|
|
|
2016-04-21 19:19:42 +02:00
|
|
|
fn net_chain(&self, _params: Params) -> Result<Value, Error> {
|
|
|
|
to_value(&self.settings.chain)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn net_max_peers(&self, _params: Params) -> Result<Value, Error> {
|
|
|
|
to_value(&self.settings.max_peers)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn net_port(&self, _params: Params) -> Result<Value, Error> {
|
|
|
|
to_value(&self.settings.network_port)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn node_name(&self, _params: Params) -> Result<Value, Error> {
|
|
|
|
to_value(&self.settings.name)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rpc_settings(&self, _params: Params) -> Result<Value, Error> {
|
|
|
|
let mut map = BTreeMap::new();
|
|
|
|
map.insert("enabled".to_owned(), Value::Bool(self.settings.rpc_enabled));
|
|
|
|
map.insert("interface".to_owned(), Value::String(self.settings.rpc_interface.clone()));
|
|
|
|
map.insert("port".to_owned(), Value::U64(self.settings.rpc_port as u64));
|
|
|
|
Ok(Value::Object(map))
|
|
|
|
}
|
2016-05-02 16:12:01 +02:00
|
|
|
|
|
|
|
fn default_extra_data(&self, _params: Params) -> Result<Value, Error> {
|
|
|
|
let version = version_data();
|
2016-05-08 22:34:15 +02:00
|
|
|
to_value(&Bytes::new(version))
|
2016-05-02 16:12:01 +02:00
|
|
|
}
|
2016-04-11 21:06:32 +02:00
|
|
|
}
|