ansa 0.0.1

Disruptor pattern in rust
Documentation
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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
use crate::ringbuffer::RingBuffer;
use crate::wait::{TryWaitStrategy, WaitStrategy};
use std::collections::Bound;
use std::ops::RangeBounds;
use std::sync::atomic::{fence, AtomicI64, Ordering};
use std::sync::Arc;

/// A handle with mutable access to events on the ring buffer.
///
/// `MultiProducer`s can be cloned to enable distributed writes. Clones coordinate by claiming
/// non-overlapping ranges of sequence values, which can be writen to in parallel.
///
/// Clones of this `MultiProducer` share this producer's cursor.
///
/// See: **\[INSERT LINK]** for alternative methods of parallelizing producers without using
/// `MultiProducer`.
///
/// # Examples
/// ```
/// use ansa::{DisruptorBuilder, Follows, Handle};
///
/// let mut handles = DisruptorBuilder::new(64, || 0)
///     .add_handle(0, Handle::Producer, Follows::LeadProducer)
///     .build()?;
///
/// // lead and trailing are separate handles with separate cursors and clones
/// let lead = handles.take_lead().unwrap().into_multi();
/// let trailing = handles.take_producer(0).unwrap().into_multi();
///
/// let lead_clone = lead.clone();
///
/// assert_eq!(lead.count(), 2);
/// assert_eq!(trailing.count(), 1);
/// # Ok::<(), ansa::BuildError>(())
/// ```
///
/// # Limitations
///
/// The `MultiProducer` API is quite limited in comparison to either [`Producers`](Producer) or
/// [`Consumers`](Consumer). This is due to the mechanism used to coordinate `MultiProducer` clones.
///
/// TL;DR, the `MultiProducer` limitations are:
/// 1) `wait_range` method cannot be implemented.
/// 2) Separate `wait` and `apply` methods cannot be conveniently provided.
/// 3) The `try_wait_apply` method will always move the cursor up by the requested batch size,
///    even if an error occurs.
///
/// As soon as a `MultiProducer` clone claims and waits for available sequences, it is commited to
/// moving the shared cursor up to the end of the claimed batch, regardless of whether either
/// waiting for or processing the batch is successful or not.
///
/// This commitment requires that batches always be completed (and the cursor moved), even for
/// fallible methods where errors might occur. Importantly, this means that handles which follow a
/// `MultiProducer` cannot assume, e.g., that an event was successfully written based only on its
/// sequence becoming available.
///
/// Another consequence is that batches cannot be sized dynamically depending on what sequences are
/// actually available, as the bounds of the claim must be used. Hence, `wait_range` cannot be
/// implemented.
///
/// Lastly, separate `wait` methods cannot be provided, because [`EventsMut`] structs cannot be
/// guaranteed to operate correctly in user code. If an `EventsMut` is dropped without an apply
/// method being called, then the claim it was generated from will go unused, ultimately causing
/// permanent disruptor stalls. Instead, combined wait and apply methods are provided.
#[derive(Debug)]
pub struct MultiProducer<E, W, const LEAD: bool> {
    inner: HandleInner<E, W, LEAD>,
    claim: Arc<Cursor>, // shared between all clones of this multi producer
}

impl<E, W, const LEAD: bool> Clone for MultiProducer<E, W, LEAD>
where
    W: Clone,
{
    fn clone(&self) -> Self {
        MultiProducer {
            inner: HandleInner {
                cursor: Arc::clone(&self.inner.cursor),
                barrier: self.inner.barrier.clone(),
                buffer: Arc::clone(&self.inner.buffer),
                wait_strategy: self.inner.wait_strategy.clone(),
                available: self.inner.available,
            },
            claim: Arc::clone(&self.claim),
        }
    }
}

impl<E, W, const LEAD: bool> MultiProducer<E, W, LEAD> {
    /// Returns `true` if this producer is the lead producer.
    ///
    /// # Examples
    /// ```
    /// use ansa::*;
    ///
    /// let mut handles = DisruptorBuilder::new(64, || 0)
    ///     .add_handle(0, Handle::Producer, Follows::LeadProducer)
    ///     .build()?;
    ///
    /// let lead_multi = handles.take_lead().unwrap().into_multi();
    /// let follow_multi = handles.take_producer(0).unwrap().into_multi();
    ///
    /// assert_eq!(lead_multi.is_lead(), true);
    /// assert_eq!(follow_multi.is_lead(), false);
    /// # Ok::<(), BuildError>(())
    /// ```
    pub const fn is_lead(&self) -> bool {
        LEAD
    }

    /// Returns the count of [`MultiProducer`]s associated with this cursor.
    ///
    /// **Important:** Care should be taken when performing actions based upon this number, as any
    /// thread which holds an associated [`MultiProducer`] may clone it at any time, thereby
    /// changing the count.
    ///
    /// # Examples
    /// ```
    /// let (multi, _) = ansa::mpsc(64, || 0);
    /// assert_eq!(multi.count(), 1);
    ///
    /// let multi_2 = multi.clone();
    /// assert_eq!(multi.count(), 2);
    /// // consume a `MultiProducer` by attempting the conversion into a `Producer`
    /// assert!(matches!(multi.into_producer(), None));
    /// assert_eq!(multi_2.count(), 1);
    /// ```
    #[inline]
    pub fn count(&self) -> usize {
        Arc::strong_count(&self.claim)
    }

    /// Returns the current sequence value for this producer's cursor.
    ///
    /// **Important:** The cursor for a `MultiProducer` is shared by all of its clones. Any of
    /// these clones could alter this value at any time, if they are writing to the buffer.
    ///
    /// # Examples
    /// ```
    /// let (mut multi, _) = ansa::mpsc(64, || 0);
    /// // sequences start at -1, but accesses always occur at the next sequence,
    /// // so the first accessed sequence will be 0
    /// assert_eq!(multi.sequence(), -1);
    ///
    /// // move the producer cursor up by 10
    /// multi.wait_for_each(10, |_, _, _| ());
    /// assert_eq!(multi.sequence(), 9);
    ///
    /// // clone and move only the clone
    /// let mut clone = multi.clone();
    /// clone.wait_for_each(10, |_, _, _| ());
    ///
    /// // Both have moved because all clones share the same cursor
    /// assert_eq!(multi.sequence(), 19);
    /// assert_eq!(clone.sequence(), 19);
    /// ```
    #[inline]
    pub fn sequence(&self) -> i64 {
        self.inner.cursor.sequence.load(Ordering::Relaxed)
    }

