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
//! Wrapping counter types
use core::ops;

use crate::utils::Init;

/// Get a type implementing [`WrappingTrait`] that wraps around when incremented
/// past `MAX`.
///
/// This type alias tries to choose the most efficient data type to do the job.
pub type Wrapping<const MAX: u64> = If! {
    |MAX: u64|
    if (MAX == 0) {
        ()
    } else if (MAX < u8::MAX as u64) {
        FractionalWrapping<u8, MAX>
    } else if (MAX == u8::MAX as u64) {
        u8
    } else if (MAX < u16::MAX as u64) {
        FractionalWrapping<u16, MAX>
    } else if (MAX == u16::MAX as u64) {
        u16
    } else if (MAX < u32::MAX as u64) {
        FractionalWrapping<u32, MAX>
    } else if (MAX == u32::MAX as u64) {
        u32
    } else if (MAX < u64::MAX) {
        FractionalWrapping<u64, MAX>
    } else {
        u64
    }
};

/// Represents a counter type that wraps around when incremented past a
/// predetermined upper bound `MAX` (this bound is not exposed).
pub trait WrappingTrait: Init + Copy + core::fmt::Debug {
    /// Add a value to `self`. Returns `true` iff wrap-around has occurred.
    ///
    /// `rhs` must be less than or equal to `MAX`.
    fn wrapping_add_assign64(&mut self, rhs: u64) -> bool;

    /// Add a value to `self`. Returns the number of times for which wrap-around
    /// has occurred.
    ///
    /// The result must not overflow.
    fn wrapping_add_assign128_multi32(&mut self, rhs: u128) -> u32;

    fn to_u128(&self) -> u128;
}

impl WrappingTrait for () {
    #[inline]
    fn wrapping_add_assign64(&mut self, rhs: u64) -> bool {
        rhs != 0
    }

    #[inline]
    fn wrapping_add_assign128_multi32(&mut self, rhs: u128) -> u32 {
        rhs as u32
    }

    #[inline]
    fn to_u128(&self) -> u128 {
        0
    }
}

impl WrappingTrait for u8 {
    #[inline]
    fn wrapping_add_assign64(&mut self, rhs: u64) -> bool {
        let (out, overflow) = self.overflowing_add(rhs as u8);
        *self = out;
        overflow
    }

    #[inline]
    fn wrapping_add_assign128_multi32(&mut self, rhs: u128) -> u32 {
        debug_assert!(rhs < (1 << 40));
        let new_value = *self as u64 + rhs as u64;
        *self = new_value as u8;
        (new_value >> 8) as u32
    }

    #[inline]
    fn to_u128(&self) -> u128 {
        *self as u128
    }
}

impl WrappingTrait for u16 {
    #[inline]
    fn wrapping_add_assign64(&mut self, rhs: u64) -> bool {
        let (out, overflow) = self.overflowing_add(rhs as u16);
        *self = out;
        overflow
    }

    #[inline]
    fn wrapping_add_assign128_multi32(&mut self, rhs: u128) -> u32 {
        debug_assert!(rhs < (1 << 48));
        let new_value = *self as u64 + rhs as u64;
        *self = new_value as u16;
        (new_value >> 16) as u32
    }

    #[inline]
    fn to_u128(&self) -> u128 {
        *self as u128
    }
}

impl WrappingTrait for u32 {
    #[inline]
    fn wrapping_add_assign64(&mut self, rhs: u64) -> bool {
        let (out, overflow) = self.overflowing_add(rhs as u32);
        *self = out;
        overflow
    }

    #[inline]
    fn wrapping_add_assign128_multi32(&mut self, rhs: u128) -> u32 {
        debug_assert!(rhs < (1 << 64));
        let new_value = *self as u64 + rhs as u64;
        *self = new_value as u32;
        (new_value >> 32) as u32
    }

    #[inline]
    fn to_u128(&self) -> u128 {
        *self as u128
    }
}

impl WrappingTrait for u64 {
    #[inline]
    fn wrapping_add_assign64(&mut self, rhs: u64) -> bool {
        let (out, overflow) = self.overflowing_add(rhs);
        *self = out;
        overflow
    }

    #[inline]
    fn wrapping_add_assign128_multi32(&mut self, rhs: u128) -> u32 {
        debug_assert!(rhs < (1 << 96));
        let new_value = *self as u128 + rhs;
        *self = new_value as u64;
        (new_value >> 64) as u32
    }

    #[inline]
    fn to_u128(&self) -> u128 {
        *self as u128
    }
}

/// Implementation of `WrappingTrait` that wraps around at some boundary
/// that does not naturally occur from the binary representation of the integer
/// type.
///
/// `MAX` must be less than `T::MAX`.
#[derive(Debug, Copy, Clone)]
pub struct FractionalWrapping<T, const MAX: u64> {
    inner: T,
}

