2018-05-18 14:56:11 +02:00
|
|
|
// Copyright 2018 Parity Technologies (UK) Ltd.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
pub extern crate bytes;
|
|
|
|
pub extern crate futures;
|
2018-05-23 11:22:49 +02:00
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
2018-05-18 14:56:11 +02:00
|
|
|
pub extern crate tokio_core;
|
|
|
|
pub extern crate multiaddr;
|
|
|
|
|
|
|
|
pub extern crate libp2p_core as core;
|
2018-05-23 11:22:49 +02:00
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
2018-05-18 14:56:11 +02:00
|
|
|
pub extern crate libp2p_dns as dns;
|
|
|
|
pub extern crate libp2p_identify as identify;
|
|
|
|
pub extern crate libp2p_kad as kad;
|
|
|
|
pub extern crate libp2p_floodsub as floodsub;
|
|
|
|
pub extern crate libp2p_mplex as mplex;
|
|
|
|
pub extern crate libp2p_peerstore as peerstore;
|
|
|
|
pub extern crate libp2p_ping as ping;
|
2018-05-23 11:22:49 +02:00
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
2018-05-20 10:11:42 +02:00
|
|
|
pub extern crate libp2p_ratelimit as ratelimit;
|
|
|
|
pub extern crate libp2p_relay as relay;
|
2018-05-23 11:22:49 +02:00
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
2018-05-21 18:49:02 +02:00
|
|
|
pub extern crate libp2p_secio as secio;
|
2018-05-23 11:22:49 +02:00
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
2018-05-18 14:56:11 +02:00
|
|
|
pub extern crate libp2p_tcp_transport as tcp;
|
|
|
|
pub extern crate libp2p_websocket as websocket;
|
|
|
|
|
|
|
|
pub use self::core::{Transport, ConnectionUpgrade, swarm};
|
|
|
|
pub use self::multiaddr::Multiaddr;
|
|
|
|
pub use self::peerstore::PeerId;
|
|
|
|
|
|
|
|
/// Implementation of `Transport` that supports the most common protocols.
|
|
|
|
///
|
|
|
|
/// The list currently is TCP/IP, DNS, and WebSockets. However this list could change in the
|
|
|
|
/// future to get new transports.
|
|
|
|
// TODO: handle the emscripten situation, because we shouldn't depend on tokio-core with emscripten
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct CommonTransport {
|
|
|
|
// The actual implementation of everything.
|
2018-05-23 11:22:49 +02:00
|
|
|
inner: CommonTransportInner
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
|
|
|
struct CommonTransportInner {
|
2018-05-18 14:56:11 +02:00
|
|
|
inner: websocket::WsConfig<dns::DnsConfig<tcp::TcpConfig>>,
|
|
|
|
}
|
2018-05-23 11:22:49 +02:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
#[cfg(target_os = "emscripten")]
|
|
|
|
struct CommonTransportInner {
|
|
|
|
inner: websocket::BrowserWsConfig,
|
|
|
|
}
|
2018-05-18 14:56:11 +02:00
|
|
|
|
|
|
|
impl CommonTransport {
|
|
|
|
/// Initializes the `CommonTransport`.
|
|
|
|
#[inline]
|
2018-05-23 11:22:49 +02:00
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
2018-05-18 14:56:11 +02:00
|
|
|
pub fn new(tokio_handle: tokio_core::reactor::Handle) -> CommonTransport {
|
|
|
|
let tcp = tcp::TcpConfig::new(tokio_handle);
|
|
|
|
let with_dns = dns::DnsConfig::new(tcp);
|
|
|
|
let with_ws = websocket::WsConfig::new(with_dns);
|
2018-05-23 11:22:49 +02:00
|
|
|
|
|
|
|
CommonTransport {
|
|
|
|
inner: CommonTransportInner { inner: with_ws }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Initializes the `CommonTransport`.
|
|
|
|
#[inline]
|
|
|
|
#[cfg(target_os = "emscripten")]
|
|
|
|
pub fn new() -> CommonTransport {
|
|
|
|
let inner = websocket::BrowserWsConfig::new();
|
|
|
|
CommonTransport {
|
|
|
|
inner: CommonTransportInner { inner: inner }
|
|
|
|
}
|
2018-05-18 14:56:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-23 11:22:49 +02:00
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
|
|
|
pub type InnerImplementation = websocket::WsConfig<dns::DnsConfig<tcp::TcpConfig>>;
|
|
|
|
#[cfg(target_os = "emscripten")]
|
|
|
|
pub type InnerImplementation = websocket::BrowserWsConfig;
|
|
|
|
|
2018-05-18 14:56:11 +02:00
|
|
|
impl Transport for CommonTransport {
|
2018-05-23 11:22:49 +02:00
|
|
|
type Output = <InnerImplementation as Transport>::Output;
|
|
|
|
type Listener = <InnerImplementation as Transport>::Listener;
|
|
|
|
type ListenerUpgrade = <InnerImplementation as Transport>::ListenerUpgrade;
|
|
|
|
type Dial = <InnerImplementation as Transport>::Dial;
|
2018-05-18 14:56:11 +02:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn listen_on(self, addr: Multiaddr) -> Result<(Self::Listener, Multiaddr), (Self, Multiaddr)> {
|
2018-05-23 11:22:49 +02:00
|
|
|
match self.inner.inner.listen_on(addr) {
|
2018-05-18 14:56:11 +02:00
|
|
|
Ok(res) => Ok(res),
|
|
|
|
Err((inner, addr)) => {
|
2018-05-23 11:22:49 +02:00
|
|
|
let trans = CommonTransport { inner: CommonTransportInner { inner: inner } };
|
2018-05-18 14:56:11 +02:00
|
|
|
Err((trans, addr))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn dial(self, addr: Multiaddr) -> Result<Self::Dial, (Self, Multiaddr)> {
|
2018-05-23 11:22:49 +02:00
|
|
|
match self.inner.inner.dial(addr) {
|
2018-05-18 14:56:11 +02:00
|
|
|
Ok(res) => Ok(res),
|
|
|
|
Err((inner, addr)) => {
|
2018-05-23 11:22:49 +02:00
|
|
|
let trans = CommonTransport { inner: CommonTransportInner { inner: inner } };
|
2018-05-18 14:56:11 +02:00
|
|
|
Err((trans, addr))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn nat_traversal(&self, server: &Multiaddr, observed: &Multiaddr) -> Option<Multiaddr> {
|
2018-05-23 11:22:49 +02:00
|
|
|
self.inner.inner.nat_traversal(server, observed)
|
2018-05-18 14:56:11 +02:00
|
|
|
}
|
|
|
|
}
|