    /// Returns the size of the ring buffer.
    ///
    /// # Examples
    /// ```
    /// let (producer, _) = ansa::mpsc(64, || 0);
    /// assert_eq!(producer.buffer_size(), 64);
    /// ```
    #[inline]
    pub fn buffer_size(&self) -> usize {
        self.inner.buffer_size()
    }

    /// Set the wait strategy for this `MultiProducer` clone.
    ///
    /// Does not alter the wait strategy for any other handle, _including_ other clones of this
    /// `MultiProducer`.
    ///
    /// # Examples
    /// ```
    /// use ansa::MultiProducer;
    /// use ansa::wait::{WaitBusy, WaitPhased, WaitSleep};
    ///
    /// let (multi, _) = ansa::mpsc(64, || 0u8);
    /// let clone = multi.clone();
    /// // multi changes its strategy
    /// let _: MultiProducer<u8, WaitBusy, true> = multi.set_wait_strategy(WaitBusy);
    /// // clone keeps the original wait strategy
    /// let _: MultiProducer<u8, WaitPhased<WaitSleep>, true> = clone;
    /// ```
    #[inline]
    pub fn set_wait_strategy<W2>(self, wait_strategy: W2) -> MultiProducer<E, W2, LEAD> {
        MultiProducer {
            inner: self.inner.set_wait_strategy(wait_strategy),
            claim: self.claim,
        }
    }

    /// Return a [`Producer`] if exactly one `MultiProducer` exists for this cursor.
    ///
    /// Otherwise, return `None` and drops this producer.
    ///
    /// If this function is called when only one `MultiProducer` exists, then it is guaranteed to
    /// return a `Producer`.
    ///
    /// # Examples
    /// ```
    /// let (multi, _) = ansa::mpsc(64, || 0);
    /// let multi_clone = multi.clone();
    ///
    /// assert!(matches!(multi.into_producer(), None));
    /// assert!(matches!(multi_clone.into_producer(), Some(ansa::Producer { .. })));
    /// ```
    #[inline]
    pub fn into_producer(self) -> Option<Producer<E, W, LEAD>> {
        Arc::into_inner(self.claim).map(|_| self.inner.into_producer())
    }

    #[inline]
    fn wait_bounds(&self, size: i64) -> (i64, i64) {
        let mut current_claim = self.claim.sequence.load(Ordering::Relaxed);
        let mut claim_end = current_claim + size;
        while let Err(new_current) = self.claim.sequence.compare_exchange(
            current_claim,
            claim_end,
            Ordering::AcqRel,
            Ordering::Relaxed,
        ) {
            current_claim = new_current;
            claim_end = new_current + size;
        }
        let desired_seq = if LEAD {
            claim_end - saturate_i64(self.inner.buffer.size())
        } else {
            claim_end
        };
        (current_claim, desired_seq)
    }

    #[inline]
    fn update_cursor(&self, start: i64, end: i64) {
        while self.inner.cursor.sequence.load(Ordering::Acquire) != start {
            std::hint::spin_loop();
        }
        self.inner.cursor.sequence.store(end, Ordering::Release)
    }
}

impl<E, W, const LEAD: bool> MultiProducer<E, W, LEAD>
where
    W: WaitStrategy,
{
    /// Wait for and process a batch of exactly `size` number of events.
    ///
    /// `size` values larger than the buffer will cause permanent stalls.
    #[inline]
    pub fn wait_for_each<F>(&mut self, size: usize, mut f: F)
    where
        F: FnMut(&mut E, i64, bool),
    {
        debug_assert!(size <= self.inner.buffer.size());
        let (from_seq, till_seq) = self.wait_bounds(saturate_i64(size));
        if self.inner.available < till_seq {
            self.inner.available = self.inner.wait_strategy.wait(till_seq, &self.inner.barrier);
        }
        debug_assert!(self.inner.available >= till_seq);
        fence(Ordering::Acquire);
        // SAFETY: Acquire-Release barrier ensures following handles cannot access this sequence
        // before this handle has finished interacting with it. Construction of the disruptor
        // guarantees producers don't overlap with other handles, thus no mutable aliasing.
        unsafe {
            self.inner.buffer.apply(from_seq + 1, size, |ptr, seq, end| {
                // SAFETY: deref guaranteed safe by ringbuffer initialisation
                let event: &mut E = &mut *ptr;
                f(event, seq, end)
            })
        };
        // Ordering::Release performed by this method
        self.update_cursor(from_seq, from_seq + saturate_i64(size))
    }
}

impl<E, W, const LEAD: bool> MultiProducer<E, W, LEAD>
where
    W: TryWaitStrategy,
{
    /// Wait for and process a batch of exactly `size` number of events.
    ///
    /// If waiting fails, returns the wait error, `W::Error`, which must be convertible to `Err`.
    ///
    /// If processing the batch fails, returns `Err`.
    ///
    /// `size` values larger than the buffer will cause permanent stalls.
    #[inline]
    pub fn try_wait_for_each<F, Err>(&mut self, size: usize, mut f: F) -> Result<(), Err>
    where
        F: FnMut(&mut E, i64, bool) -> Result<(), Err>,
        Err: From<W::Error>,
    {
        debug_assert!(size <= self.inner.buffer.size());
        let (from_seq, till_seq) = self.wait_bounds(saturate_i64(size));
        fence(Ordering::Acquire);
        if self.inner.available < till_seq {
            self.inner.available = self
                .inner
                .wait_strategy
                .try_wait(till_seq, &self.inner.barrier)
                .inspect_err(|_| self.update_cursor(from_seq, from_seq + saturate_i64(size)))?;
        }
        debug_assert!(self.inner.available >= till_seq);
        // SAFETY: Acquire-Release barrier ensures following handles cannot access this sequence
        // before this handle has finished interacting with it. Construction of the disruptor
        // guarantees producers don't overlap with other handles, thus no mutable aliasing.
        let result = unsafe {
            self.inner.buffer.try_apply(from_seq + 1, size, |ptr, seq, end| {
                // SAFETY: deref guaranteed safe by ringbuffer initialisation
                let event: &mut E = &mut *ptr;
                f(event, seq, end)
            })
        };
        // Ordering::Release performed by this method
        self.update_cursor(from_seq, from_seq + saturate_i64(size));
        result
    }
}

