vibeio 0.2.8

A high-performance, cross-platform asynchronous runtime for Rust
Documentation
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
//! Buffer traits for async I/O operations.
//!
//! This module provides traits for working with buffers in async I/O:
//! - `IoBuf` and `IoBufMut`: traits for read/write buffers.
//! - `IoVectoredBuf` and `IoVectoredBufMut`: traits for vectored I/O buffers.
//!
//! # Buffer types
//!
//! `IoBuf` is implemented for:
//! - `Vec<u8>`
//! - `String`
//! - `&'static [u8]`
//! - `&'static str`
//! - `[u8; N]` for any size `N`
//! - `Box<[u8]>`
//!
//! `IoBufMut` is implemented for:
//! - `Vec<u8>`
//! - `String`
//! - `[u8; N]` for any size `N`
//! - `Box<[u8]>`
//!
//! # Examples
//!
//! ```ignore
//! use vibeio::io::{AsyncRead, IoBufMut};
//!
//! async fn read_something<R: AsyncRead>(reader: &mut R) {
//!     let mut buf = vec![0u8; 1024];
//!     let (result, buf) = reader.read(buf).await;
//!     let bytes_read = result.unwrap_or(0);
//!     println!("Read {} bytes", bytes_read);
//! }
//! ```

use std::io::{IoSlice, IoSliceMut};

/// Trait for read-only buffers.
///
/// This trait is implemented by types that can be used as buffers for
/// reading data in async I/O operations.
pub trait IoBuf: Send + 'static {
    /// Returns a raw pointer to the inner buffer.
    fn as_buf_ptr(&self) -> *const u8;

    /// Returns the length of the initialized part of the buffer.
    fn buf_len(&self) -> usize;

    /// Returns the capacity of the buffer.
    fn buf_capacity(&self) -> usize;
}

/// Trait for mutable buffers.
///
/// This trait extends `IoBuf` with mutable operations needed for writing.
pub trait IoBufMut: IoBuf {
    /// Returns a raw mutable pointer to the inner buffer.
    fn as_buf_mut_ptr(&mut self) -> *mut u8;

    /// Updates the length of the initialized part of the buffer.
    ///
    /// # Safety
    ///
    /// The caller must ensure that the given `len` does not exceed the capacity
    /// of the buffer, and that the elements up to `len` have been initialized.
    unsafe fn set_buf_init(&mut self, len: usize);
}

impl IoBuf for Vec<u8> {
    #[inline]
    fn as_buf_ptr(&self) -> *const u8 {
        self.as_ptr()
    }

    #[inline]
    fn buf_len(&self) -> usize {
        self.len()
    }

    #[inline]
    fn buf_capacity(&self) -> usize {
        self.capacity()
    }
}

impl IoBufMut for Vec<u8> {
    #[inline]
    fn as_buf_mut_ptr(&mut self) -> *mut u8 {
        self.as_mut_ptr()
    }

    #[inline]
    unsafe fn set_buf_init(&mut self, len: usize) {
        self.set_len(len);
    }
}

impl IoBuf for String {
    #[inline]
    fn as_buf_ptr(&self) -> *const u8 {
        self.as_ptr()
    }

    #[inline]
    fn buf_len(&self) -> usize {
        self.len()
    }

    #[inline]
    fn buf_capacity(&self) -> usize {
        self.capacity()
    }
}

impl IoBufMut for String {
    #[inline]
    fn as_buf_mut_ptr(&mut self) -> *mut u8 {
        unsafe { self.as_mut_vec().as_mut_ptr() }
    }

    #[inline]
    unsafe fn set_buf_init(&mut self, len: usize) {
        self.as_mut_vec().set_len(len);
    }
}

impl IoBuf for &'static [u8] {
    #[inline]
    fn as_buf_ptr(&self) -> *const u8 {
        self.as_ptr()
    }

    #[inline]
    fn buf_len(&self) -> usize {
        self.len()
    }

    #[inline]
    fn buf_capacity(&self) -> usize {
        self.len()
    }
}

impl IoBuf for &'static str {
    #[inline]
    fn as_buf_ptr(&self) -> *const u8 {
        self.as_bytes().as_ptr()
    }

    #[inline]
    fn buf_len(&self) -> usize {
        self.len()
    }

    #[inline]
    fn buf_capacity(&self) -> usize {
        self.len()
    }
}

