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
use crate::{boxed, utility::tuples};
use std::num::NonZeroUsize;

#[derive(Clone, Debug)]
pub struct All<T: ?Sized> {
    pub index: usize,
    pub inner: T,
}

pub trait FullShrink {
    type Item;
    type Shrink: Shrink<Item = Self::Item>;
    fn shrinker(item: Self::Item) -> Option<Self::Shrink>;
}

pub trait IntoShrink {
    type Item;
    type Shrink: Shrink<Item = Self::Item>;
    fn shrinker(&self, item: Self::Item) -> Option<Self::Shrink>;
}

pub trait Shrink: Clone {
    type Item;

    fn item(&self) -> Self::Item;
    fn shrink(&mut self) -> Option<Self>;

    fn boxed(self) -> boxed::Shrinker<Self::Item>
    where
        Self: 'static,
    {
        boxed::Shrinker::new(self)
    }
}

impl<T: FullShrink> FullShrink for &T {
    type Item = T::Item;
    type Shrink = T::Shrink;

    fn shrinker(item: Self::Item) -> Option<Self::Shrink> {
        T::shrinker(item)
    }
}

impl<T: FullShrink> FullShrink for &mut T {
    type Item = T::Item;
    type Shrink = T::Shrink;

    fn shrinker(item: Self::Item) -> Option<Self::Shrink> {
        T::shrinker(item)
    }
}

impl<T: IntoShrink> IntoShrink for &T {
    type Item = T::Item;
    type Shrink = T::Shrink;

    fn shrinker(&self, item: Self::Item) -> Option<Self::Shrink> {
        T::shrinker(self, item)
    }
}

impl<T: IntoShrink> IntoShrink for &mut T {
    type Item = T::Item;
    type Shrink = T::Shrink;

    fn shrinker(&self, item: Self::Item) -> Option<Self::Shrink> {
        T::shrinker(self, item)
    }
}

impl<T> All<T> {
    pub const fn new(inner: T) -> Self {
        Self { inner, index: 0 }
    }
}

macro_rules! tuple {
    ($n:ident, $c:tt $(,$p:ident, $t:ident, $i:tt)*) => {
        impl<$($t: FullShrink,)*> FullShrink for ($($t,)*) {
            type Item = ($($t::Item,)*);
            type Shrink = All<($($t::Shrink,)*)>;

            fn shrinker(_item: Self::Item) -> Option<Self::Shrink> {
                Some(All::new(($($t::shrinker(_item.$i)?,)*)))
            }
        }

        impl<$($t: IntoShrink,)*> IntoShrink for ($($t,)*) {
            type Item = ($($t::Item,)*);
            type Shrink = All<($($t::Shrink,)*)>;

            fn shrinker(&self, _item: Self::Item) -> Option<Self::Shrink> {
                Some(All::new(($(self.$i.shrinker(_item.$i)?,)*)))
            }
        }

        impl<$($t: Shrink,)*> Shrink for All<($($t,)*)> {
            type Item = ($($t::Item,)*);

            #[allow(clippy::unused_unit)]
            fn item(&self) -> Self::Item {
                ($(self.inner.$i.item(),)*)
            }

            fn shrink(&mut self) -> Option<Self> {
                let count = NonZeroUsize::new($c)?;
                let start = self.index;
                self.index += 1;
                for i in 0..count.get() {
                    let index = (start + i) % count.get();
                    match index {
                        $($i => {
                            if let Some(shrink) = self.inner.$i.shrink() {
                                let mut shrinks = self.inner.clone();
                                shrinks.$i = shrink;
                                return Some(Self {
                                    inner: shrinks,
                                    index: self.index
                                });
                            }
                            })*
                        _ => {}
                    }
                }
                None
            }
        }
    };
}

tuples!(tuple);