1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
mod net {
use crate::traits;
use async_std_crate::net::{TcpListener, TcpStream, UdpSocket as StdUdpSocket};
use async_trait::async_trait;
use futures::future::Future;
use futures::stream::Stream;
use std::io::Result as IoResult;
use std::net::SocketAddr;
use std::pin::Pin;
use std::task::{Context, Poll};
pub struct IncomingStreams {
state: Option<IncomingStreamsState>,
}
type FResult = (IoResult<(TcpStream, SocketAddr)>, TcpListener);
async fn take_and_poll(lis: TcpListener) -> FResult {
let result = lis.accept().await;
(result, lis)
}
enum IncomingStreamsState {
Ready(TcpListener),
Accepting(Pin<Box<dyn Future<Output = FResult>>>),
}
impl IncomingStreams {
pub fn from_listener(lis: TcpListener) -> IncomingStreams {
IncomingStreams {
state: Some(IncomingStreamsState::Ready(lis)),
}
}
}
impl Stream for IncomingStreams {
type Item = IoResult<(TcpStream, SocketAddr)>;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<Self::Item>> {
use IncomingStreamsState as St;
let state = self.state.take().expect("No valid state!");
let mut future = match state {
St::Ready(lis) => Box::pin(take_and_poll(lis)),
St::Accepting(fut) => fut,
};
match future.as_mut().poll(cx) {
Poll::Ready((val, lis)) => {
self.state = Some(St::Ready(lis));
Poll::Ready(Some(val))
}
Poll::Pending => {
self.state = Some(St::Accepting(future));
Poll::Pending
}
}
}
}
#[async_trait]
impl traits::TcpListener for TcpListener {
type TcpStream = TcpStream;
type Incoming = IncomingStreams;
async fn accept(&self) -> IoResult<(Self::TcpStream, SocketAddr)> {
TcpListener::accept(self).await
}
fn incoming(self) -> IncomingStreams {
IncomingStreams::from_listener(self)
}
fn local_addr(&self) -> IoResult<SocketAddr> {
TcpListener::local_addr(self)
}
}
#[async_trait]
impl traits::TcpProvider for async_executors::AsyncStd {
type TcpStream = TcpStream;
type TcpListener = TcpListener;
async fn connect(&self, addr: &SocketAddr) -> IoResult<Self::TcpStream> {
TcpStream::connect(addr).await
}
async fn listen(&self, addr: &SocketAddr) -> IoResult<Self::TcpListener> {
TcpListener::bind(*addr).await
}
}
#[async_trait]
impl traits::UdpProvider for async_executors::AsyncStd {
type UdpSocket = UdpSocket;
async fn bind(&self, addr: &std::net::SocketAddr) -> IoResult<Self::UdpSocket> {
StdUdpSocket::bind(*addr)
.await
.map(|socket| UdpSocket { socket })
}
}
pub struct UdpSocket {
socket: StdUdpSocket,
}
#[async_trait]
impl traits::UdpSocket for UdpSocket {
async fn recv(&self, buf: &mut [u8]) -> IoResult<(usize, SocketAddr)> {
self.socket.recv_from(buf).await
}
async fn send(&self, buf: &[u8], target: &SocketAddr) -> IoResult<usize> {
self.socket.send_to(buf, target).await
}
fn local_addr(&self) -> IoResult<SocketAddr> {
self.socket.local_addr()
}
}
}
use futures::{Future, FutureExt};
use std::pin::Pin;
use std::time::Duration;
use crate::traits::*;
pub fn create_runtime() -> async_executors::AsyncStd {
async_executors::AsyncStd::new()
}
impl SleepProvider for async_executors::AsyncStd {
type SleepFuture = Pin<Box<dyn Future<Output = ()> + Send + 'static>>;
fn sleep(&self, duration: Duration) -> Self::SleepFuture {
Box::pin(async_io::Timer::after(duration).map(|_| ()))
}
}
impl BlockOn for async_executors::AsyncStd {
fn block_on<F: Future>(&self, f: F) -> F::Output {
async_executors::AsyncStd::block_on(f)
}
}