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
#![forbid(unsafe_code)]

use core::fmt::{Debug, Display, Formatter};

pub enum OptionABCD<A, B, C, D> {
    A(A),
    B(B),
    C(C),
    D(D),
}

impl<T> OptionABCD<T, T, T, T> {
    pub fn take(self) -> T {
        match self {
            OptionABCD::A(value) => value,
            OptionABCD::B(value) => value,
            OptionABCD::C(value) => value,
            OptionABCD::D(value) => value,
        }
    }
}

impl<A, B, C, D> OptionABCD<A, B, C, D> {
    pub fn as_ref(&self) -> OptionABCD<&A, &B, &C, &D> {
        match self {
            OptionABCD::A(value) => OptionABCD::A(&value),
            OptionABCD::B(value) => OptionABCD::B(&value),
            OptionABCD::C(value) => OptionABCD::C(&value),
            OptionABCD::D(value) => OptionABCD::D(&value),
        }
    }
    pub fn a(&self) -> Option<&A> {
        match self {
            OptionABCD::A(value) => Some(value),
            _ => None,
        }
    }
    pub fn b(&self) -> Option<&B> {
        match self {
            OptionABCD::B(value) => Some(value),
            _ => None,
        }
    }
    pub fn c(&self) -> Option<&C> {
        match self {
            OptionABCD::C(value) => Some(value),
            _ => None,
        }
    }
    pub fn d(&self) -> Option<&D> {
        match self {
            OptionABCD::D(value) => Some(value),
            _ => None,
        }
    }
}
impl<A: Debug, B: Debug, C: Debug, D: Debug> OptionABCD<A, B, C, D> {
    pub fn unwrap_a(self) -> A {
        match self {
            OptionABCD::A(value) => value,
            _ => panic!("expected OptionABCD::A(_) but found {:?}", self),
        }
    }
    pub fn unwrap_b(self) -> B {
        match self {
            OptionABCD::B(value) => value,
            _ => panic!("expected OptionABCD::B(_) but found {:?}", self),
        }
    }
    pub fn unwrap_c(self) -> C {
        match self {
            OptionABCD::C(value) => value,
            _ => panic!("expected OptionABCD::C(_) but found {:?}", self),
        }
    }
    pub fn unwrap_d(self) -> D {
        match self {
            OptionABCD::D(value) => value,
            _ => panic!("expected OptionABCD::D(_) but found {:?}", self),
        }
    }
}

impl<A: Clone, B: Clone, C: Clone, D: Clone> Clone for OptionABCD<A, B, C, D> {
    fn clone(&self) -> Self {
        match self {
            OptionABCD::A(value) => OptionABCD::A(value.clone()),
            OptionABCD::B(value) => OptionABCD::B(value.clone()),
            OptionABCD::C(value) => OptionABCD::C(value.clone()),
            OptionABCD::D(value) => OptionABCD::D(value.clone()),
        }
    }
}

impl<A: Debug, B: Debug, C: Debug, D: Debug> Debug for OptionABCD<A, B, C, D> {
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), std::fmt::Error> {
        match self {
            OptionABCD::A(value) => write!(f, "OptionABCD::A({:?})", value),
            OptionABCD::B(value) => write!(f, "OptionABCD::B({:?})", value),
            OptionABCD::C(value) => write!(f, "OptionABCD::C({:?})", value),
            OptionABCD::D(value) => write!(f, "OptionABCD::D({:?})", value),
        }
    }
}

impl<A: Display, B: Display, C: Display, D: Display> Display for OptionABCD<A, B, C, D> {
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), std::fmt::Error> {
        match self {
            OptionABCD::A(value) => write!(f, "{}", value),
            OptionABCD::B(value) => write!(f, "{}", value),
            OptionABCD::C(value) => write!(f, "{}", value),
            OptionABCD::D(value) => write!(f, "{}", value),
        }
    }
}

impl<A: PartialEq, B: PartialEq, C: PartialEq, D: PartialEq> PartialEq for OptionABCD<A, B, C, D> {
    fn eq(&self, other: &Self) -> bool {
        match (self, other) {
            (OptionABCD::A(value), OptionABCD::A(other)) if value == other => true,
            (OptionABCD::B(value), OptionABCD::B(other)) if value == other => true,
            (OptionABCD::C(value), OptionABCD::C(other)) if value == other => true,
            (OptionABCD::D(value), OptionABCD::D(other)) if value == other => true,
            _ => false,
        }
    }
}
impl<A: PartialEq, B: PartialEq, C: PartialEq, D: PartialEq> Eq for OptionABCD<A, B, C, D> {}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test() {
        let a: OptionABCD<bool, u8, &'static str, usize> = OptionABCD::A(true);
        let b: OptionABCD<bool, u8, &'static str, usize> = OptionABCD::B(42);
        let c: OptionABCD<bool, u8, &'static str, usize> = OptionABCD::C("s1");
        let d: OptionABCD<bool, u8, &'static str, usize> = OptionABCD::D(7usize);
        // Test as_ref()
        let _: OptionABCD<&bool, &u8, &&'static str, &usize> = a.as_ref();
        let _: &u8 = b.as_ref().unwrap_b();
        let _: &&'static str = c.as_ref().unwrap_c();
        let _: &usize = d.as_ref().unwrap_d();
        assert_eq!(true, *(a.as_ref().unwrap_a()));
        assert_eq!(42u8, *(b.as_ref().unwrap_b()));
        assert_eq!("s1", *(c.as_ref().unwrap_c()));
        assert_eq!(7usize, *(d.as_ref().unwrap_d()));

