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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use core::fmt;
use core::marker::PhantomData as marker;
use core::mem;
use core::ptr::NonNull;
use core::slice;

#[cfg(feature = "passive")]
use passive::{AlwaysAligned, AlwaysValid, Immutable};

/// A tranche of `T`.
///
/// Tranches are like slices but represented of a start pointer and an end
/// pointer. They are geared towards being mutably slicing from their start or
/// end, and thus don't implement indexing.
pub struct Tranche<'a, T> {
    start: NonNull<T>,
    end: *const T,
    marker: marker<&'a T>,
}
unsafe impl<T> Send for Tranche<'_, T> where T: Sync {}
unsafe impl<T> Sync for Tranche<'_, T> where T: Sync {}

/// A based tranche of `T`.
///
/// Based tranches are just like tranches, with the addition of an `offset`
/// method which returns how many items were taken from the front of
/// the original based tranche returned from `BasedTranche::new`.
pub struct BasedTranche<'a, T> {
    pub(crate) inner: Tranche<'a, T>,
    base: *const T,
}
unsafe impl<T> Send for BasedTranche<'_, T> where T: Sync {}
unsafe impl<T> Sync for BasedTranche<'_, T> where T: Sync {}

/// A tranche of bytes, equipped with many convenience methods.
///
/// This type implements `std::io::Read` and `std::io::BufRead` when the `std`
/// feature is enabled.
pub type BufTranche<'a> = Tranche<'a, u8>;

/// A based tranche of bytes, equipped with many convenience methods.
///
/// This type implements `std::io::Read` and `std::io::BufRead` when the `std`
/// feature is enabled.
pub type BasedBufTranche<'a> = BasedTranche<'a, u8>;

impl<'a, T> Tranche<'a, T> {
    /// Creates a new tranche of `T`.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::Tranche;
    /// let parisien = Tranche::new(&[
    ///     "baguette",
    ///     "jambon",
    ///     "beurre",
    /// ]);
    /// ```
    pub fn new(slice: &'a (impl AsRef<[T]> + ?Sized)) -> Self {
        let slice = slice.as_ref();
        let start = unsafe { NonNull::new_unchecked(slice.as_ptr() as *mut T) };
        let end = if mem::size_of::<T>() == 0 {
            (start.as_ptr() as *const u8).wrapping_add(slice.len()) as *const T
        } else {
            unsafe { start.as_ptr().add(slice.len()) }
        };
        Self { start, end, marker }
    }

    /// Returns the number of elements in the tranche.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::Tranche;
    /// let a = Tranche::new(&[1, 2, 3]);
    /// assert_eq!(a.len(), 3);
    /// ```
    pub fn len(&self) -> usize {
        ptr_distance(self.start.as_ptr(), self.end)
    }

    /// Returns `true` if the tranche has a length of 0.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::Tranche;
    /// let a = Tranche::new(&[1, 2, 3][..]);
    /// assert!(!a.is_empty());
    /// ```
    pub fn is_empty(&self) -> bool {
        self.as_ptr() == self.end
    }

    /// Takes the first element out of the tranche.
    ///
    /// Returns the first element of `self`, or `Err(_)` if it is empty.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::Tranche;
    /// let mut v = Tranche::new(&[10, 40, 30]);
    /// assert_eq!(v.take_first().unwrap(), &10);
    /// assert_eq!(v.as_slice(), &[40, 30]);
    ///
    /// let mut w = <Tranche<i32>>::new(&[]);
    /// let err = w.take_first().unwrap_err();
    /// assert_eq!(err.needed(), 1);
    /// assert_eq!(err.len(), 0);
    /// ```
    pub fn take_first(&mut self) -> Result<&'a T, UnexpectedEndError> {
        if (*self).is_empty() {
            return Err(UnexpectedEndError { needed: 1, len: 0 });
        }
        unsafe { Ok(&*self.post_inc_start(1)) }
    }

    /// Takes the first `n` elements out of the tranche.
    ///
    /// Returns a new tranche with the first `n` elements of `self`, or
    /// `Err(_)` if it is not long enough.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::Tranche;
    /// let mut v = Tranche::new(&[10, 40, 30]);
    /// assert_eq!(v.take_front(2).unwrap().as_slice(), &[10, 40]);
    /// assert_eq!(v.as_slice(), &[30]);
    ///
    /// let err = v.take_front(3).unwrap_err();
    /// assert_eq!(err.needed(), 3);
    /// assert_eq!(err.len(), 1);
    /// ```
    pub fn take_front(&mut self, n: usize) -> Result<Self, UnexpectedEndError> {
        let len = self.len();
        if n > len {
            return Err(UnexpectedEndError { needed: n, len });
        }
        let start = unsafe { NonNull::new_unchecked(self.post_inc_start(n) as *mut _) };
        let end = self.as_ptr();
        let marker = self.marker;
        Ok(Self { start, end, marker })
    }

    /// Views the tranche's buffer as a slice.
    ///
    /// This has the same lifetime as the original buffer, and so the tranche
    /// can continue to be used while this exists.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::Tranche;
    /// let mut tranche = Tranche::new(&[1, 2, 3]);
    /// assert_eq!(tranche.as_slice(), &[1, 2, 3]);
    ///
    /// assert!(tranche.take_first().is_ok());
    /// assert_eq!(tranche.as_slice(), &[2, 3]);
    /// ```
    pub fn as_slice(&self) -> &'a [T] {
        unsafe { slice::from_raw_parts(self.as_ptr(), self.len()) }
    }

    /// Returns a raw pointer to the tranche's buffer.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::Tranche;
    /// let tranche = Tranche::new(&[1, 2, 3]);
    /// let ptr = tranche.as_ptr();
    /// ```
    pub const fn as_ptr(&self) -> *const T {
        self.start.as_ptr() as *const _
    }

    unsafe fn post_inc_start(&mut self, offset: usize) -> *const T {
        let old = self.as_ptr();
        if mem::size_of::<T>() == 0 {
            self.end = (self.end as *const u8).wrapping_sub(offset) as *const T;
        } else {
            self.start = NonNull::new_unchecked(old.add(offset) as *mut _);
        }
        old
    }
}

