| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
|
|
| #![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))] |
|
|
| mod codec; |
| mod config; |
| mod io; |
|
|
| pub use config::{MaxBufferBehaviour, MplexConfig}; |
|
|
| use bytes::Bytes; |
| use codec::LocalStreamId; |
| use futures::{prelude::*, ready}; |
| use libp2p_core::muxing::{StreamMuxer, StreamMuxerEvent}; |
| use libp2p_core::upgrade::{InboundConnectionUpgrade, OutboundConnectionUpgrade, UpgradeInfo}; |
| use parking_lot::Mutex; |
| use std::{cmp, iter, pin::Pin, sync::Arc, task::Context, task::Poll}; |
|
|
| impl UpgradeInfo for MplexConfig { |
| type Info = &'static str; |
| type InfoIter = iter::Once<Self::Info>; |
|
|
| fn protocol_info(&self) -> Self::InfoIter { |
| iter::once(self.protocol_name) |
| } |
| } |
|
|
| impl<C> InboundConnectionUpgrade<C> for MplexConfig |
| where |
| C: AsyncRead + AsyncWrite + Unpin, |
| { |
| type Output = Multiplex<C>; |
| type Error = io::Error; |
| type Future = future::Ready<Result<Self::Output, io::Error>>; |
|
|
| fn upgrade_inbound(self, socket: C, _: Self::Info) -> Self::Future { |
| future::ready(Ok(Multiplex { |
| #[allow(unknown_lints, clippy::arc_with_non_send_sync)] |
| io: Arc::new(Mutex::new(io::Multiplexed::new(socket, self))), |
| })) |
| } |
| } |
|
|
| impl<C> OutboundConnectionUpgrade<C> for MplexConfig |
| where |
| C: AsyncRead + AsyncWrite + Unpin, |
| { |
| type Output = Multiplex<C>; |
| type Error = io::Error; |
| type Future = future::Ready<Result<Self::Output, io::Error>>; |
|
|
| fn upgrade_outbound(self, socket: C, _: Self::Info) -> Self::Future { |
| future::ready(Ok(Multiplex { |
| #[allow(unknown_lints, clippy::arc_with_non_send_sync)] |
| io: Arc::new(Mutex::new(io::Multiplexed::new(socket, self))), |
| })) |
| } |
| } |
|
|
| |
| pub struct Multiplex<C> { |
| io: Arc<Mutex<io::Multiplexed<C>>>, |
| } |
|
|
| impl<C> StreamMuxer for Multiplex<C> |
| where |
| C: AsyncRead + AsyncWrite + Unpin, |
| { |
| type Substream = Substream<C>; |
| type Error = io::Error; |
|
|
| fn poll_inbound( |
| self: Pin<&mut Self>, |
| cx: &mut Context<'_>, |
| ) -> Poll<Result<Self::Substream, Self::Error>> { |
| self.io |
| .lock() |
| .poll_next_stream(cx) |
| .map_ok(|stream_id| Substream::new(stream_id, self.io.clone())) |
| } |
|
|
| fn poll_outbound( |
| self: Pin<&mut Self>, |
| cx: &mut Context<'_>, |
| ) -> Poll<Result<Self::Substream, Self::Error>> { |
| self.io |
| .lock() |
| .poll_open_stream(cx) |
| .map_ok(|stream_id| Substream::new(stream_id, self.io.clone())) |
| } |
|
|
| fn poll( |
| self: Pin<&mut Self>, |
| _: &mut Context<'_>, |
| ) -> Poll<Result<StreamMuxerEvent, Self::Error>> { |
| Poll::Pending |
| } |
|
|
| fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> { |
| self.io.lock().poll_close(cx) |
| } |
| } |
|
|
| impl<C> AsyncRead for Substream<C> |
| where |
| C: AsyncRead + AsyncWrite + Unpin, |
| { |
| fn poll_read( |
| self: Pin<&mut Self>, |
| cx: &mut Context<'_>, |
| buf: &mut [u8], |
| ) -> Poll<io::Result<usize>> { |
| let this = self.get_mut(); |
|
|
| loop { |
| |
| if !this.current_data.is_empty() { |
| let len = cmp::min(this.current_data.len(), buf.len()); |
| buf[..len].copy_from_slice(&this.current_data.split_to(len)); |
| return Poll::Ready(Ok(len)); |
| } |
|
|
| |
| match ready!(this.io.lock().poll_read_stream(cx, this.id))? { |
| Some(data) => { |
| this.current_data = data; |
| } |
| None => return Poll::Ready(Ok(0)), |
| } |
| } |
| } |
| } |
|
|
| impl<C> AsyncWrite for Substream<C> |
| where |
| C: AsyncRead + AsyncWrite + Unpin, |
| { |
| fn poll_write( |
| self: Pin<&mut Self>, |
| cx: &mut Context<'_>, |
| buf: &[u8], |
| ) -> Poll<io::Result<usize>> { |
| let this = self.get_mut(); |
|
|
| this.io.lock().poll_write_stream(cx, this.id, buf) |
| } |
|
|
| fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { |
| let this = self.get_mut(); |
|
|
| this.io.lock().poll_flush_stream(cx, this.id) |
| } |
|
|
| fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { |
| let this = self.get_mut(); |
| let mut io = this.io.lock(); |
|
|
| ready!(io.poll_close_stream(cx, this.id))?; |
| ready!(io.poll_flush_stream(cx, this.id))?; |
|
|
| Poll::Ready(Ok(())) |
| } |
| } |
|
|
| |
| pub struct Substream<C> |
| where |
| C: AsyncRead + AsyncWrite + Unpin, |
| { |
| |
| id: LocalStreamId, |
| |
| current_data: Bytes, |
| |
| io: Arc<Mutex<io::Multiplexed<C>>>, |
| } |
|
|
| impl<C> Substream<C> |
| where |
| C: AsyncRead + AsyncWrite + Unpin, |
| { |
| fn new(id: LocalStreamId, io: Arc<Mutex<io::Multiplexed<C>>>) -> Self { |
| Self { |
| id, |
| current_data: Bytes::new(), |
| io, |
| } |
| } |
| } |
|
|
| impl<C> Drop for Substream<C> |
| where |
| C: AsyncRead + AsyncWrite + Unpin, |
| { |
| fn drop(&mut self) { |
| self.io.lock().drop_stream(self.id); |
| } |
| } |
|
|