forked from compio-rs/compio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.rs
More file actions
401 lines (341 loc) · 9.37 KB
/
mod.rs
File metadata and controls
401 lines (341 loc) · 9.37 KB
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
#[cfg(unix)]
mod_use![unix];
#[cfg(io_uring)]
mod_use![iour];
#[cfg(windows)]
mod_use![iocp];
#[cfg(polling)]
mod_use![poll];
#[cfg(stub)]
mod_use![stub];
use rustix::net::{RecvFlags, SendFlags};
use crate::sys::prelude::*;
/// Connect to a remote address.
pub struct Connect<S> {
pub(crate) fd: S,
pub(crate) addr: SockAddr,
}
/// Close socket fd.
pub struct CloseSocket {
pub(crate) fd: ManuallyDrop<OwnedFd>,
}
/// Send data to remote.
///
/// If you want to write to a pipe, use [`Write`].
///
/// [`Write`]: crate::op::Write
pub struct Send<T: IoBuf, S> {
pub(crate) fd: S,
pub(crate) buffer: T,
pub(crate) flags: SendFlags,
}
/// Send data to remote from vectored buffer.
pub struct SendVectored<T: IoVectoredBuf, S> {
pub(crate) fd: S,
pub(crate) buffer: T,
pub(crate) flags: SendFlags,
}
pub(crate) struct SendToHeader<S> {
pub(crate) fd: S,
pub(crate) addr: SockAddr,
pub(crate) flags: SendFlags,
}
/// Send data to specified address.
pub struct SendTo<T: IoBuf, S> {
pub(crate) header: SendToHeader<S>,
pub(crate) buffer: T,
}
/// Send data to specified address from vectored buffer.
pub struct SendToVectored<T: IoVectoredBuf, S> {
pub(crate) header: SendToHeader<S>,
pub(crate) buffer: T,
}
/// Send data to specified address accompanied by ancillary data from vectored
/// buffer.
pub struct SendMsg<T: IoVectoredBuf, C: IoBuf, S> {
pub(crate) fd: S,
pub(crate) buffer: T,
pub(crate) control: C,
pub(crate) addr: Option<SockAddr>,
pub(crate) flags: SendFlags,
}
/// Receive data from remote.
///
/// If you want to read from a pipe, use [`Read`].
///
/// [`Read`]: crate::op::Read
pub struct Recv<T: IoBufMut, S> {
pub(crate) fd: S,
pub(crate) buffer: T,
pub(crate) flags: RecvFlags,
poll_first: bool,
}
/// Receive data from remote into vectored buffer.
pub struct RecvVectored<T: IoVectoredBufMut, S> {
pub(crate) fd: S,
pub(crate) buffer: T,
pub(crate) flags: RecvFlags,
poll_first: bool,
}
pub(crate) struct RecvFromHeader<S> {
pub(crate) fd: S,
pub(crate) flags: RecvFlags,
pub(crate) addr: SockAddrStorage,
pub(crate) addr_len: socklen_t,
poll_first: bool,
}
/// Receive data and source address.
pub struct RecvFrom<T: IoBufMut, S> {
pub(crate) header: RecvFromHeader<S>,
pub(crate) buffer: T,
}
/// Receive data and source address into vectored buffer.
pub struct RecvFromVectored<T: IoVectoredBufMut, S> {
pub(crate) header: RecvFromHeader<S>,
pub(crate) buffer: T,
}
/// Receive data and source address with ancillary data into vectored
/// buffer.
pub struct RecvMsg<T: IoVectoredBufMut, C: IoBufMut, S> {
pub(crate) header: RecvFromHeader<S>,
pub(crate) buffer: T,
pub(crate) control: C,
pub(crate) control_len: usize,
poll_first: bool,
}
impl<S> Connect<S> {
/// Create [`Connect`]. `fd` should be bound.
pub fn new(fd: S, addr: SockAddr) -> Self {
Self { fd, addr }
}
}
impl CloseSocket {
/// Create [`CloseSocket`].
pub fn new(fd: OwnedFd) -> Self {
Self {
fd: ManuallyDrop::new(fd),
}
}
}
impl<T: IoBuf, S> Send<T, S> {
/// Create [`Send`].
pub fn new(fd: S, buffer: T, flags: SendFlags) -> Self {
Self { fd, buffer, flags }
}
}
impl<T: IoBuf, S> IntoInner for Send<T, S> {
type Inner = T;
fn into_inner(self) -> Self::Inner {
self.buffer
}
}
impl<T: IoVectoredBuf, S> SendVectored<T, S> {
/// Create [`SendVectored`].
pub fn new(fd: S, buffer: T, flags: SendFlags) -> Self {
Self { fd, buffer, flags }
}
}
impl<T: IoVectoredBuf, S> IntoInner for SendVectored<T, S> {
type Inner = T;
fn into_inner(self) -> Self::Inner {
self.buffer
}
}
impl<S> SendToHeader<S> {
pub fn new(fd: S, addr: SockAddr, flags: SendFlags) -> Self {
Self { fd, addr, flags }
}
}
impl<T: IoBuf, S> SendTo<T, S> {
/// Create [`SendTo`].
pub fn new(fd: S, buffer: T, addr: SockAddr, flags: SendFlags) -> Self {
Self {
header: SendToHeader::new(fd, addr, flags),
buffer,
}
}
}
impl<T: IoBuf, S> IntoInner for SendTo<T, S> {
type Inner = T;
fn into_inner(self) -> Self::Inner {
self.buffer
}
}
impl<T: IoVectoredBuf, S> SendToVectored<T, S> {
/// Create [`SendToVectored`].
pub fn new(fd: S, buffer: T, addr: SockAddr, flags: SendFlags) -> Self {
Self {
header: SendToHeader::new(fd, addr, flags),
buffer,
}
}
}
impl<T: IoVectoredBuf, S> IntoInner for SendToVectored<T, S> {
type Inner = T;
fn into_inner(self) -> Self::Inner {
self.buffer
}
}
impl<T: IoVectoredBuf, C: IoBuf, S> SendMsg<T, C, S> {
/// Create [`SendMsg`].
///
/// # Panics
///
/// This function will panic if the control message buffer is misaligned.
pub fn new(fd: S, buffer: T, control: C, addr: Option<SockAddr>, flags: SendFlags) -> Self {
assert!(
control.buf_len() == 0 || control.buf_ptr().cast::<CmsgHeader>().is_aligned(),
"misaligned control message buffer"
);
Self {
fd,
buffer,
control,
addr,
flags,
}
}
}
impl<T: IoVectoredBuf, C: IoBuf, S> IntoInner for SendMsg<T, C, S> {
type Inner = (T, C);
fn into_inner(self) -> Self::Inner {
(self.buffer, self.control)
}
}
impl<T: IoVectoredBufMut, C: IoBufMut, S> RecvMsg<T, C, S> {
/// Create [`RecvMsg`].
///
/// # Panics
///
/// This function will panic if the control message buffer is
/// misaligned.
pub fn new(fd: S, buffer: T, control: C, flags: RecvFlags) -> Self {
assert!(
control.buf_ptr().cast::<CmsgHeader>().is_aligned(),
"misaligned control message buffer"
);
Self {
header: RecvFromHeader::new(fd, flags),
buffer,
control,
control_len: 0,
poll_first: false,
}
}
/// This method sets the `IORING_RECVSEND_POLL_FIRST` flag in the `ioprio`
/// of the SQE on the IO_URING driver.
pub fn poll_first(&mut self) {
self.poll_first = true;
}
}
impl<T: IoVectoredBufMut, C: IoBufMut, S> IntoInner for RecvMsg<T, C, S> {
type Inner = ((T, C), Option<SockAddr>, usize);
fn into_inner(self) -> Self::Inner {
(
(self.buffer, self.control),
self.header.into_addr(),
self.control_len,
)
}
}
impl<T: IoBufMut, S> Recv<T, S> {
/// Create [`Recv`].
pub fn new(fd: S, buffer: T, flags: RecvFlags) -> Self {
Self {
fd,
buffer,
flags,
poll_first: false,
}
}
/// This method sets the `IORING_RECVSEND_POLL_FIRST` flag in the `ioprio`
/// of the SQE on the IO_URING driver.
pub fn poll_first(&mut self) {
self.poll_first = true;
}
}
impl<T: IoBufMut, S> IntoInner for Recv<T, S> {
type Inner = T;
fn into_inner(self) -> Self::Inner {
self.buffer
}
}
impl<T: IoVectoredBufMut, S> RecvVectored<T, S> {
/// Create [`RecvVectored`].
pub fn new(fd: S, buffer: T, flags: RecvFlags) -> Self {
Self {
fd,
buffer,
flags,
poll_first: false,
}
}
/// This method sets the `IORING_RECVSEND_POLL_FIRST` flag in the `ioprio`
/// of the SQE on the IO_URING driver.
pub fn poll_first(&mut self) {
self.poll_first = true;
}
}
impl<T: IoVectoredBufMut, S> IntoInner for RecvVectored<T, S> {
type Inner = T;
fn into_inner(self) -> Self::Inner {
self.buffer
}
}
impl<S> RecvFromHeader<S> {
pub fn new(fd: S, flags: RecvFlags) -> Self {
let addr = SockAddrStorage::zeroed();
let name_len = addr.size_of();
Self {
fd,
addr,
flags,
addr_len: name_len,
poll_first: false,
}
}
pub fn into_addr(self) -> Option<SockAddr> {
(self.addr_len > 0).then(|| unsafe { SockAddr::new(self.addr, self.addr_len) })
}
}
impl<T: IoVectoredBufMut, S> RecvFromVectored<T, S> {
/// Create [`RecvFromVectored`].
pub fn new(fd: S, buffer: T, flags: RecvFlags) -> Self {
Self {
header: RecvFromHeader::new(fd, flags),
buffer,
}
}
/// This method sets the `IORING_RECVSEND_POLL_FIRST` flag in the `ioprio`
/// of the SQE on the IO_URING driver.
pub fn poll_first(&mut self) {
self.header.poll_first = true;
}
}
impl<T: IoVectoredBufMut, S: AsFd> IntoInner for RecvFromVectored<T, S> {
type Inner = (T, Option<SockAddr>);
fn into_inner(self) -> Self::Inner {
let addr = self.header.into_addr();
(self.buffer, addr)
}
}
impl<T: IoBufMut, S> RecvFrom<T, S> {
/// Create [`RecvFrom`].
pub fn new(fd: S, buffer: T, flags: RecvFlags) -> Self {
Self {
header: RecvFromHeader::new(fd, flags),
buffer,
}
}
/// This method sets the `IORING_RECVSEND_POLL_FIRST` flag in the `ioprio`
/// of the SQE on the IO_URING driver.
pub fn poll_first(&mut self) {
self.header.poll_first = true;
}
}
impl<T: IoBufMut, S> IntoInner for RecvFrom<T, S> {
type Inner = (T, Option<SockAddr>);
fn into_inner(self) -> Self::Inner {
(self.buffer, self.header.into_addr())
}
}