mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 19:07:57 +00:00
2332d6dd04
* Removes `rlp` dependency * Enable warnings about unused crates in the CI * Remove all the unused crates * Make tests working again
92 lines
2.5 KiB
Rust
92 lines
2.5 KiB
Rust
// Copyright 2018 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate 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.
|
|
|
|
// Substrate 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 Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// tag::description[]
|
|
//! TODO: Missing doc
|
|
// end::description[]
|
|
|
|
#![recursion_limit="128"]
|
|
#![type_length_limit = "268435456"]
|
|
|
|
extern crate parking_lot;
|
|
extern crate fnv;
|
|
extern crate futures;
|
|
extern crate tokio;
|
|
extern crate tokio_io;
|
|
extern crate tokio_timer;
|
|
extern crate libc;
|
|
#[macro_use]
|
|
extern crate libp2p;
|
|
extern crate rand;
|
|
#[macro_use]
|
|
extern crate serde_derive;
|
|
extern crate serde_json;
|
|
extern crate substrate_primitives as primitives;
|
|
extern crate bytes;
|
|
extern crate unsigned_varint;
|
|
|
|
#[macro_use]
|
|
extern crate error_chain;
|
|
#[macro_use]
|
|
extern crate log;
|
|
#[cfg(test)] #[macro_use]
|
|
extern crate assert_matches;
|
|
|
|
use libp2p::PeerId;
|
|
|
|
pub use connection_filter::{ConnectionFilter, ConnectionDirection};
|
|
pub use error::{Error, ErrorKind, DisconnectReason};
|
|
pub use libp2p::{Multiaddr, multiaddr::Protocol};
|
|
pub use traits::*;
|
|
|
|
pub type TimerToken = usize;
|
|
|
|
// TODO: remove as it is unused ; however modifying `network` causes a clusterfuck of dependencies
|
|
// resolve errors at the moment
|
|
mod connection_filter;
|
|
mod custom_proto;
|
|
mod error;
|
|
mod node_handler;
|
|
mod secret;
|
|
mod service;
|
|
mod service_task;
|
|
mod swarm;
|
|
mod timeouts;
|
|
mod topology;
|
|
mod traits;
|
|
mod transport;
|
|
|
|
pub use service::NetworkService;
|
|
|
|
/// Check if node url is valid
|
|
pub fn validate_node_url(url: &str) -> Result<(), Error> {
|
|
match url.parse::<Multiaddr>() {
|
|
Ok(_) => Ok(()),
|
|
Err(_) => Err(ErrorKind::InvalidNodeId.into()),
|
|
}
|
|
}
|
|
|
|
/// Parses a string address and returns the component, if valid.
|
|
pub(crate) fn parse_str_addr(addr_str: &str) -> Result<(PeerId, Multiaddr), Error> {
|
|
let mut addr: Multiaddr = addr_str.parse().map_err(|_| ErrorKind::AddressParse)?;
|
|
let who = match addr.pop() {
|
|
Some(Protocol::P2p(key)) =>
|
|
PeerId::from_multihash(key).map_err(|_| ErrorKind::AddressParse)?,
|
|
_ => return Err(ErrorKind::AddressParse.into()),
|
|
};
|
|
Ok((who, addr))
|
|
}
|