slicur 0.3.0

A library for reading network IO bytes buffer
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
#![doc = include_str!("../README.md")]
#![no_std]
#![allow(clippy::must_use_candidate)]

use core::num::NonZeroUsize;
use core::{fmt, slice};

pub mod error;

pub use self::error::Error;

/// Wrapper over a slice of bytes that allows reading chunks from
/// with the current position state held using a cursor.
///
/// A new reader for a sub section of the buffer can be created
/// using the `sub` function or a section of a certain length can
/// be obtained using the `read` function
pub struct Reader<'a> {
    /// The underlying buffer storing the readers content
    buffer: &'a [u8],

    /// Stores the current reading position for the buffer
    cursor: usize,
}

#[cfg(not(feature = "feat-debug-buffer"))]
impl fmt::Debug for Reader<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("Reader")
            .field("buffer", &"[..]")
            .field("cursor", &self.cursor)
            .finish()
    }
}

#[cfg(feature = "feat-debug-buffer")]
impl fmt::Debug for Reader<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("Reader")
            .field("buffer", &const_hex::encode(self.buffer))
            .field("cursor", &self.cursor)
            .finish()
    }
}

macro_rules! advance_cursor_and {
    ($this:expr, $length:expr, $($tt:tt)+) => {{
        let Some(cursor) = $this.cursor.checked_add($length) else {
            return Err(Error::Overflow);
        };

        match cursor.checked_sub($this.buffer.len()) {
            Some(0) | None => {}
            Some(insufficient) => {
                // SAFETY: insufficient is guaranteed to be non-zero here.
                return Err(Error::InsufficientData {
                    missing: unsafe { NonZeroUsize::new_unchecked(insufficient) },
                });
            }
        }

        match $($tt)+ {
            ret @ Ok(_) => {
                $this.cursor = cursor;

                ret
            }
            ret @ Err(_) => ret,
        }
    }};
}

impl<'a> Reader<'a> {
    #[inline]
    /// Creates a new [`Reader`] of the provided `bytes` slice with
    /// the initial cursor position of zero.
    ///
    /// Note that the provided slice must be network byte order (big-endian).
    pub const fn init(bytes: &'a [u8]) -> Self {
        Reader {
            buffer: bytes,
            cursor: 0,
        }
    }

    #[inline]
    /// Returns the cursor position, i.e., the number of bytes that have
    /// been read from the buffer.
    pub const fn used(&self) -> usize {
        self.cursor
    }

    #[inline]
    #[track_caller]
    /// Returns the unread bytes length.
    pub const fn left(&self) -> usize {
        let Some(left) = self
            .buffer
            .len()
            .checked_sub(self.cursor)
        else {
            // This should never happen
            unreachable!()
        };

        left
    }

