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
171
172
173
174
use std::{
fmt::{self, Arguments, Debug},
io::{self, IoSlice, IoSliceMut, Read, Write},
os::unix::net::UnixStream,
};
#[cfg(not(unix_socket_peek))]
use unsafe_io::AsUnsafeSocket;
use unsafe_io::{
os::posish::{AsRawFd, AsRawReadWriteFd, FromRawFd, IntoRawFd, RawFd},
OwnsRaw,
};
#[repr(transparent)]
pub struct SocketpairStream(UnixStream);
impl SocketpairStream {
#[inline]
pub fn try_clone(&self) -> io::Result<Self> {
self.0.try_clone().map(Self)
}
#[inline]
pub fn peek(&mut self, buf: &mut [u8]) -> io::Result<usize> {
#[cfg(unix_socket_peek)]
{
self.0.peek(buf)
}
#[cfg(not(unix_socket_peek))]
{
self.0.as_tcp_stream_view().peek(buf)
}
}
#[inline]
pub fn num_ready_bytes(&self) -> io::Result<u64> {
posish::io::fionread(self)
}
}
#[inline]
pub fn socketpair_stream() -> io::Result<(SocketpairStream, SocketpairStream)> {
UnixStream::pair().map(|(a, b)| (SocketpairStream(a), SocketpairStream(b)))
}
impl Read for SocketpairStream {
#[inline]
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
self.0.read(buf)
}
#[inline]
fn read_vectored(&mut self, bufs: &mut [IoSliceMut]) -> io::Result<usize> {
self.0.read_vectored(bufs)
}
#[cfg(can_vector)]
#[inline]
fn is_read_vectored(&self) -> bool {
self.0.is_read_vectored()
}
#[inline]
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> io::Result<usize> {
self.0.read_to_end(buf)
}
#[inline]
fn read_to_string(&mut self, buf: &mut String) -> io::Result<usize> {
self.0.read_to_string(buf)
}
#[inline]
fn read_exact(&mut self, buf: &mut [u8]) -> io::Result<()> {
self.0.read_exact(buf)
}
}
impl Write for SocketpairStream {
#[inline]
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.0.write(buf)
}
#[inline]
fn flush(&mut self) -> io::Result<()> {
self.0.flush()
}
#[inline]
fn write_vectored(&mut self, bufs: &[IoSlice]) -> io::Result<usize> {
self.0.write_vectored(bufs)
}
#[cfg(can_vector)]
#[inline]
fn is_write_vectored(&self) -> bool {
self.0.is_write_vectored()
}
#[inline]
fn write_all(&mut self, buf: &[u8]) -> io::Result<()> {
self.0.write_all(buf)
}
#[cfg(write_all_vectored)]
#[inline]
fn write_all_vectored(&mut self, bufs: &mut [IoSlice]) -> io::Result<()> {
self.0.write_all_vectored(bufs)
}
#[inline]
fn write_fmt(&mut self, fmt: Arguments) -> io::Result<()> {
self.0.write_fmt(fmt)
}
}
impl AsRawFd for SocketpairStream {
#[inline]
fn as_raw_fd(&self) -> RawFd {
self.0.as_raw_fd()
}
}
impl IntoRawFd for SocketpairStream {
#[inline]
fn into_raw_fd(self) -> RawFd {
self.0.into_raw_fd()
}
}
impl FromRawFd for SocketpairStream {
#[inline]
unsafe fn from_raw_fd(raw_fd: RawFd) -> Self {
Self(UnixStream::from_raw_fd(raw_fd))
}
}
impl AsRawReadWriteFd for SocketpairStream {
#[inline]
fn as_raw_read_fd(&self) -> RawFd {
self.as_raw_fd()
}
#[inline]
fn as_raw_write_fd(&self) -> RawFd {
self.as_raw_fd()
}
}
unsafe impl OwnsRaw for SocketpairStream {}
impl Debug for SocketpairStream {
#[allow(clippy::missing_inline_in_public_items)]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("SocketpairStream")
.field("raw_fd", &self.0.as_raw_fd())
.finish()
}
}