160 lines
4.6 KiB
Rust
Raw Normal View History

// 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.
extern crate bytes;
extern crate futures;
#[macro_use]
extern crate log;
extern crate libp2p_core as core;
extern crate parking_lot;
extern crate tokio_io;
extern crate yamux;
use bytes::Bytes;
use core::Endpoint;
use futures::{future::{self, FutureResult}, prelude::*};
use parking_lot::Mutex;
use std::{io, iter};
use std::io::{Read, Write, Error as IoError};
use tokio_io::{AsyncRead, AsyncWrite};
pub struct Yamux<C>(Mutex<yamux::Connection<C>>);
impl<C> Yamux<C>
where
C: AsyncRead + AsyncWrite + 'static
{
pub fn new(c: C, cfg: yamux::Config, mode: yamux::Mode) -> Self {
Yamux(Mutex::new(yamux::Connection::new(c, cfg, mode)))
}
}
impl<C> core::StreamMuxer for Yamux<C>
where
C: AsyncRead + AsyncWrite + 'static
{
type Substream = yamux::StreamHandle<C>;
type OutboundSubstream = FutureResult<Option<Self::Substream>, io::Error>;
#[inline]
fn poll_inbound(&self) -> Poll<Option<Self::Substream>, IoError> {
match self.0.lock().poll() {
Err(e) => {
error!("connection error: {}", e);
Err(io::Error::new(io::ErrorKind::Other, e))
}
Ok(Async::NotReady) => Ok(Async::NotReady),
Ok(Async::Ready(None)) => Ok(Async::Ready(None)),
Ok(Async::Ready(Some(stream))) => Ok(Async::Ready(Some(stream)))
}
}
#[inline]
fn open_outbound(&self) -> Self::OutboundSubstream {
let stream = self.0.lock().open_stream().map_err(|e| io::Error::new(io::ErrorKind::Other, e));
future::result(stream)
}
#[inline]
fn poll_outbound(&self, substream: &mut Self::OutboundSubstream) -> Poll<Option<Self::Substream>, IoError> {
substream.poll()
}
#[inline]
fn destroy_outbound(&self, _substream: Self::OutboundSubstream) {
}
#[inline]
fn read_substream(&self, substream: &mut Self::Substream, buf: &mut [u8]) -> Result<usize, IoError> {
substream.read(buf)
}
#[inline]
fn write_substream(&self, substream: &mut Self::Substream, buf: &[u8]) -> Result<usize, IoError> {
substream.write(buf)
}
#[inline]
fn flush_substream(&self, substream: &mut Self::Substream) -> Result<(), IoError> {
substream.flush()
}
#[inline]
fn shutdown_substream(&self, substream: &mut Self::Substream) -> Poll<(), IoError> {
substream.shutdown()
}
#[inline]
fn destroy_substream(&self, _substream: Self::Substream) {
}
#[inline]
fn close_inbound(&self) {
}
#[inline]
fn close_outbound(&self) {
}
}
#[derive(Clone)]
pub struct Config(yamux::Config);
impl Config {
pub fn new(cfg: yamux::Config) -> Self {
Config(cfg)
}
}
impl Default for Config {
fn default() -> Self {
Config(yamux::Config::default())
}
}
impl<C, M> core::ConnectionUpgrade<C, M> for Config
where
C: AsyncRead + AsyncWrite + 'static,
M: 'static
{
type UpgradeIdentifier = ();
type NamesIter = iter::Once<(Bytes, ())>;
fn protocol_names(&self) -> Self::NamesIter {
iter::once((Bytes::from("/yamux/1.0.0"), ()))
}
type Output = Yamux<C>;
type MultiaddrFuture = M;
type Future = FutureResult<(Yamux<C>, M), io::Error>;
fn upgrade(self, i: C, _: (), end: Endpoint, remote: M) -> Self::Future {
let mode = match end {
Endpoint::Dialer => yamux::Mode::Client,
Endpoint::Listener => yamux::Mode::Server
};
future::ok((Yamux::new(i, self.0, mode), remote))
}
}