impl<const N: usize> IoBuf for [u8; N] {
    #[inline]
    fn as_buf_ptr(&self) -> *const u8 {
        self.as_ptr()
    }

    #[inline]
    fn buf_len(&self) -> usize {
        N
    }

    #[inline]
    fn buf_capacity(&self) -> usize {
        N
    }
}

impl<const N: usize> IoBufMut for [u8; N] {
    #[inline]
    fn as_buf_mut_ptr(&mut self) -> *mut u8 {
        self.as_mut_ptr()
    }

    unsafe fn set_buf_init(&mut self, _len: usize) {}
}

impl IoBuf for Box<[u8]> {
    #[inline]
    fn as_buf_ptr(&self) -> *const u8 {
        self.as_ptr()
    }

    #[inline]
    fn buf_len(&self) -> usize {
        self.len()
    }

    #[inline]
    fn buf_capacity(&self) -> usize {
        self.len()
    }
}

impl IoBufMut for Box<[u8]> {
    #[inline]
    fn as_buf_mut_ptr(&mut self) -> *mut u8 {
        self.as_mut_ptr()
    }

    unsafe fn set_buf_init(&mut self, _len: usize) {}
}

/// A buffer wrapper with a cursor for tracking progress.
pub(crate) struct IoBufWithCursor<I: IoBuf> {
    pub(crate) buf: I,
    pub(crate) cursor: usize,
}

impl<I: IoBuf> IoBufWithCursor<I> {
    /// Create a new `IoBufWithCursor` with the given buffer.
    #[inline]
    pub(crate) fn new(buf: I) -> Self {
        IoBufWithCursor { buf, cursor: 0 }
    }

    /// Advance the cursor by `n` bytes.
    #[inline]
    pub(crate) fn advance(&mut self, n: usize) {
        self.cursor += n;
    }

    /// Consume the wrapper and return the inner buffer.
    #[inline]
    pub(crate) fn into_inner(self) -> I {
        self.buf
    }
}

impl<I: IoBuf> IoBuf for IoBufWithCursor<I> {
    #[inline]
    fn as_buf_ptr(&self) -> *const u8 {
        unsafe { self.buf.as_buf_ptr().add(self.cursor) }
    }

    #[inline]
    fn buf_len(&self) -> usize {
        self.buf.buf_len() - self.cursor
    }

    #[inline]
    fn buf_capacity(&self) -> usize {
        self.buf.buf_capacity() - self.cursor
    }
}

impl<I: IoBufMut> IoBufMut for IoBufWithCursor<I> {
    #[inline]
    fn as_buf_mut_ptr(&mut self) -> *mut u8 {
        unsafe { self.buf.as_buf_mut_ptr().add(self.cursor) }
    }

    unsafe fn set_buf_init(&mut self, len: usize) {
        self.buf.set_buf_init(self.cursor + len);
    }
}

/// A temporary buffer for polling operations.
pub(crate) struct IoBufTemporaryPoll {
    ptr: *mut u8,
    len: usize,
}

impl IoBufTemporaryPoll {
    /// Create a new `IoBufTemporaryPoll` with the given pointer and length.
    #[inline]
    pub(crate) unsafe fn new(ptr: *mut u8, len: usize) -> Self {
        Self { ptr, len }
    }
}

impl IoBuf for IoBufTemporaryPoll {
    #[inline]
    fn as_buf_ptr(&self) -> *const u8 {
        self.ptr as *const u8
    }

    #[inline]
    fn buf_len(&self) -> usize {
        self.len
    }

    #[inline]
    fn buf_capacity(&self) -> usize {
        self.len
    }
}

impl IoBufMut for IoBufTemporaryPoll {
    #[inline]
    fn as_buf_mut_ptr(&mut self) -> *mut u8 {
        self.ptr
    }

    #[inline]
    unsafe fn set_buf_init(&mut self, _len: usize) {}
}

unsafe impl Send for IoBufTemporaryPoll {}

/// A single I/O vector entry.
pub struct IoVec {
    /// Pointer to the data.
    pub ptr: *mut u8,
    /// Length of the data.
    pub len: usize,
}

/// Trait for vectored read buffers.
pub trait IoVectoredBuf: 'static {
    /// Returns a pointer to an array of `iovec` structures and its length.
    #[inline]
    fn as_iovecs(&self) -> Box<[IoVec]> {
        unimplemented!()
    }

    /// Returns `true` if the vectored buffer is empty.
    #[inline]
    fn is_empty(&self) -> bool {
        self.as_iovecs().is_empty()
    }
}