/// A handle with mutable access to events on the ring buffer.
///
/// Cannot access events concurrently with other handles.
#[derive(Debug)]
#[repr(transparent)]
pub struct Producer<E, W, const LEAD: bool> {
    inner: HandleInner<E, W, LEAD>,
}

impl<E, W, const LEAD: bool> Producer<E, W, LEAD> {
    /// Returns `true` if this producer is the lead producer.
    pub const fn is_lead(&self) -> bool {
        LEAD
    }

    /// Returns the current sequence value for this producer's cursor.
    ///
    /// # Examples
    /// ```
    /// let (mut producer, _) = ansa::spsc(64, || 0);
    /// // sequences start at -1, but accesses always occur at the next sequence,
    /// // so the first accessed sequence will be 0
    /// assert_eq!(producer.sequence(), -1);
    ///
    /// // move the producer up by 10
    /// producer.wait(10).for_each(|_, _, _| ());
    /// assert_eq!(producer.sequence(), 9);
    /// ```
    #[inline]
    pub fn sequence(&self) -> i64 {
        self.inner.cursor.sequence.load(Ordering::Relaxed)
    }

    /// Returns the size of the ring buffer.
    ///
    /// # Examples
    /// ```
    /// let (producer, _) = ansa::spsc(64, || 0);
    /// assert_eq!(producer.buffer_size(), 64);
    /// ```
    #[inline]
    pub fn buffer_size(&self) -> usize {
        self.inner.buffer_size()
    }

    /// Returns a new handle with the given `wait_strategy`, consuming this handle.
    ///
    /// All other properties of the original handle remain unchanged in the new handle.
    ///
    /// Does not alter the wait strategy for any other handle.
    ///
    /// # Examples
    /// ```
    /// use ansa::Producer;
    /// use ansa::wait::WaitBusy;
    ///
    /// let (producer, _) = ansa::spsc(64, || 0u8);
    /// let _: Producer<u8, WaitBusy, true> = producer.set_wait_strategy(WaitBusy);
    /// ```
    #[inline]
    pub fn set_wait_strategy<W2>(self, wait_strategy: W2) -> Producer<E, W2, LEAD> {
        self.inner.set_wait_strategy(wait_strategy).into_producer()
    }

    /// Converts this `Producer` into a [`MultiProducer`].
    ///
    /// # Examples
    /// ```
    /// let (producer, _) = ansa::spsc(64, || 0);
    ///
    /// assert!(matches!(producer.into_multi(), ansa::MultiProducer { .. }))
    /// ```
    #[inline]
    pub fn into_multi(self) -> MultiProducer<E, W, LEAD> {
        let producer_seq = self.sequence();
        MultiProducer {
            inner: self.inner,
            claim: Arc::new(Cursor::new(producer_seq)),
        }
    }
}

impl<E, W, const LEAD: bool> Producer<E, W, LEAD>
where
    W: WaitStrategy,
{
    /// Wait until exactly `size` number of events are available.
    ///
    /// `size` values larger than the buffer will cause permanent stalls.
    #[inline]
    pub fn wait(&mut self, size: usize) -> EventsMut<'_, E> {
        EventsMut(self.inner.wait(size))
    }

    /// Wait until a number of events within the given range are available.
    ///
    /// If a lower bound is provided, it must be less than the buffer size.
    ///
    /// # Examples
    ///
    /// ```
    /// let (mut producer, _) = ansa::spsc(64, || 0);
    ///
    /// producer.wait_range(1..=10); // waits for a batch of at most 10 events
    /// producer.wait_range(10..); // waits for a batch of at least 10 events
    /// producer.wait_range(1..); // waits for any number of events
    /// ```
    #[inline]
    pub fn wait_range<R>(&mut self, range: R) -> EventsMut<'_, E>
    where
        R: RangeBounds<usize>,
    {
        EventsMut(self.inner.wait_range(range))
    }
}

impl<E, W, const LEAD: bool> Producer<E, W, LEAD>
where
    W: TryWaitStrategy,
{
    /// Wait until exactly `size` number of events are available.
    ///
    /// Otherwise, return the wait strategy error.
    ///
    /// `size` values larger than the buffer will cause permanent stalls.
    #[inline]
    pub fn try_wait(&mut self, size: usize) -> Result<EventsMut<'_, E>, W::Error> {
        self.inner.try_wait(size).map(EventsMut)
    }

    /// Wait until a number of events within the given range are available.
    ///
    /// If a lower bound is provided, it must be less than the buffer size.
    ///
    /// # Examples
    ///
    /// ```
    /// use std::time::Duration;
    /// use ansa::wait::{Timeout, WaitBusy};
    ///
    /// let (mut producer, _) = ansa::spsc(64, || 0);
    /// let timeout = Timeout::new(Duration::from_millis(1), WaitBusy);
    /// let mut producer = producer.set_wait_strategy(timeout);
    ///
    /// producer.try_wait_range(1..=10)?; // waits for a batch of at most 10 events
    /// producer.try_wait_range(10..)?; // waits for a batch of at least 10 events
    /// producer.try_wait_range(1..)?; // waits for any number of events
    /// # Ok::<(), ansa::wait::TimedOut>(())
    /// ```
    #[inline]
    pub fn try_wait_range<R>(&mut self, range: R) -> Result<EventsMut<'_, E>, W::Error>
    where
        R: RangeBounds<usize>,
    {
        self.inner.try_wait_range(range).map(EventsMut)
    }
}