        // Test accessors
        assert_eq!(true, *(a.a().unwrap()));
        assert_eq!(None, a.b());
        assert_eq!(None, a.c());
        assert_eq!(None, a.d());

        assert_eq!(None, b.a());
        assert_eq!(42u8, *(b.b().unwrap()));
        assert_eq!(None, b.c());
        assert_eq!(None, b.d());

        assert_eq!(None, c.a());
        assert_eq!(None, c.b());
        assert_eq!("s1", *(c.c().unwrap()));
        assert_eq!(None, c.d());

        assert_eq!(None, d.a());
        assert_eq!(None, d.b());
        assert_eq!(None, d.c());
        assert_eq!(7usize, *(d.d().unwrap()));

        // Test Debug
        assert_eq!("OptionABCD::A(true)", format!("{:?}", a));
        assert_eq!("OptionABCD::B(42)", format!("{:?}", b));
        assert_eq!("OptionABCD::C(\"s1\")", format!("{:?}", c));
        assert_eq!("OptionABCD::D(7)", format!("{:?}", d));
        // Test Display
        assert_eq!("true", format!("{}", a));
        assert_eq!("42", format!("{}", b));
        assert_eq!("s1", format!("{}", c));
        assert_eq!("7", format!("{}", d));
        // Test Eq
        assert_eq!(OptionABCD::A(true), a);
        assert_ne!(OptionABCD::A(false), a);
        assert_eq!(OptionABCD::B(42u8), b);
        assert_ne!(OptionABCD::B(2u8), b);
        assert_eq!(OptionABCD::C("s1"), c);
        assert_ne!(OptionABCD::C("other"), c);
        assert_eq!(OptionABCD::D(7usize), d);
        assert_ne!(OptionABCD::D(2usize), d);
        assert_ne!(a, b);
        assert_ne!(a, c);
        assert_ne!(a, d);
        assert_ne!(b, c);
        assert_ne!(b, d);
        assert_ne!(c, d);

        // Test unwrappers
        let a_clone = a.clone();
        assert_eq!(true, a_clone.unwrap_a());
        let a_clone = a.clone();
        assert_eq!(
            "expected OptionABCD::B(_) but found OptionABCD::A(true)",
            std::panic::catch_unwind(|| a_clone.unwrap_b())
                .unwrap_err()
                .downcast::<String>()
                .unwrap()
                .as_str()
        );
        let a_clone = a.clone();
        assert_eq!(
            "expected OptionABCD::C(_) but found OptionABCD::A(true)",
            std::panic::catch_unwind(|| a_clone.unwrap_c())
                .unwrap_err()
                .downcast::<String>()
                .unwrap()
                .as_str()
        );
        let a_clone = a.clone();
        assert_eq!(
            "expected OptionABCD::D(_) but found OptionABCD::A(true)",
            std::panic::catch_unwind(|| a_clone.unwrap_d())
                .unwrap_err()
                .downcast::<String>()
                .unwrap()
                .as_str()
        );

        let b_clone = b.clone();
        assert_eq!(
            "expected OptionABCD::A(_) but found OptionABCD::B(42)",
            std::panic::catch_unwind(|| b_clone.unwrap_a())
                .unwrap_err()
                .downcast::<String>()
                .unwrap()
                .as_str()
        );
        let b_clone = b.clone();
        assert_eq!(42u8, b_clone.unwrap_b());
        let b_clone = b.clone();
        std::panic::catch_unwind(|| b_clone.unwrap_c()).unwrap_err();
        let b_clone = b.clone();
        std::panic::catch_unwind(|| b_clone.unwrap_d()).unwrap_err();

        let c_clone = c.clone();
        std::panic::catch_unwind(|| c_clone.unwrap_a()).unwrap_err();
        let c_clone = c.clone();
        std::panic::catch_unwind(|| c_clone.unwrap_b()).unwrap_err();
        let c_clone = c.clone();
        assert_eq!("s1", c_clone.unwrap_c());
        let c_clone = c.clone();
        std::panic::catch_unwind(|| c_clone.unwrap_d()).unwrap_err();

        let d_clone = d.clone();
        std::panic::catch_unwind(|| d_clone.unwrap_a()).unwrap_err();
        let d_clone = d.clone();
        std::panic::catch_unwind(|| d_clone.unwrap_b()).unwrap_err();
        let d_clone = d.clone();
        std::panic::catch_unwind(|| d_clone.unwrap_c()).unwrap_err();
        let d_clone = d.clone();
        assert_eq!(7usize, d_clone.unwrap_d());

        // Test take()
        let same_a: OptionABCD<u8, u8, u8, u8> = OptionABCD::A(42u8);
        let same_b: OptionABCD<u8, u8, u8, u8> = OptionABCD::B(42u8);
        let same_c: OptionABCD<u8, u8, u8, u8> = OptionABCD::C(42u8);
        let same_d: OptionABCD<u8, u8, u8, u8> = OptionABCD::C(42u8);
        assert_eq!(42u8, same_a.take());
        assert_eq!(42u8, same_b.take());
        assert_eq!(42u8, same_c.take());
        assert_eq!(42u8, same_d.take());
    }
}