/// Trait for vectored write buffers.
pub trait IoVectoredBufMut: IoVectoredBuf {
    /// Returns a mutable pointer to an array of `iovec` structures and its length.
    #[inline]
    fn as_iovecs_mut(&mut self) -> Box<[IoVec]> {
        unimplemented!()
    }
}

#[cfg(unix)]
impl IoVectoredBuf for Vec<libc::iovec> {
    #[inline]
    fn as_iovecs(&self) -> Box<[IoVec]> {
        let mut iovecs = Box::new_uninit_slice(self.len());
        for (index, iovec) in self.iter().enumerate() {
            iovecs[index].write(IoVec {
                ptr: iovec.iov_base as *mut u8,
                len: iovec.iov_len,
            });
        }

        unsafe { iovecs.assume_init() }
    }

    #[inline]
    fn is_empty(&self) -> bool {
        self.is_empty()
    }
}

#[cfg(unix)]
impl IoVectoredBufMut for Vec<libc::iovec> {
    #[inline]
    fn as_iovecs_mut(&mut self) -> Box<[IoVec]> {
        self.as_iovecs()
    }
}

#[cfg(unix)]
impl IoVectoredBuf for Box<[libc::iovec]> {
    #[inline]
    fn as_iovecs(&self) -> Box<[IoVec]> {
        let mut iovecs = Box::new_uninit_slice(self.len());
        for (index, iovec) in self.iter().enumerate() {
            iovecs[index].write(IoVec {
                ptr: iovec.iov_base as *mut u8,
                len: iovec.iov_len,
            });
        }

        unsafe { iovecs.assume_init() }
    }
}

#[cfg(unix)]
impl IoVectoredBufMut for Box<[libc::iovec]> {
    #[inline]
    fn as_iovecs_mut(&mut self) -> Box<[IoVec]> {
        self.as_iovecs()
    }
}

/// A temporary vectored buffer for polling operations.
pub(crate) struct IoVectoredBufTemporaryPoll {
    pub(crate) iovecs: Vec<(*mut u8, usize)>,
}

impl IoVectoredBufTemporaryPoll {
    /// Create a new `IoVectoredBufTemporaryPoll` from immutable slices.
    #[inline]
    pub(crate) unsafe fn new(iovecs: &[IoSlice<'_>]) -> Self {
        let iovecs = iovecs
            .iter()
            .map(|iovec| (iovec.as_ptr() as *mut u8, iovec.len()))
            .collect();
        Self { iovecs }
    }

    /// Create a new `IoVectoredBufTemporaryPoll` from mutable slices.
    #[allow(dead_code)]
    #[inline]
    pub(crate) unsafe fn new_mut(iovecs: &mut [IoSliceMut<'_>]) -> Self {
        let iovecs = iovecs
            .iter_mut()
            .map(|iovec| (iovec.as_mut_ptr(), iovec.len()))
            .collect();
        Self { iovecs }
    }
}

impl IoVectoredBuf for IoVectoredBufTemporaryPoll {
    #[inline]
    fn as_iovecs(&self) -> Box<[IoVec]> {
        let mut iovecs = Box::new_uninit_slice(self.iovecs.len());
        for (index, iovec) in self.iovecs.iter().enumerate() {
            iovecs[index].write(IoVec {
                ptr: iovec.0,
                len: iovec.1,
            });
        }

        unsafe { iovecs.assume_init() }
    }

    #[inline]
    fn is_empty(&self) -> bool {
        self.iovecs.is_empty()
    }
}

impl IoVectoredBufMut for IoVectoredBufTemporaryPoll {
    #[inline]
    fn as_iovecs_mut(&mut self) -> Box<[IoVec]> {
        self.as_iovecs()
    }
}

#[inline]
pub(crate) fn iobuf_to_slice(buf: &impl IoBuf) -> &[u8] {
    unsafe { std::slice::from_raw_parts(buf.as_buf_ptr(), buf.buf_len()) }
}

#[inline]
pub(crate) fn iobufmut_to_slice(buf: &mut impl IoBufMut) -> &mut [u8] {
    unsafe { std::slice::from_raw_parts_mut(buf.as_buf_mut_ptr(), buf.buf_len()) }
}