/// A handle with immutable access to events on the ring buffer.
///
/// Can access events concurrently to other handles with immutable access.
#[derive(Debug)]
#[repr(transparent)]
pub struct Consumer<E, W> {
    inner: HandleInner<E, W, false>,
}

impl<E, W> Consumer<E, W> {
    /// Returns the current sequence value for this consumer's cursor.
    ///
    /// # Examples
    /// ```
    /// let (mut producer, mut consumer) = ansa::spsc(64, || 0);
    /// // sequences start at -1, but accesses always occur at the next sequence,
    /// // so the first accessed sequence will be 0
    /// assert_eq!(producer.sequence(), -1);
    ///
    /// // move the producer up by 10, otherwise the consumer will block the
    /// // thread while waiting for available events
    /// producer.wait(10).for_each(|_, _, _| ());
    /// assert_eq!(producer.sequence(), 9);
    ///
    /// // now we can move the consumer
    /// consumer.wait(5).for_each(|_, _, _| ());
    /// assert_eq!(consumer.sequence(), 4);
    /// ```
    #[inline]
    pub fn sequence(&self) -> i64 {
        self.inner.cursor.sequence.load(Ordering::Relaxed)
    }

    /// Returns the size of the ring buffer.
    ///
    /// # Examples
    /// ```
    /// let (_, consumer) = ansa::spsc(64, || 0);
    /// assert_eq!(consumer.buffer_size(), 64);
    /// ```
    #[inline]
    pub fn buffer_size(&self) -> usize {
        self.inner.buffer_size()
    }

    /// Returns a new handle with the given `wait_strategy`, consuming this handle.
    ///
    /// All other properties of the original handle remain unchanged in the new handle.
    ///
    /// Does not alter the wait strategy for any other handle.
    ///
    /// # Examples
    /// ```
    /// use ansa::Consumer;
    /// use ansa::wait::WaitBusy;
    ///
    /// let (_, consumer) = ansa::spsc(64, || 0u8);
    /// let _: Consumer<u8, WaitBusy> = consumer.set_wait_strategy(WaitBusy);
    /// ```
    #[inline]
    pub fn set_wait_strategy<W2>(self, wait_strategy: W2) -> Consumer<E, W2> {
        self.inner.set_wait_strategy(wait_strategy).into_consumer()
    }
}

impl<E, W> Consumer<E, W>
where
    W: WaitStrategy,
{
    /// Wait until exactly `size` number of events are available.
    ///
    /// `size` values larger than the buffer will cause permanent stalls.
    #[inline]
    pub fn wait(&mut self, size: usize) -> Events<'_, E> {
        Events(self.inner.wait(size))
    }

    /// Wait until a number of events within the given range are available.
    ///
    /// If a lower bound is provided, it must be less than the buffer size.
    ///
    /// Any range which starts from 0 or is unbounded enables non-blocking waits for
    /// [`well-behaved`] [`WaitStrategy`] implementations
    ///
    /// # Examples
    ///
    /// ```
    /// let (mut producer, mut consumer) = ansa::spsc(64, || 0);
    ///
    /// let events = consumer.wait_range(..); // wait for any number of events
    /// assert_eq!(events.size(), 0);
    ///
    /// // Whereas this would block the thread waiting for the producer to move.
    /// // consumer.wait_range(1..);
    ///
    /// // move the lead producer
    /// producer.wait(20).for_each(|_, _, _| ());
    ///
    /// let events = consumer.wait_range(..=10); // wait for a batch of at most 10 events
    /// assert_eq!(events.size(), 10);
    ///
    /// let events = consumer.wait_range(10..); // wait for a batch of at least 10 events
    /// assert_eq!(events.size(), 20);
    ///
    /// let events = consumer.wait_range(..);
    /// assert_eq!(events.size(), 20);
    /// ```
    /// Can be used to for non-blocking waits. .. is always non-blocking
    #[inline]
    pub fn wait_range<R>(&mut self, range: R) -> Events<'_, E>
    where
        R: RangeBounds<usize>,
    {
        Events(self.inner.wait_range(range))
    }
}

impl<E, W> Consumer<E, W>
where
    W: TryWaitStrategy,
{
    /// Wait until exactly `size` number of events are available.
    ///
    /// Otherwise, return the wait strategy error.
    ///
    /// `size` values larger than the buffer will cause permanent stalls.
    ///
    /// # Examples
    ///
    /// ```
    /// use std::time::Duration;
    /// use ansa::wait::{Timeout, WaitBusy};
    ///
    /// let (mut producer, consumer) = ansa::spsc(64, || 0u32);
    /// let timeout = Timeout::new(Duration::from_millis(10), WaitBusy);
    /// let mut consumer = consumer.set_wait_strategy(timeout);
    ///
    /// // Try to wait for 5 events, but timeout if they're not available
    /// match consumer.try_wait(5) {
    ///     Ok(events) => {
    ///         // Events were available within the timeout
    ///         events.for_each(|event, seq, _| println!("Event {}: {}", seq, event));
    ///     }
    ///     Err(_timeout) => {
    ///         // Timeout occurred - no events were available in time
    ///         println!("No events available within timeout");
    ///     }
    /// }
    /// ```
    #[inline]
    pub fn try_wait(&mut self, size: usize) -> Result<Events<'_, E>, W::Error> {
        self.inner.try_wait(size).map(Events)
    }

    /// Wait until a number of events within the given range are available.
    ///
    /// If a lower bound is provided, it must be less than the buffer size.
    ///
    /// # Examples
    ///
    /// ```
    /// use std::time::Duration;
    /// use ansa::wait::{Timeout, WaitBusy};
    ///
    /// let (mut producer, consumer) = ansa::spsc(64, || 0);
    /// // move the lead producer
    /// producer.wait(20).for_each(|_, _, _| ());
    ///
    /// let timeout = Timeout::new(Duration::from_millis(1), WaitBusy);
    /// let mut consumer = consumer.set_wait_strategy(timeout);
    ///
    /// consumer.try_wait_range(1..=10)?; // waits for a batch of at most 10 events
    /// consumer.try_wait_range(10..)?; // waits for a batch of at least 10 events
    /// consumer.try_wait_range(1..)?; // waits for any number of events
    /// # Ok::<(), ansa::wait::TimedOut>(())
    /// ```
    #[inline]
    pub fn try_wait_range<R>(&mut self, range: R) -> Result<Events<'_, E>, W::Error>
    where
        R: RangeBounds<usize>,
    {
        self.inner.try_wait_range(range).map(Events)
    }
}

