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/>.
|
|
|
|
|
2017-05-24 12:24:07 +02:00
|
|
|
//! Parity RPC.
|
|
|
|
|
2016-01-27 17:08:59 +01:00
|
|
|
#![warn(missing_docs)]
|
2016-01-26 13:14:22 +01:00
|
|
|
|
2017-10-17 14:50:53 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate futures;
|
|
|
|
|
2017-09-01 16:57:57 +02:00
|
|
|
extern crate ansi_term;
|
2017-05-24 12:24:07 +02:00
|
|
|
extern crate cid;
|
|
|
|
extern crate crypto as rust_crypto;
|
2017-07-11 12:22:19 +02:00
|
|
|
extern crate futures_cpupool;
|
2017-08-17 16:05:26 +02:00
|
|
|
extern crate itertools;
|
2017-05-24 12:24:07 +02:00
|
|
|
extern crate multihash;
|
2017-03-22 07:02:14 +01:00
|
|
|
extern crate order_stat;
|
2017-09-02 20:09:13 +02:00
|
|
|
extern crate parking_lot;
|
2017-05-24 12:24:07 +02:00
|
|
|
extern crate rand;
|
2017-07-06 11:26:14 +02:00
|
|
|
extern crate rustc_hex;
|
2017-03-22 07:02:14 +01:00
|
|
|
extern crate semver;
|
2016-01-26 13:14:22 +01:00
|
|
|
extern crate serde;
|
2016-01-26 19:24:33 +01:00
|
|
|
extern crate serde_json;
|
2017-11-16 17:34:23 +01:00
|
|
|
extern crate tiny_keccak;
|
2017-05-06 13:24:18 +02:00
|
|
|
extern crate tokio_timer;
|
2017-03-22 07:02:14 +01:00
|
|
|
extern crate transient_hashmap;
|
|
|
|
|
2016-01-21 01:19:29 +01:00
|
|
|
extern crate jsonrpc_core;
|
2017-04-03 10:27:37 +02:00
|
|
|
extern crate jsonrpc_http_server as http;
|
|
|
|
extern crate jsonrpc_ipc_server as ipc;
|
2017-05-06 13:24:18 +02:00
|
|
|
extern crate jsonrpc_pubsub;
|
2016-09-01 14:49:12 +02:00
|
|
|
|
2017-03-22 07:02:14 +01:00
|
|
|
extern crate ethash;
|
2016-01-26 13:14:22 +01:00
|
|
|
extern crate ethcore;
|
2017-09-06 20:47:45 +02:00
|
|
|
extern crate ethcore_bytes as bytes;
|
2017-05-24 12:24:07 +02:00
|
|
|
extern crate ethcore_devtools as devtools;
|
2017-03-22 07:02:14 +01:00
|
|
|
extern crate ethcore_io as io;
|
|
|
|
extern crate ethcore_light as light;
|
2018-01-11 17:49:10 +01:00
|
|
|
extern crate ethcore_miner as miner;
|
|
|
|
extern crate ethcore_transaction as transaction;
|
2016-09-22 14:48:22 +02:00
|
|
|
extern crate ethcrypto as crypto;
|
2018-01-10 13:35:18 +01:00
|
|
|
extern crate ethereum_types;
|
2017-03-22 07:02:14 +01:00
|
|
|
extern crate ethkey;
|
2016-08-10 17:57:40 +02:00
|
|
|
extern crate ethstore;
|
2016-02-01 12:08:43 +01:00
|
|
|
extern crate ethsync;
|
2017-03-22 06:23:40 +01:00
|
|
|
extern crate ethcore_logger;
|
2017-08-01 12:37:57 +02:00
|
|
|
extern crate vm;
|
2016-09-27 16:27:06 +02:00
|
|
|
extern crate fetch;
|
2017-08-28 14:11:55 +02:00
|
|
|
extern crate node_health;
|
2016-12-22 18:26:39 +01:00
|
|
|
extern crate parity_reactor;
|
2017-03-22 07:02:14 +01:00
|
|
|
extern crate parity_updater as updater;
|
2017-12-22 14:37:39 +01:00
|
|
|
extern crate parity_version as version;
|
2017-03-22 07:02:14 +01:00
|
|
|
extern crate rlp;
|
2017-02-17 16:18:31 +01:00
|
|
|
extern crate stats;
|
2017-11-10 19:04:55 +01:00
|
|
|
extern crate keccak_hash as hash;
|
2017-09-14 19:28:43 +02:00
|
|
|
extern crate hardware_wallet;
|
2018-03-03 18:42:13 +01:00
|
|
|
extern crate patricia_trie as trie;
|
2016-09-01 14:49:12 +02:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
2016-12-13 14:59:19 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate jsonrpc_macros;
|
2017-02-13 16:38:47 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
2016-01-21 01:19:29 +01:00
|
|
|
|
2016-05-24 16:56:09 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
extern crate ethjson;
|
|
|
|
|
2017-04-27 18:23:22 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
#[macro_use]
|
|
|
|
extern crate pretty_assertions;
|
|
|
|
|
2017-10-10 20:01:27 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
#[macro_use]
|
|
|
|
extern crate macros;
|
|
|
|
|
2017-10-12 15:36:27 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
extern crate kvdb_memorydb;
|
|
|
|
|
2018-01-19 17:32:53 +01:00
|
|
|
extern crate tempdir;
|
|
|
|
|
2017-04-13 16:32:07 +02:00
|
|
|
pub extern crate jsonrpc_ws_server as ws;
|
|
|
|
|
2017-05-24 12:24:07 +02:00
|
|
|
mod authcodes;
|
|
|
|
mod http_common;
|
2016-03-02 12:42:08 +01:00
|
|
|
pub mod v1;
|
2017-03-22 07:02:14 +01:00
|
|
|
|
2017-05-24 12:24:07 +02:00
|
|
|
pub mod tests;
|
|
|
|
|
2017-05-06 13:24:18 +02:00
|
|
|
pub use jsonrpc_pubsub::Session as PubSubSession;
|
2017-03-22 07:02:14 +01:00
|
|
|
pub use ipc::{Server as IpcServer, MetaExtractor as IpcMetaExtractor, RequestContext as IpcRequestContext};
|
2017-04-03 10:27:37 +02:00
|
|
|
pub use http::{
|
|
|
|
hyper,
|
|
|
|
RequestMiddleware, RequestMiddlewareAction,
|
2017-04-13 16:32:07 +02:00
|
|
|
AccessControlAllowOrigin, Host, DomainsValidation
|
2017-04-03 10:27:37 +02:00
|
|
|
};
|
2017-03-22 07:02:14 +01:00
|
|
|
|
2017-05-24 12:24:07 +02:00
|
|
|
pub use v1::{NetworkSettings, Metadata, Origin, informant, dispatch, signer, dapps};
|
2016-10-20 23:36:18 +02:00
|
|
|
pub use v1::block_import::is_major_importing;
|
2017-05-24 12:24:07 +02:00
|
|
|
pub use v1::extractors::{RpcExtractor, WsExtractor, WsStats, WsDispatcher};
|
|
|
|
pub use authcodes::{AuthCodes, TimeProvider};
|
|
|
|
pub use http_common::HttpMetaExtractor;
|
2016-06-01 19:37:34 +02:00
|
|
|
|
2017-03-22 07:02:14 +01:00
|
|
|
use std::net::SocketAddr;
|
|
|
|
use http::tokio_core;
|
|
|
|
|
2017-04-03 10:27:37 +02:00
|
|
|
/// RPC HTTP Server instance
|
2017-10-05 12:35:01 +02:00
|
|
|
pub type HttpServer = http::Server;
|
2017-04-03 10:27:37 +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-04-03 10:27:37 +02:00
|
|
|
pub fn start_http<M, S, H, T, R>(
|
2017-01-11 20:02:27 +01:00
|
|
|
addr: &SocketAddr,
|
2017-03-22 07:02:14 +01:00
|
|
|
cors_domains: http::DomainsValidation<http::AccessControlAllowOrigin>,
|
|
|
|
allowed_hosts: http::DomainsValidation<http::Host>,
|
|
|
|
handler: H,
|
|
|
|
remote: tokio_core::reactor::Remote,
|
2017-02-14 22:45:43 +01:00
|
|
|
extractor: T,
|
2017-10-05 12:35:01 +02:00
|
|
|
middleware: Option<R>,
|
|
|
|
threads: usize,
|
2017-11-14 11:38:17 +01:00
|
|
|
) -> ::std::io::Result<HttpServer> where
|
2017-02-14 22:45:43 +01:00
|
|
|
M: jsonrpc_core::Metadata,
|
|
|
|
S: jsonrpc_core::Middleware<M>,
|
2017-03-22 07:02:14 +01:00
|
|
|
H: Into<jsonrpc_core::MetaIoHandler<M, S>>,
|
2017-04-03 10:27:37 +02:00
|
|
|
T: HttpMetaExtractor<Metadata=M>,
|
|
|
|
R: RequestMiddleware,
|
2017-02-14 22:45:43 +01:00
|
|
|
{
|
2018-02-07 16:13:54 +01:00
|
|
|
let extractor = http_common::MetaExtractor::new(extractor);
|
|
|
|
let mut builder = http::ServerBuilder::with_meta_extractor(handler, extractor)
|
2017-10-05 12:35:01 +02:00
|
|
|
.threads(threads)
|
|
|
|
.event_loop_remote(remote)
|
|
|
|
.cors(cors_domains.into())
|
|
|
|
.allowed_hosts(allowed_hosts.into());
|
|
|
|
|
|
|
|
if let Some(dapps) = middleware {
|
|
|
|
builder = builder.request_middleware(dapps)
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(builder.start_http(addr)?)
|
2017-01-11 20:02:27 +01:00
|
|
|
}
|
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-03-22 07:02:14 +01:00
|
|
|
pub fn start_ipc<M, S, H, T>(
|
2017-02-04 22:18:19 +01:00
|
|
|
addr: &str,
|
2017-03-22 07:02:14 +01:00
|
|
|
handler: H,
|
|
|
|
remote: tokio_core::reactor::Remote,
|
|
|
|
extractor: T,
|
|
|
|
) -> ::std::io::Result<ipc::Server> where
|
|
|
|
M: jsonrpc_core::Metadata,
|
|
|
|
S: jsonrpc_core::Middleware<M>,
|
|
|
|
H: Into<jsonrpc_core::MetaIoHandler<M, S>>,
|
|
|
|
T: IpcMetaExtractor<M>,
|
|
|
|
{
|
2018-02-07 16:13:54 +01:00
|
|
|
ipc::ServerBuilder::with_meta_extractor(handler, extractor)
|
2017-03-22 07:02:14 +01:00
|
|
|
.event_loop_remote(remote)
|
|
|
|
.start(addr)
|
2016-03-02 12:42:08 +01:00
|
|
|
}
|
2017-04-13 16:32:07 +02:00
|
|
|
|
|
|
|
/// Start WS server and return `Server` handle.
|
2017-05-24 12:24:07 +02:00
|
|
|
pub fn start_ws<M, S, H, T, U, V>(
|
2017-04-13 16:32:07 +02:00
|
|
|
addr: &SocketAddr,
|
|
|
|
handler: H,
|
|
|
|
remote: tokio_core::reactor::Remote,
|
|
|
|
allowed_origins: ws::DomainsValidation<ws::Origin>,
|
|
|
|
allowed_hosts: ws::DomainsValidation<ws::Host>,
|
|
|
|
extractor: T,
|
2017-05-24 12:24:07 +02:00
|
|
|
middleware: V,
|
2017-04-13 16:32:07 +02:00
|
|
|
stats: U,
|
|
|
|
) -> Result<ws::Server, ws::Error> where
|
|
|
|
M: jsonrpc_core::Metadata,
|
|
|
|
S: jsonrpc_core::Middleware<M>,
|
|
|
|
H: Into<jsonrpc_core::MetaIoHandler<M, S>>,
|
|
|
|
T: ws::MetaExtractor<M>,
|
|
|
|
U: ws::SessionStats,
|
2017-05-24 12:24:07 +02:00
|
|
|
V: ws::RequestMiddleware,
|
2017-04-13 16:32:07 +02:00
|
|
|
{
|
2018-02-07 16:13:54 +01:00
|
|
|
ws::ServerBuilder::with_meta_extractor(handler, extractor)
|
2017-04-13 16:32:07 +02:00
|
|
|
.event_loop_remote(remote)
|
2017-05-24 12:24:07 +02:00
|
|
|
.request_middleware(middleware)
|
2017-04-13 16:32:07 +02:00
|
|
|
.allowed_origins(allowed_origins)
|
|
|
|
.allowed_hosts(allowed_hosts)
|
|
|
|
.session_stats(stats)
|
|
|
|
.start(addr)
|
|
|
|
}
|