impl<'a, T> BasedTranche<'a, T> {
    /// Creates a new based tranche of `T`.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::BasedTranche;
    /// let parisien = BasedTranche::new(&[
    ///     "baguette",
    ///     "jambon",
    ///     "beurre",
    /// ]);
    /// ```
    pub fn new(slice: &'a impl AsRef<[T]>) -> Self {
        Tranche::new(slice).into()
    }

    /// Returns the number of elements in the tranche.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::BasedTranche;
    /// let a = BasedTranche::new(&[1, 2, 3]);
    /// assert_eq!(a.len(), 3);
    /// ```
    pub fn len(&self) -> usize {
        self.inner.len()
    }

    /// Returns `true` if the tranche has a length of 0.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::BasedTranche;
    /// let a = BasedTranche::new(&[1, 2, 3]);
    /// assert!(!a.is_empty());
    /// ```
    pub fn is_empty(&self) -> bool {
        self.inner.is_empty()
    }

    /// Returns the starting offset of this based tranche.
    pub fn offset(&self) -> usize {
        if mem::size_of::<T>() == 0 {
            ptr_distance(self.inner.end, self.base)
        } else {
            ptr_distance(self.base, self.inner.as_ptr())
        }
    }

    /// Takes the first element out of the tranche.
    ///
    /// Returns the first element of `self`, or `Err(_)` if it is empty.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::BasedTranche;
    /// let mut v = BasedTranche::new(&[10, 40, 30]);
    /// assert_eq!(v.take_first().unwrap(), &10);
    /// assert_eq!(v.as_slice(), &[40, 30]);
    ///
    /// let mut w = <BasedTranche<i32>>::new(&[]);
    /// let err = w.take_first().unwrap_err();
    /// assert_eq!(err.needed(), 1);
    /// assert_eq!(err.len(), 0);
    /// ```
    pub fn take_first(&mut self) -> Result<&'a T, UnexpectedEndError> {
        self.inner.take_first()
    }

    /// Takes the first `n` elements out of the tranche.
    ///
    /// Returns a new tranche with the first `n` elements of `self`, or
    /// `Err(_)` if it is not long enough.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::BasedTranche;
    /// let mut v = BasedTranche::new(&[10, 40, 30]);
    /// assert_eq!(v.take_front(2).unwrap().as_slice(), &[10, 40]);
    /// assert_eq!(v.as_slice(), &[30]);
    ///
    /// let err = v.take_front(3).unwrap_err();
    /// assert_eq!(err.needed(), 3);
    /// assert_eq!(err.len(), 1);
    /// ```
    pub fn take_front(&mut self, n: usize) -> Result<Self, UnexpectedEndError> {
        let inner = self.inner.take_front(n)?;
        let base = self.base;
        Ok(Self { inner, base })
    }

    /// Views the tranche's buffer as a slice.
    ///
    /// This has the same lifetime as the original buffer, and so the tranche
    /// can continue to be used while this exists.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::BasedTranche;
    /// let mut tranche = BasedTranche::new(&[1, 2, 3]);
    /// assert_eq!(tranche.as_slice(), &[1, 2, 3]);
    ///
    /// assert!(tranche.take_first().is_ok());
    /// assert_eq!(tranche.as_slice(), &[2, 3]);
    /// ```
    pub fn as_slice(&self) -> &'a [T] {
        self.inner.as_slice()
    }

    /// Returns a raw pointer to the tranche's buffer.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::BasedTranche;
    /// let tranche = BasedTranche::new(&[1, 2, 3]);
    /// let ptr = tranche.as_ptr();
    /// ```
    pub const fn as_ptr(&self) -> *const T {
        self.inner.as_ptr()
    }
}