#[derive(Debug)]
pub(crate) struct HandleInner<E, W, const LEAD: bool> {
    pub(crate) cursor: Arc<Cursor>,
    pub(crate) barrier: Barrier,
    pub(crate) buffer: Arc<RingBuffer<E>>,
    pub(crate) wait_strategy: W,
    pub(crate) available: i64,
}

impl<E, W> HandleInner<E, W, false> {
    #[inline]
    pub(crate) fn into_consumer(self) -> Consumer<E, W> {
        Consumer { inner: self }
    }
}

impl<E, W, const LEAD: bool> HandleInner<E, W, LEAD> {
    pub(crate) fn new(
        cursor: Arc<Cursor>,
        barrier: Barrier,
        buffer: Arc<RingBuffer<E>>,
        wait_strategy: W,
    ) -> Self {
        let available = if LEAD {
            // buffer size can always be cast to i64, as allocations cannot be larger than i64::MAX
            CURSOR_START - (buffer.size() as i64)
        } else {
            CURSOR_START
        };
        HandleInner {
            cursor,
            barrier,
            buffer,
            wait_strategy,
            available,
        }
    }

    #[inline]
    pub(crate) fn into_producer(self) -> Producer<E, W, LEAD> {
        Producer { inner: self }
    }

    #[inline]
    fn buffer_size(&self) -> usize {
        self.buffer.size()
    }

    #[inline]
    fn set_wait_strategy<W2>(self, wait_strategy: W2) -> HandleInner<E, W2, LEAD> {
        HandleInner {
            cursor: self.cursor,
            barrier: self.barrier,
            buffer: self.buffer,
            wait_strategy,
            available: self.available,
        }
    }

    #[inline]
    fn wait_bounds(&self, size: i64) -> (i64, i64) {
        let from_sequence = self.cursor.sequence.load(Ordering::Relaxed);
        let batch_end = from_sequence + size;
        let till_sequence = if LEAD {
            batch_end - saturate_i64(self.buffer.size())
        } else {
            batch_end
        };
        (from_sequence, till_sequence)
    }

    #[inline]
    fn as_batch(&mut self, from_seq: i64, batch_size: usize) -> Batch<'_, E> {
        Batch {
            cursor: &mut self.cursor,
            buffer: &self.buffer,
            current: from_seq,
            size: batch_size,
        }
    }

    #[inline]
    fn range_batch_size(&self, from_seq: i64, end_bound: Bound<&usize>) -> usize {
        let from = if LEAD {
            from_seq - saturate_i64(self.buffer.size())
        } else {
            from_seq
        };
        let available_batch = (self.available - from).unsigned_abs() as usize;
        match end_bound {
            Bound::Included(b) => available_batch.min(*b),
            Bound::Excluded(b) => available_batch.min(b.saturating_sub(1)),
            Bound::Unbounded => available_batch,
        }
    }
}

impl<E, W, const LEAD: bool> HandleInner<E, W, LEAD>
where
    W: WaitStrategy,
{
    #[inline]
    fn wait(&mut self, size: usize) -> Batch<'_, E> {
        debug_assert!(self.buffer.size() >= size);
        let (from_seq, till_seq) = self.wait_bounds(saturate_i64(size));
        if self.available < till_seq {
            self.available = self.wait_strategy.wait(till_seq, &self.barrier);
        }
        debug_assert!(self.available >= till_seq);
        self.as_batch(from_seq, size)
    }

    // todo: check that range: 0.. always returns immediately if no sequence available
    #[inline]
    fn wait_range<R>(&mut self, range: R) -> Batch<'_, E>
    where
        R: RangeBounds<usize>,
    {
        let batch_min = match range.start_bound() {
            Bound::Included(b) => *b,
            Bound::Excluded(b) => b.saturating_add(1),
            Bound::Unbounded => 0,
        };
        debug_assert!(self.buffer.size() >= batch_min);
        let (from_seq, till_seq) = self.wait_bounds(saturate_i64(batch_min));
        if self.available < till_seq.max(1) {
            self.available = self.wait_strategy.wait(till_seq, &self.barrier);
        }
        debug_assert!(self.available >= till_seq);
        let batch_max = self.range_batch_size(from_seq, range.end_bound());
        self.as_batch(from_seq, batch_max)
    }
}

impl<E, W, const LEAD: bool> HandleInner<E, W, LEAD>
where
    W: TryWaitStrategy,
{
    #[inline]
    fn try_wait(&mut self, size: usize) -> Result<Batch<'_, E>, W::Error> {
        debug_assert!(self.buffer.size() >= size);
        let (from_seq, till_seq) = self.wait_bounds(saturate_i64(size));
        if self.available < till_seq {
            self.available = self.wait_strategy.try_wait(till_seq, &self.barrier)?;
        }
        debug_assert!(self.available >= till_seq);
        Ok(self.as_batch(from_seq, size))
    }

    #[inline]
    fn try_wait_range<R>(&mut self, range: R) -> Result<Batch<'_, E>, W::Error>
    where
        R: RangeBounds<usize>,
    {
        let batch_min = match range.start_bound() {
            Bound::Included(b) => *b,
            Bound::Excluded(b) => b.saturating_add(1),
            Bound::Unbounded => 0,
        };
        debug_assert!(self.buffer.size() >= batch_min);
        let (from_seq, till_seq) = self.wait_bounds(saturate_i64(batch_min));
        if self.available < till_seq.max(1) {
            self.available = self.wait_strategy.try_wait(till_seq, &self.barrier)?;
        }
        debug_assert!(self.available >= till_seq);
        let batch_max = self.range_batch_size(from_seq, range.end_bound());
        Ok(self.as_batch(from_seq, batch_max))
    }
}

