2016-04-21 13:12:43 +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/>.
|
|
|
|
|
|
|
|
|
2016-04-29 20:52:08 +02:00
|
|
|
use std::collections::BTreeMap;
|
2016-04-21 13:57:27 +02:00
|
|
|
use std::str::FromStr;
|
2016-04-21 13:12:43 +02:00
|
|
|
use std::sync::Arc;
|
|
|
|
use std::net::SocketAddr;
|
|
|
|
use ethcore::client::Client;
|
|
|
|
use ethsync::EthSync;
|
2016-04-21 17:32:53 +02:00
|
|
|
use ethminer::{Miner, ExternalMiner};
|
2016-04-21 13:12:43 +02:00
|
|
|
use util::RotatingLogger;
|
2016-04-23 12:29:12 +02:00
|
|
|
use util::panics::PanicHandler;
|
2016-04-21 13:12:43 +02:00
|
|
|
use util::keys::store::{AccountService};
|
2016-04-21 19:19:42 +02:00
|
|
|
use util::network_settings::NetworkSettings;
|
2016-04-21 13:12:43 +02:00
|
|
|
use die::*;
|
2016-05-04 15:37:09 +02:00
|
|
|
use jsonipc;
|
2016-04-21 13:12:43 +02:00
|
|
|
|
|
|
|
#[cfg(feature = "rpc")]
|
|
|
|
pub use ethcore_rpc::Server as RpcServer;
|
|
|
|
#[cfg(feature = "rpc")]
|
|
|
|
use ethcore_rpc::{RpcServerError, RpcServer as Server};
|
|
|
|
#[cfg(not(feature = "rpc"))]
|
|
|
|
pub struct RpcServer;
|
|
|
|
|
2016-05-04 15:37:09 +02:00
|
|
|
pub struct HttpConfiguration {
|
2016-04-21 13:57:27 +02:00
|
|
|
pub enabled: bool,
|
|
|
|
pub interface: String,
|
|
|
|
pub port: u16,
|
|
|
|
pub apis: String,
|
2016-05-14 13:29:26 +02:00
|
|
|
pub cors: Vec<String>,
|
2016-04-21 13:57:27 +02:00
|
|
|
}
|
|
|
|
|
2016-05-04 15:37:09 +02:00
|
|
|
pub struct IpcConfiguration {
|
|
|
|
pub enabled: bool,
|
|
|
|
pub socket_addr: String,
|
|
|
|
pub apis: String,
|
|
|
|
}
|
|
|
|
|
2016-04-21 13:57:27 +02:00
|
|
|
pub struct Dependencies {
|
2016-04-23 12:29:12 +02:00
|
|
|
pub panic_handler: Arc<PanicHandler>,
|
2016-04-21 13:57:27 +02:00
|
|
|
pub client: Arc<Client>,
|
|
|
|
pub sync: Arc<EthSync>,
|
|
|
|
pub secret_store: Arc<AccountService>,
|
|
|
|
pub miner: Arc<Miner>,
|
2016-04-21 17:32:53 +02:00
|
|
|
pub external_miner: Arc<ExternalMiner>,
|
2016-04-21 13:57:27 +02:00
|
|
|
pub logger: Arc<RotatingLogger>,
|
2016-04-21 19:19:42 +02:00
|
|
|
pub settings: Arc<NetworkSettings>,
|
2016-04-21 13:57:27 +02:00
|
|
|
}
|
|
|
|
|
2016-05-04 15:37:09 +02:00
|
|
|
pub fn new_http(conf: HttpConfiguration, deps: &Arc<Dependencies>) -> Option<RpcServer> {
|
2016-04-21 13:57:27 +02:00
|
|
|
if !conf.enabled {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
let interface = match conf.interface.as_str() {
|
|
|
|
"all" => "0.0.0.0",
|
|
|
|
"local" => "127.0.0.1",
|
|
|
|
x => x,
|
|
|
|
};
|
|
|
|
let apis = conf.apis.split(',').collect();
|
|
|
|
let url = format!("{}:{}", interface, conf.port);
|
|
|
|
let addr = SocketAddr::from_str(&url).unwrap_or_else(|_| die!("{}: Invalid JSONRPC listen host/port given.", url));
|
|
|
|
|
2016-05-04 15:37:09 +02:00
|
|
|
Some(setup_http_rpc_server(deps, &addr, conf.cors, apis))
|
2016-04-21 13:57:27 +02:00
|
|
|
}
|
|
|
|
|
2016-05-04 15:37:09 +02:00
|
|
|
pub fn new_ipc(conf: IpcConfiguration, deps: &Arc<Dependencies>) -> Option<jsonipc::Server> {
|
|
|
|
if !conf.enabled { return None; }
|
|
|
|
let apis = conf.apis.split(',').collect();
|
|
|
|
Some(setup_ipc_rpc_server(deps, &conf.socket_addr, apis))
|
2016-04-21 13:12:43 +02:00
|
|
|
}
|
|
|
|
|
2016-05-04 15:37:09 +02:00
|
|
|
fn setup_rpc_server(apis: Vec<&str>, deps: &Arc<Dependencies>) -> Server {
|
2016-04-21 13:12:43 +02:00
|
|
|
use ethcore_rpc::v1::*;
|
|
|
|
|
|
|
|
let server = Server::new();
|
2016-04-29 20:52:08 +02:00
|
|
|
let mut modules = BTreeMap::new();
|
2016-04-21 13:12:43 +02:00
|
|
|
for api in apis.into_iter() {
|
|
|
|
match api {
|
2016-04-29 20:52:08 +02:00
|
|
|
"web3" => {
|
|
|
|
modules.insert("web3".to_owned(), "1.0".to_owned());
|
|
|
|
server.add_delegate(Web3Client::new().to_delegate());
|
|
|
|
},
|
|
|
|
"net" => {
|
2016-05-02 12:17:30 +02:00
|
|
|
modules.insert("net".to_owned(), "1.0".to_owned());
|
2016-04-29 20:52:08 +02:00
|
|
|
server.add_delegate(NetClient::new(&deps.sync).to_delegate());
|
|
|
|
},
|
2016-04-21 13:12:43 +02:00
|
|
|
"eth" => {
|
2016-04-29 20:52:08 +02:00
|
|
|
modules.insert("eth".to_owned(), "1.0".to_owned());
|
2016-04-21 17:32:53 +02:00
|
|
|
server.add_delegate(EthClient::new(&deps.client, &deps.sync, &deps.secret_store, &deps.miner, &deps.external_miner).to_delegate());
|
2016-04-21 13:57:27 +02:00
|
|
|
server.add_delegate(EthFilterClient::new(&deps.client, &deps.miner).to_delegate());
|
2016-04-21 13:12:43 +02:00
|
|
|
},
|
2016-04-29 20:52:08 +02:00
|
|
|
"personal" => {
|
|
|
|
modules.insert("personal".to_owned(), "1.0".to_owned());
|
|
|
|
server.add_delegate(PersonalClient::new(&deps.secret_store).to_delegate())
|
|
|
|
},
|
|
|
|
"ethcore" => {
|
2016-05-04 14:03:29 +02:00
|
|
|
modules.insert("ethcore".to_owned(), "1.0".to_owned());
|
2016-04-29 20:52:08 +02:00
|
|
|
server.add_delegate(EthcoreClient::new(&deps.miner, deps.logger.clone(), deps.settings.clone()).to_delegate())
|
|
|
|
},
|
2016-05-02 12:17:30 +02:00
|
|
|
"traces" => {
|
|
|
|
modules.insert("traces".to_owned(), "1.0".to_owned());
|
|
|
|
server.add_delegate(TracesClient::new(&deps.client).to_delegate())
|
|
|
|
},
|
2016-04-21 13:12:43 +02:00
|
|
|
_ => {
|
|
|
|
die!("{}: Invalid API name to be enabled.", api);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2016-04-29 20:52:08 +02:00
|
|
|
server.add_delegate(RpcClient::new(modules).to_delegate());
|
2016-05-04 15:37:09 +02:00
|
|
|
server
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "rpc"))]
|
|
|
|
pub fn setup_http_rpc_server(
|
|
|
|
_deps: Dependencies,
|
|
|
|
_url: &SocketAddr,
|
|
|
|
_cors_domain: Option<String>,
|
|
|
|
_apis: Vec<&str>,
|
|
|
|
) -> ! {
|
|
|
|
die!("Your Parity version has been compiled without JSON-RPC support.")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "rpc")]
|
|
|
|
pub fn setup_http_rpc_server(
|
|
|
|
dependencies: &Arc<Dependencies>,
|
|
|
|
url: &SocketAddr,
|
2016-05-14 13:29:26 +02:00
|
|
|
cors_domains: Vec<String>,
|
2016-05-04 15:37:09 +02:00
|
|
|
apis: Vec<&str>,
|
|
|
|
) -> RpcServer {
|
|
|
|
let server = setup_rpc_server(apis, dependencies);
|
2016-05-14 13:29:26 +02:00
|
|
|
let start_result = server.start_http(url, cors_domains);
|
2016-05-04 15:37:09 +02:00
|
|
|
let deps = dependencies.clone();
|
2016-04-21 13:12:43 +02:00
|
|
|
match start_result {
|
2016-04-28 21:48:00 +02:00
|
|
|
Err(RpcServerError::IoError(err)) => die_with_io_error("RPC", err),
|
|
|
|
Err(e) => die!("RPC: {:?}", e),
|
2016-04-23 12:29:12 +02:00
|
|
|
Ok(server) => {
|
|
|
|
server.set_panic_handler(move || {
|
|
|
|
deps.panic_handler.notify_all("Panic in RPC thread.".to_owned());
|
|
|
|
});
|
|
|
|
server
|
|
|
|
},
|
2016-04-21 13:12:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-04 15:37:09 +02:00
|
|
|
pub fn setup_ipc_rpc_server(dependencies: &Arc<Dependencies>, addr: &str, apis: Vec<&str>) -> jsonipc::Server {
|
|
|
|
let server = setup_rpc_server(apis, dependencies);
|
|
|
|
match server.start_ipc(addr) {
|
|
|
|
Err(jsonipc::Error::Io(io_error)) => die_with_io_error("RPC", io_error),
|
|
|
|
Err(any_error) => die!("RPC: {:?}", any_error),
|
|
|
|
Ok(server) => server
|
|
|
|
}
|
|
|
|
}
|