impl<T: Init, const MAX: u64> Init for FractionalWrapping<T, MAX> {
    const INIT: Self = Self { inner: Init::INIT };
}

impl<T, const MAX: u64> WrappingTrait for FractionalWrapping<T, MAX>
where
    T: From<u8>
        + TryFrom<u64>
        + TryFrom<u128>
        + core::convert::Into<u128>
        + ops::Add<Output = T>
        + ops::Sub<Output = T>
        + ops::Rem<Output = T>
        + PartialOrd
        + Copy
        + Init
        + core::fmt::Debug,
{
    #[inline]
    fn wrapping_add_assign64(&mut self, rhs: u64) -> bool {
        let t_max = if let Ok(x) = T::try_from(MAX) {
            x
        } else {
            unreachable!()
        };
        let t_rhs = if let Ok(x) = T::try_from(rhs) {
            x
        } else {
            unreachable!()
        };
        if MAX < u64::MAX && (MAX + 1).is_power_of_two() {
            // In this case, `x % (MAX + 1)` can be optimized to a fast bit-wise
            // operation.
            //
            // The conjunction of `MAX < T::MAX` and `(MAX + 1).is_power_of_two()`
            // entails `MAX < T::MAX / 2`. Therefore `self.inner + rhs` does
            // not overflow `T`.
            let new_value = self.inner + t_rhs;
            self.inner = new_value % (t_max + T::from(1));
            new_value >= t_max + T::from(1)
        } else if t_max - self.inner >= t_rhs {
            self.inner = self.inner + t_rhs;
            false
        } else {
            self.inner = t_rhs - (t_max - self.inner) - T::from(1);
            true
        }
    }

    #[inline]
    fn wrapping_add_assign128_multi32(&mut self, rhs: u128) -> u32 {
        let inner: u128 = self.inner.into();
        let new_value = inner + rhs;
        self.inner = T::try_from(new_value % (MAX as u128 + 1)).ok().unwrap();

        let wrap_count = new_value / (MAX as u128 + 1);
        debug_assert!(wrap_count <= u32::MAX as u128);
        wrap_count as u32
    }

    #[inline]
    fn to_u128(&self) -> u128 {
        self.inner.into()
    }
}

#[cfg(test)]
mod tests {
    extern crate std;

    use super::*;
    use quickcheck_macros::quickcheck;
    use std::prelude::v1::*;

    /// The naïve implementation of `WrappingTrait`.
    #[derive(Debug, Copy, Clone)]
    struct NaiveWrapping<const MAX: u64> {
        inner: u128,
    }

    impl<const MAX: u64> Init for NaiveWrapping<MAX> {
        const INIT: Self = Self { inner: 0 };
    }

    impl<const MAX: u64> WrappingTrait for NaiveWrapping<MAX> {
        fn wrapping_add_assign64(&mut self, rhs: u64) -> bool {
            assert!(rhs <= MAX);
            let new_value = self.inner + rhs as u128;
            self.inner = new_value % (MAX as u128 + 1);
            new_value > MAX as u128
        }

        fn wrapping_add_assign128_multi32(&mut self, rhs: u128) -> u32 {
            let new_value = self.inner + rhs;
            self.inner = new_value % (MAX as u128 + 1);
            let wrap_count = new_value / (MAX as u128 + 1);
            wrap_count.try_into().unwrap()
        }

        fn to_u128(&self) -> u128 {
            self.inner
        }
    }