struct Batch<'a, E> {
    cursor: &'a mut Arc<Cursor>, // mutable ref ensures handle cannot run another overlapping wait
    buffer: &'a Arc<RingBuffer<E>>,
    current: i64,
    size: usize,
}

impl<E> Batch<'_, E> {
    #[inline]
    fn apply<F>(self, f: F)
    where
        F: FnMut(*mut E, i64, bool),
    {
        fence(Ordering::Acquire);
        // SAFETY: Acquire-Release barrier ensures following handles cannot access this sequence
        // before this handle has finished interacting with it. Construction of the disruptor
        // guarantees producers don't overlap with other handles, thus no mutable aliasing.
        unsafe { self.buffer.apply(self.current + 1, self.size, f) };
        let seq_end = self.current + saturate_i64(self.size);
        self.cursor.sequence.store(seq_end, Ordering::Release);
    }

    #[inline]
    fn try_apply<F, Err>(self, f: F) -> Result<(), Err>
    where
        F: FnMut(*mut E, i64, bool) -> Result<(), Err>,
    {
        fence(Ordering::Acquire);
        // SAFETY: see Batch::apply
        unsafe { self.buffer.try_apply(self.current + 1, self.size, f)? };
        let seq_end = self.current + saturate_i64(self.size);
        self.cursor.sequence.store(seq_end, Ordering::Release);
        Ok(())
    }

    #[inline]
    fn try_commit<F, Err>(self, mut f: F) -> Result<(), Err>
    where
        F: FnMut(*mut E, i64, bool) -> Result<(), Err>,
    {
        fence(Ordering::Acquire);
        // SAFETY: see Batch::apply
        unsafe {
            self.buffer.try_apply(self.current + 1, self.size, |ptr, seq, end| {
                f(ptr, seq, end)
                    .inspect_err(|_| self.cursor.sequence.store(seq - 1, Ordering::Release))
            })?;
        }
        let seq_end = self.current + saturate_i64(self.size);
        self.cursor.sequence.store(seq_end, Ordering::Release);
        Ok(())
    }
}

// todo: elucidate docs with 'in another process' statements, eg. for describing mut alias possibility

/// A batch of events which may be mutably accessed.
#[repr(transparent)]
pub struct EventsMut<'a, E>(Batch<'a, E>);

impl<E> EventsMut<'_, E> {
    /// Returns the size of this batch
    #[inline]
    pub fn size(&self) -> usize {
        self.0.size
    }

    /// Process a batch of mutable events on the buffer using the closure `f`.
    ///
    /// The parameters of `f` are:
    ///
    /// - `event: &mut E`, a reference to the buffer element being accessed.
    /// - `sequence: i64`, the position of this event in the sequence.
    /// - `batch_end: bool`, indicating whether this is the last event in the requested batch.
    ///
    /// # Examples
    /// ```
    /// let (mut producer, _) = ansa::spsc(64, || 0);
    ///
    /// producer.wait(10).for_each(|event, seq, _| *event = seq);
    /// ```
    #[inline]
    pub fn for_each<F>(self, mut f: F)
    where
        F: FnMut(&mut E, i64, bool),
    {
        self.0.apply(|ptr, seq, end| {
            // SAFETY: deref guaranteed safe by ringbuffer initialisation
            let event: &mut E = unsafe { &mut *ptr };
            f(event, seq, end)
        })
    }

    /// Try to process a batch of mutable events on the buffer using the closure `f`.
    ///
    /// If an error occurs, leaves the cursor sequence unchanged and returns the error.
    ///
    /// **Important**: does _not_ undo any mutations to events if an error occurs.
    ///
    /// The parameters of `f` are:
    ///
    /// - `event: &mut E`, a reference to the buffer element being accessed.
    /// - `sequence: i64`, the position of this event in the sequence.
    /// - `batch_end: bool`, indicating whether this is the last event in the requested batch.
    ///
    /// # Examples
    /// ```
    /// let (mut producer, _) = ansa::spsc(64, || 0);
    ///
    /// producer.wait(10).try_for_each(|_, seq, _| {
    ///     match seq {
    ///         100 => Err(seq),
    ///         _ => Ok(())
    ///     }
    /// })?;
    /// assert_eq!(producer.sequence(), 9);
    ///
    /// let result = producer.wait(10).try_for_each(|_, seq, _| {
    ///     match seq {
    ///         15 => Err(seq),
    ///         _ => Ok(())
    ///     }
    /// });
    /// assert_eq!(result, Err(15));
    /// // If an error is returned, the cursor will not be moved.
    /// assert_eq!(producer.sequence(), 9);
    /// # Ok::<(), i64>(())
    /// ```
    #[inline]
    pub fn try_for_each<F, Err>(self, mut f: F) -> Result<(), Err>
    where
        F: FnMut(&mut E, i64, bool) -> Result<(), Err>,
    {
        self.0.try_apply(|ptr, seq, end| {
            // SAFETY: deref guaranteed safe by ringbuffer initialisation
            let event: &mut E = unsafe { &mut *ptr };
            f(event, seq, end)
        })
    }

    /// Try to process a batch of mutable events on the buffer using the closure `f`.
    ///
    /// If an error occurs, returns the error and updates the cursor sequence to the position of
    /// the last successfully processed event. In effect, commits the successful portion of the batch.
    ///
    /// **Important**: does _not_ undo any mutations to events if an error occurs.
    ///
    /// The parameters of `f` are:
    ///
    /// - `event: &mut E`, a reference to the buffer element being accessed.
    /// - `sequence: i64`, the position of this event in the sequence.
    /// - `batch_end: bool`, indicating whether this is the last event in the requested batch.
    ///
    /// # Examples
    /// ```
    /// let (mut producer, _) = ansa::spsc(64, || 0);
    ///
    /// producer.wait(10).try_commit_each(|_, seq, _| {
    ///     match seq {
    ///         100 => Err(seq),
    ///         _ => Ok(())
    ///     }
    /// })?;
    ///
    /// assert_eq!(producer.sequence(), 9);
    /// # Ok::<(), i64>(())
    /// ```
    /// On failure, the cursor will be moved to the last successful sequence.
    /// ```
    /// let (mut producer, _) = ansa::spsc(64, || 0);
    ///
    /// let result = producer.wait(10).try_commit_each(|_, seq, _| {
    ///     match seq {
    ///         5 => Err(seq),
    ///         _ => Ok(())
    ///     }
    /// });
    ///
    /// assert_eq!(result, Err(5));
    /// assert_eq!(producer.sequence(), 4);
    /// ```
    #[inline]
    pub fn try_commit_each<F, Err>(self, mut f: F) -> Result<(), Err>
    where
        F: FnMut(&mut E, i64, bool) -> Result<(), Err>,
    {
        self.0.try_commit(|ptr, seq, end| {
            // SAFETY: deref guaranteed safe by ringbuffer initialisation
            let event: &mut E = unsafe { &mut *ptr };
            f(event, seq, end)
        })
    }
}