    #[inline]
    #[track_caller]
    /// Returns all unread bytes of the reader without advancing the cursor.
    pub const fn unread(&self) -> &'a [u8] {
        unsafe {
            // SAFETY: The cursor is guaranteed to be within the bounds of the buffer
            slice::from_raw_parts(self.buffer.as_ptr().add(self.cursor), self.left())
        }
    }

    #[inline]
    /// Reads a slice of `length` bytes from the reader and returns it.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use slicur::Reader;
    /// let mut reader = Reader::init(&[0x12, 0x34, 0x56, 0x78]);
    /// // Read 2 bytes
    /// let bytes = reader.read(2).unwrap();
    /// assert_eq!(bytes, &[0x12, 0x34]);
    /// # assert!(reader.used() == 2);
    /// # assert!(reader.left() == 2);
    /// // Read another 2 bytes
    /// let bytes = reader.read(2).unwrap();
    /// assert_eq!(bytes, &[0x56, 0x78]);
    /// # assert!(reader.used() == 4);
    /// # assert!(reader.left() == 0);
    /// # assert!(reader.read(1).is_err());
    /// // Try to read more bytes than available.
    /// let mut reader = Reader::init(&[0x12, 0x34, 0x56, 0x78]);
    /// assert!(matches!(
    ///     reader.read(5),
    ///     Err(slicur::Error::InsufficientData { missing }) if missing.get() == 1
    /// ));
    /// # assert!(reader.used() == 0);
    /// # assert!(reader.left() == 4);
    /// ```
    ///
    /// # Errors
    ///
    /// [`Error`].
    pub const fn read(&mut self, length: usize) -> Result<&'a [u8], Error> {
        advance_cursor_and!(
            self,
            length,
            Ok(unsafe { slice::from_raw_parts(self.buffer.as_ptr().add(self.cursor), length) })
        )
    }

    #[inline]
    /// Reads an array of `N` bytes from the reader and returns it.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use slicur::Reader;
    /// let mut reader = Reader::init(&[0x12, 0x34, 0x56, 0x78]);
    /// // Read 2 bytes
    /// let bytes = reader.read_array::<2>().unwrap();
    /// assert_eq!(bytes, &[0x12, 0x34]);
    /// # assert!(reader.used() == 2);
    /// # assert!(reader.left() == 2);
    /// // Try to read more bytes than available.
    /// assert!(matches!(
    ///     reader.read_array::<3>(),
    ///     Err(slicur::Error::InsufficientData { missing }) if missing.get() == 1
    /// ));
    /// # assert!(reader.used() == 2);
    /// # assert!(reader.left() == 2);
    /// ```
    ///
    /// # Errors
    ///
    /// [`Error`].
    pub const fn read_array<const N: usize>(&mut self) -> Result<&'a [u8; N], Error> {
        advance_cursor_and!(
            self,
            N,
            Ok(unsafe {
                &*(slice::from_raw_parts(self.buffer.as_ptr().add(self.cursor), N)
                    .as_ptr()
                    .cast::<[u8; N]>())
            })
        )
    }

    #[inline]
    /// Reads all unread bytes from the reader.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use slicur::Reader;
    /// let mut reader = Reader::init(&[0x12, 0x34, 0x56, 0x78]);
    /// // Read 2 bytes
    /// let bytes = reader.read(2).unwrap();
    /// assert_eq!(bytes, &[0x12, 0x34]);
    /// # assert!(reader.used() == 2);
    /// # assert!(reader.left() == 2);
    /// // Read all remaining bytes
    /// let bytes = reader.read_all();
    /// assert_eq!(bytes, &[0x56, 0x78]);
    /// # assert!(reader.used() == 4);
    /// # assert!(reader.left() == 0);
    /// # assert!(reader.read(1).is_err());
    /// # assert!(reader.read_all().is_empty());
    /// ```
    pub const fn read_all(&mut self) -> &'a [u8] {
        let (_, unread) = self.buffer.split_at(self.cursor);
        self.cursor = self.buffer.len();
        unread
    }

    #[inline]
    /// Reads a single byte from the reader and returns it.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use slicur::Reader;
    /// let mut reader = Reader::init(&[0x12, 0x34, 0x56]);
    /// assert_eq!(reader.read_u8().unwrap(), 0x12);
    /// assert_eq!(reader.read_u8().unwrap(), 0x34);
    /// assert_eq!(reader.read_u8().unwrap(), 0x56);
    /// ```
    ///
    /// # Errors
    ///
    /// [`Error`].
    pub fn read_u8(&mut self) -> Result<u8, Error> {
        match self.read_array() {
            Ok(&[b0]) => Ok(b0),
            Err(e) => Err(e),
        }
    }

    #[inline]
    /// Reads a u16 from the reader and returns it.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use slicur::Reader;
    /// let mut reader = Reader::init(&[0x12, 0x34, 0x56, 0x78, 0x89]);
    /// assert_eq!(reader.read_u16().unwrap(), 0x1234);
    /// assert_eq!(reader.read_u16().unwrap(), 0x5678);
    /// ```
    ///
    /// # Errors
    ///
    /// [`Error`].
    pub fn read_u16(&mut self) -> Result<u16, Error> {
        match self.read_array() {
            Ok(&b) => Ok(u16::from_be_bytes(b)),
            Err(e) => Err(e),
        }
    }

    #[inline]
    /// Reads a u24 from the reader and returns it.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use slicur::Reader;
    /// let mut reader = Reader::init(&[0x12, 0x34, 0x56, 0x78, 0x9A, 0xBC, 0xCD]);
    /// assert_eq!(reader.read_u24().unwrap(), 0x123456);
    /// assert_eq!(reader.read_u24().unwrap(), 0x789ABC);
    /// ```
    ///
    /// # Errors
    ///
    /// [`Error`].
    pub fn read_u24(&mut self) -> Result<u32, Error> {
        match self.read_array() {
            Ok(&[b0, b1, b2]) => Ok(u32::from_be_bytes([0, b0, b1, b2])),
            Err(e) => Err(e),
        }
    }

    #[inline]
    /// Reads a u32 from the reader and returns it.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use slicur::Reader;
    /// let mut reader = Reader::init(&[0x12, 0x34, 0x56, 0x78, 0x9A, 0xBC, 0xDE, 0xF0, 0x11]);
    /// assert_eq!(reader.read_u32().unwrap(), 0x12345678);
    /// assert_eq!(reader.read_u32().unwrap(), 0x9ABCDEF0);
    /// ```
    ///
    /// # Errors
    ///
    /// [`Error`].
    pub fn read_u32(&mut self) -> Result<u32, Error> {
        match self.read_array() {
            Ok(&b) => Ok(u32::from_be_bytes(b)),
            Err(e) => Err(e),
        }
    }

    #[inline]
    /// Reads a u64 from the reader and returns it.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use slicur::Reader;
    /// let mut reader = Reader::init(&[0x12, 0x34, 0x56, 0x78, 0x9A, 0xBC, 0xDE, 0xF0, 0x11]);
    /// assert_eq!(reader.read_u64().unwrap(), 0x123456789ABCDEF0);
    /// ```
    ///
    /// # Errors
    ///
    /// [`Error`].
    pub fn read_u64(&mut self) -> Result<u64, Error> {
        match self.read_array() {
            Ok(&b) => Ok(u64::from_be_bytes(b)),
            Err(e) => Err(e),
        }
    }

    #[inline]
    /// Reads a u128 from the reader and returns it.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use slicur::Reader;
    /// let mut reader = Reader::init(&[
    ///     0x12, 0x34, 0x56, 0x78, 0x9A, 0xBC, 0xDE, 0xF0, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
    ///     0x88, 0x99,
    /// ]);
    /// assert_eq!(
    ///     reader.read_u128().unwrap(),
    ///     0x123456789ABCDEF01122334455667788
    /// );
    /// ```
    ///
    /// # Errors
    ///
    /// [`Error`].
    pub fn read_u128(&mut self) -> Result<u128, Error> {
        match self.read_array() {
            Ok(&b) => Ok(u128::from_be_bytes(b)),
            Err(e) => Err(e),
        }
    }

    #[inline]
    /// Reads a slice of `length` bytes from the reader and creates a new
    /// [`Reader`] over it, i.e., `self.read(length).map(Reader::init)`.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use slicur::Reader;
    /// let mut reader = Reader::init(&[0x12, 0x34, 0x56, 0x78, 0x9A]);
    /// let mut sub_reader = reader.sub(3).unwrap();
    /// assert_eq!(sub_reader.read_u8().unwrap(), 0x12);
    /// assert_eq!(sub_reader.read_u16().unwrap(), 0x3456);
    /// # assert!(sub_reader.read_u8().is_err());
    /// # assert_eq!(reader.used(), 3);
    /// # assert_eq!(reader.left(), 2);
    /// # assert_eq!(sub_reader.used(), 3);
    /// # assert_eq!(sub_reader.left(), 0);
    /// # assert!(reader.sub(3).is_err());
    /// # assert_eq!(reader.used(), 3);
    /// # assert_eq!(reader.left(), 2);
    /// ```
    ///
    /// # Errors
    ///
    /// [`Error`].
    pub const fn sub(&mut self, length: usize) -> Result<Self, Error> {
        match self.read(length) {
            Ok(bytes) => Ok(Reader::init(bytes)),
            Err(e) => Err(e),
        }
    }

    #[inline]
    /// Advances the cursor by the specified `length` without returning
    /// any data.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use slicur::Reader;
    /// let mut reader = Reader::init(&[0x12, 0x34, 0x56, 0x78]);
    /// assert!(reader.advance(2).is_ok());
    /// # assert_eq!(reader.used(), 2);
    /// # assert_eq!(reader.left(), 2);
    /// assert!(reader.advance(3).is_err());
    /// # assert_eq!(reader.used(), 2);
    /// # assert_eq!(reader.left(), 2);
    /// ```
    ///
    /// # Errors
    ///
    /// [`Error`].
    pub const fn advance(&mut self, length: usize) -> Result<(), Error> {
        advance_cursor_and!(self, length, Ok(()))
    }
}