Pierre Krieger 170d2d268f
Switch to stable futures (#1196)
* Switch to stable futures

* Remove from_fn

* Fix secio

* Fix core --lib tests
2019-09-16 11:08:44 +02:00

48 lines
1.1 KiB
Rust

#![allow(dead_code)]
use futures::prelude::*;
use libp2p_core::muxing::StreamMuxer;
use std::{pin::Pin, task::Context, task::Poll};
pub struct CloseMuxer<M> {
state: CloseMuxerState<M>,
}
impl<M> CloseMuxer<M> {
pub fn new(m: M) -> CloseMuxer<M> {
CloseMuxer {
state: CloseMuxerState::Close(m)
}
}
}
pub enum CloseMuxerState<M> {
Close(M),
Done,
}
impl<M> Future for CloseMuxer<M>
where
M: StreamMuxer,
M::Error: From<std::io::Error>
{
type Output = Result<M, M::Error>;
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
loop {
match std::mem::replace(&mut self.state, CloseMuxerState::Done) {
CloseMuxerState::Close(muxer) => {
if muxer.close()?.is_not_ready() {
self.state = CloseMuxerState::Close(muxer);
return Poll::Pending
}
return Poll::Ready(Ok(muxer))
}
CloseMuxerState::Done => panic!()
}
}
}
}