/// A batch of events which may be immutably accessed.
#[repr(transparent)]
pub struct Events<'a, E>(Batch<'a, E>);

impl<E> Events<'_, E> {
    /// Returns the size of this batch
    #[inline]
    pub fn size(&self) -> usize {
        self.0.size
    }

    /// Process a batch of immutable events on the buffer using the closure `f`.
    ///
    /// The parameters of `f` are:
    ///
    /// - `event: &E`, a reference to the buffer element being accessed.
    /// - `sequence: i64`, the position of this event in the sequence.
    /// - `batch_end: bool`, indicating whether this is the last event in the requested batch.
    ///
    /// # Examples
    /// ```
    /// let (mut producer, mut consumer) = ansa::spsc(64, || 0);
    ///
    /// // move the producer so that events are available to the following consumer
    /// producer.wait(20).for_each(|_, _, _| ());
    ///
    /// consumer.wait(10).for_each(|event, seq, _| println!("{seq}: {event}"));
    /// ```
    #[inline]
    pub fn for_each<F>(self, mut f: F)
    where
        F: FnMut(&E, i64, bool),
    {
        self.0.apply(|ptr, seq, end| {
            // SAFETY: deref guaranteed safe by ringbuffer initialisation
            let event: &E = unsafe { &*ptr };
            f(event, seq, end)
        })
    }

    /// Try to process a batch of immutable events on the buffer using the closure `f`.
    ///
    /// If an error occurs, leaves the cursor sequence unchanged and returns the error.
    ///
    /// The parameters of `f` are:
    ///
    /// - `event: &E`, a reference to the buffer element being accessed.
    /// - `sequence: i64`, the position of this event in the sequence.
    /// - `batch_end: bool`, indicating whether this is the last event in the requested batch.
    ///
    /// # Examples
    /// ```
    /// let (mut producer, mut consumer) = ansa::spsc(64, || 0);
    ///
    /// // move the producer so that events are available to the following consumer
    /// producer.wait(20).for_each(|_, _, _| ());
    ///
    /// consumer.wait(10).try_for_each(|_, seq, _| {
    ///     match seq {
    ///         100 => Err(seq),
    ///         _ => Ok(())
    ///     }
    /// })?;
    ///
    /// assert_eq!(consumer.sequence(), 9);
    /// # Ok::<(), i64>(())
    /// ```
    /// On failure, the cursor will not be moved.
    /// ```
    /// let (mut producer, mut consumer) = ansa::spsc(64, || 0);
    ///
    /// // move the producer so that events are available to the following consumer
    /// producer.wait(20).for_each(|_, _, _| ());
    ///
    /// let result = consumer.wait(10).try_for_each(|_, seq, _| {
    ///     match seq {
    ///         5 => Err(seq),
    ///         _ => Ok(())
    ///     }
    /// });
    ///
    /// assert_eq!(result, Err(5));
    /// // sequence values start at -1, and the first event is at sequence 0
    /// assert_eq!(consumer.sequence(), -1);
    /// ```
    #[inline]
    pub fn try_for_each<F, Err>(self, mut f: F) -> Result<(), Err>
    where
        F: FnMut(&E, i64, bool) -> Result<(), Err>,
    {
        self.0.try_apply(|ptr, seq, end| {
            // SAFETY: deref guaranteed safe by ringbuffer initialisation
            let event: &E = unsafe { &*ptr };
            f(event, seq, end)
        })
    }

    /// Try to process a batch of immutable events on the buffer using the closure `f`.
    ///
    /// If an error occurs, returns the error and updates the cursor sequence to the position of
    /// the last successfully processed event. In effect, commits the successful portion of the batch.
    ///
    /// The parameters of `f` are:
    ///
    /// - `event: &E`, a reference to the buffer element being accessed.
    /// - `sequence: i64`, the position of this event in the sequence.
    /// - `batch_end: bool`, indicating whether this is the last event in the requested batch.
    ///
    /// # Examples
    /// ```
    /// let (mut producer, mut consumer) = ansa::spsc(64, || 0);
    ///
    /// // move the producer so that events are available to the following consumer
    /// producer.wait(20).for_each(|_, _, _| ());
    ///
    /// consumer.wait(10).try_commit_each(|_, seq, _| {
    ///     match seq {
    ///         100 => Err(seq),
    ///         _ => Ok(())
    ///     }
    /// })?;
    ///
    /// assert_eq!(consumer.sequence(), 9);
    /// # Ok::<(), i64>(())
    /// ```
    /// On failure, the cursor will be moved to the last successful sequence.
    /// ```
    /// let (mut producer, mut consumer) = ansa::spsc(64, || 0);
    ///
    /// // move the producer so that events are available to the following consumer
    /// producer.wait(20).for_each(|_, _, _| ());
    ///
    /// let result = consumer.wait(10).try_commit_each(|_, seq, _| {
    ///     match seq {
    ///         5 => Err(seq),
    ///         _ => Ok(())
    ///     }
    /// });
    ///
    /// assert_eq!(result, Err(5));
    /// assert_eq!(consumer.sequence(), 4);
    /// ```
    #[inline]
    pub fn try_commit_each<F, Err>(self, mut f: F) -> Result<(), Err>
    where
        F: FnMut(&E, i64, bool) -> Result<(), Err>,
    {
        self.0.try_commit(|ptr, seq, end| {
            // SAFETY: deref guaranteed safe by ringbuffer initialisation
            let event: &E = unsafe { &*ptr };
            f(event, seq, end)
        })
    }
}

