-
Notifications
You must be signed in to change notification settings - Fork 89
Add support for arbritrary arrays #55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -571,61 +571,85 @@ macro_rules! arbitrary_tuple { | |
} | ||
arbitrary_tuple!(A B C D E F G H I J K L M N O P Q R S T U V W X Y Z); | ||
|
||
macro_rules! arbitrary_array { | ||
{$n:expr, ($t:ident, $a:ident) $(($ts:ident, $as:ident))*} => { | ||
arbitrary_array!{($n - 1), $(($ts, $as))*} | ||
|
||
impl<'a, T: Arbitrary<'a>> Arbitrary<'a> for [T; $n] { | ||
fn arbitrary(u: &mut Unstructured<'a>) -> Result<[T; $n]> { | ||
Ok([ | ||
Arbitrary::arbitrary(u)?, | ||
$(<$ts as Arbitrary>::arbitrary(u)?),* | ||
]) | ||
} | ||
|
||
#[allow(unused_mut)] | ||
fn arbitrary_take_rest(mut u: Unstructured<'a>) -> Result<[T; $n]> { | ||
$(let $as = $ts::arbitrary(&mut u)?;)* | ||
let last = Arbitrary::arbitrary_take_rest(u)?; | ||
struct ArrayGuard<T, const N: usize> { | ||
dst: *mut T, | ||
initialized: usize, | ||
} | ||
|
||
Ok([ | ||
$($as,)* last | ||
]) | ||
} | ||
impl<T, const N: usize> Drop for ArrayGuard<T, N> { | ||
fn drop(&mut self) { | ||
debug_assert!(self.initialized <= N); | ||
let initialized_part = core::ptr::slice_from_raw_parts_mut(self.dst, self.initialized); | ||
unsafe { | ||
core::ptr::drop_in_place(initialized_part); | ||
} | ||
} | ||
} | ||
|
||
#[inline] | ||
fn size_hint(depth: usize) -> (usize, Option<usize>) { | ||
crate::size_hint::and_all(&[ | ||
<$t as Arbitrary>::size_hint(depth), | ||
$( <$ts as Arbitrary>::size_hint(depth) ),* | ||
]) | ||
} | ||
fn create_array<F, T, const N: usize>(mut cb: F) -> [T; N] | ||
where | ||
F: FnMut(usize) -> T, | ||
{ | ||
let mut array: mem::MaybeUninit<[T; N]> = mem::MaybeUninit::uninit(); | ||
let mut guard: ArrayGuard<T, N> = ArrayGuard { | ||
dst: array.as_mut_ptr() as _, | ||
|
||
initialized: 0, | ||
}; | ||
unsafe { | ||
for (idx, value_ptr) in (&mut *array.as_mut_ptr()).iter_mut().enumerate() { | ||
core::ptr::write(value_ptr, cb(idx)); | ||
guard.initialized += 1; | ||
} | ||
mem::forget(guard); | ||
array.assume_init() | ||
} | ||
} | ||
|
||
fn try_create_array<F, T, const N: usize>(mut cb: F) -> Result<[T; N]> | ||
where | ||
F: FnMut(usize) -> Result<T>, | ||
{ | ||
let mut array: mem::MaybeUninit<[T; N]> = mem::MaybeUninit::uninit(); | ||
let mut guard: ArrayGuard<T, N> = ArrayGuard { | ||
dst: array.as_mut_ptr() as _, | ||
|
||
initialized: 0, | ||
}; | ||
($n: expr,) => {}; | ||
unsafe { | ||
for (idx, value_ptr) in (&mut *array.as_mut_ptr()).iter_mut().enumerate() { | ||
core::ptr::write(value_ptr, cb(idx)?); | ||
guard.initialized += 1; | ||
} | ||
mem::forget(guard); | ||
Ok(array.assume_init()) | ||
} | ||
} | ||
|
||
impl<'a, T: Arbitrary<'a>> Arbitrary<'a> for [T; 0] { | ||
fn arbitrary(_: &mut Unstructured<'a>) -> Result<[T; 0]> { | ||
Ok([]) | ||
impl<'a, T, const N: usize> Arbitrary<'a> for [T; N] | ||
where | ||
T: Arbitrary<'a>, | ||
{ | ||
#[inline] | ||
fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { | ||
try_create_array(|_| <T as Arbitrary<'a>>::arbitrary(u)) | ||
} | ||
|
||
fn arbitrary_take_rest(_: Unstructured<'a>) -> Result<[T; 0]> { | ||
Ok([]) | ||
#[inline] | ||
fn arbitrary_take_rest(mut u: Unstructured<'a>) -> Result<Self> { | ||
let mut array = Self::arbitrary(&mut u)?; | ||
if let Some(last) = array.last_mut() { | ||
*last = Arbitrary::arbitrary_take_rest(u)?; | ||
} | ||
Ok(array) | ||
} | ||
|
||
#[inline] | ||
fn size_hint(_: usize) -> (usize, Option<usize>) { | ||
crate::size_hint::and_all(&[]) | ||
fn size_hint(d: usize) -> (usize, Option<usize>) { | ||
crate::size_hint::and_all(&create_array::<_, (usize, Option<usize>), N>(|_| { | ||
<T as Arbitrary>::size_hint(d) | ||
})) | ||
} | ||
} | ||
|
||
arbitrary_array! { 32, (T, a) (T, b) (T, c) (T, d) (T, e) (T, f) (T, g) (T, h) | ||
(T, i) (T, j) (T, k) (T, l) (T, m) (T, n) (T, o) (T, p) | ||
(T, q) (T, r) (T, s) (T, u) (T, v) (T, w) (T, x) (T, y) | ||
(T, z) (T, aa) (T, ab) (T, ac) (T, ad) (T, ae) (T, af) | ||
(T, ag) } | ||
|
||
impl<'a> Arbitrary<'a> for &'a [u8] { | ||
fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { | ||
let len = u.arbitrary_len::<u8>()?; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you add a little documentation for what role this guard plays? That will help future readers of this code.