#[cfg(feature = "passive")]
impl<'a> BufTranche<'a> {
    /// Takes the first `n` elements of type `T` out of the tranche.
    ///
    /// Returns a new tranche with the first `n` elements of `self` viewed as
    /// a tranche of `T` values, or `Err(_)` if it is not long enough. The error
    /// details are expressed in terms of the size of `T`, not the size of `u8`.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tranche::BufTranche;
    /// let mut v = BufTranche::new(&[1, 2, 3, 4, 5, 6, 7, 8, 9]);
    /// let four_pairs = v.take_front_as::<[u8; 2]>(4).unwrap();
    /// assert_eq!(four_pairs.as_slice(), &[[1, 2], [3, 4], [5, 6], [7, 8]]);
    /// assert_eq!(v.as_slice(), &[9]);
    ///
    /// let err = v.take_front_as::<[u8; 2]>(1).unwrap_err();
    /// assert_eq!(err.needed(), 1);
    /// assert_eq!(err.len(), 0);
    /// ```
    pub fn take_front_as<T>(&mut self, n: usize) -> Result<Tranche<'a, T>, UnexpectedEndError>
    where
        T: AlwaysAligned + AlwaysValid + Immutable,
    {
        if mem::size_of::<T>() == 0 {
            return Ok(Tranche::new(unsafe {
                slice::from_raw_parts(self.as_ptr() as *const T, n)
            }));
        }
        let len = ptr_distance(self.as_ptr() as *const T, self.end as *const T);
        if n > len {
            return Err(UnexpectedEndError { needed: n, len });
        }
        unsafe {
            let start =
                NonNull::new_unchecked(self.post_inc_start(n * mem::size_of::<T>()) as *mut T);
            let end = self.as_ptr() as *const T;
            Ok(Tranche { start, end, marker })
        }
    }
}

#[cfg(feature = "passive")]
impl<'a> BasedBufTranche<'a> {
    pub fn take_front_as<T>(&mut self, n: usize) -> Result<Tranche<'a, T>, UnexpectedEndError>
    where
        T: AlwaysAligned + AlwaysValid + Immutable,
    {
        self.inner.take_front_as(n)
    }
}

#[inline(always)]
fn ptr_distance<T>(start: *const T, end: *const T) -> usize {
    let diff = (end as usize).wrapping_sub(start as usize);
    let size = mem::size_of::<T>();
    if size == 0 {
        diff
    } else {
        diff / size
    }
}

impl<T> Clone for Tranche<'_, T> {
    fn clone(&self) -> Self {
        Self { ..*self }
    }
}

impl<T> Clone for BasedTranche<'_, T> {
    fn clone(&self) -> Self {
        let inner = self.inner.clone();
        let base = self.base;
        Self { inner, base }
    }
}

impl<T> Default for Tranche<'_, T> {
    fn default() -> Self {
        Self::new(&[])
    }
}

impl<T> Default for BasedTranche<'_, T> {
    fn default() -> Self {
        Self::new(&[])
    }
}

impl<'a, T> From<BasedTranche<'a, T>> for Tranche<'a, T> {
    fn from(based_tranche: BasedTranche<'a, T>) -> Self {
        based_tranche.inner
    }
}

impl<'a, T> From<Tranche<'a, T>> for BasedTranche<'a, T> {
    fn from(tranche: Tranche<'a, T>) -> Self {
        let inner = tranche;
        let base = if mem::size_of::<T>() == 0 {
            inner.end
        } else {
            inner.as_ptr()
        };
        Self { inner, base }
    }
}

impl<T> fmt::Debug for Tranche<'_, T>
where
    T: fmt::Debug,
{
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        self.as_slice().fmt(fmt)
    }
}

impl<T> fmt::Debug for BasedTranche<'_, T>
where
    T: fmt::Debug,
{
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        self.as_slice().fmt(fmt)
    }
}

/// An error signalling that the end of a tranche was reached unexpectedly.
#[derive(Clone, Debug)]
pub struct UnexpectedEndError {
    needed: usize,
    len: usize,
}

impl UnexpectedEndError {
    /// Returns the number of elements that were needed from the tranche for
    /// the operation to succeed.
    pub fn needed(&self) -> usize {
        self.needed
    }

    /// Returns the number of elements that were in the tranche when the
    /// operation failed.
    pub fn len(&self) -> usize {
        self.len
    }
}

impl fmt::Display for UnexpectedEndError {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        write!(
            fmt,
            "unexpected end (needed {}, got {})",
            self.needed, self.len,
        )
    }
}