#[derive(Debug)]
#[repr(transparent)]
pub(crate) struct Cursor {
    #[cfg(not(feature = "cache-padded"))]
    sequence: AtomicI64,
    #[cfg(feature = "cache-padded")]
    sequence: crossbeam_utils::CachePadded<AtomicI64>,
}

const CURSOR_START: i64 = -1;

impl Cursor {
    pub(crate) const fn new(seq: i64) -> Self {
        Cursor {
            #[cfg(not(feature = "cache-padded"))]
            sequence: AtomicI64::new(seq),
            #[cfg(feature = "cache-padded")]
            sequence: crossbeam_utils::CachePadded::new(AtomicI64::new(seq)),
        }
    }

    /// Create a cursor at the start of the sequence. All accesses begin on the _next_ position in
    /// the sequence, thus cursors start at `-1`, so that accesses start at `0`.
    pub(crate) const fn start() -> Self {
        Cursor::new(CURSOR_START)
    }
}

/// A collection of cursors that determine which sequence is available to a handle.
///
/// Every handle has a barrier, and no handle may overtake its barrier.
#[derive(Clone, Debug)]
#[repr(transparent)]
pub struct Barrier(Barrier_);

#[derive(Clone, Debug)]
enum Barrier_ {
    One(Arc<Cursor>),
    Many(Box<[Arc<Cursor>]>),
}

impl Barrier {
    pub(crate) fn one(cursor: Arc<Cursor>) -> Self {
        Barrier(Barrier_::One(cursor))
    }

    pub(crate) fn many(cursors: Box<[Arc<Cursor>]>) -> Self {
        Barrier(Barrier_::Many(cursors))
    }

    /// The position of the barrier.
    ///
    /// # Examples
    /// ```
    /// use ansa::{Barrier, wait::WaitStrategy};
    ///
    /// struct MyBusyWait;
    ///
    /// // SAFETY: wait returns once barrier seq >= desired_seq, with barrier seq itself
    /// unsafe impl WaitStrategy for MyBusyWait {
    ///     fn wait(&self, desired_seq: i64, barrier: &Barrier) -> i64 {
    ///         while barrier.sequence() < desired_seq {} // busy-spin
    ///         barrier.sequence()
    ///     }
    /// }
    /// ```
    #[inline]
    pub fn sequence(&self) -> i64 {
        match &self.0 {
            Barrier_::One(cursor) => cursor.sequence.load(Ordering::Relaxed),
            Barrier_::Many(cursors) => cursors.iter().fold(i64::MAX, |seq, cursor| {
                seq.min(cursor.sequence.load(Ordering::Relaxed))
            }),
        }
    }
}

impl Drop for Barrier {
    // We need to break the Arc cycle of barriers. Just get rid of all the Arcs to guarantee this.
    fn drop(&mut self) {
        self.0 = Barrier_::Many(Box::new([]));
    }
}

#[allow(clippy::cast_possible_truncation)]
#[allow(clippy::cast_possible_wrap)]
#[inline]
const fn saturate_i64(u: usize) -> i64 {
    if const { size_of::<usize>() >= 8 } {
        // the 64th bit must be zero to avoid negative wrapping when casting to i64
        (u & i64::MAX as usize) as i64
    } else {
        // all usize values fit in i64
        u as i64
    }
}

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

    // Check that sizes don't accidentally change. If size change is found and intended, just
    // change the values in this test.
    #[test]
    fn sizes() {
        assert_eq!(size_of::<Consumer<u8, WaitBusy>>(), 40);
        assert_eq!(size_of::<Producer<u8, WaitBusy, true>>(), 40);
        assert_eq!(size_of::<MultiProducer<u8, WaitBusy, true>>(), 48);
    }

    #[test]
    fn test_wait_range() {
        let buffer = Arc::new(RingBuffer::from_factory(16, || 0));
        let lead_cursor = Arc::new(Cursor::new(8));
        let follows_cursor = Arc::new(Cursor::new(4));

        let mut lead_handle = HandleInner::<_, _, true>::new(
            Arc::clone(&lead_cursor),
            Barrier::one(Arc::clone(&follows_cursor)),
            Arc::clone(&buffer),
            WaitBusy,
        );

        let mut follows_handle = HandleInner::<_, _, false>::new(
            Arc::clone(&follows_cursor),
            Barrier::one(Arc::clone(&lead_cursor)),
            Arc::clone(&buffer),
            WaitBusy,
        );

        let lead_batch = lead_handle.wait_range(1..);
        assert_eq!(lead_batch.current, 8);
        assert_eq!(lead_batch.size, 12);

        let follows_batch = follows_handle.wait_range(1..);
        assert_eq!(follows_batch.current, 4);
        assert_eq!(follows_batch.size, 4);
    }

    #[test]
    fn test_size_zero_apply() {
        let buffer = Arc::new(RingBuffer::from_factory(16, || 0));
        let mut lead_handle = HandleInner::<_, _, true>::new(
            Arc::new(Cursor::new(8)),
            Barrier::one(Arc::new(Cursor::new(4))),
            Arc::clone(&buffer),
            WaitBusy,
        );

        let sequence_before_apply = lead_handle.cursor.sequence.load(Ordering::Relaxed);

        let batch = lead_handle.wait(0);
        assert_eq!(batch.size, 0);

        batch.apply(|_, _, _| assert!(false));
        // sequence should not have moved and the apply function should not have been called
        let sequence_after_apply = lead_handle.cursor.sequence.load(Ordering::Relaxed);
        assert_eq!(sequence_before_apply, sequence_after_apply);
    }
}