2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-02-05 13:40:41 +01:00
|
|
|
// 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-01-27 17:08:59 +01:00
|
|
|
//! Ethcore rpc.
|
|
|
|
#![warn(missing_docs)]
|
2016-02-27 13:14:58 +01:00
|
|
|
#![cfg_attr(feature="nightly", feature(custom_derive, custom_attribute, plugin))]
|
|
|
|
#![cfg_attr(feature="nightly", plugin(serde_macros, clippy))]
|
2016-01-26 13:14:22 +01:00
|
|
|
|
2016-12-12 02:57:19 +01:00
|
|
|
extern crate semver;
|
2016-02-08 10:58:08 +01:00
|
|
|
extern crate rustc_serialize;
|
2016-01-26 13:14:22 +01:00
|
|
|
extern crate serde;
|
2016-01-26 19:24:33 +01:00
|
|
|
extern crate serde_json;
|
2016-01-21 01:19:29 +01:00
|
|
|
extern crate jsonrpc_core;
|
|
|
|
extern crate jsonrpc_http_server;
|
2016-09-01 14:49:12 +02:00
|
|
|
|
2016-08-05 10:32:04 +02:00
|
|
|
extern crate ethcore_io as io;
|
2016-01-26 13:14:22 +01:00
|
|
|
extern crate ethcore;
|
2016-08-24 18:35:21 +02:00
|
|
|
extern crate ethkey;
|
2016-09-22 14:48:22 +02:00
|
|
|
extern crate ethcrypto as crypto;
|
2016-08-10 17:57:40 +02:00
|
|
|
extern crate ethstore;
|
2016-02-01 12:08:43 +01:00
|
|
|
extern crate ethsync;
|
2017-01-11 20:02:27 +01:00
|
|
|
extern crate ethash;
|
2017-02-03 16:20:43 +01:00
|
|
|
extern crate ethcore_light as light;
|
2016-02-23 18:51:29 +01:00
|
|
|
extern crate transient_hashmap;
|
2016-11-22 11:56:27 +01:00
|
|
|
extern crate jsonrpc_ipc_server as ipc;
|
2016-07-07 09:39:32 +02:00
|
|
|
extern crate ethcore_ipc;
|
2016-08-23 17:07:00 +02:00
|
|
|
extern crate time;
|
2016-09-01 14:49:12 +02:00
|
|
|
extern crate rlp;
|
2016-09-27 16:27:06 +02:00
|
|
|
extern crate fetch;
|
2016-12-22 18:26:39 +01:00
|
|
|
extern crate futures;
|
2017-02-04 22:18:19 +01:00
|
|
|
extern crate order_stat;
|
2016-12-11 23:15:52 +01:00
|
|
|
extern crate parity_updater as updater;
|
2016-12-22 18:26:39 +01:00
|
|
|
extern crate parity_reactor;
|
2016-09-01 14:49:12 +02:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate ethcore_util as util;
|
2016-12-13 14:59:19 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate jsonrpc_macros;
|
2016-01-21 01:19:29 +01:00
|
|
|
|
2016-05-24 16:56:09 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
extern crate ethjson;
|
|
|
|
#[cfg(test)]
|
|
|
|
extern crate ethcore_devtools as devtools;
|
|
|
|
|
2016-03-09 11:38:53 +01:00
|
|
|
use std::sync::Arc;
|
2016-04-07 14:24:52 +02:00
|
|
|
use std::net::SocketAddr;
|
2016-08-05 10:32:04 +02:00
|
|
|
use io::PanicHandler;
|
2017-01-11 20:02:27 +01:00
|
|
|
use jsonrpc_core::reactor::RpcHandler;
|
2016-01-21 01:19:29 +01:00
|
|
|
|
2016-11-22 11:56:27 +01:00
|
|
|
pub use ipc::{Server as IpcServer, Error as IpcServerError};
|
2016-07-20 12:34:17 +02:00
|
|
|
pub use jsonrpc_http_server::{ServerBuilder, Server, RpcServerError};
|
2016-03-02 12:42:08 +01:00
|
|
|
pub mod v1;
|
2017-02-04 22:18:19 +01:00
|
|
|
pub use v1::{SigningQueue, SignerService, ConfirmationsQueue, NetworkSettings, Metadata, Origin, informant};
|
2016-10-20 23:36:18 +02:00
|
|
|
pub use v1::block_import::is_major_importing;
|
2016-06-01 19:37:34 +02:00
|
|
|
|
2017-01-11 20:02:27 +01:00
|
|
|
/// Start http server asynchronously and returns result with `Server` handle on success or an error.
|
2017-02-04 22:18:19 +01:00
|
|
|
pub fn start_http<M: jsonrpc_core::Metadata, S: jsonrpc_core::Middleware<M>>(
|
2017-01-11 20:02:27 +01:00
|
|
|
addr: &SocketAddr,
|
|
|
|
cors_domains: Option<Vec<String>>,
|
|
|
|
allowed_hosts: Option<Vec<String>>,
|
|
|
|
panic_handler: Arc<PanicHandler>,
|
2017-02-04 22:18:19 +01:00
|
|
|
handler: RpcHandler<M, S>,
|
2017-01-11 20:02:27 +01:00
|
|
|
) -> Result<Server, RpcServerError> {
|
|
|
|
|
|
|
|
let cors_domains = cors_domains.map(|domains| {
|
|
|
|
domains.into_iter()
|
|
|
|
.map(|v| match v.as_str() {
|
|
|
|
"*" => jsonrpc_http_server::AccessControlAllowOrigin::Any,
|
|
|
|
"null" => jsonrpc_http_server::AccessControlAllowOrigin::Null,
|
|
|
|
v => jsonrpc_http_server::AccessControlAllowOrigin::Value(v.into()),
|
2016-06-09 10:02:52 +02:00
|
|
|
})
|
2017-01-11 20:02:27 +01:00
|
|
|
.collect()
|
|
|
|
});
|
|
|
|
|
|
|
|
ServerBuilder::with_rpc_handler(handler)
|
|
|
|
.cors(cors_domains.into())
|
|
|
|
.allowed_hosts(allowed_hosts.into())
|
|
|
|
.panic_handler(move || {
|
|
|
|
panic_handler.notify_all("Panic in RPC thread.".to_owned());
|
|
|
|
})
|
|
|
|
.start_http(addr)
|
|
|
|
}
|
2016-05-04 15:37:09 +02:00
|
|
|
|
2017-01-11 20:02:27 +01:00
|
|
|
/// Start ipc server asynchronously and returns result with `Server` handle on success or an error.
|
2017-02-04 22:18:19 +01:00
|
|
|
pub fn start_ipc<M: jsonrpc_core::Metadata, S: jsonrpc_core::Middleware<M>>(
|
|
|
|
addr: &str,
|
|
|
|
handler: RpcHandler<M, S>,
|
|
|
|
) -> Result<ipc::Server<M, S>, ipc::Error> {
|
2017-01-11 20:02:27 +01:00
|
|
|
let server = ipc::Server::with_rpc_handler(addr, handler)?;
|
|
|
|
server.run_async()?;
|
|
|
|
Ok(server)
|
2016-03-02 12:42:08 +01:00
|
|
|
}
|