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
use std::{
io,
os::unix::io::{AsRawFd, FromRawFd, RawFd},
task::{Context, Poll},
};
use async_io::Async;
use futures::ready;
use log::trace;
use crate::{AsyncSocket, Socket, SocketAddr};
pub struct SmolSocket(Async<Socket>);
impl FromRawFd for SmolSocket {
unsafe fn from_raw_fd(fd: RawFd) -> Self {
let socket = Socket::from_raw_fd(fd);
socket.set_non_blocking(true).unwrap();
SmolSocket(Async::new(socket).unwrap())
}
}
impl AsRawFd for SmolSocket {
fn as_raw_fd(&self) -> RawFd {
self.0.get_ref().as_raw_fd()
}
}
impl SmolSocket {
fn poll_write_with<F, R>(&mut self, cx: &mut Context<'_>, mut op: F) -> Poll<io::Result<R>>
where
F: FnMut(&mut Self) -> io::Result<R>,
{
loop {
match op(self) {
Err(err) if err.kind() == io::ErrorKind::WouldBlock => {}
res => return Poll::Ready(res),
}
ready!(self.0.poll_writable(cx))?;
}
}
fn poll_read_with<F, R>(&mut self, cx: &mut Context<'_>, mut op: F) -> Poll<io::Result<R>>
where
F: FnMut(&mut Self) -> io::Result<R>,
{
loop {
match op(self) {
Err(err) if err.kind() == io::ErrorKind::WouldBlock => {}
res => return Poll::Ready(res),
}
ready!(self.0.poll_readable(cx))?;
}
}
}
impl AsyncSocket for SmolSocket {
fn socket_ref(&self) -> &Socket {
self.0.get_ref()
}
fn socket_mut(&mut self) -> &mut Socket {
self.0.get_mut()
}
fn new(protocol: isize) -> io::Result<Self> {
let socket = Socket::new(protocol)?;
Ok(Self(Async::new(socket)?))
}
fn poll_send(&mut self, cx: &mut Context<'_>, buf: &[u8]) -> Poll<io::Result<usize>> {
self.poll_write_with(cx, |this| this.0.get_mut().send(buf, 0))
}
fn poll_send_to(
&mut self,
cx: &mut Context<'_>,
buf: &[u8],
addr: &SocketAddr,
) -> Poll<io::Result<usize>> {
self.poll_write_with(cx, |this| this.0.get_mut().send_to(buf, addr, 0))
}
fn poll_recv<B>(&mut self, cx: &mut Context<'_>, buf: &mut B) -> Poll<io::Result<()>>
where
B: bytes::BufMut,
{
self.poll_read_with(cx, |this| this.0.get_mut().recv(buf, 0).map(|_len| ()))
}
fn poll_recv_from<B>(
&mut self,
cx: &mut Context<'_>,
buf: &mut B,
) -> Poll<io::Result<SocketAddr>>
where
B: bytes::BufMut,
{
self.poll_read_with(cx, |this| {
let x = this.0.get_mut().recv_from(buf, 0);
trace!("poll_recv_from: {:?}", x);
x.map(|(_len, addr)| addr)
})
}
fn poll_recv_from_full(
&mut self,
cx: &mut Context<'_>,
) -> Poll<io::Result<(Vec<u8>, SocketAddr)>> {
self.poll_read_with(cx, |this| this.0.get_mut().recv_from_full())
}
}