    macro_rules! gen_counter_tests {
        ($($name:ident => $max:expr ,)*) => {$(
            mod $name {
                use super::*;

                const MAX: u128 = $max;

                fn do_test_add_assign64(values: &mut dyn Iterator<Item = u64>) {
                    let mut counter_got: Wrapping<{MAX as u64}> = Init::INIT;
                    let mut counter_expected: NaiveWrapping<{MAX as u64}> = Init::INIT;
                    log::trace!("do_test_add_assign64 (MAX = {MAX})");
                    for value in values {
                        log::trace!(
                            " - ({} + {value}) % (MAX + 1) = {} % (MAX + 1) = {}",
                            counter_expected.inner,
                            (counter_expected.inner + value as u128),
                            (counter_expected.inner + value as u128) % (MAX + 1),
                        );
                        let got = counter_got.wrapping_add_assign64(value);
                        let expected = counter_expected.wrapping_add_assign64(value);
                        assert_eq!(got, expected);
                    }
                }

                #[test]
                fn add_assign64_zero() {
                    do_test_add_assign64(&mut [0, 0, 0,0, 0].into_iter());
                }

                #[test]
                fn add_assign64_mixed() {
                    let max = MAX as u64;
                    do_test_add_assign64(
                        &mut [0, 1u64.min(max), max, max / 2, max / 10, 0, 4u64.min(max)].into_iter());
                }

                #[test]
                fn add_assign64_max() {
                    do_test_add_assign64(&mut [MAX as u64; 5].into_iter());
                }

                #[test]
                fn add_assign64_half() {
                    do_test_add_assign64(&mut [MAX as u64 / 2; 5].into_iter());
                }

                #[quickcheck]
                fn add_assign64_quickcheck(cmds: Vec<u32>) {
                    do_test_add_assign64(&mut cmds.iter().map(|&cmd| {
                        let max = MAX as u64;
                        match cmd % 4 {
                            0 => max / 2,
                            1 => (max / 2).saturating_add(1).min(max),
                            2 => max.saturating_sub(1),
                            3 => max,
                            _ => unreachable!(),
                        }.saturating_sub(cmd as u64 >> 2).min(max)
                    }));
                }

                fn do_test_add_assign128_multi32(values: &mut dyn Iterator<Item = u128>) {
                    let mut counter_got: Wrapping<{MAX as u64}> = Init::INIT;
                    let mut counter_expected: NaiveWrapping<{MAX as u64}> = Init::INIT;
                    log::trace!("do_test_add_assign128_multi32 (MAX = {MAX})");
                    for value in values {
                        log::trace!(
                            " - ({} + {value}) % (MAX + 1) = {} % (MAX + 1) = {}",
                            counter_expected.inner,
                            (counter_expected.inner + value),
                            (counter_expected.inner + value) % (MAX + 1),
                        );
                        let got = counter_got.wrapping_add_assign128_multi32(value);
                        let expected = counter_expected.wrapping_add_assign128_multi32(value);
                        assert_eq!(got, expected);
                    }
                }

                #[test]
                fn add_assign128_multi32_zero() {
                    do_test_add_assign128_multi32(&mut [0; 5].into_iter());
                }

                #[test]
                fn add_assign128_multi32_mixed() {
                    do_test_add_assign128_multi32(
                        &mut [0, 1u128.min(MAX), MAX, MAX / 2, MAX / 10, 0, 4u128.min(MAX)].into_iter());
                }

                #[test]
                fn add_assign128_multi32_max() {
                    do_test_add_assign128_multi32(&mut [MAX; 5].into_iter());
                }

                #[test]
                fn add_assign128_multi32_max_p1() {
                    do_test_add_assign128_multi32(&mut [MAX + 1; 5].into_iter());
                }

                #[test]
                fn add_assign128_multi32_half() {
                    do_test_add_assign128_multi32(&mut [MAX / 2; 5].into_iter());
                }

                #[test]
                fn add_assign128_multi32_extreme() {
                    do_test_add_assign128_multi32(&mut [MAX, (MAX + 1) * 0xffff_ffff].into_iter());
                }

                #[test]
                #[should_panic]
                fn add_assign128_multi32_result_overflow() {
                    // `NaiveWrapping` is guaranteed to panic on overflow
                    do_test_add_assign128_multi32(&mut [MAX, (MAX + 1) * 0xffff_ffff + 1].into_iter());
                }

                #[quickcheck]
                fn add_assign128_multi32_quickcheck(cmds: Vec<u32>) {
                    do_test_add_assign128_multi32(&mut cmds.iter().map(|&cmd| {
                        match cmd % 8 {
                            0 => MAX / 2,
                            1 => MAX / 2 + 1,
                            2 => MAX.saturating_sub(1),
                            3 => MAX,
                            4 => (MAX * 2).saturating_sub(1),
                            5 => MAX * 2 + 1,
                            6 => MAX * 0x1_0000_0000,
                            7 => (MAX + 1) * 0x1_0000_0000 - 1,
                            _ => unreachable!(),
                        }.saturating_sub(cmd as u128 >> 2).min(MAX)
                    }));
                }
            }
        )*};
    }

    gen_counter_tests!(
        c0 => 0,
        c1 => 1,
        c_u8_max_m1 => u8::MAX as u128 - 1,
        c_u8_max => u8::MAX as u128,
        c_u8_max2 => u8::MAX as u128 * 2,
        c_u8_max_p1 => u8::MAX as u128 + 1,
        c_u16_max_m1 => u16::MAX as u128 - 1,
        c_u16_max => u16::MAX as u128,
        c_u16_max2 => u16::MAX as u128 * 2,
        c_u16_max_p1 => u16::MAX as u128 + 1,
        c_u32_max_m1 => u32::MAX as u128 - 1,
        c_u32_max => u32::MAX as u128,
        c_u32_max2 => u32::MAX as u128 * 2,
        c_u32_max_p1 => u32::MAX as u128 + 1,
        c_u64_max_m1 => u64::MAX as u128 - 1,
        c_u64_max => u64::MAX as u128,
    );
}